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 * $FreeBSD: src/sys/kern/kern_shutdown.c,v 1.72.2.12 2002/02/21 19:15:10 dillon Exp $ 40 * $DragonFly: src/sys/kern/kern_shutdown.c,v 1.24 2006/02/17 19:18:06 dillon Exp $ 41 */ 42 43 #include "opt_ddb.h" 44 #include "opt_ddb_trace.h" 45 #include "opt_hw_wdog.h" 46 #include "opt_panic.h" 47 #include "opt_show_busybufs.h" 48 49 #include <sys/param.h> 50 #include <sys/systm.h> 51 #include <sys/eventhandler.h> 52 #include <sys/buf.h> 53 #include <sys/disklabel.h> 54 #include <sys/reboot.h> 55 #include <sys/proc.h> 56 #include <sys/vnode.h> 57 #include <sys/kernel.h> 58 #include <sys/kthread.h> 59 #include <sys/malloc.h> 60 #include <sys/mount.h> 61 #include <sys/queue.h> 62 #include <sys/sysctl.h> 63 #include <sys/conf.h> 64 #include <sys/sysproto.h> 65 #include <sys/device.h> 66 #include <sys/cons.h> 67 #include <sys/thread2.h> 68 #include <sys/buf2.h> 69 70 #include <machine/pcb.h> 71 #include <machine/clock.h> 72 #include <machine/md_var.h> 73 #include <machine/smp.h> /* smp_active_mask, cpuid */ 74 75 #include <sys/signalvar.h> 76 77 #ifndef PANIC_REBOOT_WAIT_TIME 78 #define PANIC_REBOOT_WAIT_TIME 15 /* default to 15 seconds */ 79 #endif 80 81 /* 82 * Note that stdarg.h and the ANSI style va_start macro is used for both 83 * ANSI and traditional C compilers. We use the machine version to stay 84 * within the confines of the kernel header files. 85 */ 86 #include <machine/stdarg.h> 87 88 #ifdef DDB 89 #ifdef DDB_UNATTENDED 90 int debugger_on_panic = 0; 91 #else 92 int debugger_on_panic = 1; 93 #endif 94 SYSCTL_INT(_debug, OID_AUTO, debugger_on_panic, CTLFLAG_RW, 95 &debugger_on_panic, 0, "Run debugger on kernel panic"); 96 97 extern void db_print_backtrace(void); 98 99 #ifdef DDB_TRACE 100 int trace_on_panic = 1; 101 #else 102 int trace_on_panic = 0; 103 #endif 104 SYSCTL_INT(_debug, OID_AUTO, trace_on_panic, CTLFLAG_RW, 105 &trace_on_panic, 0, "Print stack trace on kernel panic"); 106 #endif 107 108 static int sync_on_panic = 1; 109 SYSCTL_INT(_kern, OID_AUTO, sync_on_panic, CTLFLAG_RW, 110 &sync_on_panic, 0, "Do a sync before rebooting from a panic"); 111 112 SYSCTL_NODE(_kern, OID_AUTO, shutdown, CTLFLAG_RW, 0, "Shutdown environment"); 113 114 #ifdef HW_WDOG 115 /* 116 * If there is a hardware watchdog, point this at the function needed to 117 * hold it off. 118 * It's needed when the kernel needs to do some lengthy operations. 119 * e.g. in wd.c when dumping core.. It's most annoying to have 120 * your precious core-dump only half written because the wdog kicked in. 121 */ 122 watchdog_tickle_fn wdog_tickler = NULL; 123 #endif /* HW_WDOG */ 124 125 /* 126 * Variable panicstr contains argument to first call to panic; used as flag 127 * to indicate that the kernel has already called panic. 128 */ 129 const char *panicstr; 130 131 int dumping; /* system is dumping */ 132 #ifdef SMP 133 u_int panic_cpu_interlock; /* panic interlock */ 134 globaldata_t panic_cpu_gd; /* which cpu took the panic */ 135 #endif 136 137 static void boot (int) __dead2; 138 static void dumpsys (void); 139 static int setdumpdev (dev_t dev); 140 static void poweroff_wait (void *, int); 141 static void print_uptime (void); 142 static void shutdown_halt (void *junk, int howto); 143 static void shutdown_panic (void *junk, int howto); 144 static void shutdown_reset (void *junk, int howto); 145 146 /* register various local shutdown events */ 147 static void 148 shutdown_conf(void *unused) 149 { 150 EVENTHANDLER_REGISTER(shutdown_final, poweroff_wait, NULL, SHUTDOWN_PRI_FIRST); 151 EVENTHANDLER_REGISTER(shutdown_final, shutdown_halt, NULL, SHUTDOWN_PRI_LAST + 100); 152 EVENTHANDLER_REGISTER(shutdown_final, shutdown_panic, NULL, SHUTDOWN_PRI_LAST + 100); 153 EVENTHANDLER_REGISTER(shutdown_final, shutdown_reset, NULL, SHUTDOWN_PRI_LAST + 200); 154 } 155 156 SYSINIT(shutdown_conf, SI_SUB_INTRINSIC, SI_ORDER_ANY, shutdown_conf, NULL) 157 158 /* ARGSUSED */ 159 160 /* 161 * The system call that results in a reboot 162 */ 163 int 164 reboot(struct reboot_args *uap) 165 { 166 struct thread *td = curthread; 167 int error; 168 169 if ((error = suser(td))) 170 return (error); 171 172 boot(uap->opt); 173 return (0); 174 } 175 176 /* 177 * Called by events that want to shut down.. e.g <CTL><ALT><DEL> on a PC 178 */ 179 static int shutdown_howto = 0; 180 181 void 182 shutdown_nice(int howto) 183 { 184 shutdown_howto = howto; 185 186 /* Send a signal to init(8) and have it shutdown the world */ 187 if (initproc != NULL) { 188 psignal(initproc, SIGINT); 189 } else { 190 /* No init(8) running, so simply reboot */ 191 boot(RB_NOSYNC); 192 } 193 return; 194 } 195 static int waittime = -1; 196 static struct pcb dumppcb; 197 198 static void 199 print_uptime() 200 { 201 int f; 202 struct timespec ts; 203 204 getnanouptime(&ts); 205 printf("Uptime: "); 206 f = 0; 207 if (ts.tv_sec >= 86400) { 208 printf("%ldd", ts.tv_sec / 86400); 209 ts.tv_sec %= 86400; 210 f = 1; 211 } 212 if (f || ts.tv_sec >= 3600) { 213 printf("%ldh", ts.tv_sec / 3600); 214 ts.tv_sec %= 3600; 215 f = 1; 216 } 217 if (f || ts.tv_sec >= 60) { 218 printf("%ldm", ts.tv_sec / 60); 219 ts.tv_sec %= 60; 220 f = 1; 221 } 222 printf("%lds\n", ts.tv_sec); 223 } 224 225 /* 226 * Go through the rigmarole of shutting down.. 227 * this used to be in machdep.c but I'll be dammned if I could see 228 * anything machine dependant in it. 229 */ 230 static void 231 boot(int howto) 232 { 233 /* 234 * Get rid of any user scheduler baggage and then give 235 * us a high priority. 236 */ 237 if (curthread->td_release) 238 curthread->td_release(curthread); 239 lwkt_setpri_self(TDPRI_MAX); 240 241 /* collect extra flags that shutdown_nice might have set */ 242 howto |= shutdown_howto; 243 244 #ifdef SMP 245 /* 246 * We really want to shutdown on the BSP. Subsystems such as ACPI 247 * can't power-down the box otherwise. 248 */ 249 if (smp_active_mask > 1) { 250 printf("boot() called on cpu#%d\n", mycpu->gd_cpuid); 251 } 252 if (panicstr == NULL && mycpu->gd_cpuid != 0) { 253 printf("Switching to cpu #0 for shutdown\n"); 254 lwkt_setcpu_self(globaldata_find(0)); 255 } 256 #endif 257 /* 258 * Do any callouts that should be done BEFORE syncing the filesystems. 259 */ 260 EVENTHANDLER_INVOKE(shutdown_pre_sync, howto); 261 262 /* 263 * Now sync filesystems 264 */ 265 if (!cold && (howto & RB_NOSYNC) == 0 && waittime < 0) { 266 struct buf *bp; 267 int iter, nbusy, pbusy; 268 269 waittime = 0; 270 printf("\nsyncing disks... "); 271 272 sync(NULL); /* YYY was sync(&proc0, NULL). why proc0 ? */ 273 274 /* 275 * With soft updates, some buffers that are 276 * written will be remarked as dirty until other 277 * buffers are written. 278 */ 279 for (iter = pbusy = 0; iter < 20; iter++) { 280 nbusy = 0; 281 for (bp = &buf[nbuf]; --bp >= buf; ) { 282 if ((bp->b_flags & B_INVAL) == 0 && 283 BUF_REFCNT(bp) > 0) { 284 nbusy++; 285 } else if ((bp->b_flags & (B_DELWRI | B_INVAL)) 286 == B_DELWRI) { 287 /* bawrite(bp);*/ 288 nbusy++; 289 } 290 } 291 if (nbusy == 0) 292 break; 293 printf("%d ", nbusy); 294 if (nbusy < pbusy) 295 iter = 0; 296 pbusy = nbusy; 297 /* 298 * XXX: 299 * Process soft update work queue if buffers don't sync 300 * after 6 iterations by permitting the syncer to run. 301 */ 302 if (iter > 5 && bioops.io_sync) 303 (*bioops.io_sync)(NULL); 304 sync(NULL); /* YYY was sync(&proc0, NULL). why proc0 ? */ 305 tsleep(boot, 0, "shutdn", hz * iter / 20 + 1); 306 } 307 printf("\n"); 308 /* 309 * Count only busy local buffers to prevent forcing 310 * a fsck if we're just a client of a wedged NFS server 311 */ 312 nbusy = 0; 313 for (bp = &buf[nbuf]; --bp >= buf; ) { 314 if (((bp->b_flags&B_INVAL) == 0 && BUF_REFCNT(bp)) || 315 ((bp->b_flags & (B_DELWRI|B_INVAL)) == B_DELWRI)) { 316 /* 317 * XXX we need a way to detect this condition 318 * Maybe use B_DONE ? 319 */ 320 #if 0 321 if (bp->b_dev == NODEV) { 322 mountlist_remove(bp->b_vp->v_mount); 323 continue; 324 } 325 #endif 326 nbusy++; 327 #if defined(SHOW_BUSYBUFS) || defined(DIAGNOSTIC) 328 printf( 329 "%p %d: dev:?, flags:%08lx, blkno:%ld, lblkno:%ld\n", 330 bp, nbusy, 331 bp->b_flags, (long)bp->b_bio1.bio_blkno, 332 (long)bp->b_lblkno); 333 #endif 334 } 335 } 336 if (nbusy) { 337 /* 338 * Failed to sync all blocks. Indicate this and don't 339 * unmount filesystems (thus forcing an fsck on reboot). 340 */ 341 printf("giving up on %d buffers\n", nbusy); 342 #ifdef DDB 343 Debugger("busy buffer problem"); 344 #endif /* DDB */ 345 tsleep(boot, 0, "shutdn", hz * 5 + 1); 346 } else { 347 printf("done\n"); 348 /* 349 * Unmount filesystems 350 */ 351 if (panicstr == 0) 352 vfs_unmountall(); 353 } 354 tsleep(boot, 0, "shutdn", hz / 10 + 1); 355 } 356 357 print_uptime(); 358 359 /* 360 * Ok, now do things that assume all filesystem activity has 361 * been completed. 362 */ 363 EVENTHANDLER_INVOKE(shutdown_post_sync, howto); 364 crit_enter(); 365 if ((howto & (RB_HALT|RB_DUMP)) == RB_DUMP && !cold) 366 dumpsys(); 367 368 /* Now that we're going to really halt the system... */ 369 EVENTHANDLER_INVOKE(shutdown_final, howto); 370 371 for(;;) ; /* safety against shutdown_reset not working */ 372 /* NOTREACHED */ 373 } 374 375 /* 376 * If the shutdown was a clean halt, behave accordingly. 377 */ 378 static void 379 shutdown_halt(void *junk, int howto) 380 { 381 if (howto & RB_HALT) { 382 printf("\n"); 383 printf("The operating system has halted.\n"); 384 printf("Please press any key to reboot.\n\n"); 385 switch (cngetc()) { 386 case -1: /* No console, just die */ 387 cpu_halt(); 388 /* NOTREACHED */ 389 default: 390 howto &= ~RB_HALT; 391 break; 392 } 393 } 394 } 395 396 /* 397 * Check to see if the system paniced, pause and then reboot 398 * according to the specified delay. 399 */ 400 static void 401 shutdown_panic(void *junk, int howto) 402 { 403 int loop; 404 405 if (howto & RB_DUMP) { 406 if (PANIC_REBOOT_WAIT_TIME != 0) { 407 if (PANIC_REBOOT_WAIT_TIME != -1) { 408 printf("Automatic reboot in %d seconds - " 409 "press a key on the console to abort\n", 410 PANIC_REBOOT_WAIT_TIME); 411 for (loop = PANIC_REBOOT_WAIT_TIME * 10; 412 loop > 0; --loop) { 413 DELAY(1000 * 100); /* 1/10th second */ 414 /* Did user type a key? */ 415 if (cncheckc() != -1) 416 break; 417 } 418 if (!loop) 419 return; 420 } 421 } else { /* zero time specified - reboot NOW */ 422 return; 423 } 424 printf("--> Press a key on the console to reboot,\n"); 425 printf("--> or switch off the system now.\n"); 426 cngetc(); 427 } 428 } 429 430 /* 431 * Everything done, now reset 432 */ 433 static void 434 shutdown_reset(void *junk, int howto) 435 { 436 printf("Rebooting...\n"); 437 DELAY(1000000); /* wait 1 sec for printf's to complete and be read */ 438 /* cpu_boot(howto); */ /* doesn't do anything at the moment */ 439 cpu_reset(); 440 /* NOTREACHED */ /* assuming reset worked */ 441 } 442 443 /* 444 * Magic number for savecore 445 * 446 * exported (symorder) and used at least by savecore(8) 447 * 448 */ 449 static u_long const dumpmag = 0x8fca0101UL; 450 451 static int dumpsize = 0; /* also for savecore */ 452 453 static int dodump = 1; 454 455 SYSCTL_INT(_machdep, OID_AUTO, do_dump, CTLFLAG_RW, &dodump, 0, 456 "Try to perform coredump on kernel panic"); 457 458 static int 459 setdumpdev(dev) 460 dev_t dev; 461 { 462 int psize; 463 long newdumplo; 464 465 if (dev == NODEV) { 466 dumpdev = dev; 467 return (0); 468 } 469 psize = dev_dpsize(dev); 470 if (psize == -1) 471 return (ENXIO); 472 /* 473 * XXX should clean up checking in dumpsys() to be more like this. 474 */ 475 newdumplo = psize - Maxmem * (PAGE_SIZE / DEV_BSIZE); 476 if (newdumplo <= LABELSECTOR) 477 return (ENOSPC); 478 dumpdev = dev; 479 dumplo = newdumplo; 480 return (0); 481 } 482 483 484 /* ARGSUSED */ 485 static void dump_conf (void *dummy); 486 static void 487 dump_conf(dummy) 488 void *dummy; 489 { 490 char *path; 491 dev_t dev; 492 493 path = malloc(MNAMELEN, M_TEMP, M_WAITOK); 494 if (TUNABLE_STR_FETCH("dumpdev", path, MNAMELEN) != 0) { 495 dev = getdiskbyname(path); 496 if (dev != NODEV) 497 dumpdev = dev; 498 } 499 free(path, M_TEMP); 500 if (setdumpdev(dumpdev) != 0) 501 dumpdev = NODEV; 502 } 503 504 SYSINIT(dump_conf, SI_SUB_DUMP_CONF, SI_ORDER_FIRST, dump_conf, NULL) 505 506 static int 507 sysctl_kern_dumpdev(SYSCTL_HANDLER_ARGS) 508 { 509 int error; 510 udev_t ndumpdev; 511 512 ndumpdev = dev2udev(dumpdev); 513 error = sysctl_handle_opaque(oidp, &ndumpdev, sizeof ndumpdev, req); 514 if (error == 0 && req->newptr != NULL) 515 error = setdumpdev(udev2dev(ndumpdev, 0)); 516 return (error); 517 } 518 519 SYSCTL_PROC(_kern, KERN_DUMPDEV, dumpdev, CTLTYPE_OPAQUE|CTLFLAG_RW, 520 0, sizeof dumpdev, sysctl_kern_dumpdev, "T,dev_t", ""); 521 522 /* 523 * Doadump comes here after turning off memory management and 524 * getting on the dump stack, either when called above, or by 525 * the auto-restart code. 526 */ 527 static void 528 dumpsys(void) 529 { 530 int error; 531 532 savectx(&dumppcb); 533 if (dumping++) { 534 printf("Dump already in progress, bailing...\n"); 535 return; 536 } 537 if (!dodump) 538 return; 539 if (dumpdev == NODEV) 540 return; 541 dumpsize = Maxmem; 542 printf("\ndumping to dev %s, offset %ld\n", devtoname(dumpdev), dumplo); 543 printf("dump "); 544 error = dev_ddump(dumpdev); 545 if (error == 0) { 546 printf("succeeded\n"); 547 return; 548 } 549 printf("failed, reason: "); 550 switch (error) { 551 case ENOSYS: 552 case ENODEV: 553 printf("device doesn't support a dump routine\n"); 554 break; 555 556 case ENXIO: 557 printf("device bad\n"); 558 break; 559 560 case EFAULT: 561 printf("device not ready\n"); 562 break; 563 564 case EINVAL: 565 printf("area improper\n"); 566 break; 567 568 case EIO: 569 printf("i/o error\n"); 570 break; 571 572 case EINTR: 573 printf("aborted from console\n"); 574 break; 575 576 default: 577 printf("unknown, error = %d\n", error); 578 break; 579 } 580 } 581 582 int 583 dumpstatus(vm_offset_t addr, off_t count) 584 { 585 int c; 586 587 if (addr % (1024 * 1024) == 0) { 588 #ifdef HW_WDOG 589 if (wdog_tickler) 590 (*wdog_tickler)(); 591 #endif 592 printf("%ld ", (long)(count / (1024 * 1024))); 593 } 594 595 if ((c = cncheckc()) == 0x03) 596 return -1; 597 else if (c != -1) 598 printf("[CTRL-C to abort] "); 599 600 return 0; 601 } 602 603 /* 604 * Panic is called on unresolvable fatal errors. It prints "panic: mesg", 605 * and then reboots. If we are called twice, then we avoid trying to sync 606 * the disks as this often leads to recursive panics. 607 */ 608 void 609 panic(const char *fmt, ...) 610 { 611 int bootopt, newpanic; 612 __va_list ap; 613 static char buf[256]; 614 615 #ifdef SMP 616 /* 617 * If a panic occurs on multiple cpus before the first is able to 618 * halt the other cpus, only one cpu is allowed to take the panic. 619 * Attempt to be verbose about this situation but if the printf() 620 * itself panics don't let us overrun the kernel stack. 621 * 622 * Be very nasty about descheduling our thread at the lowest 623 * level possible in an attempt to freeze the thread without 624 * inducing further panics. 625 * 626 * Bumping gd_trap_nesting_level will also bypass assertions in 627 * lwkt_switch() and allow us to switch away even if we are a 628 * FAST interrupt or IPI. 629 */ 630 if (atomic_poll_acquire_int(&panic_cpu_interlock)) { 631 panic_cpu_gd = mycpu; 632 } else if (panic_cpu_gd != mycpu) { 633 crit_enter(); 634 ++mycpu->gd_trap_nesting_level; 635 if (mycpu->gd_trap_nesting_level < 25) { 636 printf("SECONDARY PANIC ON CPU %d THREAD %p\n", 637 mycpu->gd_cpuid, curthread); 638 } 639 curthread->td_release = NULL; /* be a grinch */ 640 for (;;) { 641 lwkt_deschedule_self(curthread); 642 lwkt_switch(); 643 } 644 /* NOT REACHED */ 645 /* --mycpu->gd_trap_nesting_level */ 646 /* crit_exit() */ 647 } 648 #endif 649 bootopt = RB_AUTOBOOT | RB_DUMP; 650 if (sync_on_panic == 0) 651 bootopt |= RB_NOSYNC; 652 newpanic = 0; 653 if (panicstr) 654 bootopt |= RB_NOSYNC; 655 else { 656 panicstr = fmt; 657 newpanic = 1; 658 } 659 660 __va_start(ap, fmt); 661 (void)vsnprintf(buf, sizeof(buf), fmt, ap); 662 if (panicstr == fmt) 663 panicstr = buf; 664 __va_end(ap); 665 printf("panic: %s\n", buf); 666 #ifdef SMP 667 /* three separate prints in case of an unmapped page and trap */ 668 printf("mp_lock = %08x; ", mp_lock); 669 printf("cpuid = %d; ", mycpu->gd_cpuid); 670 printf("lapic.id = %08x\n", lapic.id); 671 #endif 672 673 #if defined(DDB) 674 if (newpanic && trace_on_panic) 675 db_print_backtrace(); 676 if (debugger_on_panic) 677 Debugger ("panic"); 678 #endif 679 boot(bootopt); 680 } 681 682 /* 683 * Support for poweroff delay. 684 */ 685 #ifndef POWEROFF_DELAY 686 # define POWEROFF_DELAY 5000 687 #endif 688 static int poweroff_delay = POWEROFF_DELAY; 689 690 SYSCTL_INT(_kern_shutdown, OID_AUTO, poweroff_delay, CTLFLAG_RW, 691 &poweroff_delay, 0, ""); 692 693 static void 694 poweroff_wait(void *junk, int howto) 695 { 696 if(!(howto & RB_POWEROFF) || poweroff_delay <= 0) 697 return; 698 DELAY(poweroff_delay * 1000); 699 } 700 701 /* 702 * Some system processes (e.g. syncer) need to be stopped at appropriate 703 * points in their main loops prior to a system shutdown, so that they 704 * won't interfere with the shutdown process (e.g. by holding a disk buf 705 * to cause sync to fail). For each of these system processes, register 706 * shutdown_kproc() as a handler for one of shutdown events. 707 */ 708 static int kproc_shutdown_wait = 60; 709 SYSCTL_INT(_kern_shutdown, OID_AUTO, kproc_shutdown_wait, CTLFLAG_RW, 710 &kproc_shutdown_wait, 0, ""); 711 712 void 713 shutdown_kproc(void *arg, int howto) 714 { 715 struct thread *td; 716 struct proc *p; 717 int error; 718 719 if (panicstr) 720 return; 721 722 td = (struct thread *)arg; 723 if ((p = td->td_proc) != NULL) { 724 printf("Waiting (max %d seconds) for system process `%s' to stop...", 725 kproc_shutdown_wait, p->p_comm); 726 } else { 727 printf("Waiting (max %d seconds) for system thread %s to stop...", 728 kproc_shutdown_wait, td->td_comm); 729 } 730 error = suspend_kproc(td, kproc_shutdown_wait * hz); 731 732 if (error == EWOULDBLOCK) 733 printf("timed out\n"); 734 else 735 printf("stopped\n"); 736 } 737