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.

link|improve this question

Interesting question. Do you want to stop the shutdown or just be notified ? – ereOn May 14 '10 at 7:17
I just want to be notified. – 341008 May 14 '10 at 8:07
Well I have given up. I have decided to treat any SIGTERM as a message that the OS wants to shutdown. My (lame??) justification is that 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. Even if it is not a shutdown the app should listen to it. This brings me to another question. What's the minimum time between a SIGTERM and a SIGKILL in a shutdown sequence? I know it can be configured using -t switch, but is there a minimum limit? – 341008 May 19 '10 at 10:56
feedback

4 Answers

up vote 2 down vote accepted

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.

link|improve this answer
feedback

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.

link|improve this answer
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. – 341008 May 14 '10 at 8:07
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 May 14 '10 at 13:54
feedback

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.

link|improve this answer
feedback

from man shutdown: If the time argument is used, 5 minutes before the system goes down the /etc/nologin file is created to ensure that further logins shall not be allowed.

So you can test existenc of /etc/nologin. It is not optimal, but probably best you can get.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.