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