xref: /dragonfly/sys/kern/kern_shutdown.c (revision 16dd80e4)
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. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  *	@(#)kern_shutdown.c	8.3 (Berkeley) 1/21/94
35  * $FreeBSD: src/sys/kern/kern_shutdown.c,v 1.72.2.12 2002/02/21 19:15:10 dillon Exp $
36  */
37 
38 #include "opt_ddb.h"
39 #include "opt_ddb_trace.h"
40 #include "opt_panic.h"
41 #include "use_gpio.h"
42 
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/eventhandler.h>
46 #include <sys/buf.h>
47 #include <sys/disk.h>
48 #include <sys/diskslice.h>
49 #include <sys/reboot.h>
50 #include <sys/proc.h>
51 #include <sys/priv.h>
52 #include <sys/fcntl.h>		/* FREAD	*/
53 #include <sys/stat.h>		/* S_IFCHR	*/
54 #include <sys/vnode.h>
55 #include <sys/kernel.h>
56 #include <sys/kerneldump.h>
57 #include <sys/kthread.h>
58 #include <sys/malloc.h>
59 #include <sys/mount.h>
60 #include <sys/queue.h>
61 #include <sys/sysctl.h>
62 #include <sys/vkernel.h>
63 #include <sys/conf.h>
64 #include <sys/sysproto.h>
65 #include <sys/device.h>
66 #include <sys/cons.h>
67 #include <sys/kbio.h>
68 #include <sys/shm.h>
69 #include <sys/kern_syscall.h>
70 #include <vm/vm_map.h>
71 #include <vm/pmap.h>
72 
73 #include <sys/thread2.h>
74 #include <sys/buf2.h>
75 #include <sys/mplock2.h>
76 
77 #include <machine/cpu.h>
78 #include <machine/clock.h>
79 #include <machine/md_var.h>
80 #include <machine/smp.h>		/* smp_active_mask, cpuid */
81 #include <machine/vmparam.h>
82 #include <machine/thread.h>
83 
84 #include <sys/signalvar.h>
85 
86 #if defined(WDOG_DISABLE_ON_PANIC)
87 #include <sys/wdog.h>
88 #endif
89 #include <dev/acpica/acpi_pvpanic/panic_notifier.h>
90 #if (NGPIO > 0) && defined(ERROR_LED_ON_PANIC)
91 #include <dev/misc/gpio/gpio.h>
92 #endif
93 
94 #ifndef PANIC_REBOOT_WAIT_TIME
95 #define PANIC_REBOOT_WAIT_TIME 15 /* default to 15 seconds */
96 #endif
97 
98 /*
99  * Note that stdarg.h and the ANSI style va_start macro is used for both
100  * ANSI and traditional C compilers.  We use the machine version to stay
101  * within the confines of the kernel header files.
102  */
103 #include <machine/stdarg.h>
104 
105 #ifdef DDB
106 #include <ddb/ddb.h>
107 #ifdef DDB_UNATTENDED
108 int debugger_on_panic = 0;
109 #else
110 int debugger_on_panic = 1;
111 #endif
112 SYSCTL_INT(_debug, OID_AUTO, debugger_on_panic, CTLFLAG_RW,
113 	&debugger_on_panic, 0, "Run debugger on kernel panic");
114 
115 #ifdef DDB_TRACE
116 int trace_on_panic = 1;
117 #else
118 int trace_on_panic = 0;
119 #endif
120 SYSCTL_INT(_debug, OID_AUTO, trace_on_panic, CTLFLAG_RW,
121 	&trace_on_panic, 0, "Print stack trace on kernel panic");
122 #endif
123 
124 static int sync_on_panic = 0;
125 SYSCTL_INT(_kern, OID_AUTO, sync_on_panic, CTLFLAG_RW,
126 	&sync_on_panic, 0, "Do a sync before rebooting from a panic");
127 
128 SYSCTL_NODE(_kern, OID_AUTO, shutdown, CTLFLAG_RW, 0, "Shutdown environment");
129 
130 /*
131  * Variable panicstr contains argument to first call to panic; used as flag
132  * to indicate that the kernel has already called panic.
133  */
134 const char *panicstr;
135 
136 int dumping;				/* system is dumping */
137 static struct dumperinfo dumper;	/* selected dumper */
138 
139 globaldata_t panic_cpu_gd;		/* which cpu took the panic */
140 struct lwkt_tokref panic_tokens[LWKT_MAXTOKENS];
141 int panic_tokens_count;
142 
143 int bootverbose = 0;			/* note: assignment to force non-bss */
144 SYSCTL_INT(_debug, OID_AUTO, bootverbose, CTLFLAG_RW,
145 	   &bootverbose, 0, "Verbose kernel messages");
146 
147 int cold = 1;				/* note: assignment to force non-bss */
148 int dumplo;				/* OBSOLETE - savecore compat */
149 u_int64_t dumplo64;
150 
151 static void boot (int) __dead2;
152 static int setdumpdev (cdev_t dev);
153 static void poweroff_wait (void *, int);
154 static void print_uptime (void);
155 static void shutdown_halt (void *junk, int howto);
156 static void shutdown_panic (void *junk, int howto);
157 static void shutdown_reset (void *junk, int howto);
158 static int shutdown_busycount1(struct buf *bp, void *info);
159 static int shutdown_busycount2(struct buf *bp, void *info);
160 static void shutdown_cleanup_proc(struct proc *p);
161 
162 /* register various local shutdown events */
163 static void
164 shutdown_conf(void *unused)
165 {
166 	EVENTHANDLER_REGISTER(shutdown_final, poweroff_wait, NULL, SHUTDOWN_PRI_FIRST);
167 	EVENTHANDLER_REGISTER(shutdown_final, shutdown_halt, NULL, SHUTDOWN_PRI_LAST + 100);
168 	EVENTHANDLER_REGISTER(shutdown_final, shutdown_panic, NULL, SHUTDOWN_PRI_LAST + 100);
169 	EVENTHANDLER_REGISTER(shutdown_final, shutdown_reset, NULL, SHUTDOWN_PRI_LAST + 200);
170 }
171 
172 SYSINIT(shutdown_conf, SI_BOOT2_MACHDEP, SI_ORDER_ANY, shutdown_conf, NULL);
173 
174 /* ARGSUSED */
175 
176 /*
177  * The system call that results in a reboot
178  *
179  * MPALMOSTSAFE
180  */
181 int
182 sys_reboot(struct reboot_args *uap)
183 {
184 	struct thread *td = curthread;
185 	int error;
186 
187 	if ((error = priv_check(td, PRIV_REBOOT)))
188 		return (error);
189 
190 	get_mplock();
191 	boot(uap->opt);
192 	rel_mplock();
193 	return (0);
194 }
195 
196 /*
197  * Called by events that want to shut down.. e.g  <CTL><ALT><DEL> on a PC
198  */
199 static int shutdown_howto = 0;
200 
201 void
202 shutdown_nice(int howto)
203 {
204 	shutdown_howto = howto;
205 
206 	/* Send a signal to init(8) and have it shutdown the world */
207 	if (initproc != NULL) {
208 		ksignal(initproc, SIGINT);
209 	} else {
210 		/* No init(8) running, so simply reboot */
211 		boot(RB_NOSYNC);
212 	}
213 	return;
214 }
215 static int	waittime = -1;
216 struct pcb	dumppcb;
217 struct thread	*dumpthread;
218 
219 static void
220 print_uptime(void)
221 {
222 	int f;
223 	struct timespec ts;
224 
225 	getnanouptime(&ts);
226 	kprintf("Uptime: ");
227 	f = 0;
228 	if (ts.tv_sec >= 86400) {
229 		kprintf("%ldd", ts.tv_sec / 86400);
230 		ts.tv_sec %= 86400;
231 		f = 1;
232 	}
233 	if (f || ts.tv_sec >= 3600) {
234 		kprintf("%ldh", ts.tv_sec / 3600);
235 		ts.tv_sec %= 3600;
236 		f = 1;
237 	}
238 	if (f || ts.tv_sec >= 60) {
239 		kprintf("%ldm", ts.tv_sec / 60);
240 		ts.tv_sec %= 60;
241 		f = 1;
242 	}
243 	kprintf("%lds\n", ts.tv_sec);
244 }
245 
246 /*
247  *  Go through the rigmarole of shutting down..
248  * this used to be in machdep.c but I'll be dammned if I could see
249  * anything machine dependant in it.
250  */
251 static void
252 boot(int howto)
253 {
254 	/*
255 	 * Get rid of any user scheduler baggage and then give
256 	 * us a high priority.
257 	 */
258 	if (curthread->td_release)
259 		curthread->td_release(curthread);
260 	lwkt_setpri_self(TDPRI_MAX);
261 
262 	/* collect extra flags that shutdown_nice might have set */
263 	howto |= shutdown_howto;
264 
265 	/*
266 	 * We really want to shutdown on the BSP.  Subsystems such as ACPI
267 	 * can't power-down the box otherwise.
268 	 */
269 	if (!CPUMASK_ISUP(smp_active_mask)) {
270 		kprintf("boot() called on cpu#%d\n", mycpu->gd_cpuid);
271 	}
272 	if (panicstr == NULL && mycpu->gd_cpuid != 0) {
273 		kprintf("Switching to cpu #0 for shutdown\n");
274 		lwkt_setcpu_self(globaldata_find(0));
275 	}
276 	/*
277 	 * Do any callouts that should be done BEFORE syncing the filesystems.
278 	 */
279 	EVENTHANDLER_INVOKE(shutdown_pre_sync, howto);
280 
281 	/*
282 	 * Try to get rid of any remaining FS references.  The calling
283 	 * process, proc0, and init may still hold references.  The
284 	 * VFS cache subsystem may still hold a root reference to root.
285 	 *
286 	 * XXX this needs work.  We really need to SIGSTOP all remaining
287 	 * processes in order to avoid blowups due to proc0's filesystem
288 	 * references going away.  For now just make sure that the init
289 	 * process is stopped.
290 	 */
291 	if (panicstr == NULL) {
292 		shutdown_cleanup_proc(curproc);
293 		shutdown_cleanup_proc(&proc0);
294 		if (initproc) {
295 			if (initproc != curproc) {
296 				ksignal(initproc, SIGSTOP);
297 				tsleep(boot, 0, "shutdn", hz / 20);
298 			}
299 			shutdown_cleanup_proc(initproc);
300 		}
301 		vfs_cache_setroot(NULL, NULL);
302 	}
303 
304 	/*
305 	 * Now sync filesystems
306 	 */
307 	if (!cold && (howto & RB_NOSYNC) == 0 && waittime < 0) {
308 		int iter, nbusy, pbusy;
309 		int zcount;
310 
311 		waittime = 0;
312 		zcount = 0;
313 		kprintf("\nsyncing disks... ");
314 
315 		sys_sync(NULL);
316 
317 		/*
318 		 * With soft updates, some buffers that are written will be
319 		 * remarked as dirty until other buffers are written.
320 		 *
321 		 * sys_sync() usually runs asynchronously, to give us a
322 		 * better chance of syncing the rest of the filesystems when
323 		 * one or more of them are stuck.
324 		 */
325 		for (iter = pbusy = 0; iter < 20 + zcount; iter++) {
326 			if (iter <= 10)
327 				nbusy = scan_all_buffers(shutdown_busycount1,
328 							 &iter);
329 			else
330 				nbusy = scan_all_buffers(shutdown_busycount2,
331 							 &iter);
332 			kprintf("%d ", nbusy);
333 			if (nbusy == 0) {
334 				if (++zcount == 3)
335 					break;
336 			} else {
337 				zcount = 0;
338 			}
339 
340 			/*
341 			 * There could be a lot to sync, only allow iter to
342 			 * proceed while there is progress.
343 			 */
344 			if (nbusy < pbusy) {
345 				if (iter > 10)
346 					iter = 10;
347 				else
348 					iter = 0;
349 			}
350 			pbusy = nbusy;
351 
352 			/*
353 			 * XXX:
354 			 * Process soft update work queue if buffers don't sync
355 			 * after 6 iterations by permitting the syncer to run.
356 			 */
357 			if (iter > 5)
358 				bio_ops_sync(NULL);
359 
360 			sys_sync(NULL);
361 			tsleep(boot, 0, "shutdn", hz * iter / 20 + 1);
362 		}
363 		kprintf("\n");
364 
365 		if (zcount < 3) {
366 			/*
367 			 * Failed to sync all blocks. Indicate this and don't
368 			 * unmount filesystems (thus forcing an fsck on reboot).
369 			 */
370 			kprintf("giving up on %d buffers\n", nbusy);
371 #ifdef DDB
372 			if (debugger_on_panic)
373 				Debugger("busy buffer problem");
374 #endif /* DDB */
375 			tsleep(boot, 0, "shutdn", hz * 5 + 1);
376 		} else {
377 			kprintf("done\n");
378 
379 			/*
380 			 * Unmount filesystems
381 			 */
382 			if (panicstr == NULL)
383 				vfs_unmountall(1);
384 		}
385 		tsleep(boot, 0, "shutdn", hz / 10 + 1);
386 	}
387 
388 	print_uptime();
389 
390 	/*
391 	 * Dump before doing post_sync shutdown ops
392 	 */
393 	crit_enter();
394 	if ((howto & (RB_HALT|RB_DUMP)) == RB_DUMP && !cold) {
395 		dumpsys();
396 	}
397 
398 	/*
399 	 * Ok, now do things that assume all filesystem activity has
400 	 * been completed.  This will also call the device shutdown
401 	 * methods.
402 	 */
403 	EVENTHANDLER_INVOKE(shutdown_post_sync, howto);
404 
405 	/* Now that we're going to really halt the system... */
406 	EVENTHANDLER_INVOKE(shutdown_final, howto);
407 
408 	for(;;) ;	/* safety against shutdown_reset not working */
409 	/* NOTREACHED */
410 }
411 
412 /*
413  * Pass 1 - Figure out if there are any busy or dirty buffers still present.
414  *
415  *	We ignore TMPFS mounts in this pass.
416  */
417 static int
418 shutdown_busycount1(struct buf *bp, void *info __unused)
419 {
420 	struct vnode *vp;
421 
422 	if ((vp = bp->b_vp) != NULL && vp->v_tag == VT_TMPFS)
423 		return (0);
424 	if ((bp->b_flags & B_INVAL) == 0 && BUF_LOCKINUSE(bp))
425 		return(1);
426 	if ((bp->b_flags & (B_DELWRI | B_INVAL)) == B_DELWRI)
427 		return (1);
428 	return (0);
429 }
430 
431 /*
432  * Pass 2 - only run after pass 1 has completed or has given up
433  *
434  *	We ignore TMPFS, NFS, MFS, and SMBFS mounts in this pass.
435  */
436 static int
437 shutdown_busycount2(struct buf *bp, void *info)
438 {
439 	struct vnode *vp;
440 	int *iterp = info;
441 	const char *mpath;
442 
443 	/*
444 	 * Ignore tmpfs and nfs mounts
445 	 */
446 	if ((vp = bp->b_vp) != NULL) {
447 		if (vp->v_tag == VT_TMPFS)
448 			return (0);
449 		if (vp->v_tag == VT_NFS)
450 			return (0);
451 		if (vp->v_tag == VT_MFS)
452 			return (0);
453 		if (vp->v_tag == VT_SMBFS)
454 			return (0);
455 	}
456 
457 	/*
458 	 * Only count buffers stuck on I/O, ignore everything else
459 	 */
460 	if (((bp->b_flags & B_INVAL) == 0 && BUF_LOCKINUSE(bp)) ||
461 	    ((bp->b_flags & (B_DELWRI|B_INVAL)) == B_DELWRI)) {
462 		/*
463 		 * Only count buffers undergoing write I/O
464 		 * on the related vnode.
465 		 */
466 		if (bp->b_vp == NULL ||
467 		    bio_track_active(&bp->b_vp->v_track_write) == 0) {
468 			return (0);
469 		}
470 		if (*iterp > 15) {
471 			mpath = "?";
472 			if (bp->b_vp->v_mount)
473 				mpath = bp->b_vp->v_mount->mnt_stat.f_mntonname;
474 
475 			kprintf("%p on %s, flags:%08x, loffset:%jd, "
476 				"doffset:%jd\n",
477 				bp,
478 				mpath,
479 				bp->b_flags,
480 				(intmax_t)bp->b_loffset,
481 				(intmax_t)bp->b_bio2.bio_offset);
482 		}
483 		return(1);
484 	}
485 	return(0);
486 }
487 
488 /*
489  * If the shutdown was a clean halt, behave accordingly.
490  */
491 static void
492 shutdown_halt(void *junk, int howto)
493 {
494 	if (howto & RB_HALT) {
495 		kprintf("\n");
496 		kprintf("The operating system has halted.\n");
497 #ifdef _KERNEL_VIRTUAL
498 		cpu_halt();
499 #else
500 		kprintf("Please press any key to reboot.\n\n");
501 		switch (cngetc()) {
502 		case -1:		/* No console, just die */
503 			cpu_halt();
504 			/* NOTREACHED */
505 		default:
506 			howto &= ~RB_HALT;
507 			break;
508 		}
509 #endif
510 	}
511 }
512 
513 /*
514  * Check to see if the system paniced, pause and then reboot
515  * according to the specified delay.
516  */
517 static void
518 shutdown_panic(void *junk, int howto)
519 {
520 	int loop;
521 	int c;
522 
523 	if (howto & RB_DUMP) {
524 		if (PANIC_REBOOT_WAIT_TIME != 0) {
525 			if (PANIC_REBOOT_WAIT_TIME != -1) {
526 				kprintf("Automatic reboot in %d seconds - "
527 				       "press a key on the console to abort\n",
528 					PANIC_REBOOT_WAIT_TIME);
529 				for (loop = PANIC_REBOOT_WAIT_TIME * 10;
530 				     loop > 0; --loop) {
531 					DELAY(1000 * 100); /* 1/10th second */
532 					/* Did user type a key? */
533 					c = cncheckc();
534 					if (c != -1 && c != NOKEY)
535 						break;
536 				}
537 				if (!loop)
538 					return;
539 			}
540 		} else { /* zero time specified - reboot NOW */
541 			return;
542 		}
543 		kprintf("--> Press a key on the console to reboot,\n");
544 		kprintf("--> or switch off the system now.\n");
545 		cngetc();
546 	}
547 }
548 
549 /*
550  * Everything done, now reset
551  */
552 static void
553 shutdown_reset(void *junk, int howto)
554 {
555 	kprintf("Rebooting...\n");
556 	DELAY(1000000);	/* wait 1 sec for kprintf's to complete and be read */
557 	/* cpu_boot(howto); */ /* doesn't do anything at the moment */
558 	cpu_reset();
559 	/* NOTREACHED */ /* assuming reset worked */
560 }
561 
562 /*
563  * Try to remove FS references in the specified process.  This function
564  * is used during shutdown
565  */
566 static
567 void
568 shutdown_cleanup_proc(struct proc *p)
569 {
570 	struct filedesc *fdp;
571 	struct vmspace *vm;
572 
573 	if (p == NULL)
574 		return;
575 	if ((fdp = p->p_fd) != NULL) {
576 		kern_closefrom(0);
577 		if (fdp->fd_cdir) {
578 			cache_drop(&fdp->fd_ncdir);
579 			vrele(fdp->fd_cdir);
580 			fdp->fd_cdir = NULL;
581 		}
582 		if (fdp->fd_rdir) {
583 			cache_drop(&fdp->fd_nrdir);
584 			vrele(fdp->fd_rdir);
585 			fdp->fd_rdir = NULL;
586 		}
587 		if (fdp->fd_jdir) {
588 			cache_drop(&fdp->fd_njdir);
589 			vrele(fdp->fd_jdir);
590 			fdp->fd_jdir = NULL;
591 		}
592 	}
593 	if (p->p_vkernel)
594 		vkernel_exit(p);
595 	if (p->p_textvp) {
596 		vrele(p->p_textvp);
597 		p->p_textvp = NULL;
598 	}
599 	if (p->p_textnch.ncp)
600 		cache_drop(&p->p_textnch);
601 	vm = p->p_vmspace;
602 	if (vm != NULL) {
603 		pmap_remove_pages(vmspace_pmap(vm),
604 				  VM_MIN_USER_ADDRESS,
605 				  VM_MAX_USER_ADDRESS);
606 		vm_map_remove(&vm->vm_map,
607 			      VM_MIN_USER_ADDRESS,
608 			      VM_MAX_USER_ADDRESS);
609 	}
610 }
611 
612 /*
613  * Magic number for savecore
614  *
615  * exported (symorder) and used at least by savecore(8)
616  *
617  * Mark it as used so that gcc doesn't optimize it away.
618  */
619 __attribute__((__used__))
620 	static u_long const dumpmag = 0x8fca0101UL;
621 
622 __attribute__((__used__))
623 	static int	dumpsize = 0;		/* also for savecore */
624 
625 static int	dodump = 1;
626 
627 SYSCTL_INT(_machdep, OID_AUTO, do_dump, CTLFLAG_RW, &dodump, 0,
628     "Try to perform coredump on kernel panic");
629 
630 void
631 mkdumpheader(struct kerneldumpheader *kdh, char *magic, uint32_t archver,
632     uint64_t dumplen, uint32_t blksz)
633 {
634 	bzero(kdh, sizeof(*kdh));
635 	strncpy(kdh->magic, magic, sizeof(kdh->magic));
636 	strncpy(kdh->architecture, MACHINE_ARCH, sizeof(kdh->architecture));
637 	kdh->version = htod32(KERNELDUMPVERSION);
638 	kdh->architectureversion = htod32(archver);
639 	kdh->dumplength = htod64(dumplen);
640 	kdh->dumptime = htod64(time_second);
641 	kdh->blocksize = htod32(blksz);
642 	strncpy(kdh->hostname, hostname, sizeof(kdh->hostname));
643 	strncpy(kdh->versionstring, version, sizeof(kdh->versionstring));
644 	if (panicstr != NULL)
645 		strncpy(kdh->panicstring, panicstr, sizeof(kdh->panicstring));
646 	kdh->parity = kerneldump_parity(kdh);
647 }
648 
649 static int
650 setdumpdev(cdev_t dev)
651 {
652 	int error;
653 	int doopen;
654 
655 	if (dev == NULL) {
656 		disk_dumpconf(NULL, 0/*off*/);
657 		dumpdev = NULL;
658 		return (0);
659 	}
660 
661 	/*
662 	 * We have to open the device before we can perform ioctls on it,
663 	 * or the slice/label data may not be present.  Device opens are
664 	 * usually tracked by specfs, but the dump device can be set in
665 	 * early boot and may not be open so this is somewhat of a hack.
666 	 */
667 	doopen = (dev->si_sysref.refcnt == 1);
668 	if (doopen) {
669 		error = dev_dopen(dev, FREAD, S_IFCHR, proc0.p_ucred, NULL);
670 		if (error)
671 			return (error);
672 	}
673 	error = disk_dumpconf(dev, 1/*on*/);
674 	if (error == 0)
675 		dumpdev = dev;
676 
677 	return error;
678 }
679 
680 /* ARGSUSED */
681 static void dump_conf (void *dummy);
682 static void
683 dump_conf(void *dummy)
684 {
685 	char *path;
686 	cdev_t dev;
687 	int _dummy;
688 
689 	path = kmalloc(MNAMELEN, M_TEMP, M_WAITOK);
690 	if (TUNABLE_STR_FETCH("dumpdev", path, MNAMELEN) != 0) {
691 		/*
692 		 * Make sure all disk devices created so far have also been
693 		 * probed, and also make sure that the newly created device
694 		 * nodes for probed disks are ready, too.
695 		 *
696 		 * XXX - Delay an additional 2 seconds to help drivers which
697 		 *	 pickup devices asynchronously and are not caught by
698 		 *	 CAM's initial probe.
699 		 */
700 		sync_devs();
701 		tsleep(&_dummy, 0, "syncer", hz*2);
702 
703 		dev = kgetdiskbyname(path);
704 		if (dev != NULL)
705 			dumpdev = dev;
706 	}
707 	kfree(path, M_TEMP);
708 	if (setdumpdev(dumpdev) != 0)
709 		dumpdev = NULL;
710 }
711 
712 SYSINIT(dump_conf, SI_SUB_DUMP_CONF, SI_ORDER_FIRST, dump_conf, NULL);
713 
714 static int
715 sysctl_kern_dumpdev(SYSCTL_HANDLER_ARGS)
716 {
717 	int error;
718 	udev_t ndumpdev;
719 
720 	ndumpdev = dev2udev(dumpdev);
721 	error = sysctl_handle_opaque(oidp, &ndumpdev, sizeof ndumpdev, req);
722 	if (error == 0 && req->newptr != NULL)
723 		error = setdumpdev(udev2dev(ndumpdev, 0));
724 	return (error);
725 }
726 
727 SYSCTL_PROC(_kern, KERN_DUMPDEV, dumpdev, CTLTYPE_OPAQUE|CTLFLAG_RW,
728 	0, sizeof dumpdev, sysctl_kern_dumpdev, "T,udev_t", "");
729 
730 static struct panicerinfo *panic_notifier;
731 
732 int
733 set_panic_notifier(struct panicerinfo *info)
734 {
735 	if (info == NULL)
736 		panic_notifier = NULL;
737 	else if (panic_notifier != NULL)
738 		return 1;
739 	else
740 		panic_notifier = info;
741 
742 	return 0;
743 }
744 
745 /*
746  * Panic is called on unresolvable fatal errors.  It prints "panic: mesg",
747  * and then reboots.  If we are called twice, then we avoid trying to sync
748  * the disks as this often leads to recursive panics.
749  */
750 void
751 panic(const char *fmt, ...)
752 {
753 	int bootopt, newpanic;
754 	globaldata_t gd = mycpu;
755 	thread_t td = gd->gd_curthread;
756 	__va_list ap;
757 	static char buf[256];
758 
759 	/*
760 	 * If a panic occurs on multiple cpus before the first is able to
761 	 * halt the other cpus, only one cpu is allowed to take the panic.
762 	 * Attempt to be verbose about this situation but if the kprintf()
763 	 * itself panics don't let us overrun the kernel stack.
764 	 *
765 	 * Be very nasty about descheduling our thread at the lowest
766 	 * level possible in an attempt to freeze the thread without
767 	 * inducing further panics.
768 	 *
769 	 * Bumping gd_trap_nesting_level will also bypass assertions in
770 	 * lwkt_switch() and allow us to switch away even if we are a
771 	 * FAST interrupt or IPI.
772 	 *
773 	 * The setting of panic_cpu_gd also determines how kprintf()
774 	 * spin-locks itself.  DDB can set panic_cpu_gd as well.
775 	 */
776 	for (;;) {
777 		globaldata_t xgd = panic_cpu_gd;
778 
779 		/*
780 		 * Someone else got the panic cpu
781 		 */
782 		if (xgd && xgd != gd) {
783 			crit_enter();
784 			++mycpu->gd_trap_nesting_level;
785 			if (mycpu->gd_trap_nesting_level < 25) {
786 				kprintf("SECONDARY PANIC ON CPU %d THREAD %p\n",
787 					mycpu->gd_cpuid, td);
788 			}
789 			td->td_release = NULL;	/* be a grinch */
790 			for (;;) {
791 				lwkt_deschedule_self(td);
792 				lwkt_switch();
793 			}
794 			/* NOT REACHED */
795 			/* --mycpu->gd_trap_nesting_level */
796 			/* crit_exit() */
797 		}
798 
799 		/*
800 		 * Reentrant panic
801 		 */
802 		if (xgd && xgd == gd)
803 			break;
804 
805 		/*
806 		 * We got it
807 		 */
808 		if (atomic_cmpset_ptr(&panic_cpu_gd, NULL, gd))
809 			break;
810 	}
811 	/*
812 	 * Try to get the system into a working state.  Save information
813 	 * we are about to destroy.
814 	 */
815 	kvcreinitspin();
816 	if (panicstr == NULL) {
817 		bcopy(td->td_toks_array, panic_tokens, sizeof(panic_tokens));
818 		panic_tokens_count = td->td_toks_stop - &td->td_toks_base;
819 	}
820 	lwkt_relalltokens(td);
821 	td->td_toks_stop = &td->td_toks_base;
822 	if (gd->gd_spinlocks)
823 		kprintf("panic with %d spinlocks held\n", gd->gd_spinlocks);
824 	gd->gd_spinlocks = 0;
825 
826 	/*
827 	 * Setup
828 	 */
829 	bootopt = RB_AUTOBOOT | RB_DUMP;
830 	if (sync_on_panic == 0)
831 		bootopt |= RB_NOSYNC;
832 	newpanic = 0;
833 	if (panicstr) {
834 		bootopt |= RB_NOSYNC;
835 	} else {
836 		panicstr = fmt;
837 		newpanic = 1;
838 	}
839 
840 	/*
841 	 * Format the panic string.
842 	 */
843 	__va_start(ap, fmt);
844 	kvsnprintf(buf, sizeof(buf), fmt, ap);
845 	if (panicstr == fmt)
846 		panicstr = buf;
847 	__va_end(ap);
848 	if (panic_notifier != NULL)
849 		panic_notifier->notifier(panic_notifier->arg);
850 	kprintf("panic: %s\n", buf);
851 	/* two separate prints in case of an unmapped page and trap */
852 	kprintf("cpuid = %d\n", mycpu->gd_cpuid);
853 
854 #if (NGPIO > 0) && defined(ERROR_LED_ON_PANIC)
855 	led_switch("error", 1);
856 #endif
857 
858 #if defined(WDOG_DISABLE_ON_PANIC)
859 	wdog_disable();
860 #endif
861 
862 	/*
863 	 * Make sure kgdb knows who we are, there won't be a stoppcbs[]
864 	 * entry since our cpu wasn't stopped.
865 	 */
866 	savectx(&dumppcb);
867 	dumpthread = curthread;
868 
869 	/*
870 	 * Enter the debugger or fall through & dump.  Entering the
871 	 * debugger will stop cpus.  If not entering the debugger stop
872 	 * cpus here.
873 	 *
874 	 * Limit the trace history to leave more panic data on a
875 	 * potentially row-limited console.
876 	 */
877 
878 #if defined(DDB)
879 	if (newpanic && trace_on_panic)
880 		print_backtrace(6);
881 	if (debugger_on_panic)
882 		Debugger("panic");
883 	else
884 #endif
885 	if (newpanic)
886 		stop_cpus(mycpu->gd_other_cpus);
887 	boot(bootopt);
888 }
889 
890 /*
891  * Support for poweroff delay.
892  */
893 #ifndef POWEROFF_DELAY
894 # define POWEROFF_DELAY 5000
895 #endif
896 static int poweroff_delay = POWEROFF_DELAY;
897 
898 SYSCTL_INT(_kern_shutdown, OID_AUTO, poweroff_delay, CTLFLAG_RW,
899 	&poweroff_delay, 0, "");
900 
901 static void
902 poweroff_wait(void *junk, int howto)
903 {
904 	if(!(howto & RB_POWEROFF) || poweroff_delay <= 0)
905 		return;
906 	DELAY(poweroff_delay * 1000);
907 }
908 
909 /*
910  * Some system processes (e.g. syncer) need to be stopped at appropriate
911  * points in their main loops prior to a system shutdown, so that they
912  * won't interfere with the shutdown process (e.g. by holding a disk buf
913  * to cause sync to fail).  For each of these system processes, register
914  * shutdown_kproc() as a handler for one of shutdown events.
915  */
916 static int kproc_shutdown_wait = 60;
917 SYSCTL_INT(_kern_shutdown, OID_AUTO, kproc_shutdown_wait, CTLFLAG_RW,
918     &kproc_shutdown_wait, 0, "");
919 
920 void
921 shutdown_kproc(void *arg, int howto)
922 {
923 	struct thread *td;
924 	struct proc *p;
925 	int error;
926 
927 	if (panicstr)
928 		return;
929 
930 	td = (struct thread *)arg;
931 	if ((p = td->td_proc) != NULL) {
932 	    kprintf("Waiting (max %d seconds) for system process `%s' to stop...",
933 		kproc_shutdown_wait, p->p_comm);
934 	} else {
935 	    kprintf("Waiting (max %d seconds) for system thread %s to stop...",
936 		kproc_shutdown_wait, td->td_comm);
937 	}
938 	error = suspend_kproc(td, kproc_shutdown_wait * hz);
939 
940 	if (error == EWOULDBLOCK)
941 		kprintf("timed out\n");
942 	else
943 		kprintf("stopped\n");
944 }
945 
946 /* Registration of dumpers */
947 int
948 set_dumper(struct dumperinfo *di)
949 {
950 	if (di == NULL) {
951 		bzero(&dumper, sizeof(dumper));
952 		return 0;
953 	}
954 
955 	if (dumper.dumper != NULL)
956 		return (EBUSY);
957 
958 	dumper = *di;
959 	return 0;
960 }
961 
962 void
963 dumpsys(void)
964 {
965 #if defined (_KERNEL_VIRTUAL)
966 	/* vkernels don't support dumps */
967 	kprintf("vkernels don't support dumps\n");
968 	return;
969 #endif
970 	/*
971 	 * If there is a dumper registered and we aren't dumping already, call
972 	 * the machine dependent dumpsys (md_dumpsys) to do the hard work.
973 	 *
974 	 * XXX: while right now the md_dumpsys() of x86 and x86_64 could be
975 	 *      factored out completely into here, I rather keep them machine
976 	 *      dependent in case we ever add a platform which does not share
977 	 *      the same dumpsys() code, such as arm.
978 	 */
979 	if (dumper.dumper != NULL && !dumping) {
980 		dumping++;
981 		md_dumpsys(&dumper);
982 	}
983 }
984 
985 int dump_stop_usertds = 0;
986 
987 static
988 void
989 need_user_resched_remote(void *dummy)
990 {
991 	need_user_resched();
992 }
993 
994 void
995 dump_reactivate_cpus(void)
996 {
997 	globaldata_t gd;
998 	int cpu, seq;
999 
1000 	dump_stop_usertds = 1;
1001 
1002 	need_user_resched();
1003 
1004 	for (cpu = 0; cpu < ncpus; cpu++) {
1005 		gd = globaldata_find(cpu);
1006 		seq = lwkt_send_ipiq(gd, need_user_resched_remote, NULL);
1007 		lwkt_wait_ipiq(gd, seq);
1008 	}
1009 
1010 	restart_cpus(stopped_cpus);
1011 }
1012