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 <TargetConditionals.h>
62 #if !TARGET_OS_EMBEDDED
63 #include "kextmanager.h"
64 #include <IOKit/kext/kextmanager_types.h>
66 #include <mach/mach_port.h> // allocate
67 #include <mach/mach.h> // task_self, etc
68 #include <servers/bootstrap.h> // bootstrap
73 u_int
get_pageins(void);
74 #if defined(__APPLE__) && !TARGET_OS_EMBEDDED
75 int reserve_reboot(void);
81 main(int argc
, char *argv
[])
84 int ch
, howto
, kflag
, lflag
, nflag
, qflag
, uflag
;
88 int i
, fd
, pflag
, sverrno
;
93 if (strstr((p
= rindex(*argv
, '/')) ? p
+ 1 : *argv
, "halt")) {
98 kflag
= lflag
= nflag
= qflag
= 0;
100 while ((ch
= getopt(argc
, argv
, "dk:lnpq")) != -1)
102 while ((ch
= getopt(argc
, argv
, "lnqu")) != -1)
121 /* -p is irrelevant on OS X. It does that anyway. */
125 howto
|= RB_POWEROFF
;
130 howto
|= RB_UPSDELAY
;
144 if ((howto
& (RB_DUMP
| RB_HALT
)) == (RB_DUMP
| RB_HALT
))
145 errx(1, "cannot dump (-d) when halting; must reboot instead");
152 #if defined(__APPLE__) && !TARGET_OS_EMBEDDED
153 if (!lflag
) { // shutdown(8) has already checked w/kextd
154 if ((errno
= reserve_reboot()) && !qflag
)
155 err(1, "couldn't lock for reboot");
161 // launchd(8) handles reboot. This call returns NULL on success.
162 exit(reboot2(howto
) == NULL
? EXIT_SUCCESS
: EXIT_FAILURE
);
163 #else /* __APPLE__ */
165 #endif /* __APPLE__ */
171 fd
= open("/boot/nextboot.conf", O_WRONLY
| O_CREAT
, 0444);
173 (void)write(fd
, "nextboot_enable=\"YES\"\n", 22);
174 (void)write(fd
, "kernel=\"", 8L);
175 (void)write(fd
, kernel
, strlen(kernel
));
176 (void)write(fd
, "\"\n", 2);
182 /* Log the reboot. */
184 if ((user
= getlogin()) == NULL
)
185 user
= (pw
= getpwuid(getuid())) ?
188 openlog("halt", 0, LOG_AUTH
| LOG_CONS
);
189 syslog(LOG_CRIT
, "halted by %s%s", user
,
190 (howto
& RB_UPSDELAY
) ? " with UPS delay":"");
192 openlog("reboot", 0, LOG_AUTH
| LOG_CONS
);
193 syslog(LOG_CRIT
, "rebooted by %s", user
);
196 logwtmp("~", "shutdown", "");
199 * Do a sync early on, so disks start transfers while we're off
200 * killing processes. Don't worry about writes done before the
201 * processes die, the reboot system call syncs the disks.
207 /* Just stop init -- if we fail, we'll restart it. */
208 if (kill(1, SIGTSTP
) == -1)
209 err(1, "SIGTSTP init");
212 /* Ignore the SIGHUP we get when our parent shell dies. */
213 (void)signal(SIGHUP
, SIG_IGN
);
216 /* Send a SIGTERM first, a chance to save the buffers. */
217 if (kill(-1, SIGTERM
) == -1)
218 err(1, "SIGTERM processes");
221 * After the processes receive the signal, start the rest of the
222 * buffers on their way. Wait 5 seconds between the SIGTERM and
223 * the SIGKILL to give everybody a chance. If there is a lot of
224 * paging activity then wait longer, up to a maximum of approx
228 for (i
= 0; i
< 20; i
++) {
229 pageins
= get_pageins();
233 if (get_pageins() == pageins
)
238 if (kill(-1, SIGKILL
) == -1) {
244 (void)fprintf(stderr
,
245 "WARNING: some process(es) wouldn't die\n");
253 // launchd(8) handles reboot. This call returns NULL on success.
254 exit(reboot2(howto
) == NULL
? EXIT_SUCCESS
: EXIT_FAILURE
);
255 #else /* __APPLE__ */
261 errx(1, "%s%s", kill(1, SIGHUP
) == -1 ? "(can't restart init): " : "",
264 #endif /* __APPLE__ */
271 (void)fprintf(stderr
, "usage: %s [-dnpq] [-k kernel]\n",
273 (void)fprintf(stderr
, "usage: %s [-lnq]\n",
275 dohalt
? "halt" : "reboot");
285 len
= sizeof(pageins
);
286 if (sysctlbyname("vm.stats.vm.v_swappgsin", &pageins
, &len
, NULL
, 0)
288 warnx("v_swappgsin");
294 #if defined(__APPLE__) && !TARGET_OS_EMBEDDED
295 // XX this routine is also in shutdown.tproj; it would be nice to share
297 #define WAITFORLOCK 1
299 * contact kextd to lock for reboot
304 int rval
= ELAST
+ 1;
305 kern_return_t macherr
= KERN_FAILURE
;
306 mach_port_t kxport
, tport
= MACH_PORT_NULL
, myport
= MACH_PORT_NULL
;
307 int busyStatus
= ELAST
+ 1;
308 mountpoint_t busyVol
;
310 macherr
= bootstrap_look_up(bootstrap_port
, KEXTD_SERVER_NAME
, &kxport
);
311 if (macherr
) goto finish
;
313 // allocate a port to pass to kextd (in case we die)
314 tport
= mach_task_self();
315 if (tport
== MACH_PORT_NULL
) goto finish
;
316 macherr
= mach_port_allocate(tport
, MACH_PORT_RIGHT_RECEIVE
, &myport
);
317 if (macherr
) goto finish
;
319 // try to lock for reboot
320 macherr
= kextmanager_lock_reboot(kxport
, myport
, !WAITFORLOCK
, busyVol
,
322 if (macherr
) goto finish
;
324 if (busyStatus
== EBUSY
) {
325 warnx("%s is busy updating; waiting for lock", busyVol
);
326 macherr
= kextmanager_lock_reboot(kxport
, myport
, WAITFORLOCK
,
327 busyVol
, &busyStatus
);
328 if (macherr
) goto finish
;
331 if (busyStatus
== EALREADY
) {
332 // reboot already in progress
339 // in general, we want to err on the side of allowing the reboot
341 if (macherr
!= BOOTSTRAP_UNKNOWN_SERVICE
)
342 warnx("WARNING: couldn't lock kext manager for reboot: %s",
343 mach_error_string(macherr
));
346 // unless we got the lock, clean up our port
347 if (busyStatus
!= 0 && myport
!= MACH_PORT_NULL
)
348 mach_port_mod_refs(tport
, myport
, MACH_PORT_RIGHT_RECEIVE
, -1);