We have a crash dump (user mode) from the customer which is experiencing networking issues with our application. In crash dump I can see all handles that are open for networking.

Question: How can I investigate the socket associated with the handle?

Windbg !handle command shows no information about connection properties. I mean - socket status - bind/remote ip, - bind/remote port
- pending data buffers (would be great) etc.

link|improve this question

62% accept rate
feedback

1 Answer

Socket handles are kernel handles (that's why you can WriteFile to them), with just a user-mode dump, you cannot get any information out of them. In fact, most of the information you're asking about (esp. pending data buffers) are almost certainly going to be managed in kernel mode.

If you want to keep this information, you're going to have to instrument your app to hold the socket creation params in user-mode memory.

link|improve this answer
And how can I get the information from kernel dump. I can ask customer to supply it. – Boris Jan 31 at 15:49
1  
Configure the machine to write a full memory dump - this way you'll have the user-mode information as well as the kernel mode info. You may have to do more digging as to how to get the socket info out of the kernel, you're getting into Windows Internal stuff that might not be public or well-known. Honestly, it's going to be easier to instrument your app and read the vars back out of the memory dump – Paul Betts Jan 31 at 21:07
feedback

Your Answer

 
or
required, but never shown

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