]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/kern/kern_shutdown.c
MFC r222454:
[FreeBSD/stable/8.git] / sys / kern / kern_shutdown.c
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  * 4. 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  */
36
37 #include <sys/cdefs.h>
38 __FBSDID("$FreeBSD$");
39
40 #include "opt_ddb.h"
41 #include "opt_kdb.h"
42 #include "opt_panic.h"
43 #include "opt_show_busybufs.h"
44 #include "opt_sched.h"
45 #include "opt_watchdog.h"
46
47 #include <sys/param.h>
48 #include <sys/systm.h>
49 #include <sys/bio.h>
50 #include <sys/buf.h>
51 #include <sys/conf.h>
52 #include <sys/cons.h>
53 #include <sys/eventhandler.h>
54 #include <sys/jail.h>
55 #include <sys/kdb.h>
56 #include <sys/kernel.h>
57 #include <sys/kerneldump.h>
58 #include <sys/kthread.h>
59 #include <sys/malloc.h>
60 #include <sys/mount.h>
61 #include <sys/priv.h>
62 #include <sys/proc.h>
63 #include <sys/reboot.h>
64 #include <sys/resourcevar.h>
65 #include <sys/sched.h>
66 #include <sys/smp.h>
67 #include <sys/sysctl.h>
68 #include <sys/sysproto.h>
69 #ifdef SW_WATCHDOG
70 #include <sys/watchdog.h>
71 #endif
72
73 #include <ddb/ddb.h>
74
75 #include <machine/cpu.h>
76 #include <machine/pcb.h>
77 #include <machine/smp.h>
78
79 #include <security/mac/mac_framework.h>
80
81 #include <vm/vm.h>
82 #include <vm/vm_object.h>
83 #include <vm/vm_page.h>
84 #include <vm/vm_pager.h>
85 #include <vm/swap_pager.h>
86
87 #include <sys/signalvar.h>
88
89 #ifndef PANIC_REBOOT_WAIT_TIME
90 #define PANIC_REBOOT_WAIT_TIME 15 /* default to 15 seconds */
91 #endif
92
93 /*
94  * Note that stdarg.h and the ANSI style va_start macro is used for both
95  * ANSI and traditional C compilers.
96  */
97 #include <machine/stdarg.h>
98
99 #ifdef KDB
100 #ifdef KDB_UNATTENDED
101 int debugger_on_panic = 0;
102 #else
103 int debugger_on_panic = 1;
104 #endif
105 SYSCTL_INT(_debug, OID_AUTO, debugger_on_panic, CTLFLAG_RW | CTLFLAG_TUN,
106         &debugger_on_panic, 0, "Run debugger on kernel panic");
107 TUNABLE_INT("debug.debugger_on_panic", &debugger_on_panic);
108
109 #ifdef KDB_TRACE
110 static int trace_on_panic = 1;
111 #else
112 static int trace_on_panic = 0;
113 #endif
114 SYSCTL_INT(_debug, OID_AUTO, trace_on_panic, CTLFLAG_RW | CTLFLAG_TUN,
115         &trace_on_panic, 0, "Print stack trace on kernel panic");
116 TUNABLE_INT("debug.trace_on_panic", &trace_on_panic);
117 #endif /* KDB */
118
119 static int sync_on_panic = 0;
120 SYSCTL_INT(_kern, OID_AUTO, sync_on_panic, CTLFLAG_RW | CTLFLAG_TUN,
121         &sync_on_panic, 0, "Do a sync before rebooting from a panic");
122 TUNABLE_INT("kern.sync_on_panic", &sync_on_panic);
123
124 SYSCTL_NODE(_kern, OID_AUTO, shutdown, CTLFLAG_RW, 0, "Shutdown environment");
125
126 /*
127  * Variable panicstr contains argument to first call to panic; used as flag
128  * to indicate that the kernel has already called panic.
129  */
130 const char *panicstr;
131
132 int dumping;                            /* system is dumping */
133 int rebooting;                          /* system is rebooting */
134 static struct dumperinfo dumper;        /* our selected dumper */
135
136 /* Context information for dump-debuggers. */
137 static struct pcb dumppcb;              /* Registers. */
138 static lwpid_t dumptid;                 /* Thread ID. */
139
140 static void boot(int) __dead2;
141 static void poweroff_wait(void *, int);
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
151         EVENTHANDLER_REGISTER(shutdown_final, poweroff_wait, NULL,
152             SHUTDOWN_PRI_FIRST);
153         EVENTHANDLER_REGISTER(shutdown_final, shutdown_halt, NULL,
154             SHUTDOWN_PRI_LAST + 100);
155         EVENTHANDLER_REGISTER(shutdown_final, shutdown_panic, NULL,
156             SHUTDOWN_PRI_LAST + 100);
157         EVENTHANDLER_REGISTER(shutdown_final, shutdown_reset, NULL,
158             SHUTDOWN_PRI_LAST + 200);
159 }
160
161 SYSINIT(shutdown_conf, SI_SUB_INTRINSIC, SI_ORDER_ANY, shutdown_conf, NULL);
162
163 /*
164  * The system call that results in a reboot.
165  */
166 /* ARGSUSED */
167 int
168 reboot(struct thread *td, struct reboot_args *uap)
169 {
170         int error;
171
172         error = 0;
173 #ifdef MAC
174         error = mac_system_check_reboot(td->td_ucred, uap->opt);
175 #endif
176         if (error == 0)
177                 error = priv_check(td, PRIV_REBOOT);
178         if (error == 0) {
179                 mtx_lock(&Giant);
180                 boot(uap->opt);
181                 mtx_unlock(&Giant);
182         }
183         return (error);
184 }
185
186 /*
187  * Called by events that want to shut down.. e.g  <CTL><ALT><DEL> on a PC
188  */
189 static int shutdown_howto = 0;
190
191 void
192 shutdown_nice(int howto)
193 {
194
195         shutdown_howto = howto;
196
197         /* Send a signal to init(8) and have it shutdown the world */
198         if (initproc != NULL) {
199                 PROC_LOCK(initproc);
200                 psignal(initproc, SIGINT);
201                 PROC_UNLOCK(initproc);
202         } else {
203                 /* No init(8) running, so simply reboot */
204                 boot(RB_NOSYNC);
205         }
206         return;
207 }
208 static int      waittime = -1;
209
210 static void
211 print_uptime(void)
212 {
213         int f;
214         struct timespec ts;
215
216         getnanouptime(&ts);
217         printf("Uptime: ");
218         f = 0;
219         if (ts.tv_sec >= 86400) {
220                 printf("%ldd", (long)ts.tv_sec / 86400);
221                 ts.tv_sec %= 86400;
222                 f = 1;
223         }
224         if (f || ts.tv_sec >= 3600) {
225                 printf("%ldh", (long)ts.tv_sec / 3600);
226                 ts.tv_sec %= 3600;
227                 f = 1;
228         }
229         if (f || ts.tv_sec >= 60) {
230                 printf("%ldm", (long)ts.tv_sec / 60);
231                 ts.tv_sec %= 60;
232                 f = 1;
233         }
234         printf("%lds\n", (long)ts.tv_sec);
235 }
236
237 static void
238 doadump(void)
239 {
240
241         /*
242          * Sometimes people have to call this from the kernel debugger. 
243          * (if 'panic' can not dump)
244          * Give them a clue as to why they can't dump.
245          */
246         if (dumper.dumper == NULL) {
247                 printf("Cannot dump. Device not defined or unavailable.\n");
248                 return;
249         }
250
251         savectx(&dumppcb);
252         dumptid = curthread->td_tid;
253         dumping++;
254 #ifdef DDB
255         if (textdump_pending)
256                 textdump_dumpsys(&dumper);
257         else
258 #endif
259                 dumpsys(&dumper);
260         dumping--;
261 }
262
263 static int
264 isbufbusy(struct buf *bp)
265 {
266         if (((bp->b_flags & (B_INVAL | B_PERSISTENT)) == 0 &&
267             BUF_ISLOCKED(bp)) ||
268             ((bp->b_flags & (B_DELWRI | B_INVAL)) == B_DELWRI))
269                 return (1);
270         return (0);
271 }
272
273 /*
274  * Shutdown the system cleanly to prepare for reboot, halt, or power off.
275  */
276 static void
277 boot(int howto)
278 {
279         static int first_buf_printf = 1;
280
281 #if defined(SMP)
282         /*
283          * Bind us to CPU 0 so that all shutdown code runs there.  Some
284          * systems don't shutdown properly (i.e., ACPI power off) if we
285          * run on another processor.
286          */
287         thread_lock(curthread);
288         sched_bind(curthread, 0);
289         thread_unlock(curthread);
290         KASSERT(PCPU_GET(cpuid) == 0, ("boot: not running on cpu 0"));
291 #endif
292         /* We're in the process of rebooting. */
293         rebooting = 1;
294
295         /* collect extra flags that shutdown_nice might have set */
296         howto |= shutdown_howto;
297
298         /* We are out of the debugger now. */
299         kdb_active = 0;
300
301         /*
302          * Do any callouts that should be done BEFORE syncing the filesystems.
303          */
304         EVENTHANDLER_INVOKE(shutdown_pre_sync, howto);
305
306         /* 
307          * Now sync filesystems
308          */
309         if (!cold && (howto & RB_NOSYNC) == 0 && waittime < 0) {
310                 register struct buf *bp;
311                 int iter, nbusy, pbusy;
312 #ifndef PREEMPTION
313                 int subiter;
314 #endif
315
316                 waittime = 0;
317
318 #ifdef SW_WATCHDOG
319                 wdog_kern_pat(WD_LASTVAL);
320 #endif
321                 sync(curthread, NULL);
322
323                 /*
324                  * With soft updates, some buffers that are
325                  * written will be remarked as dirty until other
326                  * buffers are written.
327                  */
328                 for (iter = pbusy = 0; iter < 20; iter++) {
329                         nbusy = 0;
330                         for (bp = &buf[nbuf]; --bp >= buf; )
331                                 if (isbufbusy(bp))
332                                         nbusy++;
333                         if (nbusy == 0) {
334                                 if (first_buf_printf)
335                                         printf("All buffers synced.");
336                                 break;
337                         }
338                         if (first_buf_printf) {
339                                 printf("Syncing disks, buffers remaining... ");
340                                 first_buf_printf = 0;
341                         }
342                         printf("%d ", nbusy);
343                         if (nbusy < pbusy)
344                                 iter = 0;
345                         pbusy = nbusy;
346 #ifdef SW_WATCHDOG
347                         wdog_kern_pat(WD_LASTVAL);
348 #endif
349                         sync(curthread, NULL);
350
351 #ifdef PREEMPTION
352                         /*
353                          * Drop Giant and spin for a while to allow
354                          * interrupt threads to run.
355                          */
356                         DROP_GIANT();
357                         DELAY(50000 * iter);
358                         PICKUP_GIANT();
359 #else
360                         /*
361                          * Drop Giant and context switch several times to
362                          * allow interrupt threads to run.
363                          */
364                         DROP_GIANT();
365                         for (subiter = 0; subiter < 50 * iter; subiter++) {
366                                 thread_lock(curthread);
367                                 mi_switch(SW_VOL, NULL);
368                                 thread_unlock(curthread);
369                                 DELAY(1000);
370                         }
371                         PICKUP_GIANT();
372 #endif
373                 }
374                 printf("\n");
375                 /*
376                  * Count only busy local buffers to prevent forcing 
377                  * a fsck if we're just a client of a wedged NFS server
378                  */
379                 nbusy = 0;
380                 for (bp = &buf[nbuf]; --bp >= buf; ) {
381                         if (isbufbusy(bp)) {
382 #if 0
383 /* XXX: This is bogus.  We should probably have a BO_REMOTE flag instead */
384                                 if (bp->b_dev == NULL) {
385                                         TAILQ_REMOVE(&mountlist,
386                                             bp->b_vp->v_mount, mnt_list);
387                                         continue;
388                                 }
389 #endif
390                                 nbusy++;
391 #if defined(SHOW_BUSYBUFS) || defined(DIAGNOSTIC)
392                                 printf(
393                             "%d: bufobj:%p, flags:%0x, blkno:%ld, lblkno:%ld\n",
394                                     nbusy, bp->b_bufobj,
395                                     bp->b_flags, (long)bp->b_blkno,
396                                     (long)bp->b_lblkno);
397 #endif
398                         }
399                 }
400                 if (nbusy) {
401                         /*
402                          * Failed to sync all blocks. Indicate this and don't
403                          * unmount filesystems (thus forcing an fsck on reboot).
404                          */
405                         printf("Giving up on %d buffers\n", nbusy);
406                         DELAY(5000000); /* 5 seconds */
407                 } else {
408                         if (!first_buf_printf)
409                                 printf("Final sync complete\n");
410                         /*
411                          * Unmount filesystems
412                          */
413                         if (panicstr == 0)
414                                 vfs_unmountall();
415                 }
416                 swapoff_all();
417                 DELAY(100000);          /* wait for console output to finish */
418         }
419
420         print_uptime();
421
422         /*
423          * Ok, now do things that assume all filesystem activity has
424          * been completed.
425          */
426         EVENTHANDLER_INVOKE(shutdown_post_sync, howto);
427
428         if ((howto & (RB_HALT|RB_DUMP)) == RB_DUMP && !cold && !dumping) 
429                 doadump();
430
431         /* Now that we're going to really halt the system... */
432         EVENTHANDLER_INVOKE(shutdown_final, howto);
433
434         for(;;) ;       /* safety against shutdown_reset not working */
435         /* NOTREACHED */
436 }
437
438 /*
439  * If the shutdown was a clean halt, behave accordingly.
440  */
441 static void
442 shutdown_halt(void *junk, int howto)
443 {
444
445         if (howto & RB_HALT) {
446                 printf("\n");
447                 printf("The operating system has halted.\n");
448                 printf("Please press any key to reboot.\n\n");
449                 switch (cngetc()) {
450                 case -1:                /* No console, just die */
451                         cpu_halt();
452                         /* NOTREACHED */
453                 default:
454                         howto &= ~RB_HALT;
455                         break;
456                 }
457         }
458 }
459
460 /*
461  * Check to see if the system paniced, pause and then reboot
462  * according to the specified delay.
463  */
464 static void
465 shutdown_panic(void *junk, int howto)
466 {
467         int loop;
468
469         if (howto & RB_DUMP) {
470                 if (PANIC_REBOOT_WAIT_TIME != 0) {
471                         if (PANIC_REBOOT_WAIT_TIME != -1) {
472                                 printf("Automatic reboot in %d seconds - "
473                                        "press a key on the console to abort\n",
474                                         PANIC_REBOOT_WAIT_TIME);
475                                 for (loop = PANIC_REBOOT_WAIT_TIME * 10;
476                                      loop > 0; --loop) {
477                                         DELAY(1000 * 100); /* 1/10th second */
478                                         /* Did user type a key? */
479                                         if (cncheckc() != -1)
480                                                 break;
481                                 }
482                                 if (!loop)
483                                         return;
484                         }
485                 } else { /* zero time specified - reboot NOW */
486                         return;
487                 }
488                 printf("--> Press a key on the console to reboot,\n");
489                 printf("--> or switch off the system now.\n");
490                 cngetc();
491         }
492 }
493
494 /*
495  * Everything done, now reset
496  */
497 static void
498 shutdown_reset(void *junk, int howto)
499 {
500
501         printf("Rebooting...\n");
502         DELAY(1000000); /* wait 1 sec for printf's to complete and be read */
503
504         /*
505          * Acquiring smp_ipi_mtx here has a double effect:
506          * - it disables interrupts avoiding CPU0 preemption
507          *   by fast handlers (thus deadlocking  against other CPUs)
508          * - it avoids deadlocks against smp_rendezvous() or, more 
509          *   generally, threads busy-waiting, with this spinlock held,
510          *   and waiting for responses by threads on other CPUs
511          *   (ie. smp_tlb_shootdown()).
512          *
513          * For the !SMP case it just needs to handle the former problem.
514          */
515 #ifdef SMP
516         mtx_lock_spin(&smp_ipi_mtx);
517 #else
518         spinlock_enter();
519 #endif
520
521         /* cpu_boot(howto); */ /* doesn't do anything at the moment */
522         cpu_reset();
523         /* NOTREACHED */ /* assuming reset worked */
524 }
525
526 /*
527  * Panic is called on unresolvable fatal errors.  It prints "panic: mesg",
528  * and then reboots.  If we are called twice, then we avoid trying to sync
529  * the disks as this often leads to recursive panics.
530  */
531 void
532 panic(const char *fmt, ...)
533 {
534 #ifdef SMP
535         static volatile u_int panic_cpu = NOCPU;
536 #endif
537         struct thread *td = curthread;
538         int bootopt, newpanic;
539         va_list ap;
540         static char buf[256];
541
542         critical_enter();
543 #ifdef SMP
544         /*
545          * We don't want multiple CPU's to panic at the same time, so we
546          * use panic_cpu as a simple spinlock.  We have to keep checking
547          * panic_cpu if we are spinning in case the panic on the first
548          * CPU is canceled.
549          */
550         if (panic_cpu != PCPU_GET(cpuid))
551                 while (atomic_cmpset_int(&panic_cpu, NOCPU,
552                     PCPU_GET(cpuid)) == 0)
553                         while (panic_cpu != NOCPU)
554                                 ; /* nothing */
555 #endif
556
557         bootopt = RB_AUTOBOOT | RB_DUMP;
558         newpanic = 0;
559         if (panicstr)
560                 bootopt |= RB_NOSYNC;
561         else {
562                 panicstr = fmt;
563                 newpanic = 1;
564         }
565
566         va_start(ap, fmt);
567         if (newpanic) {
568                 (void)vsnprintf(buf, sizeof(buf), fmt, ap);
569                 panicstr = buf;
570                 printf("panic: %s\n", buf);
571         } else {
572                 printf("panic: ");
573                 vprintf(fmt, ap);
574                 printf("\n");
575         }
576         va_end(ap);
577 #ifdef SMP
578         printf("cpuid = %d\n", PCPU_GET(cpuid));
579 #endif
580
581 #ifdef KDB
582         if (newpanic && trace_on_panic)
583                 kdb_backtrace();
584         if (debugger_on_panic)
585                 kdb_enter(KDB_WHY_PANIC, "panic");
586 #ifdef RESTARTABLE_PANICS
587         /* See if the user aborted the panic, in which case we continue. */
588         if (panicstr == NULL) {
589 #ifdef SMP
590                 atomic_store_rel_int(&panic_cpu, NOCPU);
591 #endif
592                 return;
593         }
594 #endif
595 #endif
596         /*thread_lock(td); */
597         td->td_flags |= TDF_INPANIC;
598         /* thread_unlock(td); */
599         if (!sync_on_panic)
600                 bootopt |= RB_NOSYNC;
601         critical_exit();
602         boot(bootopt);
603 }
604
605 /*
606  * Support for poweroff delay.
607  */
608 #ifndef POWEROFF_DELAY
609 # define POWEROFF_DELAY 5000
610 #endif
611 static int poweroff_delay = POWEROFF_DELAY;
612
613 SYSCTL_INT(_kern_shutdown, OID_AUTO, poweroff_delay, CTLFLAG_RW,
614         &poweroff_delay, 0, "");
615
616 static void
617 poweroff_wait(void *junk, int howto)
618 {
619
620         if (!(howto & RB_POWEROFF) || poweroff_delay <= 0)
621                 return;
622         DELAY(poweroff_delay * 1000);
623 }
624
625 /*
626  * Some system processes (e.g. syncer) need to be stopped at appropriate
627  * points in their main loops prior to a system shutdown, so that they
628  * won't interfere with the shutdown process (e.g. by holding a disk buf
629  * to cause sync to fail).  For each of these system processes, register
630  * shutdown_kproc() as a handler for one of shutdown events.
631  */
632 static int kproc_shutdown_wait = 60;
633 SYSCTL_INT(_kern_shutdown, OID_AUTO, kproc_shutdown_wait, CTLFLAG_RW,
634     &kproc_shutdown_wait, 0, "");
635
636 void
637 kproc_shutdown(void *arg, int howto)
638 {
639         struct proc *p;
640         char procname[MAXCOMLEN + 1];
641         int error;
642
643         if (panicstr)
644                 return;
645
646         p = (struct proc *)arg;
647         strlcpy(procname, p->p_comm, sizeof(procname));
648         printf("Waiting (max %d seconds) for system process `%s' to stop...",
649             kproc_shutdown_wait, procname);
650         error = kproc_suspend(p, kproc_shutdown_wait * hz);
651
652         if (error == EWOULDBLOCK)
653                 printf("timed out\n");
654         else
655                 printf("done\n");
656 }
657
658 void
659 kthread_shutdown(void *arg, int howto)
660 {
661         struct thread *td;
662         char procname[MAXCOMLEN + 1];
663         int error;
664
665         if (panicstr)
666                 return;
667
668         td = (struct thread *)arg;
669         strlcpy(procname, td->td_name, sizeof(procname));
670         printf("Waiting (max %d seconds) for system thread `%s' to stop...",
671             kproc_shutdown_wait, procname);
672         error = kthread_suspend(td, kproc_shutdown_wait * hz);
673
674         if (error == EWOULDBLOCK)
675                 printf("timed out\n");
676         else
677                 printf("done\n");
678 }
679
680 /* Registration of dumpers */
681 int
682 set_dumper(struct dumperinfo *di)
683 {
684
685         if (di == NULL) {
686                 bzero(&dumper, sizeof dumper);
687                 return (0);
688         }
689         if (dumper.dumper != NULL)
690                 return (EBUSY);
691         dumper = *di;
692         return (0);
693 }
694
695 /* Call dumper with bounds checking. */
696 int
697 dump_write(struct dumperinfo *di, void *virtual, vm_offset_t physical,
698     off_t offset, size_t length)
699 {
700
701         if (length != 0 && (offset < di->mediaoffset ||
702             offset - di->mediaoffset + length > di->mediasize)) {
703                 printf("Attempt to write outside dump device boundaries.\n");
704                 return (ENXIO);
705         }
706         return (di->dumper(di->priv, virtual, physical, offset, length));
707 }
708
709 void
710 mkdumpheader(struct kerneldumpheader *kdh, char *magic, uint32_t archver,
711     uint64_t dumplen, uint32_t blksz)
712 {
713
714         bzero(kdh, sizeof(*kdh));
715         strncpy(kdh->magic, magic, sizeof(kdh->magic));
716         strncpy(kdh->architecture, MACHINE_ARCH, sizeof(kdh->architecture));
717         kdh->version = htod32(KERNELDUMPVERSION);
718         kdh->architectureversion = htod32(archver);
719         kdh->dumplength = htod64(dumplen);
720         kdh->dumptime = htod64(time_second);
721         kdh->blocksize = htod32(blksz);
722         strncpy(kdh->hostname, prison0.pr_hostname, sizeof(kdh->hostname));
723         strncpy(kdh->versionstring, version, sizeof(kdh->versionstring));
724         if (panicstr != NULL)
725                 strncpy(kdh->panicstring, panicstr, sizeof(kdh->panicstring));
726         kdh->parity = kerneldump_parity(kdh);
727 }