xref: /titanic_44/usr/src/cmd/dumpadm/dconf.c (revision ca3e8d88e8c867355e441fbc914c52e7416fc537)
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
5a10acbd6Seschrock  * Common Development and Distribution License (the "License").
6a10acbd6Seschrock  * 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*ca3e8d88SDave Plauger  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
237c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
247c478bd9Sstevel@tonic-gate  */
257c478bd9Sstevel@tonic-gate 
267c478bd9Sstevel@tonic-gate #include <sys/types.h>
277c478bd9Sstevel@tonic-gate #include <sys/stat.h>
287c478bd9Sstevel@tonic-gate #include <sys/swap.h>
297c478bd9Sstevel@tonic-gate #include <sys/dumpadm.h>
307c478bd9Sstevel@tonic-gate #include <sys/utsname.h>
317c478bd9Sstevel@tonic-gate 
327c478bd9Sstevel@tonic-gate #include <unistd.h>
337c478bd9Sstevel@tonic-gate #include <string.h>
347c478bd9Sstevel@tonic-gate #include <stdlib.h>
357c478bd9Sstevel@tonic-gate #include <stdio.h>
367c478bd9Sstevel@tonic-gate #include <fcntl.h>
377c478bd9Sstevel@tonic-gate #include <errno.h>
383e1bd7a2Ssjelinek #include <libdiskmgt.h>
39e7cbe64fSgw25295 #include <libzfs.h>
407c478bd9Sstevel@tonic-gate 
417c478bd9Sstevel@tonic-gate #include "dconf.h"
427c478bd9Sstevel@tonic-gate #include "minfree.h"
437c478bd9Sstevel@tonic-gate #include "utils.h"
447c478bd9Sstevel@tonic-gate #include "swap.h"
457c478bd9Sstevel@tonic-gate 
467c478bd9Sstevel@tonic-gate typedef struct dc_token {
477c478bd9Sstevel@tonic-gate 	const char *tok_name;
487c478bd9Sstevel@tonic-gate 	int (*tok_parse)(dumpconf_t *, char *);
497c478bd9Sstevel@tonic-gate 	int (*tok_print)(const dumpconf_t *, FILE *);
507c478bd9Sstevel@tonic-gate } dc_token_t;
517c478bd9Sstevel@tonic-gate 
523e1bd7a2Ssjelinek 
537c478bd9Sstevel@tonic-gate static int print_device(const dumpconf_t *, FILE *);
547c478bd9Sstevel@tonic-gate static int print_savdir(const dumpconf_t *, FILE *);
557c478bd9Sstevel@tonic-gate static int print_content(const dumpconf_t *, FILE *);
567c478bd9Sstevel@tonic-gate static int print_enable(const dumpconf_t *, FILE *);
57*ca3e8d88SDave Plauger static int print_csave(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 },
64*ca3e8d88SDave Plauger 	{ "DUMPADM_CSAVE", dconf_str2csave, print_csave },
657c478bd9Sstevel@tonic-gate 	{ NULL, NULL, NULL }
667c478bd9Sstevel@tonic-gate };
677c478bd9Sstevel@tonic-gate 
68*ca3e8d88SDave Plauger static const char DC_STR_ON[] = "on";		/* On string */
69*ca3e8d88SDave Plauger static const char DC_STR_OFF[] = "off";		/* Off string */
707c478bd9Sstevel@tonic-gate static const char DC_STR_YES[] = "yes";		/* Enable on string */
717c478bd9Sstevel@tonic-gate static const char DC_STR_NO[] = "no";		/* Enable off string */
727c478bd9Sstevel@tonic-gate static const char DC_STR_SWAP[] = "swap";	/* Default dump device */
737c478bd9Sstevel@tonic-gate 
747c478bd9Sstevel@tonic-gate /* The pages included in the dump */
757c478bd9Sstevel@tonic-gate static const char DC_STR_KERNEL[] = "kernel";	/* Kernel only */
767c478bd9Sstevel@tonic-gate static const char DC_STR_CURPROC[] = "curproc";	/* Kernel + current process */
777c478bd9Sstevel@tonic-gate static const char DC_STR_ALL[] = "all";		/* All pages */
787c478bd9Sstevel@tonic-gate 
797c478bd9Sstevel@tonic-gate /*
807c478bd9Sstevel@tonic-gate  * Permissions and ownership for the configuration file:
817c478bd9Sstevel@tonic-gate  */
827c478bd9Sstevel@tonic-gate #define	DC_OWNER	0				/* Uid 0 (root) */
837c478bd9Sstevel@tonic-gate #define	DC_GROUP	1				/* Gid 1 (other) */
847c478bd9Sstevel@tonic-gate #define	DC_PERM	(S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH)	/* Mode 0644 */
857c478bd9Sstevel@tonic-gate 
867c478bd9Sstevel@tonic-gate static void
877c478bd9Sstevel@tonic-gate dconf_init(dumpconf_t *dcp, int dcmode)
887c478bd9Sstevel@tonic-gate {
897c478bd9Sstevel@tonic-gate 	struct utsname ut;
907c478bd9Sstevel@tonic-gate 
917c478bd9Sstevel@tonic-gate 	/*
927c478bd9Sstevel@tonic-gate 	 * Default device for dumps is 'swap' (appropriate swap device),
937c478bd9Sstevel@tonic-gate 	 * and default savecore directory is /var/crash/`uname -n`,
947c478bd9Sstevel@tonic-gate 	 * which is compatible with pre-dumpadm behavior.
957c478bd9Sstevel@tonic-gate 	 */
967c478bd9Sstevel@tonic-gate 	(void) strcpy(dcp->dc_device, DC_STR_SWAP);
977c478bd9Sstevel@tonic-gate 	(void) strcpy(dcp->dc_savdir, "/var/crash");
987c478bd9Sstevel@tonic-gate 
997c478bd9Sstevel@tonic-gate 	if (uname(&ut) != -1) {
1007c478bd9Sstevel@tonic-gate 		(void) strcat(dcp->dc_savdir, "/");
1017c478bd9Sstevel@tonic-gate 		(void) strcat(dcp->dc_savdir, ut.nodename);
1027c478bd9Sstevel@tonic-gate 	}
1037c478bd9Sstevel@tonic-gate 
1047c478bd9Sstevel@tonic-gate 	/*
105*ca3e8d88SDave Plauger 	 * Default is contents kernel, savecore enabled on reboot,
106*ca3e8d88SDave Plauger 	 * savecore saves compressed core files.
1077c478bd9Sstevel@tonic-gate 	 */
1087c478bd9Sstevel@tonic-gate 	dcp->dc_cflags = DUMP_KERNEL;
1097c478bd9Sstevel@tonic-gate 	dcp->dc_enable = DC_ON;
110*ca3e8d88SDave Plauger 	dcp->dc_csave = DC_COMPRESSED;
1117c478bd9Sstevel@tonic-gate 
1127c478bd9Sstevel@tonic-gate 	dcp->dc_mode = dcmode;
1137c478bd9Sstevel@tonic-gate 	dcp->dc_conf_fp = NULL;
1147c478bd9Sstevel@tonic-gate 	dcp->dc_conf_fd = -1;
1157c478bd9Sstevel@tonic-gate 	dcp->dc_dump_fd = -1;
116a10acbd6Seschrock 	dcp->dc_readonly = B_FALSE;
1177c478bd9Sstevel@tonic-gate }
1187c478bd9Sstevel@tonic-gate 
1197c478bd9Sstevel@tonic-gate int
1207c478bd9Sstevel@tonic-gate dconf_open(dumpconf_t *dcp, const char *dpath, const char *fpath, int dcmode)
1217c478bd9Sstevel@tonic-gate {
1227c478bd9Sstevel@tonic-gate 	char buf[BUFSIZ];
1237c478bd9Sstevel@tonic-gate 	int line;
124a10acbd6Seschrock 	const char *fpmode = "r+";
1257c478bd9Sstevel@tonic-gate 
1267c478bd9Sstevel@tonic-gate 	dconf_init(dcp, dcmode);
1277c478bd9Sstevel@tonic-gate 
1287c478bd9Sstevel@tonic-gate 	if ((dcp->dc_dump_fd = open(dpath, O_RDWR)) == -1) {
1297c478bd9Sstevel@tonic-gate 		warn(gettext("failed to open %s"), dpath);
1307c478bd9Sstevel@tonic-gate 		return (-1);
1317c478bd9Sstevel@tonic-gate 	}
1327c478bd9Sstevel@tonic-gate 
1337c478bd9Sstevel@tonic-gate 	if ((dcp->dc_conf_fd = open(fpath, O_RDWR | O_CREAT, DC_PERM)) == -1) {
134a10acbd6Seschrock 		/*
135a10acbd6Seschrock 		 * Attempt to open the file read-only.
136a10acbd6Seschrock 		 */
137a10acbd6Seschrock 		if ((dcp->dc_conf_fd = open(fpath, O_RDONLY)) == -1) {
1387c478bd9Sstevel@tonic-gate 			warn(gettext("failed to open %s"), fpath);
1397c478bd9Sstevel@tonic-gate 			return (-1);
1407c478bd9Sstevel@tonic-gate 		}
1417c478bd9Sstevel@tonic-gate 
142a10acbd6Seschrock 		dcp->dc_readonly = B_TRUE;
143a10acbd6Seschrock 		fpmode = "r";
144a10acbd6Seschrock 	}
145a10acbd6Seschrock 
146a10acbd6Seschrock 	if ((dcp->dc_conf_fp = fdopen(dcp->dc_conf_fd, fpmode)) == NULL) {
1477c478bd9Sstevel@tonic-gate 		warn(gettext("failed to open stream for %s"), fpath);
1487c478bd9Sstevel@tonic-gate 		return (-1);
1497c478bd9Sstevel@tonic-gate 	}
1507c478bd9Sstevel@tonic-gate 
1517c478bd9Sstevel@tonic-gate 	/*
1527c478bd9Sstevel@tonic-gate 	 * If we're in override mode, the current kernel settings override the
1537c478bd9Sstevel@tonic-gate 	 * default settings and anything invalid in the configuration file.
1547c478bd9Sstevel@tonic-gate 	 */
1557c478bd9Sstevel@tonic-gate 	if (dcmode == DC_OVERRIDE)
1567c478bd9Sstevel@tonic-gate 		(void) dconf_getdev(dcp);
1577c478bd9Sstevel@tonic-gate 
1587c478bd9Sstevel@tonic-gate 	for (line = 1; fgets(buf, BUFSIZ, dcp->dc_conf_fp) != NULL; line++) {
1597c478bd9Sstevel@tonic-gate 
1607c478bd9Sstevel@tonic-gate 		char name[BUFSIZ], value[BUFSIZ];
1617c478bd9Sstevel@tonic-gate 		const dc_token_t *tokp;
1627c478bd9Sstevel@tonic-gate 		int len;
1637c478bd9Sstevel@tonic-gate 
1647c478bd9Sstevel@tonic-gate 		if (buf[0] == '#' || buf[0] == '\n')
1657c478bd9Sstevel@tonic-gate 			continue;
1667c478bd9Sstevel@tonic-gate 
1677c478bd9Sstevel@tonic-gate 		/*
1687c478bd9Sstevel@tonic-gate 		 * Look for "name=value", with optional whitespace on either
1697c478bd9Sstevel@tonic-gate 		 * side, terminated by a newline, and consuming the whole line.
1707c478bd9Sstevel@tonic-gate 		 */
1717c478bd9Sstevel@tonic-gate 		/* LINTED - unbounded string specifier */
1727c478bd9Sstevel@tonic-gate 		if (sscanf(buf, " %[^=]=%s \n%n", name, value, &len) == 2 &&
1737c478bd9Sstevel@tonic-gate 		    name[0] != '\0' && value[0] != '\0' && len == strlen(buf)) {
1747c478bd9Sstevel@tonic-gate 			/*
1757c478bd9Sstevel@tonic-gate 			 * Locate a matching token in the tokens[] table,
1767c478bd9Sstevel@tonic-gate 			 * and invoke its parsing function.
1777c478bd9Sstevel@tonic-gate 			 */
1787c478bd9Sstevel@tonic-gate 			for (tokp = tokens; tokp->tok_name != NULL; tokp++) {
1797c478bd9Sstevel@tonic-gate 				if (strcmp(name, tokp->tok_name) == 0) {
1807c478bd9Sstevel@tonic-gate 					if (tokp->tok_parse(dcp, value) == -1) {
1817c478bd9Sstevel@tonic-gate 						warn(gettext("\"%s\", line %d: "
1827c478bd9Sstevel@tonic-gate 						    "warning: invalid %s\n"),
1837c478bd9Sstevel@tonic-gate 						    fpath, line, name);
1847c478bd9Sstevel@tonic-gate 					}
1857c478bd9Sstevel@tonic-gate 					break;
1867c478bd9Sstevel@tonic-gate 				}
1877c478bd9Sstevel@tonic-gate 			}
1887c478bd9Sstevel@tonic-gate 
1897c478bd9Sstevel@tonic-gate 			/*
1907c478bd9Sstevel@tonic-gate 			 * If we hit the end of the tokens[] table,
1917c478bd9Sstevel@tonic-gate 			 * no matching token was found.
1927c478bd9Sstevel@tonic-gate 			 */
1937c478bd9Sstevel@tonic-gate 			if (tokp->tok_name == NULL) {
1947c478bd9Sstevel@tonic-gate 				warn(gettext("\"%s\", line %d: warning: "
1957c478bd9Sstevel@tonic-gate 				    "invalid token: %s\n"), fpath, line, name);
1967c478bd9Sstevel@tonic-gate 			}
1977c478bd9Sstevel@tonic-gate 
1987c478bd9Sstevel@tonic-gate 		} else {
1997c478bd9Sstevel@tonic-gate 			warn(gettext("\"%s\", line %d: syntax error\n"),
2007c478bd9Sstevel@tonic-gate 			    fpath, line);
2017c478bd9Sstevel@tonic-gate 		}
2027c478bd9Sstevel@tonic-gate 	}
2037c478bd9Sstevel@tonic-gate 
2047c478bd9Sstevel@tonic-gate 	/*
2057c478bd9Sstevel@tonic-gate 	 * If we're not in override mode, the current kernel settings
2067c478bd9Sstevel@tonic-gate 	 * override the settings read from the configuration file.
2077c478bd9Sstevel@tonic-gate 	 */
2087c478bd9Sstevel@tonic-gate 	if (dcmode == DC_CURRENT)
2097c478bd9Sstevel@tonic-gate 		return (dconf_getdev(dcp));
2107c478bd9Sstevel@tonic-gate 
2117c478bd9Sstevel@tonic-gate 	return (0);
2127c478bd9Sstevel@tonic-gate }
2137c478bd9Sstevel@tonic-gate 
2147c478bd9Sstevel@tonic-gate int
2157c478bd9Sstevel@tonic-gate dconf_getdev(dumpconf_t *dcp)
2167c478bd9Sstevel@tonic-gate {
2177c478bd9Sstevel@tonic-gate 	int status = 0;
2187c478bd9Sstevel@tonic-gate 
2197c478bd9Sstevel@tonic-gate 	if ((dcp->dc_cflags = ioctl(dcp->dc_dump_fd, DIOCGETCONF, 0)) == -1) {
2207c478bd9Sstevel@tonic-gate 		warn(gettext("failed to get kernel dump settings"));
2217c478bd9Sstevel@tonic-gate 		status = -1;
2227c478bd9Sstevel@tonic-gate 	}
2237c478bd9Sstevel@tonic-gate 
2247c478bd9Sstevel@tonic-gate 	if (ioctl(dcp->dc_dump_fd, DIOCGETDEV, dcp->dc_device) == -1) {
2257c478bd9Sstevel@tonic-gate 		if (errno != ENODEV) {
2267c478bd9Sstevel@tonic-gate 			warn(gettext("failed to get dump device"));
2277c478bd9Sstevel@tonic-gate 			status = -1;
2287c478bd9Sstevel@tonic-gate 		} else
2297c478bd9Sstevel@tonic-gate 			dcp->dc_device[0] = '\0';
2307c478bd9Sstevel@tonic-gate 	}
2317c478bd9Sstevel@tonic-gate 
2327c478bd9Sstevel@tonic-gate 	return (status);
2337c478bd9Sstevel@tonic-gate }
2347c478bd9Sstevel@tonic-gate 
2357c478bd9Sstevel@tonic-gate int
2367c478bd9Sstevel@tonic-gate dconf_close(dumpconf_t *dcp)
2377c478bd9Sstevel@tonic-gate {
2387c478bd9Sstevel@tonic-gate 	if (fclose(dcp->dc_conf_fp) == 0) {
2397c478bd9Sstevel@tonic-gate 		(void) close(dcp->dc_dump_fd);
2407c478bd9Sstevel@tonic-gate 		return (0);
2417c478bd9Sstevel@tonic-gate 	}
2427c478bd9Sstevel@tonic-gate 	return (-1);
2437c478bd9Sstevel@tonic-gate }
2447c478bd9Sstevel@tonic-gate 
2457c478bd9Sstevel@tonic-gate int
2467c478bd9Sstevel@tonic-gate dconf_write(dumpconf_t *dcp)
2477c478bd9Sstevel@tonic-gate {
2487c478bd9Sstevel@tonic-gate 	const dc_token_t *tokp;
2497c478bd9Sstevel@tonic-gate 
2507c478bd9Sstevel@tonic-gate 	if (fseeko(dcp->dc_conf_fp, (off_t)0, SEEK_SET) == -1) {
2517c478bd9Sstevel@tonic-gate 		warn(gettext("failed to seek config file"));
2527c478bd9Sstevel@tonic-gate 		return (-1);
2537c478bd9Sstevel@tonic-gate 	}
2547c478bd9Sstevel@tonic-gate 
2557c478bd9Sstevel@tonic-gate 	if (ftruncate(dcp->dc_conf_fd, (off_t)0) == -1) {
2567c478bd9Sstevel@tonic-gate 		warn(gettext("failed to truncate config file"));
2577c478bd9Sstevel@tonic-gate 		return (-1);
2587c478bd9Sstevel@tonic-gate 	}
2597c478bd9Sstevel@tonic-gate 
2607c478bd9Sstevel@tonic-gate 	(void) fputs("#\n# dumpadm.conf\n#\n"
2617c478bd9Sstevel@tonic-gate 	    "# Configuration parameters for system crash dump.\n"
2627c478bd9Sstevel@tonic-gate 	    "# Do NOT edit this file by hand -- use dumpadm(1m) instead.\n"
2637c478bd9Sstevel@tonic-gate 	    "#\n", dcp->dc_conf_fp);
2647c478bd9Sstevel@tonic-gate 
2657c478bd9Sstevel@tonic-gate 	for (tokp = tokens; tokp->tok_name != NULL; tokp++) {
2667c478bd9Sstevel@tonic-gate 		if (fprintf(dcp->dc_conf_fp, "%s=", tokp->tok_name) == -1 ||
2677c478bd9Sstevel@tonic-gate 		    tokp->tok_print(dcp, dcp->dc_conf_fp) == -1) {
2687c478bd9Sstevel@tonic-gate 			warn(gettext("failed to write token"));
2697c478bd9Sstevel@tonic-gate 			return (-1);
2707c478bd9Sstevel@tonic-gate 		}
2717c478bd9Sstevel@tonic-gate 	}
2727c478bd9Sstevel@tonic-gate 
2737c478bd9Sstevel@tonic-gate 	if (fflush(dcp->dc_conf_fp) != 0)
2747c478bd9Sstevel@tonic-gate 		warn(gettext("warning: failed to flush config file"));
2757c478bd9Sstevel@tonic-gate 
2767c478bd9Sstevel@tonic-gate 	if (fsync(dcp->dc_conf_fd) == -1)
2777c478bd9Sstevel@tonic-gate 		warn(gettext("warning: failed to sync config file to disk"));
2787c478bd9Sstevel@tonic-gate 
2797c478bd9Sstevel@tonic-gate 	if (fchmod(dcp->dc_conf_fd, DC_PERM) == -1)
2807c478bd9Sstevel@tonic-gate 		warn(gettext("warning: failed to reset mode on config file"));
2817c478bd9Sstevel@tonic-gate 
2827c478bd9Sstevel@tonic-gate 	if (fchown(dcp->dc_conf_fd, DC_OWNER, DC_GROUP) == -1)
2837c478bd9Sstevel@tonic-gate 		warn(gettext("warning: failed to reset owner on config file"));
2847c478bd9Sstevel@tonic-gate 
2857c478bd9Sstevel@tonic-gate 	return (0);
2867c478bd9Sstevel@tonic-gate }
2877c478bd9Sstevel@tonic-gate 
2887c478bd9Sstevel@tonic-gate static int
2897c478bd9Sstevel@tonic-gate open_stat64(const char *path, struct stat64 *stp)
2907c478bd9Sstevel@tonic-gate {
2917c478bd9Sstevel@tonic-gate 	int fd = open64(path, O_RDONLY);
2927c478bd9Sstevel@tonic-gate 
2937c478bd9Sstevel@tonic-gate 	if (fd >= 0) {
2947c478bd9Sstevel@tonic-gate 		int status = fstat64(fd, stp);
2957c478bd9Sstevel@tonic-gate 		(void) close(fd);
2967c478bd9Sstevel@tonic-gate 		return (status);
2977c478bd9Sstevel@tonic-gate 	}
2987c478bd9Sstevel@tonic-gate 
2997c478bd9Sstevel@tonic-gate 	return (-1);
3007c478bd9Sstevel@tonic-gate }
3017c478bd9Sstevel@tonic-gate 
3027c478bd9Sstevel@tonic-gate static int
3037c478bd9Sstevel@tonic-gate dconf_swap_compare(const swapent_t *s1, const swapent_t *s2)
3047c478bd9Sstevel@tonic-gate {
3057c478bd9Sstevel@tonic-gate 	struct stat64 st1, st2;
3067c478bd9Sstevel@tonic-gate 
3077c478bd9Sstevel@tonic-gate 	int prefer_s1 = -1;	/* Return value to move s1 left (s1 < s2) */
3087c478bd9Sstevel@tonic-gate 	int prefer_s2 = 1;	/* Return value to move s2 left (s1 > s2) */
3097c478bd9Sstevel@tonic-gate 
3107c478bd9Sstevel@tonic-gate 	/*
3117c478bd9Sstevel@tonic-gate 	 * First try: open and fstat each swap entry.  If either system
3127c478bd9Sstevel@tonic-gate 	 * call fails, arbitrarily prefer the other entry.
3137c478bd9Sstevel@tonic-gate 	 */
3147c478bd9Sstevel@tonic-gate 	if (open_stat64(s1->ste_path, &st1) == -1)
3157c478bd9Sstevel@tonic-gate 		return (prefer_s2);
3167c478bd9Sstevel@tonic-gate 
3177c478bd9Sstevel@tonic-gate 	if (open_stat64(s2->ste_path, &st2) == -1)
3187c478bd9Sstevel@tonic-gate 		return (prefer_s1);
3197c478bd9Sstevel@tonic-gate 
3207c478bd9Sstevel@tonic-gate 	/*
3217c478bd9Sstevel@tonic-gate 	 * Second try: if both entries are block devices, or if
3227c478bd9Sstevel@tonic-gate 	 * neither is a block device, prefer the larger.
3237c478bd9Sstevel@tonic-gate 	 */
3247c478bd9Sstevel@tonic-gate 	if (S_ISBLK(st1.st_mode) == S_ISBLK(st2.st_mode)) {
3257c478bd9Sstevel@tonic-gate 		if (st2.st_size > st1.st_size)
3267c478bd9Sstevel@tonic-gate 			return (prefer_s2);
3277c478bd9Sstevel@tonic-gate 		return (prefer_s1);
3287c478bd9Sstevel@tonic-gate 	}
3297c478bd9Sstevel@tonic-gate 
3307c478bd9Sstevel@tonic-gate 	/*
3317c478bd9Sstevel@tonic-gate 	 * Third try: prefer the entry that is a block device.
3327c478bd9Sstevel@tonic-gate 	 */
3337c478bd9Sstevel@tonic-gate 	if (S_ISBLK(st2.st_mode))
3347c478bd9Sstevel@tonic-gate 		return (prefer_s2);
3357c478bd9Sstevel@tonic-gate 	return (prefer_s1);
3367c478bd9Sstevel@tonic-gate }
3377c478bd9Sstevel@tonic-gate 
3387c478bd9Sstevel@tonic-gate static int
3397c478bd9Sstevel@tonic-gate dconf_dev_ioctl(dumpconf_t *dcp, int cmd)
3407c478bd9Sstevel@tonic-gate {
3417c478bd9Sstevel@tonic-gate 	if (ioctl(dcp->dc_dump_fd, cmd, dcp->dc_device) == 0)
3427c478bd9Sstevel@tonic-gate 		return (0);
3437c478bd9Sstevel@tonic-gate 
3447c478bd9Sstevel@tonic-gate 	switch (errno) {
3457c478bd9Sstevel@tonic-gate 	case ENOTSUP:
3467c478bd9Sstevel@tonic-gate 		warn(gettext("dumps not supported on %s\n"), dcp->dc_device);
3477c478bd9Sstevel@tonic-gate 		break;
3487c478bd9Sstevel@tonic-gate 	case EBUSY:
3497c478bd9Sstevel@tonic-gate 		warn(gettext("device %s is already in use\n"), dcp->dc_device);
3507c478bd9Sstevel@tonic-gate 		break;
351e7cbe64fSgw25295 	case EBADR:
352e7cbe64fSgw25295 		/* ZFS pool is too fragmented to support a dump device */
353e7cbe64fSgw25295 		warn(gettext("device %s is too fragmented to be used as "
354e7cbe64fSgw25295 		    "a dump device\n"), dcp->dc_device);
355e7cbe64fSgw25295 		break;
3567c478bd9Sstevel@tonic-gate 	default:
3577c478bd9Sstevel@tonic-gate 		/*
3587c478bd9Sstevel@tonic-gate 		 * NOTE: The stmsboot(1M) command's boot-up script parses this
3597c478bd9Sstevel@tonic-gate 		 * error to get the dump device name. If you change the format
3607c478bd9Sstevel@tonic-gate 		 * of this message, make sure that stmsboot(1M) is in sync.
3617c478bd9Sstevel@tonic-gate 		 */
3627c478bd9Sstevel@tonic-gate 		warn(gettext("cannot use %s as dump device"), dcp->dc_device);
3637c478bd9Sstevel@tonic-gate 	}
3647c478bd9Sstevel@tonic-gate 	return (-1);
3657c478bd9Sstevel@tonic-gate }
3667c478bd9Sstevel@tonic-gate 
3677c478bd9Sstevel@tonic-gate int
3683e1bd7a2Ssjelinek dconf_update(dumpconf_t *dcp, int checkinuse)
3697c478bd9Sstevel@tonic-gate {
3707c478bd9Sstevel@tonic-gate 	int 		oconf;
3713e1bd7a2Ssjelinek 	int		error;
3723e1bd7a2Ssjelinek 	char		*msg;
3733e1bd7a2Ssjelinek 
3743e1bd7a2Ssjelinek 	error = 0;
3753e1bd7a2Ssjelinek 
3763e1bd7a2Ssjelinek 	if (checkinuse && (dm_inuse(dcp->dc_device, &msg, DM_WHO_DUMP,
3773e1bd7a2Ssjelinek 	    &error) || error)) {
3783e1bd7a2Ssjelinek 		if (error != 0) {
3793e1bd7a2Ssjelinek 			warn(gettext("failed to determine if %s is"
3803e1bd7a2Ssjelinek 			    " in use"), dcp->dc_device);
3813e1bd7a2Ssjelinek 		} else {
3823e1bd7a2Ssjelinek 			warn(msg);
3833e1bd7a2Ssjelinek 			free(msg);
3843e1bd7a2Ssjelinek 			return (-1);
3853e1bd7a2Ssjelinek 		}
3863e1bd7a2Ssjelinek 	}
3877c478bd9Sstevel@tonic-gate 
3887c478bd9Sstevel@tonic-gate 	/*
3897c478bd9Sstevel@tonic-gate 	 * Save the existing dump configuration in case something goes wrong.
3907c478bd9Sstevel@tonic-gate 	 */
3917c478bd9Sstevel@tonic-gate 	if ((oconf = ioctl(dcp->dc_dump_fd, DIOCGETCONF, 0)) == -1) {
3927c478bd9Sstevel@tonic-gate 		warn(gettext("failed to get kernel dump configuration"));
3937c478bd9Sstevel@tonic-gate 		return (-1);
3947c478bd9Sstevel@tonic-gate 	}
3957c478bd9Sstevel@tonic-gate 
3967c478bd9Sstevel@tonic-gate 	oconf &= DUMP_CONTENT;
3977c478bd9Sstevel@tonic-gate 	dcp->dc_cflags &= DUMP_CONTENT;
3987c478bd9Sstevel@tonic-gate 
3997c478bd9Sstevel@tonic-gate 	if (ioctl(dcp->dc_dump_fd, DIOCSETCONF, dcp->dc_cflags) == -1) {
4007c478bd9Sstevel@tonic-gate 		warn(gettext("failed to update kernel dump configuration"));
4017c478bd9Sstevel@tonic-gate 		return (-1);
4027c478bd9Sstevel@tonic-gate 	}
4037c478bd9Sstevel@tonic-gate 
4047c478bd9Sstevel@tonic-gate 	if (strcmp(dcp->dc_device, DC_STR_SWAP) == 0) {
4057c478bd9Sstevel@tonic-gate 		swaptbl_t *swt;
4067c478bd9Sstevel@tonic-gate 		int i;
4077c478bd9Sstevel@tonic-gate 
4087c478bd9Sstevel@tonic-gate 		if ((swt = swap_list()) == NULL)
4097c478bd9Sstevel@tonic-gate 			goto err;
4107c478bd9Sstevel@tonic-gate 
4117c478bd9Sstevel@tonic-gate 		if (swt->swt_n == 0) {
4127c478bd9Sstevel@tonic-gate 			warn(gettext("no swap devices are available\n"));
4137c478bd9Sstevel@tonic-gate 			free(swt);
4147c478bd9Sstevel@tonic-gate 			goto err;
4157c478bd9Sstevel@tonic-gate 		}
4167c478bd9Sstevel@tonic-gate 
4177c478bd9Sstevel@tonic-gate 		qsort(&swt->swt_ent[0], swt->swt_n, sizeof (swapent_t),
4187c478bd9Sstevel@tonic-gate 		    (int (*)(const void *, const void *))dconf_swap_compare);
4197c478bd9Sstevel@tonic-gate 
4207c478bd9Sstevel@tonic-gate 		/*
4217c478bd9Sstevel@tonic-gate 		 * Iterate through the prioritized list of swap entries,
4227c478bd9Sstevel@tonic-gate 		 * trying to configure one as the dump device.
4237c478bd9Sstevel@tonic-gate 		 */
4247c478bd9Sstevel@tonic-gate 		for (i = 0; i < swt->swt_n; i++) {
4257c478bd9Sstevel@tonic-gate 			if (ioctl(dcp->dc_dump_fd, DIOCSETDEV,
4267c478bd9Sstevel@tonic-gate 			    swt->swt_ent[i].ste_path) == 0) {
4277c478bd9Sstevel@tonic-gate 				(void) strcpy(dcp->dc_device,
4287c478bd9Sstevel@tonic-gate 				    swt->swt_ent[i].ste_path);
4297c478bd9Sstevel@tonic-gate 				break;
4307c478bd9Sstevel@tonic-gate 			}
4317c478bd9Sstevel@tonic-gate 		}
4327c478bd9Sstevel@tonic-gate 
4337c478bd9Sstevel@tonic-gate 		if (i == swt->swt_n) {
4347c478bd9Sstevel@tonic-gate 			warn(gettext("no swap devices could be configured "
4357c478bd9Sstevel@tonic-gate 			    "as the dump device\n"));
4367c478bd9Sstevel@tonic-gate 			free(swt);
4377c478bd9Sstevel@tonic-gate 			goto err;
4387c478bd9Sstevel@tonic-gate 		}
4397c478bd9Sstevel@tonic-gate 		free(swt);
4407c478bd9Sstevel@tonic-gate 
4417c478bd9Sstevel@tonic-gate 	} else if (dcp->dc_device[0] != '\0') {
4427c478bd9Sstevel@tonic-gate 		/*
4437c478bd9Sstevel@tonic-gate 		 * If we're not in forcible update mode, then fail the change
4447c478bd9Sstevel@tonic-gate 		 * if the selected device cannot be used as the dump device,
4457c478bd9Sstevel@tonic-gate 		 * or if it is not big enough to hold the dump.
4467c478bd9Sstevel@tonic-gate 		 */
4477c478bd9Sstevel@tonic-gate 		if (dcp->dc_mode == DC_CURRENT) {
4487c478bd9Sstevel@tonic-gate 			struct stat64 st;
4497c478bd9Sstevel@tonic-gate 			uint64_t d;
4507c478bd9Sstevel@tonic-gate 
4517c478bd9Sstevel@tonic-gate 			if (dconf_dev_ioctl(dcp, DIOCTRYDEV) == -1)
4527c478bd9Sstevel@tonic-gate 				goto err;
4537c478bd9Sstevel@tonic-gate 
4547c478bd9Sstevel@tonic-gate 			if (open_stat64(dcp->dc_device, &st) == -1) {
4557c478bd9Sstevel@tonic-gate 				warn(gettext("failed to access %s"),
4567c478bd9Sstevel@tonic-gate 				    dcp->dc_device);
4577c478bd9Sstevel@tonic-gate 				goto err;
4587c478bd9Sstevel@tonic-gate 			}
4597c478bd9Sstevel@tonic-gate 
460e7cbe64fSgw25295 			if ((error = zvol_check_dump_config(
461e7cbe64fSgw25295 			    dcp->dc_device)) > 0)
462e7cbe64fSgw25295 				goto err;
4637c478bd9Sstevel@tonic-gate 			if (ioctl(dcp->dc_dump_fd, DIOCGETDUMPSIZE, &d) == -1) {
4647c478bd9Sstevel@tonic-gate 				warn(gettext("failed to get kernel dump size"));
4657c478bd9Sstevel@tonic-gate 				goto err;
4667c478bd9Sstevel@tonic-gate 			}
4677c478bd9Sstevel@tonic-gate 
4687c478bd9Sstevel@tonic-gate 			if (st.st_size < d) {
4697c478bd9Sstevel@tonic-gate 				warn(gettext("dump device %s is too small to "
4707c478bd9Sstevel@tonic-gate 				    "hold a system dump\ndump size %llu "
4717c478bd9Sstevel@tonic-gate 				    "bytes, device size %lld bytes\n"),
4727c478bd9Sstevel@tonic-gate 				    dcp->dc_device, d, st.st_size);
4737c478bd9Sstevel@tonic-gate 				goto err;
4747c478bd9Sstevel@tonic-gate 			}
4757c478bd9Sstevel@tonic-gate 		}
4767c478bd9Sstevel@tonic-gate 
4777c478bd9Sstevel@tonic-gate 		if (dconf_dev_ioctl(dcp, DIOCSETDEV) == -1)
4787c478bd9Sstevel@tonic-gate 			goto err;
4797c478bd9Sstevel@tonic-gate 	}
4807c478bd9Sstevel@tonic-gate 
4817c478bd9Sstevel@tonic-gate 	/*
4827c478bd9Sstevel@tonic-gate 	 * Now that we've updated the dump device, we need to issue another
4837c478bd9Sstevel@tonic-gate 	 * ioctl to re-read the config flags to determine whether we
4847c478bd9Sstevel@tonic-gate 	 * obtained DUMP_EXCL access on our dump device.
4857c478bd9Sstevel@tonic-gate 	 */
4867c478bd9Sstevel@tonic-gate 	if ((dcp->dc_cflags = ioctl(dcp->dc_dump_fd, DIOCGETCONF, 0)) == -1) {
4877c478bd9Sstevel@tonic-gate 		warn(gettext("failed to re-read kernel dump configuration"));
4887c478bd9Sstevel@tonic-gate 		return (-1);
4897c478bd9Sstevel@tonic-gate 	}
4907c478bd9Sstevel@tonic-gate 
4917c478bd9Sstevel@tonic-gate 	return (0);
4927c478bd9Sstevel@tonic-gate 
4937c478bd9Sstevel@tonic-gate err:
4947c478bd9Sstevel@tonic-gate 	(void) ioctl(dcp->dc_dump_fd, DIOCSETCONF, oconf);
4957c478bd9Sstevel@tonic-gate 	return (-1);
4967c478bd9Sstevel@tonic-gate }
4977c478bd9Sstevel@tonic-gate 
4987c478bd9Sstevel@tonic-gate void
4997c478bd9Sstevel@tonic-gate dconf_print(dumpconf_t *dcp, FILE *fp)
5007c478bd9Sstevel@tonic-gate {
5017c478bd9Sstevel@tonic-gate 	u_longlong_t min;
5027c478bd9Sstevel@tonic-gate 	char *content;
5037c478bd9Sstevel@tonic-gate 
5047c478bd9Sstevel@tonic-gate 	if (dcp->dc_cflags & DUMP_ALL)
5057c478bd9Sstevel@tonic-gate 		content = gettext("all");
5067c478bd9Sstevel@tonic-gate 	else if (dcp->dc_cflags & DUMP_CURPROC)
5077c478bd9Sstevel@tonic-gate 		content = gettext("kernel and current process");
5087c478bd9Sstevel@tonic-gate 	else
5097c478bd9Sstevel@tonic-gate 		content = gettext("kernel");
5107c478bd9Sstevel@tonic-gate 
5117c478bd9Sstevel@tonic-gate 	(void) fprintf(fp, gettext("      Dump content: %s pages\n"), content);
5127c478bd9Sstevel@tonic-gate 
5137c478bd9Sstevel@tonic-gate 	if (dcp->dc_device[0] != '\0') {
5147c478bd9Sstevel@tonic-gate 		(void) fprintf(fp, gettext("       Dump device: %s (%s)\n"),
5157c478bd9Sstevel@tonic-gate 		    dcp->dc_device, (dcp->dc_cflags & DUMP_EXCL) ?
5167c478bd9Sstevel@tonic-gate 		    gettext("dedicated") : gettext("swap"));
5177c478bd9Sstevel@tonic-gate 	} else {
5187c478bd9Sstevel@tonic-gate 		(void) fprintf(fp, gettext("       Dump device: none "
5197c478bd9Sstevel@tonic-gate 		    "(dumps disabled)\n"));
5207c478bd9Sstevel@tonic-gate 	}
5217c478bd9Sstevel@tonic-gate 
5227c478bd9Sstevel@tonic-gate 	(void) fprintf(fp, gettext("Savecore directory: %s"), dcp->dc_savdir);
5237c478bd9Sstevel@tonic-gate 
5247c478bd9Sstevel@tonic-gate 	if (minfree_read(dcp->dc_savdir, &min) == 0) {
5257c478bd9Sstevel@tonic-gate 		if (min < 1024 || (min % 1024) != 0)
5267c478bd9Sstevel@tonic-gate 			(void) fprintf(fp, gettext(" (minfree = %lluKB)"), min);
5277c478bd9Sstevel@tonic-gate 		else
5287c478bd9Sstevel@tonic-gate 			(void) fprintf(fp, gettext(" (minfree = %lluMB)"),
5297c478bd9Sstevel@tonic-gate 			    min / 1024);
5307c478bd9Sstevel@tonic-gate 	}
5317c478bd9Sstevel@tonic-gate 
5327c478bd9Sstevel@tonic-gate 	(void) fprintf(fp, gettext("\n"));
5337c478bd9Sstevel@tonic-gate 
5347c478bd9Sstevel@tonic-gate 	(void) fprintf(fp, gettext("  Savecore enabled: %s\n"),
5357c478bd9Sstevel@tonic-gate 	    (dcp->dc_enable == DC_OFF) ? gettext("no") : gettext("yes"));
536*ca3e8d88SDave Plauger 
537*ca3e8d88SDave Plauger 	(void) fprintf(fp, gettext("   Save compressed: %s\n"),
538*ca3e8d88SDave Plauger 	    (dcp->dc_csave == DC_UNCOMPRESSED) ? gettext("off") :
539*ca3e8d88SDave Plauger 	    gettext("on"));
5407c478bd9Sstevel@tonic-gate }
5417c478bd9Sstevel@tonic-gate 
5427c478bd9Sstevel@tonic-gate int
5437c478bd9Sstevel@tonic-gate dconf_str2device(dumpconf_t *dcp, char *buf)
5447c478bd9Sstevel@tonic-gate {
5457c478bd9Sstevel@tonic-gate 	if (strcasecmp(buf, DC_STR_SWAP) == 0) {
5467c478bd9Sstevel@tonic-gate 		(void) strcpy(dcp->dc_device, DC_STR_SWAP);
5477c478bd9Sstevel@tonic-gate 		return (0);
5487c478bd9Sstevel@tonic-gate 	}
5497c478bd9Sstevel@tonic-gate 
5507c478bd9Sstevel@tonic-gate 	if (valid_abspath(buf)) {
5517c478bd9Sstevel@tonic-gate 		(void) strcpy(dcp->dc_device, buf);
5527c478bd9Sstevel@tonic-gate 		return (0);
5537c478bd9Sstevel@tonic-gate 	}
5547c478bd9Sstevel@tonic-gate 
5557c478bd9Sstevel@tonic-gate 	return (-1);
5567c478bd9Sstevel@tonic-gate }
5577c478bd9Sstevel@tonic-gate 
5587c478bd9Sstevel@tonic-gate int
5597c478bd9Sstevel@tonic-gate dconf_str2savdir(dumpconf_t *dcp, char *buf)
5607c478bd9Sstevel@tonic-gate {
5617c478bd9Sstevel@tonic-gate 	if (valid_abspath(buf)) {
5627c478bd9Sstevel@tonic-gate 		(void) strcpy(dcp->dc_savdir, buf);
5637c478bd9Sstevel@tonic-gate 		return (0);
5647c478bd9Sstevel@tonic-gate 	}
5657c478bd9Sstevel@tonic-gate 
5667c478bd9Sstevel@tonic-gate 	return (-1);
5677c478bd9Sstevel@tonic-gate }
5687c478bd9Sstevel@tonic-gate 
5697c478bd9Sstevel@tonic-gate int
5707c478bd9Sstevel@tonic-gate dconf_str2content(dumpconf_t *dcp, char *buf)
5717c478bd9Sstevel@tonic-gate {
5727c478bd9Sstevel@tonic-gate 	if (strcasecmp(buf, DC_STR_KERNEL) == 0) {
5737c478bd9Sstevel@tonic-gate 		dcp->dc_cflags = (dcp->dc_cflags & ~DUMP_CONTENT) | DUMP_KERNEL;
5747c478bd9Sstevel@tonic-gate 		return (0);
5757c478bd9Sstevel@tonic-gate 	}
5767c478bd9Sstevel@tonic-gate 
5777c478bd9Sstevel@tonic-gate 	if (strcasecmp(buf, DC_STR_CURPROC) == 0) {
5787c478bd9Sstevel@tonic-gate 		dcp->dc_cflags = (dcp->dc_cflags & ~DUMP_CONTENT) |
5797c478bd9Sstevel@tonic-gate 		    DUMP_CURPROC;
5807c478bd9Sstevel@tonic-gate 		return (0);
5817c478bd9Sstevel@tonic-gate 	}
5827c478bd9Sstevel@tonic-gate 
5837c478bd9Sstevel@tonic-gate 	if (strcasecmp(buf, DC_STR_ALL) == 0) {
5847c478bd9Sstevel@tonic-gate 		dcp->dc_cflags = (dcp->dc_cflags & ~DUMP_CONTENT) | DUMP_ALL;
5857c478bd9Sstevel@tonic-gate 		return (0);
5867c478bd9Sstevel@tonic-gate 	}
5877c478bd9Sstevel@tonic-gate 
5887c478bd9Sstevel@tonic-gate 	warn(gettext("invalid dump content type -- %s\n"), buf);
5897c478bd9Sstevel@tonic-gate 	return (-1);
5907c478bd9Sstevel@tonic-gate }
5917c478bd9Sstevel@tonic-gate 
5927c478bd9Sstevel@tonic-gate int
5937c478bd9Sstevel@tonic-gate dconf_str2enable(dumpconf_t *dcp, char *buf)
5947c478bd9Sstevel@tonic-gate {
5957c478bd9Sstevel@tonic-gate 	if (strcasecmp(buf, DC_STR_YES) == 0) {
5967c478bd9Sstevel@tonic-gate 		dcp->dc_enable = DC_ON;
5977c478bd9Sstevel@tonic-gate 		return (0);
5987c478bd9Sstevel@tonic-gate 	}
5997c478bd9Sstevel@tonic-gate 
6007c478bd9Sstevel@tonic-gate 	if (strcasecmp(buf, DC_STR_NO) == 0) {
6017c478bd9Sstevel@tonic-gate 		dcp->dc_enable = DC_OFF;
6027c478bd9Sstevel@tonic-gate 		return (0);
6037c478bd9Sstevel@tonic-gate 	}
6047c478bd9Sstevel@tonic-gate 
6057c478bd9Sstevel@tonic-gate 	warn(gettext("invalid enable value -- %s\n"), buf);
6067c478bd9Sstevel@tonic-gate 	return (-1);
6077c478bd9Sstevel@tonic-gate }
6087c478bd9Sstevel@tonic-gate 
609*ca3e8d88SDave Plauger int
610*ca3e8d88SDave Plauger dconf_str2csave(dumpconf_t *dcp, char *buf)
611*ca3e8d88SDave Plauger {
612*ca3e8d88SDave Plauger 	if (strcasecmp(buf, DC_STR_ON) == 0) {
613*ca3e8d88SDave Plauger 		dcp->dc_csave = DC_COMPRESSED;
614*ca3e8d88SDave Plauger 		return (0);
615*ca3e8d88SDave Plauger 	}
616*ca3e8d88SDave Plauger 
617*ca3e8d88SDave Plauger 	if (strcasecmp(buf, DC_STR_OFF) == 0) {
618*ca3e8d88SDave Plauger 		dcp->dc_csave = DC_UNCOMPRESSED;
619*ca3e8d88SDave Plauger 		return (0);
620*ca3e8d88SDave Plauger 	}
621*ca3e8d88SDave Plauger 
622*ca3e8d88SDave Plauger 	warn(gettext("invalid save compressed value -- %s\n"), buf);
623*ca3e8d88SDave Plauger 	return (-1);
624*ca3e8d88SDave Plauger }
625*ca3e8d88SDave Plauger 
6267c478bd9Sstevel@tonic-gate static int
6277c478bd9Sstevel@tonic-gate print_content(const dumpconf_t *dcp, FILE *fp)
6287c478bd9Sstevel@tonic-gate {
6297c478bd9Sstevel@tonic-gate 	const char *content;
6307c478bd9Sstevel@tonic-gate 
6317c478bd9Sstevel@tonic-gate 	if (dcp->dc_cflags & DUMP_ALL)
6327c478bd9Sstevel@tonic-gate 		content = DC_STR_ALL;
6337c478bd9Sstevel@tonic-gate 	else if (dcp->dc_cflags & DUMP_CURPROC)
6347c478bd9Sstevel@tonic-gate 		content = DC_STR_CURPROC;
6357c478bd9Sstevel@tonic-gate 	else
6367c478bd9Sstevel@tonic-gate 		content = DC_STR_KERNEL;
6377c478bd9Sstevel@tonic-gate 
6387c478bd9Sstevel@tonic-gate 	return (fprintf(fp, "%s\n", content));
6397c478bd9Sstevel@tonic-gate }
6407c478bd9Sstevel@tonic-gate 
6417c478bd9Sstevel@tonic-gate static int
6427c478bd9Sstevel@tonic-gate print_device(const dumpconf_t *dcp, FILE *fp)
6437c478bd9Sstevel@tonic-gate {
6447c478bd9Sstevel@tonic-gate 	return (fprintf(fp, "%s\n", (dcp->dc_device[0] != '\0') ?
6457c478bd9Sstevel@tonic-gate 	    dcp->dc_device : DC_STR_SWAP));
6467c478bd9Sstevel@tonic-gate }
6477c478bd9Sstevel@tonic-gate 
6487c478bd9Sstevel@tonic-gate static int
6497c478bd9Sstevel@tonic-gate print_enable(const dumpconf_t *dcp, FILE *fp)
6507c478bd9Sstevel@tonic-gate {
6517c478bd9Sstevel@tonic-gate 	return (fprintf(fp, "%s\n", (dcp->dc_enable == DC_OFF) ?
6527c478bd9Sstevel@tonic-gate 	    DC_STR_NO : DC_STR_YES));
6537c478bd9Sstevel@tonic-gate }
6547c478bd9Sstevel@tonic-gate 
6557c478bd9Sstevel@tonic-gate static int
656*ca3e8d88SDave Plauger print_csave(const dumpconf_t *dcp, FILE *fp)
657*ca3e8d88SDave Plauger {
658*ca3e8d88SDave Plauger 	return (fprintf(fp, "%s\n", (dcp->dc_csave == DC_COMPRESSED) ?
659*ca3e8d88SDave Plauger 	    DC_STR_ON : DC_STR_OFF));
660*ca3e8d88SDave Plauger }
661*ca3e8d88SDave Plauger 
662*ca3e8d88SDave Plauger static int
6637c478bd9Sstevel@tonic-gate print_savdir(const dumpconf_t *dcp, FILE *fp)
6647c478bd9Sstevel@tonic-gate {
6657c478bd9Sstevel@tonic-gate 	return (fprintf(fp, "%s\n", dcp->dc_savdir));
6667c478bd9Sstevel@tonic-gate }
667