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>
52ecd6cf80Smarks #include <nfs/nfssys.h>
53549ec3ffSdougm 
54549ec3ffSdougm /* should really be in some global place */
55549ec3ffSdougm #define	DEF_WIN	30000
56549ec3ffSdougm #define	OPT_CHUNK	1024
57549ec3ffSdougm 
58549ec3ffSdougm int debug = 0;
59549ec3ffSdougm 
60ecd6cf80Smarks #define	NFS_SERVER_SVC	"svc:/network/nfs/server:default"
61549ec3ffSdougm 
62549ec3ffSdougm /* internal functions */
63549ec3ffSdougm static int nfs_init();
64549ec3ffSdougm static void nfs_fini();
65549ec3ffSdougm static int nfs_enable_share(sa_share_t);
66ecd6cf80Smarks static int nfs_disable_share(sa_share_t, char *);
67549ec3ffSdougm static int nfs_validate_property(sa_property_t, sa_optionset_t);
68549ec3ffSdougm static int nfs_validate_security_mode(char *);
69549ec3ffSdougm static int nfs_is_security_opt(char *);
70549ec3ffSdougm static int nfs_parse_legacy_options(sa_group_t, char *);
71549ec3ffSdougm static char *nfs_format_options(sa_group_t, int);
72549ec3ffSdougm static int nfs_set_proto_prop(sa_property_t);
73549ec3ffSdougm static sa_protocol_properties_t nfs_get_proto_set();
74549ec3ffSdougm static char *nfs_get_status();
75549ec3ffSdougm static char *nfs_space_alias(char *);
76549ec3ffSdougm 
77549ec3ffSdougm /*
78549ec3ffSdougm  * ops vector that provides the protocol specific info and operations
79549ec3ffSdougm  * for share management.
80549ec3ffSdougm  */
81549ec3ffSdougm 
82549ec3ffSdougm struct sa_plugin_ops sa_plugin_ops = {
83549ec3ffSdougm 	SA_PLUGIN_VERSION,
84549ec3ffSdougm 	"nfs",
85549ec3ffSdougm 	nfs_init,
86549ec3ffSdougm 	nfs_fini,
87549ec3ffSdougm 	nfs_enable_share,
88549ec3ffSdougm 	nfs_disable_share,
89549ec3ffSdougm 	nfs_validate_property,
90549ec3ffSdougm 	nfs_validate_security_mode,
91549ec3ffSdougm 	nfs_is_security_opt,
92549ec3ffSdougm 	nfs_parse_legacy_options,
93549ec3ffSdougm 	nfs_format_options,
94549ec3ffSdougm 	nfs_set_proto_prop,
95549ec3ffSdougm 	nfs_get_proto_set,
96549ec3ffSdougm 	nfs_get_status,
97549ec3ffSdougm 	nfs_space_alias,
98549ec3ffSdougm 	NULL,
99549ec3ffSdougm 	NULL
100549ec3ffSdougm };
101549ec3ffSdougm 
102549ec3ffSdougm /*
103549ec3ffSdougm  * list of support services needed
104549ec3ffSdougm  * defines should come from head/rpcsvc/daemon_utils.h
105549ec3ffSdougm  */
106549ec3ffSdougm 
107549ec3ffSdougm static char *service_list_default[] =
108549ec3ffSdougm 	{ STATD, LOCKD, MOUNTD, NFSD, NFSMAPID, RQUOTAD, NULL };
109549ec3ffSdougm static char *service_list_logging[] =
110549ec3ffSdougm 	{ STATD, LOCKD, MOUNTD, NFSD, NFSMAPID, RQUOTAD, NFSLOGD, NULL };
111549ec3ffSdougm 
112549ec3ffSdougm /*
113549ec3ffSdougm  * option definitions.  Make sure to keep the #define for the option
114549ec3ffSdougm  * index just before the entry it is the index for. Changing the order
115549ec3ffSdougm  * can cause breakage.  E.g OPT_RW is index 1 and must precede the
116549ec3ffSdougm  * line that includes the SHOPT_RW and OPT_RW entries.
117549ec3ffSdougm  */
118549ec3ffSdougm 
119549ec3ffSdougm struct option_defs optdefs[] = {
120549ec3ffSdougm #define	OPT_RO		0
121549ec3ffSdougm 	{SHOPT_RO, OPT_RO, OPT_TYPE_ACCLIST},
122549ec3ffSdougm #define	OPT_RW		1
123549ec3ffSdougm 	{SHOPT_RW, OPT_RW, OPT_TYPE_ACCLIST},
124549ec3ffSdougm #define	OPT_ROOT	2
125549ec3ffSdougm 	{SHOPT_ROOT, OPT_ROOT, OPT_TYPE_ACCLIST},
126549ec3ffSdougm #define	OPT_SECURE	3
127549ec3ffSdougm 	{SHOPT_SECURE, OPT_SECURE, OPT_TYPE_DEPRECATED},
128549ec3ffSdougm #define	OPT_ANON	4
129549ec3ffSdougm 	{SHOPT_ANON, OPT_ANON, OPT_TYPE_USER},
130549ec3ffSdougm #define	OPT_WINDOW	5
131549ec3ffSdougm 	{SHOPT_WINDOW, OPT_WINDOW, OPT_TYPE_NUMBER},
132549ec3ffSdougm #define	OPT_NOSUID	6
133549ec3ffSdougm 	{SHOPT_NOSUID, OPT_NOSUID, OPT_TYPE_BOOLEAN},
134549ec3ffSdougm #define	OPT_ACLOK	7
135549ec3ffSdougm 	{SHOPT_ACLOK, OPT_ACLOK, OPT_TYPE_BOOLEAN},
136549ec3ffSdougm #define	OPT_NOSUB	8
137549ec3ffSdougm 	{SHOPT_NOSUB, OPT_NOSUB, OPT_TYPE_BOOLEAN},
138549ec3ffSdougm #define	OPT_SEC		9
139549ec3ffSdougm 	{SHOPT_SEC, OPT_SEC, OPT_TYPE_SECURITY},
140549ec3ffSdougm #define	OPT_PUBLIC	10
141549ec3ffSdougm 	{SHOPT_PUBLIC, OPT_PUBLIC, OPT_TYPE_BOOLEAN, OPT_SHARE_ONLY},
142549ec3ffSdougm #define	OPT_INDEX	11
143549ec3ffSdougm 	{SHOPT_INDEX, OPT_INDEX, OPT_TYPE_FILE},
144549ec3ffSdougm #define	OPT_LOG		12
145549ec3ffSdougm 	{SHOPT_LOG, OPT_LOG, OPT_TYPE_LOGTAG},
146549ec3ffSdougm #define	OPT_CKSUM	13
147549ec3ffSdougm 	{SHOPT_CKSUM, OPT_CKSUM, OPT_TYPE_STRINGSET},
148549ec3ffSdougm #ifdef VOLATILE_FH_TEST	/* XXX added for testing volatile fh's only */
149549ec3ffSdougm #define	OPT_VOLFH	14
150549ec3ffSdougm 	{SHOPT_VOLFH, OPT_VOLFH},
151549ec3ffSdougm #endif /* VOLATILE_FH_TEST */
152549ec3ffSdougm 	NULL
153549ec3ffSdougm };
154549ec3ffSdougm 
155549ec3ffSdougm /*
156549ec3ffSdougm  * list of properties that are related to security flavors.
157549ec3ffSdougm  */
158549ec3ffSdougm static char *seclist[] = {
159549ec3ffSdougm 	SHOPT_RO,
160549ec3ffSdougm 	SHOPT_RW,
161549ec3ffSdougm 	SHOPT_ROOT,
162549ec3ffSdougm 	SHOPT_WINDOW,
163549ec3ffSdougm 	NULL
164549ec3ffSdougm };
165549ec3ffSdougm 
166549ec3ffSdougm /* structure for list of securities */
167549ec3ffSdougm struct securities {
168549ec3ffSdougm 	sa_security_t security;
169549ec3ffSdougm 	struct securities *next;
170549ec3ffSdougm };
171549ec3ffSdougm 
172549ec3ffSdougm /*
173549ec3ffSdougm  * findopt(name)
174549ec3ffSdougm  *
175549ec3ffSdougm  * Lookup option "name" in the option table and return the table
176549ec3ffSdougm  * index.
177549ec3ffSdougm  */
178549ec3ffSdougm 
179549ec3ffSdougm static int
180549ec3ffSdougm findopt(char *name)
181549ec3ffSdougm {
182549ec3ffSdougm 	int i;
183549ec3ffSdougm 	if (name != NULL) {
184549ec3ffSdougm 		for (i = 0; optdefs[i].tag != NULL; i++) {
185549ec3ffSdougm 			if (strcmp(optdefs[i].tag, name) == 0)
186549ec3ffSdougm 				return (i);
187549ec3ffSdougm 		}
188549ec3ffSdougm 	}
189549ec3ffSdougm 	return (-1);
190549ec3ffSdougm }
191549ec3ffSdougm 
192549ec3ffSdougm /*
193549ec3ffSdougm  * gettype(name)
194549ec3ffSdougm  *
195549ec3ffSdougm  * Return the type of option "name".
196549ec3ffSdougm  */
197549ec3ffSdougm 
198549ec3ffSdougm static int
199549ec3ffSdougm gettype(char *name)
200549ec3ffSdougm {
201549ec3ffSdougm 	int optdef;
202549ec3ffSdougm 
203549ec3ffSdougm 	optdef = findopt(name);
204549ec3ffSdougm 	if (optdef != -1)
205549ec3ffSdougm 		return (optdefs[optdef].type);
206549ec3ffSdougm 	return (OPT_TYPE_ANY);
207549ec3ffSdougm }
208549ec3ffSdougm 
209549ec3ffSdougm /*
210549ec3ffSdougm  * nfs_validate_security_mode(mode)
211549ec3ffSdougm  *
212549ec3ffSdougm  * is the specified mode string a valid one for use with NFS?
213549ec3ffSdougm  */
214549ec3ffSdougm 
215549ec3ffSdougm static int
216549ec3ffSdougm nfs_validate_security_mode(char *mode)
217549ec3ffSdougm {
218549ec3ffSdougm 	seconfig_t secinfo;
219549ec3ffSdougm 	int err;
220549ec3ffSdougm 
221549ec3ffSdougm 	(void) memset(&secinfo, '\0', sizeof (secinfo));
222549ec3ffSdougm 	err = nfs_getseconfig_byname(mode, &secinfo);
223549ec3ffSdougm 	if (err == SC_NOERROR)
224549ec3ffSdougm 		return (1);
225549ec3ffSdougm 	return (0);
226549ec3ffSdougm }
227549ec3ffSdougm 
228549ec3ffSdougm /*
229549ec3ffSdougm  * nfs_is_security_opt(tok)
230549ec3ffSdougm  *
231549ec3ffSdougm  * check to see if tok represents an option that is only valid in some
232549ec3ffSdougm  * security flavor.
233549ec3ffSdougm  */
234549ec3ffSdougm 
235549ec3ffSdougm static int
236549ec3ffSdougm nfs_is_security_opt(char *tok)
237549ec3ffSdougm {
238549ec3ffSdougm 	int i;
239549ec3ffSdougm 
240549ec3ffSdougm 	for (i = 0; seclist[i] != NULL; i++) {
241549ec3ffSdougm 		if (strcmp(tok, seclist[i]) == 0)
242549ec3ffSdougm 			return (1);
243549ec3ffSdougm 	}
244549ec3ffSdougm 	return (0);
245549ec3ffSdougm }
246549ec3ffSdougm 
247549ec3ffSdougm /*
248549ec3ffSdougm  * find_security(seclist, sec)
249549ec3ffSdougm  *
250549ec3ffSdougm  * Walk the current list of security flavors and return true if it is
251549ec3ffSdougm  * present, else return false.
252549ec3ffSdougm  */
253549ec3ffSdougm 
254549ec3ffSdougm static int
255549ec3ffSdougm find_security(struct securities *seclist, sa_security_t sec)
256549ec3ffSdougm {
257549ec3ffSdougm 	while (seclist != NULL) {
258549ec3ffSdougm 		if (seclist->security == sec)
259549ec3ffSdougm 			return (1);
260549ec3ffSdougm 		seclist = seclist->next;
261549ec3ffSdougm 	}
262549ec3ffSdougm 	return (0);
263549ec3ffSdougm }
264549ec3ffSdougm 
265549ec3ffSdougm /*
266549ec3ffSdougm  * make_security_list(group, securitymodes, proto)
267549ec3ffSdougm  *	go through the list of securitymodes and add them to the
268549ec3ffSdougm  *	group's list of security optionsets. We also keep a list of
269549ec3ffSdougm  *	those optionsets so we don't have to find them later. All of
270549ec3ffSdougm  *	these will get copies of the same properties.
271549ec3ffSdougm  */
272549ec3ffSdougm 
273549ec3ffSdougm static struct securities *
274549ec3ffSdougm make_security_list(sa_group_t group, char *securitymodes, char *proto)
275549ec3ffSdougm {
276549ec3ffSdougm 	char *tok, *next = NULL;
277549ec3ffSdougm 	struct securities *curp, *headp = NULL, *prev;
278549ec3ffSdougm 	sa_security_t check;
279549ec3ffSdougm 	int freetok = 0;
280549ec3ffSdougm 
281549ec3ffSdougm 	for (tok = securitymodes; tok != NULL; tok = next) {
282549ec3ffSdougm 		next = strchr(tok, ':');
283549ec3ffSdougm 		if (next != NULL)
284549ec3ffSdougm 			*next++ = '\0';
285549ec3ffSdougm 		if (strcmp(tok, "default") == 0) {
286549ec3ffSdougm 			/* resolve default into the real type */
287549ec3ffSdougm 			tok = nfs_space_alias(tok);
288549ec3ffSdougm 			freetok = 1;
289549ec3ffSdougm 		}
290549ec3ffSdougm 		check = sa_get_security(group, tok, proto);
291549ec3ffSdougm 
292549ec3ffSdougm 		/* add to the security list if it isn't there already */
293549ec3ffSdougm 		if (check == NULL || !find_security(headp, check)) {
294549ec3ffSdougm 			curp = (struct securities *)calloc(1,
295549ec3ffSdougm 			    sizeof (struct securities));
296549ec3ffSdougm 			if (curp != NULL) {
297549ec3ffSdougm 				if (check == NULL) {
298a3351425Sdougm 					curp->security = sa_create_security(
299a3351425Sdougm 					    group, tok, proto);
300549ec3ffSdougm 				} else {
301549ec3ffSdougm 					curp->security = check;
302549ec3ffSdougm 				}
303549ec3ffSdougm 				/*
304549ec3ffSdougm 				 * note that the first time through the loop,
305549ec3ffSdougm 				 * headp will be NULL and prev will be
306549ec3ffSdougm 				 * undefined.  Since headp is NULL, we set
307549ec3ffSdougm 				 * both it and prev to the curp (first
308549ec3ffSdougm 				 * structure to be allocated).
309549ec3ffSdougm 				 *
310549ec3ffSdougm 				 * later passes through the loop will have
311549ec3ffSdougm 				 * headp not being NULL and prev will be used
312549ec3ffSdougm 				 * to allocate at the end of the list.
313549ec3ffSdougm 				 */
314549ec3ffSdougm 				if (headp == NULL) {
315549ec3ffSdougm 					headp = curp;
316549ec3ffSdougm 					prev = curp;
317549ec3ffSdougm 				} else {
318549ec3ffSdougm 					prev->next = curp;
319549ec3ffSdougm 					prev = curp;
320549ec3ffSdougm 				}
321549ec3ffSdougm 			}
322549ec3ffSdougm 		}
323549ec3ffSdougm 
324549ec3ffSdougm 		if (freetok) {
325549ec3ffSdougm 			freetok = 0;
326549ec3ffSdougm 			sa_free_attr_string(tok);
327549ec3ffSdougm 		}
328549ec3ffSdougm 	}
329549ec3ffSdougm 	return (headp);
330549ec3ffSdougm }
331549ec3ffSdougm 
332549ec3ffSdougm static void
333549ec3ffSdougm free_security_list(struct securities *sec)
334549ec3ffSdougm {
335549ec3ffSdougm 	struct securities *next;
336549ec3ffSdougm 	if (sec != NULL) {
337549ec3ffSdougm 		for (next = sec->next; sec != NULL; sec = next) {
338549ec3ffSdougm 			next = sec->next;
339549ec3ffSdougm 			free(sec);
340549ec3ffSdougm 		}
341549ec3ffSdougm 	}
342549ec3ffSdougm }
343549ec3ffSdougm 
344549ec3ffSdougm /*
345549ec3ffSdougm  * nfs_alistcat(str1, str2, sep)
346549ec3ffSdougm  *
347549ec3ffSdougm  * concatenate str1 and str2 into a new string using sep as a separate
348549ec3ffSdougm  * character. If memory allocation fails, return NULL;
349549ec3ffSdougm  */
350549ec3ffSdougm 
351549ec3ffSdougm static char *
352549ec3ffSdougm nfs_alistcat(char *str1, char *str2, char sep)
353549ec3ffSdougm {
354549ec3ffSdougm 	char *newstr;
355549ec3ffSdougm 	size_t len;
356549ec3ffSdougm 
357549ec3ffSdougm 	len = strlen(str1) + strlen(str2) + 2;
358549ec3ffSdougm 	newstr = (char *)malloc(len);
359549ec3ffSdougm 	if (newstr != NULL)
360549ec3ffSdougm 		(void) snprintf(newstr, len, "%s%c%s", str1, sep, str2);
361549ec3ffSdougm 	return (newstr);
362549ec3ffSdougm }
363549ec3ffSdougm 
364549ec3ffSdougm /*
365549ec3ffSdougm  * add_security_prop(sec, name, value, persist)
366549ec3ffSdougm  *
367549ec3ffSdougm  * Add the property to the securities structure. This accumulates
368549ec3ffSdougm  * properties for as part of parsing legacy options.
369549ec3ffSdougm  */
370549ec3ffSdougm 
371549ec3ffSdougm static int
372549ec3ffSdougm add_security_prop(struct securities *sec, char *name, char *value,
373549ec3ffSdougm 			int persist, int iszfs)
374549ec3ffSdougm {
375549ec3ffSdougm 	sa_property_t prop;
376549ec3ffSdougm 	int ret = SA_OK;
377549ec3ffSdougm 
378549ec3ffSdougm 	for (; sec != NULL; sec = sec->next) {
379549ec3ffSdougm 		if (value == NULL) {
380a3351425Sdougm 			if (strcmp(name, SHOPT_RW) == 0 ||
381a3351425Sdougm 			    strcmp(name, SHOPT_RO) == 0)
382549ec3ffSdougm 				value = "*";
383549ec3ffSdougm 			else
384549ec3ffSdougm 				value = "true";
385549ec3ffSdougm 		}
386549ec3ffSdougm 
387549ec3ffSdougm 		/*
388549ec3ffSdougm 		 * Get the existing property, if it exists, so we can
389549ec3ffSdougm 		 * determine what to do with it. The ro/rw/root
390549ec3ffSdougm 		 * properties can be merged if multiple instances of
391549ec3ffSdougm 		 * these properies are given. For example, if "rw"
392549ec3ffSdougm 		 * exists with a value "host1" and a later token of
393549ec3ffSdougm 		 * rw="host2" is seen, the values are merged into a
394549ec3ffSdougm 		 * single rw="host1:host2".
395549ec3ffSdougm 		 */
396549ec3ffSdougm 		prop = sa_get_property(sec->security, name);
397549ec3ffSdougm 
398549ec3ffSdougm 		if (prop != NULL) {
399549ec3ffSdougm 			char *oldvalue;
400549ec3ffSdougm 			char *newvalue;
401549ec3ffSdougm 
402549ec3ffSdougm 			/*
403549ec3ffSdougm 			 * The security options of ro/rw/root might appear
404549ec3ffSdougm 			 * multiple times. If they do, the values need to be
405549ec3ffSdougm 			 * merged into an access list. If it was previously
406549ec3ffSdougm 			 * empty, the new value alone is added.
407549ec3ffSdougm 			 */
408549ec3ffSdougm 			oldvalue = sa_get_property_attr(prop, "value");
409549ec3ffSdougm 			if (oldvalue != NULL) {
410549ec3ffSdougm 				/*
411549ec3ffSdougm 				 * The general case is to concatenate the new
412549ec3ffSdougm 				 * value onto the old value for multiple
413549ec3ffSdougm 				 * rw(ro/root) properties. A special case
414549ec3ffSdougm 				 * exists when either the old or new is the
415549ec3ffSdougm 				 * "all" case. In the special case, if both
416549ec3ffSdougm 				 * are "all", then it is "all", else if one is
417549ec3ffSdougm 				 * an access-list, that replaces the "all".
418549ec3ffSdougm 				 */
419549ec3ffSdougm 				if (strcmp(oldvalue, "*") == 0) {
420549ec3ffSdougm 					/* Replace old value with new value. */
421549ec3ffSdougm 					newvalue = strdup(value);
422549ec3ffSdougm 				} else if (strcmp(value, "*") == 0) {
423a3351425Sdougm 					/*
424a3351425Sdougm 					 * Keep old value and ignore
425a3351425Sdougm 					 * the new value.
426a3351425Sdougm 					 */
427549ec3ffSdougm 					newvalue = NULL;
428549ec3ffSdougm 				} else {
429a3351425Sdougm 					/*
430a3351425Sdougm 					 * Make a new list of old plus new
431a3351425Sdougm 					 * access-list.
432a3351425Sdougm 					 */
433a3351425Sdougm 					newvalue = nfs_alistcat(oldvalue,
434a3351425Sdougm 					    value, ':');
435549ec3ffSdougm 				}
436549ec3ffSdougm 
437549ec3ffSdougm 				if (newvalue != NULL) {
438549ec3ffSdougm 					(void) sa_remove_property(prop);
439a3351425Sdougm 					prop = sa_create_property(name,
440a3351425Sdougm 					    newvalue);
441a3351425Sdougm 					ret = sa_add_property(sec->security,
442a3351425Sdougm 					    prop);
443549ec3ffSdougm 					free(newvalue);
444549ec3ffSdougm 				}
445549ec3ffSdougm 				if (oldvalue != NULL)
446549ec3ffSdougm 					sa_free_attr_string(oldvalue);
447549ec3ffSdougm 			}
448549ec3ffSdougm 		} else {
449549ec3ffSdougm 			prop = sa_create_property(name, value);
450549ec3ffSdougm 			ret = sa_add_property(sec->security, prop);
451549ec3ffSdougm 		}
452549ec3ffSdougm 		if (ret == SA_OK && !iszfs) {
453549ec3ffSdougm 			ret = sa_commit_properties(sec->security, !persist);
454549ec3ffSdougm 		}
455549ec3ffSdougm 	}
456549ec3ffSdougm 	return (ret);
457549ec3ffSdougm }
458549ec3ffSdougm 
459549ec3ffSdougm /*
460549ec3ffSdougm  * check to see if group/share is persistent.
461549ec3ffSdougm  */
462549ec3ffSdougm static int
463549ec3ffSdougm is_persistent(sa_group_t group)
464549ec3ffSdougm {
465549ec3ffSdougm 	char *type;
466549ec3ffSdougm 	int persist = 1;
467549ec3ffSdougm 
468549ec3ffSdougm 	type = sa_get_group_attr(group, "type");
469549ec3ffSdougm 	if (type != NULL && strcmp(type, "persist") != 0)
470549ec3ffSdougm 		persist = 0;
471549ec3ffSdougm 	if (type != NULL)
472549ec3ffSdougm 		sa_free_attr_string(type);
473549ec3ffSdougm 	return (persist);
474549ec3ffSdougm }
475549ec3ffSdougm 
476549ec3ffSdougm /*
477549ec3ffSdougm  * invalid_security(options)
478549ec3ffSdougm  *
479549ec3ffSdougm  * search option string for any invalid sec= type.
480549ec3ffSdougm  * return true (1) if any are not valid else false (0)
481549ec3ffSdougm  */
482549ec3ffSdougm static int
483549ec3ffSdougm invalid_security(char *options)
484549ec3ffSdougm {
485549ec3ffSdougm 	char *copy, *base, *token, *value;
486549ec3ffSdougm 	int ret = 0;
487549ec3ffSdougm 
488549ec3ffSdougm 	copy = strdup(options);
489549ec3ffSdougm 	token = base = copy;
490549ec3ffSdougm 	while (token != NULL && ret == 0) {
491549ec3ffSdougm 		token = strtok(base, ",");
492549ec3ffSdougm 		base = NULL;
493549ec3ffSdougm 		if (token != NULL) {
494549ec3ffSdougm 			value = strchr(token, '=');
495549ec3ffSdougm 			if (value != NULL)
496549ec3ffSdougm 				*value++ = '\0';
497549ec3ffSdougm 			if (strcmp(token, "sec") == 0) {
498a3351425Sdougm 				/* HAVE security flavors so check them */
499549ec3ffSdougm 				char *tok, *next;
500a3351425Sdougm 				for (next = NULL, tok = value; tok != NULL;
501a3351425Sdougm 				    tok = next) {
502549ec3ffSdougm 					next = strchr(tok, ':');
503549ec3ffSdougm 					if (next != NULL)
504549ec3ffSdougm 						*next++ = '\0';
505549ec3ffSdougm 					ret = !nfs_validate_security_mode(tok);
506549ec3ffSdougm 					if (ret)
507549ec3ffSdougm 						break;
508549ec3ffSdougm 				}
509549ec3ffSdougm 			}
510549ec3ffSdougm 		}
511549ec3ffSdougm 	}
512549ec3ffSdougm 	if (copy != NULL)
513549ec3ffSdougm 		free(copy);
514549ec3ffSdougm 	return (ret);
515549ec3ffSdougm }
516549ec3ffSdougm 
517549ec3ffSdougm /*
518549ec3ffSdougm  * nfs_parse_legacy_options(group, options)
519549ec3ffSdougm  *
520549ec3ffSdougm  * Parse the old style options into internal format and store on the
521549ec3ffSdougm  * specified group.  Group could be a share for full legacy support.
522549ec3ffSdougm  */
523549ec3ffSdougm 
524549ec3ffSdougm static int
525549ec3ffSdougm nfs_parse_legacy_options(sa_group_t group, char *options)
526549ec3ffSdougm {
527*aba7a40bSdougm 	char *dup;
528549ec3ffSdougm 	char *base;
529549ec3ffSdougm 	char *token;
530549ec3ffSdougm 	sa_optionset_t optionset;
531549ec3ffSdougm 	struct securities *security_list = NULL;
532549ec3ffSdougm 	sa_property_t prop;
533549ec3ffSdougm 	int ret = SA_OK;
534549ec3ffSdougm 	int iszfs = 0;
535549ec3ffSdougm 	sa_group_t parent;
536549ec3ffSdougm 	int persist = 0;
537549ec3ffSdougm 	char *lasts;
538549ec3ffSdougm 
539549ec3ffSdougm 	/* do we have an existing optionset? */
540549ec3ffSdougm 	optionset = sa_get_optionset(group, "nfs");
541549ec3ffSdougm 	if (optionset == NULL) {
542549ec3ffSdougm 		/* didn't find existing optionset so create one */
543549ec3ffSdougm 		optionset = sa_create_optionset(group, "nfs");
544549ec3ffSdougm 	} else {
545549ec3ffSdougm 		/*
546549ec3ffSdougm 		 * have an existing optionset so we need to compare
547549ec3ffSdougm 		 * options in order to detect errors. For now, we
548549ec3ffSdougm 		 * assume that the first optionset is the correct one
549549ec3ffSdougm 		 * and the others will be the same. This needs to be
550549ec3ffSdougm 		 * fixed before the final code is ready.
551549ec3ffSdougm 		 */
552549ec3ffSdougm 		return (ret);
553549ec3ffSdougm 	}
554549ec3ffSdougm 
555549ec3ffSdougm 	if (strcmp(options, SHOPT_RW) == 0) {
556549ec3ffSdougm 		/*
557549ec3ffSdougm 		 * there is a special case of only the option "rw"
558549ec3ffSdougm 		 * being the default option. We don't have to do
559549ec3ffSdougm 		 * anything.
560549ec3ffSdougm 		 */
561549ec3ffSdougm 		return (ret);
562549ec3ffSdougm 	}
563549ec3ffSdougm 
564549ec3ffSdougm 	/*
565549ec3ffSdougm 	 * check if security types are present and validate them. If
566549ec3ffSdougm 	 * any are not legal, fail.
567549ec3ffSdougm 	 */
568549ec3ffSdougm 
569549ec3ffSdougm 	if (invalid_security(options)) {
570549ec3ffSdougm 		return (SA_INVALID_SECURITY);
571549ec3ffSdougm 	}
572549ec3ffSdougm 
573549ec3ffSdougm 	/*
574549ec3ffSdougm 	 * in order to not attempt to change ZFS properties unless
575549ec3ffSdougm 	 * absolutely necessary, we never do it in the legacy parsing.
576549ec3ffSdougm 	 */
577549ec3ffSdougm 	if (sa_is_share(group)) {
578549ec3ffSdougm 		char *zfs;
579549ec3ffSdougm 		parent = sa_get_parent_group(group);
580549ec3ffSdougm 		if (parent != NULL) {
581549ec3ffSdougm 			zfs = sa_get_group_attr(parent, "zfs");
582549ec3ffSdougm 			if (zfs != NULL) {
583549ec3ffSdougm 				sa_free_attr_string(zfs);
584549ec3ffSdougm 				iszfs++;
585549ec3ffSdougm 			}
586549ec3ffSdougm 		}
587549ec3ffSdougm 	} else {
588549ec3ffSdougm 		iszfs = sa_group_is_zfs(group);
589549ec3ffSdougm 	}
590549ec3ffSdougm 
591*aba7a40bSdougm 	/* We need a copy of options for the next part. */
592*aba7a40bSdougm 	dup = strdup(options);
593*aba7a40bSdougm 	if (dup == NULL)
594*aba7a40bSdougm 		return (SA_NO_MEMORY);
595*aba7a40bSdougm 
596549ec3ffSdougm 	/*
597549ec3ffSdougm 	 * we need to step through each option in the string and then
598549ec3ffSdougm 	 * add either the option or the security option as needed. If
599549ec3ffSdougm 	 * this is not a persistent share, don't commit to the
600549ec3ffSdougm 	 * repository. If there is an error, we also want to abort the
601549ec3ffSdougm 	 * processing and report it.
602549ec3ffSdougm 	 */
603549ec3ffSdougm 	persist = is_persistent(group);
604549ec3ffSdougm 	base = dup;
605549ec3ffSdougm 	token = dup;
606549ec3ffSdougm 	lasts = NULL;
607549ec3ffSdougm 	while (token != NULL && ret == SA_OK) {
608549ec3ffSdougm 		ret = SA_OK;
609549ec3ffSdougm 		token = strtok_r(base, ",", &lasts);
610549ec3ffSdougm 		base = NULL;
611549ec3ffSdougm 		if (token != NULL) {
612549ec3ffSdougm 			char *value;
613549ec3ffSdougm 			/*
614549ec3ffSdougm 			 * if the option has a value, it will have an '=' to
615549ec3ffSdougm 			 * separate the name from the value. The following
616549ec3ffSdougm 			 * code will result in value != NULL and token
617549ec3ffSdougm 			 * pointing to just the name if there is a value.
618549ec3ffSdougm 			 */
619549ec3ffSdougm 			value = strchr(token, '=');
620549ec3ffSdougm 			if (value != NULL) {
621549ec3ffSdougm 				*value++ = '\0';
622549ec3ffSdougm 			}
623a3351425Sdougm 			if (strcmp(token, "sec") == 0 ||
624a3351425Sdougm 			    strcmp(token, "secure") == 0) {
625549ec3ffSdougm 				/*
626549ec3ffSdougm 				 * Once in security parsing, we only
627549ec3ffSdougm 				 * do security. We do need to move
628549ec3ffSdougm 				 * between the security node and the
629549ec3ffSdougm 				 * toplevel. The security tag goes on
630549ec3ffSdougm 				 * the root while the following ones
631549ec3ffSdougm 				 * go on the security.
632549ec3ffSdougm 				 */
633549ec3ffSdougm 				if (security_list != NULL) {
634a3351425Sdougm 					/*
635a3351425Sdougm 					 * have an old list so close it and
636a3351425Sdougm 					 * start the new
637a3351425Sdougm 					 */
638549ec3ffSdougm 					free_security_list(security_list);
639549ec3ffSdougm 				}
640549ec3ffSdougm 				if (strcmp(token, "secure") == 0) {
641549ec3ffSdougm 					value = "dh";
642549ec3ffSdougm 				} else {
643549ec3ffSdougm 					if (value == NULL) {
644549ec3ffSdougm 						ret = SA_SYNTAX_ERR;
645549ec3ffSdougm 						break;
646549ec3ffSdougm 					}
647549ec3ffSdougm 				}
648a3351425Sdougm 				security_list = make_security_list(group,
649a3351425Sdougm 				    value, "nfs");
650549ec3ffSdougm 			} else {
651549ec3ffSdougm 				/*
652549ec3ffSdougm 				 * Note that the "old" syntax allowed a
653549ec3ffSdougm 				 * default security model This must be
654549ec3ffSdougm 				 * accounted for and internally converted to
655549ec3ffSdougm 				 * "standard" security structure.
656549ec3ffSdougm 				 */
657549ec3ffSdougm 				if (nfs_is_security_opt(token)) {
658549ec3ffSdougm 					if (security_list == NULL) {
659549ec3ffSdougm 						/*
660a3351425Sdougm 						 * need to have a
661a3351425Sdougm 						 * security
662a3351425Sdougm 						 * option. This will
663a3351425Sdougm 						 * be "closed" when a
664a3351425Sdougm 						 * defined "sec="
665a3351425Sdougm 						 * option is
666a3351425Sdougm 						 * seen. This is
667a3351425Sdougm 						 * technically an
668a3351425Sdougm 						 * error but will be
669a3351425Sdougm 						 * allowed with
670a3351425Sdougm 						 * warning.
671549ec3ffSdougm 						 */
672a3351425Sdougm 						security_list =
673a3351425Sdougm 						    make_security_list(group,
674549ec3ffSdougm 						    "default",
675549ec3ffSdougm 						    "nfs");
676549ec3ffSdougm 					}
677549ec3ffSdougm 					if (security_list != NULL) {
678a3351425Sdougm 						ret = add_security_prop(
679a3351425Sdougm 						    security_list, token,
680a3351425Sdougm 						    value, persist, iszfs);
681549ec3ffSdougm 					} else {
682549ec3ffSdougm 						ret = SA_NO_MEMORY;
683549ec3ffSdougm 					}
684549ec3ffSdougm 				} else {
685549ec3ffSdougm 					/* regular options */
686549ec3ffSdougm 					if (value == NULL) {
687a3351425Sdougm 						if (strcmp(token, SHOPT_RW) ==
688a3351425Sdougm 						    0 || strcmp(token,
689a3351425Sdougm 						    SHOPT_RO) == 0) {
690549ec3ffSdougm 							value = "*";
691a3351425Sdougm 						} else {
692549ec3ffSdougm 							value = "global";
693a3351425Sdougm 							if (strcmp(token,
694a3351425Sdougm 							    SHOPT_LOG) != 0) {
695549ec3ffSdougm 								value = "true";
696549ec3ffSdougm 							}
697a3351425Sdougm 						}
698d6405362Sdougm 					}
699d6405362Sdougm 					/*
700d6405362Sdougm 					 * In all cases, create the
701d6405362Sdougm 					 * property specified. If the
702d6405362Sdougm 					 * value was NULL, the default
703d6405362Sdougm 					 * value will have been
704d6405362Sdougm 					 * substituted.
705d6405362Sdougm 					 */
706d6405362Sdougm 					prop = sa_create_property(token, value);
707d6405362Sdougm 					ret =  sa_add_property(optionset, prop);
708a3351425Sdougm 					if (ret != SA_OK)
709549ec3ffSdougm 						break;
710d6405362Sdougm 
711549ec3ffSdougm 					if (!iszfs) {
712a3351425Sdougm 						ret = sa_commit_properties(
713a3351425Sdougm 						    optionset, !persist);
714549ec3ffSdougm 					}
715549ec3ffSdougm 				}
716549ec3ffSdougm 			}
717549ec3ffSdougm 		}
718549ec3ffSdougm 	}
719549ec3ffSdougm 	if (security_list != NULL)
720549ec3ffSdougm 		free_security_list(security_list);
721*aba7a40bSdougm 
722549ec3ffSdougm 	free(dup);
723549ec3ffSdougm 	return (ret);
724549ec3ffSdougm }
725549ec3ffSdougm 
726549ec3ffSdougm /*
727549ec3ffSdougm  * is_a_number(number)
728549ec3ffSdougm  *
729549ec3ffSdougm  * is the string a number in one of the forms we want to use?
730549ec3ffSdougm  */
731549ec3ffSdougm 
732549ec3ffSdougm static int
733549ec3ffSdougm is_a_number(char *number)
734549ec3ffSdougm {
735549ec3ffSdougm 	int ret = 1;
736549ec3ffSdougm 	int hex = 0;
737549ec3ffSdougm 
738549ec3ffSdougm 	if (strncmp(number, "0x", 2) == 0) {
739549ec3ffSdougm 		number += 2;
740549ec3ffSdougm 		hex = 1;
741a3351425Sdougm 	} else if (*number == '-') {
742549ec3ffSdougm 		number++; /* skip the minus */
743a3351425Sdougm 	}
744549ec3ffSdougm 	while (ret == 1 && *number != '\0') {
745549ec3ffSdougm 		if (hex) {
746549ec3ffSdougm 			ret = isxdigit(*number++);
747549ec3ffSdougm 		} else {
748549ec3ffSdougm 			ret = isdigit(*number++);
749549ec3ffSdougm 		}
750549ec3ffSdougm 	}
751549ec3ffSdougm 	return (ret);
752549ec3ffSdougm }
753549ec3ffSdougm 
754549ec3ffSdougm /*
755549ec3ffSdougm  * Look for the specified tag in the configuration file. If it is found,
756549ec3ffSdougm  * enable logging and set the logging configuration information for exp.
757549ec3ffSdougm  */
758549ec3ffSdougm static void
759549ec3ffSdougm configlog(struct exportdata *exp, char *tag)
760549ec3ffSdougm {
761549ec3ffSdougm 	nfsl_config_t *configlist = NULL, *configp;
762549ec3ffSdougm 	int error = 0;
763549ec3ffSdougm 	char globaltag[] = DEFAULTTAG;
764549ec3ffSdougm 
765549ec3ffSdougm 	/*
766549ec3ffSdougm 	 * Sends config errors to stderr
767549ec3ffSdougm 	 */
768549ec3ffSdougm 	nfsl_errs_to_syslog = B_FALSE;
769549ec3ffSdougm 
770549ec3ffSdougm 	/*
771549ec3ffSdougm 	 * get the list of configuration settings
772549ec3ffSdougm 	 */
773549ec3ffSdougm 	error = nfsl_getconfig_list(&configlist);
774549ec3ffSdougm 	if (error) {
775549ec3ffSdougm 		(void) fprintf(stderr,
776a3351425Sdougm 		    dgettext(TEXT_DOMAIN, "Cannot get log configuration: %s\n"),
777549ec3ffSdougm 		    strerror(error));
778549ec3ffSdougm 	}
779549ec3ffSdougm 
780549ec3ffSdougm 	if (tag == NULL)
781549ec3ffSdougm 		tag = globaltag;
782549ec3ffSdougm 	if ((configp = nfsl_findconfig(configlist, tag, &error)) == NULL) {
783549ec3ffSdougm 		nfsl_freeconfig_list(&configlist);
784549ec3ffSdougm 		(void) fprintf(stderr,
785a3351425Sdougm 		    dgettext(TEXT_DOMAIN, "No tags matching \"%s\"\n"), tag);
786549ec3ffSdougm 		/* bad configuration */
787549ec3ffSdougm 		error = ENOENT;
788549ec3ffSdougm 		goto err;
789549ec3ffSdougm 	}
790549ec3ffSdougm 
791549ec3ffSdougm 	if ((exp->ex_tag = strdup(tag)) == NULL) {
792549ec3ffSdougm 		error = ENOMEM;
793549ec3ffSdougm 		goto out;
794549ec3ffSdougm 	}
795549ec3ffSdougm 	if ((exp->ex_log_buffer = strdup(configp->nc_bufferpath)) == NULL) {
796549ec3ffSdougm 		error = ENOMEM;
797549ec3ffSdougm 		goto out;
798549ec3ffSdougm 	}
799549ec3ffSdougm 	exp->ex_flags |= EX_LOG;
800549ec3ffSdougm 	if (configp->nc_rpclogpath != NULL)
801549ec3ffSdougm 		exp->ex_flags |= EX_LOG_ALLOPS;
802549ec3ffSdougm out:
803549ec3ffSdougm 	if (configlist != NULL)
804549ec3ffSdougm 		nfsl_freeconfig_list(&configlist);
805549ec3ffSdougm 
806549ec3ffSdougm err:
807549ec3ffSdougm 	if (error != 0) {
808549ec3ffSdougm 		if (exp->ex_flags != NULL)
809549ec3ffSdougm 			free(exp->ex_tag);
810549ec3ffSdougm 		if (exp->ex_log_buffer != NULL)
811549ec3ffSdougm 			free(exp->ex_log_buffer);
812549ec3ffSdougm 		(void) fprintf(stderr,
813a3351425Sdougm 		    dgettext(TEXT_DOMAIN, "Cannot set log configuration: %s\n"),
814549ec3ffSdougm 		    strerror(error));
815549ec3ffSdougm 	}
816549ec3ffSdougm }
817549ec3ffSdougm 
818549ec3ffSdougm /*
819549ec3ffSdougm  * fill_export_from_optionset(export, optionset)
820549ec3ffSdougm  *
821549ec3ffSdougm  * In order to share, we need to set all the possible general options
822549ec3ffSdougm  * into the export structure. Share info will be filled in by the
823549ec3ffSdougm  * caller. Various property values get turned into structure specific
824549ec3ffSdougm  * values.
825549ec3ffSdougm  */
826549ec3ffSdougm 
827549ec3ffSdougm static int
828549ec3ffSdougm fill_export_from_optionset(struct exportdata *export, sa_optionset_t optionset)
829549ec3ffSdougm {
830549ec3ffSdougm 	sa_property_t option;
831549ec3ffSdougm 	int ret = SA_OK;
832549ec3ffSdougm 
833549ec3ffSdougm 	for (option = sa_get_property(optionset, NULL);
834549ec3ffSdougm 	    option != NULL; option = sa_get_next_property(option)) {
835549ec3ffSdougm 		char *name;
836549ec3ffSdougm 		char *value;
837549ec3ffSdougm 		uint32_t val;
838549ec3ffSdougm 
839549ec3ffSdougm 		/*
840549ec3ffSdougm 		 * since options may be set/reset multiple times, always do an
841549ec3ffSdougm 		 * explicit set or clear of the option. This allows defaults
842549ec3ffSdougm 		 * to be set and then the protocol specifici to override.
843549ec3ffSdougm 		 */
844549ec3ffSdougm 
845549ec3ffSdougm 		name = sa_get_property_attr(option, "type");
846549ec3ffSdougm 		value = sa_get_property_attr(option, "value");
847549ec3ffSdougm 		switch (findopt(name)) {
848549ec3ffSdougm 		case OPT_ANON:
849549ec3ffSdougm 			if (value != NULL && is_a_number(value)) {
850549ec3ffSdougm 				val = strtoul(value, NULL, 0);
851549ec3ffSdougm 			} else {
852549ec3ffSdougm 				struct passwd *pw;
853549ec3ffSdougm 				pw = getpwnam(value != NULL ? value : "nobody");
854549ec3ffSdougm 				if (pw != NULL) {
855549ec3ffSdougm 					val = pw->pw_uid;
856549ec3ffSdougm 				} else {
857549ec3ffSdougm 					val = UID_NOBODY;
858549ec3ffSdougm 				}
859549ec3ffSdougm 				endpwent();
860549ec3ffSdougm 			}
861549ec3ffSdougm 			export->ex_anon = val;
862549ec3ffSdougm 			break;
863549ec3ffSdougm 		case OPT_NOSUID:
864a3351425Sdougm 			if (value != NULL && (strcasecmp(value, "true") == 0 ||
865a3351425Sdougm 			    strcmp(value, "1") == 0))
866549ec3ffSdougm 				export->ex_flags |= EX_NOSUID;
867549ec3ffSdougm 			else
868549ec3ffSdougm 				export->ex_flags &= ~EX_NOSUID;
869549ec3ffSdougm 			break;
870549ec3ffSdougm 		case OPT_ACLOK:
871a3351425Sdougm 			if (value != NULL && (strcasecmp(value, "true") == 0 ||
872549ec3ffSdougm 			    strcmp(value, "1") == 0))
873549ec3ffSdougm 				export->ex_flags |= EX_ACLOK;
874549ec3ffSdougm 			else
875549ec3ffSdougm 				export->ex_flags &= ~EX_ACLOK;
876549ec3ffSdougm 			break;
877549ec3ffSdougm 		case OPT_NOSUB:
878a3351425Sdougm 			if (value != NULL && (strcasecmp(value, "true") == 0 ||
879a3351425Sdougm 			    strcmp(value, "1") == 0))
880549ec3ffSdougm 				export->ex_flags |= EX_NOSUB;
881549ec3ffSdougm 			else
882549ec3ffSdougm 				export->ex_flags &= ~EX_NOSUB;
883549ec3ffSdougm 			break;
884549ec3ffSdougm 		case OPT_PUBLIC:
885a3351425Sdougm 			if (value != NULL && (strcasecmp(value, "true") == 0 ||
886a3351425Sdougm 			    strcmp(value, "1") == 0))
887549ec3ffSdougm 				export->ex_flags |= EX_PUBLIC;
888549ec3ffSdougm 			else
889549ec3ffSdougm 				export->ex_flags &= ~EX_PUBLIC;
890549ec3ffSdougm 			break;
891549ec3ffSdougm 		case OPT_INDEX:
892a3351425Sdougm 			if (value != NULL && (strcmp(value, "..") == 0 ||
893a3351425Sdougm 			    strchr(value, '/') != NULL)) {
894549ec3ffSdougm 				/* this is an error */
895549ec3ffSdougm 				(void) printf(dgettext(TEXT_DOMAIN,
896549ec3ffSdougm 				    "NFS: index=\"%s\" not valid;"
897549ec3ffSdougm 				    "must be a filename.\n"),
898549ec3ffSdougm 				    value);
899549ec3ffSdougm 				break;
900549ec3ffSdougm 			}
901549ec3ffSdougm 			if (value != NULL && *value != '\0' &&
902549ec3ffSdougm 			    strcmp(value, ".") != 0) {
903549ec3ffSdougm 				/* valid index file string */
904549ec3ffSdougm 				if (export->ex_index != NULL) {
905549ec3ffSdougm 					/* left over from "default" */
906549ec3ffSdougm 					free(export->ex_index);
907549ec3ffSdougm 				}
908a3351425Sdougm 				/* remember to free */
909a3351425Sdougm 				export->ex_index = strdup(value);
910549ec3ffSdougm 				if (export->ex_index == NULL) {
911549ec3ffSdougm 					(void) printf(dgettext(TEXT_DOMAIN,
912549ec3ffSdougm 					    "NFS: out of memory setting "
913549ec3ffSdougm 					    "index property\n"));
914549ec3ffSdougm 					break;
915549ec3ffSdougm 				}
916549ec3ffSdougm 				export->ex_flags |= EX_INDEX;
917549ec3ffSdougm 			}
918549ec3ffSdougm 			break;
919549ec3ffSdougm 		case OPT_LOG:
920549ec3ffSdougm 			if (value == NULL)
921549ec3ffSdougm 				value = strdup("global");
922549ec3ffSdougm 			if (value != NULL)
923a3351425Sdougm 				configlog(export,
924a3351425Sdougm 				    strlen(value) ? value : "global");
925549ec3ffSdougm 			break;
926549ec3ffSdougm 		default:
927549ec3ffSdougm 			/* have a syntactic error */
928549ec3ffSdougm 			(void) printf(dgettext(TEXT_DOMAIN,
929549ec3ffSdougm 			    "NFS: unrecognized option %s=%s\n"),
930549ec3ffSdougm 			    name, value != NULL ? value : "");
931549ec3ffSdougm 			break;
932549ec3ffSdougm 		}
933549ec3ffSdougm 		if (name != NULL)
934549ec3ffSdougm 			sa_free_attr_string(name);
935549ec3ffSdougm 		if (value != NULL)
936549ec3ffSdougm 			sa_free_attr_string(value);
937549ec3ffSdougm 	}
938549ec3ffSdougm 	return (ret);
939549ec3ffSdougm }
940549ec3ffSdougm 
941549ec3ffSdougm /*
942549ec3ffSdougm  * cleanup_export(export)
943549ec3ffSdougm  *
944549ec3ffSdougm  * Cleanup the allocated areas so we don't leak memory
945549ec3ffSdougm  */
946549ec3ffSdougm 
947549ec3ffSdougm static void
948549ec3ffSdougm cleanup_export(struct exportdata *export)
949549ec3ffSdougm {
950549ec3ffSdougm 	int i;
951549ec3ffSdougm 
952549ec3ffSdougm 	if (export->ex_index != NULL)
953549ec3ffSdougm 		free(export->ex_index);
954549ec3ffSdougm 	if (export->ex_secinfo != NULL) {
955549ec3ffSdougm 		for (i = 0; i < export->ex_seccnt; i++)
956a3351425Sdougm 			if (export->ex_secinfo[i].s_rootnames != NULL)
957549ec3ffSdougm 				free(export->ex_secinfo[i].s_rootnames);
958549ec3ffSdougm 		free(export->ex_secinfo);
959549ec3ffSdougm 	}
960549ec3ffSdougm }
961549ec3ffSdougm 
962549ec3ffSdougm /*
963549ec3ffSdougm  * Given a seconfig entry and a colon-separated
964549ec3ffSdougm  * list of names, allocate an array big enough
965549ec3ffSdougm  * to hold the root list, then convert each name to
966549ec3ffSdougm  * a principal name according to the security
967549ec3ffSdougm  * info and assign it to an array element.
968549ec3ffSdougm  * Return the array and its size.
969549ec3ffSdougm  */
970549ec3ffSdougm static caddr_t *
971549ec3ffSdougm get_rootnames(seconfig_t *sec, char *list, int *count)
972549ec3ffSdougm {
973549ec3ffSdougm 	caddr_t *a;
974549ec3ffSdougm 	int c, i;
975549ec3ffSdougm 	char *host, *p;
976549ec3ffSdougm 
977549ec3ffSdougm 	/*
978549ec3ffSdougm 	 * Count the number of strings in the list.
979549ec3ffSdougm 	 * This is the number of colon separators + 1.
980549ec3ffSdougm 	 */
981549ec3ffSdougm 	c = 1;
982549ec3ffSdougm 	for (p = list; *p; p++)
983549ec3ffSdougm 		if (*p == ':')
984549ec3ffSdougm 			c++;
985549ec3ffSdougm 	*count = c;
986549ec3ffSdougm 
987549ec3ffSdougm 	a = (caddr_t *)malloc(c * sizeof (char *));
988549ec3ffSdougm 	if (a == NULL) {
989549ec3ffSdougm 		(void) printf(dgettext(TEXT_DOMAIN,
990549ec3ffSdougm 		    "get_rootnames: no memory\n"));
991549ec3ffSdougm 	} else {
992549ec3ffSdougm 		for (i = 0; i < c; i++) {
993549ec3ffSdougm 			host = strtok(list, ":");
994549ec3ffSdougm 			if (!nfs_get_root_principal(sec, host, &a[i])) {
995549ec3ffSdougm 				free(a);
996549ec3ffSdougm 				a = NULL;
997549ec3ffSdougm 				break;
998549ec3ffSdougm 			}
999549ec3ffSdougm 			list = NULL;
1000549ec3ffSdougm 		}
1001549ec3ffSdougm 	}
1002549ec3ffSdougm 
1003549ec3ffSdougm 	return (a);
1004549ec3ffSdougm }
1005549ec3ffSdougm 
1006549ec3ffSdougm /*
1007549ec3ffSdougm  * fill_security_from_secopts(sp, secopts)
1008549ec3ffSdougm  *
1009549ec3ffSdougm  * Fill the secinfo structure from the secopts optionset.
1010549ec3ffSdougm  */
1011549ec3ffSdougm 
1012549ec3ffSdougm static int
1013549ec3ffSdougm fill_security_from_secopts(struct secinfo *sp, sa_security_t secopts)
1014549ec3ffSdougm {
1015549ec3ffSdougm 	sa_property_t prop;
1016549ec3ffSdougm 	char *type;
1017549ec3ffSdougm 	int longform;
1018549ec3ffSdougm 	int err = SC_NOERROR;
1019549ec3ffSdougm 
1020549ec3ffSdougm 	type = sa_get_security_attr(secopts, "sectype");
1021549ec3ffSdougm 	if (type != NULL) {
1022549ec3ffSdougm 		/* named security type needs secinfo to be filled in */
1023549ec3ffSdougm 		err = nfs_getseconfig_byname(type, &sp->s_secinfo);
1024549ec3ffSdougm 		sa_free_attr_string(type);
1025549ec3ffSdougm 		if (err != SC_NOERROR)
1026549ec3ffSdougm 			return (err);
1027549ec3ffSdougm 	} else {
1028549ec3ffSdougm 		/* default case */
1029549ec3ffSdougm 		err = nfs_getseconfig_default(&sp->s_secinfo);
1030549ec3ffSdougm 		if (err != SC_NOERROR)
1031549ec3ffSdougm 			return (err);
1032549ec3ffSdougm 	}
1033549ec3ffSdougm 
1034549ec3ffSdougm 	err = SA_OK;
1035549ec3ffSdougm 	for (prop = sa_get_property(secopts, NULL);
1036549ec3ffSdougm 	    prop != NULL && err == SA_OK;
1037549ec3ffSdougm 	    prop = sa_get_next_property(prop)) {
1038549ec3ffSdougm 		char *name;
1039549ec3ffSdougm 		char *value;
1040549ec3ffSdougm 
1041549ec3ffSdougm 		name = sa_get_property_attr(prop, "type");
1042549ec3ffSdougm 		value = sa_get_property_attr(prop, "value");
1043549ec3ffSdougm 
1044549ec3ffSdougm 		longform = value != NULL && strcmp(value, "*") != 0;
1045549ec3ffSdougm 
1046549ec3ffSdougm 		switch (findopt(name)) {
1047549ec3ffSdougm 		case OPT_RO:
1048549ec3ffSdougm 			sp->s_flags |= longform ? M_ROL : M_RO;
1049549ec3ffSdougm 			break;
1050549ec3ffSdougm 		case OPT_RW:
1051549ec3ffSdougm 			sp->s_flags |= longform ? M_RWL : M_RW;
1052549ec3ffSdougm 			break;
1053549ec3ffSdougm 		case OPT_ROOT:
1054549ec3ffSdougm 			sp->s_flags |= M_ROOT;
1055549ec3ffSdougm 			/*
1056549ec3ffSdougm 			 * if we are using AUTH_UNIX, handle like other things
1057549ec3ffSdougm 			 * such as RO/RW
1058549ec3ffSdougm 			 */
1059549ec3ffSdougm 			if (sp->s_secinfo.sc_rpcnum == AUTH_UNIX)
1060549ec3ffSdougm 				continue;
1061549ec3ffSdougm 			/* not AUTH_UNIX */
1062549ec3ffSdougm 			if (value != NULL) {
1063a3351425Sdougm 				sp->s_rootnames = get_rootnames(&sp->s_secinfo,
1064a3351425Sdougm 				    value, &sp->s_rootcnt);
1065549ec3ffSdougm 				if (sp->s_rootnames == NULL) {
1066549ec3ffSdougm 					err = SA_BAD_VALUE;
1067a3351425Sdougm 					(void) fprintf(stderr,
1068a3351425Sdougm 					    dgettext(TEXT_DOMAIN,
1069549ec3ffSdougm 					    "Bad root list\n"));
1070549ec3ffSdougm 				}
1071549ec3ffSdougm 			}
1072549ec3ffSdougm 			break;
1073549ec3ffSdougm 		case OPT_WINDOW:
1074549ec3ffSdougm 			if (value != NULL) {
1075549ec3ffSdougm 				sp->s_window = atoi(value);
1076a3351425Sdougm 				/* just in case */
1077549ec3ffSdougm 				if (sp->s_window < 0)
1078a3351425Sdougm 					sp->s_window = DEF_WIN;
1079549ec3ffSdougm 			}
1080549ec3ffSdougm 			break;
1081549ec3ffSdougm 		default:
1082549ec3ffSdougm 			break;
1083549ec3ffSdougm 		}
1084549ec3ffSdougm 		if (name != NULL)
1085549ec3ffSdougm 			sa_free_attr_string(name);
1086549ec3ffSdougm 		if (value != NULL)
1087549ec3ffSdougm 			sa_free_attr_string(value);
1088549ec3ffSdougm 	}
1089549ec3ffSdougm 	/* if rw/ro options not set, use default of RW */
1090549ec3ffSdougm 	if ((sp->s_flags & NFS_RWMODES) == 0)
1091549ec3ffSdougm 		sp->s_flags |= M_RW;
1092549ec3ffSdougm 	return (err);
1093549ec3ffSdougm }
1094549ec3ffSdougm 
1095549ec3ffSdougm /*
1096549ec3ffSdougm  * This is for testing only
1097549ec3ffSdougm  * It displays the export structure that
1098549ec3ffSdougm  * goes into the kernel.
1099549ec3ffSdougm  */
1100549ec3ffSdougm static void
1101549ec3ffSdougm printarg(char *path, struct exportdata *ep)
1102549ec3ffSdougm {
1103549ec3ffSdougm 	int i, j;
1104549ec3ffSdougm 	struct secinfo *sp;
1105549ec3ffSdougm 
1106549ec3ffSdougm 	if (debug == 0)
1107549ec3ffSdougm 		return;
1108549ec3ffSdougm 
1109549ec3ffSdougm 	(void) printf("%s:\n", path);
1110549ec3ffSdougm 	(void) printf("\tex_version = %d\n", ep->ex_version);
1111549ec3ffSdougm 	(void) printf("\tex_path = %s\n", ep->ex_path);
1112549ec3ffSdougm 	(void) printf("\tex_pathlen = %ld\n", (ulong_t)ep->ex_pathlen);
1113549ec3ffSdougm 	(void) printf("\tex_flags: (0x%02x) ", ep->ex_flags);
1114549ec3ffSdougm 	if (ep->ex_flags & EX_NOSUID)
1115549ec3ffSdougm 		(void) printf("NOSUID ");
1116549ec3ffSdougm 	if (ep->ex_flags & EX_ACLOK)
1117549ec3ffSdougm 		(void) printf("ACLOK ");
1118549ec3ffSdougm 	if (ep->ex_flags & EX_PUBLIC)
1119549ec3ffSdougm 		(void) printf("PUBLIC ");
1120549ec3ffSdougm 	if (ep->ex_flags & EX_NOSUB)
1121549ec3ffSdougm 		(void) printf("NOSUB ");
1122549ec3ffSdougm 	if (ep->ex_flags & EX_LOG)
1123549ec3ffSdougm 		(void) printf("LOG ");
1124549ec3ffSdougm 	if (ep->ex_flags & EX_LOG_ALLOPS)
1125549ec3ffSdougm 		(void) printf("LOG_ALLOPS ");
1126549ec3ffSdougm 	if (ep->ex_flags == 0)
1127549ec3ffSdougm 		(void) printf("(none)");
1128549ec3ffSdougm 	(void) 	printf("\n");
1129549ec3ffSdougm 	if (ep->ex_flags & EX_LOG) {
1130549ec3ffSdougm 		(void) printf("\tex_log_buffer = %s\n",
1131549ec3ffSdougm 		    (ep->ex_log_buffer ? ep->ex_log_buffer : "(NULL)"));
1132549ec3ffSdougm 		(void) printf("\tex_tag = %s\n",
1133549ec3ffSdougm 		    (ep->ex_tag ? ep->ex_tag : "(NULL)"));
1134549ec3ffSdougm 	}
1135549ec3ffSdougm 	(void) printf("\tex_anon = %d\n", ep->ex_anon);
1136549ec3ffSdougm 	(void) printf("\tex_seccnt = %d\n", ep->ex_seccnt);
1137549ec3ffSdougm 	(void) printf("\n");
1138549ec3ffSdougm 	for (i = 0; i < ep->ex_seccnt; i++) {
1139549ec3ffSdougm 		sp = &ep->ex_secinfo[i];
1140549ec3ffSdougm 		(void) printf("\t\ts_secinfo = %s\n", sp->s_secinfo.sc_name);
1141549ec3ffSdougm 		(void) printf("\t\ts_flags: (0x%02x) ", sp->s_flags);
1142549ec3ffSdougm 		if (sp->s_flags & M_ROOT) (void) printf("M_ROOT ");
1143549ec3ffSdougm 		if (sp->s_flags & M_RO) (void) printf("M_RO ");
1144549ec3ffSdougm 		if (sp->s_flags & M_ROL) (void) printf("M_ROL ");
1145549ec3ffSdougm 		if (sp->s_flags & M_RW) (void) printf("M_RW ");
1146549ec3ffSdougm 		if (sp->s_flags & M_RWL) (void) printf("M_RWL ");
1147549ec3ffSdougm 		if (sp->s_flags == 0) (void) printf("(none)");
1148549ec3ffSdougm 		(void) printf("\n");
1149549ec3ffSdougm 		(void) printf("\t\ts_window = %d\n", sp->s_window);
1150549ec3ffSdougm 		(void) printf("\t\ts_rootcnt = %d ", sp->s_rootcnt);
1151549ec3ffSdougm 		(void) fflush(stdout);
1152549ec3ffSdougm 		for (j = 0; j < sp->s_rootcnt; j++)
1153549ec3ffSdougm 			(void) printf("%s ", sp->s_rootnames[j] ?
1154549ec3ffSdougm 			    sp->s_rootnames[j] : "<null>");
1155549ec3ffSdougm 		(void) printf("\n\n");
1156549ec3ffSdougm 	}
1157549ec3ffSdougm }
1158549ec3ffSdougm 
1159549ec3ffSdougm /*
1160549ec3ffSdougm  * count_security(opts)
1161549ec3ffSdougm  *
1162549ec3ffSdougm  * Count the number of security types (flavors). The optionset has
1163549ec3ffSdougm  * been populated with the security flavors as a holding mechanism.
1164549ec3ffSdougm  * We later use this number to allocate data structures.
1165549ec3ffSdougm  */
1166549ec3ffSdougm 
1167549ec3ffSdougm static int
1168549ec3ffSdougm count_security(sa_optionset_t opts)
1169549ec3ffSdougm {
1170549ec3ffSdougm 	int count = 0;
1171549ec3ffSdougm 	sa_property_t prop;
1172549ec3ffSdougm 	if (opts != NULL) {
1173549ec3ffSdougm 		for (prop = sa_get_property(opts, NULL); prop != NULL;
1174549ec3ffSdougm 		    prop = sa_get_next_property(prop)) {
1175549ec3ffSdougm 			count++;
1176549ec3ffSdougm 		}
1177549ec3ffSdougm 	}
1178549ec3ffSdougm 	return (count);
1179549ec3ffSdougm }
1180549ec3ffSdougm 
1181549ec3ffSdougm /*
1182549ec3ffSdougm  * nfs_sprint_option(rbuff, rbuffsize, incr, prop, sep)
1183549ec3ffSdougm  *
1184549ec3ffSdougm  * provides a mechanism to format NFS properties into legacy output
1185549ec3ffSdougm  * format. If the buffer would overflow, it is reallocated and grown
1186549ec3ffSdougm  * as appropriate. Special cases of converting internal form of values
1187549ec3ffSdougm  * to those used by "share" are done. this function does one property
1188549ec3ffSdougm  * at a time.
1189549ec3ffSdougm  */
1190549ec3ffSdougm 
1191549ec3ffSdougm static void
1192549ec3ffSdougm nfs_sprint_option(char **rbuff, size_t *rbuffsize, size_t incr,
1193549ec3ffSdougm 			sa_property_t prop, int sep)
1194549ec3ffSdougm {
1195549ec3ffSdougm 	char *name;
1196549ec3ffSdougm 	char *value;
1197549ec3ffSdougm 	int curlen;
1198549ec3ffSdougm 	char *buff = *rbuff;
1199549ec3ffSdougm 	size_t buffsize = *rbuffsize;
1200549ec3ffSdougm 
1201549ec3ffSdougm 	name = sa_get_property_attr(prop, "type");
1202549ec3ffSdougm 	value = sa_get_property_attr(prop, "value");
1203549ec3ffSdougm 	if (buff != NULL)
1204549ec3ffSdougm 		curlen = strlen(buff);
1205549ec3ffSdougm 	else
1206549ec3ffSdougm 		curlen = 0;
1207549ec3ffSdougm 	if (name != NULL) {
1208549ec3ffSdougm 		int len;
1209549ec3ffSdougm 		len = strlen(name) + sep;
1210549ec3ffSdougm 
1211549ec3ffSdougm 		/*
1212549ec3ffSdougm 		 * A future RFE would be to replace this with more
1213549ec3ffSdougm 		 * generic code and to possibly handle more types.
1214549ec3ffSdougm 		 */
1215549ec3ffSdougm 		switch (gettype(name)) {
1216549ec3ffSdougm 		case OPT_TYPE_BOOLEAN:
1217a3351425Sdougm 			if (value != NULL && strcasecmp(value, "false") == 0)
1218549ec3ffSdougm 				*name = '\0';
1219549ec3ffSdougm 			if (value != NULL)
1220549ec3ffSdougm 				sa_free_attr_string(value);
1221549ec3ffSdougm 			value = NULL;
1222549ec3ffSdougm 			break;
1223549ec3ffSdougm 		case OPT_TYPE_ACCLIST:
1224549ec3ffSdougm 			if (value != NULL && strcmp(value, "*") == 0) {
1225549ec3ffSdougm 				sa_free_attr_string(value);
1226549ec3ffSdougm 				value = NULL;
1227549ec3ffSdougm 			} else {
1228549ec3ffSdougm 				if (value != NULL)
1229549ec3ffSdougm 					len += 1 + strlen(value);
1230549ec3ffSdougm 			}
1231549ec3ffSdougm 			break;
1232549ec3ffSdougm 		case OPT_TYPE_LOGTAG:
1233549ec3ffSdougm 			if (value != NULL && strlen(value) == 0) {
1234549ec3ffSdougm 				sa_free_attr_string(value);
1235549ec3ffSdougm 				value = NULL;
1236549ec3ffSdougm 			} else {
1237549ec3ffSdougm 				if (value != NULL)
1238549ec3ffSdougm 					len += 1 + strlen(value);
1239549ec3ffSdougm 			}
1240549ec3ffSdougm 			break;
1241549ec3ffSdougm 		default:
1242549ec3ffSdougm 			if (value != NULL)
1243549ec3ffSdougm 				len += 1 + strlen(value);
1244549ec3ffSdougm 			break;
1245549ec3ffSdougm 		}
1246549ec3ffSdougm 		while (buffsize <= (curlen + len)) {
1247549ec3ffSdougm 			/* need more room */
1248549ec3ffSdougm 			buffsize += incr;
1249549ec3ffSdougm 			buff = realloc(buff, buffsize);
1250549ec3ffSdougm 			if (buff == NULL) {
1251549ec3ffSdougm 				/* realloc failed so free everything */
1252549ec3ffSdougm 				if (*rbuff != NULL)
1253549ec3ffSdougm 					free(*rbuff);
1254549ec3ffSdougm 			}
1255549ec3ffSdougm 			*rbuff = buff;
1256549ec3ffSdougm 			*rbuffsize = buffsize;
1257549ec3ffSdougm 			if (buff == NULL) {
1258549ec3ffSdougm 				return;
1259549ec3ffSdougm 			}
1260549ec3ffSdougm 		}
1261549ec3ffSdougm 		if (buff == NULL)
1262549ec3ffSdougm 			return;
1263a3351425Sdougm 		if (value == NULL) {
1264549ec3ffSdougm 			(void) snprintf(buff + curlen, buffsize - curlen,
1265549ec3ffSdougm 			    "%s%s", sep ? "," : "",
1266549ec3ffSdougm 			    name, value != NULL ? value : "");
1267a3351425Sdougm 		} else {
1268549ec3ffSdougm 			(void) snprintf(buff + curlen, buffsize - curlen,
1269549ec3ffSdougm 			    "%s%s=%s", sep ? "," : "",
1270549ec3ffSdougm 			    name, value != NULL ? value : "");
1271549ec3ffSdougm 		}
1272a3351425Sdougm 	}
1273549ec3ffSdougm 	if (name != NULL)
1274549ec3ffSdougm 		sa_free_attr_string(name);
1275549ec3ffSdougm 	if (value != NULL)
1276549ec3ffSdougm 		sa_free_attr_string(value);
1277549ec3ffSdougm }
1278549ec3ffSdougm 
1279549ec3ffSdougm /*
1280549ec3ffSdougm  * nfs_format_options(group, hier)
1281549ec3ffSdougm  *
1282549ec3ffSdougm  * format all the options on the group into an old-style option
1283549ec3ffSdougm  * string. If hier is non-zero, walk up the tree to get inherited
1284549ec3ffSdougm  * options.
1285549ec3ffSdougm  */
1286549ec3ffSdougm 
1287549ec3ffSdougm static char *
1288549ec3ffSdougm nfs_format_options(sa_group_t group, int hier)
1289549ec3ffSdougm {
1290549ec3ffSdougm 	sa_optionset_t options = NULL;
1291a3351425Sdougm 	sa_optionset_t secoptions = NULL;
1292549ec3ffSdougm 	sa_property_t prop, secprop;
1293a3351425Sdougm 	sa_security_t security = NULL;
1294549ec3ffSdougm 	char *buff;
1295549ec3ffSdougm 	size_t buffsize;
1296a3351425Sdougm 	char *sectype = NULL;
1297a3351425Sdougm 	int sep = 0;
1298a3351425Sdougm 
1299a3351425Sdougm 
1300a3351425Sdougm 	buff = malloc(OPT_CHUNK);
1301a3351425Sdougm 	if (buff == NULL) {
1302a3351425Sdougm 		return (NULL);
1303a3351425Sdougm 	}
1304a3351425Sdougm 
1305a3351425Sdougm 	buff[0] = '\0';
1306a3351425Sdougm 	buffsize = OPT_CHUNK;
1307a3351425Sdougm 
1308a3351425Sdougm 	/*
1309a3351425Sdougm 	 * We may have a an optionset relative to this item. format
1310a3351425Sdougm 	 * these if we find them and then add any security definitions.
1311a3351425Sdougm 	 */
1312549ec3ffSdougm 
1313549ec3ffSdougm 	options = sa_get_derived_optionset(group, "nfs", hier);
1314549ec3ffSdougm 
1315549ec3ffSdougm 	/*
1316549ec3ffSdougm 	 * do the default set first but skip any option that is also
1317549ec3ffSdougm 	 * in the protocol specific optionset.
1318549ec3ffSdougm 	 */
1319549ec3ffSdougm 	if (options != NULL) {
1320a3351425Sdougm 		for (prop = sa_get_property(options, NULL);
1321a3351425Sdougm 		    prop != NULL; prop = sa_get_next_property(prop)) {
1322549ec3ffSdougm 			/*
1323a3351425Sdougm 			 * use this one since we skipped any
1324a3351425Sdougm 			 * of these that were also in
1325a3351425Sdougm 			 * optdefault
1326549ec3ffSdougm 			 */
1327a3351425Sdougm 			nfs_sprint_option(&buff, &buffsize, OPT_CHUNK,
1328a3351425Sdougm 			    prop, sep);
1329549ec3ffSdougm 			if (buff == NULL) {
1330549ec3ffSdougm 				/*
1331a3351425Sdougm 				 * buff could become NULL if there
1332a3351425Sdougm 				 * isn't enough memory for
1333a3351425Sdougm 				 * nfs_sprint_option to realloc()
1334a3351425Sdougm 				 * as necessary. We can't really
1335a3351425Sdougm 				 * do anything about it at this
1336a3351425Sdougm 				 * point so we return NULL.  The
1337a3351425Sdougm 				 * caller should handle the
1338a3351425Sdougm 				 * failure.
1339549ec3ffSdougm 				 */
1340a3351425Sdougm 				if (options != NULL)
1341a3351425Sdougm 					sa_free_derived_optionset(
1342a3351425Sdougm 					    options);
1343549ec3ffSdougm 				return (buff);
1344549ec3ffSdougm 			}
1345549ec3ffSdougm 			sep = 1;
1346549ec3ffSdougm 		}
1347549ec3ffSdougm 	}
1348549ec3ffSdougm 	secoptions = (sa_optionset_t)sa_get_all_security_types(group,
1349549ec3ffSdougm 	    "nfs", hier);
1350549ec3ffSdougm 	if (secoptions != NULL) {
1351549ec3ffSdougm 		for (secprop = sa_get_property(secoptions, NULL);
1352a3351425Sdougm 		    secprop != NULL;
1353a3351425Sdougm 		    secprop = sa_get_next_property(secprop)) {
1354549ec3ffSdougm 			sectype = sa_get_property_attr(secprop, "type");
1355a3351425Sdougm 			security =
1356a3351425Sdougm 			    (sa_security_t)sa_get_derived_security(
1357a3351425Sdougm 			    group, sectype, "nfs", hier);
1358549ec3ffSdougm 			if (security != NULL) {
1359549ec3ffSdougm 				if (sectype != NULL) {
1360a3351425Sdougm 					prop = sa_create_property(
1361a3351425Sdougm 					    "sec", sectype);
1362a3351425Sdougm 					nfs_sprint_option(&buff,
1363a3351425Sdougm 					    &buffsize, OPT_CHUNK,
1364549ec3ffSdougm 					    prop, sep);
1365549ec3ffSdougm 					(void) sa_remove_property(prop);
1366549ec3ffSdougm 					sep = 1;
1367549ec3ffSdougm 				}
1368a3351425Sdougm 				for (prop = sa_get_property(security,
1369a3351425Sdougm 				    NULL); prop != NULL;
1370549ec3ffSdougm 				    prop = sa_get_next_property(prop)) {
1371a3351425Sdougm 					nfs_sprint_option(&buff,
1372a3351425Sdougm 					    &buffsize, OPT_CHUNK, prop,
1373a3351425Sdougm 					    sep);
1374a3351425Sdougm 					if (buff == NULL)
1375a3351425Sdougm 						goto err;
1376a3351425Sdougm 					sep = 1;
1377a3351425Sdougm 				}
1378a3351425Sdougm 				sa_free_derived_optionset(security);
1379a3351425Sdougm 			}
1380a3351425Sdougm 			if (sectype != NULL)
1381a3351425Sdougm 				sa_free_attr_string(sectype);
1382a3351425Sdougm 		}
1383a3351425Sdougm 		sa_free_derived_optionset(secoptions);
1384a3351425Sdougm 	}
1385549ec3ffSdougm 
1386a3351425Sdougm 	if (options != NULL)
1387a3351425Sdougm 		sa_free_derived_optionset(options);
1388a3351425Sdougm 	return (buff);
1389a3351425Sdougm 
1390a3351425Sdougm err:
1391a3351425Sdougm 	/*
1392a3351425Sdougm 	 * If we couldn't allocate memory for option printing, we need
1393a3351425Sdougm 	 * to break out of the nested loops, cleanup and return NULL.
1394a3351425Sdougm 	 */
1395a3351425Sdougm 	if (secoptions != NULL)
1396549ec3ffSdougm 		sa_free_derived_optionset(secoptions);
1397549ec3ffSdougm 	if (security != NULL)
1398549ec3ffSdougm 		sa_free_derived_optionset(security);
1399549ec3ffSdougm 	if (sectype != NULL)
1400549ec3ffSdougm 		sa_free_attr_string(sectype);
1401549ec3ffSdougm 	if (options != NULL)
1402549ec3ffSdougm 		sa_free_derived_optionset(options);
1403549ec3ffSdougm 	return (buff);
1404549ec3ffSdougm }
1405a3351425Sdougm 
1406549ec3ffSdougm /*
1407549ec3ffSdougm  * Append an entry to the nfslogtab file
1408549ec3ffSdougm  */
1409549ec3ffSdougm static int
1410549ec3ffSdougm nfslogtab_add(dir, buffer, tag)
1411549ec3ffSdougm 	char *dir, *buffer, *tag;
1412549ec3ffSdougm {
1413549ec3ffSdougm 	FILE *f;
1414549ec3ffSdougm 	struct logtab_ent lep;
1415549ec3ffSdougm 	int error = 0;
1416549ec3ffSdougm 
1417549ec3ffSdougm 	/*
1418549ec3ffSdougm 	 * Open the file for update and create it if necessary.
1419549ec3ffSdougm 	 * This may leave the I/O offset at the end of the file,
1420549ec3ffSdougm 	 * so rewind back to the beginning of the file.
1421549ec3ffSdougm 	 */
1422549ec3ffSdougm 	f = fopen(NFSLOGTAB, "a+");
1423549ec3ffSdougm 	if (f == NULL) {
1424549ec3ffSdougm 		error = errno;
1425549ec3ffSdougm 		goto out;
1426549ec3ffSdougm 	}
1427549ec3ffSdougm 	rewind(f);
1428549ec3ffSdougm 
1429549ec3ffSdougm 	if (lockf(fileno(f), F_LOCK, 0L) < 0) {
1430549ec3ffSdougm 		(void) fprintf(stderr, dgettext(TEXT_DOMAIN,
1431549ec3ffSdougm 		    "share complete, however failed to lock %s "
1432549ec3ffSdougm 		    "for update: %s\n"), NFSLOGTAB, strerror(errno));
1433549ec3ffSdougm 		error = -1;
1434549ec3ffSdougm 		goto out;
1435549ec3ffSdougm 	}
1436549ec3ffSdougm 
1437549ec3ffSdougm 	if (logtab_deactivate_after_boot(f) == -1) {
1438549ec3ffSdougm 		(void) fprintf(stderr, dgettext(TEXT_DOMAIN,
1439549ec3ffSdougm 		    "share complete, however could not deactivate "
1440549ec3ffSdougm 		    "entries in %s\n"), NFSLOGTAB);
1441549ec3ffSdougm 		error = -1;
1442549ec3ffSdougm 		goto out;
1443549ec3ffSdougm 	}
1444549ec3ffSdougm 
1445549ec3ffSdougm 	/*
1446549ec3ffSdougm 	 * Remove entries matching buffer and sharepoint since we're
1447549ec3ffSdougm 	 * going to replace it with perhaps an entry with a new tag.
1448549ec3ffSdougm 	 */
1449549ec3ffSdougm 	if (logtab_rement(f, buffer, dir, NULL, -1)) {
1450549ec3ffSdougm 		(void) fprintf(stderr, dgettext(TEXT_DOMAIN,
1451549ec3ffSdougm 		    "share complete, however could not remove matching "
1452549ec3ffSdougm 		    "entries in %s\n"), NFSLOGTAB);
1453549ec3ffSdougm 		error = -1;
1454549ec3ffSdougm 		goto out;
1455549ec3ffSdougm 	}
1456549ec3ffSdougm 
1457549ec3ffSdougm 	/*
1458549ec3ffSdougm 	 * Deactivate all active entries matching this sharepoint
1459549ec3ffSdougm 	 */
1460549ec3ffSdougm 	if (logtab_deactivate(f, NULL, dir, NULL)) {
1461549ec3ffSdougm 		(void) fprintf(stderr, dgettext(TEXT_DOMAIN,
1462549ec3ffSdougm 		    "share complete, however could not deactivate matching "
1463549ec3ffSdougm 		    "entries in %s\n"), NFSLOGTAB);
1464549ec3ffSdougm 		error = -1;
1465549ec3ffSdougm 		goto out;
1466549ec3ffSdougm 	}
1467549ec3ffSdougm 
1468549ec3ffSdougm 	lep.le_buffer = buffer;
1469549ec3ffSdougm 	lep.le_path = dir;
1470549ec3ffSdougm 	lep.le_tag = tag;
1471549ec3ffSdougm 	lep.le_state = LES_ACTIVE;
1472549ec3ffSdougm 
1473549ec3ffSdougm 	/*
1474549ec3ffSdougm 	 * Add new sharepoint / buffer location to nfslogtab
1475549ec3ffSdougm 	 */
1476549ec3ffSdougm 	if (logtab_putent(f, &lep) < 0) {
1477549ec3ffSdougm 		(void) fprintf(stderr, dgettext(TEXT_DOMAIN,
1478549ec3ffSdougm 		    "share complete, however could not add %s to %s\n"),
1479549ec3ffSdougm 		    dir, NFSLOGTAB);
1480549ec3ffSdougm 		error = -1;
1481549ec3ffSdougm 	}
1482549ec3ffSdougm 
1483549ec3ffSdougm out:
1484549ec3ffSdougm 	if (f != NULL)
1485549ec3ffSdougm 		(void) fclose(f);
1486549ec3ffSdougm 	return (error);
1487549ec3ffSdougm }
1488549ec3ffSdougm 
1489549ec3ffSdougm /*
1490549ec3ffSdougm  * Deactivate an entry from the nfslogtab file
1491549ec3ffSdougm  */
1492549ec3ffSdougm static int
1493549ec3ffSdougm nfslogtab_deactivate(path)
1494549ec3ffSdougm 	char *path;
1495549ec3ffSdougm {
1496549ec3ffSdougm 	FILE *f;
1497549ec3ffSdougm 	int error = 0;
1498549ec3ffSdougm 
1499549ec3ffSdougm 	f = fopen(NFSLOGTAB, "r+");
1500549ec3ffSdougm 	if (f == NULL) {
1501549ec3ffSdougm 		error = errno;
1502549ec3ffSdougm 		goto out;
1503549ec3ffSdougm 	}
1504549ec3ffSdougm 	if (lockf(fileno(f), F_LOCK, 0L) < 0) {
1505549ec3ffSdougm 		error = errno;
1506549ec3ffSdougm 		(void)  fprintf(stderr, dgettext(TEXT_DOMAIN,
1507549ec3ffSdougm 		    "share complete, however could not lock %s for "
1508549ec3ffSdougm 		    "update: %s\n"), NFSLOGTAB, strerror(error));
1509549ec3ffSdougm 		goto out;
1510549ec3ffSdougm 	}
1511549ec3ffSdougm 	if (logtab_deactivate(f, NULL, path, NULL) == -1) {
1512549ec3ffSdougm 		error = -1;
1513549ec3ffSdougm 		(void) fprintf(stderr,
1514549ec3ffSdougm 		    dgettext(TEXT_DOMAIN,
1515549ec3ffSdougm 		    "share complete, however could not "
1516549ec3ffSdougm 		    "deactivate %s in %s\n"), path, NFSLOGTAB);
1517549ec3ffSdougm 		goto out;
1518549ec3ffSdougm 	}
1519549ec3ffSdougm 
1520549ec3ffSdougm out:	if (f != NULL)
1521549ec3ffSdougm 		(void) fclose(f);
1522549ec3ffSdougm 
1523549ec3ffSdougm 	return (error);
1524549ec3ffSdougm }
1525549ec3ffSdougm 
1526549ec3ffSdougm /*
1527546405c3Sdougm  * check_public(group, skipshare)
1528546405c3Sdougm  *
1529546405c3Sdougm  * Check the group for any shares that have the public property
1530546405c3Sdougm  * enabled. We skip "skipshare" since that is the one we are
1531546405c3Sdougm  * working with. This is a separate function to make handling
1532546405c3Sdougm  * subgroups simpler. Returns true if there is a share with public.
1533546405c3Sdougm  */
1534546405c3Sdougm static int
1535546405c3Sdougm check_public(sa_group_t group, sa_share_t skipshare)
1536546405c3Sdougm {
1537546405c3Sdougm 	int exists = B_FALSE;
1538546405c3Sdougm 	sa_share_t share;
1539546405c3Sdougm 	sa_optionset_t opt;
1540546405c3Sdougm 	sa_property_t prop;
1541546405c3Sdougm 	char *shared;
1542546405c3Sdougm 
1543546405c3Sdougm 	for (share = sa_get_share(group, NULL); share != NULL;
1544546405c3Sdougm 	    share = sa_get_next_share(share)) {
1545546405c3Sdougm 		if (share == skipshare)
1546546405c3Sdougm 			continue;
1547546405c3Sdougm 
1548546405c3Sdougm 		opt = sa_get_optionset(share, "nfs");
1549546405c3Sdougm 		if (opt == NULL)
1550546405c3Sdougm 			continue;
1551546405c3Sdougm 		prop = sa_get_property(opt, "public");
1552546405c3Sdougm 		if (prop == NULL)
1553546405c3Sdougm 			continue;
1554546405c3Sdougm 		shared = sa_get_share_attr(share, "shared");
1555546405c3Sdougm 		if (shared != NULL) {
1556546405c3Sdougm 			exists = strcmp(shared, "true") == 0;
1557546405c3Sdougm 			sa_free_attr_string(shared);
1558546405c3Sdougm 			if (exists == B_TRUE)
1559546405c3Sdougm 				break;
1560546405c3Sdougm 		}
1561546405c3Sdougm 	}
1562546405c3Sdougm 
1563546405c3Sdougm 	return (exists);
1564546405c3Sdougm }
1565546405c3Sdougm 
1566546405c3Sdougm /*
1567549ec3ffSdougm  * public_exists(share)
1568549ec3ffSdougm  *
1569549ec3ffSdougm  * check to see if public option is set on any other share than the
1570546405c3Sdougm  * one specified. Need to check zfs sub-groups as well as the top
1571546405c3Sdougm  * level groups.
1572549ec3ffSdougm  */
1573549ec3ffSdougm static int
1574549ec3ffSdougm public_exists(sa_share_t skipshare)
1575549ec3ffSdougm {
1576549ec3ffSdougm 	sa_group_t group;
1577549ec3ffSdougm 	sa_handle_t handle;
1578549ec3ffSdougm 
1579549ec3ffSdougm 	group = sa_get_parent_group(skipshare);
1580549ec3ffSdougm 	if (group == NULL)
1581549ec3ffSdougm 		return (SA_NO_SUCH_GROUP);
1582549ec3ffSdougm 
1583549ec3ffSdougm 	handle = sa_find_group_handle(group);
1584549ec3ffSdougm 	if (handle == NULL)
1585549ec3ffSdougm 		return (SA_SYSTEM_ERR);
1586549ec3ffSdougm 
1587549ec3ffSdougm 	for (group = sa_get_group(handle, NULL); group != NULL;
1588549ec3ffSdougm 	    group = sa_get_next_group(group)) {
1589546405c3Sdougm 		/* Walk any ZFS subgroups as well as all standard groups */
1590546405c3Sdougm 		if (sa_group_is_zfs(group)) {
1591546405c3Sdougm 			sa_group_t subgroup;
1592546405c3Sdougm 			for (subgroup = sa_get_sub_group(group);
1593546405c3Sdougm 			    subgroup != NULL;
1594546405c3Sdougm 			    subgroup = sa_get_next_group(subgroup)) {
1595546405c3Sdougm 				if (check_public(subgroup, skipshare))
1596546405c3Sdougm 					return (B_TRUE);
1597546405c3Sdougm 			}
1598546405c3Sdougm 		} else {
1599546405c3Sdougm 			if (check_public(group, skipshare))
1600546405c3Sdougm 				return (B_TRUE);
1601549ec3ffSdougm 		}
1602549ec3ffSdougm 	}
1603546405c3Sdougm 	return (B_FALSE);
1604549ec3ffSdougm }
1605549ec3ffSdougm 
1606549ec3ffSdougm /*
1607549ec3ffSdougm  * sa_enable_share at the protocol level, enable_share must tell the
1608549ec3ffSdougm  * implementation that it is to enable the share. This entails
1609549ec3ffSdougm  * converting the path and options into the appropriate ioctl
1610549ec3ffSdougm  * calls. It is assumed that all error checking of paths, etc. were
1611549ec3ffSdougm  * done earlier.
1612549ec3ffSdougm  */
1613549ec3ffSdougm static int
1614549ec3ffSdougm nfs_enable_share(sa_share_t share)
1615549ec3ffSdougm {
1616549ec3ffSdougm 	struct exportdata export;
1617549ec3ffSdougm 	sa_optionset_t secoptlist;
1618549ec3ffSdougm 	struct secinfo *sp;
1619549ec3ffSdougm 	int num_secinfo;
1620549ec3ffSdougm 	sa_optionset_t opt;
1621549ec3ffSdougm 	sa_security_t sec;
1622549ec3ffSdougm 	sa_property_t prop;
1623549ec3ffSdougm 	char *path;
1624549ec3ffSdougm 	int err = SA_OK;
1625546405c3Sdougm 	int i;
1626ecd6cf80Smarks 	int iszfs;
1627549ec3ffSdougm 
1628549ec3ffSdougm 	/* Don't drop core if the NFS module isn't loaded. */
1629549ec3ffSdougm 	(void) signal(SIGSYS, SIG_IGN);
1630549ec3ffSdougm 
1631549ec3ffSdougm 	/* get the path since it is important in several places */
1632549ec3ffSdougm 	path = sa_get_share_attr(share, "path");
1633549ec3ffSdougm 	if (path == NULL)
1634549ec3ffSdougm 		return (SA_NO_SUCH_PATH);
1635549ec3ffSdougm 
1636ecd6cf80Smarks 	iszfs = sa_path_is_zfs(path);
1637549ec3ffSdougm 	/*
1638549ec3ffSdougm 	 * find the optionsets and security sets.  There may not be
1639549ec3ffSdougm 	 * any or there could be one or two for each of optionset and
1640549ec3ffSdougm 	 * security may have multiple, one per security type per
1641549ec3ffSdougm 	 * protocol type.
1642549ec3ffSdougm 	 */
1643549ec3ffSdougm 	opt = sa_get_derived_optionset(share, "nfs", 1);
1644549ec3ffSdougm 	secoptlist = (sa_optionset_t)sa_get_all_security_types(share, "nfs", 1);
1645549ec3ffSdougm 	if (secoptlist != NULL)
1646549ec3ffSdougm 		num_secinfo = MAX(1, count_security(secoptlist));
1647549ec3ffSdougm 	else
1648549ec3ffSdougm 		num_secinfo = 1;
1649549ec3ffSdougm 
1650549ec3ffSdougm 	/*
1651549ec3ffSdougm 	 * walk through the options and fill in the structure
1652549ec3ffSdougm 	 * appropriately.
1653549ec3ffSdougm 	 */
1654549ec3ffSdougm 
1655549ec3ffSdougm 	(void) memset(&export, '\0', sizeof (export));
1656549ec3ffSdougm 
1657549ec3ffSdougm 	/*
1658549ec3ffSdougm 	 * do non-security options first since there is only one after
1659549ec3ffSdougm 	 * the derived group is constructed.
1660549ec3ffSdougm 	 */
1661549ec3ffSdougm 	export.ex_version = EX_CURRENT_VERSION;
1662549ec3ffSdougm 	export.ex_anon = UID_NOBODY; /* this is our default value */
1663549ec3ffSdougm 	export.ex_index = NULL;
1664549ec3ffSdougm 	export.ex_path = path;
1665549ec3ffSdougm 	export.ex_pathlen = strlen(path) + 1;
1666549ec3ffSdougm 
1667549ec3ffSdougm 	if (opt != NULL)
1668549ec3ffSdougm 		err = fill_export_from_optionset(&export, opt);
1669549ec3ffSdougm 
1670549ec3ffSdougm 	/*
1671549ec3ffSdougm 	 * check to see if "public" is set. If it is, then make sure
1672549ec3ffSdougm 	 * no other share has it set. If it is already used, fail.
1673549ec3ffSdougm 	 */
1674549ec3ffSdougm 
1675549ec3ffSdougm 	if (export.ex_flags & EX_PUBLIC && public_exists(share)) {
1676549ec3ffSdougm 		(void) printf(dgettext(TEXT_DOMAIN,
1677549ec3ffSdougm 		    "NFS: Cannot share more than one file "
1678549ec3ffSdougm 		    "system with 'public' property\n"));
1679549ec3ffSdougm 		err = SA_NOT_ALLOWED;
1680549ec3ffSdougm 		goto out;
1681549ec3ffSdougm 	}
1682549ec3ffSdougm 
1683546405c3Sdougm 	sp = calloc(num_secinfo, sizeof (struct secinfo));
1684549ec3ffSdougm 	if (sp == NULL) {
1685549ec3ffSdougm 		err = SA_NO_MEMORY;
1686546405c3Sdougm 		(void) printf(dgettext(TEXT_DOMAIN,
1687546405c3Sdougm 		    "NFS: NFS: no memory for security\n"));
1688546405c3Sdougm 		goto out;
1689546405c3Sdougm 	}
1690549ec3ffSdougm 	export.ex_secinfo = sp;
1691549ec3ffSdougm 	/* get default secinfo */
1692549ec3ffSdougm 	export.ex_seccnt = num_secinfo;
1693549ec3ffSdougm 	/*
1694549ec3ffSdougm 	 * since we must have one security option defined, we
1695549ec3ffSdougm 	 * init to the default and then override as we find
1696549ec3ffSdougm 	 * defined security options. This handles the case
1697549ec3ffSdougm 	 * where we have no defined options but we need to set
1698549ec3ffSdougm 	 * up one.
1699549ec3ffSdougm 	 */
1700549ec3ffSdougm 	sp[0].s_window = DEF_WIN;
1701549ec3ffSdougm 	sp[0].s_rootnames = NULL;
1702549ec3ffSdougm 	/* setup a default in case no properties defined */
1703549ec3ffSdougm 	if (nfs_getseconfig_default(&sp[0].s_secinfo)) {
1704549ec3ffSdougm 		(void) printf(dgettext(TEXT_DOMAIN,
1705549ec3ffSdougm 		    "NFS: nfs_getseconfig_default: failed to "
1706549ec3ffSdougm 		    "get default security mode\n"));
1707549ec3ffSdougm 		err = SA_CONFIG_ERR;
1708549ec3ffSdougm 	}
1709549ec3ffSdougm 	if (secoptlist != NULL) {
1710549ec3ffSdougm 		for (i = 0, prop = sa_get_property(secoptlist, NULL);
1711549ec3ffSdougm 		    prop != NULL && i < num_secinfo;
1712549ec3ffSdougm 		    prop = sa_get_next_property(prop), i++) {
1713549ec3ffSdougm 			char *sectype;
1714549ec3ffSdougm 				sectype = sa_get_property_attr(prop, "type");
1715a3351425Sdougm 			/*
1716a3351425Sdougm 			 * if sectype is NULL, we probably
1717a3351425Sdougm 			 * have a memory problem and can't get
1718a3351425Sdougm 			 * the correct values. Rather than
1719a3351425Sdougm 			 * exporting with incorrect security,
1720a3351425Sdougm 			 * don't share it.
1721a3351425Sdougm 			 */
1722a3351425Sdougm 			if (sectype == NULL) {
1723a3351425Sdougm 				err = SA_NO_MEMORY;
1724a3351425Sdougm 				(void) printf(dgettext(TEXT_DOMAIN,
1725a3351425Sdougm 				    "NFS: Cannot share %s: "
1726a3351425Sdougm 				    "no memory\n"), path);
1727a3351425Sdougm 				goto out;
1728a3351425Sdougm 			}
1729a3351425Sdougm 			sec = (sa_security_t)sa_get_derived_security(
1730a3351425Sdougm 			    share, sectype, "nfs", 1);
1731549ec3ffSdougm 			sp[i].s_window = DEF_WIN;
1732549ec3ffSdougm 			sp[i].s_rootcnt = 0;
1733549ec3ffSdougm 			sp[i].s_rootnames = NULL;
1734549ec3ffSdougm 				(void) fill_security_from_secopts(&sp[i], sec);
1735549ec3ffSdougm 			if (sec != NULL)
1736549ec3ffSdougm 				sa_free_derived_security(sec);
1737549ec3ffSdougm 			if (sectype != NULL)
1738549ec3ffSdougm 				sa_free_attr_string(sectype);
1739549ec3ffSdougm 		}
1740549ec3ffSdougm 	}
1741549ec3ffSdougm 	/*
1742549ec3ffSdougm 	 * when we get here, we can do the exportfs system call and
1743549ec3ffSdougm 	 * initiate thinsg. We probably want to enable the nfs.server
1744549ec3ffSdougm 	 * service first if it isn't running within SMF.
1745549ec3ffSdougm 	 */
1746549ec3ffSdougm 	/* check nfs.server status and start if needed */
1747549ec3ffSdougm 	/* now add the share to the internal tables */
1748549ec3ffSdougm 	printarg(path, &export);
1749549ec3ffSdougm 	/*
1750549ec3ffSdougm 	 * call the exportfs system call which is implemented
1751549ec3ffSdougm 	 * via the nfssys() call as the EXPORTFS subfunction.
1752549ec3ffSdougm 	 */
1753ecd6cf80Smarks 	if (iszfs) {
1754ecd6cf80Smarks 		struct exportfs_args ea;
1755ecd6cf80Smarks 		share_t sh;
1756ecd6cf80Smarks 		char *str;
1757ecd6cf80Smarks 		priv_set_t *priv_effective;
1758ecd6cf80Smarks 		int privileged;
1759ecd6cf80Smarks 
1760ecd6cf80Smarks 		/*
1761ecd6cf80Smarks 		 * If we aren't a privileged user
1762ecd6cf80Smarks 		 * and NFS server service isn't running
1763ecd6cf80Smarks 		 * then print out an error message
1764ecd6cf80Smarks 		 * and return EPERM
1765ecd6cf80Smarks 		 */
1766ecd6cf80Smarks 
1767ecd6cf80Smarks 		priv_effective = priv_allocset();
1768ecd6cf80Smarks 		(void) getppriv(PRIV_EFFECTIVE, priv_effective);
1769ecd6cf80Smarks 
1770ecd6cf80Smarks 		privileged = (priv_isfullset(priv_effective) == B_TRUE);
1771ecd6cf80Smarks 		priv_freeset(priv_effective);
1772ecd6cf80Smarks 
1773ecd6cf80Smarks 		if (!privileged &&
1774ecd6cf80Smarks 		    (str = smf_get_state(NFS_SERVER_SVC)) != NULL) {
1775ecd6cf80Smarks 			err = 0;
1776ecd6cf80Smarks 			if (strcmp(str, SCF_STATE_STRING_ONLINE) != 0) {
1777ecd6cf80Smarks 				(void) printf(dgettext(TEXT_DOMAIN,
1778ecd6cf80Smarks 				    "NFS: Cannot share remote "
1779ecd6cf80Smarks 				    "filesystem: %s\n"), path);
1780ecd6cf80Smarks 				(void) printf(dgettext(TEXT_DOMAIN,
1781ecd6cf80Smarks 				    "NFS: Service needs to be enabled "
1782ecd6cf80Smarks 				    "by a privileged user\n"));
1783ecd6cf80Smarks 				err = SA_SYSTEM_ERR;
1784ecd6cf80Smarks 				errno = EPERM;
1785ecd6cf80Smarks 			}
1786ecd6cf80Smarks 			free(str);
1787ecd6cf80Smarks 		}
1788ecd6cf80Smarks 
1789ecd6cf80Smarks 		if (err == 0) {
1790ecd6cf80Smarks 			ea.dname = path;
1791ecd6cf80Smarks 			ea.uex = &export;
1792ecd6cf80Smarks 
1793ecd6cf80Smarks 			sa_sharetab_fill_zfs(share, &sh, "nfs");
1794ecd6cf80Smarks 			err = sa_share_zfs(share, path, &sh, &ea, B_TRUE);
1795ecd6cf80Smarks 			sa_emptyshare(&sh);
1796ecd6cf80Smarks 		}
1797ecd6cf80Smarks 	} else {
1798ecd6cf80Smarks 		err = exportfs(path, &export);
1799ecd6cf80Smarks 	}
1800ecd6cf80Smarks 
1801ecd6cf80Smarks 	if (err < 0) {
1802549ec3ffSdougm 		err = SA_SYSTEM_ERR;
1803549ec3ffSdougm 		switch (errno) {
1804549ec3ffSdougm 		case EREMOTE:
1805549ec3ffSdougm 			(void) printf(dgettext(TEXT_DOMAIN,
1806ecd6cf80Smarks 			    "NFS: Cannot share filesystems "
1807ecd6cf80Smarks 			    "in non-global zones: %s\n"), path);
1808ecd6cf80Smarks 			err = SA_NOT_SUPPORTED;
1809549ec3ffSdougm 			break;
1810549ec3ffSdougm 		case EPERM:
1811549ec3ffSdougm 			if (getzoneid() != GLOBAL_ZONEID) {
1812549ec3ffSdougm 				(void) printf(dgettext(TEXT_DOMAIN,
1813549ec3ffSdougm 				    "NFS: Cannot share file systems "
1814549ec3ffSdougm 				    "in non-global zones: %s\n"), path);
1815549ec3ffSdougm 				err = SA_NOT_SUPPORTED;
1816549ec3ffSdougm 				break;
1817549ec3ffSdougm 			}
1818549ec3ffSdougm 			err = SA_NO_PERMISSION;
1819549ec3ffSdougm 			/* FALLTHROUGH */
1820549ec3ffSdougm 		default:
1821549ec3ffSdougm 			break;
1822549ec3ffSdougm 		}
1823549ec3ffSdougm 	} else {
1824549ec3ffSdougm 		/* update sharetab with an add/modify */
1825ecd6cf80Smarks 		if (!iszfs) {
1826549ec3ffSdougm 			(void) sa_update_sharetab(share, "nfs");
1827549ec3ffSdougm 		}
1828ecd6cf80Smarks 	}
1829549ec3ffSdougm 
1830549ec3ffSdougm 	if (err == SA_OK) {
1831549ec3ffSdougm 		/*
1832549ec3ffSdougm 		 * enable services as needed. This should probably be
1833549ec3ffSdougm 		 * done elsewhere in order to minimize the calls to
1834549ec3ffSdougm 		 * check services.
1835549ec3ffSdougm 		 */
1836549ec3ffSdougm 		/*
1837549ec3ffSdougm 		 * check to see if logging and other services need to
1838549ec3ffSdougm 		 * be triggered, but only if there wasn't an
1839549ec3ffSdougm 		 * error. This is probably where sharetab should be
1840549ec3ffSdougm 		 * updated with the NFS specific entry.
1841549ec3ffSdougm 		 */
1842549ec3ffSdougm 		if (export.ex_flags & EX_LOG) {
1843549ec3ffSdougm 			/* enable logging */
1844549ec3ffSdougm 			if (nfslogtab_add(path, export.ex_log_buffer,
1845549ec3ffSdougm 			    export.ex_tag) != 0) {
1846a3351425Sdougm 				(void) fprintf(stderr, dgettext(TEXT_DOMAIN,
1847549ec3ffSdougm 				    "Could not enable logging for %s\n"),
1848549ec3ffSdougm 				    path);
1849549ec3ffSdougm 			}
1850549ec3ffSdougm 			_check_services(service_list_logging);
1851549ec3ffSdougm 		} else {
1852549ec3ffSdougm 			/*
1853549ec3ffSdougm 			 * don't have logging so remove it from file. It might
1854549ec3ffSdougm 			 * not be thre, but that doesn't matter.
1855549ec3ffSdougm 			 */
1856549ec3ffSdougm 			(void) nfslogtab_deactivate(path);
1857549ec3ffSdougm 			_check_services(service_list_default);
1858549ec3ffSdougm 		}
1859549ec3ffSdougm 	}
1860549ec3ffSdougm 
1861549ec3ffSdougm out:
1862549ec3ffSdougm 	if (path != NULL)
1863549ec3ffSdougm 		free(path);
1864549ec3ffSdougm 
1865549ec3ffSdougm 	cleanup_export(&export);
1866549ec3ffSdougm 	if (opt != NULL)
1867549ec3ffSdougm 		sa_free_derived_optionset(opt);
1868549ec3ffSdougm 	if (secoptlist != NULL)
1869549ec3ffSdougm 		(void) sa_destroy_optionset(secoptlist);
1870549ec3ffSdougm 	return (err);
1871549ec3ffSdougm }
1872549ec3ffSdougm 
1873549ec3ffSdougm /*
1874549ec3ffSdougm  * nfs_disable_share(share)
1875549ec3ffSdougm  *
1876549ec3ffSdougm  * Unshare the specified share.  How much error checking should be
1877549ec3ffSdougm  * done? We only do basic errors for now.
1878549ec3ffSdougm  */
1879549ec3ffSdougm static int
1880ecd6cf80Smarks nfs_disable_share(sa_share_t share, char *path)
1881549ec3ffSdougm {
1882549ec3ffSdougm 	int err;
1883549ec3ffSdougm 	int ret = SA_OK;
1884ecd6cf80Smarks 	int iszfs;
1885549ec3ffSdougm 
1886ecd6cf80Smarks 
1887ecd6cf80Smarks 	if (path != NULL) {
1888ecd6cf80Smarks 		iszfs = sa_path_is_zfs(path);
1889ecd6cf80Smarks 
1890ecd6cf80Smarks 		if (iszfs) {
1891ecd6cf80Smarks 			struct exportfs_args ea;
1892ecd6cf80Smarks 			share_t sh = { 0 };
1893ecd6cf80Smarks 
1894ecd6cf80Smarks 			ea.dname = path;
1895ecd6cf80Smarks 			ea.uex = NULL;
1896ecd6cf80Smarks 			sh.sh_path = path;
1897ecd6cf80Smarks 			sh.sh_fstype = "nfs";
1898ecd6cf80Smarks 
1899ecd6cf80Smarks 			err = sa_share_zfs(share, path, &sh, &ea, B_FALSE);
1900ecd6cf80Smarks 		} else
1901ecd6cf80Smarks 			err = exportfs(path, NULL);
1902549ec3ffSdougm 		if (err < 0) {
1903a3351425Sdougm 			/*
1904ecd6cf80Smarks 			 * TBD: only an error in some
1905ecd6cf80Smarks 			 * cases - need better analysis
1906a3351425Sdougm 			 */
1907ecd6cf80Smarks 
1908549ec3ffSdougm 			switch (errno) {
1909549ec3ffSdougm 			case EPERM:
1910549ec3ffSdougm 			case EACCES:
1911549ec3ffSdougm 				ret = SA_NO_PERMISSION;
1912ecd6cf80Smarks 				if (getzoneid() != GLOBAL_ZONEID) {
1913549ec3ffSdougm 					ret = SA_NOT_SUPPORTED;
1914ecd6cf80Smarks 				}
1915549ec3ffSdougm 				break;
1916549ec3ffSdougm 			case EINVAL:
1917549ec3ffSdougm 			case ENOENT:
1918549ec3ffSdougm 				ret = SA_NO_SUCH_PATH;
1919549ec3ffSdougm 			break;
1920549ec3ffSdougm 			default:
1921549ec3ffSdougm 				ret = SA_SYSTEM_ERR;
1922549ec3ffSdougm 			break;
1923549ec3ffSdougm 			}
1924549ec3ffSdougm 		}
1925549ec3ffSdougm 		if (ret == SA_OK || ret == SA_NO_SUCH_PATH) {
1926ecd6cf80Smarks 			if (!iszfs)
1927ecd6cf80Smarks 				(void) sa_delete_sharetab(path, "nfs");
1928549ec3ffSdougm 			/* just in case it was logged */
1929ecd6cf80Smarks 			(void) nfslogtab_deactivate(path);
1930549ec3ffSdougm 		}
1931549ec3ffSdougm 	}
1932549ec3ffSdougm 	return (ret);
1933549ec3ffSdougm }
1934549ec3ffSdougm 
1935549ec3ffSdougm /*
1936549ec3ffSdougm  * check ro vs rw values.  Over time this may get beefed up.
1937549ec3ffSdougm  * for now it just does simple checks.
1938549ec3ffSdougm  */
1939549ec3ffSdougm 
1940549ec3ffSdougm static int
1941549ec3ffSdougm check_rorw(char *v1, char *v2)
1942549ec3ffSdougm {
1943549ec3ffSdougm 	int ret = SA_OK;
1944549ec3ffSdougm 	if (strcmp(v1, v2) == 0)
1945549ec3ffSdougm 		ret = SA_VALUE_CONFLICT;
1946549ec3ffSdougm 	return (ret);
1947549ec3ffSdougm }
1948549ec3ffSdougm 
1949549ec3ffSdougm /*
1950549ec3ffSdougm  * nfs_validate_property(property, parent)
1951549ec3ffSdougm  *
1952549ec3ffSdougm  * Check that the property has a legitimate value for its type.
1953549ec3ffSdougm  */
1954549ec3ffSdougm 
1955549ec3ffSdougm static int
1956549ec3ffSdougm nfs_validate_property(sa_property_t property, sa_optionset_t parent)
1957549ec3ffSdougm {
1958549ec3ffSdougm 	int ret = SA_OK;
1959549ec3ffSdougm 	char *propname;
1960549ec3ffSdougm 	char *other;
1961549ec3ffSdougm 	int optindex;
1962549ec3ffSdougm 	nfsl_config_t *configlist;
1963549ec3ffSdougm 	sa_group_t parent_group;
1964549ec3ffSdougm 	char *value;
1965549ec3ffSdougm 
1966549ec3ffSdougm 	propname = sa_get_property_attr(property, "type");
1967549ec3ffSdougm 
1968549ec3ffSdougm 	if ((optindex = findopt(propname)) < 0)
1969549ec3ffSdougm 		ret = SA_NO_SUCH_PROP;
1970549ec3ffSdougm 
1971549ec3ffSdougm 	/* need to validate value range here as well */
1972549ec3ffSdougm 
1973549ec3ffSdougm 	if (ret == SA_OK) {
1974549ec3ffSdougm 		parent_group = sa_get_parent_group((sa_share_t)parent);
1975a3351425Sdougm 		if (optdefs[optindex].share && !sa_is_share(parent_group))
1976549ec3ffSdougm 			ret = SA_PROP_SHARE_ONLY;
1977549ec3ffSdougm 	}
1978549ec3ffSdougm 	if (ret == SA_OK) {
1979549ec3ffSdougm 		value = sa_get_property_attr(property, "value");
1980549ec3ffSdougm 		if (value != NULL) {
1981549ec3ffSdougm 			/* first basic type checking */
1982549ec3ffSdougm 			switch (optdefs[optindex].type) {
1983549ec3ffSdougm 			case OPT_TYPE_NUMBER:
1984549ec3ffSdougm 				/* check that the value is all digits */
1985549ec3ffSdougm 				if (!is_a_number(value))
1986549ec3ffSdougm 					ret = SA_BAD_VALUE;
1987549ec3ffSdougm 				break;
1988549ec3ffSdougm 			case OPT_TYPE_BOOLEAN:
1989549ec3ffSdougm 				if (strlen(value) == 0 ||
1990549ec3ffSdougm 				    strcasecmp(value, "true") == 0 ||
1991549ec3ffSdougm 				    strcmp(value, "1") == 0 ||
1992549ec3ffSdougm 				    strcasecmp(value, "false") == 0 ||
1993549ec3ffSdougm 				    strcmp(value, "0") == 0) {
1994549ec3ffSdougm 					ret = SA_OK;
1995549ec3ffSdougm 				} else {
1996549ec3ffSdougm 					ret = SA_BAD_VALUE;
1997549ec3ffSdougm 				}
1998549ec3ffSdougm 				break;
1999549ec3ffSdougm 			case OPT_TYPE_USER:
2000549ec3ffSdougm 				if (!is_a_number(value)) {
2001549ec3ffSdougm 					struct passwd *pw;
2002a3351425Sdougm 					/*
2003a3351425Sdougm 					 * in this case it would have to be a
2004a3351425Sdougm 					 * user name
2005a3351425Sdougm 					 */
2006549ec3ffSdougm 					pw = getpwnam(value);
2007549ec3ffSdougm 					if (pw == NULL)
2008549ec3ffSdougm 						ret = SA_BAD_VALUE;
2009549ec3ffSdougm 					endpwent();
2010549ec3ffSdougm 				} else {
2011549ec3ffSdougm 					uint64_t intval;
2012549ec3ffSdougm 					intval = strtoull(value, NULL, 0);
2013549ec3ffSdougm 					if (intval > UID_MAX && intval != ~0)
2014549ec3ffSdougm 						ret = SA_BAD_VALUE;
2015549ec3ffSdougm 				}
2016549ec3ffSdougm 				break;
2017549ec3ffSdougm 			case OPT_TYPE_FILE:
2018549ec3ffSdougm 				if (strcmp(value, "..") == 0 ||
2019549ec3ffSdougm 				    strchr(value, '/') != NULL) {
2020549ec3ffSdougm 					ret = SA_BAD_VALUE;
2021549ec3ffSdougm 				}
2022549ec3ffSdougm 				break;
2023549ec3ffSdougm 			case OPT_TYPE_ACCLIST:
2024549ec3ffSdougm 				/*
2025549ec3ffSdougm 				 * access list handling. Should eventually
2026549ec3ffSdougm 				 * validate that all the values make sense.
2027549ec3ffSdougm 				 * Also, ro and rw may have cross value
2028549ec3ffSdougm 				 * conflicts.
2029549ec3ffSdougm 				 */
2030549ec3ffSdougm 				if (strcmp(propname, SHOPT_RO) == 0)
2031549ec3ffSdougm 					other = SHOPT_RW;
2032549ec3ffSdougm 				else if (strcmp(propname, SHOPT_RW) == 0)
2033549ec3ffSdougm 					other = SHOPT_RO;
2034549ec3ffSdougm 				else
2035549ec3ffSdougm 					other = NULL;
2036a3351425Sdougm 
2037549ec3ffSdougm 				if (other != NULL && parent != NULL) {
2038549ec3ffSdougm 					/* compare rw(ro) with ro(rw) */
2039549ec3ffSdougm 					sa_property_t oprop;
2040549ec3ffSdougm 					oprop = sa_get_property(parent, other);
2041549ec3ffSdougm 					if (oprop != NULL) {
2042a3351425Sdougm 						/*
2043a3351425Sdougm 						 * only potential
2044a3351425Sdougm 						 * confusion if other
2045a3351425Sdougm 						 * exists
2046a3351425Sdougm 						 */
2047549ec3ffSdougm 						char *ovalue;
2048a3351425Sdougm 						ovalue = sa_get_property_attr(
2049a3351425Sdougm 						    oprop, "value");
2050549ec3ffSdougm 						if (ovalue != NULL) {
2051a3351425Sdougm 							ret = check_rorw(value,
2052a3351425Sdougm 							    ovalue);
2053a3351425Sdougm 							sa_free_attr_string(
2054a3351425Sdougm 							    ovalue);
2055549ec3ffSdougm 						}
2056549ec3ffSdougm 					}
2057549ec3ffSdougm 				}
2058549ec3ffSdougm 				break;
2059549ec3ffSdougm 			case OPT_TYPE_LOGTAG:
2060549ec3ffSdougm 				if (nfsl_getconfig_list(&configlist) == 0) {
2061549ec3ffSdougm 					int error;
2062a3351425Sdougm 					if (value == NULL ||
2063a3351425Sdougm 					    strlen(value) == 0) {
2064549ec3ffSdougm 						if (value != NULL)
2065a3351425Sdougm 							sa_free_attr_string(
2066a3351425Sdougm 							    value);
2067549ec3ffSdougm 						value = strdup("global");
2068549ec3ffSdougm 					}
2069a3351425Sdougm 					if (value != NULL &&
2070a3351425Sdougm 					    nfsl_findconfig(configlist, value,
2071a3351425Sdougm 					    &error) == NULL) {
2072549ec3ffSdougm 						ret = SA_BAD_VALUE;
2073a3351425Sdougm 					} else {
2074a3351425Sdougm 						nfsl_freeconfig_list(
2075a3351425Sdougm 						    &configlist);
2076a3351425Sdougm 					}
2077549ec3ffSdougm 				} else {
2078549ec3ffSdougm 					ret = SA_CONFIG_ERR;
2079549ec3ffSdougm 				}
2080549ec3ffSdougm 				break;
2081549ec3ffSdougm 			case OPT_TYPE_STRING:
2082549ec3ffSdougm 				/* whatever is here should be ok */
2083549ec3ffSdougm 				break;
2084549ec3ffSdougm 			case OPT_TYPE_SECURITY:
2085549ec3ffSdougm 				/*
2086549ec3ffSdougm 				 * The "sec" property isn't used in the
2087549ec3ffSdougm 				 * non-legacy parts of sharemgr. We need to
2088549ec3ffSdougm 				 * reject it here. For legacy, it is pulled
2089549ec3ffSdougm 				 * out well before we get here.
2090549ec3ffSdougm 				 */
2091549ec3ffSdougm 				ret = SA_NO_SUCH_PROP;
2092549ec3ffSdougm 				break;
2093549ec3ffSdougm 			default:
2094549ec3ffSdougm 				break;
2095549ec3ffSdougm 			}
2096549ec3ffSdougm 			sa_free_attr_string(value);
2097549ec3ffSdougm 			if (ret == SA_OK && optdefs[optindex].check != NULL) {
2098549ec3ffSdougm 				/* do the property specific check */
2099549ec3ffSdougm 				ret = optdefs[optindex].check(property);
2100549ec3ffSdougm 			}
2101549ec3ffSdougm 		}
2102549ec3ffSdougm 	}
2103549ec3ffSdougm 
2104549ec3ffSdougm 	if (propname != NULL)
2105549ec3ffSdougm 		sa_free_attr_string(propname);
2106549ec3ffSdougm 	return (ret);
2107549ec3ffSdougm }
2108549ec3ffSdougm 
2109549ec3ffSdougm /*
2110549ec3ffSdougm  * Protocol management functions
2111549ec3ffSdougm  *
2112549ec3ffSdougm  * Properties defined in the default files are defined in
2113549ec3ffSdougm  * proto_option_defs for parsing and validation. If "other" and
2114549ec3ffSdougm  * "compare" are set, then the value for this property should be
2115549ec3ffSdougm  * compared against the property specified in "other" using the
2116549ec3ffSdougm  * "compare" check (either <= or >=) in order to ensure that the
2117549ec3ffSdougm  * values are in the correct range.  E.g. setting server_versmin
2118549ec3ffSdougm  * higher than server_versmax should not be allowed.
2119549ec3ffSdougm  */
2120549ec3ffSdougm 
2121549ec3ffSdougm struct proto_option_defs {
2122549ec3ffSdougm 	char *tag;
2123549ec3ffSdougm 	char *name;	/* display name -- remove protocol identifier */
2124549ec3ffSdougm 	int index;
2125549ec3ffSdougm 	int type;
2126549ec3ffSdougm 	union {
2127549ec3ffSdougm 	    int intval;
2128549ec3ffSdougm 	    char *string;
2129549ec3ffSdougm 	} defvalue;
2130549ec3ffSdougm 	uint32_t svcs;
2131549ec3ffSdougm 	int32_t minval;
2132549ec3ffSdougm 	int32_t maxval;
2133549ec3ffSdougm 	char *file;
2134549ec3ffSdougm 	char *other;
2135549ec3ffSdougm 	int compare;
2136549ec3ffSdougm #define	OPT_CMP_GE	0
2137549ec3ffSdougm #define	OPT_CMP_LE	1
2138549ec3ffSdougm 	int (*check)(char *);
2139549ec3ffSdougm } proto_options[] = {
2140549ec3ffSdougm #define	PROTO_OPT_NFSD_SERVERS			0
2141549ec3ffSdougm 	{"nfsd_servers",
2142549ec3ffSdougm 	    "servers", PROTO_OPT_NFSD_SERVERS, OPT_TYPE_NUMBER, 16, SVC_NFSD,
2143549ec3ffSdougm 	    1, INT32_MAX, NFSADMIN},
2144549ec3ffSdougm #define	PROTO_OPT_LOCKD_LISTEN_BACKLOG		1
2145549ec3ffSdougm 	{"lockd_listen_backlog",
2146549ec3ffSdougm 	    "lockd_listen_backlog", PROTO_OPT_LOCKD_LISTEN_BACKLOG,
2147549ec3ffSdougm 	    OPT_TYPE_NUMBER, 32, SVC_LOCKD, 32, INT32_MAX, NFSADMIN},
2148549ec3ffSdougm #define	PROTO_OPT_LOCKD_SERVERS			2
2149549ec3ffSdougm 	{"lockd_servers",
2150549ec3ffSdougm 	    "lockd_servers", PROTO_OPT_LOCKD_SERVERS, OPT_TYPE_NUMBER, 20,
2151549ec3ffSdougm 	    SVC_LOCKD, 1, INT32_MAX, NFSADMIN},
2152549ec3ffSdougm #define	PROTO_OPT_LOCKD_RETRANSMIT_TIMEOUT	3
2153549ec3ffSdougm 	{"lockd_retransmit_timeout",
2154549ec3ffSdougm 	    "lockd_retransmit_timeout", PROTO_OPT_LOCKD_RETRANSMIT_TIMEOUT,
2155549ec3ffSdougm 	    OPT_TYPE_NUMBER, 5, SVC_LOCKD, 0, INT32_MAX, NFSADMIN},
2156549ec3ffSdougm #define	PROTO_OPT_GRACE_PERIOD			4
2157549ec3ffSdougm 	{"grace_period",
2158549ec3ffSdougm 	    "grace_period", PROTO_OPT_GRACE_PERIOD, OPT_TYPE_NUMBER, 90,
2159549ec3ffSdougm 	    SVC_LOCKD, 0, INT32_MAX, NFSADMIN},
2160549ec3ffSdougm #define	PROTO_OPT_NFS_SERVER_VERSMIN		5
2161549ec3ffSdougm 	{"nfs_server_versmin",
2162549ec3ffSdougm 	    "server_versmin", PROTO_OPT_NFS_SERVER_VERSMIN, OPT_TYPE_NUMBER,
2163549ec3ffSdougm 	    (int)NFS_VERSMIN_DEFAULT, SVC_NFSD|SVC_MOUNTD, NFS_VERSMIN,
2164549ec3ffSdougm 	    NFS_VERSMAX, NFSADMIN, "server_versmax", OPT_CMP_LE},
2165549ec3ffSdougm #define	PROTO_OPT_NFS_SERVER_VERSMAX		6
2166549ec3ffSdougm 	{"nfs_server_versmax",
2167549ec3ffSdougm 	    "server_versmax", PROTO_OPT_NFS_SERVER_VERSMAX, OPT_TYPE_NUMBER,
2168549ec3ffSdougm 	    (int)NFS_VERSMAX_DEFAULT, SVC_NFSD|SVC_MOUNTD, NFS_VERSMIN,
2169549ec3ffSdougm 	    NFS_VERSMAX, NFSADMIN, "server_versmin", OPT_CMP_GE},
2170549ec3ffSdougm #define	PROTO_OPT_NFS_CLIENT_VERSMIN		7
2171549ec3ffSdougm 	{"nfs_client_versmin",
2172549ec3ffSdougm 	    "client_versmin", PROTO_OPT_NFS_CLIENT_VERSMIN, OPT_TYPE_NUMBER,
2173549ec3ffSdougm 	    (int)NFS_VERSMIN_DEFAULT, NULL, NFS_VERSMIN, NFS_VERSMAX,
2174549ec3ffSdougm 	    NFSADMIN, "client_versmax", OPT_CMP_LE},
2175549ec3ffSdougm #define	PROTO_OPT_NFS_CLIENT_VERSMAX		8
2176549ec3ffSdougm 	{"nfs_client_versmax",
2177549ec3ffSdougm 	    "client_versmax", PROTO_OPT_NFS_CLIENT_VERSMAX, OPT_TYPE_NUMBER,
2178549ec3ffSdougm 	    (int)NFS_VERSMAX_DEFAULT, NULL, NFS_VERSMIN, NFS_VERSMAX,
2179549ec3ffSdougm 	    NFSADMIN, "client_versmin", OPT_CMP_GE},
2180549ec3ffSdougm #define	PROTO_OPT_NFS_SERVER_DELEGATION		9
2181549ec3ffSdougm 	{"nfs_server_delegation",
2182549ec3ffSdougm 	    "server_delegation", PROTO_OPT_NFS_SERVER_DELEGATION,
2183549ec3ffSdougm 	    OPT_TYPE_ONOFF, NFS_SERVER_DELEGATION_DEFAULT, SVC_NFSD, 0, 0,
2184549ec3ffSdougm 	    NFSADMIN},
2185549ec3ffSdougm #define	PROTO_OPT_NFSMAPID_DOMAIN		10
2186549ec3ffSdougm 	{"nfsmapid_domain",
2187549ec3ffSdougm 	    "nfsmapid_domain", PROTO_OPT_NFSMAPID_DOMAIN, OPT_TYPE_DOMAIN,
2188549ec3ffSdougm 	    NULL, SVC_NFSMAPID, 0, 0, NFSADMIN},
2189549ec3ffSdougm #define	PROTO_OPT_NFSD_MAX_CONNECTIONS		11
2190549ec3ffSdougm 	{"nfsd_max_connections",
2191549ec3ffSdougm 	    "max_connections", PROTO_OPT_NFSD_MAX_CONNECTIONS,
2192549ec3ffSdougm 	    OPT_TYPE_NUMBER, -1, SVC_NFSD, -1, INT32_MAX, NFSADMIN},
2193549ec3ffSdougm #define	PROTO_OPT_NFSD_PROTOCOL			12
2194549ec3ffSdougm 	{"nfsd_protocol",
2195549ec3ffSdougm 	    "protocol", PROTO_OPT_NFSD_PROTOCOL, OPT_TYPE_PROTOCOL, 0,
2196549ec3ffSdougm 	    SVC_NFSD, 0, 0, NFSADMIN},
2197549ec3ffSdougm #define	PROTO_OPT_NFSD_LISTEN_BACKLOG		13
2198549ec3ffSdougm 	{"nfsd_listen_backlog",
2199549ec3ffSdougm 	    "listen_backlog", PROTO_OPT_NFSD_LISTEN_BACKLOG,
2200549ec3ffSdougm 	    OPT_TYPE_NUMBER, 0,
2201549ec3ffSdougm 	    SVC_LOCKD, 0, INT32_MAX, NFSADMIN},
2202549ec3ffSdougm 	{NULL}
2203549ec3ffSdougm };
2204549ec3ffSdougm 
2205549ec3ffSdougm /*
2206549ec3ffSdougm  * the protoset holds the defined options so we don't have to read
2207549ec3ffSdougm  * them multiple times
2208549ec3ffSdougm  */
2209549ec3ffSdougm sa_protocol_properties_t protoset;
2210549ec3ffSdougm 
2211549ec3ffSdougm static int
2212549ec3ffSdougm findprotoopt(char *name, int whichname)
2213549ec3ffSdougm {
2214549ec3ffSdougm 	int i;
2215549ec3ffSdougm 	for (i = 0; proto_options[i].tag != NULL; i++) {
2216549ec3ffSdougm 		if (whichname == 1) {
2217549ec3ffSdougm 			if (strcasecmp(proto_options[i].name, name) == 0)
2218549ec3ffSdougm 			return (i);
2219549ec3ffSdougm 		} else {
2220549ec3ffSdougm 			if (strcasecmp(proto_options[i].tag, name) == 0)
2221549ec3ffSdougm 				return (i);
2222549ec3ffSdougm 		}
2223549ec3ffSdougm 	}
2224549ec3ffSdougm 	return (-1);
2225549ec3ffSdougm }
2226549ec3ffSdougm 
2227549ec3ffSdougm /*
2228549ec3ffSdougm  * fixcaselower(str)
2229549ec3ffSdougm  *
2230549ec3ffSdougm  * convert a string to lower case (inplace).
2231549ec3ffSdougm  */
2232549ec3ffSdougm 
2233549ec3ffSdougm static void
2234549ec3ffSdougm fixcaselower(char *str)
2235549ec3ffSdougm {
2236549ec3ffSdougm 	while (*str) {
2237549ec3ffSdougm 		*str = tolower(*str);
2238549ec3ffSdougm 		str++;
2239549ec3ffSdougm 	}
2240549ec3ffSdougm }
2241549ec3ffSdougm 
2242549ec3ffSdougm /*
2243549ec3ffSdougm  * fixcaseupper(str)
2244549ec3ffSdougm  *
2245549ec3ffSdougm  * convert a string to upper case (inplace).
2246549ec3ffSdougm  */
2247549ec3ffSdougm 
2248549ec3ffSdougm static void
2249549ec3ffSdougm fixcaseupper(char *str)
2250549ec3ffSdougm {
2251549ec3ffSdougm 	while (*str) {
2252549ec3ffSdougm 		*str = toupper(*str);
2253549ec3ffSdougm 		str++;
2254549ec3ffSdougm 	}
2255549ec3ffSdougm }
2256549ec3ffSdougm 
2257549ec3ffSdougm /*
2258330ef417Sdougm  * skipwhitespace(str)
2259330ef417Sdougm  *
2260330ef417Sdougm  * Skip leading white space. It is assumed that it is called with a
2261330ef417Sdougm  * valid pointer.
2262330ef417Sdougm  */
2263330ef417Sdougm 
2264330ef417Sdougm static char *
2265330ef417Sdougm skipwhitespace(char *str)
2266330ef417Sdougm {
2267330ef417Sdougm 	while (*str && isspace(*str))
2268330ef417Sdougm 		str++;
2269330ef417Sdougm 
2270330ef417Sdougm 	return (str);
2271330ef417Sdougm }
2272330ef417Sdougm 
2273330ef417Sdougm /*
2274a3351425Sdougm  * extractprop()
2275a3351425Sdougm  *
2276a3351425Sdougm  * Extract the property and value out of the line and create the
2277a3351425Sdougm  * property in the optionset.
2278a3351425Sdougm  */
2279a3351425Sdougm static void
2280a3351425Sdougm extractprop(char *name, char *value)
2281a3351425Sdougm {
2282a3351425Sdougm 	sa_property_t prop;
2283a3351425Sdougm 	int index;
2284a3351425Sdougm 	/*
2285a3351425Sdougm 	 * Remove any leading
2286a3351425Sdougm 	 * white space.
2287a3351425Sdougm 	 */
2288a3351425Sdougm 	name = skipwhitespace(name);
2289a3351425Sdougm 
2290a3351425Sdougm 	index = findprotoopt(name, 0);
2291a3351425Sdougm 	if (index >= 0) {
2292a3351425Sdougm 		fixcaselower(name);
2293a3351425Sdougm 		prop = sa_create_property(proto_options[index].name, value);
2294a3351425Sdougm 		if (prop != NULL)
2295a3351425Sdougm 			(void) sa_add_protocol_property(protoset, prop);
2296a3351425Sdougm 	}
2297a3351425Sdougm }
2298a3351425Sdougm 
2299a3351425Sdougm /*
2300549ec3ffSdougm  * initprotofromdefault()
2301549ec3ffSdougm  *
2302549ec3ffSdougm  * read the default file(s) and add the defined values to the
2303549ec3ffSdougm  * protoset.  Note that default values are known from the built in
2304549ec3ffSdougm  * table in case the file doesn't have a definition.
2305549ec3ffSdougm  */
2306549ec3ffSdougm 
2307549ec3ffSdougm static int
2308549ec3ffSdougm initprotofromdefault()
2309549ec3ffSdougm {
2310549ec3ffSdougm 	FILE *nfs;
2311549ec3ffSdougm 	char buff[BUFSIZ];
2312549ec3ffSdougm 	char *name;
2313549ec3ffSdougm 	char *value;
2314549ec3ffSdougm 
2315549ec3ffSdougm 	protoset = sa_create_protocol_properties("nfs");
2316549ec3ffSdougm 
2317549ec3ffSdougm 	if (protoset != NULL) {
2318549ec3ffSdougm 		nfs = fopen(NFSADMIN, "r");
2319549ec3ffSdougm 		if (nfs != NULL) {
2320549ec3ffSdougm 			while (fgets(buff, sizeof (buff), nfs) != NULL) {
2321549ec3ffSdougm 				switch (buff[0]) {
2322549ec3ffSdougm 				case '\n':
2323549ec3ffSdougm 				case '#':
2324549ec3ffSdougm 					/* skip */
2325549ec3ffSdougm 					break;
2326549ec3ffSdougm 				default:
2327549ec3ffSdougm 					name = buff;
2328549ec3ffSdougm 					buff[strlen(buff) - 1] = '\0';
2329549ec3ffSdougm 					value = strchr(name, '=');
2330549ec3ffSdougm 					if (value != NULL) {
2331549ec3ffSdougm 						*value++ = '\0';
2332a3351425Sdougm 						extractprop(name, value);
2333549ec3ffSdougm 					}
2334549ec3ffSdougm 				}
2335549ec3ffSdougm 			}
2336549ec3ffSdougm 			if (nfs != NULL)
2337549ec3ffSdougm 				(void) fclose(nfs);
2338549ec3ffSdougm 		}
2339549ec3ffSdougm 	}
2340549ec3ffSdougm 	if (protoset == NULL)
2341549ec3ffSdougm 		return (SA_NO_MEMORY);
2342549ec3ffSdougm 	return (SA_OK);
2343549ec3ffSdougm }
2344549ec3ffSdougm 
2345549ec3ffSdougm /*
2346a3351425Sdougm  * add_defaults()
2347549ec3ffSdougm  *
2348549ec3ffSdougm  * Add the default values for any property not defined in the parsing
2349549ec3ffSdougm  * of the default files. Values are set according to their defined
2350549ec3ffSdougm  * types.
2351549ec3ffSdougm  */
2352549ec3ffSdougm 
2353549ec3ffSdougm static void
2354549ec3ffSdougm add_defaults()
2355549ec3ffSdougm {
2356549ec3ffSdougm 	int i;
2357549ec3ffSdougm 	char number[MAXDIGITS];
2358549ec3ffSdougm 
2359549ec3ffSdougm 	for (i = 0; proto_options[i].tag != NULL; i++) {
2360549ec3ffSdougm 		sa_property_t prop;
2361a3351425Sdougm 		prop = sa_get_protocol_property(protoset,
2362a3351425Sdougm 		    proto_options[i].name);
2363549ec3ffSdougm 		if (prop == NULL) {
2364549ec3ffSdougm 			/* add the default value */
2365549ec3ffSdougm 			switch (proto_options[i].type) {
2366549ec3ffSdougm 			case OPT_TYPE_NUMBER:
2367549ec3ffSdougm 				(void) snprintf(number, sizeof (number), "%d",
2368549ec3ffSdougm 				    proto_options[i].defvalue.intval);
2369a3351425Sdougm 				prop = sa_create_property(proto_options[i].name,
2370a3351425Sdougm 				    number);
2371549ec3ffSdougm 				break;
2372549ec3ffSdougm 
2373549ec3ffSdougm 			case OPT_TYPE_BOOLEAN:
2374549ec3ffSdougm 				prop = sa_create_property(proto_options[i].name,
2375549ec3ffSdougm 				    proto_options[i].defvalue.intval ?
2376549ec3ffSdougm 				    "true" : "false");
2377549ec3ffSdougm 				break;
2378549ec3ffSdougm 
2379549ec3ffSdougm 			case OPT_TYPE_ONOFF:
2380549ec3ffSdougm 				prop = sa_create_property(proto_options[i].name,
2381549ec3ffSdougm 				    proto_options[i].defvalue.intval ?
2382549ec3ffSdougm 				    "on" : "off");
2383549ec3ffSdougm 				break;
2384549ec3ffSdougm 
2385549ec3ffSdougm 			default:
2386549ec3ffSdougm 				/* treat as strings of zero length */
2387a3351425Sdougm 				prop = sa_create_property(proto_options[i].name,
2388a3351425Sdougm 				    "");
2389549ec3ffSdougm 				break;
2390549ec3ffSdougm 			}
2391549ec3ffSdougm 			if (prop != NULL)
2392549ec3ffSdougm 				(void) sa_add_protocol_property(protoset, prop);
2393549ec3ffSdougm 		}
2394549ec3ffSdougm 	}
2395549ec3ffSdougm }
2396549ec3ffSdougm 
2397549ec3ffSdougm static void
2398549ec3ffSdougm free_protoprops()
2399549ec3ffSdougm {
2400549ec3ffSdougm 	xmlFreeNode(protoset);
2401549ec3ffSdougm }
2402549ec3ffSdougm 
2403549ec3ffSdougm /*
2404549ec3ffSdougm  * nfs_init()
2405549ec3ffSdougm  *
2406549ec3ffSdougm  * Initialize the NFS plugin.
2407549ec3ffSdougm  */
2408549ec3ffSdougm 
2409549ec3ffSdougm static int
2410549ec3ffSdougm nfs_init()
2411549ec3ffSdougm {
2412549ec3ffSdougm 	int ret = SA_OK;
2413549ec3ffSdougm 
2414549ec3ffSdougm 	if (sa_plugin_ops.sa_init != nfs_init)
2415549ec3ffSdougm 		(void) printf(dgettext(TEXT_DOMAIN,
2416549ec3ffSdougm 		    "NFS plugin not properly initialized\n"));
2417549ec3ffSdougm 
2418549ec3ffSdougm 	ret = initprotofromdefault();
2419a3351425Sdougm 	if (ret == SA_OK)
2420549ec3ffSdougm 		add_defaults();
2421549ec3ffSdougm 
2422549ec3ffSdougm 	return (ret);
2423549ec3ffSdougm }
2424549ec3ffSdougm 
2425549ec3ffSdougm /*
2426549ec3ffSdougm  * nfs_fini()
2427549ec3ffSdougm  *
2428549ec3ffSdougm  * uninitialize the NFS plugin. Want to avoid memory leaks.
2429549ec3ffSdougm  */
2430549ec3ffSdougm 
2431549ec3ffSdougm static void
2432549ec3ffSdougm nfs_fini()
2433549ec3ffSdougm {
2434549ec3ffSdougm 	free_protoprops();
2435549ec3ffSdougm }
2436549ec3ffSdougm 
2437549ec3ffSdougm /*
2438549ec3ffSdougm  * nfs_get_proto_set()
2439549ec3ffSdougm  *
2440549ec3ffSdougm  * Return an optionset with all the protocol specific properties in
2441549ec3ffSdougm  * it.
2442549ec3ffSdougm  */
2443549ec3ffSdougm 
2444549ec3ffSdougm static sa_protocol_properties_t
2445549ec3ffSdougm nfs_get_proto_set()
2446549ec3ffSdougm {
2447549ec3ffSdougm 	return (protoset);
2448549ec3ffSdougm }
2449549ec3ffSdougm 
2450549ec3ffSdougm struct deffile {
2451549ec3ffSdougm 	struct deffile *next;
2452549ec3ffSdougm 	char *line;
2453549ec3ffSdougm };
2454549ec3ffSdougm 
2455549ec3ffSdougm /*
2456549ec3ffSdougm  * read_default_file(fname)
2457549ec3ffSdougm  *
2458549ec3ffSdougm  * Read the specified default file. We return a list of entries. This
2459549ec3ffSdougm  * get used for adding or removing values.
2460549ec3ffSdougm  */
2461549ec3ffSdougm 
2462549ec3ffSdougm static struct deffile *
2463549ec3ffSdougm read_default_file(char *fname)
2464549ec3ffSdougm {
2465549ec3ffSdougm 	FILE *file;
2466549ec3ffSdougm 	struct deffile *defs = NULL;
2467549ec3ffSdougm 	struct deffile *newdef;
2468549ec3ffSdougm 	struct deffile *prevdef = NULL;
2469549ec3ffSdougm 	char buff[BUFSIZ * 2];
2470549ec3ffSdougm 
2471549ec3ffSdougm 	file = fopen(fname, "r");
2472549ec3ffSdougm 	if (file != NULL) {
2473549ec3ffSdougm 		while (fgets(buff, sizeof (buff), file) != NULL) {
2474a3351425Sdougm 			newdef = (struct deffile *)calloc(1,
2475a3351425Sdougm 			    sizeof (struct deffile));
2476549ec3ffSdougm 			if (newdef != NULL) {
2477330ef417Sdougm 				/* Make sure we skip any leading whitespace. */
2478330ef417Sdougm 				newdef->line = strdup(skipwhitespace(buff));
2479549ec3ffSdougm 				if (defs == NULL) {
2480549ec3ffSdougm 					prevdef = defs = newdef;
2481549ec3ffSdougm 				} else {
2482549ec3ffSdougm 					prevdef->next = newdef;
2483549ec3ffSdougm 					prevdef = newdef;
2484549ec3ffSdougm 				}
2485549ec3ffSdougm 			}
2486549ec3ffSdougm 		}
2487549ec3ffSdougm 	}
2488549ec3ffSdougm 	(void) fclose(file);
2489549ec3ffSdougm 	return (defs);
2490549ec3ffSdougm }
2491549ec3ffSdougm 
2492549ec3ffSdougm static void
2493549ec3ffSdougm free_default_file(struct deffile *defs)
2494549ec3ffSdougm {
2495549ec3ffSdougm 	struct deffile *curdefs = NULL;
2496549ec3ffSdougm 
2497549ec3ffSdougm 	while (defs != NULL) {
2498549ec3ffSdougm 		curdefs = defs;
2499549ec3ffSdougm 		defs = defs->next;
2500549ec3ffSdougm 		if (curdefs->line != NULL)
2501549ec3ffSdougm 			free(curdefs->line);
2502549ec3ffSdougm 		free(curdefs);
2503549ec3ffSdougm 	}
2504549ec3ffSdougm }
2505549ec3ffSdougm 
2506549ec3ffSdougm /*
2507549ec3ffSdougm  * write_default_file(fname, defs)
2508549ec3ffSdougm  *
2509549ec3ffSdougm  * Write the default file back.
2510549ec3ffSdougm  */
2511549ec3ffSdougm 
2512549ec3ffSdougm static int
2513549ec3ffSdougm write_default_file(char *fname, struct deffile *defs)
2514549ec3ffSdougm {
2515549ec3ffSdougm 	FILE *file;
2516549ec3ffSdougm 	int ret = SA_OK;
2517549ec3ffSdougm 	sigset_t old, new;
2518549ec3ffSdougm 
2519549ec3ffSdougm 	file = fopen(fname, "w+");
2520549ec3ffSdougm 	if (file != NULL) {
2521549ec3ffSdougm 		(void) sigprocmask(SIG_BLOCK, NULL, &new);
2522549ec3ffSdougm 		(void) sigaddset(&new, SIGHUP);
2523549ec3ffSdougm 		(void) sigaddset(&new, SIGINT);
2524549ec3ffSdougm 		(void) sigaddset(&new, SIGQUIT);
2525549ec3ffSdougm 		(void) sigaddset(&new, SIGTSTP);
2526549ec3ffSdougm 		(void) sigprocmask(SIG_SETMASK, &new, &old);
2527549ec3ffSdougm 		while (defs != NULL) {
2528549ec3ffSdougm 			(void) fputs(defs->line, file);
2529549ec3ffSdougm 			defs = defs->next;
2530549ec3ffSdougm 		}
2531549ec3ffSdougm 		(void) fsync(fileno(file));
2532549ec3ffSdougm 		(void) sigprocmask(SIG_SETMASK, &old, NULL);
2533549ec3ffSdougm 		(void) fclose(file);
2534549ec3ffSdougm 	} else {
2535549ec3ffSdougm 		switch (errno) {
2536549ec3ffSdougm 		case EPERM:
2537549ec3ffSdougm 		case EACCES:
2538549ec3ffSdougm 			ret = SA_NO_PERMISSION;
2539549ec3ffSdougm 			break;
2540549ec3ffSdougm 		default:
2541549ec3ffSdougm 			ret = SA_SYSTEM_ERR;
2542549ec3ffSdougm 		}
2543549ec3ffSdougm 	}
2544549ec3ffSdougm 	return (ret);
2545549ec3ffSdougm }
2546549ec3ffSdougm 
2547549ec3ffSdougm 
2548549ec3ffSdougm /*
2549549ec3ffSdougm  * set_default_file_value(tag, value)
2550549ec3ffSdougm  *
2551549ec3ffSdougm  * Set the default file value for tag to value. Then rewrite the file.
2552549ec3ffSdougm  * tag and value are always set.  The caller must ensure this.
2553549ec3ffSdougm  */
2554549ec3ffSdougm 
2555549ec3ffSdougm #define	MAX_STRING_LENGTH	256
2556549ec3ffSdougm static int
2557549ec3ffSdougm set_default_file_value(char *tag, char *value)
2558549ec3ffSdougm {
2559549ec3ffSdougm 	int ret = SA_OK;
2560549ec3ffSdougm 	struct deffile *root;
2561549ec3ffSdougm 	struct deffile *defs;
2562549ec3ffSdougm 	struct deffile *prev;
2563549ec3ffSdougm 	char string[MAX_STRING_LENGTH];
2564549ec3ffSdougm 	int len;
2565549ec3ffSdougm 	int update = 0;
2566549ec3ffSdougm 
2567549ec3ffSdougm 	(void) snprintf(string, MAX_STRING_LENGTH, "%s=", tag);
2568549ec3ffSdougm 	len = strlen(string);
2569549ec3ffSdougm 
2570549ec3ffSdougm 	root = defs = read_default_file(NFSADMIN);
2571549ec3ffSdougm 	if (root == NULL) {
2572549ec3ffSdougm 		if (errno == EPERM || errno == EACCES)
2573549ec3ffSdougm 			ret = SA_NO_PERMISSION;
2574549ec3ffSdougm 		else
2575549ec3ffSdougm 			ret = SA_SYSTEM_ERR;
2576549ec3ffSdougm 	} else {
2577549ec3ffSdougm 		while (defs != NULL) {
2578549ec3ffSdougm 			if (defs->line != NULL &&
2579549ec3ffSdougm 			    strncasecmp(defs->line, string, len) == 0) {
2580549ec3ffSdougm 				/* replace with the new value */
2581549ec3ffSdougm 				free(defs->line);
2582549ec3ffSdougm 				fixcaseupper(tag);
2583a3351425Sdougm 				(void) snprintf(string, sizeof (string),
2584a3351425Sdougm 				    "%s=%s\n", tag, value);
2585549ec3ffSdougm 				string[MAX_STRING_LENGTH - 1] = '\0';
2586549ec3ffSdougm 				defs->line = strdup(string);
2587549ec3ffSdougm 				update = 1;
2588549ec3ffSdougm 				break;
2589549ec3ffSdougm 			}
2590549ec3ffSdougm 			defs = defs->next;
2591549ec3ffSdougm 		}
2592549ec3ffSdougm 		if (!update) {
2593549ec3ffSdougm 			defs = root;
2594549ec3ffSdougm 			/* didn't find, so see if it is a comment */
2595549ec3ffSdougm 			(void) snprintf(string, MAX_STRING_LENGTH, "#%s=", tag);
2596549ec3ffSdougm 			len = strlen(string);
2597549ec3ffSdougm 			while (defs != NULL) {
2598549ec3ffSdougm 				if (strncasecmp(defs->line, string, len) == 0) {
2599549ec3ffSdougm 					/* replace with the new value */
2600549ec3ffSdougm 					free(defs->line);
2601549ec3ffSdougm 					fixcaseupper(tag);
2602549ec3ffSdougm 					(void) snprintf(string, sizeof (string),
2603549ec3ffSdougm 					    "%s=%s\n", tag, value);
2604549ec3ffSdougm 					string[MAX_STRING_LENGTH - 1] = '\0';
2605549ec3ffSdougm 					defs->line = strdup(string);
2606549ec3ffSdougm 					update = 1;
2607549ec3ffSdougm 					break;
2608549ec3ffSdougm 				}
2609549ec3ffSdougm 				defs = defs->next;
2610549ec3ffSdougm 			}
2611549ec3ffSdougm 		}
2612549ec3ffSdougm 		if (!update) {
2613549ec3ffSdougm 			fixcaseupper(tag);
2614549ec3ffSdougm 			(void) snprintf(string, sizeof (string), "%s=%s\n",
2615549ec3ffSdougm 			    tag, value);
2616549ec3ffSdougm 			prev = root;
2617549ec3ffSdougm 			while (prev->next != NULL)
2618549ec3ffSdougm 				prev = prev->next;
2619549ec3ffSdougm 			defs = malloc(sizeof (struct deffile));
2620549ec3ffSdougm 			prev->next = defs;
2621549ec3ffSdougm 			if (defs != NULL) {
2622549ec3ffSdougm 				defs->next = NULL;
2623549ec3ffSdougm 				defs->line = strdup(string);
2624549ec3ffSdougm 			}
2625549ec3ffSdougm 		}
2626549ec3ffSdougm 		if (update) {
2627549ec3ffSdougm 			ret = write_default_file(NFSADMIN, root);
2628549ec3ffSdougm 		}
2629549ec3ffSdougm 		free_default_file(root);
2630549ec3ffSdougm 	}
2631549ec3ffSdougm 	return (ret);
2632549ec3ffSdougm }
2633549ec3ffSdougm 
2634549ec3ffSdougm /*
2635549ec3ffSdougm  * service_in_state(service, chkstate)
2636549ec3ffSdougm  *
2637549ec3ffSdougm  * Want to know if the specified service is in the desired state
2638549ec3ffSdougm  * (chkstate) or not. Return true (1) if it is and false (0) if it
2639549ec3ffSdougm  * isn't.
2640549ec3ffSdougm  */
2641549ec3ffSdougm static int
2642549ec3ffSdougm service_in_state(char *service, const char *chkstate)
2643549ec3ffSdougm {
2644549ec3ffSdougm 	char *state;
2645549ec3ffSdougm 	int ret = B_FALSE;
2646549ec3ffSdougm 
2647549ec3ffSdougm 	state = smf_get_state(service);
2648549ec3ffSdougm 	if (state != NULL) {
2649549ec3ffSdougm 		/* got the state so get the equality for the return value */
2650549ec3ffSdougm 		ret = strcmp(state, chkstate) == 0 ? B_TRUE : B_FALSE;
2651549ec3ffSdougm 		free(state);
2652549ec3ffSdougm 	}
2653549ec3ffSdougm 	return (ret);
2654549ec3ffSdougm }
2655549ec3ffSdougm 
2656549ec3ffSdougm /*
2657549ec3ffSdougm  * restart_service(svcs)
2658549ec3ffSdougm  *
2659549ec3ffSdougm  * Walk through the bit mask of services that need to be restarted in
2660549ec3ffSdougm  * order to use the new property values. Some properties affect
2661549ec3ffSdougm  * multiple daemons. Should only restart a service if it is currently
2662549ec3ffSdougm  * enabled (online).
2663549ec3ffSdougm  */
2664549ec3ffSdougm 
2665549ec3ffSdougm static void
2666549ec3ffSdougm restart_service(uint32_t svcs)
2667549ec3ffSdougm {
2668549ec3ffSdougm 	uint32_t mask;
2669549ec3ffSdougm 	int ret;
2670549ec3ffSdougm 	char *service;
2671549ec3ffSdougm 
2672549ec3ffSdougm 	for (mask = 1; svcs != 0; mask <<= 1) {
2673549ec3ffSdougm 		switch (svcs & mask) {
2674549ec3ffSdougm 		case SVC_LOCKD:
2675549ec3ffSdougm 			service = LOCKD;
2676549ec3ffSdougm 			break;
2677549ec3ffSdougm 		case SVC_STATD:
2678549ec3ffSdougm 			service = STATD;
2679549ec3ffSdougm 			break;
2680549ec3ffSdougm 		case SVC_NFSD:
2681549ec3ffSdougm 			service = NFSD;
2682549ec3ffSdougm 			break;
2683549ec3ffSdougm 		case SVC_MOUNTD:
2684549ec3ffSdougm 			service = MOUNTD;
2685549ec3ffSdougm 			break;
2686549ec3ffSdougm 		case SVC_NFS4CBD:
2687549ec3ffSdougm 			service = NFS4CBD;
2688549ec3ffSdougm 			break;
2689549ec3ffSdougm 		case SVC_NFSMAPID:
2690549ec3ffSdougm 			service = NFSMAPID;
2691549ec3ffSdougm 			break;
2692549ec3ffSdougm 		case SVC_RQUOTAD:
2693549ec3ffSdougm 			service = RQUOTAD;
2694549ec3ffSdougm 			break;
2695549ec3ffSdougm 		case SVC_NFSLOGD:
2696549ec3ffSdougm 			service = NFSLOGD;
2697549ec3ffSdougm 			break;
2698549ec3ffSdougm 		default:
2699549ec3ffSdougm 			continue;
2700549ec3ffSdougm 		}
2701549ec3ffSdougm 
2702549ec3ffSdougm 		/*
2703549ec3ffSdougm 		 * Only attempt to restart the service if it is
2704549ec3ffSdougm 		 * currently running. In the future, it may be
2705549ec3ffSdougm 		 * desirable to use smf_refresh_instance if the NFS
2706549ec3ffSdougm 		 * services ever implement the refresh method.
2707549ec3ffSdougm 		 */
2708549ec3ffSdougm 		if (service_in_state(service, SCF_STATE_STRING_ONLINE)) {
2709549ec3ffSdougm 			ret = smf_restart_instance(service);
2710549ec3ffSdougm 			/*
2711549ec3ffSdougm 			 * There are only a few SMF errors at this point, but
2712549ec3ffSdougm 			 * it is also possible that a bad value may have put
2713549ec3ffSdougm 			 * the service into maintenance if there wasn't an
2714549ec3ffSdougm 			 * SMF level error.
2715549ec3ffSdougm 			 */
2716549ec3ffSdougm 			if (ret != 0) {
2717549ec3ffSdougm 				(void) fprintf(stderr,
2718549ec3ffSdougm 				    dgettext(TEXT_DOMAIN,
2719549ec3ffSdougm 				    "%s failed to restart: %s\n"),
2720549ec3ffSdougm 				    scf_strerror(scf_error()));
2721549ec3ffSdougm 			} else {
2722549ec3ffSdougm 				/*
2723549ec3ffSdougm 				 * Check whether it has gone to "maintenance"
2724549ec3ffSdougm 				 * mode or not. Maintenance implies something
2725549ec3ffSdougm 				 * went wrong.
2726549ec3ffSdougm 				 */
2727a3351425Sdougm 				if (service_in_state(service,
2728a3351425Sdougm 				    SCF_STATE_STRING_MAINT)) {
2729549ec3ffSdougm 					(void) fprintf(stderr,
2730549ec3ffSdougm 					    dgettext(TEXT_DOMAIN,
2731549ec3ffSdougm 					    "%s failed to restart\n"),
2732549ec3ffSdougm 					    service);
2733549ec3ffSdougm 				}
2734549ec3ffSdougm 			}
2735549ec3ffSdougm 		}
2736549ec3ffSdougm 		svcs &= ~mask;
2737549ec3ffSdougm 	}
2738549ec3ffSdougm }
2739549ec3ffSdougm 
2740549ec3ffSdougm /*
2741549ec3ffSdougm  * nfs_minmax_check(name, value)
2742549ec3ffSdougm  *
2743549ec3ffSdougm  * Verify that the value for the property specified by index is valid
2744549ec3ffSdougm  * relative to the opposite value in the case of a min/max variable.
2745549ec3ffSdougm  * Currently, server_minvers/server_maxvers and
2746549ec3ffSdougm  * client_minvers/client_maxvers are the only ones to check.
2747549ec3ffSdougm  */
2748549ec3ffSdougm 
2749549ec3ffSdougm static int
2750549ec3ffSdougm nfs_minmax_check(int index, int value)
2751549ec3ffSdougm {
2752549ec3ffSdougm 	int val;
2753549ec3ffSdougm 	char *pval;
2754549ec3ffSdougm 	sa_property_t prop;
2755549ec3ffSdougm 	sa_optionset_t opts;
2756549ec3ffSdougm 	int ret = B_TRUE;
2757549ec3ffSdougm 
2758549ec3ffSdougm 	if (proto_options[index].other != NULL) {
2759549ec3ffSdougm 		/* have a property to compare against */
2760549ec3ffSdougm 		opts = nfs_get_proto_set();
2761549ec3ffSdougm 		prop = sa_get_property(opts, proto_options[index].other);
2762549ec3ffSdougm 		/*
2763549ec3ffSdougm 		 * If we don't find the property, assume default
2764549ec3ffSdougm 		 * values which will work since the max will be at the
2765549ec3ffSdougm 		 * max and the min at the min.
2766549ec3ffSdougm 		 */
2767549ec3ffSdougm 		if (prop != NULL) {
2768549ec3ffSdougm 			pval = sa_get_property_attr(prop, "value");
2769549ec3ffSdougm 			if (pval != NULL) {
2770549ec3ffSdougm 				val = strtoul(pval, NULL, 0);
2771a3351425Sdougm 				if (proto_options[index].compare ==
2772a3351425Sdougm 				    OPT_CMP_LE) {
2773549ec3ffSdougm 					ret = value <= val ? B_TRUE : B_FALSE;
2774a3351425Sdougm 				} else if (proto_options[index].compare ==
2775a3351425Sdougm 				    OPT_CMP_GE) {
2776549ec3ffSdougm 					ret = value >= val ? B_TRUE : B_FALSE;
2777549ec3ffSdougm 				}
2778549ec3ffSdougm 			}
2779549ec3ffSdougm 		}
2780549ec3ffSdougm 	}
2781549ec3ffSdougm 	return (ret);
2782549ec3ffSdougm }
2783549ec3ffSdougm 
2784549ec3ffSdougm /*
2785549ec3ffSdougm  * nfs_validate_proto_prop(index, name, value)
2786549ec3ffSdougm  *
2787549ec3ffSdougm  * Verify that the property specifed by name can take the new
2788549ec3ffSdougm  * value. This is a sanity check to prevent bad values getting into
2789549ec3ffSdougm  * the default files. All values need to be checked against what is
2790549ec3ffSdougm  * allowed by their defined type. If a type isn't explicitly defined
2791549ec3ffSdougm  * here, it is treated as a string.
2792549ec3ffSdougm  *
2793549ec3ffSdougm  * Note that OPT_TYPE_NUMBER will additionally check that the value is
2794549ec3ffSdougm  * within the range specified and potentially against another property
2795549ec3ffSdougm  * value as well as specified in the proto_options members other and
2796549ec3ffSdougm  * compare.
2797549ec3ffSdougm  */
2798549ec3ffSdougm 
2799549ec3ffSdougm static int
2800549ec3ffSdougm nfs_validate_proto_prop(int index, char *name, char *value)
2801549ec3ffSdougm {
2802549ec3ffSdougm 	int ret = SA_OK;
2803549ec3ffSdougm 	char *cp;
2804549ec3ffSdougm #ifdef lint
2805549ec3ffSdougm 	name = name;
2806549ec3ffSdougm #endif
2807549ec3ffSdougm 
2808549ec3ffSdougm 	switch (proto_options[index].type) {
2809549ec3ffSdougm 	case OPT_TYPE_NUMBER:
2810549ec3ffSdougm 		if (!is_a_number(value))
2811549ec3ffSdougm 			ret = SA_BAD_VALUE;
2812549ec3ffSdougm 		else {
2813549ec3ffSdougm 			int val;
2814549ec3ffSdougm 			val = strtoul(value, NULL, 0);
2815549ec3ffSdougm 			if (val < proto_options[index].minval ||
2816549ec3ffSdougm 			    val > proto_options[index].maxval)
2817549ec3ffSdougm 				ret = SA_BAD_VALUE;
2818549ec3ffSdougm 			/*
2819549ec3ffSdougm 			 * For server_versmin/server_versmax and
2820549ec3ffSdougm 			 * client_versmin/client_versmax, the value of the
2821549ec3ffSdougm 			 * min(max) should be checked to be correct relative
2822549ec3ffSdougm 			 * to the current max(min).
2823549ec3ffSdougm 			 */
2824549ec3ffSdougm 			if (!nfs_minmax_check(index, val)) {
2825549ec3ffSdougm 				ret = SA_BAD_VALUE;
2826549ec3ffSdougm 			}
2827549ec3ffSdougm 		}
2828549ec3ffSdougm 		break;
2829549ec3ffSdougm 
2830549ec3ffSdougm 	case OPT_TYPE_DOMAIN:
2831549ec3ffSdougm 		/*
2832549ec3ffSdougm 		 * needs to be a qualified domain so will have at
2833549ec3ffSdougm 		 * least one period and other characters on either
2834549ec3ffSdougm 		 * side of it.  A zero length string is also allowed
2835549ec3ffSdougm 		 * and is the way to turn off the override.
2836549ec3ffSdougm 		 */
2837549ec3ffSdougm 		if (strlen(value) == 0)
2838549ec3ffSdougm 			break;
2839549ec3ffSdougm 		cp = strchr(value, '.');
2840549ec3ffSdougm 		if (cp == NULL || cp == value || strchr(value, '@') != NULL)
2841549ec3ffSdougm 			ret = SA_BAD_VALUE;
2842549ec3ffSdougm 		break;
2843549ec3ffSdougm 
2844549ec3ffSdougm 	case OPT_TYPE_BOOLEAN:
2845549ec3ffSdougm 		if (strlen(value) == 0 ||
2846549ec3ffSdougm 		    strcasecmp(value, "true") == 0 ||
2847549ec3ffSdougm 		    strcmp(value, "1") == 0 ||
2848549ec3ffSdougm 		    strcasecmp(value, "false") == 0 ||
2849549ec3ffSdougm 		    strcmp(value, "0") == 0) {
2850549ec3ffSdougm 			ret = SA_OK;
2851549ec3ffSdougm 		} else {
2852549ec3ffSdougm 			ret = SA_BAD_VALUE;
2853549ec3ffSdougm 		}
2854549ec3ffSdougm 		break;
2855549ec3ffSdougm 
2856549ec3ffSdougm 	case OPT_TYPE_ONOFF:
2857549ec3ffSdougm 		if (strcasecmp(value, "on") != 0 &&
2858549ec3ffSdougm 		    strcasecmp(value, "off") != 0) {
2859549ec3ffSdougm 			ret = SA_BAD_VALUE;
2860549ec3ffSdougm 		}
2861549ec3ffSdougm 		break;
2862549ec3ffSdougm 
2863549ec3ffSdougm 	case OPT_TYPE_PROTOCOL:
2864549ec3ffSdougm 		if (strcasecmp(value, "all") != 0 &&
2865549ec3ffSdougm 		    strcasecmp(value, "tcp") != 0 &&
2866549ec3ffSdougm 		    strcasecmp(value, "udp") != 0)
2867549ec3ffSdougm 			ret = SA_BAD_VALUE;
2868549ec3ffSdougm 		break;
2869549ec3ffSdougm 
2870549ec3ffSdougm 	default:
2871549ec3ffSdougm 		/* treat as a string */
2872549ec3ffSdougm 		break;
2873549ec3ffSdougm 	}
2874549ec3ffSdougm 	return (ret);
2875549ec3ffSdougm }
2876549ec3ffSdougm 
2877549ec3ffSdougm /*
2878549ec3ffSdougm  * nfs_set_proto_prop(prop)
2879549ec3ffSdougm  *
2880549ec3ffSdougm  * check that prop is valid.
2881549ec3ffSdougm  */
2882549ec3ffSdougm 
2883549ec3ffSdougm static int
2884549ec3ffSdougm nfs_set_proto_prop(sa_property_t prop)
2885549ec3ffSdougm {
2886549ec3ffSdougm 	int ret = SA_OK;
2887549ec3ffSdougm 	char *name;
2888549ec3ffSdougm 	char *value;
2889549ec3ffSdougm 
2890549ec3ffSdougm 	name = sa_get_property_attr(prop, "type");
2891549ec3ffSdougm 	value = sa_get_property_attr(prop, "value");
2892549ec3ffSdougm 	if (name != NULL && value != NULL) {
2893549ec3ffSdougm 		int index = findprotoopt(name, 1);
2894549ec3ffSdougm 		if (index >= 0) {
2895549ec3ffSdougm 			/* should test for valid value */
2896549ec3ffSdougm 			ret = nfs_validate_proto_prop(index, name, value);
2897549ec3ffSdougm 			if (ret == SA_OK)
2898a3351425Sdougm 				ret = set_default_file_value(
2899a3351425Sdougm 				    proto_options[index].tag, value);
2900549ec3ffSdougm 			if (ret == SA_OK)
2901549ec3ffSdougm 				restart_service(proto_options[index].svcs);
2902549ec3ffSdougm 		}
2903549ec3ffSdougm 	}
2904549ec3ffSdougm 	if (name != NULL)
2905549ec3ffSdougm 		sa_free_attr_string(name);
2906549ec3ffSdougm 	if (value != NULL)
2907549ec3ffSdougm 		sa_free_attr_string(value);
2908549ec3ffSdougm 	return (ret);
2909549ec3ffSdougm }
2910549ec3ffSdougm 
2911549ec3ffSdougm /*
2912549ec3ffSdougm  * nfs_get_status()
2913549ec3ffSdougm  *
2914549ec3ffSdougm  * What is the current status of the nfsd? We use the SMF state here.
2915549ec3ffSdougm  * Caller must free the returned value.
2916549ec3ffSdougm  */
2917549ec3ffSdougm 
2918549ec3ffSdougm static char *
2919549ec3ffSdougm nfs_get_status()
2920549ec3ffSdougm {
2921549ec3ffSdougm 	char *state;
2922549ec3ffSdougm 	state = smf_get_state(NFSD);
2923549ec3ffSdougm 	return (state != NULL ? state : strdup("-"));
2924549ec3ffSdougm }
2925549ec3ffSdougm 
2926549ec3ffSdougm /*
2927549ec3ffSdougm  * nfs_space_alias(alias)
2928549ec3ffSdougm  *
2929549ec3ffSdougm  * Lookup the space (security) name. If it is default, convert to the
2930549ec3ffSdougm  * real name.
2931549ec3ffSdougm  */
2932549ec3ffSdougm 
2933549ec3ffSdougm static char *
2934549ec3ffSdougm nfs_space_alias(char *space)
2935549ec3ffSdougm {
2936549ec3ffSdougm 	char *name = space;
2937549ec3ffSdougm 	seconfig_t secconf;
2938549ec3ffSdougm 
2939549ec3ffSdougm 	/*
2940549ec3ffSdougm 	 * Only the space named "default" is special. If it is used,
2941549ec3ffSdougm 	 * the default needs to be looked up and the real name used.
2942549ec3ffSdougm 	 * This is normally "sys" but could be changed.  We always
2943549ec3ffSdougm 	 * change defautl to the real name.
2944549ec3ffSdougm 	 */
2945549ec3ffSdougm 	if (strcmp(space, "default") == 0 &&
2946549ec3ffSdougm 	    nfs_getseconfig_default(&secconf) == 0) {
2947549ec3ffSdougm 		if (nfs_getseconfig_bynumber(secconf.sc_nfsnum, &secconf) == 0)
2948549ec3ffSdougm 			name = secconf.sc_name;
2949549ec3ffSdougm 	}
2950549ec3ffSdougm 	return (strdup(name));
2951549ec3ffSdougm }
2952