17c478bd9Sstevel@tonic-gate /* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*a10acbd6Seschrock * Common Development and Distribution License (the "License"). 6*a10acbd6Seschrock * You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate * 87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate * and limitations under the License. 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate * 197c478bd9Sstevel@tonic-gate * CDDL HEADER END 207c478bd9Sstevel@tonic-gate */ 217c478bd9Sstevel@tonic-gate /* 22*a10acbd6Seschrock * Copyright 2007 Sun Microsystems, Inc. All rights reserved. 237c478bd9Sstevel@tonic-gate * Use is subject to license terms. 247c478bd9Sstevel@tonic-gate */ 257c478bd9Sstevel@tonic-gate 267c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 277c478bd9Sstevel@tonic-gate 287c478bd9Sstevel@tonic-gate #include <sys/types.h> 297c478bd9Sstevel@tonic-gate #include <sys/stat.h> 307c478bd9Sstevel@tonic-gate #include <sys/swap.h> 317c478bd9Sstevel@tonic-gate #include <sys/dumpadm.h> 327c478bd9Sstevel@tonic-gate #include <sys/utsname.h> 337c478bd9Sstevel@tonic-gate 347c478bd9Sstevel@tonic-gate #include <unistd.h> 357c478bd9Sstevel@tonic-gate #include <string.h> 367c478bd9Sstevel@tonic-gate #include <stdlib.h> 377c478bd9Sstevel@tonic-gate #include <stdio.h> 387c478bd9Sstevel@tonic-gate #include <fcntl.h> 397c478bd9Sstevel@tonic-gate #include <errno.h> 403e1bd7a2Ssjelinek #include <libdiskmgt.h> 417c478bd9Sstevel@tonic-gate 427c478bd9Sstevel@tonic-gate #include "dconf.h" 437c478bd9Sstevel@tonic-gate #include "minfree.h" 447c478bd9Sstevel@tonic-gate #include "utils.h" 457c478bd9Sstevel@tonic-gate #include "swap.h" 467c478bd9Sstevel@tonic-gate 477c478bd9Sstevel@tonic-gate typedef struct dc_token { 487c478bd9Sstevel@tonic-gate const char *tok_name; 497c478bd9Sstevel@tonic-gate int (*tok_parse)(dumpconf_t *, char *); 507c478bd9Sstevel@tonic-gate int (*tok_print)(const dumpconf_t *, FILE *); 517c478bd9Sstevel@tonic-gate } dc_token_t; 527c478bd9Sstevel@tonic-gate 533e1bd7a2Ssjelinek 547c478bd9Sstevel@tonic-gate static int print_device(const dumpconf_t *, FILE *); 557c478bd9Sstevel@tonic-gate static int print_savdir(const dumpconf_t *, FILE *); 567c478bd9Sstevel@tonic-gate static int print_content(const dumpconf_t *, FILE *); 577c478bd9Sstevel@tonic-gate static int print_enable(const dumpconf_t *, FILE *); 587c478bd9Sstevel@tonic-gate 597c478bd9Sstevel@tonic-gate static const dc_token_t tokens[] = { 607c478bd9Sstevel@tonic-gate { "DUMPADM_DEVICE", dconf_str2device, print_device }, 617c478bd9Sstevel@tonic-gate { "DUMPADM_SAVDIR", dconf_str2savdir, print_savdir }, 627c478bd9Sstevel@tonic-gate { "DUMPADM_CONTENT", dconf_str2content, print_content }, 637c478bd9Sstevel@tonic-gate { "DUMPADM_ENABLE", dconf_str2enable, print_enable }, 647c478bd9Sstevel@tonic-gate { NULL, NULL, NULL } 657c478bd9Sstevel@tonic-gate }; 667c478bd9Sstevel@tonic-gate 677c478bd9Sstevel@tonic-gate static const char DC_STR_YES[] = "yes"; /* Enable on string */ 687c478bd9Sstevel@tonic-gate static const char DC_STR_NO[] = "no"; /* Enable off string */ 697c478bd9Sstevel@tonic-gate static const char DC_STR_SWAP[] = "swap"; /* Default dump device */ 707c478bd9Sstevel@tonic-gate 717c478bd9Sstevel@tonic-gate /* The pages included in the dump */ 727c478bd9Sstevel@tonic-gate static const char DC_STR_KERNEL[] = "kernel"; /* Kernel only */ 737c478bd9Sstevel@tonic-gate static const char DC_STR_CURPROC[] = "curproc"; /* Kernel + current process */ 747c478bd9Sstevel@tonic-gate static const char DC_STR_ALL[] = "all"; /* All pages */ 757c478bd9Sstevel@tonic-gate 767c478bd9Sstevel@tonic-gate /* 777c478bd9Sstevel@tonic-gate * Permissions and ownership for the configuration file: 787c478bd9Sstevel@tonic-gate */ 797c478bd9Sstevel@tonic-gate #define DC_OWNER 0 /* Uid 0 (root) */ 807c478bd9Sstevel@tonic-gate #define DC_GROUP 1 /* Gid 1 (other) */ 817c478bd9Sstevel@tonic-gate #define DC_PERM (S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH) /* Mode 0644 */ 827c478bd9Sstevel@tonic-gate 837c478bd9Sstevel@tonic-gate static void 847c478bd9Sstevel@tonic-gate dconf_init(dumpconf_t *dcp, int dcmode) 857c478bd9Sstevel@tonic-gate { 867c478bd9Sstevel@tonic-gate struct utsname ut; 877c478bd9Sstevel@tonic-gate 887c478bd9Sstevel@tonic-gate /* 897c478bd9Sstevel@tonic-gate * Default device for dumps is 'swap' (appropriate swap device), 907c478bd9Sstevel@tonic-gate * and default savecore directory is /var/crash/`uname -n`, 917c478bd9Sstevel@tonic-gate * which is compatible with pre-dumpadm behavior. 927c478bd9Sstevel@tonic-gate */ 937c478bd9Sstevel@tonic-gate (void) strcpy(dcp->dc_device, DC_STR_SWAP); 947c478bd9Sstevel@tonic-gate (void) strcpy(dcp->dc_savdir, "/var/crash"); 957c478bd9Sstevel@tonic-gate 967c478bd9Sstevel@tonic-gate if (uname(&ut) != -1) { 977c478bd9Sstevel@tonic-gate (void) strcat(dcp->dc_savdir, "/"); 987c478bd9Sstevel@tonic-gate (void) strcat(dcp->dc_savdir, ut.nodename); 997c478bd9Sstevel@tonic-gate } 1007c478bd9Sstevel@tonic-gate 1017c478bd9Sstevel@tonic-gate /* 1027c478bd9Sstevel@tonic-gate * Default is contents kernel, and savecore enabled on reboot. 1037c478bd9Sstevel@tonic-gate */ 1047c478bd9Sstevel@tonic-gate dcp->dc_cflags = DUMP_KERNEL; 1057c478bd9Sstevel@tonic-gate dcp->dc_enable = DC_ON; 1067c478bd9Sstevel@tonic-gate 1077c478bd9Sstevel@tonic-gate dcp->dc_mode = dcmode; 1087c478bd9Sstevel@tonic-gate dcp->dc_conf_fp = NULL; 1097c478bd9Sstevel@tonic-gate dcp->dc_conf_fd = -1; 1107c478bd9Sstevel@tonic-gate dcp->dc_dump_fd = -1; 111*a10acbd6Seschrock dcp->dc_readonly = B_FALSE; 1127c478bd9Sstevel@tonic-gate } 1137c478bd9Sstevel@tonic-gate 1147c478bd9Sstevel@tonic-gate int 1157c478bd9Sstevel@tonic-gate dconf_open(dumpconf_t *dcp, const char *dpath, const char *fpath, int dcmode) 1167c478bd9Sstevel@tonic-gate { 1177c478bd9Sstevel@tonic-gate char buf[BUFSIZ]; 1187c478bd9Sstevel@tonic-gate int line; 119*a10acbd6Seschrock const char *fpmode = "r+"; 1207c478bd9Sstevel@tonic-gate 1217c478bd9Sstevel@tonic-gate dconf_init(dcp, dcmode); 1227c478bd9Sstevel@tonic-gate 1237c478bd9Sstevel@tonic-gate if ((dcp->dc_dump_fd = open(dpath, O_RDWR)) == -1) { 1247c478bd9Sstevel@tonic-gate warn(gettext("failed to open %s"), dpath); 1257c478bd9Sstevel@tonic-gate return (-1); 1267c478bd9Sstevel@tonic-gate } 1277c478bd9Sstevel@tonic-gate 1287c478bd9Sstevel@tonic-gate if ((dcp->dc_conf_fd = open(fpath, O_RDWR | O_CREAT, DC_PERM)) == -1) { 129*a10acbd6Seschrock /* 130*a10acbd6Seschrock * Attempt to open the file read-only. 131*a10acbd6Seschrock */ 132*a10acbd6Seschrock if ((dcp->dc_conf_fd = open(fpath, O_RDONLY)) == -1) { 1337c478bd9Sstevel@tonic-gate warn(gettext("failed to open %s"), fpath); 1347c478bd9Sstevel@tonic-gate return (-1); 1357c478bd9Sstevel@tonic-gate } 1367c478bd9Sstevel@tonic-gate 137*a10acbd6Seschrock dcp->dc_readonly = B_TRUE; 138*a10acbd6Seschrock fpmode = "r"; 139*a10acbd6Seschrock } 140*a10acbd6Seschrock 141*a10acbd6Seschrock if ((dcp->dc_conf_fp = fdopen(dcp->dc_conf_fd, fpmode)) == NULL) { 1427c478bd9Sstevel@tonic-gate warn(gettext("failed to open stream for %s"), fpath); 1437c478bd9Sstevel@tonic-gate return (-1); 1447c478bd9Sstevel@tonic-gate } 1457c478bd9Sstevel@tonic-gate 1467c478bd9Sstevel@tonic-gate /* 1477c478bd9Sstevel@tonic-gate * If we're in override mode, the current kernel settings override the 1487c478bd9Sstevel@tonic-gate * default settings and anything invalid in the configuration file. 1497c478bd9Sstevel@tonic-gate */ 1507c478bd9Sstevel@tonic-gate if (dcmode == DC_OVERRIDE) 1517c478bd9Sstevel@tonic-gate (void) dconf_getdev(dcp); 1527c478bd9Sstevel@tonic-gate 1537c478bd9Sstevel@tonic-gate for (line = 1; fgets(buf, BUFSIZ, dcp->dc_conf_fp) != NULL; line++) { 1547c478bd9Sstevel@tonic-gate 1557c478bd9Sstevel@tonic-gate char name[BUFSIZ], value[BUFSIZ]; 1567c478bd9Sstevel@tonic-gate const dc_token_t *tokp; 1577c478bd9Sstevel@tonic-gate int len; 1587c478bd9Sstevel@tonic-gate 1597c478bd9Sstevel@tonic-gate if (buf[0] == '#' || buf[0] == '\n') 1607c478bd9Sstevel@tonic-gate continue; 1617c478bd9Sstevel@tonic-gate 1627c478bd9Sstevel@tonic-gate /* 1637c478bd9Sstevel@tonic-gate * Look for "name=value", with optional whitespace on either 1647c478bd9Sstevel@tonic-gate * side, terminated by a newline, and consuming the whole line. 1657c478bd9Sstevel@tonic-gate */ 1667c478bd9Sstevel@tonic-gate /* LINTED - unbounded string specifier */ 1677c478bd9Sstevel@tonic-gate if (sscanf(buf, " %[^=]=%s \n%n", name, value, &len) == 2 && 1687c478bd9Sstevel@tonic-gate name[0] != '\0' && value[0] != '\0' && len == strlen(buf)) { 1697c478bd9Sstevel@tonic-gate /* 1707c478bd9Sstevel@tonic-gate * Locate a matching token in the tokens[] table, 1717c478bd9Sstevel@tonic-gate * and invoke its parsing function. 1727c478bd9Sstevel@tonic-gate */ 1737c478bd9Sstevel@tonic-gate for (tokp = tokens; tokp->tok_name != NULL; tokp++) { 1747c478bd9Sstevel@tonic-gate if (strcmp(name, tokp->tok_name) == 0) { 1757c478bd9Sstevel@tonic-gate if (tokp->tok_parse(dcp, value) == -1) { 1767c478bd9Sstevel@tonic-gate warn(gettext("\"%s\", line %d: " 1777c478bd9Sstevel@tonic-gate "warning: invalid %s\n"), 1787c478bd9Sstevel@tonic-gate fpath, line, name); 1797c478bd9Sstevel@tonic-gate } 1807c478bd9Sstevel@tonic-gate break; 1817c478bd9Sstevel@tonic-gate } 1827c478bd9Sstevel@tonic-gate } 1837c478bd9Sstevel@tonic-gate 1847c478bd9Sstevel@tonic-gate /* 1857c478bd9Sstevel@tonic-gate * If we hit the end of the tokens[] table, 1867c478bd9Sstevel@tonic-gate * no matching token was found. 1877c478bd9Sstevel@tonic-gate */ 1887c478bd9Sstevel@tonic-gate if (tokp->tok_name == NULL) { 1897c478bd9Sstevel@tonic-gate warn(gettext("\"%s\", line %d: warning: " 1907c478bd9Sstevel@tonic-gate "invalid token: %s\n"), fpath, line, name); 1917c478bd9Sstevel@tonic-gate } 1927c478bd9Sstevel@tonic-gate 1937c478bd9Sstevel@tonic-gate } else { 1947c478bd9Sstevel@tonic-gate warn(gettext("\"%s\", line %d: syntax error\n"), 1957c478bd9Sstevel@tonic-gate fpath, line); 1967c478bd9Sstevel@tonic-gate } 1977c478bd9Sstevel@tonic-gate } 1987c478bd9Sstevel@tonic-gate 1997c478bd9Sstevel@tonic-gate /* 2007c478bd9Sstevel@tonic-gate * If we're not in override mode, the current kernel settings 2017c478bd9Sstevel@tonic-gate * override the settings read from the configuration file. 2027c478bd9Sstevel@tonic-gate */ 2037c478bd9Sstevel@tonic-gate if (dcmode == DC_CURRENT) 2047c478bd9Sstevel@tonic-gate return (dconf_getdev(dcp)); 2057c478bd9Sstevel@tonic-gate 2067c478bd9Sstevel@tonic-gate return (0); 2077c478bd9Sstevel@tonic-gate } 2087c478bd9Sstevel@tonic-gate 2097c478bd9Sstevel@tonic-gate int 2107c478bd9Sstevel@tonic-gate dconf_getdev(dumpconf_t *dcp) 2117c478bd9Sstevel@tonic-gate { 2127c478bd9Sstevel@tonic-gate int status = 0; 2137c478bd9Sstevel@tonic-gate 2147c478bd9Sstevel@tonic-gate if ((dcp->dc_cflags = ioctl(dcp->dc_dump_fd, DIOCGETCONF, 0)) == -1) { 2157c478bd9Sstevel@tonic-gate warn(gettext("failed to get kernel dump settings")); 2167c478bd9Sstevel@tonic-gate status = -1; 2177c478bd9Sstevel@tonic-gate } 2187c478bd9Sstevel@tonic-gate 2197c478bd9Sstevel@tonic-gate if (ioctl(dcp->dc_dump_fd, DIOCGETDEV, dcp->dc_device) == -1) { 2207c478bd9Sstevel@tonic-gate if (errno != ENODEV) { 2217c478bd9Sstevel@tonic-gate warn(gettext("failed to get dump device")); 2227c478bd9Sstevel@tonic-gate status = -1; 2237c478bd9Sstevel@tonic-gate } else 2247c478bd9Sstevel@tonic-gate dcp->dc_device[0] = '\0'; 2257c478bd9Sstevel@tonic-gate } 2267c478bd9Sstevel@tonic-gate 2277c478bd9Sstevel@tonic-gate return (status); 2287c478bd9Sstevel@tonic-gate } 2297c478bd9Sstevel@tonic-gate 2307c478bd9Sstevel@tonic-gate int 2317c478bd9Sstevel@tonic-gate dconf_close(dumpconf_t *dcp) 2327c478bd9Sstevel@tonic-gate { 2337c478bd9Sstevel@tonic-gate if (fclose(dcp->dc_conf_fp) == 0) { 2347c478bd9Sstevel@tonic-gate (void) close(dcp->dc_dump_fd); 2357c478bd9Sstevel@tonic-gate return (0); 2367c478bd9Sstevel@tonic-gate } 2377c478bd9Sstevel@tonic-gate return (-1); 2387c478bd9Sstevel@tonic-gate } 2397c478bd9Sstevel@tonic-gate 2407c478bd9Sstevel@tonic-gate int 2417c478bd9Sstevel@tonic-gate dconf_write(dumpconf_t *dcp) 2427c478bd9Sstevel@tonic-gate { 2437c478bd9Sstevel@tonic-gate const dc_token_t *tokp; 2447c478bd9Sstevel@tonic-gate 2457c478bd9Sstevel@tonic-gate if (fseeko(dcp->dc_conf_fp, (off_t)0, SEEK_SET) == -1) { 2467c478bd9Sstevel@tonic-gate warn(gettext("failed to seek config file")); 2477c478bd9Sstevel@tonic-gate return (-1); 2487c478bd9Sstevel@tonic-gate } 2497c478bd9Sstevel@tonic-gate 2507c478bd9Sstevel@tonic-gate if (ftruncate(dcp->dc_conf_fd, (off_t)0) == -1) { 2517c478bd9Sstevel@tonic-gate warn(gettext("failed to truncate config file")); 2527c478bd9Sstevel@tonic-gate return (-1); 2537c478bd9Sstevel@tonic-gate } 2547c478bd9Sstevel@tonic-gate 2557c478bd9Sstevel@tonic-gate (void) fputs("#\n# dumpadm.conf\n#\n" 2567c478bd9Sstevel@tonic-gate "# Configuration parameters for system crash dump.\n" 2577c478bd9Sstevel@tonic-gate "# Do NOT edit this file by hand -- use dumpadm(1m) instead.\n" 2587c478bd9Sstevel@tonic-gate "#\n", dcp->dc_conf_fp); 2597c478bd9Sstevel@tonic-gate 2607c478bd9Sstevel@tonic-gate for (tokp = tokens; tokp->tok_name != NULL; tokp++) { 2617c478bd9Sstevel@tonic-gate if (fprintf(dcp->dc_conf_fp, "%s=", tokp->tok_name) == -1 || 2627c478bd9Sstevel@tonic-gate tokp->tok_print(dcp, dcp->dc_conf_fp) == -1) { 2637c478bd9Sstevel@tonic-gate warn(gettext("failed to write token")); 2647c478bd9Sstevel@tonic-gate return (-1); 2657c478bd9Sstevel@tonic-gate } 2667c478bd9Sstevel@tonic-gate } 2677c478bd9Sstevel@tonic-gate 2687c478bd9Sstevel@tonic-gate if (fflush(dcp->dc_conf_fp) != 0) 2697c478bd9Sstevel@tonic-gate warn(gettext("warning: failed to flush config file")); 2707c478bd9Sstevel@tonic-gate 2717c478bd9Sstevel@tonic-gate if (fsync(dcp->dc_conf_fd) == -1) 2727c478bd9Sstevel@tonic-gate warn(gettext("warning: failed to sync config file to disk")); 2737c478bd9Sstevel@tonic-gate 2747c478bd9Sstevel@tonic-gate if (fchmod(dcp->dc_conf_fd, DC_PERM) == -1) 2757c478bd9Sstevel@tonic-gate warn(gettext("warning: failed to reset mode on config file")); 2767c478bd9Sstevel@tonic-gate 2777c478bd9Sstevel@tonic-gate if (fchown(dcp->dc_conf_fd, DC_OWNER, DC_GROUP) == -1) 2787c478bd9Sstevel@tonic-gate warn(gettext("warning: failed to reset owner on config file")); 2797c478bd9Sstevel@tonic-gate 2807c478bd9Sstevel@tonic-gate return (0); 2817c478bd9Sstevel@tonic-gate } 2827c478bd9Sstevel@tonic-gate 2837c478bd9Sstevel@tonic-gate static int 2847c478bd9Sstevel@tonic-gate open_stat64(const char *path, struct stat64 *stp) 2857c478bd9Sstevel@tonic-gate { 2867c478bd9Sstevel@tonic-gate int fd = open64(path, O_RDONLY); 2877c478bd9Sstevel@tonic-gate 2887c478bd9Sstevel@tonic-gate if (fd >= 0) { 2897c478bd9Sstevel@tonic-gate int status = fstat64(fd, stp); 2907c478bd9Sstevel@tonic-gate (void) close(fd); 2917c478bd9Sstevel@tonic-gate return (status); 2927c478bd9Sstevel@tonic-gate } 2937c478bd9Sstevel@tonic-gate 2947c478bd9Sstevel@tonic-gate return (-1); 2957c478bd9Sstevel@tonic-gate } 2967c478bd9Sstevel@tonic-gate 2977c478bd9Sstevel@tonic-gate static int 2987c478bd9Sstevel@tonic-gate dconf_swap_compare(const swapent_t *s1, const swapent_t *s2) 2997c478bd9Sstevel@tonic-gate { 3007c478bd9Sstevel@tonic-gate struct stat64 st1, st2; 3017c478bd9Sstevel@tonic-gate 3027c478bd9Sstevel@tonic-gate int prefer_s1 = -1; /* Return value to move s1 left (s1 < s2) */ 3037c478bd9Sstevel@tonic-gate int prefer_s2 = 1; /* Return value to move s2 left (s1 > s2) */ 3047c478bd9Sstevel@tonic-gate 3057c478bd9Sstevel@tonic-gate /* 3067c478bd9Sstevel@tonic-gate * First try: open and fstat each swap entry. If either system 3077c478bd9Sstevel@tonic-gate * call fails, arbitrarily prefer the other entry. 3087c478bd9Sstevel@tonic-gate */ 3097c478bd9Sstevel@tonic-gate if (open_stat64(s1->ste_path, &st1) == -1) 3107c478bd9Sstevel@tonic-gate return (prefer_s2); 3117c478bd9Sstevel@tonic-gate 3127c478bd9Sstevel@tonic-gate if (open_stat64(s2->ste_path, &st2) == -1) 3137c478bd9Sstevel@tonic-gate return (prefer_s1); 3147c478bd9Sstevel@tonic-gate 3157c478bd9Sstevel@tonic-gate /* 3167c478bd9Sstevel@tonic-gate * Second try: if both entries are block devices, or if 3177c478bd9Sstevel@tonic-gate * neither is a block device, prefer the larger. 3187c478bd9Sstevel@tonic-gate */ 3197c478bd9Sstevel@tonic-gate if (S_ISBLK(st1.st_mode) == S_ISBLK(st2.st_mode)) { 3207c478bd9Sstevel@tonic-gate if (st2.st_size > st1.st_size) 3217c478bd9Sstevel@tonic-gate return (prefer_s2); 3227c478bd9Sstevel@tonic-gate return (prefer_s1); 3237c478bd9Sstevel@tonic-gate } 3247c478bd9Sstevel@tonic-gate 3257c478bd9Sstevel@tonic-gate /* 3267c478bd9Sstevel@tonic-gate * Third try: prefer the entry that is a block device. 3277c478bd9Sstevel@tonic-gate */ 3287c478bd9Sstevel@tonic-gate if (S_ISBLK(st2.st_mode)) 3297c478bd9Sstevel@tonic-gate return (prefer_s2); 3307c478bd9Sstevel@tonic-gate return (prefer_s1); 3317c478bd9Sstevel@tonic-gate } 3327c478bd9Sstevel@tonic-gate 3337c478bd9Sstevel@tonic-gate static int 3347c478bd9Sstevel@tonic-gate dconf_dev_ioctl(dumpconf_t *dcp, int cmd) 3357c478bd9Sstevel@tonic-gate { 3367c478bd9Sstevel@tonic-gate if (ioctl(dcp->dc_dump_fd, cmd, dcp->dc_device) == 0) 3377c478bd9Sstevel@tonic-gate return (0); 3387c478bd9Sstevel@tonic-gate 3397c478bd9Sstevel@tonic-gate switch (errno) { 3407c478bd9Sstevel@tonic-gate case ENOTSUP: 3417c478bd9Sstevel@tonic-gate warn(gettext("dumps not supported on %s\n"), dcp->dc_device); 3427c478bd9Sstevel@tonic-gate break; 3437c478bd9Sstevel@tonic-gate case EBUSY: 3447c478bd9Sstevel@tonic-gate warn(gettext("device %s is already in use\n"), dcp->dc_device); 3457c478bd9Sstevel@tonic-gate break; 3467c478bd9Sstevel@tonic-gate default: 3477c478bd9Sstevel@tonic-gate /* 3487c478bd9Sstevel@tonic-gate * NOTE: The stmsboot(1M) command's boot-up script parses this 3497c478bd9Sstevel@tonic-gate * error to get the dump device name. If you change the format 3507c478bd9Sstevel@tonic-gate * of this message, make sure that stmsboot(1M) is in sync. 3517c478bd9Sstevel@tonic-gate */ 3527c478bd9Sstevel@tonic-gate warn(gettext("cannot use %s as dump device"), dcp->dc_device); 3537c478bd9Sstevel@tonic-gate } 3547c478bd9Sstevel@tonic-gate return (-1); 3557c478bd9Sstevel@tonic-gate } 3567c478bd9Sstevel@tonic-gate 3577c478bd9Sstevel@tonic-gate int 3583e1bd7a2Ssjelinek dconf_update(dumpconf_t *dcp, int checkinuse) 3597c478bd9Sstevel@tonic-gate { 3607c478bd9Sstevel@tonic-gate int oconf; 3613e1bd7a2Ssjelinek int error; 3623e1bd7a2Ssjelinek char *msg; 3633e1bd7a2Ssjelinek 3643e1bd7a2Ssjelinek error = 0; 3653e1bd7a2Ssjelinek 3663e1bd7a2Ssjelinek if (checkinuse && (dm_inuse(dcp->dc_device, &msg, DM_WHO_DUMP, 3673e1bd7a2Ssjelinek &error) || error)) { 3683e1bd7a2Ssjelinek if (error != 0) { 3693e1bd7a2Ssjelinek warn(gettext("failed to determine if %s is" 3703e1bd7a2Ssjelinek " in use"), dcp->dc_device); 3713e1bd7a2Ssjelinek } else { 3723e1bd7a2Ssjelinek warn(msg); 3733e1bd7a2Ssjelinek free(msg); 3743e1bd7a2Ssjelinek return (-1); 3753e1bd7a2Ssjelinek } 3763e1bd7a2Ssjelinek } 3777c478bd9Sstevel@tonic-gate 3787c478bd9Sstevel@tonic-gate /* 3797c478bd9Sstevel@tonic-gate * Save the existing dump configuration in case something goes wrong. 3807c478bd9Sstevel@tonic-gate */ 3817c478bd9Sstevel@tonic-gate if ((oconf = ioctl(dcp->dc_dump_fd, DIOCGETCONF, 0)) == -1) { 3827c478bd9Sstevel@tonic-gate warn(gettext("failed to get kernel dump configuration")); 3837c478bd9Sstevel@tonic-gate return (-1); 3847c478bd9Sstevel@tonic-gate } 3857c478bd9Sstevel@tonic-gate 3867c478bd9Sstevel@tonic-gate oconf &= DUMP_CONTENT; 3877c478bd9Sstevel@tonic-gate dcp->dc_cflags &= DUMP_CONTENT; 3887c478bd9Sstevel@tonic-gate 3897c478bd9Sstevel@tonic-gate if (ioctl(dcp->dc_dump_fd, DIOCSETCONF, dcp->dc_cflags) == -1) { 3907c478bd9Sstevel@tonic-gate warn(gettext("failed to update kernel dump configuration")); 3917c478bd9Sstevel@tonic-gate return (-1); 3927c478bd9Sstevel@tonic-gate } 3937c478bd9Sstevel@tonic-gate 3947c478bd9Sstevel@tonic-gate if (strcmp(dcp->dc_device, DC_STR_SWAP) == 0) { 3957c478bd9Sstevel@tonic-gate swaptbl_t *swt; 3967c478bd9Sstevel@tonic-gate int i; 3977c478bd9Sstevel@tonic-gate 3987c478bd9Sstevel@tonic-gate if ((swt = swap_list()) == NULL) 3997c478bd9Sstevel@tonic-gate goto err; 4007c478bd9Sstevel@tonic-gate 4017c478bd9Sstevel@tonic-gate if (swt->swt_n == 0) { 4027c478bd9Sstevel@tonic-gate warn(gettext("no swap devices are available\n")); 4037c478bd9Sstevel@tonic-gate free(swt); 4047c478bd9Sstevel@tonic-gate goto err; 4057c478bd9Sstevel@tonic-gate } 4067c478bd9Sstevel@tonic-gate 4077c478bd9Sstevel@tonic-gate qsort(&swt->swt_ent[0], swt->swt_n, sizeof (swapent_t), 4087c478bd9Sstevel@tonic-gate (int (*)(const void *, const void *))dconf_swap_compare); 4097c478bd9Sstevel@tonic-gate 4107c478bd9Sstevel@tonic-gate /* 4117c478bd9Sstevel@tonic-gate * Iterate through the prioritized list of swap entries, 4127c478bd9Sstevel@tonic-gate * trying to configure one as the dump device. 4137c478bd9Sstevel@tonic-gate */ 4147c478bd9Sstevel@tonic-gate for (i = 0; i < swt->swt_n; i++) { 4157c478bd9Sstevel@tonic-gate if (ioctl(dcp->dc_dump_fd, DIOCSETDEV, 4167c478bd9Sstevel@tonic-gate swt->swt_ent[i].ste_path) == 0) { 4177c478bd9Sstevel@tonic-gate (void) strcpy(dcp->dc_device, 4187c478bd9Sstevel@tonic-gate swt->swt_ent[i].ste_path); 4197c478bd9Sstevel@tonic-gate break; 4207c478bd9Sstevel@tonic-gate } 4217c478bd9Sstevel@tonic-gate } 4227c478bd9Sstevel@tonic-gate 4237c478bd9Sstevel@tonic-gate if (i == swt->swt_n) { 4247c478bd9Sstevel@tonic-gate warn(gettext("no swap devices could be configured " 4257c478bd9Sstevel@tonic-gate "as the dump device\n")); 4267c478bd9Sstevel@tonic-gate free(swt); 4277c478bd9Sstevel@tonic-gate goto err; 4287c478bd9Sstevel@tonic-gate } 4297c478bd9Sstevel@tonic-gate free(swt); 4307c478bd9Sstevel@tonic-gate 4317c478bd9Sstevel@tonic-gate } else if (dcp->dc_device[0] != '\0') { 4327c478bd9Sstevel@tonic-gate /* 4337c478bd9Sstevel@tonic-gate * If we're not in forcible update mode, then fail the change 4347c478bd9Sstevel@tonic-gate * if the selected device cannot be used as the dump device, 4357c478bd9Sstevel@tonic-gate * or if it is not big enough to hold the dump. 4367c478bd9Sstevel@tonic-gate */ 4377c478bd9Sstevel@tonic-gate if (dcp->dc_mode == DC_CURRENT) { 4387c478bd9Sstevel@tonic-gate struct stat64 st; 4397c478bd9Sstevel@tonic-gate uint64_t d; 4407c478bd9Sstevel@tonic-gate 4417c478bd9Sstevel@tonic-gate if (dconf_dev_ioctl(dcp, DIOCTRYDEV) == -1) 4427c478bd9Sstevel@tonic-gate goto err; 4437c478bd9Sstevel@tonic-gate 4447c478bd9Sstevel@tonic-gate if (open_stat64(dcp->dc_device, &st) == -1) { 4457c478bd9Sstevel@tonic-gate warn(gettext("failed to access %s"), 4467c478bd9Sstevel@tonic-gate dcp->dc_device); 4477c478bd9Sstevel@tonic-gate goto err; 4487c478bd9Sstevel@tonic-gate } 4497c478bd9Sstevel@tonic-gate 4507c478bd9Sstevel@tonic-gate if (ioctl(dcp->dc_dump_fd, DIOCGETDUMPSIZE, &d) == -1) { 4517c478bd9Sstevel@tonic-gate warn(gettext("failed to get kernel dump size")); 4527c478bd9Sstevel@tonic-gate goto err; 4537c478bd9Sstevel@tonic-gate } 4547c478bd9Sstevel@tonic-gate 4557c478bd9Sstevel@tonic-gate if (st.st_size < d) { 4567c478bd9Sstevel@tonic-gate warn(gettext("dump device %s is too small to " 4577c478bd9Sstevel@tonic-gate "hold a system dump\ndump size %llu " 4587c478bd9Sstevel@tonic-gate "bytes, device size %lld bytes\n"), 4597c478bd9Sstevel@tonic-gate dcp->dc_device, d, st.st_size); 4607c478bd9Sstevel@tonic-gate goto err; 4617c478bd9Sstevel@tonic-gate } 4627c478bd9Sstevel@tonic-gate } 4637c478bd9Sstevel@tonic-gate 4647c478bd9Sstevel@tonic-gate if (dconf_dev_ioctl(dcp, DIOCSETDEV) == -1) 4657c478bd9Sstevel@tonic-gate goto err; 4667c478bd9Sstevel@tonic-gate } 4677c478bd9Sstevel@tonic-gate 4687c478bd9Sstevel@tonic-gate /* 4697c478bd9Sstevel@tonic-gate * Now that we've updated the dump device, we need to issue another 4707c478bd9Sstevel@tonic-gate * ioctl to re-read the config flags to determine whether we 4717c478bd9Sstevel@tonic-gate * obtained DUMP_EXCL access on our dump device. 4727c478bd9Sstevel@tonic-gate */ 4737c478bd9Sstevel@tonic-gate if ((dcp->dc_cflags = ioctl(dcp->dc_dump_fd, DIOCGETCONF, 0)) == -1) { 4747c478bd9Sstevel@tonic-gate warn(gettext("failed to re-read kernel dump configuration")); 4757c478bd9Sstevel@tonic-gate return (-1); 4767c478bd9Sstevel@tonic-gate } 4777c478bd9Sstevel@tonic-gate 4787c478bd9Sstevel@tonic-gate return (0); 4797c478bd9Sstevel@tonic-gate 4807c478bd9Sstevel@tonic-gate err: 4817c478bd9Sstevel@tonic-gate (void) ioctl(dcp->dc_dump_fd, DIOCSETCONF, oconf); 4827c478bd9Sstevel@tonic-gate return (-1); 4837c478bd9Sstevel@tonic-gate } 4847c478bd9Sstevel@tonic-gate 4857c478bd9Sstevel@tonic-gate void 4867c478bd9Sstevel@tonic-gate dconf_print(dumpconf_t *dcp, FILE *fp) 4877c478bd9Sstevel@tonic-gate { 4887c478bd9Sstevel@tonic-gate u_longlong_t min; 4897c478bd9Sstevel@tonic-gate char *content; 4907c478bd9Sstevel@tonic-gate 4917c478bd9Sstevel@tonic-gate if (dcp->dc_cflags & DUMP_ALL) 4927c478bd9Sstevel@tonic-gate content = gettext("all"); 4937c478bd9Sstevel@tonic-gate else if (dcp->dc_cflags & DUMP_CURPROC) 4947c478bd9Sstevel@tonic-gate content = gettext("kernel and current process"); 4957c478bd9Sstevel@tonic-gate else 4967c478bd9Sstevel@tonic-gate content = gettext("kernel"); 4977c478bd9Sstevel@tonic-gate 4987c478bd9Sstevel@tonic-gate (void) fprintf(fp, gettext(" Dump content: %s pages\n"), content); 4997c478bd9Sstevel@tonic-gate 5007c478bd9Sstevel@tonic-gate if (dcp->dc_device[0] != '\0') { 5017c478bd9Sstevel@tonic-gate (void) fprintf(fp, gettext(" Dump device: %s (%s)\n"), 5027c478bd9Sstevel@tonic-gate dcp->dc_device, (dcp->dc_cflags & DUMP_EXCL) ? 5037c478bd9Sstevel@tonic-gate gettext("dedicated") : gettext("swap")); 5047c478bd9Sstevel@tonic-gate } else { 5057c478bd9Sstevel@tonic-gate (void) fprintf(fp, gettext(" Dump device: none " 5067c478bd9Sstevel@tonic-gate "(dumps disabled)\n")); 5077c478bd9Sstevel@tonic-gate } 5087c478bd9Sstevel@tonic-gate 5097c478bd9Sstevel@tonic-gate (void) fprintf(fp, gettext("Savecore directory: %s"), dcp->dc_savdir); 5107c478bd9Sstevel@tonic-gate 5117c478bd9Sstevel@tonic-gate if (minfree_read(dcp->dc_savdir, &min) == 0) { 5127c478bd9Sstevel@tonic-gate if (min < 1024 || (min % 1024) != 0) 5137c478bd9Sstevel@tonic-gate (void) fprintf(fp, gettext(" (minfree = %lluKB)"), min); 5147c478bd9Sstevel@tonic-gate else 5157c478bd9Sstevel@tonic-gate (void) fprintf(fp, gettext(" (minfree = %lluMB)"), 5167c478bd9Sstevel@tonic-gate min / 1024); 5177c478bd9Sstevel@tonic-gate } 5187c478bd9Sstevel@tonic-gate 5197c478bd9Sstevel@tonic-gate (void) fprintf(fp, gettext("\n")); 5207c478bd9Sstevel@tonic-gate 5217c478bd9Sstevel@tonic-gate (void) fprintf(fp, gettext(" Savecore enabled: %s\n"), 5227c478bd9Sstevel@tonic-gate (dcp->dc_enable == DC_OFF) ? gettext("no") : gettext("yes")); 5237c478bd9Sstevel@tonic-gate } 5247c478bd9Sstevel@tonic-gate 5257c478bd9Sstevel@tonic-gate int 5267c478bd9Sstevel@tonic-gate dconf_str2device(dumpconf_t *dcp, char *buf) 5277c478bd9Sstevel@tonic-gate { 5287c478bd9Sstevel@tonic-gate if (strcasecmp(buf, DC_STR_SWAP) == 0) { 5297c478bd9Sstevel@tonic-gate (void) strcpy(dcp->dc_device, DC_STR_SWAP); 5307c478bd9Sstevel@tonic-gate return (0); 5317c478bd9Sstevel@tonic-gate } 5327c478bd9Sstevel@tonic-gate 5337c478bd9Sstevel@tonic-gate if (valid_abspath(buf)) { 5347c478bd9Sstevel@tonic-gate (void) strcpy(dcp->dc_device, buf); 5357c478bd9Sstevel@tonic-gate return (0); 5367c478bd9Sstevel@tonic-gate } 5377c478bd9Sstevel@tonic-gate 5387c478bd9Sstevel@tonic-gate return (-1); 5397c478bd9Sstevel@tonic-gate } 5407c478bd9Sstevel@tonic-gate 5417c478bd9Sstevel@tonic-gate int 5427c478bd9Sstevel@tonic-gate dconf_str2savdir(dumpconf_t *dcp, char *buf) 5437c478bd9Sstevel@tonic-gate { 5447c478bd9Sstevel@tonic-gate if (valid_abspath(buf)) { 5457c478bd9Sstevel@tonic-gate (void) strcpy(dcp->dc_savdir, buf); 5467c478bd9Sstevel@tonic-gate return (0); 5477c478bd9Sstevel@tonic-gate } 5487c478bd9Sstevel@tonic-gate 5497c478bd9Sstevel@tonic-gate return (-1); 5507c478bd9Sstevel@tonic-gate } 5517c478bd9Sstevel@tonic-gate 5527c478bd9Sstevel@tonic-gate int 5537c478bd9Sstevel@tonic-gate dconf_str2content(dumpconf_t *dcp, char *buf) 5547c478bd9Sstevel@tonic-gate { 5557c478bd9Sstevel@tonic-gate if (strcasecmp(buf, DC_STR_KERNEL) == 0) { 5567c478bd9Sstevel@tonic-gate dcp->dc_cflags = (dcp->dc_cflags & ~DUMP_CONTENT) | DUMP_KERNEL; 5577c478bd9Sstevel@tonic-gate return (0); 5587c478bd9Sstevel@tonic-gate } 5597c478bd9Sstevel@tonic-gate 5607c478bd9Sstevel@tonic-gate if (strcasecmp(buf, DC_STR_CURPROC) == 0) { 5617c478bd9Sstevel@tonic-gate dcp->dc_cflags = (dcp->dc_cflags & ~DUMP_CONTENT) | 5627c478bd9Sstevel@tonic-gate DUMP_CURPROC; 5637c478bd9Sstevel@tonic-gate return (0); 5647c478bd9Sstevel@tonic-gate } 5657c478bd9Sstevel@tonic-gate 5667c478bd9Sstevel@tonic-gate if (strcasecmp(buf, DC_STR_ALL) == 0) { 5677c478bd9Sstevel@tonic-gate dcp->dc_cflags = (dcp->dc_cflags & ~DUMP_CONTENT) | DUMP_ALL; 5687c478bd9Sstevel@tonic-gate return (0); 5697c478bd9Sstevel@tonic-gate } 5707c478bd9Sstevel@tonic-gate 5717c478bd9Sstevel@tonic-gate warn(gettext("invalid dump content type -- %s\n"), buf); 5727c478bd9Sstevel@tonic-gate return (-1); 5737c478bd9Sstevel@tonic-gate } 5747c478bd9Sstevel@tonic-gate 5757c478bd9Sstevel@tonic-gate int 5767c478bd9Sstevel@tonic-gate dconf_str2enable(dumpconf_t *dcp, char *buf) 5777c478bd9Sstevel@tonic-gate { 5787c478bd9Sstevel@tonic-gate if (strcasecmp(buf, DC_STR_YES) == 0) { 5797c478bd9Sstevel@tonic-gate dcp->dc_enable = DC_ON; 5807c478bd9Sstevel@tonic-gate return (0); 5817c478bd9Sstevel@tonic-gate } 5827c478bd9Sstevel@tonic-gate 5837c478bd9Sstevel@tonic-gate if (strcasecmp(buf, DC_STR_NO) == 0) { 5847c478bd9Sstevel@tonic-gate dcp->dc_enable = DC_OFF; 5857c478bd9Sstevel@tonic-gate return (0); 5867c478bd9Sstevel@tonic-gate } 5877c478bd9Sstevel@tonic-gate 5887c478bd9Sstevel@tonic-gate warn(gettext("invalid enable value -- %s\n"), buf); 5897c478bd9Sstevel@tonic-gate return (-1); 5907c478bd9Sstevel@tonic-gate } 5917c478bd9Sstevel@tonic-gate 5927c478bd9Sstevel@tonic-gate static int 5937c478bd9Sstevel@tonic-gate print_content(const dumpconf_t *dcp, FILE *fp) 5947c478bd9Sstevel@tonic-gate { 5957c478bd9Sstevel@tonic-gate const char *content; 5967c478bd9Sstevel@tonic-gate 5977c478bd9Sstevel@tonic-gate if (dcp->dc_cflags & DUMP_ALL) 5987c478bd9Sstevel@tonic-gate content = DC_STR_ALL; 5997c478bd9Sstevel@tonic-gate else if (dcp->dc_cflags & DUMP_CURPROC) 6007c478bd9Sstevel@tonic-gate content = DC_STR_CURPROC; 6017c478bd9Sstevel@tonic-gate else 6027c478bd9Sstevel@tonic-gate content = DC_STR_KERNEL; 6037c478bd9Sstevel@tonic-gate 6047c478bd9Sstevel@tonic-gate return (fprintf(fp, "%s\n", content)); 6057c478bd9Sstevel@tonic-gate } 6067c478bd9Sstevel@tonic-gate 6077c478bd9Sstevel@tonic-gate static int 6087c478bd9Sstevel@tonic-gate print_device(const dumpconf_t *dcp, FILE *fp) 6097c478bd9Sstevel@tonic-gate { 6107c478bd9Sstevel@tonic-gate return (fprintf(fp, "%s\n", (dcp->dc_device[0] != '\0') ? 6117c478bd9Sstevel@tonic-gate dcp->dc_device : DC_STR_SWAP)); 6127c478bd9Sstevel@tonic-gate } 6137c478bd9Sstevel@tonic-gate 6147c478bd9Sstevel@tonic-gate static int 6157c478bd9Sstevel@tonic-gate print_enable(const dumpconf_t *dcp, FILE *fp) 6167c478bd9Sstevel@tonic-gate { 6177c478bd9Sstevel@tonic-gate return (fprintf(fp, "%s\n", (dcp->dc_enable == DC_OFF) ? 6187c478bd9Sstevel@tonic-gate DC_STR_NO : DC_STR_YES)); 6197c478bd9Sstevel@tonic-gate } 6207c478bd9Sstevel@tonic-gate 6217c478bd9Sstevel@tonic-gate static int 6227c478bd9Sstevel@tonic-gate print_savdir(const dumpconf_t *dcp, FILE *fp) 6237c478bd9Sstevel@tonic-gate { 6247c478bd9Sstevel@tonic-gate return (fprintf(fp, "%s\n", dcp->dc_savdir)); 6257c478bd9Sstevel@tonic-gate } 626