I need to log socket usage, and I wrote a LD_PRELOAD library.
The problem is when I override read() and write() than ordinary file operations are get logged too (of course).
So how can I tell ordinary file descriptors and socket descriptors apart?
Call fstat on the descriptor and use the S_ISSOCK macro on the result.
fstat
struct stat statbuf; fstat(fd, &statbuf); S_ISSOCK(statbuf.st_mode);
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
2 years ago
viewed
582 times
active