kern_shutdown.c revision 26100
1/*-
2 * Copyright (c) 1986, 1988, 1991, 1993
3 *	The Regents of the University of California.  All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 *    notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 *    notice, this list of conditions and the following disclaimer in the
17 *    documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 *    must display the following acknowledgement:
20 *	This product includes software developed by the University of
21 *	California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 *    may be used to endorse or promote products derived from this software
24 *    without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 *	@(#)kern_shutdown.c	8.3 (Berkeley) 1/21/94
39 * $Id: kern_shutdown.c,v 1.14 1997/04/26 11:46:14 peter Exp $
40 */
41
42#include "opt_ddb.h"
43
44#include <sys/param.h>
45#include <sys/systm.h>
46#include <sys/reboot.h>
47#include <sys/msgbuf.h>
48#include <sys/proc.h>
49#include <sys/vnode.h>
50#include <sys/tty.h>
51#include <sys/tprintf.h>
52#include <sys/syslog.h>
53#include <sys/malloc.h>
54#include <sys/kernel.h>
55#include <sys/mount.h>
56#include <sys/sysctl.h>
57#include <sys/conf.h>
58#include <sys/sysproto.h>
59
60#include <machine/pcb.h>
61#include <machine/clock.h>
62#include <machine/cons.h>
63#include <machine/md_var.h>
64
65#include <sys/utsname.h>
66#include <sys/signalvar.h>
67
68#ifndef PANIC_REBOOT_WAIT_TIME
69#define PANIC_REBOOT_WAIT_TIME 15 /* default to 15 seconds */
70#endif
71
72/*
73 * Note that stdarg.h and the ANSI style va_start macro is used for both
74 * ANSI and traditional C compilers.
75 */
76#include <machine/stdarg.h>
77
78#if defined(DDB)
79#ifdef DDB_UNATTENDED
80	static int debugger_on_panic = 0;
81#else
82	static int debugger_on_panic = 1;
83#endif
84
85SYSCTL_INT(_debug, OID_AUTO, debugger_on_panic, CTLFLAG_RW,
86	&debugger_on_panic, 0, "");
87#endif
88
89
90/*
91 * Variable panicstr contains argument to first call to panic; used as flag
92 * to indicate that the kernel has already called panic.
93 */
94const char *panicstr;
95
96/*
97 * callout list for things to do a shutdown
98 */
99typedef struct shutdown_list_element {
100	struct shutdown_list_element *next;
101	bootlist_fn function;
102	void *arg;
103} *sle_p;
104
105/*
106 * there are two shutdown lists. Some things need to be shut down
107 * Earlier than others.
108 */
109static sle_p shutdown_list1;
110static sle_p shutdown_list2;
111
112
113static void dumpsys(void);
114
115#ifndef _SYS_SYSPROTO_H_
116struct reboot_args {
117	int	opt;
118};
119#endif
120/* ARGSUSED */
121
122/*
123 * The system call that results in a reboot
124 */
125int
126reboot(p, uap, retval)
127	struct proc *p;
128	struct reboot_args *uap;
129	int *retval;
130{
131	int error;
132
133	if ((error = suser(p->p_ucred, &p->p_acflag)))
134		return (error);
135
136	boot(uap->opt);
137	return (0);
138}
139
140/*
141 * Called by events that want to shut down.. e.g  <CTL><ALT><DEL> on a PC
142 */
143void
144shutdown_nice(void)
145{
146	/* Send a signal to init(8) and have it shutdown the world */
147	if (initproc != NULL) {
148		psignal(initproc, SIGINT);
149	} else {
150		/* No init(8) running, so simply reboot */
151		boot(RB_NOSYNC);
152	}
153	return;
154}
155static int	waittime = -1;
156static struct pcb dumppcb;
157
158/*
159 *  Go through the rigmarole of shutting down..
160 * this used to be in machdep.c but I'll be dammned if I could see
161 * anything machine dependant in it.
162 */
163void
164boot(howto)
165	int howto;
166{
167	sle_p ep;
168
169#ifdef SMP
170	int c, spins;
171
172	/* don't accidently start it */
173	if (smp_active) {
174		smp_active = 1;
175
176		spins = 100;
177
178		printf("boot() called on cpu#%d\n", cpunumber());
179		while ((c = cpunumber()) != 0) {
180			if (spins-- < 1) {
181				printf("timeout waiting for cpu #0!\n");
182				break;
183			}
184			printf("oops, I'm on cpu#%d, I need to be on cpu#0!\n",
185				c);
186			tsleep((caddr_t)&smp_active, PZERO, "cpu0wt", 10);
187		}
188	}
189#endif
190	ep = shutdown_list1;
191	while (ep) {
192		shutdown_list1 = ep->next;
193		(*ep->function)(howto, ep->arg);
194		ep = ep->next;
195	}
196	if (!cold && (howto & RB_NOSYNC) == 0 && waittime < 0) {
197		register struct buf *bp;
198		int iter, nbusy;
199
200		waittime = 0;
201		printf("\nsyncing disks... ");
202
203		sync(&proc0, NULL, NULL);
204
205		for (iter = 0; iter < 20; iter++) {
206			nbusy = 0;
207			for (bp = &buf[nbuf]; --bp >= buf; ) {
208				if ((bp->b_flags & (B_BUSY | B_INVAL)) == B_BUSY) {
209					nbusy++;
210				}
211			}
212			if (nbusy == 0)
213				break;
214			printf("%d ", nbusy);
215			DELAY(40000 * iter);
216		}
217		if (nbusy) {
218			/*
219			 * Failed to sync all blocks. Indicate this and don't
220			 * unmount filesystems (thus forcing an fsck on reboot).
221			 */
222			printf("giving up\n");
223#ifdef SHOW_BUSYBUFS
224			nbusy = 0;
225			for (bp = &buf[nbuf]; --bp >= buf; ) {
226				if ((bp->b_flags & (B_BUSY | B_INVAL)) == B_BUSY) {
227					nbusy++;
228					printf("%d: dev:%08x, flags:%08x, blkno:%d, lblkno:%d\n", nbusy, bp->b_dev, bp->b_flags, bp->b_blkno, bp->b_lblkno);
229				}
230			}
231			DELAY(5000000);	/* 5 seconds */
232#endif
233		} else {
234			printf("done\n");
235			/*
236			 * Unmount filesystems
237			 */
238			if (panicstr == 0)
239				vfs_unmountall();
240		}
241		DELAY(100000);			/* wait for console output to finish */
242	}
243	ep = shutdown_list2;
244	while (ep) {
245		shutdown_list2 = ep->next;
246		(*ep->function)(howto, ep->arg);
247		ep = ep->next;
248	}
249	splhigh();
250	if (howto & RB_HALT) {
251		printf("\n");
252		printf("The operating system has halted.\n");
253		printf("Please press any key to reboot.\n\n");
254		switch (cngetc()) {
255		case -1:		/* No console, just die */
256			cpu_halt();
257			/* NOTREACHED */
258		default:
259			break;
260		}
261	} else {
262		if (howto & RB_DUMP) {
263			if (!cold) {
264				savectx(&dumppcb);
265				dumppcb.pcb_cr3 = rcr3();
266				dumpsys();
267			}
268
269			if (PANIC_REBOOT_WAIT_TIME != 0) {
270				if (PANIC_REBOOT_WAIT_TIME != -1) {
271					int loop;
272					printf("Automatic reboot in %d seconds - press a key on the console to abort\n",
273						PANIC_REBOOT_WAIT_TIME);
274					for (loop = PANIC_REBOOT_WAIT_TIME * 10; loop > 0; --loop) {
275						DELAY(1000 * 100); /* 1/10th second */
276						/* Did user type a key? */
277						if (cncheckc() != -1)
278							break;
279					}
280					if (!loop)
281						goto die;
282				}
283			} else { /* zero time specified - reboot NOW */
284				goto die;
285			}
286			printf("--> Press a key on the console to reboot <--\n");
287			cngetc();
288		}
289	}
290die:
291	printf("Rebooting...\n");
292	DELAY(1000000);	/* wait 1 sec for printf's to complete and be read */
293	/* cpu_boot(howto); */ /* doesn't do anything at the moment */
294	cpu_reset();
295	for(;;) ;
296	/* NOTREACHED */
297}
298
299/*
300 * Magic number for savecore
301 *
302 * exported (symorder) and used at least by savecore(8)
303 *
304 */
305static u_long const	dumpmag = 0x8fca0101UL;
306
307static int	dumpsize = 0;		/* also for savecore */
308
309static int	dodump = 1;
310SYSCTL_INT(_machdep, OID_AUTO, do_dump, CTLFLAG_RW, &dodump, 0, "");
311
312/*
313 * Doadump comes here after turning off memory management and
314 * getting on the dump stack, either when called above, or by
315 * the auto-restart code.
316 */
317static void
318dumpsys(void)
319{
320
321	if (!dodump)
322		return;
323	if (dumpdev == NODEV)
324		return;
325	if ((minor(dumpdev)&07) != 1)
326		return;
327	if (!(bdevsw[major(dumpdev)]))
328		return;
329	if (!(bdevsw[major(dumpdev)]->d_dump))
330		return;
331	dumpsize = Maxmem;
332	printf("\ndumping to dev %lx, offset %ld\n", dumpdev, dumplo);
333	printf("dump ");
334	switch ((*bdevsw[major(dumpdev)]->d_dump)(dumpdev)) {
335
336	case ENXIO:
337		printf("device bad\n");
338		break;
339
340	case EFAULT:
341		printf("device not ready\n");
342		break;
343
344	case EINVAL:
345		printf("area improper\n");
346		break;
347
348	case EIO:
349		printf("i/o error\n");
350		break;
351
352	case EINTR:
353		printf("aborted from console\n");
354		break;
355
356	default:
357		printf("succeeded\n");
358		break;
359	}
360}
361
362/*
363 * Panic is called on unresolvable fatal errors.  It prints "panic: mesg",
364 * and then reboots.  If we are called twice, then we avoid trying to sync
365 * the disks as this often leads to recursive panics.
366 */
367void
368panic(const char *fmt, ...)
369{
370	int bootopt;
371	va_list ap;
372
373	bootopt = RB_AUTOBOOT | RB_DUMP;
374	if (panicstr)
375		bootopt |= RB_NOSYNC;
376	else
377		panicstr = fmt;
378
379	printf("panic: ");
380	va_start(ap, fmt);
381	vprintf(fmt, ap);
382	va_end(ap);
383	printf("\n");
384#ifdef SMP
385	printf(" cpu#%d\n", cpunumber());
386#endif
387
388#if defined(DDB)
389	if (debugger_on_panic)
390		Debugger ("panic");
391#endif
392	boot(bootopt);
393}
394
395/*
396 * Two routines to handle adding/deleting items on the
397 * shutdown callout lists
398 *
399 * at_shutdown():
400 * Take the arguments given and put them onto the shutdown callout list.
401 * However first make sure that it's not already there.
402 * returns 0 on success.
403 */
404int
405at_shutdown(bootlist_fn function, void *arg, int position)
406{
407	sle_p ep, *epp;
408
409	switch(position) {
410	case SHUTDOWN_PRE_SYNC:
411		epp = &shutdown_list1;
412		break;
413	case SHUTDOWN_POST_SYNC:
414		epp = &shutdown_list2;
415		break;
416	default:
417		printf("bad exit callout list specified\n");
418		return (EINVAL);
419	}
420	if (rm_at_shutdown(function, arg))
421		printf("exit callout entry already present\n");
422	ep = malloc(sizeof(*ep), M_TEMP, M_NOWAIT);
423	if (ep == NULL)
424		return (ENOMEM);
425	ep->next = *epp;
426	ep->function = function;
427	ep->arg = arg;
428	*epp = ep;
429	return (0);
430}
431
432/*
433 * Scan the exit callout lists for the given items and remove them.
434 * Returns the number of items removed.
435 */
436int
437rm_at_shutdown(bootlist_fn function, void *arg)
438{
439	sle_p *epp, ep;
440	int count;
441
442	count = 0;
443	epp = &shutdown_list1;
444	ep = *epp;
445	while (ep) {
446		if ((ep->function == function) && (ep->arg == arg)) {
447			*epp = ep->next;
448			free(ep, M_TEMP);
449			count++;
450		} else {
451			epp = &ep->next;
452		}
453		ep = *epp;
454	}
455	epp = &shutdown_list2;
456	ep = *epp;
457	while (ep) {
458		if ((ep->function == function) && (ep->arg == arg)) {
459			*epp = ep->next;
460			free(ep, M_TEMP);
461			count++;
462		} else {
463			epp = &ep->next;
464		}
465		ep = *epp;
466	}
467	return (count);
468}
469
470