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