views:

194

answers:

3

Hi, I am working on an app where I need to detect system shutdown. However, I have not found any reliable way get a notification on this event. I know that on shutdown, my app will receive a SIGTERM signal followed by a SIGKILL. What I want to know is if there is someway to query if a SIGTERM is part of a shutdown sequence? Does any one know if there is a way to query that programmatically (C API)? As far as I know, the system does not provide any other method to query for an impending shutdowm. If it does, that would solve my problem as well. I have been trying out runlevels as well, but change in runlevels seem to be instantaneous and without any prior warnings.

+1  A: 

When the system shuts down, the rc.d scripts are called.

Maybe you can add a script there that sends some special signal to your program.

However, I doubt you can stop the system shutdown that way.

ereOn
Thanks for the quick answer. I have no control over the machines my app will be deployed on so I cannot change anything on them. Also, I do not want to stop shutdown. I just want to know when shutdown is about to occur.
Rajorshi
Well I'm afraid there is nothing much else to do (at least, that I can think of). Maybe if you explain us what you want to achieve we may help you to find an alternative ?
ereOn
+1  A: 

Making your application responding differently to some SIGTERM signals than others seems opaque and potentially confusing. It's arguable that you should always respond the same way to a given signal. Adding unusual conditions makes it harder to understand and test application behavior.

Adding an rc script that handles shutdown (by sending a special signal) is a completely standard way to handle such a problem; if this script is installed as part of a standard package (make install or rpm/deb packaging) there should be no worries about control of user machines.

Eric Seppanen
+2  A: 

There is no way to determine if a SIGTERM is a part of a shutdown sequence. To detect a shutdown sequence you can either use use rc.d scripts like ereOn and Eric Sepanson suggested or use mechanisms like DBus. However, from a design point of view it makes sense to not ignore SIGTERM even if it is not part of shutdown. SIGTERM's primary purpose is to politely ask apps to exit cleanly and it is not likely that someone with enough privileges will issue a SIGTERM if he/she does not want the app to exit.

Rajorshi