Quantcast
Channel: Nikolay Igotti
Browsing latest articles
Browse All 30 View Live
↧

Fast thread local areas for amd64

Sometimes it's required to have large thread local data array. Thread stacks may be limited in size, and they could not provide enough flexibility or speed. In this case one could use %GS register of...

View Article


Handling of synchronous faults on Unix

Signals and threads on Unix are always areas where interesting behaviour could be seen. As an example consider the way how synchronous faults are handled. In this test program I model behaviour of...

View Article


ELF runnable on multiple OSes

Once I asked myself, if it's possible to create an ELF file, which will run on multiple OSes with same CPU. ELF only does checks of target hardware, not an operating systems, but OSes differs in...

View Article

Genome decoding

According to this page genome isn't exactly a program, in traditional Turing machine sense, but "..contains very little unused sequences and, in fact, is a complex, interwoven network.". Another...

View Article

Reverse engineering in microbiology

Interesting phenomenon in microbiology is reverse transcription. If I understand correctly, it's kind of technology used by some virii, such as AIDS virus to do reverse engineering of the DNA of the...

View Article


Self printing program in assembly

Self printing programs, so called quines are funny, so I decided to write one in linux-x86 ASM just to make almost really self reproducing program (almost, as it relies upon syscall for output, but...

View Article

Self printing program in assembly (part 2)

Shortest self printing program in assembly I managed to write. 69 bytes long. If anyone knows shorter version, please let me know. .globl _start .type _start, @function _start: movl $_start, %esi xorl...

View Article

Influence of intention on reality

According to PEAR experiment human intentions can statistically significantly affect behavior of random processes, moreover:Human minds can affect random physical processes, to a minor but...

View Article


Fixing FPU control word on Unix

FPU handling on x86 machines is traditional area where black magic is used heavily. As an example, I'll share experience of fixing FPU control word from the signal handler.Some applications have...

View Article


Context sensitive function behavior

Usually C, unlike dynamic languages, considered not so easy to write context sensitive code. To demonstrate that this is feasible, at least on some systems and compilers I wrote following hack....

View Article

Fixing FPU control word on Win32

On Win32 fixing of control word is also possible, but done differently, as Win32 uses SEH (structured exception handlers) to handle hardware faults, and some magic is required to let fault really...

View Article

Simple JIT compiler for your application

Just in time code generation usually considered to be complicated task, and it really is. Although there are cases (for example in multimedia, games or cryptographic application) when it does makes...

View Article

Living in nirvana

Recently I've read rather interesting life story of math professor John Wren-Lewis, who unintentionally got (and keeps for several years) nirvana-like state of mind. He calls it "eternity...

View Article


dd story

One rather interesting difference between Linux and Solaris is how command like thisdd if=/dev/zero of=/dev/null bs=900M count=1 behave, especially if box has smth like 256M of RAM. Solaris behaves...

View Article

More fun with SEH

Just to demonstrate what kind of fancy stuff SEH provides, I wrote this small demo code for win32/x86. Idea of this code is to show how to modify the way other frames handle their exceptions. I don't...

View Article


memory debugger for linux

Sometimes it's required for an application to catch all memory accesses to particular location, for example for debugging purposes. It could be done using mprotect call, but there's another, specific...

View Article

Memory debugger for Windows

For the sake of completeness, here's version of memory debugger for Win32. It uses vectored exception, so works only for Win2K or later. #define_WIN32_WINNT 0x0500 #include<stdio.h>...

View Article


Overriding symbols on Win32

Today I was asked it it's possible to implement something similar to Linux's LD_PRELOAD for Windows, to allow override of particular symbol. I answered yes, and here's how I did it (some dynamic code...

View Article

VTBL games

Little game with changing vtbl entry for an instance. Probably more interesting part would be class-wide modification, but it's usually in read only area (text segment). For completeness of demo we'll...

View Article

SPARC ASIs

One, not so frequently used, yet useful feature of SPARC CPUs is ASI, or address space identifier, essentially just a 8-bit tag attached to memory address, modifying the way how memory access happens....

View Article

Neat book

Frank Hoffman at Solaris team wrote this book which is neat summary of x86/amd64 low level programming. I like it.

View Article


C mini-contest

Go guess, what's behaviour of this code:intfoo() {while (0) while (1) while (2) ; } and this intfoo() {while (2) while (1) while (0) ; } Both are valid C constructs, of course. PS: Question itself is...

View Article


Debugger for Win32 (v2)

Previous version of mini-debugger I described here has a disadvantage, as it was unable to catch symbols in statically linked binaries. This version patches target, not assuming that we call via jump...

View Article

Raw page table access

Today, I'd like to show an example of raw physical memory access, to demonstrate layout of x86 page tables. This demo requires x86 Solaris with 32-bit kernel, and root privileges. You can see how to...

View Article

ILP64, LP64, LLP64

One important platform feature, to be considered when writing portable 64-bit code is if it is LP64, LLP64 or ILP64. Those abbreviations stands for size in bits of basic C data types (int, long,...

View Article


Hotspot internals Q&A

Now this blog is mostly collection of random system programming technologies, in my opinion interesting enough to share. But as my full time job is to hack Hotspot JVM I could also answer VM internals...

View Article

Double mapping of memory regions on Unix

Sometimes it makes sense to double map the same physical memory onto different locations in address space of process, for example in 64-bit systems have some parts of your address space to be...

View Article

Explicit template instantiation in shared libraries

Now a little bit of C++ stuff. Usually I consider this language a bit undercooked, in its "advanced" features, like templates, but sometimes they could be useful. Consider following simple...

View Article

FS neutral data recovery tool

Recently my wife got several files accidentally removed, from ext3 storage. I tried several different programs, including FS debuggers, but mostly unsuccessful, as ext3 is rather aggressively erasing...

View Article



Leaving Sun

Starting Aug 17 I leave Sun Microsystems. My personal e-mail is igotti@gmail.com. Have fun! PS: I have no other technical blog yet, you may look at my Livejournal blog, but it's in Russian and...

View Article
Browsing latest articles
Browse All 30 View Live