I wanted to find all fds opened for a process in linux.
Can I do it with glib library functions ?
|
I wanted to find all fds opened for a process in linux. Can I do it with glib library functions ? |
|||
|
|
|
Since you're on Linux, you've (almost certainly) got the Getting the information otherwise is moderately awkward (there's no helpful POSIX API for example; this is an area that wasn't standardized). |
|||||||||||||
|
|
Here's some code I used to use, I didn't know about /proc/self (thx Donal!), but this way is probably more generic anyway. I've included the required includes for all the functions at the top.
I went through a very bad problem with leaking file handles once, and it turns out I actually coded the solution Tom H. suggested:
You'll probably want these too, to satisfy the last printf above...
FD_SETSIZE is usually 1024, and the maximum files per process is usually 1024. If you want to be sure, you can replace it with a call to this function, as described by TomH.
If you put all of that together into a single file (which I did, just to check it), you can produce an output similar to this to confirm it works as advertised:
I hope that answers any questions you have, and in case you were wondering, I actually came here looking for the answer to the question the OP asked, and upon reading the answered, remember I had already written the code years ago. Enjoy. |
|||
|
|
|
If you can identify the process via pid you can simply do
In C you can pipe everything and reuse either the output or you may count the files by yourself in the above mentioned directory(count method e.g. here Counting the number of files in a directory using C) |
|||
|
|
|
If you mean how can you do it programatically from within the process then the normal (if slightly horrid) method is to do something like looping over all possible descriptors (use If you mean that you want to find out from the shell what files a process has open then |
|||||||||||
|
|
fstat command lists all running processes of the system and their open descriptors furthermore it lists what type of descriptor it is (file, socket, pipe, etc) and tries to give a hint of what the descriptor is reading or writing on such as what filesystem and what inode number on that file system |
|||
|
|