Is there a way to find the Thread Information Block (TIB) of another thread running in your process?

I need to construct an exception handler for another thread but I can't do it in the thread itself. Therefore I need to find it's TIB and construct it from inside another thread. How can I achieve this?

link|improve this question

60% accept rate
I don't think you can alter the TIB of any thread... probably not even in Kernel mode. – Tony The Lion May 11 '11 at 15:46
Of course you can, it's just an in-memory data structure. It's a terrible idea to do so, but it's not magic - it's in usermode. – Paul Betts May 11 '11 at 15:49
@Paul Betts, Would you also have an idea on how to do it? – Unknown May 11 '11 at 15:53
@Paul, you can always alter whatever you wish if you really want to, but that's not to say that it's a good idea. I was only saying it from the POV that it's generally not a good idea to fiddle with it. – Tony The Lion May 11 '11 at 15:57
I agree with floyd73's answer: you may use GetThreadContext to obtain the FS selector and get the TIB. However I don't fully understand what you mean by "constructing an exception handler". Do you mean you want to explicitly add a SEH exception registration record to the chain with your handler? Note that AFAIK SEH registration records must come in descending memory order (this is a OS protection against memory corruption). Normally there's no problems since such records are allocated on the stack, but there may be a problem with your approach – valdo May 12 '11 at 5:56
show 2 more comments
feedback

3 Answers

up vote 1 down vote accepted

You can access the address of the TIB directly from the FS register (check http://www.microsoft.com/msj/archive/S2CE.aspx). So to get the TIB for another thread maybe can use GetThreadContext() to get the value of FS and therefore the address of the TIB? (just a guess, I didn't try this!)

link|improve this answer
I'll try this, it seems to be possible to retrieve the FS register of another thread using this API: DWORD SegGs; DWORD SegFs; DWORD SegEs; – Unknown May 11 '11 at 16:15
This is exactly what I had in mind, Thank you! – Unknown May 11 '11 at 16:59
feedback

This may not work, but try queueing a user-mode APC to the target thread which sets up your exception handler.

link|improve this answer
feedback

You can get the TIB of a thread, but altering it I doubt very much you can do.

As correctly pointed out by Paul, this only gets the TIB for the thread it's used it, so I suggest calling it in the thread from which you need this data and then moving it to the thread where you need to use it.

To get it you can use something like this, described here:

// Microsoft C
void *getTib()
{
    void *pTib;
    __asm {
        mov EAX, FS:[0x18]
        mov [pTib], EAX
    }
    return pTib;
}
link|improve this answer
This only gets the TIB of your own thread. – Paul Betts May 11 '11 at 15:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.