When we perform a fork in Unix, open file handles are inherited, and if we don't need to use them we should close them. However, when we use libraries, file handles may be opened for which we do not have access to the handle. How do we check for these open file handles?
|
2
|
|
|
|
|
|
If the libraries are opening files you don't know about, how do you know they don't need them after a fork? Unexported handles are an internal library detail, if the library wants them closed it will register an atfork() handler to close them. Walking around behind some piece of code closing its file handles behind its back will lead to subtle hard to debug problems since the library will error unexpectedly when it attempts to work with a handle it knows it opened correctly, but did not close. |
|||
|
|
|
|
In Linux you can check Alternatively you can use |
||
|
|
|
|
As mentioned on @Louis Gerbarg's answer, the libraries are probably expecting the file handles to be kept open on The problem most people have is on the On libraries used by multithread programs, there is a race condition between a library creating a file handle and setting |
|||
|
|
|
|
To start with, you don't really need to care a whole lot about the open file descriptors you don't know about. If you know you're not going to write to them again, closing them is a good idea and doesn't hurt - you just did a fork() after all, the fds are open twice. But likewise, if you leave them open , they won't bother you either - after all, you don't know about them, you presumably won't be randomly writing to them. As for what your third-party libraries will do, it's a bit of a toss-up either way. Some probably don't expect to run into a situation with a fork(), and might end up accidentally writing to the same fd from two processes without any synchronization. Others probably don't expect to have you closing their fds on them. You'll have to check. This is why it's a bad idea to randomly open a file descriptor in a library and not give it to the caller to manage. All that said, in the spirit of answering the original question, there isn't a particularly good way. You can call
but at that point you're just as well off saying Assuming you still want to take the nuclear option of closing everything, you then need to find the maximum number of open file descriptors possible. Assuming 1 to 65,535 is not a good idea. First of all, fds start at 0, of course, but also there's no particular upper limit defined. To be portable, POSIX's Don't forget to not close fds 0, 1, and 2 - that can really confuse things. |
||
|
|
|
You can do from a shell:
Where PID is your process pid. |
||
|
|
|
I agree with what other people have said about closing random files being dangerous. You might end up filing some pretty interesting bug reports for all of your third-party tools. That said, if you know you won't need those files to be open, you can always walk through all of the valid file descriptors (1 to 65535, IIRC) and close everything you don't recognize. |
||
|
|
|
Reasonable libraries will always have functions which free whatever resources (eg. file handles) they have allocated. |
||
|
|
|
|
Just a link, but it seems helpful: How many open files? at netadmintools.com. It seems to use /proc investigations to learn about a process' open files, not sure if that is the only way or if there is an API. Parsing files for this type of information can be a bit ... messy. Also, /proc might be deprecated too, something to check for. |
||
|
|
|
|
Isn't this a design issue ? Is it possible for your process to fork before initializing the libs that open those files ? |
||
|
|
