1 /* $NetBSD: shutdown.c,v 1.55 2011/08/27 18:54:39 joerg Exp $ */
4 * Copyright (c) 1988, 1990, 1993
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 #include <sys/cdefs.h>
34 __COPYRIGHT("@(#) Copyright (c) 1988, 1990, 1993\
35 The Regents of the University of California. All rights reserved.");
40 static char sccsid
[] = "@(#)shutdown.c 8.4 (Berkeley) 4/28/95";
42 __RCSID("$NetBSD: shutdown.c,v 1.55 2011/08/27 18:54:39 joerg Exp $");
46 #include <sys/param.h>
48 #include <sys/resource.h>
49 #include <sys/syslog.h>
65 #include "pathnames.h"
69 #define _PATH_NOLOGIN "./nologin"
71 #define _PATH_FASTBOOT "./fastboot"
77 #define NOLOG_TIME 5*60
78 static const struct interval
{
79 time_t timeleft
, timetowait
;
81 { 10 H
, 5 H
}, { 5 H
, 3 H
}, { 2 H
, 1 H
}, { 1 H
, 30 M
},
82 { 30 M
, 10 M
}, { 20 M
, 10 M
}, { 10 M
, 5 M
}, { 5 M
, 3 M
},
83 { 2 M
, 1 M
}, { 1 M
, 30 S
}, { 30 S
, 30 S
},
90 static time_t offset
, shuttime
;
91 static int dofast
, dohalt
, doreboot
, killflg
, nofork
, nosync
, dodump
;
92 static size_t mbuflen
;
93 static int dopowerdown
;
94 static int dodebug
, dosilent
, doverbose
;
95 static const char *whom
;
96 static char mbuf
[BUFSIZ
];
99 static void badtime(void) __dead
;
100 static void die_you_gravy_sucking_pig_dog(void) __dead
;
101 static void doitfast(void);
102 static void dorcshutdown(void);
103 static void finish(int) __dead
;
104 static void getoffset(char *);
105 static void loop(void) __dead
;
106 static void nolog(void);
107 static void timeout(int) __dead
;
108 static void timewarn(time_t);
109 static void usage(void) __dead
;
112 main(int argc
, char *argv
[])
119 (void)setprogname(argv
[0]);
122 errx(1, "%s: Not super-user", strerror(EPERM
));
124 while ((ch
= getopt(argc
, argv
, "b:Ddfhknprvxz")) != -1)
172 if (dodump
&& !dohalt
&& !doreboot
)
175 if (dofast
&& nosync
) {
176 warnx("Incompatible options -f and -n");
179 if (dohalt
&& doreboot
) {
180 const char *which_flag
= dopowerdown
? "p" : "h";
182 warnx("Incompatible options -%s and -r", which_flag
);
189 if (strcmp(argv
[0], "-") || argv
[1]) {
190 for (p
= mbuf
, len
= sizeof(mbuf
); *argv
; ++argv
) {
191 arglen
= strlen(*argv
);
192 if ((len
-= arglen
) <= 2)
196 (void)memmove(p
, *argv
, arglen
);
203 endp
= mbuf
+ sizeof(mbuf
) - 2;
205 if (!fgets(p
, endp
- p
+ 1, stdin
))
207 for (; *p
&& p
< endp
; ++p
);
216 mbuflen
= strlen(mbuf
);
219 (void)printf("Shutdown at %.24s.\n", ctime(&shuttime
));
221 (void)printf("Shutdown NOW!\n");
223 if (!(whom
= getlogin()))
224 whom
= (pw
= getpwuid(getuid())) ? pw
->pw_name
: "???";
227 (void)putc('\n', stdout
);
229 (void)setpriority(PRIO_PROCESS
, 0, PRIO_MIN
);
235 perror("shutdown: fork");
239 (void)printf("shutdown: [pid %d]\n", forkpid
);
245 openlog("shutdown", LOG_CONS
, LOG_AUTH
);
256 const struct interval
*tp
;
260 if (offset
<= NOLOG_TIME
) {
267 if (tp
->timeleft
< offset
)
268 (void)sleep((u_int
)(offset
- tp
->timeleft
));
270 while (offset
< tp
->timeleft
)
273 * Warn now, if going to sleep more than a fifth of
274 * the next wait time.
276 if ((sltime
= offset
- tp
->timeleft
) != 0) {
277 if (sltime
> tp
->timetowait
/ 5)
283 timewarn(tp
->timeleft
);
284 if (!logged
&& tp
->timeleft
<= NOLOG_TIME
) {
288 (void)sleep((u_int
)tp
->timetowait
);
292 die_you_gravy_sucking_pig_dog();
295 static jmp_buf alarmbuf
;
298 timewarn(time_t timeleft
)
301 static char hostname
[MAXHOSTNAMELEN
+ 1];
303 char wcmd
[MAXPATHLEN
+ 4];
306 (void)gethostname(hostname
, sizeof(hostname
));
307 hostname
[sizeof(hostname
) - 1] = '\0';
310 /* undoc -n option to wall suppresses normal wall banner */
311 (void)snprintf(wcmd
, sizeof wcmd
, "%s -n", _PATH_WALL
);
312 if ((pf
= popen(wcmd
, "w")) == NULL
) {
313 syslog(LOG_ERR
, "%s: Can't find `%s' (%m)", getprogname(),
319 "\007*** %sSystem shutdown message from %s@%s ***\007\n",
320 timeleft
? "": "FINAL ", whom
, hostname
);
322 if (timeleft
> 10*60)
323 (void)fprintf(pf
, "System going down at %5.5s\n\n",
324 ctime(&shuttime
) + 11);
325 else if (timeleft
> 59)
326 (void)fprintf(pf
, "System going down in %ld minute%s\n\n",
327 (long)timeleft
/ 60, (timeleft
> 60) ? "s" : "");
329 (void)fprintf(pf
, "System going down in 30 seconds\n\n");
331 (void)fprintf(pf
, "System going down IMMEDIATELY\n\n");
334 (void)fwrite(mbuf
, sizeof(*mbuf
), mbuflen
, pf
);
337 * play some games, just in case wall doesn't come back
338 * probably unnecessary, given that wall is careful.
340 if (!setjmp(alarmbuf
)) {
341 (void)signal(SIGALRM
, timeout
);
342 (void)alarm((u_int
)30);
344 (void)alarm((u_int
)0);
345 (void)signal(SIGALRM
, SIG_DFL
);
353 longjmp(alarmbuf
, 1);
357 die_you_gravy_sucking_pig_dog(void)
363 } else if (dohalt
&& dopowerdown
) {
371 syslog(LOG_NOTICE
, "%s by %s: %s", what
, whom
, mbuf
);
374 (void)printf("\r\nSystem shutdown time has arrived\007\007\r\n");
376 (void)printf("\rbut you'll have to do it yourself\r\n");
382 if (doreboot
|| dohalt
) {
383 const char *args
[20];
384 const char **arg
, *path
;
414 (void)unlink(_PATH_NOLOGIN
);
415 (void)execve(path
, __UNCONST(args
), NULL
);
417 syslog(LOG_ERR
, "Can't exec `%s' (%m)", path
);
419 warn("Can't exec `%s'", path
);
422 for (arg
= &args
[0]; *arg
; arg
++)
428 (void)kill(1, SIGTERM
); /* to single user */
436 #define ATOI2(s) ((s) += 2, ((s)[-2] - '0') * 10 + ((s)[-1] - '0'))
439 getoffset(char *timearg
)
447 if (!strcasecmp(timearg
, "now")) { /* now */
453 if (*timearg
== '+') { /* +minutes */
454 if (!isdigit((unsigned char)*++timearg
))
456 offset
= atoi(timearg
) * 60;
457 shuttime
= now
+ offset
;
461 /* handle hh:mm by getting rid of the colon */
462 for (p
= timearg
; *p
; ++p
)
463 if (!isascii(*p
) || !isdigit((unsigned char)*p
)) {
464 if (*p
== ':' && strlen(p
) == 3) {
473 (void)unsetenv("TZ"); /* OUR timezone */
474 lt
= localtime(&now
); /* current time val */
479 switch (strlen(timearg
)) {
481 lt
->tm_year
= ATOI2(timearg
) * 100 - TM_YEAR_BASE
;
486 lt
->tm_year
+= ATOI2(timearg
);
488 yearset
= ATOI2(timearg
);
490 lt
->tm_year
= yearset
+ 2000 - TM_YEAR_BASE
;
492 lt
->tm_year
= yearset
+ 1900 - TM_YEAR_BASE
;
496 lt
->tm_mon
= ATOI2(timearg
);
500 lt
->tm_mday
= ATOI2(timearg
);
503 lt
->tm_hour
= ATOI2(timearg
);
506 lt
->tm_min
= ATOI2(timearg
);
512 if ((shuttime
= mktime(lt
)) == -1)
514 if ((offset
= shuttime
- now
) < 0)
515 errx(1, "time is already past");
521 (void)printf("\r\nAbout to run shutdown hooks...\r\n");
524 (void)system(". " _PATH_RCSHUTDOWN
);
526 (void)sleep(5); /* Give operator a chance to abort this. */
527 (void)printf("\r\nDone running shutdown hooks.\r\n");
530 #define FSMSG "fastboot file for fsck\n"
536 if ((fastfd
= open(_PATH_FASTBOOT
, O_WRONLY
|O_CREAT
|O_TRUNC
,
538 (void)write(fastfd
, FSMSG
, sizeof(FSMSG
) - 1);
543 #define NOMSG "\n\nNO LOGINS: System going down at "
550 (void)unlink(_PATH_NOLOGIN
); /* in case linked to another file */
551 (void)signal(SIGINT
, finish
);
552 (void)signal(SIGHUP
, finish
);
553 (void)signal(SIGQUIT
, finish
);
554 (void)signal(SIGTERM
, finish
);
555 if ((logfd
= open(_PATH_NOLOGIN
, O_WRONLY
|O_CREAT
|O_TRUNC
,
557 (void)write(logfd
, NOMSG
, sizeof(NOMSG
) - 1);
558 ct
= ctime(&shuttime
);
559 (void)write(logfd
, ct
+ 11, 5);
560 (void)write(logfd
, "\n\n", 2);
561 (void)write(logfd
, mbuf
, strlen(mbuf
));
572 (void)unlink(_PATH_NOLOGIN
);
580 warnx("illegal time format");
588 (void)fprintf(stderr
,
589 "Usage: %s [-Ddfhknprvxz] [-b bootstr] time [message ... | -]\n",