1 /* 2 * Copyright (c) 1980, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 4. Neither the name of the University nor the names of its contributors 14 * may be used to endorse or promote products derived from this software 15 * without specific prior written permission. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 */ 29 30 #if 0 31 #ifndef lint 32 static const char copyright[] = 33 "@(#) Copyright (c) 1980, 1993\n\ 34 The Regents of the University of California. All rights reserved.\n"; 35 #endif /* not lint */ 36 37 #ifndef lint 38 static char sccsid[] = "From: @(#)swapon.c 8.1 (Berkeley) 6/5/93"; 39 #endif /* not lint */ 40 #endif 41 #include <sys/cdefs.h> 42 __FBSDID("$FreeBSD$"); 43 44 #include <sys/param.h> 45 #include <sys/disk.h> 46 #include <sys/sysctl.h> 47 48 #include <err.h> 49 #include <fcntl.h> 50 #include <paths.h> 51 #include <stdint.h> 52 #include <stdio.h> 53 #include <stdlib.h> 54 #include <string.h> 55 #include <sysexits.h> 56 #include <unistd.h> 57 58 static int verbose; 59 60 static void 61 usage(void) 62 { 63 fprintf(stderr, "%s\n%s\n", 64 "usage: dumpon [-v] special_file", 65 " dumpon [-v] off"); 66 exit(EX_USAGE); 67 } 68 69 static void 70 check_size(int fd, const char *fn) 71 { 72 int name[] = { CTL_HW, HW_PHYSMEM }; 73 size_t namelen = sizeof(name) / sizeof(*name); 74 unsigned long physmem; 75 size_t len; 76 off_t mediasize; 77 int minidump; 78 79 len = sizeof(minidump); 80 if (sysctlbyname("debug.minidump", &minidump, &len, NULL, 0) == 0 && 81 minidump == 1) 82 return; 83 len = sizeof(physmem); 84 if (sysctl(name, namelen, &physmem, &len, NULL, 0) != 0) 85 err(EX_OSERR, "can't get memory size"); 86 if (ioctl(fd, DIOCGMEDIASIZE, &mediasize) != 0) 87 err(EX_OSERR, "%s: can't get size", fn); 88 if ((uintmax_t)mediasize < (uintmax_t)physmem) { 89 if (verbose) 90 printf("%s is smaller than physical memory\n", fn); 91 exit(EX_IOERR); 92 } 93 } 94 95 int 96 main(int argc, char *argv[]) 97 { 98 int ch; 99 int i, fd; 100 u_int u; 101 102 while ((ch = getopt(argc, argv, "v")) != -1) 103 switch((char)ch) { 104 case 'v': 105 verbose = 1; 106 break; 107 default: 108 usage(); 109 } 110 111 argc -= optind; 112 argv += optind; 113 114 if (argc != 1) 115 usage(); 116 117 if (strcmp(argv[0], "off") != 0) { 118 fd = open(argv[0], O_RDONLY); 119 if (fd < 0) 120 err(EX_OSFILE, "%s", argv[0]); 121 check_size(fd, argv[0]); 122 u = 0; 123 i = ioctl(fd, DIOCSKERNELDUMP, &u); 124 u = 1; 125 i = ioctl(fd, DIOCSKERNELDUMP, &u); 126 if (i == 0 && verbose) 127 printf("kernel dumps on %s\n", argv[0]); 128 } else { 129 fd = open(_PATH_DEVNULL, O_RDONLY); 130 if (fd < 0) 131 err(EX_OSFILE, "%s", _PATH_DEVNULL); 132 u = 0; 133 i = ioctl(fd, DIOCSKERNELDUMP, &u); 134 if (i == 0 && verbose) 135 printf("kernel dumps disabled\n"); 136 } 137 if (i < 0) 138 err(EX_OSERR, "ioctl(DIOCSKERNELDUMP)"); 139 140 exit (0); 141 } 142