I want to create a temporary file on linux while making sure that the file will disappear after my program has terminated, even if it got killed or someone performs a hard reboot in the wrong moment. Does tmpfile() handle all this for me?
|
|
||||
|
You seem pre-occupied with the idea that files might get left behind some how because of some race condition, I don't see an explanation of why this is a concern. "A race condition occurs when a program doesn't work as it's supposed to because of an unexpected ordering of events that produces contention over the same resource." I was assuming that from your comments on other answers your concern was specifically on a dead-lock which is a result of trying to remediate a race-condition ( contention of the shared resource ). It is still not clear what your concern is, calling Given that there isn't any mention of concurrency, threading or other processes sharing this file descriptor to this temp file, I still don't see the possibility for a race condition, maybe the concept of an incomplete logical transaction, but that can be detected and cleaned up. The correct way to make absolutely sure that any allocated file system resources are cleaned up is not solely on exit of an application but also also on start-up. All my server code, makes sure that everything is cleaned up from a previous run before it starts and makes itself available. Put your temp files in a sub-dir in |
|||||||||
|
|
according to tmpfile() man page:
I have not tested, but it seems it should do what you want. Moreover:
Then, when a reboot is produced, |
|||||
|
|
If you don't want to use But on a hard reboot, a fsck might be needed in order to recover the space. But as this is always the case, it is no special drawback of this approach. |
|||||
|
|
EDIT: Yes I checked the tmpfile source, and it does indeed use glglgl trick, and instantly unlocks the file. Original: I would say no. Got killed should work, but I would assume that it can happen, that after a hard reboot (e.g. due to power outtake) the file is still there. But that depends on your Linux distribution and the used settings. If the temp file is created in a ramdisk, it is gone (there are unix distris out there that e.g. use a ram based tmpfs for temporary files). Or if you use an environment that has certain policy regarding tmp, it could be also gone (maybe not instant, but often there are policies, like e.g. remove all files in /tmp that are not accessed within one month), but it could be also on a standard file system where such rules are not enforced. In this case the file would stay. |
|||||||||||
|
|
The customary approach is to set up a signal handler to clean up if the program is interrupted. This will not handle |
||||
|
open()andunlink(). – thejh Mar 27 '12 at 12:54tmpfile()and having the program exit abnormally before callingunlink()is the least of your worries if your application is really that fragile. – Jarrod Roberson Mar 27 '12 at 14:08