开发者

Snoop interprocess communications

开发者 https://www.devze.com 2023-01-23 15:01 出处:网络
Has anyone tried to create a log file of interprocess communications开发者_运维知识库? Could someone give me a little advice on the best way to achieve this?The question is not quite clear, and commen

Has anyone tried to create a log file of interprocess communications开发者_运维知识库? Could someone give me a little advice on the best way to achieve this?


The question is not quite clear, and comments make it less clear, but anyway...

The two things to try first are ipcs and strace -e trace=ipc.


If you want to log all IPC(seems very intensive), you should consider instrumentation.

Their are a lot of good tools for this, check out PIN in perticular, this section of the manual;

In this example, we show how to do more selective instrumentation by examining the instructions. This tool generates a trace of all memory addresses referenced by a program. This is also useful for debugging and for simulating a data cache in a processor.

If your doing some heavy weight tuning and analysis, check out TAU (Tuning and analysis utilitiy).


Communication to a kernel driver can take many forms. There is usually a special device file for communication, or there can be a special socket type, like NETLINK. If you are lucky, there's a character device to which read() and write() are the sole means of interaction - if that's the case then those calls are easy to intercept with a variety of methods. If you are unlucky, many things are done with ioctls or something even more difficult.

However, running 'strace' on the program using the kernel driver to communicate can reveal just about all it does - though 'ltrace' might be more readable if there happens to be libraries the program uses for communication. By tuning the arguments to 'strace', you can probably get a dump which contains just the information you need:

  • First, just eyeball the calls and try to figure out the means of kernel communication
  • Then, add filters to strace call to log only the kernel communication calls
  • Finally, make sure strace logs the full strings of all calls, so you don't have to deal with truncated data

The answers which point to IPC debugging probably are not relevant, as communicating with the kernel almost never has anything to do with IPC (atleast not the different UNIX IPC facilities).

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号