xref: /illumos-gate/usr/src/lib/libshare/nfs/libshare_nfs.c (revision d6405362ba1b3cbe5a0a718a7039e0f3de1f27a7)
1549ec3ffSdougm /*
2549ec3ffSdougm  * CDDL HEADER START
3549ec3ffSdougm  *
4549ec3ffSdougm  * The contents of this file are subject to the terms of the
5549ec3ffSdougm  * Common Development and Distribution License (the "License").
6549ec3ffSdougm  * You may not use this file except in compliance with the License.
7549ec3ffSdougm  *
8549ec3ffSdougm  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9549ec3ffSdougm  * or http://www.opensolaris.org/os/licensing.
10549ec3ffSdougm  * See the License for the specific language governing permissions
11549ec3ffSdougm  * and limitations under the License.
12549ec3ffSdougm  *
13549ec3ffSdougm  * When distributing Covered Code, include this CDDL HEADER in each
14549ec3ffSdougm  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15549ec3ffSdougm  * If applicable, add the following below this CDDL HEADER, with the
16549ec3ffSdougm  * fields enclosed by brackets "[]" replaced with your own identifying
17549ec3ffSdougm  * information: Portions Copyright [yyyy] [name of copyright owner]
18549ec3ffSdougm  *
19549ec3ffSdougm  * CDDL HEADER END
20549ec3ffSdougm  */
21549ec3ffSdougm 
22549ec3ffSdougm /*
23549ec3ffSdougm  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
24549ec3ffSdougm  * Use is subject to license terms.
25549ec3ffSdougm  */
26549ec3ffSdougm 
27549ec3ffSdougm #pragma ident	"%Z%%M%	%I%	%E% SMI"
28549ec3ffSdougm 
29549ec3ffSdougm /*
30549ec3ffSdougm  * NFS specific functions
31549ec3ffSdougm  */
32549ec3ffSdougm #include <stdio.h>
33549ec3ffSdougm #include <string.h>
34549ec3ffSdougm #include <ctype.h>
35549ec3ffSdougm #include <stdlib.h>
36549ec3ffSdougm #include <unistd.h>
37549ec3ffSdougm #include <zone.h>
38549ec3ffSdougm #include <errno.h>
39549ec3ffSdougm #include <locale.h>
40549ec3ffSdougm #include <signal.h>
41549ec3ffSdougm #include "libshare.h"
42549ec3ffSdougm #include "libshare_impl.h"
43549ec3ffSdougm #include <nfs/export.h>
44549ec3ffSdougm #include <pwd.h>
45549ec3ffSdougm #include <limits.h>
46549ec3ffSdougm #include <libscf.h>
47549ec3ffSdougm #include "nfslog_config.h"
48549ec3ffSdougm #include "nfslogtab.h"
49549ec3ffSdougm #include "libshare_nfs.h"
50549ec3ffSdougm #include <rpcsvc/daemon_utils.h>
51549ec3ffSdougm #include <nfs/nfs.h>
52549ec3ffSdougm 
53549ec3ffSdougm /* should really be in some global place */
54549ec3ffSdougm #define	DEF_WIN	30000
55549ec3ffSdougm #define	OPT_CHUNK	1024
56549ec3ffSdougm 
57549ec3ffSdougm int debug = 0;
58549ec3ffSdougm 
59549ec3ffSdougm 
60549ec3ffSdougm /* internal functions */
61549ec3ffSdougm static int nfs_init();
62549ec3ffSdougm static void nfs_fini();
63549ec3ffSdougm static int nfs_enable_share(sa_share_t);
64549ec3ffSdougm static int nfs_disable_share(char *);
65549ec3ffSdougm static int nfs_validate_property(sa_property_t, sa_optionset_t);
66549ec3ffSdougm static int nfs_validate_security_mode(char *);
67549ec3ffSdougm static int nfs_is_security_opt(char *);
68549ec3ffSdougm static int nfs_parse_legacy_options(sa_group_t, char *);
69549ec3ffSdougm static char *nfs_format_options(sa_group_t, int);
70549ec3ffSdougm static int nfs_set_proto_prop(sa_property_t);
71549ec3ffSdougm static sa_protocol_properties_t nfs_get_proto_set();
72549ec3ffSdougm static char *nfs_get_status();
73549ec3ffSdougm static char *nfs_space_alias(char *);
74549ec3ffSdougm 
75549ec3ffSdougm /*
76549ec3ffSdougm  * ops vector that provides the protocol specific info and operations
77549ec3ffSdougm  * for share management.
78549ec3ffSdougm  */
79549ec3ffSdougm 
80549ec3ffSdougm struct sa_plugin_ops sa_plugin_ops = {
81549ec3ffSdougm 	SA_PLUGIN_VERSION,
82549ec3ffSdougm 	"nfs",
83549ec3ffSdougm 	nfs_init,
84549ec3ffSdougm 	nfs_fini,
85549ec3ffSdougm 	nfs_enable_share,
86549ec3ffSdougm 	nfs_disable_share,
87549ec3ffSdougm 	nfs_validate_property,
88549ec3ffSdougm 	nfs_validate_security_mode,
89549ec3ffSdougm 	nfs_is_security_opt,
90549ec3ffSdougm 	nfs_parse_legacy_options,
91549ec3ffSdougm 	nfs_format_options,
92549ec3ffSdougm 	nfs_set_proto_prop,
93549ec3ffSdougm 	nfs_get_proto_set,
94549ec3ffSdougm 	nfs_get_status,
95549ec3ffSdougm 	nfs_space_alias,
96549ec3ffSdougm 	NULL,
97549ec3ffSdougm 	NULL
98549ec3ffSdougm };
99549ec3ffSdougm 
100549ec3ffSdougm /*
101549ec3ffSdougm  * list of support services needed
102549ec3ffSdougm  * defines should come from head/rpcsvc/daemon_utils.h
103549ec3ffSdougm  */
104549ec3ffSdougm 
105549ec3ffSdougm static char *service_list_default[] =
106549ec3ffSdougm 	{ STATD, LOCKD, MOUNTD, NFSD, NFSMAPID, RQUOTAD, NULL };
107549ec3ffSdougm static char *service_list_logging[] =
108549ec3ffSdougm 	{ STATD, LOCKD, MOUNTD, NFSD, NFSMAPID, RQUOTAD, NFSLOGD, NULL };
109549ec3ffSdougm 
110549ec3ffSdougm /*
111549ec3ffSdougm  * option definitions.  Make sure to keep the #define for the option
112549ec3ffSdougm  * index just before the entry it is the index for. Changing the order
113549ec3ffSdougm  * can cause breakage.  E.g OPT_RW is index 1 and must precede the
114549ec3ffSdougm  * line that includes the SHOPT_RW and OPT_RW entries.
115549ec3ffSdougm  */
116549ec3ffSdougm 
117549ec3ffSdougm struct option_defs optdefs[] = {
118549ec3ffSdougm #define	OPT_RO		0
119549ec3ffSdougm 	{SHOPT_RO, OPT_RO, OPT_TYPE_ACCLIST},
120549ec3ffSdougm #define	OPT_RW		1
121549ec3ffSdougm 	{SHOPT_RW, OPT_RW, OPT_TYPE_ACCLIST},
122549ec3ffSdougm #define	OPT_ROOT	2
123549ec3ffSdougm 	{SHOPT_ROOT, OPT_ROOT, OPT_TYPE_ACCLIST},
124549ec3ffSdougm #define	OPT_SECURE	3
125549ec3ffSdougm 	{SHOPT_SECURE, OPT_SECURE, OPT_TYPE_DEPRECATED},
126549ec3ffSdougm #define	OPT_ANON	4
127549ec3ffSdougm 	{SHOPT_ANON, OPT_ANON, OPT_TYPE_USER},
128549ec3ffSdougm #define	OPT_WINDOW	5
129549ec3ffSdougm 	{SHOPT_WINDOW, OPT_WINDOW, OPT_TYPE_NUMBER},
130549ec3ffSdougm #define	OPT_NOSUID	6
131549ec3ffSdougm 	{SHOPT_NOSUID, OPT_NOSUID, OPT_TYPE_BOOLEAN},
132549ec3ffSdougm #define	OPT_ACLOK	7
133549ec3ffSdougm 	{SHOPT_ACLOK, OPT_ACLOK, OPT_TYPE_BOOLEAN},
134549ec3ffSdougm #define	OPT_NOSUB	8
135549ec3ffSdougm 	{SHOPT_NOSUB, OPT_NOSUB, OPT_TYPE_BOOLEAN},
136549ec3ffSdougm #define	OPT_SEC		9
137549ec3ffSdougm 	{SHOPT_SEC, OPT_SEC, OPT_TYPE_SECURITY},
138549ec3ffSdougm #define	OPT_PUBLIC	10
139549ec3ffSdougm 	{SHOPT_PUBLIC, OPT_PUBLIC, OPT_TYPE_BOOLEAN, OPT_SHARE_ONLY},
140549ec3ffSdougm #define	OPT_INDEX	11
141549ec3ffSdougm 	{SHOPT_INDEX, OPT_INDEX, OPT_TYPE_FILE},
142549ec3ffSdougm #define	OPT_LOG		12
143549ec3ffSdougm 	{SHOPT_LOG, OPT_LOG, OPT_TYPE_LOGTAG},
144549ec3ffSdougm #define	OPT_CKSUM	13
145549ec3ffSdougm 	{SHOPT_CKSUM, OPT_CKSUM, OPT_TYPE_STRINGSET},
146549ec3ffSdougm #ifdef VOLATILE_FH_TEST	/* XXX added for testing volatile fh's only */
147549ec3ffSdougm #define	OPT_VOLFH	14
148549ec3ffSdougm 	{SHOPT_VOLFH, OPT_VOLFH},
149549ec3ffSdougm #endif /* VOLATILE_FH_TEST */
150549ec3ffSdougm 	NULL
151549ec3ffSdougm };
152549ec3ffSdougm 
153549ec3ffSdougm /*
154549ec3ffSdougm  * list of properties that are related to security flavors.
155549ec3ffSdougm  */
156549ec3ffSdougm static char *seclist[] = {
157549ec3ffSdougm 	SHOPT_RO,
158549ec3ffSdougm 	SHOPT_RW,
159549ec3ffSdougm 	SHOPT_ROOT,
160549ec3ffSdougm 	SHOPT_WINDOW,
161549ec3ffSdougm 	NULL
162549ec3ffSdougm };
163549ec3ffSdougm 
164549ec3ffSdougm /* structure for list of securities */
165549ec3ffSdougm struct securities {
166549ec3ffSdougm 	sa_security_t security;
167549ec3ffSdougm 	struct securities *next;
168549ec3ffSdougm };
169549ec3ffSdougm 
170549ec3ffSdougm /*
171549ec3ffSdougm  * findopt(name)
172549ec3ffSdougm  *
173549ec3ffSdougm  * Lookup option "name" in the option table and return the table
174549ec3ffSdougm  * index.
175549ec3ffSdougm  */
176549ec3ffSdougm 
177549ec3ffSdougm static int
178549ec3ffSdougm findopt(char *name)
179549ec3ffSdougm {
180549ec3ffSdougm 	int i;
181549ec3ffSdougm 	if (name != NULL) {
182549ec3ffSdougm 		for (i = 0; optdefs[i].tag != NULL; i++) {
183549ec3ffSdougm 			if (strcmp(optdefs[i].tag, name) == 0)
184549ec3ffSdougm 				return (i);
185549ec3ffSdougm 		}
186549ec3ffSdougm 	}
187549ec3ffSdougm 	return (-1);
188549ec3ffSdougm }
189549ec3ffSdougm 
190549ec3ffSdougm /*
191549ec3ffSdougm  * gettype(name)
192549ec3ffSdougm  *
193549ec3ffSdougm  * Return the type of option "name".
194549ec3ffSdougm  */
195549ec3ffSdougm 
196549ec3ffSdougm static int
197549ec3ffSdougm gettype(char *name)
198549ec3ffSdougm {
199549ec3ffSdougm 	int optdef;
200549ec3ffSdougm 
201549ec3ffSdougm 	optdef = findopt(name);
202549ec3ffSdougm 	if (optdef != -1)
203549ec3ffSdougm 		return (optdefs[optdef].type);
204549ec3ffSdougm 	return (OPT_TYPE_ANY);
205549ec3ffSdougm }
206549ec3ffSdougm 
207549ec3ffSdougm /*
208549ec3ffSdougm  * nfs_validate_security_mode(mode)
209549ec3ffSdougm  *
210549ec3ffSdougm  * is the specified mode string a valid one for use with NFS?
211549ec3ffSdougm  */
212549ec3ffSdougm 
213549ec3ffSdougm static int
214549ec3ffSdougm nfs_validate_security_mode(char *mode)
215549ec3ffSdougm {
216549ec3ffSdougm 	seconfig_t secinfo;
217549ec3ffSdougm 	int err;
218549ec3ffSdougm 
219549ec3ffSdougm 	(void) memset(&secinfo, '\0', sizeof (secinfo));
220549ec3ffSdougm 	err = nfs_getseconfig_byname(mode, &secinfo);
221549ec3ffSdougm 	if (err == SC_NOERROR)
222549ec3ffSdougm 		return (1);
223549ec3ffSdougm 	return (0);
224549ec3ffSdougm }
225549ec3ffSdougm 
226549ec3ffSdougm /*
227549ec3ffSdougm  * nfs_is_security_opt(tok)
228549ec3ffSdougm  *
229549ec3ffSdougm  * check to see if tok represents an option that is only valid in some
230549ec3ffSdougm  * security flavor.
231549ec3ffSdougm  */
232549ec3ffSdougm 
233549ec3ffSdougm static int
234549ec3ffSdougm nfs_is_security_opt(char *tok)
235549ec3ffSdougm {
236549ec3ffSdougm 	int i;
237549ec3ffSdougm 
238549ec3ffSdougm 	for (i = 0; seclist[i] != NULL; i++) {
239549ec3ffSdougm 		if (strcmp(tok, seclist[i]) == 0)
240549ec3ffSdougm 			return (1);
241549ec3ffSdougm 	}
242549ec3ffSdougm 	return (0);
243549ec3ffSdougm }
244549ec3ffSdougm 
245549ec3ffSdougm /*
246549ec3ffSdougm  * find_security(seclist, sec)
247549ec3ffSdougm  *
248549ec3ffSdougm  * Walk the current list of security flavors and return true if it is
249549ec3ffSdougm  * present, else return false.
250549ec3ffSdougm  */
251549ec3ffSdougm 
252549ec3ffSdougm static int
253549ec3ffSdougm find_security(struct securities *seclist, sa_security_t sec)
254549ec3ffSdougm {
255549ec3ffSdougm 	while (seclist != NULL) {
256549ec3ffSdougm 		if (seclist->security == sec)
257549ec3ffSdougm 			return (1);
258549ec3ffSdougm 		seclist = seclist->next;
259549ec3ffSdougm 	}
260549ec3ffSdougm 	return (0);
261549ec3ffSdougm }
262549ec3ffSdougm 
263549ec3ffSdougm /*
264549ec3ffSdougm  * make_security_list(group, securitymodes, proto)
265549ec3ffSdougm  *	go through the list of securitymodes and add them to the
266549ec3ffSdougm  *	group's list of security optionsets. We also keep a list of
267549ec3ffSdougm  *	those optionsets so we don't have to find them later. All of
268549ec3ffSdougm  *	these will get copies of the same properties.
269549ec3ffSdougm  */
270549ec3ffSdougm 
271549ec3ffSdougm static struct securities *
272549ec3ffSdougm make_security_list(sa_group_t group, char *securitymodes, char *proto)
273549ec3ffSdougm {
274549ec3ffSdougm 	char *tok, *next = NULL;
275549ec3ffSdougm 	struct securities *curp, *headp = NULL, *prev;
276549ec3ffSdougm 	sa_security_t check;
277549ec3ffSdougm 	int freetok = 0;
278549ec3ffSdougm 
279549ec3ffSdougm 	for (tok = securitymodes; tok != NULL; tok = next) {
280549ec3ffSdougm 		next = strchr(tok, ':');
281549ec3ffSdougm 		if (next != NULL)
282549ec3ffSdougm 			*next++ = '\0';
283549ec3ffSdougm 		if (strcmp(tok, "default") == 0) {
284549ec3ffSdougm 			/* resolve default into the real type */
285549ec3ffSdougm 			tok = nfs_space_alias(tok);
286549ec3ffSdougm 			freetok = 1;
287549ec3ffSdougm 		}
288549ec3ffSdougm 		check = sa_get_security(group, tok, proto);
289549ec3ffSdougm 
290549ec3ffSdougm 		/* add to the security list if it isn't there already */
291549ec3ffSdougm 		if (check == NULL || !find_security(headp, check)) {
292549ec3ffSdougm 			curp = (struct securities *)calloc(1,
293549ec3ffSdougm 			    sizeof (struct securities));
294549ec3ffSdougm 			if (curp != NULL) {
295549ec3ffSdougm 				if (check == NULL) {
296a3351425Sdougm 					curp->security = sa_create_security(
297a3351425Sdougm 					    group, tok, proto);
298549ec3ffSdougm 				} else {
299549ec3ffSdougm 					curp->security = check;
300549ec3ffSdougm 				}
301549ec3ffSdougm 				/*
302549ec3ffSdougm 				 * note that the first time through the loop,
303549ec3ffSdougm 				 * headp will be NULL and prev will be
304549ec3ffSdougm 				 * undefined.  Since headp is NULL, we set
305549ec3ffSdougm 				 * both it and prev to the curp (first
306549ec3ffSdougm 				 * structure to be allocated).
307549ec3ffSdougm 				 *
308549ec3ffSdougm 				 * later passes through the loop will have
309549ec3ffSdougm 				 * headp not being NULL and prev will be used
310549ec3ffSdougm 				 * to allocate at the end of the list.
311549ec3ffSdougm 				 */
312549ec3ffSdougm 				if (headp == NULL) {
313549ec3ffSdougm 					headp = curp;
314549ec3ffSdougm 					prev = curp;
315549ec3ffSdougm 				} else {
316549ec3ffSdougm 					prev->next = curp;
317549ec3ffSdougm 					prev = curp;
318549ec3ffSdougm 				}
319549ec3ffSdougm 			}
320549ec3ffSdougm 		}
321549ec3ffSdougm 
322549ec3ffSdougm 		if (freetok) {
323549ec3ffSdougm 			freetok = 0;
324549ec3ffSdougm 			sa_free_attr_string(tok);
325549ec3ffSdougm 		}
326549ec3ffSdougm 	}
327549ec3ffSdougm 	return (headp);
328549ec3ffSdougm }
329549ec3ffSdougm 
330549ec3ffSdougm static void
331549ec3ffSdougm free_security_list(struct securities *sec)
332549ec3ffSdougm {
333549ec3ffSdougm 	struct securities *next;
334549ec3ffSdougm 	if (sec != NULL) {
335549ec3ffSdougm 		for (next = sec->next; sec != NULL; sec = next) {
336549ec3ffSdougm 			next = sec->next;
337549ec3ffSdougm 			free(sec);
338549ec3ffSdougm 		}
339549ec3ffSdougm 	}
340549ec3ffSdougm }
341549ec3ffSdougm 
342549ec3ffSdougm /*
343549ec3ffSdougm  * nfs_alistcat(str1, str2, sep)
344549ec3ffSdougm  *
345549ec3ffSdougm  * concatenate str1 and str2 into a new string using sep as a separate
346549ec3ffSdougm  * character. If memory allocation fails, return NULL;
347549ec3ffSdougm  */
348549ec3ffSdougm 
349549ec3ffSdougm static char *
350549ec3ffSdougm nfs_alistcat(char *str1, char *str2, char sep)
351549ec3ffSdougm {
352549ec3ffSdougm 	char *newstr;
353549ec3ffSdougm 	size_t len;
354549ec3ffSdougm 
355549ec3ffSdougm 	len = strlen(str1) + strlen(str2) + 2;
356549ec3ffSdougm 	newstr = (char *)malloc(len);
357549ec3ffSdougm 	if (newstr != NULL)
358549ec3ffSdougm 		(void) snprintf(newstr, len, "%s%c%s", str1, sep, str2);
359549ec3ffSdougm 	return (newstr);
360549ec3ffSdougm }
361549ec3ffSdougm 
362549ec3ffSdougm /*
363549ec3ffSdougm  * add_security_prop(sec, name, value, persist)
364549ec3ffSdougm  *
365549ec3ffSdougm  * Add the property to the securities structure. This accumulates
366549ec3ffSdougm  * properties for as part of parsing legacy options.
367549ec3ffSdougm  */
368549ec3ffSdougm 
369549ec3ffSdougm static int
370549ec3ffSdougm add_security_prop(struct securities *sec, char *name, char *value,
371549ec3ffSdougm 			int persist, int iszfs)
372549ec3ffSdougm {
373549ec3ffSdougm 	sa_property_t prop;
374549ec3ffSdougm 	int ret = SA_OK;
375549ec3ffSdougm 
376549ec3ffSdougm 	for (; sec != NULL; sec = sec->next) {
377549ec3ffSdougm 		if (value == NULL) {
378a3351425Sdougm 			if (strcmp(name, SHOPT_RW) == 0 ||
379a3351425Sdougm 			    strcmp(name, SHOPT_RO) == 0)
380549ec3ffSdougm 				value = "*";
381549ec3ffSdougm 			else
382549ec3ffSdougm 				value = "true";
383549ec3ffSdougm 		}
384549ec3ffSdougm 
385549ec3ffSdougm 		/*
386549ec3ffSdougm 		 * Get the existing property, if it exists, so we can
387549ec3ffSdougm 		 * determine what to do with it. The ro/rw/root
388549ec3ffSdougm 		 * properties can be merged if multiple instances of
389549ec3ffSdougm 		 * these properies are given. For example, if "rw"
390549ec3ffSdougm 		 * exists with a value "host1" and a later token of
391549ec3ffSdougm 		 * rw="host2" is seen, the values are merged into a
392549ec3ffSdougm 		 * single rw="host1:host2".
393549ec3ffSdougm 		 */
394549ec3ffSdougm 		prop = sa_get_property(sec->security, name);
395549ec3ffSdougm 
396549ec3ffSdougm 		if (prop != NULL) {
397549ec3ffSdougm 			char *oldvalue;
398549ec3ffSdougm 			char *newvalue;
399549ec3ffSdougm 
400549ec3ffSdougm 			/*
401549ec3ffSdougm 			 * The security options of ro/rw/root might appear
402549ec3ffSdougm 			 * multiple times. If they do, the values need to be
403549ec3ffSdougm 			 * merged into an access list. If it was previously
404549ec3ffSdougm 			 * empty, the new value alone is added.
405549ec3ffSdougm 			 */
406549ec3ffSdougm 			oldvalue = sa_get_property_attr(prop, "value");
407549ec3ffSdougm 			if (oldvalue != NULL) {
408549ec3ffSdougm 				/*
409549ec3ffSdougm 				 * The general case is to concatenate the new
410549ec3ffSdougm 				 * value onto the old value for multiple
411549ec3ffSdougm 				 * rw(ro/root) properties. A special case
412549ec3ffSdougm 				 * exists when either the old or new is the
413549ec3ffSdougm 				 * "all" case. In the special case, if both
414549ec3ffSdougm 				 * are "all", then it is "all", else if one is
415549ec3ffSdougm 				 * an access-list, that replaces the "all".
416549ec3ffSdougm 				 */
417549ec3ffSdougm 				if (strcmp(oldvalue, "*") == 0) {
418549ec3ffSdougm 					/* Replace old value with new value. */
419549ec3ffSdougm 					newvalue = strdup(value);
420549ec3ffSdougm 				} else if (strcmp(value, "*") == 0) {
421a3351425Sdougm 					/*
422a3351425Sdougm 					 * Keep old value and ignore
423a3351425Sdougm 					 * the new value.
424a3351425Sdougm 					 */
425549ec3ffSdougm 					newvalue = NULL;
426549ec3ffSdougm 				} else {
427a3351425Sdougm 					/*
428a3351425Sdougm 					 * Make a new list of old plus new
429a3351425Sdougm 					 * access-list.
430a3351425Sdougm 					 */
431a3351425Sdougm 					newvalue = nfs_alistcat(oldvalue,
432a3351425Sdougm 					    value, ':');
433549ec3ffSdougm 				}
434549ec3ffSdougm 
435549ec3ffSdougm 				if (newvalue != NULL) {
436549ec3ffSdougm 					(void) sa_remove_property(prop);
437a3351425Sdougm 					prop = sa_create_property(name,
438a3351425Sdougm 					    newvalue);
439a3351425Sdougm 					ret = sa_add_property(sec->security,
440a3351425Sdougm 					    prop);
441549ec3ffSdougm 					free(newvalue);
442549ec3ffSdougm 				}
443549ec3ffSdougm 				if (oldvalue != NULL)
444549ec3ffSdougm 					sa_free_attr_string(oldvalue);
445549ec3ffSdougm 			}
446549ec3ffSdougm 		} else {
447549ec3ffSdougm 			prop = sa_create_property(name, value);
448549ec3ffSdougm 			ret = sa_add_property(sec->security, prop);
449549ec3ffSdougm 		}
450549ec3ffSdougm 		if (ret == SA_OK && !iszfs) {
451549ec3ffSdougm 			ret = sa_commit_properties(sec->security, !persist);
452549ec3ffSdougm 		}
453549ec3ffSdougm 	}
454549ec3ffSdougm 	return (ret);
455549ec3ffSdougm }
456549ec3ffSdougm 
457549ec3ffSdougm /*
458549ec3ffSdougm  * check to see if group/share is persistent.
459549ec3ffSdougm  */
460549ec3ffSdougm static int
461549ec3ffSdougm is_persistent(sa_group_t group)
462549ec3ffSdougm {
463549ec3ffSdougm 	char *type;
464549ec3ffSdougm 	int persist = 1;
465549ec3ffSdougm 
466549ec3ffSdougm 	type = sa_get_group_attr(group, "type");
467549ec3ffSdougm 	if (type != NULL && strcmp(type, "persist") != 0)
468549ec3ffSdougm 		persist = 0;
469549ec3ffSdougm 	if (type != NULL)
470549ec3ffSdougm 		sa_free_attr_string(type);
471549ec3ffSdougm 	return (persist);
472549ec3ffSdougm }
473549ec3ffSdougm 
474549ec3ffSdougm /*
475549ec3ffSdougm  * invalid_security(options)
476549ec3ffSdougm  *
477549ec3ffSdougm  * search option string for any invalid sec= type.
478549ec3ffSdougm  * return true (1) if any are not valid else false (0)
479549ec3ffSdougm  */
480549ec3ffSdougm static int
481549ec3ffSdougm invalid_security(char *options)
482549ec3ffSdougm {
483549ec3ffSdougm 	char *copy, *base, *token, *value;
484549ec3ffSdougm 	int ret = 0;
485549ec3ffSdougm 
486549ec3ffSdougm 	copy = strdup(options);
487549ec3ffSdougm 	token = base = copy;
488549ec3ffSdougm 	while (token != NULL && ret == 0) {
489549ec3ffSdougm 		token = strtok(base, ",");
490549ec3ffSdougm 		base = NULL;
491549ec3ffSdougm 		if (token != NULL) {
492549ec3ffSdougm 			value = strchr(token, '=');
493549ec3ffSdougm 			if (value != NULL)
494549ec3ffSdougm 				*value++ = '\0';
495549ec3ffSdougm 			if (strcmp(token, "sec") == 0) {
496a3351425Sdougm 				/* HAVE security flavors so check them */
497549ec3ffSdougm 				char *tok, *next;
498a3351425Sdougm 				for (next = NULL, tok = value; tok != NULL;
499a3351425Sdougm 				    tok = next) {
500549ec3ffSdougm 					next = strchr(tok, ':');
501549ec3ffSdougm 					if (next != NULL)
502549ec3ffSdougm 						*next++ = '\0';
503549ec3ffSdougm 					ret = !nfs_validate_security_mode(tok);
504549ec3ffSdougm 					if (ret)
505549ec3ffSdougm 						break;
506549ec3ffSdougm 				}
507549ec3ffSdougm 			}
508549ec3ffSdougm 		}
509549ec3ffSdougm 	}
510549ec3ffSdougm 	if (copy != NULL)
511549ec3ffSdougm 		free(copy);
512549ec3ffSdougm 	return (ret);
513549ec3ffSdougm }
514549ec3ffSdougm 
515549ec3ffSdougm /*
516549ec3ffSdougm  * nfs_parse_legacy_options(group, options)
517549ec3ffSdougm  *
518549ec3ffSdougm  * Parse the old style options into internal format and store on the
519549ec3ffSdougm  * specified group.  Group could be a share for full legacy support.
520549ec3ffSdougm  */
521549ec3ffSdougm 
522549ec3ffSdougm static int
523549ec3ffSdougm nfs_parse_legacy_options(sa_group_t group, char *options)
524549ec3ffSdougm {
525549ec3ffSdougm 	char *dup = strdup(options);
526549ec3ffSdougm 	char *base;
527549ec3ffSdougm 	char *token;
528549ec3ffSdougm 	sa_optionset_t optionset;
529549ec3ffSdougm 	struct securities *security_list = NULL;
530549ec3ffSdougm 	sa_property_t prop;
531549ec3ffSdougm 	int ret = SA_OK;
532549ec3ffSdougm 	int iszfs = 0;
533549ec3ffSdougm 	sa_group_t parent;
534549ec3ffSdougm 	int persist = 0;
535549ec3ffSdougm 	char *lasts;
536549ec3ffSdougm 
537549ec3ffSdougm 	/* do we have an existing optionset? */
538549ec3ffSdougm 	optionset = sa_get_optionset(group, "nfs");
539549ec3ffSdougm 	if (optionset == NULL) {
540549ec3ffSdougm 		/* didn't find existing optionset so create one */
541549ec3ffSdougm 		optionset = sa_create_optionset(group, "nfs");
542549ec3ffSdougm 	} else {
543549ec3ffSdougm 		/*
544549ec3ffSdougm 		 * have an existing optionset so we need to compare
545549ec3ffSdougm 		 * options in order to detect errors. For now, we
546549ec3ffSdougm 		 * assume that the first optionset is the correct one
547549ec3ffSdougm 		 * and the others will be the same. This needs to be
548549ec3ffSdougm 		 * fixed before the final code is ready.
549549ec3ffSdougm 		 */
550549ec3ffSdougm 		return (ret);
551549ec3ffSdougm 	}
552549ec3ffSdougm 
553549ec3ffSdougm 	if (strcmp(options, SHOPT_RW) == 0) {
554549ec3ffSdougm 		/*
555549ec3ffSdougm 		 * there is a special case of only the option "rw"
556549ec3ffSdougm 		 * being the default option. We don't have to do
557549ec3ffSdougm 		 * anything.
558549ec3ffSdougm 		 */
559549ec3ffSdougm 		return (ret);
560549ec3ffSdougm 	}
561549ec3ffSdougm 
562549ec3ffSdougm 	/*
563549ec3ffSdougm 	 * check if security types are present and validate them. If
564549ec3ffSdougm 	 * any are not legal, fail.
565549ec3ffSdougm 	 */
566549ec3ffSdougm 
567549ec3ffSdougm 	if (invalid_security(options)) {
568549ec3ffSdougm 		return (SA_INVALID_SECURITY);
569549ec3ffSdougm 	}
570549ec3ffSdougm 
571549ec3ffSdougm 	/*
572549ec3ffSdougm 	 * in order to not attempt to change ZFS properties unless
573549ec3ffSdougm 	 * absolutely necessary, we never do it in the legacy parsing.
574549ec3ffSdougm 	 */
575549ec3ffSdougm 	if (sa_is_share(group)) {
576549ec3ffSdougm 		char *zfs;
577549ec3ffSdougm 		parent = sa_get_parent_group(group);
578549ec3ffSdougm 		if (parent != NULL) {
579549ec3ffSdougm 			zfs = sa_get_group_attr(parent, "zfs");
580549ec3ffSdougm 			if (zfs != NULL) {
581549ec3ffSdougm 				sa_free_attr_string(zfs);
582549ec3ffSdougm 				iszfs++;
583549ec3ffSdougm 			}
584549ec3ffSdougm 		}
585549ec3ffSdougm 	} else {
586549ec3ffSdougm 		iszfs = sa_group_is_zfs(group);
587549ec3ffSdougm 	}
588549ec3ffSdougm 
589549ec3ffSdougm 	/*
590549ec3ffSdougm 	 * we need to step through each option in the string and then
591549ec3ffSdougm 	 * add either the option or the security option as needed. If
592549ec3ffSdougm 	 * this is not a persistent share, don't commit to the
593549ec3ffSdougm 	 * repository. If there is an error, we also want to abort the
594549ec3ffSdougm 	 * processing and report it.
595549ec3ffSdougm 	 */
596549ec3ffSdougm 	persist = is_persistent(group);
597549ec3ffSdougm 	base = dup;
598549ec3ffSdougm 	token = dup;
599549ec3ffSdougm 	lasts = NULL;
600549ec3ffSdougm 	while (token != NULL && ret == SA_OK) {
601549ec3ffSdougm 		ret = SA_OK;
602549ec3ffSdougm 		token = strtok_r(base, ",", &lasts);
603549ec3ffSdougm 		base = NULL;
604549ec3ffSdougm 		if (token != NULL) {
605549ec3ffSdougm 			char *value;
606549ec3ffSdougm 			/*
607549ec3ffSdougm 			 * if the option has a value, it will have an '=' to
608549ec3ffSdougm 			 * separate the name from the value. The following
609549ec3ffSdougm 			 * code will result in value != NULL and token
610549ec3ffSdougm 			 * pointing to just the name if there is a value.
611549ec3ffSdougm 			 */
612549ec3ffSdougm 			value = strchr(token, '=');
613549ec3ffSdougm 			if (value != NULL) {
614549ec3ffSdougm 				*value++ = '\0';
615549ec3ffSdougm 			}
616a3351425Sdougm 			if (strcmp(token, "sec") == 0 ||
617a3351425Sdougm 			    strcmp(token, "secure") == 0) {
618549ec3ffSdougm 				/*
619549ec3ffSdougm 				 * Once in security parsing, we only
620549ec3ffSdougm 				 * do security. We do need to move
621549ec3ffSdougm 				 * between the security node and the
622549ec3ffSdougm 				 * toplevel. The security tag goes on
623549ec3ffSdougm 				 * the root while the following ones
624549ec3ffSdougm 				 * go on the security.
625549ec3ffSdougm 				 */
626549ec3ffSdougm 				if (security_list != NULL) {
627a3351425Sdougm 					/*
628a3351425Sdougm 					 * have an old list so close it and
629a3351425Sdougm 					 * start the new
630a3351425Sdougm 					 */
631549ec3ffSdougm 					free_security_list(security_list);
632549ec3ffSdougm 				}
633549ec3ffSdougm 				if (strcmp(token, "secure") == 0) {
634549ec3ffSdougm 					value = "dh";
635549ec3ffSdougm 				} else {
636549ec3ffSdougm 					if (value == NULL) {
637549ec3ffSdougm 						ret = SA_SYNTAX_ERR;
638549ec3ffSdougm 						break;
639549ec3ffSdougm 					}
640549ec3ffSdougm 				}
641a3351425Sdougm 				security_list = make_security_list(group,
642a3351425Sdougm 				    value, "nfs");
643549ec3ffSdougm 			} else {
644549ec3ffSdougm 				/*
645549ec3ffSdougm 				 * Note that the "old" syntax allowed a
646549ec3ffSdougm 				 * default security model This must be
647549ec3ffSdougm 				 * accounted for and internally converted to
648549ec3ffSdougm 				 * "standard" security structure.
649549ec3ffSdougm 				 */
650549ec3ffSdougm 				if (nfs_is_security_opt(token)) {
651549ec3ffSdougm 					if (security_list == NULL) {
652549ec3ffSdougm 						/*
653a3351425Sdougm 						 * need to have a
654a3351425Sdougm 						 * security
655a3351425Sdougm 						 * option. This will
656a3351425Sdougm 						 * be "closed" when a
657a3351425Sdougm 						 * defined "sec="
658a3351425Sdougm 						 * option is
659a3351425Sdougm 						 * seen. This is
660a3351425Sdougm 						 * technically an
661a3351425Sdougm 						 * error but will be
662a3351425Sdougm 						 * allowed with
663a3351425Sdougm 						 * warning.
664549ec3ffSdougm 						 */
665a3351425Sdougm 						security_list =
666a3351425Sdougm 						    make_security_list(group,
667549ec3ffSdougm 						    "default",
668549ec3ffSdougm 						    "nfs");
669549ec3ffSdougm 					}
670549ec3ffSdougm 					if (security_list != NULL) {
671a3351425Sdougm 						ret = add_security_prop(
672a3351425Sdougm 						    security_list, token,
673a3351425Sdougm 						    value, persist, iszfs);
674549ec3ffSdougm 					} else {
675549ec3ffSdougm 						ret = SA_NO_MEMORY;
676549ec3ffSdougm 					}
677549ec3ffSdougm 				} else {
678549ec3ffSdougm 					/* regular options */
679549ec3ffSdougm 					if (value == NULL) {
680a3351425Sdougm 						if (strcmp(token, SHOPT_RW) ==
681a3351425Sdougm 						    0 || strcmp(token,
682a3351425Sdougm 						    SHOPT_RO) == 0) {
683549ec3ffSdougm 							value = "*";
684a3351425Sdougm 						} else {
685549ec3ffSdougm 							value = "global";
686a3351425Sdougm 							if (strcmp(token,
687a3351425Sdougm 							    SHOPT_LOG) != 0) {
688549ec3ffSdougm 								value = "true";
689549ec3ffSdougm 							}
690a3351425Sdougm 						}
691*d6405362Sdougm 					}
692*d6405362Sdougm 					/*
693*d6405362Sdougm 					 * In all cases, create the
694*d6405362Sdougm 					 * property specified. If the
695*d6405362Sdougm 					 * value was NULL, the default
696*d6405362Sdougm 					 * value will have been
697*d6405362Sdougm 					 * substituted.
698*d6405362Sdougm 					 */
699*d6405362Sdougm 					prop = sa_create_property(token, value);
700*d6405362Sdougm 					ret =  sa_add_property(optionset, prop);
701a3351425Sdougm 					if (ret != SA_OK)
702549ec3ffSdougm 						break;
703*d6405362Sdougm 
704549ec3ffSdougm 					if (!iszfs) {
705a3351425Sdougm 						ret = sa_commit_properties(
706a3351425Sdougm 						    optionset, !persist);
707549ec3ffSdougm 					}
708549ec3ffSdougm 				}
709549ec3ffSdougm 			}
710549ec3ffSdougm 		}
711549ec3ffSdougm 	}
712549ec3ffSdougm 	if (security_list != NULL)
713549ec3ffSdougm 		free_security_list(security_list);
714549ec3ffSdougm 	if (dup != NULL)
715549ec3ffSdougm 		free(dup);
716549ec3ffSdougm 	return (ret);
717549ec3ffSdougm }
718549ec3ffSdougm 
719549ec3ffSdougm /*
720549ec3ffSdougm  * is_a_number(number)
721549ec3ffSdougm  *
722549ec3ffSdougm  * is the string a number in one of the forms we want to use?
723549ec3ffSdougm  */
724549ec3ffSdougm 
725549ec3ffSdougm static int
726549ec3ffSdougm is_a_number(char *number)
727549ec3ffSdougm {
728549ec3ffSdougm 	int ret = 1;
729549ec3ffSdougm 	int hex = 0;
730549ec3ffSdougm 
731549ec3ffSdougm 	if (strncmp(number, "0x", 2) == 0) {
732549ec3ffSdougm 		number += 2;
733549ec3ffSdougm 		hex = 1;
734a3351425Sdougm 	} else if (*number == '-') {
735549ec3ffSdougm 		number++; /* skip the minus */
736a3351425Sdougm 	}
737549ec3ffSdougm 	while (ret == 1 && *number != '\0') {
738549ec3ffSdougm 		if (hex) {
739549ec3ffSdougm 			ret = isxdigit(*number++);
740549ec3ffSdougm 		} else {
741549ec3ffSdougm 			ret = isdigit(*number++);
742549ec3ffSdougm 		}
743549ec3ffSdougm 	}
744549ec3ffSdougm 	return (ret);
745549ec3ffSdougm }
746549ec3ffSdougm 
747549ec3ffSdougm /*
748549ec3ffSdougm  * Look for the specified tag in the configuration file. If it is found,
749549ec3ffSdougm  * enable logging and set the logging configuration information for exp.
750549ec3ffSdougm  */
751549ec3ffSdougm static void
752549ec3ffSdougm configlog(struct exportdata *exp, char *tag)
753549ec3ffSdougm {
754549ec3ffSdougm 	nfsl_config_t *configlist = NULL, *configp;
755549ec3ffSdougm 	int error = 0;
756549ec3ffSdougm 	char globaltag[] = DEFAULTTAG;
757549ec3ffSdougm 
758549ec3ffSdougm 	/*
759549ec3ffSdougm 	 * Sends config errors to stderr
760549ec3ffSdougm 	 */
761549ec3ffSdougm 	nfsl_errs_to_syslog = B_FALSE;
762549ec3ffSdougm 
763549ec3ffSdougm 	/*
764549ec3ffSdougm 	 * get the list of configuration settings
765549ec3ffSdougm 	 */
766549ec3ffSdougm 	error = nfsl_getconfig_list(&configlist);
767549ec3ffSdougm 	if (error) {
768549ec3ffSdougm 		(void) fprintf(stderr,
769a3351425Sdougm 		    dgettext(TEXT_DOMAIN, "Cannot get log configuration: %s\n"),
770549ec3ffSdougm 		    strerror(error));
771549ec3ffSdougm 	}
772549ec3ffSdougm 
773549ec3ffSdougm 	if (tag == NULL)
774549ec3ffSdougm 		tag = globaltag;
775549ec3ffSdougm 	if ((configp = nfsl_findconfig(configlist, tag, &error)) == NULL) {
776549ec3ffSdougm 		nfsl_freeconfig_list(&configlist);
777549ec3ffSdougm 		(void) fprintf(stderr,
778a3351425Sdougm 		    dgettext(TEXT_DOMAIN, "No tags matching \"%s\"\n"), tag);
779549ec3ffSdougm 		/* bad configuration */
780549ec3ffSdougm 		error = ENOENT;
781549ec3ffSdougm 		goto err;
782549ec3ffSdougm 	}
783549ec3ffSdougm 
784549ec3ffSdougm 	if ((exp->ex_tag = strdup(tag)) == NULL) {
785549ec3ffSdougm 		error = ENOMEM;
786549ec3ffSdougm 		goto out;
787549ec3ffSdougm 	}
788549ec3ffSdougm 	if ((exp->ex_log_buffer = strdup(configp->nc_bufferpath)) == NULL) {
789549ec3ffSdougm 		error = ENOMEM;
790549ec3ffSdougm 		goto out;
791549ec3ffSdougm 	}
792549ec3ffSdougm 	exp->ex_flags |= EX_LOG;
793549ec3ffSdougm 	if (configp->nc_rpclogpath != NULL)
794549ec3ffSdougm 		exp->ex_flags |= EX_LOG_ALLOPS;
795549ec3ffSdougm out:
796549ec3ffSdougm 	if (configlist != NULL)
797549ec3ffSdougm 		nfsl_freeconfig_list(&configlist);
798549ec3ffSdougm 
799549ec3ffSdougm err:
800549ec3ffSdougm 	if (error != 0) {
801549ec3ffSdougm 		if (exp->ex_flags != NULL)
802549ec3ffSdougm 			free(exp->ex_tag);
803549ec3ffSdougm 		if (exp->ex_log_buffer != NULL)
804549ec3ffSdougm 			free(exp->ex_log_buffer);
805549ec3ffSdougm 		(void) fprintf(stderr,
806a3351425Sdougm 		    dgettext(TEXT_DOMAIN, "Cannot set log configuration: %s\n"),
807549ec3ffSdougm 		    strerror(error));
808549ec3ffSdougm 	}
809549ec3ffSdougm }
810549ec3ffSdougm 
811549ec3ffSdougm /*
812549ec3ffSdougm  * fill_export_from_optionset(export, optionset)
813549ec3ffSdougm  *
814549ec3ffSdougm  * In order to share, we need to set all the possible general options
815549ec3ffSdougm  * into the export structure. Share info will be filled in by the
816549ec3ffSdougm  * caller. Various property values get turned into structure specific
817549ec3ffSdougm  * values.
818549ec3ffSdougm  */
819549ec3ffSdougm 
820549ec3ffSdougm static int
821549ec3ffSdougm fill_export_from_optionset(struct exportdata *export, sa_optionset_t optionset)
822549ec3ffSdougm {
823549ec3ffSdougm 	sa_property_t option;
824549ec3ffSdougm 	int ret = SA_OK;
825549ec3ffSdougm 
826549ec3ffSdougm 	for (option = sa_get_property(optionset, NULL);
827549ec3ffSdougm 	    option != NULL; option = sa_get_next_property(option)) {
828549ec3ffSdougm 		char *name;
829549ec3ffSdougm 		char *value;
830549ec3ffSdougm 		uint32_t val;
831549ec3ffSdougm 
832549ec3ffSdougm 		/*
833549ec3ffSdougm 		 * since options may be set/reset multiple times, always do an
834549ec3ffSdougm 		 * explicit set or clear of the option. This allows defaults
835549ec3ffSdougm 		 * to be set and then the protocol specifici to override.
836549ec3ffSdougm 		 */
837549ec3ffSdougm 
838549ec3ffSdougm 		name = sa_get_property_attr(option, "type");
839549ec3ffSdougm 		value = sa_get_property_attr(option, "value");
840549ec3ffSdougm 		switch (findopt(name)) {
841549ec3ffSdougm 		case OPT_ANON:
842549ec3ffSdougm 			if (value != NULL && is_a_number(value)) {
843549ec3ffSdougm 				val = strtoul(value, NULL, 0);
844549ec3ffSdougm 			} else {
845549ec3ffSdougm 				struct passwd *pw;
846549ec3ffSdougm 				pw = getpwnam(value != NULL ? value : "nobody");
847549ec3ffSdougm 				if (pw != NULL) {
848549ec3ffSdougm 					val = pw->pw_uid;
849549ec3ffSdougm 				} else {
850549ec3ffSdougm 					val = UID_NOBODY;
851549ec3ffSdougm 				}
852549ec3ffSdougm 				endpwent();
853549ec3ffSdougm 			}
854549ec3ffSdougm 			export->ex_anon = val;
855549ec3ffSdougm 			break;
856549ec3ffSdougm 		case OPT_NOSUID:
857a3351425Sdougm 			if (value != NULL && (strcasecmp(value, "true") == 0 ||
858a3351425Sdougm 			    strcmp(value, "1") == 0))
859549ec3ffSdougm 				export->ex_flags |= EX_NOSUID;
860549ec3ffSdougm 			else
861549ec3ffSdougm 				export->ex_flags &= ~EX_NOSUID;
862549ec3ffSdougm 			break;
863549ec3ffSdougm 		case OPT_ACLOK:
864a3351425Sdougm 			if (value != NULL && (strcasecmp(value, "true") == 0 ||
865549ec3ffSdougm 			    strcmp(value, "1") == 0))
866549ec3ffSdougm 				export->ex_flags |= EX_ACLOK;
867549ec3ffSdougm 			else
868549ec3ffSdougm 				export->ex_flags &= ~EX_ACLOK;
869549ec3ffSdougm 			break;
870549ec3ffSdougm 		case OPT_NOSUB:
871a3351425Sdougm 			if (value != NULL && (strcasecmp(value, "true") == 0 ||
872a3351425Sdougm 			    strcmp(value, "1") == 0))
873549ec3ffSdougm 				export->ex_flags |= EX_NOSUB;
874549ec3ffSdougm 			else
875549ec3ffSdougm 				export->ex_flags &= ~EX_NOSUB;
876549ec3ffSdougm 			break;
877549ec3ffSdougm 		case OPT_PUBLIC:
878a3351425Sdougm 			if (value != NULL && (strcasecmp(value, "true") == 0 ||
879a3351425Sdougm 			    strcmp(value, "1") == 0))
880549ec3ffSdougm 				export->ex_flags |= EX_PUBLIC;
881549ec3ffSdougm 			else
882549ec3ffSdougm 				export->ex_flags &= ~EX_PUBLIC;
883549ec3ffSdougm 			break;
884549ec3ffSdougm 		case OPT_INDEX:
885a3351425Sdougm 			if (value != NULL && (strcmp(value, "..") == 0 ||
886a3351425Sdougm 			    strchr(value, '/') != NULL)) {
887549ec3ffSdougm 				/* this is an error */
888549ec3ffSdougm 				(void) printf(dgettext(TEXT_DOMAIN,
889549ec3ffSdougm 				    "NFS: index=\"%s\" not valid;"
890549ec3ffSdougm 				    "must be a filename.\n"),
891549ec3ffSdougm 				    value);
892549ec3ffSdougm 				break;
893549ec3ffSdougm 			}
894549ec3ffSdougm 			if (value != NULL && *value != '\0' &&
895549ec3ffSdougm 			    strcmp(value, ".") != 0) {
896549ec3ffSdougm 				/* valid index file string */
897549ec3ffSdougm 				if (export->ex_index != NULL) {
898549ec3ffSdougm 					/* left over from "default" */
899549ec3ffSdougm 					free(export->ex_index);
900549ec3ffSdougm 				}
901a3351425Sdougm 				/* remember to free */
902a3351425Sdougm 				export->ex_index = strdup(value);
903549ec3ffSdougm 				if (export->ex_index == NULL) {
904549ec3ffSdougm 					(void) printf(dgettext(TEXT_DOMAIN,
905549ec3ffSdougm 					    "NFS: out of memory setting "
906549ec3ffSdougm 					    "index property\n"));
907549ec3ffSdougm 					break;
908549ec3ffSdougm 				}
909549ec3ffSdougm 				export->ex_flags |= EX_INDEX;
910549ec3ffSdougm 			}
911549ec3ffSdougm 			break;
912549ec3ffSdougm 		case OPT_LOG:
913549ec3ffSdougm 			if (value == NULL)
914549ec3ffSdougm 				value = strdup("global");
915549ec3ffSdougm 			if (value != NULL)
916a3351425Sdougm 				configlog(export,
917a3351425Sdougm 				    strlen(value) ? value : "global");
918549ec3ffSdougm 			break;
919549ec3ffSdougm 		default:
920549ec3ffSdougm 			/* have a syntactic error */
921549ec3ffSdougm 			(void) printf(dgettext(TEXT_DOMAIN,
922549ec3ffSdougm 			    "NFS: unrecognized option %s=%s\n"),
923549ec3ffSdougm 			    name, value != NULL ? value : "");
924549ec3ffSdougm 			break;
925549ec3ffSdougm 		}
926549ec3ffSdougm 		if (name != NULL)
927549ec3ffSdougm 			sa_free_attr_string(name);
928549ec3ffSdougm 		if (value != NULL)
929549ec3ffSdougm 			sa_free_attr_string(value);
930549ec3ffSdougm 	}
931549ec3ffSdougm 	return (ret);
932549ec3ffSdougm }
933549ec3ffSdougm 
934549ec3ffSdougm /*
935549ec3ffSdougm  * cleanup_export(export)
936549ec3ffSdougm  *
937549ec3ffSdougm  * Cleanup the allocated areas so we don't leak memory
938549ec3ffSdougm  */
939549ec3ffSdougm 
940549ec3ffSdougm static void
941549ec3ffSdougm cleanup_export(struct exportdata *export)
942549ec3ffSdougm {
943549ec3ffSdougm 	int i;
944549ec3ffSdougm 
945549ec3ffSdougm 	if (export->ex_index != NULL)
946549ec3ffSdougm 		free(export->ex_index);
947549ec3ffSdougm 	if (export->ex_secinfo != NULL) {
948549ec3ffSdougm 		for (i = 0; i < export->ex_seccnt; i++)
949a3351425Sdougm 			if (export->ex_secinfo[i].s_rootnames != NULL)
950549ec3ffSdougm 				free(export->ex_secinfo[i].s_rootnames);
951549ec3ffSdougm 		free(export->ex_secinfo);
952549ec3ffSdougm 	}
953549ec3ffSdougm }
954549ec3ffSdougm 
955549ec3ffSdougm /*
956549ec3ffSdougm  * Given a seconfig entry and a colon-separated
957549ec3ffSdougm  * list of names, allocate an array big enough
958549ec3ffSdougm  * to hold the root list, then convert each name to
959549ec3ffSdougm  * a principal name according to the security
960549ec3ffSdougm  * info and assign it to an array element.
961549ec3ffSdougm  * Return the array and its size.
962549ec3ffSdougm  */
963549ec3ffSdougm static caddr_t *
964549ec3ffSdougm get_rootnames(seconfig_t *sec, char *list, int *count)
965549ec3ffSdougm {
966549ec3ffSdougm 	caddr_t *a;
967549ec3ffSdougm 	int c, i;
968549ec3ffSdougm 	char *host, *p;
969549ec3ffSdougm 
970549ec3ffSdougm 	/*
971549ec3ffSdougm 	 * Count the number of strings in the list.
972549ec3ffSdougm 	 * This is the number of colon separators + 1.
973549ec3ffSdougm 	 */
974549ec3ffSdougm 	c = 1;
975549ec3ffSdougm 	for (p = list; *p; p++)
976549ec3ffSdougm 		if (*p == ':')
977549ec3ffSdougm 			c++;
978549ec3ffSdougm 	*count = c;
979549ec3ffSdougm 
980549ec3ffSdougm 	a = (caddr_t *)malloc(c * sizeof (char *));
981549ec3ffSdougm 	if (a == NULL) {
982549ec3ffSdougm 		(void) printf(dgettext(TEXT_DOMAIN,
983549ec3ffSdougm 		    "get_rootnames: no memory\n"));
984549ec3ffSdougm 	} else {
985549ec3ffSdougm 		for (i = 0; i < c; i++) {
986549ec3ffSdougm 			host = strtok(list, ":");
987549ec3ffSdougm 			if (!nfs_get_root_principal(sec, host, &a[i])) {
988549ec3ffSdougm 				free(a);
989549ec3ffSdougm 				a = NULL;
990549ec3ffSdougm 				break;
991549ec3ffSdougm 			}
992549ec3ffSdougm 			list = NULL;
993549ec3ffSdougm 		}
994549ec3ffSdougm 	}
995549ec3ffSdougm 
996549ec3ffSdougm 	return (a);
997549ec3ffSdougm }
998549ec3ffSdougm 
999549ec3ffSdougm /*
1000549ec3ffSdougm  * fill_security_from_secopts(sp, secopts)
1001549ec3ffSdougm  *
1002549ec3ffSdougm  * Fill the secinfo structure from the secopts optionset.
1003549ec3ffSdougm  */
1004549ec3ffSdougm 
1005549ec3ffSdougm static int
1006549ec3ffSdougm fill_security_from_secopts(struct secinfo *sp, sa_security_t secopts)
1007549ec3ffSdougm {
1008549ec3ffSdougm 	sa_property_t prop;
1009549ec3ffSdougm 	char *type;
1010549ec3ffSdougm 	int longform;
1011549ec3ffSdougm 	int err = SC_NOERROR;
1012549ec3ffSdougm 
1013549ec3ffSdougm 	type = sa_get_security_attr(secopts, "sectype");
1014549ec3ffSdougm 	if (type != NULL) {
1015549ec3ffSdougm 		/* named security type needs secinfo to be filled in */
1016549ec3ffSdougm 		err = nfs_getseconfig_byname(type, &sp->s_secinfo);
1017549ec3ffSdougm 		sa_free_attr_string(type);
1018549ec3ffSdougm 		if (err != SC_NOERROR)
1019549ec3ffSdougm 			return (err);
1020549ec3ffSdougm 	} else {
1021549ec3ffSdougm 		/* default case */
1022549ec3ffSdougm 		err = nfs_getseconfig_default(&sp->s_secinfo);
1023549ec3ffSdougm 		if (err != SC_NOERROR)
1024549ec3ffSdougm 			return (err);
1025549ec3ffSdougm 	}
1026549ec3ffSdougm 
1027549ec3ffSdougm 	err = SA_OK;
1028549ec3ffSdougm 	for (prop = sa_get_property(secopts, NULL);
1029549ec3ffSdougm 	    prop != NULL && err == SA_OK;
1030549ec3ffSdougm 	    prop = sa_get_next_property(prop)) {
1031549ec3ffSdougm 		char *name;
1032549ec3ffSdougm 		char *value;
1033549ec3ffSdougm 
1034549ec3ffSdougm 		name = sa_get_property_attr(prop, "type");
1035549ec3ffSdougm 		value = sa_get_property_attr(prop, "value");
1036549ec3ffSdougm 
1037549ec3ffSdougm 		longform = value != NULL && strcmp(value, "*") != 0;
1038549ec3ffSdougm 
1039549ec3ffSdougm 		switch (findopt(name)) {
1040549ec3ffSdougm 		case OPT_RO:
1041549ec3ffSdougm 			sp->s_flags |= longform ? M_ROL : M_RO;
1042549ec3ffSdougm 			break;
1043549ec3ffSdougm 		case OPT_RW:
1044549ec3ffSdougm 			sp->s_flags |= longform ? M_RWL : M_RW;
1045549ec3ffSdougm 			break;
1046549ec3ffSdougm 		case OPT_ROOT:
1047549ec3ffSdougm 			sp->s_flags |= M_ROOT;
1048549ec3ffSdougm 			/*
1049549ec3ffSdougm 			 * if we are using AUTH_UNIX, handle like other things
1050549ec3ffSdougm 			 * such as RO/RW
1051549ec3ffSdougm 			 */
1052549ec3ffSdougm 			if (sp->s_secinfo.sc_rpcnum == AUTH_UNIX)
1053549ec3ffSdougm 				continue;
1054549ec3ffSdougm 			/* not AUTH_UNIX */
1055549ec3ffSdougm 			if (value != NULL) {
1056a3351425Sdougm 				sp->s_rootnames = get_rootnames(&sp->s_secinfo,
1057a3351425Sdougm 				    value, &sp->s_rootcnt);
1058549ec3ffSdougm 				if (sp->s_rootnames == NULL) {
1059549ec3ffSdougm 					err = SA_BAD_VALUE;
1060a3351425Sdougm 					(void) fprintf(stderr,
1061a3351425Sdougm 					    dgettext(TEXT_DOMAIN,
1062549ec3ffSdougm 					    "Bad root list\n"));
1063549ec3ffSdougm 				}
1064549ec3ffSdougm 			}
1065549ec3ffSdougm 			break;
1066549ec3ffSdougm 		case OPT_WINDOW:
1067549ec3ffSdougm 			if (value != NULL) {
1068549ec3ffSdougm 				sp->s_window = atoi(value);
1069a3351425Sdougm 				/* just in case */
1070549ec3ffSdougm 				if (sp->s_window < 0)
1071a3351425Sdougm 					sp->s_window = DEF_WIN;
1072549ec3ffSdougm 			}
1073549ec3ffSdougm 			break;
1074549ec3ffSdougm 		default:
1075549ec3ffSdougm 			break;
1076549ec3ffSdougm 		}
1077549ec3ffSdougm 		if (name != NULL)
1078549ec3ffSdougm 			sa_free_attr_string(name);
1079549ec3ffSdougm 		if (value != NULL)
1080549ec3ffSdougm 			sa_free_attr_string(value);
1081549ec3ffSdougm 	}
1082549ec3ffSdougm 	/* if rw/ro options not set, use default of RW */
1083549ec3ffSdougm 	if ((sp->s_flags & NFS_RWMODES) == 0)
1084549ec3ffSdougm 		sp->s_flags |= M_RW;
1085549ec3ffSdougm 	return (err);
1086549ec3ffSdougm }
1087549ec3ffSdougm 
1088549ec3ffSdougm /*
1089549ec3ffSdougm  * This is for testing only
1090549ec3ffSdougm  * It displays the export structure that
1091549ec3ffSdougm  * goes into the kernel.
1092549ec3ffSdougm  */
1093549ec3ffSdougm static void
1094549ec3ffSdougm printarg(char *path, struct exportdata *ep)
1095549ec3ffSdougm {
1096549ec3ffSdougm 	int i, j;
1097549ec3ffSdougm 	struct secinfo *sp;
1098549ec3ffSdougm 
1099549ec3ffSdougm 	if (debug == 0)
1100549ec3ffSdougm 		return;
1101549ec3ffSdougm 
1102549ec3ffSdougm 	(void) printf("%s:\n", path);
1103549ec3ffSdougm 	(void) printf("\tex_version = %d\n", ep->ex_version);
1104549ec3ffSdougm 	(void) printf("\tex_path = %s\n", ep->ex_path);
1105549ec3ffSdougm 	(void) printf("\tex_pathlen = %ld\n", (ulong_t)ep->ex_pathlen);
1106549ec3ffSdougm 	(void) printf("\tex_flags: (0x%02x) ", ep->ex_flags);
1107549ec3ffSdougm 	if (ep->ex_flags & EX_NOSUID)
1108549ec3ffSdougm 		(void) printf("NOSUID ");
1109549ec3ffSdougm 	if (ep->ex_flags & EX_ACLOK)
1110549ec3ffSdougm 		(void) printf("ACLOK ");
1111549ec3ffSdougm 	if (ep->ex_flags & EX_PUBLIC)
1112549ec3ffSdougm 		(void) printf("PUBLIC ");
1113549ec3ffSdougm 	if (ep->ex_flags & EX_NOSUB)
1114549ec3ffSdougm 		(void) printf("NOSUB ");
1115549ec3ffSdougm 	if (ep->ex_flags & EX_LOG)
1116549ec3ffSdougm 		(void) printf("LOG ");
1117549ec3ffSdougm 	if (ep->ex_flags & EX_LOG_ALLOPS)
1118549ec3ffSdougm 		(void) printf("LOG_ALLOPS ");
1119549ec3ffSdougm 	if (ep->ex_flags == 0)
1120549ec3ffSdougm 		(void) printf("(none)");
1121549ec3ffSdougm 	(void) 	printf("\n");
1122549ec3ffSdougm 	if (ep->ex_flags & EX_LOG) {
1123549ec3ffSdougm 		(void) printf("\tex_log_buffer = %s\n",
1124549ec3ffSdougm 		    (ep->ex_log_buffer ? ep->ex_log_buffer : "(NULL)"));
1125549ec3ffSdougm 		(void) printf("\tex_tag = %s\n",
1126549ec3ffSdougm 		    (ep->ex_tag ? ep->ex_tag : "(NULL)"));
1127549ec3ffSdougm 	}
1128549ec3ffSdougm 	(void) printf("\tex_anon = %d\n", ep->ex_anon);
1129549ec3ffSdougm 	(void) printf("\tex_seccnt = %d\n", ep->ex_seccnt);
1130549ec3ffSdougm 	(void) printf("\n");
1131549ec3ffSdougm 	for (i = 0; i < ep->ex_seccnt; i++) {
1132549ec3ffSdougm 		sp = &ep->ex_secinfo[i];
1133549ec3ffSdougm 		(void) printf("\t\ts_secinfo = %s\n", sp->s_secinfo.sc_name);
1134549ec3ffSdougm 		(void) printf("\t\ts_flags: (0x%02x) ", sp->s_flags);
1135549ec3ffSdougm 		if (sp->s_flags & M_ROOT) (void) printf("M_ROOT ");
1136549ec3ffSdougm 		if (sp->s_flags & M_RO) (void) printf("M_RO ");
1137549ec3ffSdougm 		if (sp->s_flags & M_ROL) (void) printf("M_ROL ");
1138549ec3ffSdougm 		if (sp->s_flags & M_RW) (void) printf("M_RW ");
1139549ec3ffSdougm 		if (sp->s_flags & M_RWL) (void) printf("M_RWL ");
1140549ec3ffSdougm 		if (sp->s_flags == 0) (void) printf("(none)");
1141549ec3ffSdougm 		(void) printf("\n");
1142549ec3ffSdougm 		(void) printf("\t\ts_window = %d\n", sp->s_window);
1143549ec3ffSdougm 		(void) printf("\t\ts_rootcnt = %d ", sp->s_rootcnt);
1144549ec3ffSdougm 		(void) fflush(stdout);
1145549ec3ffSdougm 		for (j = 0; j < sp->s_rootcnt; j++)
1146549ec3ffSdougm 			(void) printf("%s ", sp->s_rootnames[j] ?
1147549ec3ffSdougm 			    sp->s_rootnames[j] : "<null>");
1148549ec3ffSdougm 		(void) printf("\n\n");
1149549ec3ffSdougm 	}
1150549ec3ffSdougm }
1151549ec3ffSdougm 
1152549ec3ffSdougm /*
1153549ec3ffSdougm  * count_security(opts)
1154549ec3ffSdougm  *
1155549ec3ffSdougm  * Count the number of security types (flavors). The optionset has
1156549ec3ffSdougm  * been populated with the security flavors as a holding mechanism.
1157549ec3ffSdougm  * We later use this number to allocate data structures.
1158549ec3ffSdougm  */
1159549ec3ffSdougm 
1160549ec3ffSdougm static int
1161549ec3ffSdougm count_security(sa_optionset_t opts)
1162549ec3ffSdougm {
1163549ec3ffSdougm 	int count = 0;
1164549ec3ffSdougm 	sa_property_t prop;
1165549ec3ffSdougm 	if (opts != NULL) {
1166549ec3ffSdougm 		for (prop = sa_get_property(opts, NULL); prop != NULL;
1167549ec3ffSdougm 		    prop = sa_get_next_property(prop)) {
1168549ec3ffSdougm 			count++;
1169549ec3ffSdougm 		}
1170549ec3ffSdougm 	}
1171549ec3ffSdougm 	return (count);
1172549ec3ffSdougm }
1173549ec3ffSdougm 
1174549ec3ffSdougm /*
1175549ec3ffSdougm  * nfs_sprint_option(rbuff, rbuffsize, incr, prop, sep)
1176549ec3ffSdougm  *
1177549ec3ffSdougm  * provides a mechanism to format NFS properties into legacy output
1178549ec3ffSdougm  * format. If the buffer would overflow, it is reallocated and grown
1179549ec3ffSdougm  * as appropriate. Special cases of converting internal form of values
1180549ec3ffSdougm  * to those used by "share" are done. this function does one property
1181549ec3ffSdougm  * at a time.
1182549ec3ffSdougm  */
1183549ec3ffSdougm 
1184549ec3ffSdougm static void
1185549ec3ffSdougm nfs_sprint_option(char **rbuff, size_t *rbuffsize, size_t incr,
1186549ec3ffSdougm 			sa_property_t prop, int sep)
1187549ec3ffSdougm {
1188549ec3ffSdougm 	char *name;
1189549ec3ffSdougm 	char *value;
1190549ec3ffSdougm 	int curlen;
1191549ec3ffSdougm 	char *buff = *rbuff;
1192549ec3ffSdougm 	size_t buffsize = *rbuffsize;
1193549ec3ffSdougm 
1194549ec3ffSdougm 	name = sa_get_property_attr(prop, "type");
1195549ec3ffSdougm 	value = sa_get_property_attr(prop, "value");
1196549ec3ffSdougm 	if (buff != NULL)
1197549ec3ffSdougm 		curlen = strlen(buff);
1198549ec3ffSdougm 	else
1199549ec3ffSdougm 		curlen = 0;
1200549ec3ffSdougm 	if (name != NULL) {
1201549ec3ffSdougm 		int len;
1202549ec3ffSdougm 		len = strlen(name) + sep;
1203549ec3ffSdougm 
1204549ec3ffSdougm 		/*
1205549ec3ffSdougm 		 * A future RFE would be to replace this with more
1206549ec3ffSdougm 		 * generic code and to possibly handle more types.
1207549ec3ffSdougm 		 */
1208549ec3ffSdougm 		switch (gettype(name)) {
1209549ec3ffSdougm 		case OPT_TYPE_BOOLEAN:
1210a3351425Sdougm 			if (value != NULL && strcasecmp(value, "false") == 0)
1211549ec3ffSdougm 				*name = '\0';
1212549ec3ffSdougm 			if (value != NULL)
1213549ec3ffSdougm 				sa_free_attr_string(value);
1214549ec3ffSdougm 			value = NULL;
1215549ec3ffSdougm 			break;
1216549ec3ffSdougm 		case OPT_TYPE_ACCLIST:
1217549ec3ffSdougm 			if (value != NULL && strcmp(value, "*") == 0) {
1218549ec3ffSdougm 				sa_free_attr_string(value);
1219549ec3ffSdougm 				value = NULL;
1220549ec3ffSdougm 			} else {
1221549ec3ffSdougm 				if (value != NULL)
1222549ec3ffSdougm 					len += 1 + strlen(value);
1223549ec3ffSdougm 			}
1224549ec3ffSdougm 			break;
1225549ec3ffSdougm 		case OPT_TYPE_LOGTAG:
1226549ec3ffSdougm 			if (value != NULL && strlen(value) == 0) {
1227549ec3ffSdougm 				sa_free_attr_string(value);
1228549ec3ffSdougm 				value = NULL;
1229549ec3ffSdougm 			} else {
1230549ec3ffSdougm 				if (value != NULL)
1231549ec3ffSdougm 					len += 1 + strlen(value);
1232549ec3ffSdougm 			}
1233549ec3ffSdougm 			break;
1234549ec3ffSdougm 		default:
1235549ec3ffSdougm 			if (value != NULL)
1236549ec3ffSdougm 				len += 1 + strlen(value);
1237549ec3ffSdougm 			break;
1238549ec3ffSdougm 		}
1239549ec3ffSdougm 		while (buffsize <= (curlen + len)) {
1240549ec3ffSdougm 			/* need more room */
1241549ec3ffSdougm 			buffsize += incr;
1242549ec3ffSdougm 			buff = realloc(buff, buffsize);
1243549ec3ffSdougm 			if (buff == NULL) {
1244549ec3ffSdougm 				/* realloc failed so free everything */
1245549ec3ffSdougm 				if (*rbuff != NULL)
1246549ec3ffSdougm 					free(*rbuff);
1247549ec3ffSdougm 			}
1248549ec3ffSdougm 			*rbuff = buff;
1249549ec3ffSdougm 			*rbuffsize = buffsize;
1250549ec3ffSdougm 			if (buff == NULL) {
1251549ec3ffSdougm 				return;
1252549ec3ffSdougm 			}
1253549ec3ffSdougm 		}
1254549ec3ffSdougm 		if (buff == NULL)
1255549ec3ffSdougm 			return;
1256a3351425Sdougm 		if (value == NULL) {
1257549ec3ffSdougm 			(void) snprintf(buff + curlen, buffsize - curlen,
1258549ec3ffSdougm 			    "%s%s", sep ? "," : "",
1259549ec3ffSdougm 			    name, value != NULL ? value : "");
1260a3351425Sdougm 		} else {
1261549ec3ffSdougm 			(void) snprintf(buff + curlen, buffsize - curlen,
1262549ec3ffSdougm 			    "%s%s=%s", sep ? "," : "",
1263549ec3ffSdougm 			    name, value != NULL ? value : "");
1264549ec3ffSdougm 		}
1265a3351425Sdougm 	}
1266549ec3ffSdougm 	if (name != NULL)
1267549ec3ffSdougm 		sa_free_attr_string(name);
1268549ec3ffSdougm 	if (value != NULL)
1269549ec3ffSdougm 		sa_free_attr_string(value);
1270549ec3ffSdougm }
1271549ec3ffSdougm 
1272549ec3ffSdougm /*
1273549ec3ffSdougm  * nfs_format_options(group, hier)
1274549ec3ffSdougm  *
1275549ec3ffSdougm  * format all the options on the group into an old-style option
1276549ec3ffSdougm  * string. If hier is non-zero, walk up the tree to get inherited
1277549ec3ffSdougm  * options.
1278549ec3ffSdougm  */
1279549ec3ffSdougm 
1280549ec3ffSdougm static char *
1281549ec3ffSdougm nfs_format_options(sa_group_t group, int hier)
1282549ec3ffSdougm {
1283549ec3ffSdougm 	sa_optionset_t options = NULL;
1284a3351425Sdougm 	sa_optionset_t secoptions = NULL;
1285549ec3ffSdougm 	sa_property_t prop, secprop;
1286a3351425Sdougm 	sa_security_t security = NULL;
1287549ec3ffSdougm 	char *buff;
1288549ec3ffSdougm 	size_t buffsize;
1289a3351425Sdougm 	char *sectype = NULL;
1290a3351425Sdougm 	int sep = 0;
1291a3351425Sdougm 
1292a3351425Sdougm 
1293a3351425Sdougm 	buff = malloc(OPT_CHUNK);
1294a3351425Sdougm 	if (buff == NULL) {
1295a3351425Sdougm 		return (NULL);
1296a3351425Sdougm 	}
1297a3351425Sdougm 
1298a3351425Sdougm 	buff[0] = '\0';
1299a3351425Sdougm 	buffsize = OPT_CHUNK;
1300a3351425Sdougm 
1301a3351425Sdougm 	/*
1302a3351425Sdougm 	 * We may have a an optionset relative to this item. format
1303a3351425Sdougm 	 * these if we find them and then add any security definitions.
1304a3351425Sdougm 	 */
1305549ec3ffSdougm 
1306549ec3ffSdougm 	options = sa_get_derived_optionset(group, "nfs", hier);
1307549ec3ffSdougm 
1308549ec3ffSdougm 	/*
1309549ec3ffSdougm 	 * do the default set first but skip any option that is also
1310549ec3ffSdougm 	 * in the protocol specific optionset.
1311549ec3ffSdougm 	 */
1312549ec3ffSdougm 	if (options != NULL) {
1313a3351425Sdougm 		for (prop = sa_get_property(options, NULL);
1314a3351425Sdougm 		    prop != NULL; prop = sa_get_next_property(prop)) {
1315549ec3ffSdougm 			/*
1316a3351425Sdougm 			 * use this one since we skipped any
1317a3351425Sdougm 			 * of these that were also in
1318a3351425Sdougm 			 * optdefault
1319549ec3ffSdougm 			 */
1320a3351425Sdougm 			nfs_sprint_option(&buff, &buffsize, OPT_CHUNK,
1321a3351425Sdougm 			    prop, sep);
1322549ec3ffSdougm 			if (buff == NULL) {
1323549ec3ffSdougm 				/*
1324a3351425Sdougm 				 * buff could become NULL if there
1325a3351425Sdougm 				 * isn't enough memory for
1326a3351425Sdougm 				 * nfs_sprint_option to realloc()
1327a3351425Sdougm 				 * as necessary. We can't really
1328a3351425Sdougm 				 * do anything about it at this
1329a3351425Sdougm 				 * point so we return NULL.  The
1330a3351425Sdougm 				 * caller should handle the
1331a3351425Sdougm 				 * failure.
1332549ec3ffSdougm 				 */
1333a3351425Sdougm 				if (options != NULL)
1334a3351425Sdougm 					sa_free_derived_optionset(
1335a3351425Sdougm 					    options);
1336549ec3ffSdougm 				return (buff);
1337549ec3ffSdougm 			}
1338549ec3ffSdougm 			sep = 1;
1339549ec3ffSdougm 		}
1340549ec3ffSdougm 	}
1341549ec3ffSdougm 	secoptions = (sa_optionset_t)sa_get_all_security_types(group,
1342549ec3ffSdougm 	    "nfs", hier);
1343549ec3ffSdougm 	if (secoptions != NULL) {
1344549ec3ffSdougm 		for (secprop = sa_get_property(secoptions, NULL);
1345a3351425Sdougm 		    secprop != NULL;
1346a3351425Sdougm 		    secprop = sa_get_next_property(secprop)) {
1347549ec3ffSdougm 			sectype = sa_get_property_attr(secprop, "type");
1348a3351425Sdougm 			security =
1349a3351425Sdougm 			    (sa_security_t)sa_get_derived_security(
1350a3351425Sdougm 			    group, sectype, "nfs", hier);
1351549ec3ffSdougm 			if (security != NULL) {
1352549ec3ffSdougm 				if (sectype != NULL) {
1353a3351425Sdougm 					prop = sa_create_property(
1354a3351425Sdougm 					    "sec", sectype);
1355a3351425Sdougm 					nfs_sprint_option(&buff,
1356a3351425Sdougm 					    &buffsize, OPT_CHUNK,
1357549ec3ffSdougm 					    prop, sep);
1358549ec3ffSdougm 					(void) sa_remove_property(prop);
1359549ec3ffSdougm 					sep = 1;
1360549ec3ffSdougm 				}
1361a3351425Sdougm 				for (prop = sa_get_property(security,
1362a3351425Sdougm 				    NULL); prop != NULL;
1363549ec3ffSdougm 				    prop = sa_get_next_property(prop)) {
1364a3351425Sdougm 					nfs_sprint_option(&buff,
1365a3351425Sdougm 					    &buffsize, OPT_CHUNK, prop,
1366a3351425Sdougm 					    sep);
1367a3351425Sdougm 					if (buff == NULL)
1368a3351425Sdougm 						goto err;
1369a3351425Sdougm 					sep = 1;
1370a3351425Sdougm 				}
1371a3351425Sdougm 				sa_free_derived_optionset(security);
1372a3351425Sdougm 			}
1373a3351425Sdougm 			if (sectype != NULL)
1374a3351425Sdougm 				sa_free_attr_string(sectype);
1375a3351425Sdougm 		}
1376a3351425Sdougm 		sa_free_derived_optionset(secoptions);
1377a3351425Sdougm 	}
1378549ec3ffSdougm 
1379a3351425Sdougm 	if (options != NULL)
1380a3351425Sdougm 		sa_free_derived_optionset(options);
1381a3351425Sdougm 	return (buff);
1382a3351425Sdougm 
1383a3351425Sdougm err:
1384a3351425Sdougm 	/*
1385a3351425Sdougm 	 * If we couldn't allocate memory for option printing, we need
1386a3351425Sdougm 	 * to break out of the nested loops, cleanup and return NULL.
1387a3351425Sdougm 	 */
1388a3351425Sdougm 	if (secoptions != NULL)
1389549ec3ffSdougm 		sa_free_derived_optionset(secoptions);
1390549ec3ffSdougm 	if (security != NULL)
1391549ec3ffSdougm 		sa_free_derived_optionset(security);
1392549ec3ffSdougm 	if (sectype != NULL)
1393549ec3ffSdougm 		sa_free_attr_string(sectype);
1394549ec3ffSdougm 	if (options != NULL)
1395549ec3ffSdougm 		sa_free_derived_optionset(options);
1396549ec3ffSdougm 	return (buff);
1397549ec3ffSdougm }
1398a3351425Sdougm 
1399549ec3ffSdougm /*
1400549ec3ffSdougm  * Append an entry to the nfslogtab file
1401549ec3ffSdougm  */
1402549ec3ffSdougm static int
1403549ec3ffSdougm nfslogtab_add(dir, buffer, tag)
1404549ec3ffSdougm 	char *dir, *buffer, *tag;
1405549ec3ffSdougm {
1406549ec3ffSdougm 	FILE *f;
1407549ec3ffSdougm 	struct logtab_ent lep;
1408549ec3ffSdougm 	int error = 0;
1409549ec3ffSdougm 
1410549ec3ffSdougm 	/*
1411549ec3ffSdougm 	 * Open the file for update and create it if necessary.
1412549ec3ffSdougm 	 * This may leave the I/O offset at the end of the file,
1413549ec3ffSdougm 	 * so rewind back to the beginning of the file.
1414549ec3ffSdougm 	 */
1415549ec3ffSdougm 	f = fopen(NFSLOGTAB, "a+");
1416549ec3ffSdougm 	if (f == NULL) {
1417549ec3ffSdougm 		error = errno;
1418549ec3ffSdougm 		goto out;
1419549ec3ffSdougm 	}
1420549ec3ffSdougm 	rewind(f);
1421549ec3ffSdougm 
1422549ec3ffSdougm 	if (lockf(fileno(f), F_LOCK, 0L) < 0) {
1423549ec3ffSdougm 		(void) fprintf(stderr, dgettext(TEXT_DOMAIN,
1424549ec3ffSdougm 		    "share complete, however failed to lock %s "
1425549ec3ffSdougm 		    "for update: %s\n"), NFSLOGTAB, strerror(errno));
1426549ec3ffSdougm 		error = -1;
1427549ec3ffSdougm 		goto out;
1428549ec3ffSdougm 	}
1429549ec3ffSdougm 
1430549ec3ffSdougm 	if (logtab_deactivate_after_boot(f) == -1) {
1431549ec3ffSdougm 		(void) fprintf(stderr, dgettext(TEXT_DOMAIN,
1432549ec3ffSdougm 		    "share complete, however could not deactivate "
1433549ec3ffSdougm 		    "entries in %s\n"), NFSLOGTAB);
1434549ec3ffSdougm 		error = -1;
1435549ec3ffSdougm 		goto out;
1436549ec3ffSdougm 	}
1437549ec3ffSdougm 
1438549ec3ffSdougm 	/*
1439549ec3ffSdougm 	 * Remove entries matching buffer and sharepoint since we're
1440549ec3ffSdougm 	 * going to replace it with perhaps an entry with a new tag.
1441549ec3ffSdougm 	 */
1442549ec3ffSdougm 	if (logtab_rement(f, buffer, dir, NULL, -1)) {
1443549ec3ffSdougm 		(void) fprintf(stderr, dgettext(TEXT_DOMAIN,
1444549ec3ffSdougm 		    "share complete, however could not remove matching "
1445549ec3ffSdougm 		    "entries in %s\n"), NFSLOGTAB);
1446549ec3ffSdougm 		error = -1;
1447549ec3ffSdougm 		goto out;
1448549ec3ffSdougm 	}
1449549ec3ffSdougm 
1450549ec3ffSdougm 	/*
1451549ec3ffSdougm 	 * Deactivate all active entries matching this sharepoint
1452549ec3ffSdougm 	 */
1453549ec3ffSdougm 	if (logtab_deactivate(f, NULL, dir, NULL)) {
1454549ec3ffSdougm 		(void) fprintf(stderr, dgettext(TEXT_DOMAIN,
1455549ec3ffSdougm 		    "share complete, however could not deactivate matching "
1456549ec3ffSdougm 		    "entries in %s\n"), NFSLOGTAB);
1457549ec3ffSdougm 		error = -1;
1458549ec3ffSdougm 		goto out;
1459549ec3ffSdougm 	}
1460549ec3ffSdougm 
1461549ec3ffSdougm 	lep.le_buffer = buffer;
1462549ec3ffSdougm 	lep.le_path = dir;
1463549ec3ffSdougm 	lep.le_tag = tag;
1464549ec3ffSdougm 	lep.le_state = LES_ACTIVE;
1465549ec3ffSdougm 
1466549ec3ffSdougm 	/*
1467549ec3ffSdougm 	 * Add new sharepoint / buffer location to nfslogtab
1468549ec3ffSdougm 	 */
1469549ec3ffSdougm 	if (logtab_putent(f, &lep) < 0) {
1470549ec3ffSdougm 		(void) fprintf(stderr, dgettext(TEXT_DOMAIN,
1471549ec3ffSdougm 		    "share complete, however could not add %s to %s\n"),
1472549ec3ffSdougm 		    dir, NFSLOGTAB);
1473549ec3ffSdougm 		error = -1;
1474549ec3ffSdougm 	}
1475549ec3ffSdougm 
1476549ec3ffSdougm out:
1477549ec3ffSdougm 	if (f != NULL)
1478549ec3ffSdougm 		(void) fclose(f);
1479549ec3ffSdougm 	return (error);
1480549ec3ffSdougm }
1481549ec3ffSdougm 
1482549ec3ffSdougm /*
1483549ec3ffSdougm  * Deactivate an entry from the nfslogtab file
1484549ec3ffSdougm  */
1485549ec3ffSdougm static int
1486549ec3ffSdougm nfslogtab_deactivate(path)
1487549ec3ffSdougm 	char *path;
1488549ec3ffSdougm {
1489549ec3ffSdougm 	FILE *f;
1490549ec3ffSdougm 	int error = 0;
1491549ec3ffSdougm 
1492549ec3ffSdougm 	f = fopen(NFSLOGTAB, "r+");
1493549ec3ffSdougm 	if (f == NULL) {
1494549ec3ffSdougm 		error = errno;
1495549ec3ffSdougm 		goto out;
1496549ec3ffSdougm 	}
1497549ec3ffSdougm 	if (lockf(fileno(f), F_LOCK, 0L) < 0) {
1498549ec3ffSdougm 		error = errno;
1499549ec3ffSdougm 		(void)  fprintf(stderr, dgettext(TEXT_DOMAIN,
1500549ec3ffSdougm 		    "share complete, however could not lock %s for "
1501549ec3ffSdougm 		    "update: %s\n"), NFSLOGTAB, strerror(error));
1502549ec3ffSdougm 		goto out;
1503549ec3ffSdougm 	}
1504549ec3ffSdougm 	if (logtab_deactivate(f, NULL, path, NULL) == -1) {
1505549ec3ffSdougm 		error = -1;
1506549ec3ffSdougm 		(void) fprintf(stderr,
1507549ec3ffSdougm 		    dgettext(TEXT_DOMAIN,
1508549ec3ffSdougm 		    "share complete, however could not "
1509549ec3ffSdougm 		    "deactivate %s in %s\n"), path, NFSLOGTAB);
1510549ec3ffSdougm 		goto out;
1511549ec3ffSdougm 	}
1512549ec3ffSdougm 
1513549ec3ffSdougm out:	if (f != NULL)
1514549ec3ffSdougm 		(void) fclose(f);
1515549ec3ffSdougm 
1516549ec3ffSdougm 	return (error);
1517549ec3ffSdougm }
1518549ec3ffSdougm 
1519549ec3ffSdougm /*
1520549ec3ffSdougm  * public_exists(share)
1521549ec3ffSdougm  *
1522549ec3ffSdougm  * check to see if public option is set on any other share than the
1523549ec3ffSdougm  * one specified.
1524549ec3ffSdougm  */
1525549ec3ffSdougm static int
1526549ec3ffSdougm public_exists(sa_share_t skipshare)
1527549ec3ffSdougm {
1528549ec3ffSdougm 	sa_share_t share;
1529549ec3ffSdougm 	sa_group_t group;
1530549ec3ffSdougm 	sa_optionset_t opt;
1531549ec3ffSdougm 	sa_property_t prop;
1532549ec3ffSdougm 	int exists = 0;
1533549ec3ffSdougm 	sa_handle_t handle;
1534549ec3ffSdougm 
1535549ec3ffSdougm 	group = sa_get_parent_group(skipshare);
1536549ec3ffSdougm 	if (group == NULL)
1537549ec3ffSdougm 		return (SA_NO_SUCH_GROUP);
1538549ec3ffSdougm 
1539549ec3ffSdougm 	handle = sa_find_group_handle(group);
1540549ec3ffSdougm 	if (handle == NULL)
1541549ec3ffSdougm 		return (SA_SYSTEM_ERR);
1542549ec3ffSdougm 
1543549ec3ffSdougm 	for (group = sa_get_group(handle, NULL); group != NULL;
1544549ec3ffSdougm 	    group = sa_get_next_group(group)) {
1545549ec3ffSdougm 		for (share = sa_get_share(group, NULL); share != NULL;
1546549ec3ffSdougm 		    share = sa_get_next_share(share)) {
1547549ec3ffSdougm 			if (share == skipshare)
1548549ec3ffSdougm 				continue;
1549549ec3ffSdougm 			opt = sa_get_optionset(share, "nfs");
1550549ec3ffSdougm 			if (opt != NULL) {
1551549ec3ffSdougm 				prop = sa_get_property(opt, "public");
1552549ec3ffSdougm 				if (prop != NULL) {
1553549ec3ffSdougm 					char *shared;
1554a3351425Sdougm 					shared = sa_get_share_attr(share,
1555a3351425Sdougm 					    "shared");
1556549ec3ffSdougm 					if (shared != NULL) {
1557a3351425Sdougm 						exists = strcmp(shared,
1558a3351425Sdougm 						    "true") == 0;
1559549ec3ffSdougm 						sa_free_attr_string(shared);
1560549ec3ffSdougm 						goto out;
1561549ec3ffSdougm 					}
1562549ec3ffSdougm 				}
1563549ec3ffSdougm 			}
1564549ec3ffSdougm 		}
1565549ec3ffSdougm 	}
1566549ec3ffSdougm out:
1567549ec3ffSdougm 	return (exists);
1568549ec3ffSdougm }
1569549ec3ffSdougm 
1570549ec3ffSdougm /*
1571549ec3ffSdougm  * sa_enable_share at the protocol level, enable_share must tell the
1572549ec3ffSdougm  * implementation that it is to enable the share. This entails
1573549ec3ffSdougm  * converting the path and options into the appropriate ioctl
1574549ec3ffSdougm  * calls. It is assumed that all error checking of paths, etc. were
1575549ec3ffSdougm  * done earlier.
1576549ec3ffSdougm  */
1577549ec3ffSdougm static int
1578549ec3ffSdougm nfs_enable_share(sa_share_t share)
1579549ec3ffSdougm {
1580549ec3ffSdougm 	struct exportdata export;
1581549ec3ffSdougm 	sa_optionset_t secoptlist;
1582549ec3ffSdougm 	struct secinfo *sp;
1583549ec3ffSdougm 	int num_secinfo;
1584549ec3ffSdougm 	sa_optionset_t opt;
1585549ec3ffSdougm 	sa_security_t sec;
1586549ec3ffSdougm 	sa_property_t prop;
1587549ec3ffSdougm 	char *path;
1588549ec3ffSdougm 	int err = SA_OK;
1589549ec3ffSdougm 
1590549ec3ffSdougm 	/* Don't drop core if the NFS module isn't loaded. */
1591549ec3ffSdougm 	(void) signal(SIGSYS, SIG_IGN);
1592549ec3ffSdougm 
1593549ec3ffSdougm 	/* get the path since it is important in several places */
1594549ec3ffSdougm 	path = sa_get_share_attr(share, "path");
1595549ec3ffSdougm 	if (path == NULL)
1596549ec3ffSdougm 		return (SA_NO_SUCH_PATH);
1597549ec3ffSdougm 
1598549ec3ffSdougm 	/*
1599549ec3ffSdougm 	 * find the optionsets and security sets.  There may not be
1600549ec3ffSdougm 	 * any or there could be one or two for each of optionset and
1601549ec3ffSdougm 	 * security may have multiple, one per security type per
1602549ec3ffSdougm 	 * protocol type.
1603549ec3ffSdougm 	 */
1604549ec3ffSdougm 	opt = sa_get_derived_optionset(share, "nfs", 1);
1605549ec3ffSdougm 	secoptlist = (sa_optionset_t)sa_get_all_security_types(share, "nfs", 1);
1606549ec3ffSdougm 	if (secoptlist != NULL)
1607549ec3ffSdougm 		num_secinfo = MAX(1, count_security(secoptlist));
1608549ec3ffSdougm 	else
1609549ec3ffSdougm 		num_secinfo = 1;
1610549ec3ffSdougm 
1611549ec3ffSdougm 	/*
1612549ec3ffSdougm 	 * walk through the options and fill in the structure
1613549ec3ffSdougm 	 * appropriately.
1614549ec3ffSdougm 	 */
1615549ec3ffSdougm 
1616549ec3ffSdougm 	(void) memset(&export, '\0', sizeof (export));
1617549ec3ffSdougm 
1618549ec3ffSdougm 	/*
1619549ec3ffSdougm 	 * do non-security options first since there is only one after
1620549ec3ffSdougm 	 * the derived group is constructed.
1621549ec3ffSdougm 	 */
1622549ec3ffSdougm 	export.ex_version = EX_CURRENT_VERSION;
1623549ec3ffSdougm 	export.ex_anon = UID_NOBODY; /* this is our default value */
1624549ec3ffSdougm 	export.ex_index = NULL;
1625549ec3ffSdougm 	export.ex_path = path;
1626549ec3ffSdougm 	export.ex_pathlen = strlen(path) + 1;
1627549ec3ffSdougm 
1628549ec3ffSdougm 	sp = calloc(num_secinfo, sizeof (struct secinfo));
1629549ec3ffSdougm 
1630549ec3ffSdougm 	if (opt != NULL)
1631549ec3ffSdougm 		err = fill_export_from_optionset(&export, opt);
1632549ec3ffSdougm 
1633549ec3ffSdougm 	/*
1634549ec3ffSdougm 	 * check to see if "public" is set. If it is, then make sure
1635549ec3ffSdougm 	 * no other share has it set. If it is already used, fail.
1636549ec3ffSdougm 	 */
1637549ec3ffSdougm 
1638549ec3ffSdougm 	if (export.ex_flags & EX_PUBLIC && public_exists(share)) {
1639549ec3ffSdougm 		(void) printf(dgettext(TEXT_DOMAIN,
1640549ec3ffSdougm 		    "NFS: Cannot share more than one file "
1641549ec3ffSdougm 		    "system with 'public' property\n"));
1642549ec3ffSdougm 		err = SA_NOT_ALLOWED;
1643549ec3ffSdougm 		goto out;
1644549ec3ffSdougm 	}
1645549ec3ffSdougm 
1646549ec3ffSdougm 	if (sp == NULL) {
1647549ec3ffSdougm 		/* failed to alloc memory */
1648549ec3ffSdougm 		(void) printf("NFS: no memory for security\n");
1649549ec3ffSdougm 		err = SA_NO_MEMORY;
1650549ec3ffSdougm 	} else {
1651549ec3ffSdougm 		int i;
1652549ec3ffSdougm 		export.ex_secinfo = sp;
1653549ec3ffSdougm 		/* get default secinfo */
1654549ec3ffSdougm 		export.ex_seccnt = num_secinfo;
1655549ec3ffSdougm 		/*
1656549ec3ffSdougm 		 * since we must have one security option defined, we
1657549ec3ffSdougm 		 * init to the default and then override as we find
1658549ec3ffSdougm 		 * defined security options. This handles the case
1659549ec3ffSdougm 		 * where we have no defined options but we need to set
1660549ec3ffSdougm 		 * up one.
1661549ec3ffSdougm 		 */
1662549ec3ffSdougm 		sp[0].s_window = DEF_WIN;
1663549ec3ffSdougm 		sp[0].s_rootnames = NULL;
1664549ec3ffSdougm 		/* setup a default in case no properties defined */
1665549ec3ffSdougm 		if (nfs_getseconfig_default(&sp[0].s_secinfo)) {
1666549ec3ffSdougm 			(void) printf(dgettext(TEXT_DOMAIN,
1667549ec3ffSdougm 			    "NFS: nfs_getseconfig_default: failed to "
1668549ec3ffSdougm 			    "get default security mode\n"));
1669549ec3ffSdougm 			err = SA_CONFIG_ERR;
1670549ec3ffSdougm 		}
1671549ec3ffSdougm 		if (secoptlist != NULL) {
1672549ec3ffSdougm 			for (i = 0, prop = sa_get_property(secoptlist, NULL);
1673549ec3ffSdougm 			    prop != NULL && i < num_secinfo;
1674549ec3ffSdougm 			    prop = sa_get_next_property(prop), i++) {
1675549ec3ffSdougm 				char *sectype;
1676549ec3ffSdougm 
1677549ec3ffSdougm 				sectype = sa_get_property_attr(prop, "type");
1678a3351425Sdougm 				/*
1679a3351425Sdougm 				 * if sectype is NULL, we probably
1680a3351425Sdougm 				 * have a memory problem and can't get
1681a3351425Sdougm 				 * the correct values. Rather than
1682a3351425Sdougm 				 * exporting with incorrect security,
1683a3351425Sdougm 				 * don't share it.
1684a3351425Sdougm 				 */
1685a3351425Sdougm 				if (sectype == NULL) {
1686a3351425Sdougm 					err = SA_NO_MEMORY;
1687a3351425Sdougm 					(void) printf(dgettext(TEXT_DOMAIN,
1688a3351425Sdougm 					    "NFS: Cannot share %s: "
1689a3351425Sdougm 					    "no memory\n"), path);
1690a3351425Sdougm 					goto out;
1691a3351425Sdougm 				}
1692a3351425Sdougm 				sec = (sa_security_t)sa_get_derived_security(
1693a3351425Sdougm 				    share, sectype, "nfs", 1);
1694549ec3ffSdougm 				sp[i].s_window = DEF_WIN;
1695549ec3ffSdougm 				sp[i].s_rootcnt = 0;
1696549ec3ffSdougm 				sp[i].s_rootnames = NULL;
1697549ec3ffSdougm 
1698549ec3ffSdougm 				(void) fill_security_from_secopts(&sp[i], sec);
1699549ec3ffSdougm 				if (sec != NULL)
1700549ec3ffSdougm 					sa_free_derived_security(sec);
1701549ec3ffSdougm 				if (sectype != NULL)
1702549ec3ffSdougm 					sa_free_attr_string(sectype);
1703549ec3ffSdougm 			}
1704549ec3ffSdougm 		}
1705549ec3ffSdougm 		/*
1706549ec3ffSdougm 		 * when we get here, we can do the exportfs system call and
1707549ec3ffSdougm 		 * initiate thinsg. We probably want to enable the nfs.server
1708549ec3ffSdougm 		 * service first if it isn't running within SMF.
1709549ec3ffSdougm 		 */
1710549ec3ffSdougm 		/* check nfs.server status and start if needed */
1711549ec3ffSdougm 
1712549ec3ffSdougm 		/* now add the share to the internal tables */
1713549ec3ffSdougm 		printarg(path, &export);
1714549ec3ffSdougm 		/*
1715549ec3ffSdougm 		 * call the exportfs system call which is implemented
1716549ec3ffSdougm 		 * via the nfssys() call as the EXPORTFS subfunction.
1717549ec3ffSdougm 		 */
1718549ec3ffSdougm 		if ((err = exportfs(path, &export)) < 0) {
1719549ec3ffSdougm 			err = SA_SYSTEM_ERR;
1720549ec3ffSdougm 			switch (errno) {
1721549ec3ffSdougm 			case EREMOTE:
1722549ec3ffSdougm 				(void) printf(dgettext(TEXT_DOMAIN,
1723a3351425Sdougm 				    "NFS: Cannot share remote "
1724a3351425Sdougm 				    "filesystem: %s\n"), path);
1725549ec3ffSdougm 				break;
1726549ec3ffSdougm 			case EPERM:
1727549ec3ffSdougm 				if (getzoneid() != GLOBAL_ZONEID) {
1728549ec3ffSdougm 					(void) printf(dgettext(TEXT_DOMAIN,
1729549ec3ffSdougm 					    "NFS: Cannot share filesystems "
1730549ec3ffSdougm 					    "in non-global zones: %s\n"), path);
1731549ec3ffSdougm 					err = SA_NOT_SUPPORTED;
1732549ec3ffSdougm 					break;
1733549ec3ffSdougm 				}
1734549ec3ffSdougm 				err = SA_NO_PERMISSION;
1735549ec3ffSdougm 				/* FALLTHROUGH */
1736549ec3ffSdougm 			default:
1737549ec3ffSdougm 				break;
1738549ec3ffSdougm 			}
1739549ec3ffSdougm 		} else {
1740549ec3ffSdougm 			/* update sharetab with an add/modify */
1741549ec3ffSdougm 			(void) sa_update_sharetab(share, "nfs");
1742549ec3ffSdougm 		}
1743549ec3ffSdougm 	}
1744549ec3ffSdougm 
1745549ec3ffSdougm 	if (err == SA_OK) {
1746549ec3ffSdougm 		/*
1747549ec3ffSdougm 		 * enable services as needed. This should probably be
1748549ec3ffSdougm 		 * done elsewhere in order to minimize the calls to
1749549ec3ffSdougm 		 * check services.
1750549ec3ffSdougm 		 */
1751549ec3ffSdougm 		/*
1752549ec3ffSdougm 		 * check to see if logging and other services need to
1753549ec3ffSdougm 		 * be triggered, but only if there wasn't an
1754549ec3ffSdougm 		 * error. This is probably where sharetab should be
1755549ec3ffSdougm 		 * updated with the NFS specific entry.
1756549ec3ffSdougm 		 */
1757549ec3ffSdougm 		if (export.ex_flags & EX_LOG) {
1758549ec3ffSdougm 			/* enable logging */
1759549ec3ffSdougm 			if (nfslogtab_add(path, export.ex_log_buffer,
1760549ec3ffSdougm 			    export.ex_tag) != 0) {
1761a3351425Sdougm 				(void) fprintf(stderr, dgettext(TEXT_DOMAIN,
1762549ec3ffSdougm 				    "Could not enable logging for %s\n"),
1763549ec3ffSdougm 				    path);
1764549ec3ffSdougm 			}
1765549ec3ffSdougm 			_check_services(service_list_logging);
1766549ec3ffSdougm 		} else {
1767549ec3ffSdougm 			/*
1768549ec3ffSdougm 			 * don't have logging so remove it from file. It might
1769549ec3ffSdougm 			 * not be thre, but that doesn't matter.
1770549ec3ffSdougm 			 */
1771549ec3ffSdougm 			(void) nfslogtab_deactivate(path);
1772549ec3ffSdougm 			_check_services(service_list_default);
1773549ec3ffSdougm 		}
1774549ec3ffSdougm 	}
1775549ec3ffSdougm 
1776549ec3ffSdougm out:
1777549ec3ffSdougm 	if (path != NULL)
1778549ec3ffSdougm 		free(path);
1779549ec3ffSdougm 
1780549ec3ffSdougm 	cleanup_export(&export);
1781549ec3ffSdougm 	if (opt != NULL)
1782549ec3ffSdougm 		sa_free_derived_optionset(opt);
1783549ec3ffSdougm 	if (secoptlist != NULL)
1784549ec3ffSdougm 		(void) sa_destroy_optionset(secoptlist);
1785549ec3ffSdougm 	return (err);
1786549ec3ffSdougm }
1787549ec3ffSdougm 
1788549ec3ffSdougm /*
1789549ec3ffSdougm  * nfs_disable_share(share)
1790549ec3ffSdougm  *
1791549ec3ffSdougm  * Unshare the specified share.  How much error checking should be
1792549ec3ffSdougm  * done? We only do basic errors for now.
1793549ec3ffSdougm  */
1794549ec3ffSdougm static int
1795549ec3ffSdougm nfs_disable_share(char *share)
1796549ec3ffSdougm {
1797549ec3ffSdougm 	int err;
1798549ec3ffSdougm 	int ret = SA_OK;
1799549ec3ffSdougm 
1800549ec3ffSdougm 	if (share != NULL) {
1801549ec3ffSdougm 		err = exportfs(share, NULL);
1802549ec3ffSdougm 		if (err < 0) {
1803a3351425Sdougm 			/*
1804a3351425Sdougm 			 * TBD: only an error in some cases - need
1805a3351425Sdougm 			 * better analysis
1806a3351425Sdougm 			 */
1807549ec3ffSdougm 			switch (errno) {
1808549ec3ffSdougm 			case EPERM:
1809549ec3ffSdougm 			case EACCES:
1810549ec3ffSdougm 				ret = SA_NO_PERMISSION;
1811a3351425Sdougm 				if (getzoneid() != GLOBAL_ZONEID)
1812549ec3ffSdougm 					ret = SA_NOT_SUPPORTED;
1813549ec3ffSdougm 				break;
1814549ec3ffSdougm 			case EINVAL:
1815549ec3ffSdougm 			case ENOENT:
1816549ec3ffSdougm 				ret = SA_NO_SUCH_PATH;
1817549ec3ffSdougm 				break;
1818549ec3ffSdougm 			default:
1819549ec3ffSdougm 				ret = SA_SYSTEM_ERR;
1820549ec3ffSdougm 				break;
1821549ec3ffSdougm 			}
1822549ec3ffSdougm 		}
1823549ec3ffSdougm 		if (ret == SA_OK || ret == SA_NO_SUCH_PATH) {
1824549ec3ffSdougm 			(void) sa_delete_sharetab(share, "nfs");
1825549ec3ffSdougm 			/* just in case it was logged */
1826549ec3ffSdougm 			(void) nfslogtab_deactivate(share);
1827549ec3ffSdougm 		}
1828549ec3ffSdougm 	}
1829549ec3ffSdougm 	return (ret);
1830549ec3ffSdougm }
1831549ec3ffSdougm 
1832549ec3ffSdougm /*
1833549ec3ffSdougm  * check ro vs rw values.  Over time this may get beefed up.
1834549ec3ffSdougm  * for now it just does simple checks.
1835549ec3ffSdougm  */
1836549ec3ffSdougm 
1837549ec3ffSdougm static int
1838549ec3ffSdougm check_rorw(char *v1, char *v2)
1839549ec3ffSdougm {
1840549ec3ffSdougm 	int ret = SA_OK;
1841549ec3ffSdougm 	if (strcmp(v1, v2) == 0)
1842549ec3ffSdougm 		ret = SA_VALUE_CONFLICT;
1843549ec3ffSdougm 	return (ret);
1844549ec3ffSdougm }
1845549ec3ffSdougm 
1846549ec3ffSdougm /*
1847549ec3ffSdougm  * nfs_validate_property(property, parent)
1848549ec3ffSdougm  *
1849549ec3ffSdougm  * Check that the property has a legitimate value for its type.
1850549ec3ffSdougm  */
1851549ec3ffSdougm 
1852549ec3ffSdougm static int
1853549ec3ffSdougm nfs_validate_property(sa_property_t property, sa_optionset_t parent)
1854549ec3ffSdougm {
1855549ec3ffSdougm 	int ret = SA_OK;
1856549ec3ffSdougm 	char *propname;
1857549ec3ffSdougm 	char *other;
1858549ec3ffSdougm 	int optindex;
1859549ec3ffSdougm 	nfsl_config_t *configlist;
1860549ec3ffSdougm 	sa_group_t parent_group;
1861549ec3ffSdougm 	char *value;
1862549ec3ffSdougm 
1863549ec3ffSdougm 	propname = sa_get_property_attr(property, "type");
1864549ec3ffSdougm 
1865549ec3ffSdougm 	if ((optindex = findopt(propname)) < 0)
1866549ec3ffSdougm 		ret = SA_NO_SUCH_PROP;
1867549ec3ffSdougm 
1868549ec3ffSdougm 	/* need to validate value range here as well */
1869549ec3ffSdougm 
1870549ec3ffSdougm 	if (ret == SA_OK) {
1871549ec3ffSdougm 		parent_group = sa_get_parent_group((sa_share_t)parent);
1872a3351425Sdougm 		if (optdefs[optindex].share && !sa_is_share(parent_group))
1873549ec3ffSdougm 			ret = SA_PROP_SHARE_ONLY;
1874549ec3ffSdougm 	}
1875549ec3ffSdougm 	if (ret == SA_OK) {
1876549ec3ffSdougm 		value = sa_get_property_attr(property, "value");
1877549ec3ffSdougm 		if (value != NULL) {
1878549ec3ffSdougm 			/* first basic type checking */
1879549ec3ffSdougm 			switch (optdefs[optindex].type) {
1880549ec3ffSdougm 			case OPT_TYPE_NUMBER:
1881549ec3ffSdougm 				/* check that the value is all digits */
1882549ec3ffSdougm 				if (!is_a_number(value))
1883549ec3ffSdougm 					ret = SA_BAD_VALUE;
1884549ec3ffSdougm 				break;
1885549ec3ffSdougm 			case OPT_TYPE_BOOLEAN:
1886549ec3ffSdougm 				if (strlen(value) == 0 ||
1887549ec3ffSdougm 				    strcasecmp(value, "true") == 0 ||
1888549ec3ffSdougm 				    strcmp(value, "1") == 0 ||
1889549ec3ffSdougm 				    strcasecmp(value, "false") == 0 ||
1890549ec3ffSdougm 				    strcmp(value, "0") == 0) {
1891549ec3ffSdougm 					ret = SA_OK;
1892549ec3ffSdougm 				} else {
1893549ec3ffSdougm 					ret = SA_BAD_VALUE;
1894549ec3ffSdougm 				}
1895549ec3ffSdougm 				break;
1896549ec3ffSdougm 			case OPT_TYPE_USER:
1897549ec3ffSdougm 				if (!is_a_number(value)) {
1898549ec3ffSdougm 					struct passwd *pw;
1899a3351425Sdougm 					/*
1900a3351425Sdougm 					 * in this case it would have to be a
1901a3351425Sdougm 					 * user name
1902a3351425Sdougm 					 */
1903549ec3ffSdougm 					pw = getpwnam(value);
1904549ec3ffSdougm 					if (pw == NULL)
1905549ec3ffSdougm 						ret = SA_BAD_VALUE;
1906549ec3ffSdougm 					endpwent();
1907549ec3ffSdougm 				} else {
1908549ec3ffSdougm 					uint64_t intval;
1909549ec3ffSdougm 					intval = strtoull(value, NULL, 0);
1910549ec3ffSdougm 					if (intval > UID_MAX && intval != ~0)
1911549ec3ffSdougm 						ret = SA_BAD_VALUE;
1912549ec3ffSdougm 				}
1913549ec3ffSdougm 				break;
1914549ec3ffSdougm 			case OPT_TYPE_FILE:
1915549ec3ffSdougm 				if (strcmp(value, "..") == 0 ||
1916549ec3ffSdougm 				    strchr(value, '/') != NULL) {
1917549ec3ffSdougm 					ret = SA_BAD_VALUE;
1918549ec3ffSdougm 				}
1919549ec3ffSdougm 				break;
1920549ec3ffSdougm 			case OPT_TYPE_ACCLIST:
1921549ec3ffSdougm 				/*
1922549ec3ffSdougm 				 * access list handling. Should eventually
1923549ec3ffSdougm 				 * validate that all the values make sense.
1924549ec3ffSdougm 				 * Also, ro and rw may have cross value
1925549ec3ffSdougm 				 * conflicts.
1926549ec3ffSdougm 				 */
1927549ec3ffSdougm 				if (strcmp(propname, SHOPT_RO) == 0)
1928549ec3ffSdougm 					other = SHOPT_RW;
1929549ec3ffSdougm 				else if (strcmp(propname, SHOPT_RW) == 0)
1930549ec3ffSdougm 					other = SHOPT_RO;
1931549ec3ffSdougm 				else
1932549ec3ffSdougm 					other = NULL;
1933a3351425Sdougm 
1934549ec3ffSdougm 				if (other != NULL && parent != NULL) {
1935549ec3ffSdougm 					/* compare rw(ro) with ro(rw) */
1936549ec3ffSdougm 					sa_property_t oprop;
1937549ec3ffSdougm 					oprop = sa_get_property(parent, other);
1938549ec3ffSdougm 					if (oprop != NULL) {
1939a3351425Sdougm 						/*
1940a3351425Sdougm 						 * only potential
1941a3351425Sdougm 						 * confusion if other
1942a3351425Sdougm 						 * exists
1943a3351425Sdougm 						 */
1944549ec3ffSdougm 						char *ovalue;
1945a3351425Sdougm 						ovalue = sa_get_property_attr(
1946a3351425Sdougm 						    oprop, "value");
1947549ec3ffSdougm 						if (ovalue != NULL) {
1948a3351425Sdougm 							ret = check_rorw(value,
1949a3351425Sdougm 							    ovalue);
1950a3351425Sdougm 							sa_free_attr_string(
1951a3351425Sdougm 							    ovalue);
1952549ec3ffSdougm 						}
1953549ec3ffSdougm 					}
1954549ec3ffSdougm 				}
1955549ec3ffSdougm 				break;
1956549ec3ffSdougm 			case OPT_TYPE_LOGTAG:
1957549ec3ffSdougm 				if (nfsl_getconfig_list(&configlist) == 0) {
1958549ec3ffSdougm 					int error;
1959a3351425Sdougm 					if (value == NULL ||
1960a3351425Sdougm 					    strlen(value) == 0) {
1961549ec3ffSdougm 						if (value != NULL)
1962a3351425Sdougm 							sa_free_attr_string(
1963a3351425Sdougm 							    value);
1964549ec3ffSdougm 						value = strdup("global");
1965549ec3ffSdougm 					}
1966a3351425Sdougm 					if (value != NULL &&
1967a3351425Sdougm 					    nfsl_findconfig(configlist, value,
1968a3351425Sdougm 					    &error) == NULL) {
1969549ec3ffSdougm 						ret = SA_BAD_VALUE;
1970a3351425Sdougm 					} else {
1971a3351425Sdougm 						nfsl_freeconfig_list(
1972a3351425Sdougm 						    &configlist);
1973a3351425Sdougm 					}
1974549ec3ffSdougm 				} else {
1975549ec3ffSdougm 					ret = SA_CONFIG_ERR;
1976549ec3ffSdougm 				}
1977549ec3ffSdougm 				break;
1978549ec3ffSdougm 			case OPT_TYPE_STRING:
1979549ec3ffSdougm 				/* whatever is here should be ok */
1980549ec3ffSdougm 				break;
1981549ec3ffSdougm 			case OPT_TYPE_SECURITY:
1982549ec3ffSdougm 				/*
1983549ec3ffSdougm 				 * The "sec" property isn't used in the
1984549ec3ffSdougm 				 * non-legacy parts of sharemgr. We need to
1985549ec3ffSdougm 				 * reject it here. For legacy, it is pulled
1986549ec3ffSdougm 				 * out well before we get here.
1987549ec3ffSdougm 				 */
1988549ec3ffSdougm 				ret = SA_NO_SUCH_PROP;
1989549ec3ffSdougm 				break;
1990549ec3ffSdougm 			default:
1991549ec3ffSdougm 				break;
1992549ec3ffSdougm 			}
1993549ec3ffSdougm 			sa_free_attr_string(value);
1994549ec3ffSdougm 			if (ret == SA_OK && optdefs[optindex].check != NULL) {
1995549ec3ffSdougm 				/* do the property specific check */
1996549ec3ffSdougm 				ret = optdefs[optindex].check(property);
1997549ec3ffSdougm 			}
1998549ec3ffSdougm 		}
1999549ec3ffSdougm 	}
2000549ec3ffSdougm 
2001549ec3ffSdougm 	if (propname != NULL)
2002549ec3ffSdougm 		sa_free_attr_string(propname);
2003549ec3ffSdougm 	return (ret);
2004549ec3ffSdougm }
2005549ec3ffSdougm 
2006549ec3ffSdougm /*
2007549ec3ffSdougm  * Protocol management functions
2008549ec3ffSdougm  *
2009549ec3ffSdougm  * Properties defined in the default files are defined in
2010549ec3ffSdougm  * proto_option_defs for parsing and validation. If "other" and
2011549ec3ffSdougm  * "compare" are set, then the value for this property should be
2012549ec3ffSdougm  * compared against the property specified in "other" using the
2013549ec3ffSdougm  * "compare" check (either <= or >=) in order to ensure that the
2014549ec3ffSdougm  * values are in the correct range.  E.g. setting server_versmin
2015549ec3ffSdougm  * higher than server_versmax should not be allowed.
2016549ec3ffSdougm  */
2017549ec3ffSdougm 
2018549ec3ffSdougm struct proto_option_defs {
2019549ec3ffSdougm 	char *tag;
2020549ec3ffSdougm 	char *name;	/* display name -- remove protocol identifier */
2021549ec3ffSdougm 	int index;
2022549ec3ffSdougm 	int type;
2023549ec3ffSdougm 	union {
2024549ec3ffSdougm 	    int intval;
2025549ec3ffSdougm 	    char *string;
2026549ec3ffSdougm 	} defvalue;
2027549ec3ffSdougm 	uint32_t svcs;
2028549ec3ffSdougm 	int32_t minval;
2029549ec3ffSdougm 	int32_t maxval;
2030549ec3ffSdougm 	char *file;
2031549ec3ffSdougm 	char *other;
2032549ec3ffSdougm 	int compare;
2033549ec3ffSdougm #define	OPT_CMP_GE	0
2034549ec3ffSdougm #define	OPT_CMP_LE	1
2035549ec3ffSdougm 	int (*check)(char *);
2036549ec3ffSdougm } proto_options[] = {
2037549ec3ffSdougm #define	PROTO_OPT_NFSD_SERVERS			0
2038549ec3ffSdougm 	{"nfsd_servers",
2039549ec3ffSdougm 	    "servers", PROTO_OPT_NFSD_SERVERS, OPT_TYPE_NUMBER, 16, SVC_NFSD,
2040549ec3ffSdougm 	    1, INT32_MAX, NFSADMIN},
2041549ec3ffSdougm #define	PROTO_OPT_LOCKD_LISTEN_BACKLOG		1
2042549ec3ffSdougm 	{"lockd_listen_backlog",
2043549ec3ffSdougm 	    "lockd_listen_backlog", PROTO_OPT_LOCKD_LISTEN_BACKLOG,
2044549ec3ffSdougm 	    OPT_TYPE_NUMBER, 32, SVC_LOCKD, 32, INT32_MAX, NFSADMIN},
2045549ec3ffSdougm #define	PROTO_OPT_LOCKD_SERVERS			2
2046549ec3ffSdougm 	{"lockd_servers",
2047549ec3ffSdougm 	    "lockd_servers", PROTO_OPT_LOCKD_SERVERS, OPT_TYPE_NUMBER, 20,
2048549ec3ffSdougm 	    SVC_LOCKD, 1, INT32_MAX, NFSADMIN},
2049549ec3ffSdougm #define	PROTO_OPT_LOCKD_RETRANSMIT_TIMEOUT	3
2050549ec3ffSdougm 	{"lockd_retransmit_timeout",
2051549ec3ffSdougm 	    "lockd_retransmit_timeout", PROTO_OPT_LOCKD_RETRANSMIT_TIMEOUT,
2052549ec3ffSdougm 	    OPT_TYPE_NUMBER, 5, SVC_LOCKD, 0, INT32_MAX, NFSADMIN},
2053549ec3ffSdougm #define	PROTO_OPT_GRACE_PERIOD			4
2054549ec3ffSdougm 	{"grace_period",
2055549ec3ffSdougm 	    "grace_period", PROTO_OPT_GRACE_PERIOD, OPT_TYPE_NUMBER, 90,
2056549ec3ffSdougm 	    SVC_LOCKD, 0, INT32_MAX, NFSADMIN},
2057549ec3ffSdougm #define	PROTO_OPT_NFS_SERVER_VERSMIN		5
2058549ec3ffSdougm 	{"nfs_server_versmin",
2059549ec3ffSdougm 	    "server_versmin", PROTO_OPT_NFS_SERVER_VERSMIN, OPT_TYPE_NUMBER,
2060549ec3ffSdougm 	    (int)NFS_VERSMIN_DEFAULT, SVC_NFSD|SVC_MOUNTD, NFS_VERSMIN,
2061549ec3ffSdougm 	    NFS_VERSMAX, NFSADMIN, "server_versmax", OPT_CMP_LE},
2062549ec3ffSdougm #define	PROTO_OPT_NFS_SERVER_VERSMAX		6
2063549ec3ffSdougm 	{"nfs_server_versmax",
2064549ec3ffSdougm 	    "server_versmax", PROTO_OPT_NFS_SERVER_VERSMAX, OPT_TYPE_NUMBER,
2065549ec3ffSdougm 	    (int)NFS_VERSMAX_DEFAULT, SVC_NFSD|SVC_MOUNTD, NFS_VERSMIN,
2066549ec3ffSdougm 	    NFS_VERSMAX, NFSADMIN, "server_versmin", OPT_CMP_GE},
2067549ec3ffSdougm #define	PROTO_OPT_NFS_CLIENT_VERSMIN		7
2068549ec3ffSdougm 	{"nfs_client_versmin",
2069549ec3ffSdougm 	    "client_versmin", PROTO_OPT_NFS_CLIENT_VERSMIN, OPT_TYPE_NUMBER,
2070549ec3ffSdougm 	    (int)NFS_VERSMIN_DEFAULT, NULL, NFS_VERSMIN, NFS_VERSMAX,
2071549ec3ffSdougm 	    NFSADMIN, "client_versmax", OPT_CMP_LE},
2072549ec3ffSdougm #define	PROTO_OPT_NFS_CLIENT_VERSMAX		8
2073549ec3ffSdougm 	{"nfs_client_versmax",
2074549ec3ffSdougm 	    "client_versmax", PROTO_OPT_NFS_CLIENT_VERSMAX, OPT_TYPE_NUMBER,
2075549ec3ffSdougm 	    (int)NFS_VERSMAX_DEFAULT, NULL, NFS_VERSMIN, NFS_VERSMAX,
2076549ec3ffSdougm 	    NFSADMIN, "client_versmin", OPT_CMP_GE},
2077549ec3ffSdougm #define	PROTO_OPT_NFS_SERVER_DELEGATION		9
2078549ec3ffSdougm 	{"nfs_server_delegation",
2079549ec3ffSdougm 	    "server_delegation", PROTO_OPT_NFS_SERVER_DELEGATION,
2080549ec3ffSdougm 	    OPT_TYPE_ONOFF, NFS_SERVER_DELEGATION_DEFAULT, SVC_NFSD, 0, 0,
2081549ec3ffSdougm 	    NFSADMIN},
2082549ec3ffSdougm #define	PROTO_OPT_NFSMAPID_DOMAIN		10
2083549ec3ffSdougm 	{"nfsmapid_domain",
2084549ec3ffSdougm 	    "nfsmapid_domain", PROTO_OPT_NFSMAPID_DOMAIN, OPT_TYPE_DOMAIN,
2085549ec3ffSdougm 	    NULL, SVC_NFSMAPID, 0, 0, NFSADMIN},
2086549ec3ffSdougm #define	PROTO_OPT_NFSD_MAX_CONNECTIONS		11
2087549ec3ffSdougm 	{"nfsd_max_connections",
2088549ec3ffSdougm 	    "max_connections", PROTO_OPT_NFSD_MAX_CONNECTIONS,
2089549ec3ffSdougm 	    OPT_TYPE_NUMBER, -1, SVC_NFSD, -1, INT32_MAX, NFSADMIN},
2090549ec3ffSdougm #define	PROTO_OPT_NFSD_PROTOCOL			12
2091549ec3ffSdougm 	{"nfsd_protocol",
2092549ec3ffSdougm 	    "protocol", PROTO_OPT_NFSD_PROTOCOL, OPT_TYPE_PROTOCOL, 0,
2093549ec3ffSdougm 	    SVC_NFSD, 0, 0, NFSADMIN},
2094549ec3ffSdougm #define	PROTO_OPT_NFSD_LISTEN_BACKLOG		13
2095549ec3ffSdougm 	{"nfsd_listen_backlog",
2096549ec3ffSdougm 	    "listen_backlog", PROTO_OPT_NFSD_LISTEN_BACKLOG,
2097549ec3ffSdougm 	    OPT_TYPE_NUMBER, 0,
2098549ec3ffSdougm 	    SVC_LOCKD, 0, INT32_MAX, NFSADMIN},
2099549ec3ffSdougm 	{NULL}
2100549ec3ffSdougm };
2101549ec3ffSdougm 
2102549ec3ffSdougm /*
2103549ec3ffSdougm  * the protoset holds the defined options so we don't have to read
2104549ec3ffSdougm  * them multiple times
2105549ec3ffSdougm  */
2106549ec3ffSdougm sa_protocol_properties_t protoset;
2107549ec3ffSdougm 
2108549ec3ffSdougm static int
2109549ec3ffSdougm findprotoopt(char *name, int whichname)
2110549ec3ffSdougm {
2111549ec3ffSdougm 	int i;
2112549ec3ffSdougm 	for (i = 0; proto_options[i].tag != NULL; i++) {
2113549ec3ffSdougm 		if (whichname == 1) {
2114549ec3ffSdougm 			if (strcasecmp(proto_options[i].name, name) == 0)
2115549ec3ffSdougm 			return (i);
2116549ec3ffSdougm 		} else {
2117549ec3ffSdougm 			if (strcasecmp(proto_options[i].tag, name) == 0)
2118549ec3ffSdougm 				return (i);
2119549ec3ffSdougm 		}
2120549ec3ffSdougm 	}
2121549ec3ffSdougm 	return (-1);
2122549ec3ffSdougm }
2123549ec3ffSdougm 
2124549ec3ffSdougm /*
2125549ec3ffSdougm  * fixcaselower(str)
2126549ec3ffSdougm  *
2127549ec3ffSdougm  * convert a string to lower case (inplace).
2128549ec3ffSdougm  */
2129549ec3ffSdougm 
2130549ec3ffSdougm static void
2131549ec3ffSdougm fixcaselower(char *str)
2132549ec3ffSdougm {
2133549ec3ffSdougm 	while (*str) {
2134549ec3ffSdougm 		*str = tolower(*str);
2135549ec3ffSdougm 		str++;
2136549ec3ffSdougm 	}
2137549ec3ffSdougm }
2138549ec3ffSdougm 
2139549ec3ffSdougm /*
2140549ec3ffSdougm  * fixcaseupper(str)
2141549ec3ffSdougm  *
2142549ec3ffSdougm  * convert a string to upper case (inplace).
2143549ec3ffSdougm  */
2144549ec3ffSdougm 
2145549ec3ffSdougm static void
2146549ec3ffSdougm fixcaseupper(char *str)
2147549ec3ffSdougm {
2148549ec3ffSdougm 	while (*str) {
2149549ec3ffSdougm 		*str = toupper(*str);
2150549ec3ffSdougm 		str++;
2151549ec3ffSdougm 	}
2152549ec3ffSdougm }
2153549ec3ffSdougm 
2154549ec3ffSdougm /*
2155330ef417Sdougm  * skipwhitespace(str)
2156330ef417Sdougm  *
2157330ef417Sdougm  * Skip leading white space. It is assumed that it is called with a
2158330ef417Sdougm  * valid pointer.
2159330ef417Sdougm  */
2160330ef417Sdougm 
2161330ef417Sdougm static char *
2162330ef417Sdougm skipwhitespace(char *str)
2163330ef417Sdougm {
2164330ef417Sdougm 	while (*str && isspace(*str))
2165330ef417Sdougm 		str++;
2166330ef417Sdougm 
2167330ef417Sdougm 	return (str);
2168330ef417Sdougm }
2169330ef417Sdougm 
2170330ef417Sdougm /*
2171a3351425Sdougm  * extractprop()
2172a3351425Sdougm  *
2173a3351425Sdougm  * Extract the property and value out of the line and create the
2174a3351425Sdougm  * property in the optionset.
2175a3351425Sdougm  */
2176a3351425Sdougm static void
2177a3351425Sdougm extractprop(char *name, char *value)
2178a3351425Sdougm {
2179a3351425Sdougm 	sa_property_t prop;
2180a3351425Sdougm 	int index;
2181a3351425Sdougm 	/*
2182a3351425Sdougm 	 * Remove any leading
2183a3351425Sdougm 	 * white space.
2184a3351425Sdougm 	 */
2185a3351425Sdougm 	name = skipwhitespace(name);
2186a3351425Sdougm 
2187a3351425Sdougm 	index = findprotoopt(name, 0);
2188a3351425Sdougm 	if (index >= 0) {
2189a3351425Sdougm 		fixcaselower(name);
2190a3351425Sdougm 		prop = sa_create_property(proto_options[index].name, value);
2191a3351425Sdougm 		if (prop != NULL)
2192a3351425Sdougm 			(void) sa_add_protocol_property(protoset, prop);
2193a3351425Sdougm 	}
2194a3351425Sdougm }
2195a3351425Sdougm 
2196a3351425Sdougm /*
2197549ec3ffSdougm  * initprotofromdefault()
2198549ec3ffSdougm  *
2199549ec3ffSdougm  * read the default file(s) and add the defined values to the
2200549ec3ffSdougm  * protoset.  Note that default values are known from the built in
2201549ec3ffSdougm  * table in case the file doesn't have a definition.
2202549ec3ffSdougm  */
2203549ec3ffSdougm 
2204549ec3ffSdougm static int
2205549ec3ffSdougm initprotofromdefault()
2206549ec3ffSdougm {
2207549ec3ffSdougm 	FILE *nfs;
2208549ec3ffSdougm 	char buff[BUFSIZ];
2209549ec3ffSdougm 	char *name;
2210549ec3ffSdougm 	char *value;
2211549ec3ffSdougm 
2212549ec3ffSdougm 	protoset = sa_create_protocol_properties("nfs");
2213549ec3ffSdougm 
2214549ec3ffSdougm 	if (protoset != NULL) {
2215549ec3ffSdougm 		nfs = fopen(NFSADMIN, "r");
2216549ec3ffSdougm 		if (nfs != NULL) {
2217549ec3ffSdougm 			while (fgets(buff, sizeof (buff), nfs) != NULL) {
2218549ec3ffSdougm 				switch (buff[0]) {
2219549ec3ffSdougm 				case '\n':
2220549ec3ffSdougm 				case '#':
2221549ec3ffSdougm 					/* skip */
2222549ec3ffSdougm 					break;
2223549ec3ffSdougm 				default:
2224549ec3ffSdougm 					name = buff;
2225549ec3ffSdougm 					buff[strlen(buff) - 1] = '\0';
2226549ec3ffSdougm 					value = strchr(name, '=');
2227549ec3ffSdougm 					if (value != NULL) {
2228549ec3ffSdougm 						*value++ = '\0';
2229a3351425Sdougm 						extractprop(name, value);
2230549ec3ffSdougm 					}
2231549ec3ffSdougm 				}
2232549ec3ffSdougm 			}
2233549ec3ffSdougm 			if (nfs != NULL)
2234549ec3ffSdougm 				(void) fclose(nfs);
2235549ec3ffSdougm 		}
2236549ec3ffSdougm 	}
2237549ec3ffSdougm 	if (protoset == NULL)
2238549ec3ffSdougm 		return (SA_NO_MEMORY);
2239549ec3ffSdougm 	return (SA_OK);
2240549ec3ffSdougm }
2241549ec3ffSdougm 
2242549ec3ffSdougm /*
2243a3351425Sdougm  * add_defaults()
2244549ec3ffSdougm  *
2245549ec3ffSdougm  * Add the default values for any property not defined in the parsing
2246549ec3ffSdougm  * of the default files. Values are set according to their defined
2247549ec3ffSdougm  * types.
2248549ec3ffSdougm  */
2249549ec3ffSdougm 
2250549ec3ffSdougm static void
2251549ec3ffSdougm add_defaults()
2252549ec3ffSdougm {
2253549ec3ffSdougm 	int i;
2254549ec3ffSdougm 	char number[MAXDIGITS];
2255549ec3ffSdougm 
2256549ec3ffSdougm 	for (i = 0; proto_options[i].tag != NULL; i++) {
2257549ec3ffSdougm 		sa_property_t prop;
2258a3351425Sdougm 		prop = sa_get_protocol_property(protoset,
2259a3351425Sdougm 		    proto_options[i].name);
2260549ec3ffSdougm 		if (prop == NULL) {
2261549ec3ffSdougm 			/* add the default value */
2262549ec3ffSdougm 			switch (proto_options[i].type) {
2263549ec3ffSdougm 			case OPT_TYPE_NUMBER:
2264549ec3ffSdougm 				(void) snprintf(number, sizeof (number), "%d",
2265549ec3ffSdougm 				    proto_options[i].defvalue.intval);
2266a3351425Sdougm 				prop = sa_create_property(proto_options[i].name,
2267a3351425Sdougm 				    number);
2268549ec3ffSdougm 				break;
2269549ec3ffSdougm 
2270549ec3ffSdougm 			case OPT_TYPE_BOOLEAN:
2271549ec3ffSdougm 				prop = sa_create_property(proto_options[i].name,
2272549ec3ffSdougm 				    proto_options[i].defvalue.intval ?
2273549ec3ffSdougm 				    "true" : "false");
2274549ec3ffSdougm 				break;
2275549ec3ffSdougm 
2276549ec3ffSdougm 			case OPT_TYPE_ONOFF:
2277549ec3ffSdougm 				prop = sa_create_property(proto_options[i].name,
2278549ec3ffSdougm 				    proto_options[i].defvalue.intval ?
2279549ec3ffSdougm 				    "on" : "off");
2280549ec3ffSdougm 				break;
2281549ec3ffSdougm 
2282549ec3ffSdougm 			default:
2283549ec3ffSdougm 				/* treat as strings of zero length */
2284a3351425Sdougm 				prop = sa_create_property(proto_options[i].name,
2285a3351425Sdougm 				    "");
2286549ec3ffSdougm 				break;
2287549ec3ffSdougm 			}
2288549ec3ffSdougm 			if (prop != NULL)
2289549ec3ffSdougm 				(void) sa_add_protocol_property(protoset, prop);
2290549ec3ffSdougm 		}
2291549ec3ffSdougm 	}
2292549ec3ffSdougm }
2293549ec3ffSdougm 
2294549ec3ffSdougm static void
2295549ec3ffSdougm free_protoprops()
2296549ec3ffSdougm {
2297549ec3ffSdougm 	xmlFreeNode(protoset);
2298549ec3ffSdougm }
2299549ec3ffSdougm 
2300549ec3ffSdougm /*
2301549ec3ffSdougm  * nfs_init()
2302549ec3ffSdougm  *
2303549ec3ffSdougm  * Initialize the NFS plugin.
2304549ec3ffSdougm  */
2305549ec3ffSdougm 
2306549ec3ffSdougm static int
2307549ec3ffSdougm nfs_init()
2308549ec3ffSdougm {
2309549ec3ffSdougm 	int ret = SA_OK;
2310549ec3ffSdougm 
2311549ec3ffSdougm 	if (sa_plugin_ops.sa_init != nfs_init)
2312549ec3ffSdougm 		(void) printf(dgettext(TEXT_DOMAIN,
2313549ec3ffSdougm 		    "NFS plugin not properly initialized\n"));
2314549ec3ffSdougm 
2315549ec3ffSdougm 	ret = initprotofromdefault();
2316a3351425Sdougm 	if (ret == SA_OK)
2317549ec3ffSdougm 		add_defaults();
2318549ec3ffSdougm 
2319549ec3ffSdougm 	return (ret);
2320549ec3ffSdougm }
2321549ec3ffSdougm 
2322549ec3ffSdougm /*
2323549ec3ffSdougm  * nfs_fini()
2324549ec3ffSdougm  *
2325549ec3ffSdougm  * uninitialize the NFS plugin. Want to avoid memory leaks.
2326549ec3ffSdougm  */
2327549ec3ffSdougm 
2328549ec3ffSdougm static void
2329549ec3ffSdougm nfs_fini()
2330549ec3ffSdougm {
2331549ec3ffSdougm 	free_protoprops();
2332549ec3ffSdougm }
2333549ec3ffSdougm 
2334549ec3ffSdougm /*
2335549ec3ffSdougm  * nfs_get_proto_set()
2336549ec3ffSdougm  *
2337549ec3ffSdougm  * Return an optionset with all the protocol specific properties in
2338549ec3ffSdougm  * it.
2339549ec3ffSdougm  */
2340549ec3ffSdougm 
2341549ec3ffSdougm static sa_protocol_properties_t
2342549ec3ffSdougm nfs_get_proto_set()
2343549ec3ffSdougm {
2344549ec3ffSdougm 	return (protoset);
2345549ec3ffSdougm }
2346549ec3ffSdougm 
2347549ec3ffSdougm struct deffile {
2348549ec3ffSdougm 	struct deffile *next;
2349549ec3ffSdougm 	char *line;
2350549ec3ffSdougm };
2351549ec3ffSdougm 
2352549ec3ffSdougm /*
2353549ec3ffSdougm  * read_default_file(fname)
2354549ec3ffSdougm  *
2355549ec3ffSdougm  * Read the specified default file. We return a list of entries. This
2356549ec3ffSdougm  * get used for adding or removing values.
2357549ec3ffSdougm  */
2358549ec3ffSdougm 
2359549ec3ffSdougm static struct deffile *
2360549ec3ffSdougm read_default_file(char *fname)
2361549ec3ffSdougm {
2362549ec3ffSdougm 	FILE *file;
2363549ec3ffSdougm 	struct deffile *defs = NULL;
2364549ec3ffSdougm 	struct deffile *newdef;
2365549ec3ffSdougm 	struct deffile *prevdef = NULL;
2366549ec3ffSdougm 	char buff[BUFSIZ * 2];
2367549ec3ffSdougm 
2368549ec3ffSdougm 	file = fopen(fname, "r");
2369549ec3ffSdougm 	if (file != NULL) {
2370549ec3ffSdougm 		while (fgets(buff, sizeof (buff), file) != NULL) {
2371a3351425Sdougm 			newdef = (struct deffile *)calloc(1,
2372a3351425Sdougm 			    sizeof (struct deffile));
2373549ec3ffSdougm 			if (newdef != NULL) {
2374330ef417Sdougm 				/* Make sure we skip any leading whitespace. */
2375330ef417Sdougm 				newdef->line = strdup(skipwhitespace(buff));
2376549ec3ffSdougm 				if (defs == NULL) {
2377549ec3ffSdougm 					prevdef = defs = newdef;
2378549ec3ffSdougm 				} else {
2379549ec3ffSdougm 					prevdef->next = newdef;
2380549ec3ffSdougm 					prevdef = newdef;
2381549ec3ffSdougm 				}
2382549ec3ffSdougm 			}
2383549ec3ffSdougm 		}
2384549ec3ffSdougm 	}
2385549ec3ffSdougm 	(void) fclose(file);
2386549ec3ffSdougm 	return (defs);
2387549ec3ffSdougm }
2388549ec3ffSdougm 
2389549ec3ffSdougm static void
2390549ec3ffSdougm free_default_file(struct deffile *defs)
2391549ec3ffSdougm {
2392549ec3ffSdougm 	struct deffile *curdefs = NULL;
2393549ec3ffSdougm 
2394549ec3ffSdougm 	while (defs != NULL) {
2395549ec3ffSdougm 		curdefs = defs;
2396549ec3ffSdougm 		defs = defs->next;
2397549ec3ffSdougm 		if (curdefs->line != NULL)
2398549ec3ffSdougm 			free(curdefs->line);
2399549ec3ffSdougm 		free(curdefs);
2400549ec3ffSdougm 	}
2401549ec3ffSdougm }
2402549ec3ffSdougm 
2403549ec3ffSdougm /*
2404549ec3ffSdougm  * write_default_file(fname, defs)
2405549ec3ffSdougm  *
2406549ec3ffSdougm  * Write the default file back.
2407549ec3ffSdougm  */
2408549ec3ffSdougm 
2409549ec3ffSdougm static int
2410549ec3ffSdougm write_default_file(char *fname, struct deffile *defs)
2411549ec3ffSdougm {
2412549ec3ffSdougm 	FILE *file;
2413549ec3ffSdougm 	int ret = SA_OK;
2414549ec3ffSdougm 	sigset_t old, new;
2415549ec3ffSdougm 
2416549ec3ffSdougm 	file = fopen(fname, "w+");
2417549ec3ffSdougm 	if (file != NULL) {
2418549ec3ffSdougm 		(void) sigprocmask(SIG_BLOCK, NULL, &new);
2419549ec3ffSdougm 		(void) sigaddset(&new, SIGHUP);
2420549ec3ffSdougm 		(void) sigaddset(&new, SIGINT);
2421549ec3ffSdougm 		(void) sigaddset(&new, SIGQUIT);
2422549ec3ffSdougm 		(void) sigaddset(&new, SIGTSTP);
2423549ec3ffSdougm 		(void) sigprocmask(SIG_SETMASK, &new, &old);
2424549ec3ffSdougm 		while (defs != NULL) {
2425549ec3ffSdougm 			(void) fputs(defs->line, file);
2426549ec3ffSdougm 			defs = defs->next;
2427549ec3ffSdougm 		}
2428549ec3ffSdougm 		(void) fsync(fileno(file));
2429549ec3ffSdougm 		(void) sigprocmask(SIG_SETMASK, &old, NULL);
2430549ec3ffSdougm 		(void) fclose(file);
2431549ec3ffSdougm 	} else {
2432549ec3ffSdougm 		switch (errno) {
2433549ec3ffSdougm 		case EPERM:
2434549ec3ffSdougm 		case EACCES:
2435549ec3ffSdougm 			ret = SA_NO_PERMISSION;
2436549ec3ffSdougm 			break;
2437549ec3ffSdougm 		default:
2438549ec3ffSdougm 			ret = SA_SYSTEM_ERR;
2439549ec3ffSdougm 		}
2440549ec3ffSdougm 	}
2441549ec3ffSdougm 	return (ret);
2442549ec3ffSdougm }
2443549ec3ffSdougm 
2444549ec3ffSdougm 
2445549ec3ffSdougm /*
2446549ec3ffSdougm  * set_default_file_value(tag, value)
2447549ec3ffSdougm  *
2448549ec3ffSdougm  * Set the default file value for tag to value. Then rewrite the file.
2449549ec3ffSdougm  * tag and value are always set.  The caller must ensure this.
2450549ec3ffSdougm  */
2451549ec3ffSdougm 
2452549ec3ffSdougm #define	MAX_STRING_LENGTH	256
2453549ec3ffSdougm static int
2454549ec3ffSdougm set_default_file_value(char *tag, char *value)
2455549ec3ffSdougm {
2456549ec3ffSdougm 	int ret = SA_OK;
2457549ec3ffSdougm 	struct deffile *root;
2458549ec3ffSdougm 	struct deffile *defs;
2459549ec3ffSdougm 	struct deffile *prev;
2460549ec3ffSdougm 	char string[MAX_STRING_LENGTH];
2461549ec3ffSdougm 	int len;
2462549ec3ffSdougm 	int update = 0;
2463549ec3ffSdougm 
2464549ec3ffSdougm 	(void) snprintf(string, MAX_STRING_LENGTH, "%s=", tag);
2465549ec3ffSdougm 	len = strlen(string);
2466549ec3ffSdougm 
2467549ec3ffSdougm 	root = defs = read_default_file(NFSADMIN);
2468549ec3ffSdougm 	if (root == NULL) {
2469549ec3ffSdougm 		if (errno == EPERM || errno == EACCES)
2470549ec3ffSdougm 			ret = SA_NO_PERMISSION;
2471549ec3ffSdougm 		else
2472549ec3ffSdougm 			ret = SA_SYSTEM_ERR;
2473549ec3ffSdougm 	} else {
2474549ec3ffSdougm 		while (defs != NULL) {
2475549ec3ffSdougm 			if (defs->line != NULL &&
2476549ec3ffSdougm 			    strncasecmp(defs->line, string, len) == 0) {
2477549ec3ffSdougm 				/* replace with the new value */
2478549ec3ffSdougm 				free(defs->line);
2479549ec3ffSdougm 				fixcaseupper(tag);
2480a3351425Sdougm 				(void) snprintf(string, sizeof (string),
2481a3351425Sdougm 				    "%s=%s\n", tag, value);
2482549ec3ffSdougm 				string[MAX_STRING_LENGTH - 1] = '\0';
2483549ec3ffSdougm 				defs->line = strdup(string);
2484549ec3ffSdougm 				update = 1;
2485549ec3ffSdougm 				break;
2486549ec3ffSdougm 			}
2487549ec3ffSdougm 			defs = defs->next;
2488549ec3ffSdougm 		}
2489549ec3ffSdougm 		if (!update) {
2490549ec3ffSdougm 			defs = root;
2491549ec3ffSdougm 			/* didn't find, so see if it is a comment */
2492549ec3ffSdougm 			(void) snprintf(string, MAX_STRING_LENGTH, "#%s=", tag);
2493549ec3ffSdougm 			len = strlen(string);
2494549ec3ffSdougm 			while (defs != NULL) {
2495549ec3ffSdougm 				if (strncasecmp(defs->line, string, len) == 0) {
2496549ec3ffSdougm 					/* replace with the new value */
2497549ec3ffSdougm 					free(defs->line);
2498549ec3ffSdougm 					fixcaseupper(tag);
2499549ec3ffSdougm 					(void) snprintf(string, sizeof (string),
2500549ec3ffSdougm 					    "%s=%s\n", tag, value);
2501549ec3ffSdougm 					string[MAX_STRING_LENGTH - 1] = '\0';
2502549ec3ffSdougm 					defs->line = strdup(string);
2503549ec3ffSdougm 					update = 1;
2504549ec3ffSdougm 					break;
2505549ec3ffSdougm 				}
2506549ec3ffSdougm 				defs = defs->next;
2507549ec3ffSdougm 			}
2508549ec3ffSdougm 		}
2509549ec3ffSdougm 		if (!update) {
2510549ec3ffSdougm 			fixcaseupper(tag);
2511549ec3ffSdougm 			(void) snprintf(string, sizeof (string), "%s=%s\n",
2512549ec3ffSdougm 			    tag, value);
2513549ec3ffSdougm 			prev = root;
2514549ec3ffSdougm 			while (prev->next != NULL)
2515549ec3ffSdougm 				prev = prev->next;
2516549ec3ffSdougm 			defs = malloc(sizeof (struct deffile));
2517549ec3ffSdougm 			prev->next = defs;
2518549ec3ffSdougm 			if (defs != NULL) {
2519549ec3ffSdougm 				defs->next = NULL;
2520549ec3ffSdougm 				defs->line = strdup(string);
2521549ec3ffSdougm 			}
2522549ec3ffSdougm 		}
2523549ec3ffSdougm 		if (update) {
2524549ec3ffSdougm 			ret = write_default_file(NFSADMIN, root);
2525549ec3ffSdougm 		}
2526549ec3ffSdougm 		free_default_file(root);
2527549ec3ffSdougm 	}
2528549ec3ffSdougm 	return (ret);
2529549ec3ffSdougm }
2530549ec3ffSdougm 
2531549ec3ffSdougm /*
2532549ec3ffSdougm  * service_in_state(service, chkstate)
2533549ec3ffSdougm  *
2534549ec3ffSdougm  * Want to know if the specified service is in the desired state
2535549ec3ffSdougm  * (chkstate) or not. Return true (1) if it is and false (0) if it
2536549ec3ffSdougm  * isn't.
2537549ec3ffSdougm  */
2538549ec3ffSdougm static int
2539549ec3ffSdougm service_in_state(char *service, const char *chkstate)
2540549ec3ffSdougm {
2541549ec3ffSdougm 	char *state;
2542549ec3ffSdougm 	int ret = B_FALSE;
2543549ec3ffSdougm 
2544549ec3ffSdougm 	state = smf_get_state(service);
2545549ec3ffSdougm 	if (state != NULL) {
2546549ec3ffSdougm 		/* got the state so get the equality for the return value */
2547549ec3ffSdougm 		ret = strcmp(state, chkstate) == 0 ? B_TRUE : B_FALSE;
2548549ec3ffSdougm 		free(state);
2549549ec3ffSdougm 	}
2550549ec3ffSdougm 	return (ret);
2551549ec3ffSdougm }
2552549ec3ffSdougm 
2553549ec3ffSdougm /*
2554549ec3ffSdougm  * restart_service(svcs)
2555549ec3ffSdougm  *
2556549ec3ffSdougm  * Walk through the bit mask of services that need to be restarted in
2557549ec3ffSdougm  * order to use the new property values. Some properties affect
2558549ec3ffSdougm  * multiple daemons. Should only restart a service if it is currently
2559549ec3ffSdougm  * enabled (online).
2560549ec3ffSdougm  */
2561549ec3ffSdougm 
2562549ec3ffSdougm static void
2563549ec3ffSdougm restart_service(uint32_t svcs)
2564549ec3ffSdougm {
2565549ec3ffSdougm 	uint32_t mask;
2566549ec3ffSdougm 	int ret;
2567549ec3ffSdougm 	char *service;
2568549ec3ffSdougm 
2569549ec3ffSdougm 	for (mask = 1; svcs != 0; mask <<= 1) {
2570549ec3ffSdougm 		switch (svcs & mask) {
2571549ec3ffSdougm 		case SVC_LOCKD:
2572549ec3ffSdougm 			service = LOCKD;
2573549ec3ffSdougm 			break;
2574549ec3ffSdougm 		case SVC_STATD:
2575549ec3ffSdougm 			service = STATD;
2576549ec3ffSdougm 			break;
2577549ec3ffSdougm 		case SVC_NFSD:
2578549ec3ffSdougm 			service = NFSD;
2579549ec3ffSdougm 			break;
2580549ec3ffSdougm 		case SVC_MOUNTD:
2581549ec3ffSdougm 			service = MOUNTD;
2582549ec3ffSdougm 			break;
2583549ec3ffSdougm 		case SVC_NFS4CBD:
2584549ec3ffSdougm 			service = NFS4CBD;
2585549ec3ffSdougm 			break;
2586549ec3ffSdougm 		case SVC_NFSMAPID:
2587549ec3ffSdougm 			service = NFSMAPID;
2588549ec3ffSdougm 			break;
2589549ec3ffSdougm 		case SVC_RQUOTAD:
2590549ec3ffSdougm 			service = RQUOTAD;
2591549ec3ffSdougm 			break;
2592549ec3ffSdougm 		case SVC_NFSLOGD:
2593549ec3ffSdougm 			service = NFSLOGD;
2594549ec3ffSdougm 			break;
2595549ec3ffSdougm 		default:
2596549ec3ffSdougm 			continue;
2597549ec3ffSdougm 		}
2598549ec3ffSdougm 
2599549ec3ffSdougm 		/*
2600549ec3ffSdougm 		 * Only attempt to restart the service if it is
2601549ec3ffSdougm 		 * currently running. In the future, it may be
2602549ec3ffSdougm 		 * desirable to use smf_refresh_instance if the NFS
2603549ec3ffSdougm 		 * services ever implement the refresh method.
2604549ec3ffSdougm 		 */
2605549ec3ffSdougm 		if (service_in_state(service, SCF_STATE_STRING_ONLINE)) {
2606549ec3ffSdougm 			ret = smf_restart_instance(service);
2607549ec3ffSdougm 			/*
2608549ec3ffSdougm 			 * There are only a few SMF errors at this point, but
2609549ec3ffSdougm 			 * it is also possible that a bad value may have put
2610549ec3ffSdougm 			 * the service into maintenance if there wasn't an
2611549ec3ffSdougm 			 * SMF level error.
2612549ec3ffSdougm 			 */
2613549ec3ffSdougm 			if (ret != 0) {
2614549ec3ffSdougm 				(void) fprintf(stderr,
2615549ec3ffSdougm 				    dgettext(TEXT_DOMAIN,
2616549ec3ffSdougm 				    "%s failed to restart: %s\n"),
2617549ec3ffSdougm 				    scf_strerror(scf_error()));
2618549ec3ffSdougm 			} else {
2619549ec3ffSdougm 				/*
2620549ec3ffSdougm 				 * Check whether it has gone to "maintenance"
2621549ec3ffSdougm 				 * mode or not. Maintenance implies something
2622549ec3ffSdougm 				 * went wrong.
2623549ec3ffSdougm 				 */
2624a3351425Sdougm 				if (service_in_state(service,
2625a3351425Sdougm 				    SCF_STATE_STRING_MAINT)) {
2626549ec3ffSdougm 					(void) fprintf(stderr,
2627549ec3ffSdougm 					    dgettext(TEXT_DOMAIN,
2628549ec3ffSdougm 					    "%s failed to restart\n"),
2629549ec3ffSdougm 					    service);
2630549ec3ffSdougm 				}
2631549ec3ffSdougm 			}
2632549ec3ffSdougm 		}
2633549ec3ffSdougm 		svcs &= ~mask;
2634549ec3ffSdougm 	}
2635549ec3ffSdougm }
2636549ec3ffSdougm 
2637549ec3ffSdougm /*
2638549ec3ffSdougm  * nfs_minmax_check(name, value)
2639549ec3ffSdougm  *
2640549ec3ffSdougm  * Verify that the value for the property specified by index is valid
2641549ec3ffSdougm  * relative to the opposite value in the case of a min/max variable.
2642549ec3ffSdougm  * Currently, server_minvers/server_maxvers and
2643549ec3ffSdougm  * client_minvers/client_maxvers are the only ones to check.
2644549ec3ffSdougm  */
2645549ec3ffSdougm 
2646549ec3ffSdougm static int
2647549ec3ffSdougm nfs_minmax_check(int index, int value)
2648549ec3ffSdougm {
2649549ec3ffSdougm 	int val;
2650549ec3ffSdougm 	char *pval;
2651549ec3ffSdougm 	sa_property_t prop;
2652549ec3ffSdougm 	sa_optionset_t opts;
2653549ec3ffSdougm 	int ret = B_TRUE;
2654549ec3ffSdougm 
2655549ec3ffSdougm 	if (proto_options[index].other != NULL) {
2656549ec3ffSdougm 		/* have a property to compare against */
2657549ec3ffSdougm 		opts = nfs_get_proto_set();
2658549ec3ffSdougm 		prop = sa_get_property(opts, proto_options[index].other);
2659549ec3ffSdougm 		/*
2660549ec3ffSdougm 		 * If we don't find the property, assume default
2661549ec3ffSdougm 		 * values which will work since the max will be at the
2662549ec3ffSdougm 		 * max and the min at the min.
2663549ec3ffSdougm 		 */
2664549ec3ffSdougm 		if (prop != NULL) {
2665549ec3ffSdougm 			pval = sa_get_property_attr(prop, "value");
2666549ec3ffSdougm 			if (pval != NULL) {
2667549ec3ffSdougm 				val = strtoul(pval, NULL, 0);
2668a3351425Sdougm 				if (proto_options[index].compare ==
2669a3351425Sdougm 				    OPT_CMP_LE) {
2670549ec3ffSdougm 					ret = value <= val ? B_TRUE : B_FALSE;
2671a3351425Sdougm 				} else if (proto_options[index].compare ==
2672a3351425Sdougm 				    OPT_CMP_GE) {
2673549ec3ffSdougm 					ret = value >= val ? B_TRUE : B_FALSE;
2674549ec3ffSdougm 				}
2675549ec3ffSdougm 			}
2676549ec3ffSdougm 		}
2677549ec3ffSdougm 	}
2678549ec3ffSdougm 	return (ret);
2679549ec3ffSdougm }
2680549ec3ffSdougm 
2681549ec3ffSdougm /*
2682549ec3ffSdougm  * nfs_validate_proto_prop(index, name, value)
2683549ec3ffSdougm  *
2684549ec3ffSdougm  * Verify that the property specifed by name can take the new
2685549ec3ffSdougm  * value. This is a sanity check to prevent bad values getting into
2686549ec3ffSdougm  * the default files. All values need to be checked against what is
2687549ec3ffSdougm  * allowed by their defined type. If a type isn't explicitly defined
2688549ec3ffSdougm  * here, it is treated as a string.
2689549ec3ffSdougm  *
2690549ec3ffSdougm  * Note that OPT_TYPE_NUMBER will additionally check that the value is
2691549ec3ffSdougm  * within the range specified and potentially against another property
2692549ec3ffSdougm  * value as well as specified in the proto_options members other and
2693549ec3ffSdougm  * compare.
2694549ec3ffSdougm  */
2695549ec3ffSdougm 
2696549ec3ffSdougm static int
2697549ec3ffSdougm nfs_validate_proto_prop(int index, char *name, char *value)
2698549ec3ffSdougm {
2699549ec3ffSdougm 	int ret = SA_OK;
2700549ec3ffSdougm 	char *cp;
2701549ec3ffSdougm #ifdef lint
2702549ec3ffSdougm 	name = name;
2703549ec3ffSdougm #endif
2704549ec3ffSdougm 
2705549ec3ffSdougm 	switch (proto_options[index].type) {
2706549ec3ffSdougm 	case OPT_TYPE_NUMBER:
2707549ec3ffSdougm 		if (!is_a_number(value))
2708549ec3ffSdougm 			ret = SA_BAD_VALUE;
2709549ec3ffSdougm 		else {
2710549ec3ffSdougm 			int val;
2711549ec3ffSdougm 			val = strtoul(value, NULL, 0);
2712549ec3ffSdougm 			if (val < proto_options[index].minval ||
2713549ec3ffSdougm 			    val > proto_options[index].maxval)
2714549ec3ffSdougm 				ret = SA_BAD_VALUE;
2715549ec3ffSdougm 			/*
2716549ec3ffSdougm 			 * For server_versmin/server_versmax and
2717549ec3ffSdougm 			 * client_versmin/client_versmax, the value of the
2718549ec3ffSdougm 			 * min(max) should be checked to be correct relative
2719549ec3ffSdougm 			 * to the current max(min).
2720549ec3ffSdougm 			 */
2721549ec3ffSdougm 			if (!nfs_minmax_check(index, val)) {
2722549ec3ffSdougm 				ret = SA_BAD_VALUE;
2723549ec3ffSdougm 			}
2724549ec3ffSdougm 		}
2725549ec3ffSdougm 		break;
2726549ec3ffSdougm 
2727549ec3ffSdougm 	case OPT_TYPE_DOMAIN:
2728549ec3ffSdougm 		/*
2729549ec3ffSdougm 		 * needs to be a qualified domain so will have at
2730549ec3ffSdougm 		 * least one period and other characters on either
2731549ec3ffSdougm 		 * side of it.  A zero length string is also allowed
2732549ec3ffSdougm 		 * and is the way to turn off the override.
2733549ec3ffSdougm 		 */
2734549ec3ffSdougm 		if (strlen(value) == 0)
2735549ec3ffSdougm 			break;
2736549ec3ffSdougm 		cp = strchr(value, '.');
2737549ec3ffSdougm 		if (cp == NULL || cp == value || strchr(value, '@') != NULL)
2738549ec3ffSdougm 			ret = SA_BAD_VALUE;
2739549ec3ffSdougm 		break;
2740549ec3ffSdougm 
2741549ec3ffSdougm 	case OPT_TYPE_BOOLEAN:
2742549ec3ffSdougm 		if (strlen(value) == 0 ||
2743549ec3ffSdougm 		    strcasecmp(value, "true") == 0 ||
2744549ec3ffSdougm 		    strcmp(value, "1") == 0 ||
2745549ec3ffSdougm 		    strcasecmp(value, "false") == 0 ||
2746549ec3ffSdougm 		    strcmp(value, "0") == 0) {
2747549ec3ffSdougm 			ret = SA_OK;
2748549ec3ffSdougm 		} else {
2749549ec3ffSdougm 			ret = SA_BAD_VALUE;
2750549ec3ffSdougm 		}
2751549ec3ffSdougm 		break;
2752549ec3ffSdougm 
2753549ec3ffSdougm 	case OPT_TYPE_ONOFF:
2754549ec3ffSdougm 		if (strcasecmp(value, "on") != 0 &&
2755549ec3ffSdougm 		    strcasecmp(value, "off") != 0) {
2756549ec3ffSdougm 			ret = SA_BAD_VALUE;
2757549ec3ffSdougm 		}
2758549ec3ffSdougm 		break;
2759549ec3ffSdougm 
2760549ec3ffSdougm 	case OPT_TYPE_PROTOCOL:
2761549ec3ffSdougm 		if (strcasecmp(value, "all") != 0 &&
2762549ec3ffSdougm 		    strcasecmp(value, "tcp") != 0 &&
2763549ec3ffSdougm 		    strcasecmp(value, "udp") != 0)
2764549ec3ffSdougm 			ret = SA_BAD_VALUE;
2765549ec3ffSdougm 		break;
2766549ec3ffSdougm 
2767549ec3ffSdougm 	default:
2768549ec3ffSdougm 		/* treat as a string */
2769549ec3ffSdougm 		break;
2770549ec3ffSdougm 	}
2771549ec3ffSdougm 	return (ret);
2772549ec3ffSdougm }
2773549ec3ffSdougm 
2774549ec3ffSdougm /*
2775549ec3ffSdougm  * nfs_set_proto_prop(prop)
2776549ec3ffSdougm  *
2777549ec3ffSdougm  * check that prop is valid.
2778549ec3ffSdougm  */
2779549ec3ffSdougm 
2780549ec3ffSdougm static int
2781549ec3ffSdougm nfs_set_proto_prop(sa_property_t prop)
2782549ec3ffSdougm {
2783549ec3ffSdougm 	int ret = SA_OK;
2784549ec3ffSdougm 	char *name;
2785549ec3ffSdougm 	char *value;
2786549ec3ffSdougm 
2787549ec3ffSdougm 	name = sa_get_property_attr(prop, "type");
2788549ec3ffSdougm 	value = sa_get_property_attr(prop, "value");
2789549ec3ffSdougm 	if (name != NULL && value != NULL) {
2790549ec3ffSdougm 		int index = findprotoopt(name, 1);
2791549ec3ffSdougm 		if (index >= 0) {
2792549ec3ffSdougm 			/* should test for valid value */
2793549ec3ffSdougm 			ret = nfs_validate_proto_prop(index, name, value);
2794549ec3ffSdougm 			if (ret == SA_OK)
2795a3351425Sdougm 				ret = set_default_file_value(
2796a3351425Sdougm 				    proto_options[index].tag, value);
2797549ec3ffSdougm 			if (ret == SA_OK)
2798549ec3ffSdougm 				restart_service(proto_options[index].svcs);
2799549ec3ffSdougm 		}
2800549ec3ffSdougm 	}
2801549ec3ffSdougm 	if (name != NULL)
2802549ec3ffSdougm 		sa_free_attr_string(name);
2803549ec3ffSdougm 	if (value != NULL)
2804549ec3ffSdougm 		sa_free_attr_string(value);
2805549ec3ffSdougm 	return (ret);
2806549ec3ffSdougm }
2807549ec3ffSdougm 
2808549ec3ffSdougm /*
2809549ec3ffSdougm  * nfs_get_status()
2810549ec3ffSdougm  *
2811549ec3ffSdougm  * What is the current status of the nfsd? We use the SMF state here.
2812549ec3ffSdougm  * Caller must free the returned value.
2813549ec3ffSdougm  */
2814549ec3ffSdougm 
2815549ec3ffSdougm static char *
2816549ec3ffSdougm nfs_get_status()
2817549ec3ffSdougm {
2818549ec3ffSdougm 	char *state;
2819549ec3ffSdougm 	state = smf_get_state(NFSD);
2820549ec3ffSdougm 	return (state != NULL ? state : strdup("-"));
2821549ec3ffSdougm }
2822549ec3ffSdougm 
2823549ec3ffSdougm /*
2824549ec3ffSdougm  * nfs_space_alias(alias)
2825549ec3ffSdougm  *
2826549ec3ffSdougm  * Lookup the space (security) name. If it is default, convert to the
2827549ec3ffSdougm  * real name.
2828549ec3ffSdougm  */
2829549ec3ffSdougm 
2830549ec3ffSdougm static char *
2831549ec3ffSdougm nfs_space_alias(char *space)
2832549ec3ffSdougm {
2833549ec3ffSdougm 	char *name = space;
2834549ec3ffSdougm 	seconfig_t secconf;
2835549ec3ffSdougm 
2836549ec3ffSdougm 	/*
2837549ec3ffSdougm 	 * Only the space named "default" is special. If it is used,
2838549ec3ffSdougm 	 * the default needs to be looked up and the real name used.
2839549ec3ffSdougm 	 * This is normally "sys" but could be changed.  We always
2840549ec3ffSdougm 	 * change defautl to the real name.
2841549ec3ffSdougm 	 */
2842549ec3ffSdougm 	if (strcmp(space, "default") == 0 &&
2843549ec3ffSdougm 	    nfs_getseconfig_default(&secconf) == 0) {
2844549ec3ffSdougm 		if (nfs_getseconfig_bynumber(secconf.sc_nfsnum, &secconf) == 0)
2845549ec3ffSdougm 			name = secconf.sc_name;
2846549ec3ffSdougm 	}
2847549ec3ffSdougm 	return (strdup(name));
2848549ec3ffSdougm }
2849