2 * Copyright (c) 1980, 1986, 1993
3 * The Regents of the University of California. All rights reserved.
4 * Portions copyright (c) 2007 Apple Inc. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. Neither the name of the University nor the names of its contributors
15 * may be used to endorse or promote products derived from this software
16 * without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 static const char copyright
[] =
33 "@(#) Copyright (c) 1980, 1986, 1993\n\
34 The Regents of the University of California. All rights reserved.\n";
39 static char sccsid
[] = "@(#)reboot.c 8.1 (Berkeley) 6/5/93";
41 static const char rcsid
[] =
42 "$FreeBSD: src/sbin/reboot/reboot.c,v 1.17 2002/10/06 16:24:36 thomas Exp $";
45 #include <sys/reboot.h>
46 #include <sys/types.h>
47 #include <sys/sysctl.h>
61 #include "kextmanager.h"
62 #include <IOKit/kext/kextmanager_types.h>
63 #include <mach/mach_port.h> // allocate
64 #include <mach/mach.h> // task_self, etc
65 #include <servers/bootstrap.h> // bootstrap
70 u_int
get_pageins(void);
72 int reserve_reboot(void);
78 main(int argc
, char *argv
[])
81 int ch
, howto
, kflag
, lflag
, nflag
, qflag
, uflag
;
85 int i
, fd
, pflag
, sverrno
;
90 if (strstr((p
= rindex(*argv
, '/')) ? p
+ 1 : *argv
, "halt")) {
95 kflag
= lflag
= nflag
= qflag
= 0;
97 while ((ch
= getopt(argc
, argv
, "dk:lnpq")) != -1)
99 while ((ch
= getopt(argc
, argv
, "lnqu")) != -1)
118 /* -p is irrelevant on OS X. It does that anyway. */
122 howto
|= RB_POWEROFF
;
127 howto
|= RB_UPSDELAY
;
140 if ((howto
& (RB_DUMP
| RB_HALT
)) == (RB_DUMP
| RB_HALT
))
141 errx(1, "cannot dump (-d) when halting; must reboot instead");
149 if (!lflag
) { // shutdown(8) has already checked w/kextd
150 if ((errno
= reserve_reboot()) && !qflag
)
151 err(1, "couldn't lock for reboot");
162 fd
= open("/boot/nextboot.conf", O_WRONLY
| O_CREAT
, 0444);
164 (void)write(fd
, "nextboot_enable=\"YES\"\n", 22);
165 (void)write(fd
, "kernel=\"", 8L);
166 (void)write(fd
, kernel
, strlen(kernel
));
167 (void)write(fd
, "\"\n", 2);
173 /* Log the reboot. */
175 if ((user
= getlogin()) == NULL
)
176 user
= (pw
= getpwuid(getuid())) ?
179 openlog("halt", 0, LOG_AUTH
| LOG_CONS
);
180 syslog(LOG_CRIT
, "halted by %s%s", user
,
181 (howto
& RB_UPSDELAY
) ? " with UPS delay":"");
183 openlog("reboot", 0, LOG_AUTH
| LOG_CONS
);
184 syslog(LOG_CRIT
, "rebooted by %s", user
);
187 logwtmp("~", "shutdown", "");
190 * Do a sync early on, so disks start transfers while we're off
191 * killing processes. Don't worry about writes done before the
192 * processes die, the reboot system call syncs the disks.
198 /* Just stop init -- if we fail, we'll restart it. */
199 if (kill(1, SIGTSTP
) == -1)
200 err(1, "SIGTSTP init");
203 /* Ignore the SIGHUP we get when our parent shell dies. */
204 (void)signal(SIGHUP
, SIG_IGN
);
207 /* Send a SIGTERM first, a chance to save the buffers. */
208 if (kill(-1, SIGTERM
) == -1)
209 err(1, "SIGTERM processes");
212 * After the processes receive the signal, start the rest of the
213 * buffers on their way. Wait 5 seconds between the SIGTERM and
214 * the SIGKILL to give everybody a chance. If there is a lot of
215 * paging activity then wait longer, up to a maximum of approx
219 for (i
= 0; i
< 20; i
++) {
220 pageins
= get_pageins();
224 if (get_pageins() == pageins
)
229 if (kill(-1, SIGKILL
) == -1) {
235 (void)fprintf(stderr
,
236 "WARNING: some process(es) wouldn't die\n");
244 // launchd(8) handles reboot. This call returns NULL on success.
245 exit(reboot2(howto
) == NULL
? EXIT_SUCCESS
: EXIT_FAILURE
);
246 #else /* __APPLE__ */
252 errx(1, "%s%s", kill(1, SIGHUP
) == -1 ? "(can't restart init): " : "",
255 #endif /* __APPLE__ */
262 (void)fprintf(stderr
, "usage: %s [-dnpq] [-k kernel]\n",
264 (void)fprintf(stderr
, "usage: %s [-lnq]\n",
266 dohalt
? "halt" : "reboot");
276 len
= sizeof(pageins
);
277 if (sysctlbyname("vm.stats.vm.v_swappgsin", &pageins
, &len
, NULL
, 0)
279 warnx("v_swappgsin");
286 // XX this routine is also in shutdown.tproj; it would be nice to share
288 #define WAITFORLOCK 1
290 * contact kextd to lock for reboot
295 int rval
= ELAST
+ 1;
296 kern_return_t macherr
= KERN_FAILURE
;
297 mach_port_t kxport
, tport
= MACH_PORT_NULL
, myport
= MACH_PORT_NULL
;
298 int busyStatus
= ELAST
+ 1;
299 mountpoint_t busyVol
;
301 macherr
= bootstrap_look_up(bootstrap_port
, KEXTD_SERVER_NAME
, &kxport
);
302 if (macherr
) goto finish
;
304 // allocate a port to pass to kextd (in case we die)
305 tport
= mach_task_self();
306 if (tport
== MACH_PORT_NULL
) goto finish
;
307 macherr
= mach_port_allocate(tport
, MACH_PORT_RIGHT_RECEIVE
, &myport
);
308 if (macherr
) goto finish
;
310 // try to lock for reboot
311 macherr
= kextmanager_lock_reboot(kxport
, myport
, !WAITFORLOCK
, busyVol
,
313 if (macherr
) goto finish
;
315 if (busyStatus
== EBUSY
) {
316 warnx("%s is busy updating; waiting for lock", busyVol
);
317 macherr
= kextmanager_lock_reboot(kxport
, myport
, WAITFORLOCK
,
318 busyVol
, &busyStatus
);
319 if (macherr
) goto finish
;
322 if (busyStatus
== EALREADY
) {
323 // reboot already in progress
330 // in general, we want to err on the side of allowing the reboot
332 if (macherr
!= BOOTSTRAP_UNKNOWN_SERVICE
)
333 warnx("WARNING: couldn't lock kext manager for reboot: %s",
334 mach_error_string(macherr
));
337 // unless we got the lock, clean up our port
338 if (busyStatus
!= 0 && myport
!= MACH_PORT_NULL
)
339 mach_port_mod_refs(tport
, myport
, MACH_PORT_RIGHT_RECEIVE
, -1);