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 /* 238e314a44Sdougm * Copyright 2008 Sun Microsystems, Inc. All rights reserved. 24549ec3ffSdougm * Use is subject to license terms. 25549ec3ffSdougm */ 26549ec3ffSdougm 27549ec3ffSdougm #pragma ident "%Z%%M% %I% %E% SMI" 28549ec3ffSdougm 29549ec3ffSdougm /* 30549ec3ffSdougm * NFS specific functions 31549ec3ffSdougm */ 32549ec3ffSdougm #include <stdio.h> 33549ec3ffSdougm #include <string.h> 34549ec3ffSdougm #include <ctype.h> 35549ec3ffSdougm #include <stdlib.h> 36549ec3ffSdougm #include <unistd.h> 37549ec3ffSdougm #include <zone.h> 38549ec3ffSdougm #include <errno.h> 39549ec3ffSdougm #include <locale.h> 40549ec3ffSdougm #include <signal.h> 41549ec3ffSdougm #include "libshare.h" 42549ec3ffSdougm #include "libshare_impl.h" 43549ec3ffSdougm #include <nfs/export.h> 44549ec3ffSdougm #include <pwd.h> 45549ec3ffSdougm #include <limits.h> 46549ec3ffSdougm #include <libscf.h> 47549ec3ffSdougm #include "nfslog_config.h" 48549ec3ffSdougm #include "nfslogtab.h" 49549ec3ffSdougm #include "libshare_nfs.h" 50549ec3ffSdougm #include <rpcsvc/daemon_utils.h> 51549ec3ffSdougm #include <nfs/nfs.h> 52ecd6cf80Smarks #include <nfs/nfssys.h> 53549ec3ffSdougm 54549ec3ffSdougm /* should really be in some global place */ 55549ec3ffSdougm #define DEF_WIN 30000 56549ec3ffSdougm #define OPT_CHUNK 1024 57549ec3ffSdougm 58549ec3ffSdougm int debug = 0; 59549ec3ffSdougm 60ecd6cf80Smarks #define NFS_SERVER_SVC "svc:/network/nfs/server:default" 61549ec3ffSdougm 62549ec3ffSdougm /* internal functions */ 63549ec3ffSdougm static int nfs_init(); 64549ec3ffSdougm static void nfs_fini(); 65549ec3ffSdougm static int nfs_enable_share(sa_share_t); 66ecd6cf80Smarks static int nfs_disable_share(sa_share_t, char *); 67549ec3ffSdougm static int nfs_validate_property(sa_property_t, sa_optionset_t); 68549ec3ffSdougm static int nfs_validate_security_mode(char *); 69549ec3ffSdougm static int nfs_is_security_opt(char *); 70549ec3ffSdougm static int nfs_parse_legacy_options(sa_group_t, char *); 71549ec3ffSdougm static char *nfs_format_options(sa_group_t, int); 72549ec3ffSdougm static int nfs_set_proto_prop(sa_property_t); 73549ec3ffSdougm static sa_protocol_properties_t nfs_get_proto_set(); 74549ec3ffSdougm static char *nfs_get_status(); 75549ec3ffSdougm static char *nfs_space_alias(char *); 76da6c28aaSamw static uint64_t nfs_features(); 77549ec3ffSdougm 78549ec3ffSdougm /* 79549ec3ffSdougm * ops vector that provides the protocol specific info and operations 80549ec3ffSdougm * for share management. 81549ec3ffSdougm */ 82549ec3ffSdougm 83549ec3ffSdougm struct sa_plugin_ops sa_plugin_ops = { 84549ec3ffSdougm SA_PLUGIN_VERSION, 85549ec3ffSdougm "nfs", 86549ec3ffSdougm nfs_init, 87549ec3ffSdougm nfs_fini, 88549ec3ffSdougm nfs_enable_share, 89549ec3ffSdougm nfs_disable_share, 90549ec3ffSdougm nfs_validate_property, 91549ec3ffSdougm nfs_validate_security_mode, 92549ec3ffSdougm nfs_is_security_opt, 93549ec3ffSdougm nfs_parse_legacy_options, 94549ec3ffSdougm nfs_format_options, 95549ec3ffSdougm nfs_set_proto_prop, 96549ec3ffSdougm nfs_get_proto_set, 97549ec3ffSdougm nfs_get_status, 98549ec3ffSdougm nfs_space_alias, 99da6c28aaSamw NULL, /* update_legacy */ 100da6c28aaSamw NULL, /* delete_legacy */ 101da6c28aaSamw NULL, /* change_notify */ 102da6c28aaSamw NULL, /* enable_resource */ 103da6c28aaSamw NULL, /* disable_resource */ 104da6c28aaSamw nfs_features, 105da6c28aaSamw NULL, /* transient shares */ 106da6c28aaSamw NULL, /* notify resource */ 1074bff34e3Sthurlow NULL, /* rename_resource */ 1084bff34e3Sthurlow NULL, /* run_command */ 1094bff34e3Sthurlow NULL, /* command_help */ 1104bff34e3Sthurlow NULL /* delete_proto_section */ 111549ec3ffSdougm }; 112549ec3ffSdougm 113549ec3ffSdougm /* 114549ec3ffSdougm * list of support services needed 115549ec3ffSdougm * defines should come from head/rpcsvc/daemon_utils.h 116549ec3ffSdougm */ 117549ec3ffSdougm 118549ec3ffSdougm static char *service_list_default[] = 119549ec3ffSdougm { STATD, LOCKD, MOUNTD, NFSD, NFSMAPID, RQUOTAD, NULL }; 120549ec3ffSdougm static char *service_list_logging[] = 121549ec3ffSdougm { STATD, LOCKD, MOUNTD, NFSD, NFSMAPID, RQUOTAD, NFSLOGD, NULL }; 122549ec3ffSdougm 123549ec3ffSdougm /* 124549ec3ffSdougm * option definitions. Make sure to keep the #define for the option 125549ec3ffSdougm * index just before the entry it is the index for. Changing the order 126549ec3ffSdougm * can cause breakage. E.g OPT_RW is index 1 and must precede the 127549ec3ffSdougm * line that includes the SHOPT_RW and OPT_RW entries. 128549ec3ffSdougm */ 129549ec3ffSdougm 130549ec3ffSdougm struct option_defs optdefs[] = { 131549ec3ffSdougm #define OPT_RO 0 132549ec3ffSdougm {SHOPT_RO, OPT_RO, OPT_TYPE_ACCLIST}, 133549ec3ffSdougm #define OPT_RW 1 134549ec3ffSdougm {SHOPT_RW, OPT_RW, OPT_TYPE_ACCLIST}, 135549ec3ffSdougm #define OPT_ROOT 2 136549ec3ffSdougm {SHOPT_ROOT, OPT_ROOT, OPT_TYPE_ACCLIST}, 137549ec3ffSdougm #define OPT_SECURE 3 138549ec3ffSdougm {SHOPT_SECURE, OPT_SECURE, OPT_TYPE_DEPRECATED}, 139549ec3ffSdougm #define OPT_ANON 4 140549ec3ffSdougm {SHOPT_ANON, OPT_ANON, OPT_TYPE_USER}, 141549ec3ffSdougm #define OPT_WINDOW 5 142549ec3ffSdougm {SHOPT_WINDOW, OPT_WINDOW, OPT_TYPE_NUMBER}, 143549ec3ffSdougm #define OPT_NOSUID 6 144549ec3ffSdougm {SHOPT_NOSUID, OPT_NOSUID, OPT_TYPE_BOOLEAN}, 145549ec3ffSdougm #define OPT_ACLOK 7 146549ec3ffSdougm {SHOPT_ACLOK, OPT_ACLOK, OPT_TYPE_BOOLEAN}, 147549ec3ffSdougm #define OPT_NOSUB 8 148549ec3ffSdougm {SHOPT_NOSUB, OPT_NOSUB, OPT_TYPE_BOOLEAN}, 149549ec3ffSdougm #define OPT_SEC 9 150549ec3ffSdougm {SHOPT_SEC, OPT_SEC, OPT_TYPE_SECURITY}, 151549ec3ffSdougm #define OPT_PUBLIC 10 152549ec3ffSdougm {SHOPT_PUBLIC, OPT_PUBLIC, OPT_TYPE_BOOLEAN, OPT_SHARE_ONLY}, 153549ec3ffSdougm #define OPT_INDEX 11 154549ec3ffSdougm {SHOPT_INDEX, OPT_INDEX, OPT_TYPE_FILE}, 155549ec3ffSdougm #define OPT_LOG 12 156549ec3ffSdougm {SHOPT_LOG, OPT_LOG, OPT_TYPE_LOGTAG}, 157549ec3ffSdougm #define OPT_CKSUM 13 158549ec3ffSdougm {SHOPT_CKSUM, OPT_CKSUM, OPT_TYPE_STRINGSET}, 159549ec3ffSdougm #ifdef VOLATILE_FH_TEST /* XXX added for testing volatile fh's only */ 160549ec3ffSdougm #define OPT_VOLFH 14 161549ec3ffSdougm {SHOPT_VOLFH, OPT_VOLFH}, 162549ec3ffSdougm #endif /* VOLATILE_FH_TEST */ 163549ec3ffSdougm NULL 164549ec3ffSdougm }; 165549ec3ffSdougm 166549ec3ffSdougm /* 167549ec3ffSdougm * list of properties that are related to security flavors. 168549ec3ffSdougm */ 169549ec3ffSdougm static char *seclist[] = { 170549ec3ffSdougm SHOPT_RO, 171549ec3ffSdougm SHOPT_RW, 172549ec3ffSdougm SHOPT_ROOT, 173549ec3ffSdougm SHOPT_WINDOW, 174549ec3ffSdougm NULL 175549ec3ffSdougm }; 176549ec3ffSdougm 177549ec3ffSdougm /* structure for list of securities */ 178549ec3ffSdougm struct securities { 179549ec3ffSdougm sa_security_t security; 180549ec3ffSdougm struct securities *next; 181549ec3ffSdougm }; 182549ec3ffSdougm 183549ec3ffSdougm /* 184549ec3ffSdougm * findopt(name) 185549ec3ffSdougm * 186549ec3ffSdougm * Lookup option "name" in the option table and return the table 187549ec3ffSdougm * index. 188549ec3ffSdougm */ 189549ec3ffSdougm 190549ec3ffSdougm static int 191549ec3ffSdougm findopt(char *name) 192549ec3ffSdougm { 193549ec3ffSdougm int i; 194549ec3ffSdougm if (name != NULL) { 195549ec3ffSdougm for (i = 0; optdefs[i].tag != NULL; i++) { 196549ec3ffSdougm if (strcmp(optdefs[i].tag, name) == 0) 197549ec3ffSdougm return (i); 198549ec3ffSdougm } 199549ec3ffSdougm } 200549ec3ffSdougm return (-1); 201549ec3ffSdougm } 202549ec3ffSdougm 203549ec3ffSdougm /* 204549ec3ffSdougm * gettype(name) 205549ec3ffSdougm * 206549ec3ffSdougm * Return the type of option "name". 207549ec3ffSdougm */ 208549ec3ffSdougm 209549ec3ffSdougm static int 210549ec3ffSdougm gettype(char *name) 211549ec3ffSdougm { 212549ec3ffSdougm int optdef; 213549ec3ffSdougm 214549ec3ffSdougm optdef = findopt(name); 215549ec3ffSdougm if (optdef != -1) 216549ec3ffSdougm return (optdefs[optdef].type); 217549ec3ffSdougm return (OPT_TYPE_ANY); 218549ec3ffSdougm } 219549ec3ffSdougm 220549ec3ffSdougm /* 221549ec3ffSdougm * nfs_validate_security_mode(mode) 222549ec3ffSdougm * 223549ec3ffSdougm * is the specified mode string a valid one for use with NFS? 224549ec3ffSdougm */ 225549ec3ffSdougm 226549ec3ffSdougm static int 227549ec3ffSdougm nfs_validate_security_mode(char *mode) 228549ec3ffSdougm { 229549ec3ffSdougm seconfig_t secinfo; 230549ec3ffSdougm int err; 231549ec3ffSdougm 232549ec3ffSdougm (void) memset(&secinfo, '\0', sizeof (secinfo)); 233549ec3ffSdougm err = nfs_getseconfig_byname(mode, &secinfo); 234549ec3ffSdougm if (err == SC_NOERROR) 235549ec3ffSdougm return (1); 236549ec3ffSdougm return (0); 237549ec3ffSdougm } 238549ec3ffSdougm 239549ec3ffSdougm /* 240549ec3ffSdougm * nfs_is_security_opt(tok) 241549ec3ffSdougm * 242549ec3ffSdougm * check to see if tok represents an option that is only valid in some 243549ec3ffSdougm * security flavor. 244549ec3ffSdougm */ 245549ec3ffSdougm 246549ec3ffSdougm static int 247549ec3ffSdougm nfs_is_security_opt(char *tok) 248549ec3ffSdougm { 249549ec3ffSdougm int i; 250549ec3ffSdougm 251549ec3ffSdougm for (i = 0; seclist[i] != NULL; i++) { 252549ec3ffSdougm if (strcmp(tok, seclist[i]) == 0) 253549ec3ffSdougm return (1); 254549ec3ffSdougm } 255549ec3ffSdougm return (0); 256549ec3ffSdougm } 257549ec3ffSdougm 258549ec3ffSdougm /* 259549ec3ffSdougm * find_security(seclist, sec) 260549ec3ffSdougm * 261549ec3ffSdougm * Walk the current list of security flavors and return true if it is 262549ec3ffSdougm * present, else return false. 263549ec3ffSdougm */ 264549ec3ffSdougm 265549ec3ffSdougm static int 266549ec3ffSdougm find_security(struct securities *seclist, sa_security_t sec) 267549ec3ffSdougm { 268549ec3ffSdougm while (seclist != NULL) { 269549ec3ffSdougm if (seclist->security == sec) 270549ec3ffSdougm return (1); 271549ec3ffSdougm seclist = seclist->next; 272549ec3ffSdougm } 273549ec3ffSdougm return (0); 274549ec3ffSdougm } 275549ec3ffSdougm 276549ec3ffSdougm /* 277549ec3ffSdougm * make_security_list(group, securitymodes, proto) 278549ec3ffSdougm * go through the list of securitymodes and add them to the 279549ec3ffSdougm * group's list of security optionsets. We also keep a list of 280549ec3ffSdougm * those optionsets so we don't have to find them later. All of 281549ec3ffSdougm * these will get copies of the same properties. 282549ec3ffSdougm */ 283549ec3ffSdougm 284549ec3ffSdougm static struct securities * 285549ec3ffSdougm make_security_list(sa_group_t group, char *securitymodes, char *proto) 286549ec3ffSdougm { 287549ec3ffSdougm char *tok, *next = NULL; 288549ec3ffSdougm struct securities *curp, *headp = NULL, *prev; 289549ec3ffSdougm sa_security_t check; 290549ec3ffSdougm int freetok = 0; 291549ec3ffSdougm 292549ec3ffSdougm for (tok = securitymodes; tok != NULL; tok = next) { 293549ec3ffSdougm next = strchr(tok, ':'); 294549ec3ffSdougm if (next != NULL) 295549ec3ffSdougm *next++ = '\0'; 296549ec3ffSdougm if (strcmp(tok, "default") == 0) { 297549ec3ffSdougm /* resolve default into the real type */ 298549ec3ffSdougm tok = nfs_space_alias(tok); 299549ec3ffSdougm freetok = 1; 300549ec3ffSdougm } 301549ec3ffSdougm check = sa_get_security(group, tok, proto); 302549ec3ffSdougm 303549ec3ffSdougm /* add to the security list if it isn't there already */ 304549ec3ffSdougm if (check == NULL || !find_security(headp, check)) { 305549ec3ffSdougm curp = (struct securities *)calloc(1, 306549ec3ffSdougm sizeof (struct securities)); 307549ec3ffSdougm if (curp != NULL) { 308549ec3ffSdougm if (check == NULL) { 309a3351425Sdougm curp->security = sa_create_security( 310a3351425Sdougm group, tok, proto); 311549ec3ffSdougm } else { 312549ec3ffSdougm curp->security = check; 313549ec3ffSdougm } 314549ec3ffSdougm /* 315549ec3ffSdougm * note that the first time through the loop, 316549ec3ffSdougm * headp will be NULL and prev will be 317549ec3ffSdougm * undefined. Since headp is NULL, we set 318549ec3ffSdougm * both it and prev to the curp (first 319549ec3ffSdougm * structure to be allocated). 320549ec3ffSdougm * 321549ec3ffSdougm * later passes through the loop will have 322549ec3ffSdougm * headp not being NULL and prev will be used 323549ec3ffSdougm * to allocate at the end of the list. 324549ec3ffSdougm */ 325549ec3ffSdougm if (headp == NULL) { 326549ec3ffSdougm headp = curp; 327549ec3ffSdougm prev = curp; 328549ec3ffSdougm } else { 329549ec3ffSdougm prev->next = curp; 330549ec3ffSdougm prev = curp; 331549ec3ffSdougm } 332549ec3ffSdougm } 333549ec3ffSdougm } 334549ec3ffSdougm 335549ec3ffSdougm if (freetok) { 336549ec3ffSdougm freetok = 0; 337549ec3ffSdougm sa_free_attr_string(tok); 338549ec3ffSdougm } 339549ec3ffSdougm } 340549ec3ffSdougm return (headp); 341549ec3ffSdougm } 342549ec3ffSdougm 343549ec3ffSdougm static void 344549ec3ffSdougm free_security_list(struct securities *sec) 345549ec3ffSdougm { 346549ec3ffSdougm struct securities *next; 347549ec3ffSdougm if (sec != NULL) { 348549ec3ffSdougm for (next = sec->next; sec != NULL; sec = next) { 349549ec3ffSdougm next = sec->next; 350549ec3ffSdougm free(sec); 351549ec3ffSdougm } 352549ec3ffSdougm } 353549ec3ffSdougm } 354549ec3ffSdougm 355549ec3ffSdougm /* 356549ec3ffSdougm * nfs_alistcat(str1, str2, sep) 357549ec3ffSdougm * 358549ec3ffSdougm * concatenate str1 and str2 into a new string using sep as a separate 359549ec3ffSdougm * character. If memory allocation fails, return NULL; 360549ec3ffSdougm */ 361549ec3ffSdougm 362549ec3ffSdougm static char * 363549ec3ffSdougm nfs_alistcat(char *str1, char *str2, char sep) 364549ec3ffSdougm { 365549ec3ffSdougm char *newstr; 366549ec3ffSdougm size_t len; 367549ec3ffSdougm 368549ec3ffSdougm len = strlen(str1) + strlen(str2) + 2; 369549ec3ffSdougm newstr = (char *)malloc(len); 370549ec3ffSdougm if (newstr != NULL) 371549ec3ffSdougm (void) snprintf(newstr, len, "%s%c%s", str1, sep, str2); 372549ec3ffSdougm return (newstr); 373549ec3ffSdougm } 374549ec3ffSdougm 375549ec3ffSdougm /* 376549ec3ffSdougm * add_security_prop(sec, name, value, persist) 377549ec3ffSdougm * 378549ec3ffSdougm * Add the property to the securities structure. This accumulates 379549ec3ffSdougm * properties for as part of parsing legacy options. 380549ec3ffSdougm */ 381549ec3ffSdougm 382549ec3ffSdougm static int 383549ec3ffSdougm add_security_prop(struct securities *sec, char *name, char *value, 384549ec3ffSdougm int persist, int iszfs) 385549ec3ffSdougm { 386549ec3ffSdougm sa_property_t prop; 387549ec3ffSdougm int ret = SA_OK; 388549ec3ffSdougm 389549ec3ffSdougm for (; sec != NULL; sec = sec->next) { 390549ec3ffSdougm if (value == NULL) { 391a3351425Sdougm if (strcmp(name, SHOPT_RW) == 0 || 392a3351425Sdougm strcmp(name, SHOPT_RO) == 0) 393549ec3ffSdougm value = "*"; 394549ec3ffSdougm else 395549ec3ffSdougm value = "true"; 396549ec3ffSdougm } 397549ec3ffSdougm 398549ec3ffSdougm /* 399549ec3ffSdougm * Get the existing property, if it exists, so we can 400549ec3ffSdougm * determine what to do with it. The ro/rw/root 401549ec3ffSdougm * properties can be merged if multiple instances of 402549ec3ffSdougm * these properies are given. For example, if "rw" 403549ec3ffSdougm * exists with a value "host1" and a later token of 404549ec3ffSdougm * rw="host2" is seen, the values are merged into a 405549ec3ffSdougm * single rw="host1:host2". 406549ec3ffSdougm */ 407549ec3ffSdougm prop = sa_get_property(sec->security, name); 408549ec3ffSdougm 409549ec3ffSdougm if (prop != NULL) { 410549ec3ffSdougm char *oldvalue; 411549ec3ffSdougm char *newvalue; 412549ec3ffSdougm 413549ec3ffSdougm /* 414549ec3ffSdougm * The security options of ro/rw/root might appear 415549ec3ffSdougm * multiple times. If they do, the values need to be 416549ec3ffSdougm * merged into an access list. If it was previously 417549ec3ffSdougm * empty, the new value alone is added. 418549ec3ffSdougm */ 419549ec3ffSdougm oldvalue = sa_get_property_attr(prop, "value"); 420549ec3ffSdougm if (oldvalue != NULL) { 421549ec3ffSdougm /* 422549ec3ffSdougm * The general case is to concatenate the new 423549ec3ffSdougm * value onto the old value for multiple 424549ec3ffSdougm * rw(ro/root) properties. A special case 425549ec3ffSdougm * exists when either the old or new is the 426549ec3ffSdougm * "all" case. In the special case, if both 427549ec3ffSdougm * are "all", then it is "all", else if one is 428549ec3ffSdougm * an access-list, that replaces the "all". 429549ec3ffSdougm */ 430549ec3ffSdougm if (strcmp(oldvalue, "*") == 0) { 431549ec3ffSdougm /* Replace old value with new value. */ 432549ec3ffSdougm newvalue = strdup(value); 43397df5ac9Sdougm } else if (strcmp(value, "*") == 0 || 43497df5ac9Sdougm strcmp(oldvalue, value) == 0) { 435a3351425Sdougm /* 436a3351425Sdougm * Keep old value and ignore 437a3351425Sdougm * the new value. 438a3351425Sdougm */ 439549ec3ffSdougm newvalue = NULL; 440549ec3ffSdougm } else { 441a3351425Sdougm /* 442a3351425Sdougm * Make a new list of old plus new 443a3351425Sdougm * access-list. 444a3351425Sdougm */ 445a3351425Sdougm newvalue = nfs_alistcat(oldvalue, 446a3351425Sdougm value, ':'); 447549ec3ffSdougm } 448549ec3ffSdougm 449549ec3ffSdougm if (newvalue != NULL) { 450549ec3ffSdougm (void) sa_remove_property(prop); 451a3351425Sdougm prop = sa_create_property(name, 452a3351425Sdougm newvalue); 453a3351425Sdougm ret = sa_add_property(sec->security, 454a3351425Sdougm prop); 455549ec3ffSdougm free(newvalue); 456549ec3ffSdougm } 457549ec3ffSdougm if (oldvalue != NULL) 458549ec3ffSdougm sa_free_attr_string(oldvalue); 459549ec3ffSdougm } 460549ec3ffSdougm } else { 461549ec3ffSdougm prop = sa_create_property(name, value); 462549ec3ffSdougm ret = sa_add_property(sec->security, prop); 463549ec3ffSdougm } 464549ec3ffSdougm if (ret == SA_OK && !iszfs) { 465549ec3ffSdougm ret = sa_commit_properties(sec->security, !persist); 466549ec3ffSdougm } 467549ec3ffSdougm } 468549ec3ffSdougm return (ret); 469549ec3ffSdougm } 470549ec3ffSdougm 471549ec3ffSdougm /* 472549ec3ffSdougm * check to see if group/share is persistent. 473549ec3ffSdougm */ 474549ec3ffSdougm static int 475549ec3ffSdougm is_persistent(sa_group_t group) 476549ec3ffSdougm { 477549ec3ffSdougm char *type; 478549ec3ffSdougm int persist = 1; 479549ec3ffSdougm 480549ec3ffSdougm type = sa_get_group_attr(group, "type"); 481549ec3ffSdougm if (type != NULL && strcmp(type, "persist") != 0) 482549ec3ffSdougm persist = 0; 483549ec3ffSdougm if (type != NULL) 484549ec3ffSdougm sa_free_attr_string(type); 485549ec3ffSdougm return (persist); 486549ec3ffSdougm } 487549ec3ffSdougm 488549ec3ffSdougm /* 489549ec3ffSdougm * invalid_security(options) 490549ec3ffSdougm * 491549ec3ffSdougm * search option string for any invalid sec= type. 492549ec3ffSdougm * return true (1) if any are not valid else false (0) 493549ec3ffSdougm */ 494549ec3ffSdougm static int 495549ec3ffSdougm invalid_security(char *options) 496549ec3ffSdougm { 497549ec3ffSdougm char *copy, *base, *token, *value; 498549ec3ffSdougm int ret = 0; 499549ec3ffSdougm 500549ec3ffSdougm copy = strdup(options); 501549ec3ffSdougm token = base = copy; 502549ec3ffSdougm while (token != NULL && ret == 0) { 503549ec3ffSdougm token = strtok(base, ","); 504549ec3ffSdougm base = NULL; 505549ec3ffSdougm if (token != NULL) { 506549ec3ffSdougm value = strchr(token, '='); 507549ec3ffSdougm if (value != NULL) 508549ec3ffSdougm *value++ = '\0'; 509549ec3ffSdougm if (strcmp(token, "sec") == 0) { 510a3351425Sdougm /* HAVE security flavors so check them */ 511549ec3ffSdougm char *tok, *next; 512a3351425Sdougm for (next = NULL, tok = value; tok != NULL; 513a3351425Sdougm tok = next) { 514549ec3ffSdougm next = strchr(tok, ':'); 515549ec3ffSdougm if (next != NULL) 516549ec3ffSdougm *next++ = '\0'; 517549ec3ffSdougm ret = !nfs_validate_security_mode(tok); 518549ec3ffSdougm if (ret) 519549ec3ffSdougm break; 520549ec3ffSdougm } 521549ec3ffSdougm } 522549ec3ffSdougm } 523549ec3ffSdougm } 524549ec3ffSdougm if (copy != NULL) 525549ec3ffSdougm free(copy); 526549ec3ffSdougm return (ret); 527549ec3ffSdougm } 528549ec3ffSdougm 529549ec3ffSdougm /* 530549ec3ffSdougm * nfs_parse_legacy_options(group, options) 531549ec3ffSdougm * 532549ec3ffSdougm * Parse the old style options into internal format and store on the 533549ec3ffSdougm * specified group. Group could be a share for full legacy support. 534549ec3ffSdougm */ 535549ec3ffSdougm 536549ec3ffSdougm static int 537549ec3ffSdougm nfs_parse_legacy_options(sa_group_t group, char *options) 538549ec3ffSdougm { 539aba7a40bSdougm char *dup; 540549ec3ffSdougm char *base; 541549ec3ffSdougm char *token; 542549ec3ffSdougm sa_optionset_t optionset; 543549ec3ffSdougm struct securities *security_list = NULL; 544549ec3ffSdougm sa_property_t prop; 545549ec3ffSdougm int ret = SA_OK; 546549ec3ffSdougm int iszfs = 0; 547549ec3ffSdougm sa_group_t parent; 548549ec3ffSdougm int persist = 0; 549549ec3ffSdougm char *lasts; 550549ec3ffSdougm 551549ec3ffSdougm /* do we have an existing optionset? */ 552549ec3ffSdougm optionset = sa_get_optionset(group, "nfs"); 553549ec3ffSdougm if (optionset == NULL) { 554549ec3ffSdougm /* didn't find existing optionset so create one */ 555549ec3ffSdougm optionset = sa_create_optionset(group, "nfs"); 556549ec3ffSdougm } else { 557549ec3ffSdougm /* 558da6c28aaSamw * Have an existing optionset . Ideally, we would need 559da6c28aaSamw * to compare options in order to detect errors. For 560da6c28aaSamw * now, we assume that the first optionset is the 561da6c28aaSamw * correct one and the others will be the same. An 562da6c28aaSamw * empty optionset is the same as no optionset so we 563da6c28aaSamw * don't want to exit in that case. Getting an empty 564da6c28aaSamw * optionset can occur with ZFS property checking. 565549ec3ffSdougm */ 566da6c28aaSamw if (sa_get_property(optionset, NULL) != NULL) 567549ec3ffSdougm return (ret); 568549ec3ffSdougm } 569549ec3ffSdougm 570549ec3ffSdougm if (strcmp(options, SHOPT_RW) == 0) { 571549ec3ffSdougm /* 572549ec3ffSdougm * there is a special case of only the option "rw" 573549ec3ffSdougm * being the default option. We don't have to do 574549ec3ffSdougm * anything. 575549ec3ffSdougm */ 576549ec3ffSdougm return (ret); 577549ec3ffSdougm } 578549ec3ffSdougm 579549ec3ffSdougm /* 580549ec3ffSdougm * check if security types are present and validate them. If 581549ec3ffSdougm * any are not legal, fail. 582549ec3ffSdougm */ 583549ec3ffSdougm 584549ec3ffSdougm if (invalid_security(options)) { 585549ec3ffSdougm return (SA_INVALID_SECURITY); 586549ec3ffSdougm } 587549ec3ffSdougm 588549ec3ffSdougm /* 589549ec3ffSdougm * in order to not attempt to change ZFS properties unless 590549ec3ffSdougm * absolutely necessary, we never do it in the legacy parsing. 591549ec3ffSdougm */ 592549ec3ffSdougm if (sa_is_share(group)) { 593549ec3ffSdougm char *zfs; 594549ec3ffSdougm parent = sa_get_parent_group(group); 595549ec3ffSdougm if (parent != NULL) { 596549ec3ffSdougm zfs = sa_get_group_attr(parent, "zfs"); 597549ec3ffSdougm if (zfs != NULL) { 598549ec3ffSdougm sa_free_attr_string(zfs); 599549ec3ffSdougm iszfs++; 600549ec3ffSdougm } 601549ec3ffSdougm } 602549ec3ffSdougm } else { 603549ec3ffSdougm iszfs = sa_group_is_zfs(group); 604549ec3ffSdougm } 605549ec3ffSdougm 606aba7a40bSdougm /* We need a copy of options for the next part. */ 607aba7a40bSdougm dup = strdup(options); 608aba7a40bSdougm if (dup == NULL) 609aba7a40bSdougm return (SA_NO_MEMORY); 610aba7a40bSdougm 611549ec3ffSdougm /* 612549ec3ffSdougm * we need to step through each option in the string and then 613549ec3ffSdougm * add either the option or the security option as needed. If 614549ec3ffSdougm * this is not a persistent share, don't commit to the 615549ec3ffSdougm * repository. If there is an error, we also want to abort the 616549ec3ffSdougm * processing and report it. 617549ec3ffSdougm */ 618549ec3ffSdougm persist = is_persistent(group); 619549ec3ffSdougm base = dup; 620549ec3ffSdougm token = dup; 621549ec3ffSdougm lasts = NULL; 622549ec3ffSdougm while (token != NULL && ret == SA_OK) { 623549ec3ffSdougm ret = SA_OK; 624549ec3ffSdougm token = strtok_r(base, ",", &lasts); 625549ec3ffSdougm base = NULL; 626549ec3ffSdougm if (token != NULL) { 627549ec3ffSdougm char *value; 628549ec3ffSdougm /* 629549ec3ffSdougm * if the option has a value, it will have an '=' to 630549ec3ffSdougm * separate the name from the value. The following 631549ec3ffSdougm * code will result in value != NULL and token 632549ec3ffSdougm * pointing to just the name if there is a value. 633549ec3ffSdougm */ 634549ec3ffSdougm value = strchr(token, '='); 635549ec3ffSdougm if (value != NULL) { 636549ec3ffSdougm *value++ = '\0'; 637549ec3ffSdougm } 638a3351425Sdougm if (strcmp(token, "sec") == 0 || 639a3351425Sdougm strcmp(token, "secure") == 0) { 640549ec3ffSdougm /* 641549ec3ffSdougm * Once in security parsing, we only 642549ec3ffSdougm * do security. We do need to move 643549ec3ffSdougm * between the security node and the 644549ec3ffSdougm * toplevel. The security tag goes on 645549ec3ffSdougm * the root while the following ones 646549ec3ffSdougm * go on the security. 647549ec3ffSdougm */ 648549ec3ffSdougm if (security_list != NULL) { 649a3351425Sdougm /* 650a3351425Sdougm * have an old list so close it and 651a3351425Sdougm * start the new 652a3351425Sdougm */ 653549ec3ffSdougm free_security_list(security_list); 654549ec3ffSdougm } 655549ec3ffSdougm if (strcmp(token, "secure") == 0) { 656549ec3ffSdougm value = "dh"; 657549ec3ffSdougm } else { 658549ec3ffSdougm if (value == NULL) { 659549ec3ffSdougm ret = SA_SYNTAX_ERR; 660549ec3ffSdougm break; 661549ec3ffSdougm } 662549ec3ffSdougm } 663a3351425Sdougm security_list = make_security_list(group, 664a3351425Sdougm value, "nfs"); 665549ec3ffSdougm } else { 666549ec3ffSdougm /* 667549ec3ffSdougm * Note that the "old" syntax allowed a 668549ec3ffSdougm * default security model This must be 669549ec3ffSdougm * accounted for and internally converted to 670549ec3ffSdougm * "standard" security structure. 671549ec3ffSdougm */ 672549ec3ffSdougm if (nfs_is_security_opt(token)) { 673549ec3ffSdougm if (security_list == NULL) { 674549ec3ffSdougm /* 675a3351425Sdougm * need to have a 676a3351425Sdougm * security 677a3351425Sdougm * option. This will 678a3351425Sdougm * be "closed" when a 679a3351425Sdougm * defined "sec=" 680a3351425Sdougm * option is 681a3351425Sdougm * seen. This is 682a3351425Sdougm * technically an 683a3351425Sdougm * error but will be 684a3351425Sdougm * allowed with 685a3351425Sdougm * warning. 686549ec3ffSdougm */ 687a3351425Sdougm security_list = 688a3351425Sdougm make_security_list(group, 689549ec3ffSdougm "default", 690549ec3ffSdougm "nfs"); 691549ec3ffSdougm } 692549ec3ffSdougm if (security_list != NULL) { 693a3351425Sdougm ret = add_security_prop( 694a3351425Sdougm security_list, token, 695a3351425Sdougm value, persist, iszfs); 696549ec3ffSdougm } else { 697549ec3ffSdougm ret = SA_NO_MEMORY; 698549ec3ffSdougm } 699549ec3ffSdougm } else { 700549ec3ffSdougm /* regular options */ 701549ec3ffSdougm if (value == NULL) { 702a3351425Sdougm if (strcmp(token, SHOPT_RW) == 703a3351425Sdougm 0 || strcmp(token, 704a3351425Sdougm SHOPT_RO) == 0) { 705549ec3ffSdougm value = "*"; 706a3351425Sdougm } else { 707549ec3ffSdougm value = "global"; 708a3351425Sdougm if (strcmp(token, 709a3351425Sdougm SHOPT_LOG) != 0) { 710549ec3ffSdougm value = "true"; 711549ec3ffSdougm } 712a3351425Sdougm } 713d6405362Sdougm } 714d6405362Sdougm /* 715d6405362Sdougm * In all cases, create the 716d6405362Sdougm * property specified. If the 717d6405362Sdougm * value was NULL, the default 718d6405362Sdougm * value will have been 719d6405362Sdougm * substituted. 720d6405362Sdougm */ 721d6405362Sdougm prop = sa_create_property(token, value); 722d6405362Sdougm ret = sa_add_property(optionset, prop); 723a3351425Sdougm if (ret != SA_OK) 724549ec3ffSdougm break; 725d6405362Sdougm 726549ec3ffSdougm if (!iszfs) { 727a3351425Sdougm ret = sa_commit_properties( 728a3351425Sdougm optionset, !persist); 729549ec3ffSdougm } 730549ec3ffSdougm } 731549ec3ffSdougm } 732549ec3ffSdougm } 733549ec3ffSdougm } 734549ec3ffSdougm if (security_list != NULL) 735549ec3ffSdougm free_security_list(security_list); 736aba7a40bSdougm 737549ec3ffSdougm free(dup); 738549ec3ffSdougm return (ret); 739549ec3ffSdougm } 740549ec3ffSdougm 741549ec3ffSdougm /* 742549ec3ffSdougm * is_a_number(number) 743549ec3ffSdougm * 744549ec3ffSdougm * is the string a number in one of the forms we want to use? 745549ec3ffSdougm */ 746549ec3ffSdougm 747549ec3ffSdougm static int 748549ec3ffSdougm is_a_number(char *number) 749549ec3ffSdougm { 750549ec3ffSdougm int ret = 1; 751549ec3ffSdougm int hex = 0; 752549ec3ffSdougm 753549ec3ffSdougm if (strncmp(number, "0x", 2) == 0) { 754549ec3ffSdougm number += 2; 755549ec3ffSdougm hex = 1; 756a3351425Sdougm } else if (*number == '-') { 757549ec3ffSdougm number++; /* skip the minus */ 758a3351425Sdougm } 759549ec3ffSdougm while (ret == 1 && *number != '\0') { 760549ec3ffSdougm if (hex) { 761549ec3ffSdougm ret = isxdigit(*number++); 762549ec3ffSdougm } else { 763549ec3ffSdougm ret = isdigit(*number++); 764549ec3ffSdougm } 765549ec3ffSdougm } 766549ec3ffSdougm return (ret); 767549ec3ffSdougm } 768549ec3ffSdougm 769549ec3ffSdougm /* 770549ec3ffSdougm * Look for the specified tag in the configuration file. If it is found, 771549ec3ffSdougm * enable logging and set the logging configuration information for exp. 772549ec3ffSdougm */ 773549ec3ffSdougm static void 774549ec3ffSdougm configlog(struct exportdata *exp, char *tag) 775549ec3ffSdougm { 776549ec3ffSdougm nfsl_config_t *configlist = NULL, *configp; 777549ec3ffSdougm int error = 0; 778549ec3ffSdougm char globaltag[] = DEFAULTTAG; 779549ec3ffSdougm 780549ec3ffSdougm /* 781549ec3ffSdougm * Sends config errors to stderr 782549ec3ffSdougm */ 783549ec3ffSdougm nfsl_errs_to_syslog = B_FALSE; 784549ec3ffSdougm 785549ec3ffSdougm /* 786549ec3ffSdougm * get the list of configuration settings 787549ec3ffSdougm */ 788549ec3ffSdougm error = nfsl_getconfig_list(&configlist); 789549ec3ffSdougm if (error) { 790549ec3ffSdougm (void) fprintf(stderr, 791a3351425Sdougm dgettext(TEXT_DOMAIN, "Cannot get log configuration: %s\n"), 792549ec3ffSdougm strerror(error)); 793549ec3ffSdougm } 794549ec3ffSdougm 795549ec3ffSdougm if (tag == NULL) 796549ec3ffSdougm tag = globaltag; 797549ec3ffSdougm if ((configp = nfsl_findconfig(configlist, tag, &error)) == NULL) { 798549ec3ffSdougm nfsl_freeconfig_list(&configlist); 799549ec3ffSdougm (void) fprintf(stderr, 800a3351425Sdougm dgettext(TEXT_DOMAIN, "No tags matching \"%s\"\n"), tag); 801549ec3ffSdougm /* bad configuration */ 802549ec3ffSdougm error = ENOENT; 803549ec3ffSdougm goto err; 804549ec3ffSdougm } 805549ec3ffSdougm 806549ec3ffSdougm if ((exp->ex_tag = strdup(tag)) == NULL) { 807549ec3ffSdougm error = ENOMEM; 808549ec3ffSdougm goto out; 809549ec3ffSdougm } 810549ec3ffSdougm if ((exp->ex_log_buffer = strdup(configp->nc_bufferpath)) == NULL) { 811549ec3ffSdougm error = ENOMEM; 812549ec3ffSdougm goto out; 813549ec3ffSdougm } 814549ec3ffSdougm exp->ex_flags |= EX_LOG; 815549ec3ffSdougm if (configp->nc_rpclogpath != NULL) 816549ec3ffSdougm exp->ex_flags |= EX_LOG_ALLOPS; 817549ec3ffSdougm out: 818549ec3ffSdougm if (configlist != NULL) 819549ec3ffSdougm nfsl_freeconfig_list(&configlist); 820549ec3ffSdougm 821549ec3ffSdougm err: 822549ec3ffSdougm if (error != 0) { 823549ec3ffSdougm if (exp->ex_flags != NULL) 824549ec3ffSdougm free(exp->ex_tag); 825549ec3ffSdougm if (exp->ex_log_buffer != NULL) 826549ec3ffSdougm free(exp->ex_log_buffer); 827549ec3ffSdougm (void) fprintf(stderr, 828a3351425Sdougm dgettext(TEXT_DOMAIN, "Cannot set log configuration: %s\n"), 829549ec3ffSdougm strerror(error)); 830549ec3ffSdougm } 831549ec3ffSdougm } 832549ec3ffSdougm 833549ec3ffSdougm /* 834549ec3ffSdougm * fill_export_from_optionset(export, optionset) 835549ec3ffSdougm * 836549ec3ffSdougm * In order to share, we need to set all the possible general options 837549ec3ffSdougm * into the export structure. Share info will be filled in by the 838549ec3ffSdougm * caller. Various property values get turned into structure specific 839549ec3ffSdougm * values. 840549ec3ffSdougm */ 841549ec3ffSdougm 842549ec3ffSdougm static int 843549ec3ffSdougm fill_export_from_optionset(struct exportdata *export, sa_optionset_t optionset) 844549ec3ffSdougm { 845549ec3ffSdougm sa_property_t option; 846549ec3ffSdougm int ret = SA_OK; 847549ec3ffSdougm 848549ec3ffSdougm for (option = sa_get_property(optionset, NULL); 849549ec3ffSdougm option != NULL; option = sa_get_next_property(option)) { 850549ec3ffSdougm char *name; 851549ec3ffSdougm char *value; 852549ec3ffSdougm uint32_t val; 853549ec3ffSdougm 854549ec3ffSdougm /* 855549ec3ffSdougm * since options may be set/reset multiple times, always do an 856549ec3ffSdougm * explicit set or clear of the option. This allows defaults 857da6c28aaSamw * to be set and then the protocol specific to override. 858549ec3ffSdougm */ 859549ec3ffSdougm 860549ec3ffSdougm name = sa_get_property_attr(option, "type"); 861549ec3ffSdougm value = sa_get_property_attr(option, "value"); 862549ec3ffSdougm switch (findopt(name)) { 863549ec3ffSdougm case OPT_ANON: 864549ec3ffSdougm if (value != NULL && is_a_number(value)) { 865549ec3ffSdougm val = strtoul(value, NULL, 0); 866549ec3ffSdougm } else { 867549ec3ffSdougm struct passwd *pw; 868549ec3ffSdougm pw = getpwnam(value != NULL ? value : "nobody"); 869549ec3ffSdougm if (pw != NULL) { 870549ec3ffSdougm val = pw->pw_uid; 871549ec3ffSdougm } else { 872549ec3ffSdougm val = UID_NOBODY; 873549ec3ffSdougm } 874549ec3ffSdougm endpwent(); 875549ec3ffSdougm } 876549ec3ffSdougm export->ex_anon = val; 877549ec3ffSdougm break; 878549ec3ffSdougm case OPT_NOSUID: 879a3351425Sdougm if (value != NULL && (strcasecmp(value, "true") == 0 || 880a3351425Sdougm strcmp(value, "1") == 0)) 881549ec3ffSdougm export->ex_flags |= EX_NOSUID; 882549ec3ffSdougm else 883549ec3ffSdougm export->ex_flags &= ~EX_NOSUID; 884549ec3ffSdougm break; 885549ec3ffSdougm case OPT_ACLOK: 886a3351425Sdougm if (value != NULL && (strcasecmp(value, "true") == 0 || 887549ec3ffSdougm strcmp(value, "1") == 0)) 888549ec3ffSdougm export->ex_flags |= EX_ACLOK; 889549ec3ffSdougm else 890549ec3ffSdougm export->ex_flags &= ~EX_ACLOK; 891549ec3ffSdougm break; 892549ec3ffSdougm case OPT_NOSUB: 893a3351425Sdougm if (value != NULL && (strcasecmp(value, "true") == 0 || 894a3351425Sdougm strcmp(value, "1") == 0)) 895549ec3ffSdougm export->ex_flags |= EX_NOSUB; 896549ec3ffSdougm else 897549ec3ffSdougm export->ex_flags &= ~EX_NOSUB; 898549ec3ffSdougm break; 899549ec3ffSdougm case OPT_PUBLIC: 900a3351425Sdougm if (value != NULL && (strcasecmp(value, "true") == 0 || 901a3351425Sdougm strcmp(value, "1") == 0)) 902549ec3ffSdougm export->ex_flags |= EX_PUBLIC; 903549ec3ffSdougm else 904549ec3ffSdougm export->ex_flags &= ~EX_PUBLIC; 905549ec3ffSdougm break; 906549ec3ffSdougm case OPT_INDEX: 907a3351425Sdougm if (value != NULL && (strcmp(value, "..") == 0 || 908a3351425Sdougm strchr(value, '/') != NULL)) { 909549ec3ffSdougm /* this is an error */ 910549ec3ffSdougm (void) printf(dgettext(TEXT_DOMAIN, 911549ec3ffSdougm "NFS: index=\"%s\" not valid;" 912549ec3ffSdougm "must be a filename.\n"), 913549ec3ffSdougm value); 914549ec3ffSdougm break; 915549ec3ffSdougm } 916549ec3ffSdougm if (value != NULL && *value != '\0' && 917549ec3ffSdougm strcmp(value, ".") != 0) { 918549ec3ffSdougm /* valid index file string */ 919549ec3ffSdougm if (export->ex_index != NULL) { 920549ec3ffSdougm /* left over from "default" */ 921549ec3ffSdougm free(export->ex_index); 922549ec3ffSdougm } 923a3351425Sdougm /* remember to free */ 924a3351425Sdougm export->ex_index = strdup(value); 925549ec3ffSdougm if (export->ex_index == NULL) { 926549ec3ffSdougm (void) printf(dgettext(TEXT_DOMAIN, 927549ec3ffSdougm "NFS: out of memory setting " 928549ec3ffSdougm "index property\n")); 929549ec3ffSdougm break; 930549ec3ffSdougm } 931549ec3ffSdougm export->ex_flags |= EX_INDEX; 932549ec3ffSdougm } 933549ec3ffSdougm break; 934549ec3ffSdougm case OPT_LOG: 935549ec3ffSdougm if (value == NULL) 936549ec3ffSdougm value = strdup("global"); 937549ec3ffSdougm if (value != NULL) 938a3351425Sdougm configlog(export, 939a3351425Sdougm strlen(value) ? value : "global"); 940549ec3ffSdougm break; 941549ec3ffSdougm default: 942549ec3ffSdougm /* have a syntactic error */ 943549ec3ffSdougm (void) printf(dgettext(TEXT_DOMAIN, 944549ec3ffSdougm "NFS: unrecognized option %s=%s\n"), 945549ec3ffSdougm name, value != NULL ? value : ""); 946549ec3ffSdougm break; 947549ec3ffSdougm } 948549ec3ffSdougm if (name != NULL) 949549ec3ffSdougm sa_free_attr_string(name); 950549ec3ffSdougm if (value != NULL) 951549ec3ffSdougm sa_free_attr_string(value); 952549ec3ffSdougm } 953549ec3ffSdougm return (ret); 954549ec3ffSdougm } 955549ec3ffSdougm 956549ec3ffSdougm /* 957549ec3ffSdougm * cleanup_export(export) 958549ec3ffSdougm * 959549ec3ffSdougm * Cleanup the allocated areas so we don't leak memory 960549ec3ffSdougm */ 961549ec3ffSdougm 962549ec3ffSdougm static void 963549ec3ffSdougm cleanup_export(struct exportdata *export) 964549ec3ffSdougm { 965549ec3ffSdougm int i; 966549ec3ffSdougm 967549ec3ffSdougm if (export->ex_index != NULL) 968549ec3ffSdougm free(export->ex_index); 969549ec3ffSdougm if (export->ex_secinfo != NULL) { 970549ec3ffSdougm for (i = 0; i < export->ex_seccnt; i++) 971a3351425Sdougm if (export->ex_secinfo[i].s_rootnames != NULL) 972549ec3ffSdougm free(export->ex_secinfo[i].s_rootnames); 973549ec3ffSdougm free(export->ex_secinfo); 974549ec3ffSdougm } 975549ec3ffSdougm } 976549ec3ffSdougm 977549ec3ffSdougm /* 978549ec3ffSdougm * Given a seconfig entry and a colon-separated 979549ec3ffSdougm * list of names, allocate an array big enough 980549ec3ffSdougm * to hold the root list, then convert each name to 981549ec3ffSdougm * a principal name according to the security 982549ec3ffSdougm * info and assign it to an array element. 983549ec3ffSdougm * Return the array and its size. 984549ec3ffSdougm */ 985549ec3ffSdougm static caddr_t * 986549ec3ffSdougm get_rootnames(seconfig_t *sec, char *list, int *count) 987549ec3ffSdougm { 988549ec3ffSdougm caddr_t *a; 989549ec3ffSdougm int c, i; 990549ec3ffSdougm char *host, *p; 991549ec3ffSdougm 992549ec3ffSdougm /* 993549ec3ffSdougm * Count the number of strings in the list. 994549ec3ffSdougm * This is the number of colon separators + 1. 995549ec3ffSdougm */ 996549ec3ffSdougm c = 1; 997549ec3ffSdougm for (p = list; *p; p++) 998549ec3ffSdougm if (*p == ':') 999549ec3ffSdougm c++; 1000549ec3ffSdougm *count = c; 1001549ec3ffSdougm 1002549ec3ffSdougm a = (caddr_t *)malloc(c * sizeof (char *)); 1003549ec3ffSdougm if (a == NULL) { 1004549ec3ffSdougm (void) printf(dgettext(TEXT_DOMAIN, 1005549ec3ffSdougm "get_rootnames: no memory\n")); 1006549ec3ffSdougm } else { 1007549ec3ffSdougm for (i = 0; i < c; i++) { 1008549ec3ffSdougm host = strtok(list, ":"); 1009549ec3ffSdougm if (!nfs_get_root_principal(sec, host, &a[i])) { 1010549ec3ffSdougm free(a); 1011549ec3ffSdougm a = NULL; 1012549ec3ffSdougm break; 1013549ec3ffSdougm } 1014549ec3ffSdougm list = NULL; 1015549ec3ffSdougm } 1016549ec3ffSdougm } 1017549ec3ffSdougm 1018549ec3ffSdougm return (a); 1019549ec3ffSdougm } 1020549ec3ffSdougm 1021549ec3ffSdougm /* 1022549ec3ffSdougm * fill_security_from_secopts(sp, secopts) 1023549ec3ffSdougm * 1024549ec3ffSdougm * Fill the secinfo structure from the secopts optionset. 1025549ec3ffSdougm */ 1026549ec3ffSdougm 1027549ec3ffSdougm static int 1028549ec3ffSdougm fill_security_from_secopts(struct secinfo *sp, sa_security_t secopts) 1029549ec3ffSdougm { 1030549ec3ffSdougm sa_property_t prop; 1031549ec3ffSdougm char *type; 1032549ec3ffSdougm int longform; 1033549ec3ffSdougm int err = SC_NOERROR; 1034549ec3ffSdougm 1035549ec3ffSdougm type = sa_get_security_attr(secopts, "sectype"); 1036549ec3ffSdougm if (type != NULL) { 1037549ec3ffSdougm /* named security type needs secinfo to be filled in */ 1038549ec3ffSdougm err = nfs_getseconfig_byname(type, &sp->s_secinfo); 1039549ec3ffSdougm sa_free_attr_string(type); 1040549ec3ffSdougm if (err != SC_NOERROR) 1041549ec3ffSdougm return (err); 1042549ec3ffSdougm } else { 1043549ec3ffSdougm /* default case */ 1044549ec3ffSdougm err = nfs_getseconfig_default(&sp->s_secinfo); 1045549ec3ffSdougm if (err != SC_NOERROR) 1046549ec3ffSdougm return (err); 1047549ec3ffSdougm } 1048549ec3ffSdougm 1049549ec3ffSdougm err = SA_OK; 1050549ec3ffSdougm for (prop = sa_get_property(secopts, NULL); 1051549ec3ffSdougm prop != NULL && err == SA_OK; 1052549ec3ffSdougm prop = sa_get_next_property(prop)) { 1053549ec3ffSdougm char *name; 1054549ec3ffSdougm char *value; 1055549ec3ffSdougm 1056549ec3ffSdougm name = sa_get_property_attr(prop, "type"); 1057549ec3ffSdougm value = sa_get_property_attr(prop, "value"); 1058549ec3ffSdougm 1059549ec3ffSdougm longform = value != NULL && strcmp(value, "*") != 0; 1060549ec3ffSdougm 1061549ec3ffSdougm switch (findopt(name)) { 1062549ec3ffSdougm case OPT_RO: 1063549ec3ffSdougm sp->s_flags |= longform ? M_ROL : M_RO; 1064549ec3ffSdougm break; 1065549ec3ffSdougm case OPT_RW: 1066549ec3ffSdougm sp->s_flags |= longform ? M_RWL : M_RW; 1067549ec3ffSdougm break; 1068549ec3ffSdougm case OPT_ROOT: 1069549ec3ffSdougm sp->s_flags |= M_ROOT; 1070549ec3ffSdougm /* 1071549ec3ffSdougm * if we are using AUTH_UNIX, handle like other things 1072549ec3ffSdougm * such as RO/RW 1073549ec3ffSdougm */ 1074549ec3ffSdougm if (sp->s_secinfo.sc_rpcnum == AUTH_UNIX) 1075549ec3ffSdougm continue; 1076549ec3ffSdougm /* not AUTH_UNIX */ 1077549ec3ffSdougm if (value != NULL) { 1078a3351425Sdougm sp->s_rootnames = get_rootnames(&sp->s_secinfo, 1079a3351425Sdougm value, &sp->s_rootcnt); 1080549ec3ffSdougm if (sp->s_rootnames == NULL) { 1081549ec3ffSdougm err = SA_BAD_VALUE; 1082a3351425Sdougm (void) fprintf(stderr, 1083a3351425Sdougm dgettext(TEXT_DOMAIN, 1084549ec3ffSdougm "Bad root list\n")); 1085549ec3ffSdougm } 1086549ec3ffSdougm } 1087549ec3ffSdougm break; 1088549ec3ffSdougm case OPT_WINDOW: 1089549ec3ffSdougm if (value != NULL) { 1090549ec3ffSdougm sp->s_window = atoi(value); 1091a3351425Sdougm /* just in case */ 1092549ec3ffSdougm if (sp->s_window < 0) 1093a3351425Sdougm sp->s_window = DEF_WIN; 1094549ec3ffSdougm } 1095549ec3ffSdougm break; 1096549ec3ffSdougm default: 1097549ec3ffSdougm break; 1098549ec3ffSdougm } 1099549ec3ffSdougm if (name != NULL) 1100549ec3ffSdougm sa_free_attr_string(name); 1101549ec3ffSdougm if (value != NULL) 1102549ec3ffSdougm sa_free_attr_string(value); 1103549ec3ffSdougm } 1104549ec3ffSdougm /* if rw/ro options not set, use default of RW */ 1105549ec3ffSdougm if ((sp->s_flags & NFS_RWMODES) == 0) 1106549ec3ffSdougm sp->s_flags |= M_RW; 1107549ec3ffSdougm return (err); 1108549ec3ffSdougm } 1109549ec3ffSdougm 1110549ec3ffSdougm /* 1111549ec3ffSdougm * This is for testing only 1112549ec3ffSdougm * It displays the export structure that 1113549ec3ffSdougm * goes into the kernel. 1114549ec3ffSdougm */ 1115549ec3ffSdougm static void 1116549ec3ffSdougm printarg(char *path, struct exportdata *ep) 1117549ec3ffSdougm { 1118549ec3ffSdougm int i, j; 1119549ec3ffSdougm struct secinfo *sp; 1120549ec3ffSdougm 1121549ec3ffSdougm if (debug == 0) 1122549ec3ffSdougm return; 1123549ec3ffSdougm 1124549ec3ffSdougm (void) printf("%s:\n", path); 1125549ec3ffSdougm (void) printf("\tex_version = %d\n", ep->ex_version); 1126549ec3ffSdougm (void) printf("\tex_path = %s\n", ep->ex_path); 1127549ec3ffSdougm (void) printf("\tex_pathlen = %ld\n", (ulong_t)ep->ex_pathlen); 1128549ec3ffSdougm (void) printf("\tex_flags: (0x%02x) ", ep->ex_flags); 1129549ec3ffSdougm if (ep->ex_flags & EX_NOSUID) 1130549ec3ffSdougm (void) printf("NOSUID "); 1131549ec3ffSdougm if (ep->ex_flags & EX_ACLOK) 1132549ec3ffSdougm (void) printf("ACLOK "); 1133549ec3ffSdougm if (ep->ex_flags & EX_PUBLIC) 1134549ec3ffSdougm (void) printf("PUBLIC "); 1135549ec3ffSdougm if (ep->ex_flags & EX_NOSUB) 1136549ec3ffSdougm (void) printf("NOSUB "); 1137549ec3ffSdougm if (ep->ex_flags & EX_LOG) 1138549ec3ffSdougm (void) printf("LOG "); 1139549ec3ffSdougm if (ep->ex_flags & EX_LOG_ALLOPS) 1140549ec3ffSdougm (void) printf("LOG_ALLOPS "); 1141549ec3ffSdougm if (ep->ex_flags == 0) 1142549ec3ffSdougm (void) printf("(none)"); 1143549ec3ffSdougm (void) printf("\n"); 1144549ec3ffSdougm if (ep->ex_flags & EX_LOG) { 1145549ec3ffSdougm (void) printf("\tex_log_buffer = %s\n", 1146549ec3ffSdougm (ep->ex_log_buffer ? ep->ex_log_buffer : "(NULL)")); 1147549ec3ffSdougm (void) printf("\tex_tag = %s\n", 1148549ec3ffSdougm (ep->ex_tag ? ep->ex_tag : "(NULL)")); 1149549ec3ffSdougm } 1150549ec3ffSdougm (void) printf("\tex_anon = %d\n", ep->ex_anon); 1151549ec3ffSdougm (void) printf("\tex_seccnt = %d\n", ep->ex_seccnt); 1152549ec3ffSdougm (void) printf("\n"); 1153549ec3ffSdougm for (i = 0; i < ep->ex_seccnt; i++) { 1154549ec3ffSdougm sp = &ep->ex_secinfo[i]; 1155549ec3ffSdougm (void) printf("\t\ts_secinfo = %s\n", sp->s_secinfo.sc_name); 1156549ec3ffSdougm (void) printf("\t\ts_flags: (0x%02x) ", sp->s_flags); 1157549ec3ffSdougm if (sp->s_flags & M_ROOT) (void) printf("M_ROOT "); 1158549ec3ffSdougm if (sp->s_flags & M_RO) (void) printf("M_RO "); 1159549ec3ffSdougm if (sp->s_flags & M_ROL) (void) printf("M_ROL "); 1160549ec3ffSdougm if (sp->s_flags & M_RW) (void) printf("M_RW "); 1161549ec3ffSdougm if (sp->s_flags & M_RWL) (void) printf("M_RWL "); 1162549ec3ffSdougm if (sp->s_flags == 0) (void) printf("(none)"); 1163549ec3ffSdougm (void) printf("\n"); 1164549ec3ffSdougm (void) printf("\t\ts_window = %d\n", sp->s_window); 1165549ec3ffSdougm (void) printf("\t\ts_rootcnt = %d ", sp->s_rootcnt); 1166549ec3ffSdougm (void) fflush(stdout); 1167549ec3ffSdougm for (j = 0; j < sp->s_rootcnt; j++) 1168549ec3ffSdougm (void) printf("%s ", sp->s_rootnames[j] ? 1169549ec3ffSdougm sp->s_rootnames[j] : "<null>"); 1170549ec3ffSdougm (void) printf("\n\n"); 1171549ec3ffSdougm } 1172549ec3ffSdougm } 1173549ec3ffSdougm 1174549ec3ffSdougm /* 1175549ec3ffSdougm * count_security(opts) 1176549ec3ffSdougm * 1177549ec3ffSdougm * Count the number of security types (flavors). The optionset has 1178549ec3ffSdougm * been populated with the security flavors as a holding mechanism. 1179549ec3ffSdougm * We later use this number to allocate data structures. 1180549ec3ffSdougm */ 1181549ec3ffSdougm 1182549ec3ffSdougm static int 1183549ec3ffSdougm count_security(sa_optionset_t opts) 1184549ec3ffSdougm { 1185549ec3ffSdougm int count = 0; 1186549ec3ffSdougm sa_property_t prop; 1187549ec3ffSdougm if (opts != NULL) { 1188549ec3ffSdougm for (prop = sa_get_property(opts, NULL); prop != NULL; 1189549ec3ffSdougm prop = sa_get_next_property(prop)) { 1190549ec3ffSdougm count++; 1191549ec3ffSdougm } 1192549ec3ffSdougm } 1193549ec3ffSdougm return (count); 1194549ec3ffSdougm } 1195549ec3ffSdougm 1196549ec3ffSdougm /* 1197549ec3ffSdougm * nfs_sprint_option(rbuff, rbuffsize, incr, prop, sep) 1198549ec3ffSdougm * 1199549ec3ffSdougm * provides a mechanism to format NFS properties into legacy output 1200549ec3ffSdougm * format. If the buffer would overflow, it is reallocated and grown 1201549ec3ffSdougm * as appropriate. Special cases of converting internal form of values 1202549ec3ffSdougm * to those used by "share" are done. this function does one property 1203549ec3ffSdougm * at a time. 1204549ec3ffSdougm */ 1205549ec3ffSdougm 1206aed5d200Sdougm static int 1207549ec3ffSdougm nfs_sprint_option(char **rbuff, size_t *rbuffsize, size_t incr, 1208549ec3ffSdougm sa_property_t prop, int sep) 1209549ec3ffSdougm { 1210549ec3ffSdougm char *name; 1211549ec3ffSdougm char *value; 1212549ec3ffSdougm int curlen; 1213549ec3ffSdougm char *buff = *rbuff; 1214549ec3ffSdougm size_t buffsize = *rbuffsize; 1215aed5d200Sdougm int printed = B_FALSE; 1216549ec3ffSdougm 1217549ec3ffSdougm name = sa_get_property_attr(prop, "type"); 1218549ec3ffSdougm value = sa_get_property_attr(prop, "value"); 1219549ec3ffSdougm if (buff != NULL) 1220549ec3ffSdougm curlen = strlen(buff); 1221549ec3ffSdougm else 1222549ec3ffSdougm curlen = 0; 1223549ec3ffSdougm if (name != NULL) { 1224549ec3ffSdougm int len; 1225549ec3ffSdougm len = strlen(name) + sep; 1226549ec3ffSdougm 1227549ec3ffSdougm /* 1228549ec3ffSdougm * A future RFE would be to replace this with more 1229549ec3ffSdougm * generic code and to possibly handle more types. 1230549ec3ffSdougm */ 1231549ec3ffSdougm switch (gettype(name)) { 1232549ec3ffSdougm case OPT_TYPE_BOOLEAN: 1233aed5d200Sdougm /* 1234aed5d200Sdougm * For NFS, boolean value of FALSE means it 1235aed5d200Sdougm * doesn't show up in the option list at all. 1236aed5d200Sdougm */ 1237a3351425Sdougm if (value != NULL && strcasecmp(value, "false") == 0) 1238aed5d200Sdougm goto skip; 1239aed5d200Sdougm if (value != NULL) { 1240549ec3ffSdougm sa_free_attr_string(value); 1241549ec3ffSdougm value = NULL; 1242aed5d200Sdougm } 1243549ec3ffSdougm break; 1244549ec3ffSdougm case OPT_TYPE_ACCLIST: 1245549ec3ffSdougm if (value != NULL && strcmp(value, "*") == 0) { 1246549ec3ffSdougm sa_free_attr_string(value); 1247549ec3ffSdougm value = NULL; 1248549ec3ffSdougm } else { 1249549ec3ffSdougm if (value != NULL) 1250549ec3ffSdougm len += 1 + strlen(value); 1251549ec3ffSdougm } 1252549ec3ffSdougm break; 1253549ec3ffSdougm case OPT_TYPE_LOGTAG: 1254549ec3ffSdougm if (value != NULL && strlen(value) == 0) { 1255549ec3ffSdougm sa_free_attr_string(value); 1256549ec3ffSdougm value = NULL; 1257549ec3ffSdougm } else { 1258549ec3ffSdougm if (value != NULL) 1259549ec3ffSdougm len += 1 + strlen(value); 1260549ec3ffSdougm } 1261549ec3ffSdougm break; 1262549ec3ffSdougm default: 1263549ec3ffSdougm if (value != NULL) 1264549ec3ffSdougm len += 1 + strlen(value); 1265549ec3ffSdougm break; 1266549ec3ffSdougm } 1267549ec3ffSdougm while (buffsize <= (curlen + len)) { 1268549ec3ffSdougm /* need more room */ 1269549ec3ffSdougm buffsize += incr; 1270549ec3ffSdougm buff = realloc(buff, buffsize); 1271549ec3ffSdougm if (buff == NULL) { 1272549ec3ffSdougm /* realloc failed so free everything */ 1273549ec3ffSdougm if (*rbuff != NULL) 1274549ec3ffSdougm free(*rbuff); 1275549ec3ffSdougm } 1276549ec3ffSdougm *rbuff = buff; 1277549ec3ffSdougm *rbuffsize = buffsize; 1278549ec3ffSdougm if (buff == NULL) 1279aed5d200Sdougm goto skip; 1280aed5d200Sdougm 1281aed5d200Sdougm } 1282aed5d200Sdougm 1283aed5d200Sdougm if (buff == NULL) 1284aed5d200Sdougm goto skip; 1285aed5d200Sdougm 1286a3351425Sdougm if (value == NULL) { 1287549ec3ffSdougm (void) snprintf(buff + curlen, buffsize - curlen, 1288549ec3ffSdougm "%s%s", sep ? "," : "", 1289549ec3ffSdougm name, value != NULL ? value : ""); 1290a3351425Sdougm } else { 1291549ec3ffSdougm (void) snprintf(buff + curlen, buffsize - curlen, 1292549ec3ffSdougm "%s%s=%s", sep ? "," : "", 1293549ec3ffSdougm name, value != NULL ? value : ""); 1294549ec3ffSdougm } 1295aed5d200Sdougm printed = B_TRUE; 1296a3351425Sdougm } 1297aed5d200Sdougm skip: 1298549ec3ffSdougm if (name != NULL) 1299549ec3ffSdougm sa_free_attr_string(name); 1300549ec3ffSdougm if (value != NULL) 1301549ec3ffSdougm sa_free_attr_string(value); 1302aed5d200Sdougm return (printed); 1303549ec3ffSdougm } 1304549ec3ffSdougm 1305549ec3ffSdougm /* 1306549ec3ffSdougm * nfs_format_options(group, hier) 1307549ec3ffSdougm * 1308549ec3ffSdougm * format all the options on the group into an old-style option 1309549ec3ffSdougm * string. If hier is non-zero, walk up the tree to get inherited 1310549ec3ffSdougm * options. 1311549ec3ffSdougm */ 1312549ec3ffSdougm 1313549ec3ffSdougm static char * 1314549ec3ffSdougm nfs_format_options(sa_group_t group, int hier) 1315549ec3ffSdougm { 1316549ec3ffSdougm sa_optionset_t options = NULL; 1317a3351425Sdougm sa_optionset_t secoptions = NULL; 1318549ec3ffSdougm sa_property_t prop, secprop; 1319a3351425Sdougm sa_security_t security = NULL; 1320549ec3ffSdougm char *buff; 1321549ec3ffSdougm size_t buffsize; 1322a3351425Sdougm char *sectype = NULL; 1323a3351425Sdougm int sep = 0; 1324a3351425Sdougm 1325a3351425Sdougm 1326a3351425Sdougm buff = malloc(OPT_CHUNK); 1327a3351425Sdougm if (buff == NULL) { 1328a3351425Sdougm return (NULL); 1329a3351425Sdougm } 1330a3351425Sdougm 1331a3351425Sdougm buff[0] = '\0'; 1332a3351425Sdougm buffsize = OPT_CHUNK; 1333a3351425Sdougm 1334a3351425Sdougm /* 1335a3351425Sdougm * We may have a an optionset relative to this item. format 1336a3351425Sdougm * these if we find them and then add any security definitions. 1337a3351425Sdougm */ 1338549ec3ffSdougm 1339549ec3ffSdougm options = sa_get_derived_optionset(group, "nfs", hier); 1340549ec3ffSdougm 1341549ec3ffSdougm /* 1342549ec3ffSdougm * do the default set first but skip any option that is also 1343549ec3ffSdougm * in the protocol specific optionset. 1344549ec3ffSdougm */ 1345549ec3ffSdougm if (options != NULL) { 1346a3351425Sdougm for (prop = sa_get_property(options, NULL); 1347a3351425Sdougm prop != NULL; prop = sa_get_next_property(prop)) { 1348549ec3ffSdougm /* 1349a3351425Sdougm * use this one since we skipped any 1350a3351425Sdougm * of these that were also in 1351a3351425Sdougm * optdefault 1352549ec3ffSdougm */ 1353aed5d200Sdougm if (nfs_sprint_option(&buff, &buffsize, OPT_CHUNK, 1354aed5d200Sdougm prop, sep)) 1355aed5d200Sdougm sep = 1; 1356549ec3ffSdougm if (buff == NULL) { 1357549ec3ffSdougm /* 1358a3351425Sdougm * buff could become NULL if there 1359a3351425Sdougm * isn't enough memory for 1360a3351425Sdougm * nfs_sprint_option to realloc() 1361a3351425Sdougm * as necessary. We can't really 1362a3351425Sdougm * do anything about it at this 1363a3351425Sdougm * point so we return NULL. The 1364a3351425Sdougm * caller should handle the 1365a3351425Sdougm * failure. 1366549ec3ffSdougm */ 1367a3351425Sdougm if (options != NULL) 1368a3351425Sdougm sa_free_derived_optionset( 1369a3351425Sdougm options); 1370549ec3ffSdougm return (buff); 1371549ec3ffSdougm } 1372549ec3ffSdougm } 1373549ec3ffSdougm } 1374549ec3ffSdougm secoptions = (sa_optionset_t)sa_get_all_security_types(group, 1375549ec3ffSdougm "nfs", hier); 1376549ec3ffSdougm if (secoptions != NULL) { 1377549ec3ffSdougm for (secprop = sa_get_property(secoptions, NULL); 1378a3351425Sdougm secprop != NULL; 1379a3351425Sdougm secprop = sa_get_next_property(secprop)) { 1380549ec3ffSdougm sectype = sa_get_property_attr(secprop, "type"); 1381a3351425Sdougm security = 1382a3351425Sdougm (sa_security_t)sa_get_derived_security( 1383a3351425Sdougm group, sectype, "nfs", hier); 1384549ec3ffSdougm if (security != NULL) { 1385549ec3ffSdougm if (sectype != NULL) { 1386a3351425Sdougm prop = sa_create_property( 1387a3351425Sdougm "sec", sectype); 1388aed5d200Sdougm if (prop == NULL) 1389aed5d200Sdougm goto err; 1390aed5d200Sdougm if (nfs_sprint_option(&buff, 1391aed5d200Sdougm &buffsize, OPT_CHUNK, prop, sep)) 1392549ec3ffSdougm sep = 1; 1393aed5d200Sdougm (void) sa_remove_property(prop); 1394aed5d200Sdougm if (buff == NULL) 1395aed5d200Sdougm goto err; 1396549ec3ffSdougm } 1397a3351425Sdougm for (prop = sa_get_property(security, 1398a3351425Sdougm NULL); prop != NULL; 1399549ec3ffSdougm prop = sa_get_next_property(prop)) { 1400aed5d200Sdougm if (nfs_sprint_option(&buff, 1401aed5d200Sdougm &buffsize, OPT_CHUNK, prop, sep)) 1402aed5d200Sdougm sep = 1; 1403a3351425Sdougm if (buff == NULL) 1404a3351425Sdougm goto err; 1405a3351425Sdougm } 1406a3351425Sdougm sa_free_derived_optionset(security); 1407a3351425Sdougm } 1408a3351425Sdougm if (sectype != NULL) 1409a3351425Sdougm sa_free_attr_string(sectype); 1410a3351425Sdougm } 1411a3351425Sdougm sa_free_derived_optionset(secoptions); 1412a3351425Sdougm } 1413549ec3ffSdougm 1414a3351425Sdougm if (options != NULL) 1415a3351425Sdougm sa_free_derived_optionset(options); 1416a3351425Sdougm return (buff); 1417a3351425Sdougm 1418a3351425Sdougm err: 1419a3351425Sdougm /* 1420a3351425Sdougm * If we couldn't allocate memory for option printing, we need 1421a3351425Sdougm * to break out of the nested loops, cleanup and return NULL. 1422a3351425Sdougm */ 1423a3351425Sdougm if (secoptions != NULL) 1424549ec3ffSdougm sa_free_derived_optionset(secoptions); 1425549ec3ffSdougm if (security != NULL) 1426549ec3ffSdougm sa_free_derived_optionset(security); 1427549ec3ffSdougm if (sectype != NULL) 1428549ec3ffSdougm sa_free_attr_string(sectype); 1429549ec3ffSdougm if (options != NULL) 1430549ec3ffSdougm sa_free_derived_optionset(options); 1431549ec3ffSdougm return (buff); 1432549ec3ffSdougm } 1433a3351425Sdougm 1434549ec3ffSdougm /* 1435549ec3ffSdougm * Append an entry to the nfslogtab file 1436549ec3ffSdougm */ 1437549ec3ffSdougm static int 1438549ec3ffSdougm nfslogtab_add(dir, buffer, tag) 1439549ec3ffSdougm char *dir, *buffer, *tag; 1440549ec3ffSdougm { 1441549ec3ffSdougm FILE *f; 1442549ec3ffSdougm struct logtab_ent lep; 1443549ec3ffSdougm int error = 0; 1444549ec3ffSdougm 1445549ec3ffSdougm /* 1446549ec3ffSdougm * Open the file for update and create it if necessary. 1447549ec3ffSdougm * This may leave the I/O offset at the end of the file, 1448549ec3ffSdougm * so rewind back to the beginning of the file. 1449549ec3ffSdougm */ 1450549ec3ffSdougm f = fopen(NFSLOGTAB, "a+"); 1451549ec3ffSdougm if (f == NULL) { 1452549ec3ffSdougm error = errno; 1453549ec3ffSdougm goto out; 1454549ec3ffSdougm } 1455549ec3ffSdougm rewind(f); 1456549ec3ffSdougm 1457549ec3ffSdougm if (lockf(fileno(f), F_LOCK, 0L) < 0) { 1458549ec3ffSdougm (void) fprintf(stderr, dgettext(TEXT_DOMAIN, 1459549ec3ffSdougm "share complete, however failed to lock %s " 1460549ec3ffSdougm "for update: %s\n"), NFSLOGTAB, strerror(errno)); 1461549ec3ffSdougm error = -1; 1462549ec3ffSdougm goto out; 1463549ec3ffSdougm } 1464549ec3ffSdougm 1465549ec3ffSdougm if (logtab_deactivate_after_boot(f) == -1) { 1466549ec3ffSdougm (void) fprintf(stderr, dgettext(TEXT_DOMAIN, 1467549ec3ffSdougm "share complete, however could not deactivate " 1468549ec3ffSdougm "entries in %s\n"), NFSLOGTAB); 1469549ec3ffSdougm error = -1; 1470549ec3ffSdougm goto out; 1471549ec3ffSdougm } 1472549ec3ffSdougm 1473549ec3ffSdougm /* 1474549ec3ffSdougm * Remove entries matching buffer and sharepoint since we're 1475549ec3ffSdougm * going to replace it with perhaps an entry with a new tag. 1476549ec3ffSdougm */ 1477549ec3ffSdougm if (logtab_rement(f, buffer, dir, NULL, -1)) { 1478549ec3ffSdougm (void) fprintf(stderr, dgettext(TEXT_DOMAIN, 1479549ec3ffSdougm "share complete, however could not remove matching " 1480549ec3ffSdougm "entries in %s\n"), NFSLOGTAB); 1481549ec3ffSdougm error = -1; 1482549ec3ffSdougm goto out; 1483549ec3ffSdougm } 1484549ec3ffSdougm 1485549ec3ffSdougm /* 1486549ec3ffSdougm * Deactivate all active entries matching this sharepoint 1487549ec3ffSdougm */ 1488549ec3ffSdougm if (logtab_deactivate(f, NULL, dir, NULL)) { 1489549ec3ffSdougm (void) fprintf(stderr, dgettext(TEXT_DOMAIN, 1490549ec3ffSdougm "share complete, however could not deactivate matching " 1491549ec3ffSdougm "entries in %s\n"), NFSLOGTAB); 1492549ec3ffSdougm error = -1; 1493549ec3ffSdougm goto out; 1494549ec3ffSdougm } 1495549ec3ffSdougm 1496549ec3ffSdougm lep.le_buffer = buffer; 1497549ec3ffSdougm lep.le_path = dir; 1498549ec3ffSdougm lep.le_tag = tag; 1499549ec3ffSdougm lep.le_state = LES_ACTIVE; 1500549ec3ffSdougm 1501549ec3ffSdougm /* 1502549ec3ffSdougm * Add new sharepoint / buffer location to nfslogtab 1503549ec3ffSdougm */ 1504549ec3ffSdougm if (logtab_putent(f, &lep) < 0) { 1505549ec3ffSdougm (void) fprintf(stderr, dgettext(TEXT_DOMAIN, 1506549ec3ffSdougm "share complete, however could not add %s to %s\n"), 1507549ec3ffSdougm dir, NFSLOGTAB); 1508549ec3ffSdougm error = -1; 1509549ec3ffSdougm } 1510549ec3ffSdougm 1511549ec3ffSdougm out: 1512549ec3ffSdougm if (f != NULL) 1513549ec3ffSdougm (void) fclose(f); 1514549ec3ffSdougm return (error); 1515549ec3ffSdougm } 1516549ec3ffSdougm 1517549ec3ffSdougm /* 1518549ec3ffSdougm * Deactivate an entry from the nfslogtab file 1519549ec3ffSdougm */ 1520549ec3ffSdougm static int 1521549ec3ffSdougm nfslogtab_deactivate(path) 1522549ec3ffSdougm char *path; 1523549ec3ffSdougm { 1524549ec3ffSdougm FILE *f; 1525549ec3ffSdougm int error = 0; 1526549ec3ffSdougm 1527549ec3ffSdougm f = fopen(NFSLOGTAB, "r+"); 1528549ec3ffSdougm if (f == NULL) { 1529549ec3ffSdougm error = errno; 1530549ec3ffSdougm goto out; 1531549ec3ffSdougm } 1532549ec3ffSdougm if (lockf(fileno(f), F_LOCK, 0L) < 0) { 1533549ec3ffSdougm error = errno; 1534549ec3ffSdougm (void) fprintf(stderr, dgettext(TEXT_DOMAIN, 1535549ec3ffSdougm "share complete, however could not lock %s for " 1536549ec3ffSdougm "update: %s\n"), NFSLOGTAB, strerror(error)); 1537549ec3ffSdougm goto out; 1538549ec3ffSdougm } 1539549ec3ffSdougm if (logtab_deactivate(f, NULL, path, NULL) == -1) { 1540549ec3ffSdougm error = -1; 1541549ec3ffSdougm (void) fprintf(stderr, 1542549ec3ffSdougm dgettext(TEXT_DOMAIN, 1543549ec3ffSdougm "share complete, however could not " 1544549ec3ffSdougm "deactivate %s in %s\n"), path, NFSLOGTAB); 1545549ec3ffSdougm goto out; 1546549ec3ffSdougm } 1547549ec3ffSdougm 1548549ec3ffSdougm out: if (f != NULL) 1549549ec3ffSdougm (void) fclose(f); 1550549ec3ffSdougm 1551549ec3ffSdougm return (error); 1552549ec3ffSdougm } 1553549ec3ffSdougm 1554549ec3ffSdougm /* 1555546405c3Sdougm * check_public(group, skipshare) 1556546405c3Sdougm * 1557546405c3Sdougm * Check the group for any shares that have the public property 1558546405c3Sdougm * enabled. We skip "skipshare" since that is the one we are 1559546405c3Sdougm * working with. This is a separate function to make handling 1560546405c3Sdougm * subgroups simpler. Returns true if there is a share with public. 1561546405c3Sdougm */ 1562546405c3Sdougm static int 1563546405c3Sdougm check_public(sa_group_t group, sa_share_t skipshare) 1564546405c3Sdougm { 1565546405c3Sdougm int exists = B_FALSE; 1566546405c3Sdougm sa_share_t share; 1567546405c3Sdougm sa_optionset_t opt; 1568546405c3Sdougm sa_property_t prop; 1569546405c3Sdougm char *shared; 1570546405c3Sdougm 1571546405c3Sdougm for (share = sa_get_share(group, NULL); share != NULL; 1572546405c3Sdougm share = sa_get_next_share(share)) { 1573546405c3Sdougm if (share == skipshare) 1574546405c3Sdougm continue; 1575546405c3Sdougm 1576546405c3Sdougm opt = sa_get_optionset(share, "nfs"); 1577546405c3Sdougm if (opt == NULL) 1578546405c3Sdougm continue; 1579546405c3Sdougm prop = sa_get_property(opt, "public"); 1580546405c3Sdougm if (prop == NULL) 1581546405c3Sdougm continue; 1582546405c3Sdougm shared = sa_get_share_attr(share, "shared"); 1583546405c3Sdougm if (shared != NULL) { 1584546405c3Sdougm exists = strcmp(shared, "true") == 0; 1585546405c3Sdougm sa_free_attr_string(shared); 1586546405c3Sdougm if (exists == B_TRUE) 1587546405c3Sdougm break; 1588546405c3Sdougm } 1589546405c3Sdougm } 1590546405c3Sdougm 1591546405c3Sdougm return (exists); 1592546405c3Sdougm } 1593546405c3Sdougm 1594546405c3Sdougm /* 1595549ec3ffSdougm * public_exists(share) 1596549ec3ffSdougm * 1597549ec3ffSdougm * check to see if public option is set on any other share than the 1598546405c3Sdougm * one specified. Need to check zfs sub-groups as well as the top 1599546405c3Sdougm * level groups. 1600549ec3ffSdougm */ 1601549ec3ffSdougm static int 1602549ec3ffSdougm public_exists(sa_share_t skipshare) 1603549ec3ffSdougm { 1604549ec3ffSdougm sa_group_t group; 1605549ec3ffSdougm sa_handle_t handle; 1606549ec3ffSdougm 1607549ec3ffSdougm group = sa_get_parent_group(skipshare); 1608549ec3ffSdougm if (group == NULL) 1609549ec3ffSdougm return (SA_NO_SUCH_GROUP); 1610549ec3ffSdougm 1611549ec3ffSdougm handle = sa_find_group_handle(group); 1612549ec3ffSdougm if (handle == NULL) 1613549ec3ffSdougm return (SA_SYSTEM_ERR); 1614549ec3ffSdougm 1615549ec3ffSdougm for (group = sa_get_group(handle, NULL); group != NULL; 1616549ec3ffSdougm group = sa_get_next_group(group)) { 1617546405c3Sdougm /* Walk any ZFS subgroups as well as all standard groups */ 1618546405c3Sdougm if (sa_group_is_zfs(group)) { 1619546405c3Sdougm sa_group_t subgroup; 1620546405c3Sdougm for (subgroup = sa_get_sub_group(group); 1621546405c3Sdougm subgroup != NULL; 1622546405c3Sdougm subgroup = sa_get_next_group(subgroup)) { 1623546405c3Sdougm if (check_public(subgroup, skipshare)) 1624546405c3Sdougm return (B_TRUE); 1625546405c3Sdougm } 1626546405c3Sdougm } else { 1627546405c3Sdougm if (check_public(group, skipshare)) 1628546405c3Sdougm return (B_TRUE); 1629549ec3ffSdougm } 1630549ec3ffSdougm } 1631546405c3Sdougm return (B_FALSE); 1632549ec3ffSdougm } 1633549ec3ffSdougm 1634549ec3ffSdougm /* 1635549ec3ffSdougm * sa_enable_share at the protocol level, enable_share must tell the 1636549ec3ffSdougm * implementation that it is to enable the share. This entails 1637549ec3ffSdougm * converting the path and options into the appropriate ioctl 1638549ec3ffSdougm * calls. It is assumed that all error checking of paths, etc. were 1639549ec3ffSdougm * done earlier. 1640549ec3ffSdougm */ 1641549ec3ffSdougm static int 1642549ec3ffSdougm nfs_enable_share(sa_share_t share) 1643549ec3ffSdougm { 1644549ec3ffSdougm struct exportdata export; 1645549ec3ffSdougm sa_optionset_t secoptlist; 1646549ec3ffSdougm struct secinfo *sp; 1647549ec3ffSdougm int num_secinfo; 1648549ec3ffSdougm sa_optionset_t opt; 1649549ec3ffSdougm sa_security_t sec; 1650549ec3ffSdougm sa_property_t prop; 1651549ec3ffSdougm char *path; 1652549ec3ffSdougm int err = SA_OK; 1653546405c3Sdougm int i; 1654ecd6cf80Smarks int iszfs; 1655549ec3ffSdougm 1656549ec3ffSdougm /* Don't drop core if the NFS module isn't loaded. */ 1657549ec3ffSdougm (void) signal(SIGSYS, SIG_IGN); 1658549ec3ffSdougm 1659549ec3ffSdougm /* get the path since it is important in several places */ 1660549ec3ffSdougm path = sa_get_share_attr(share, "path"); 1661549ec3ffSdougm if (path == NULL) 1662549ec3ffSdougm return (SA_NO_SUCH_PATH); 1663549ec3ffSdougm 1664ecd6cf80Smarks iszfs = sa_path_is_zfs(path); 1665549ec3ffSdougm /* 1666549ec3ffSdougm * find the optionsets and security sets. There may not be 1667549ec3ffSdougm * any or there could be one or two for each of optionset and 1668549ec3ffSdougm * security may have multiple, one per security type per 1669549ec3ffSdougm * protocol type. 1670549ec3ffSdougm */ 1671549ec3ffSdougm opt = sa_get_derived_optionset(share, "nfs", 1); 1672549ec3ffSdougm secoptlist = (sa_optionset_t)sa_get_all_security_types(share, "nfs", 1); 1673549ec3ffSdougm if (secoptlist != NULL) 1674549ec3ffSdougm num_secinfo = MAX(1, count_security(secoptlist)); 1675549ec3ffSdougm else 1676549ec3ffSdougm num_secinfo = 1; 1677549ec3ffSdougm 1678549ec3ffSdougm /* 1679549ec3ffSdougm * walk through the options and fill in the structure 1680549ec3ffSdougm * appropriately. 1681549ec3ffSdougm */ 1682549ec3ffSdougm 1683549ec3ffSdougm (void) memset(&export, '\0', sizeof (export)); 1684549ec3ffSdougm 1685549ec3ffSdougm /* 1686549ec3ffSdougm * do non-security options first since there is only one after 1687549ec3ffSdougm * the derived group is constructed. 1688549ec3ffSdougm */ 1689549ec3ffSdougm export.ex_version = EX_CURRENT_VERSION; 1690549ec3ffSdougm export.ex_anon = UID_NOBODY; /* this is our default value */ 1691549ec3ffSdougm export.ex_index = NULL; 1692549ec3ffSdougm export.ex_path = path; 1693549ec3ffSdougm export.ex_pathlen = strlen(path) + 1; 1694549ec3ffSdougm 1695549ec3ffSdougm if (opt != NULL) 1696549ec3ffSdougm err = fill_export_from_optionset(&export, opt); 1697549ec3ffSdougm 1698549ec3ffSdougm /* 1699549ec3ffSdougm * check to see if "public" is set. If it is, then make sure 1700549ec3ffSdougm * no other share has it set. If it is already used, fail. 1701549ec3ffSdougm */ 1702549ec3ffSdougm 1703549ec3ffSdougm if (export.ex_flags & EX_PUBLIC && public_exists(share)) { 1704549ec3ffSdougm (void) printf(dgettext(TEXT_DOMAIN, 1705549ec3ffSdougm "NFS: Cannot share more than one file " 1706549ec3ffSdougm "system with 'public' property\n")); 1707549ec3ffSdougm err = SA_NOT_ALLOWED; 1708549ec3ffSdougm goto out; 1709549ec3ffSdougm } 1710549ec3ffSdougm 1711546405c3Sdougm sp = calloc(num_secinfo, sizeof (struct secinfo)); 1712549ec3ffSdougm if (sp == NULL) { 1713549ec3ffSdougm err = SA_NO_MEMORY; 1714546405c3Sdougm (void) printf(dgettext(TEXT_DOMAIN, 1715546405c3Sdougm "NFS: NFS: no memory for security\n")); 1716546405c3Sdougm goto out; 1717546405c3Sdougm } 1718549ec3ffSdougm export.ex_secinfo = sp; 1719549ec3ffSdougm /* get default secinfo */ 1720549ec3ffSdougm export.ex_seccnt = num_secinfo; 1721549ec3ffSdougm /* 1722549ec3ffSdougm * since we must have one security option defined, we 1723549ec3ffSdougm * init to the default and then override as we find 1724549ec3ffSdougm * defined security options. This handles the case 1725549ec3ffSdougm * where we have no defined options but we need to set 1726549ec3ffSdougm * up one. 1727549ec3ffSdougm */ 1728549ec3ffSdougm sp[0].s_window = DEF_WIN; 1729549ec3ffSdougm sp[0].s_rootnames = NULL; 1730549ec3ffSdougm /* setup a default in case no properties defined */ 1731549ec3ffSdougm if (nfs_getseconfig_default(&sp[0].s_secinfo)) { 1732549ec3ffSdougm (void) printf(dgettext(TEXT_DOMAIN, 1733549ec3ffSdougm "NFS: nfs_getseconfig_default: failed to " 1734549ec3ffSdougm "get default security mode\n")); 1735549ec3ffSdougm err = SA_CONFIG_ERR; 1736549ec3ffSdougm } 1737549ec3ffSdougm if (secoptlist != NULL) { 1738549ec3ffSdougm for (i = 0, prop = sa_get_property(secoptlist, NULL); 1739549ec3ffSdougm prop != NULL && i < num_secinfo; 1740549ec3ffSdougm prop = sa_get_next_property(prop), i++) { 1741549ec3ffSdougm char *sectype; 1742549ec3ffSdougm sectype = sa_get_property_attr(prop, "type"); 1743a3351425Sdougm /* 1744a3351425Sdougm * if sectype is NULL, we probably 1745a3351425Sdougm * have a memory problem and can't get 1746a3351425Sdougm * the correct values. Rather than 1747a3351425Sdougm * exporting with incorrect security, 1748a3351425Sdougm * don't share it. 1749a3351425Sdougm */ 1750a3351425Sdougm if (sectype == NULL) { 1751a3351425Sdougm err = SA_NO_MEMORY; 1752a3351425Sdougm (void) printf(dgettext(TEXT_DOMAIN, 1753a3351425Sdougm "NFS: Cannot share %s: " 1754a3351425Sdougm "no memory\n"), path); 1755a3351425Sdougm goto out; 1756a3351425Sdougm } 1757a3351425Sdougm sec = (sa_security_t)sa_get_derived_security( 1758a3351425Sdougm share, sectype, "nfs", 1); 1759549ec3ffSdougm sp[i].s_window = DEF_WIN; 1760549ec3ffSdougm sp[i].s_rootcnt = 0; 1761549ec3ffSdougm sp[i].s_rootnames = NULL; 1762549ec3ffSdougm (void) fill_security_from_secopts(&sp[i], sec); 1763549ec3ffSdougm if (sec != NULL) 1764549ec3ffSdougm sa_free_derived_security(sec); 1765549ec3ffSdougm if (sectype != NULL) 1766549ec3ffSdougm sa_free_attr_string(sectype); 1767549ec3ffSdougm } 1768549ec3ffSdougm } 1769549ec3ffSdougm /* 1770549ec3ffSdougm * when we get here, we can do the exportfs system call and 1771549ec3ffSdougm * initiate thinsg. We probably want to enable the nfs.server 1772549ec3ffSdougm * service first if it isn't running within SMF. 1773549ec3ffSdougm */ 1774549ec3ffSdougm /* check nfs.server status and start if needed */ 1775549ec3ffSdougm /* now add the share to the internal tables */ 1776549ec3ffSdougm printarg(path, &export); 1777549ec3ffSdougm /* 1778549ec3ffSdougm * call the exportfs system call which is implemented 1779549ec3ffSdougm * via the nfssys() call as the EXPORTFS subfunction. 1780549ec3ffSdougm */ 1781ecd6cf80Smarks if (iszfs) { 1782ecd6cf80Smarks struct exportfs_args ea; 1783ecd6cf80Smarks share_t sh; 1784ecd6cf80Smarks char *str; 1785ecd6cf80Smarks priv_set_t *priv_effective; 1786ecd6cf80Smarks int privileged; 1787ecd6cf80Smarks 1788ecd6cf80Smarks /* 1789ecd6cf80Smarks * If we aren't a privileged user 1790ecd6cf80Smarks * and NFS server service isn't running 1791ecd6cf80Smarks * then print out an error message 1792ecd6cf80Smarks * and return EPERM 1793ecd6cf80Smarks */ 1794ecd6cf80Smarks 1795ecd6cf80Smarks priv_effective = priv_allocset(); 1796ecd6cf80Smarks (void) getppriv(PRIV_EFFECTIVE, priv_effective); 1797ecd6cf80Smarks 1798ecd6cf80Smarks privileged = (priv_isfullset(priv_effective) == B_TRUE); 1799ecd6cf80Smarks priv_freeset(priv_effective); 1800ecd6cf80Smarks 1801ecd6cf80Smarks if (!privileged && 1802ecd6cf80Smarks (str = smf_get_state(NFS_SERVER_SVC)) != NULL) { 1803ecd6cf80Smarks err = 0; 1804ecd6cf80Smarks if (strcmp(str, SCF_STATE_STRING_ONLINE) != 0) { 1805ecd6cf80Smarks (void) printf(dgettext(TEXT_DOMAIN, 1806ecd6cf80Smarks "NFS: Cannot share remote " 1807ecd6cf80Smarks "filesystem: %s\n"), path); 1808ecd6cf80Smarks (void) printf(dgettext(TEXT_DOMAIN, 1809ecd6cf80Smarks "NFS: Service needs to be enabled " 1810ecd6cf80Smarks "by a privileged user\n")); 1811ecd6cf80Smarks err = SA_SYSTEM_ERR; 1812ecd6cf80Smarks errno = EPERM; 1813ecd6cf80Smarks } 1814ecd6cf80Smarks free(str); 1815ecd6cf80Smarks } 1816ecd6cf80Smarks 1817ecd6cf80Smarks if (err == 0) { 1818ecd6cf80Smarks ea.dname = path; 1819ecd6cf80Smarks ea.uex = &export; 1820ecd6cf80Smarks 1821ecd6cf80Smarks sa_sharetab_fill_zfs(share, &sh, "nfs"); 1822da6c28aaSamw err = sa_share_zfs(share, path, &sh, 1823da6c28aaSamw &ea, ZFS_SHARE_NFS); 1824ecd6cf80Smarks sa_emptyshare(&sh); 1825ecd6cf80Smarks } 1826ecd6cf80Smarks } else { 1827ecd6cf80Smarks err = exportfs(path, &export); 1828ecd6cf80Smarks } 1829ecd6cf80Smarks 1830ecd6cf80Smarks if (err < 0) { 1831549ec3ffSdougm err = SA_SYSTEM_ERR; 1832549ec3ffSdougm switch (errno) { 1833549ec3ffSdougm case EREMOTE: 1834549ec3ffSdougm (void) printf(dgettext(TEXT_DOMAIN, 1835ecd6cf80Smarks "NFS: Cannot share filesystems " 1836ecd6cf80Smarks "in non-global zones: %s\n"), path); 1837ecd6cf80Smarks err = SA_NOT_SUPPORTED; 1838549ec3ffSdougm break; 1839549ec3ffSdougm case EPERM: 1840549ec3ffSdougm if (getzoneid() != GLOBAL_ZONEID) { 1841549ec3ffSdougm (void) printf(dgettext(TEXT_DOMAIN, 1842549ec3ffSdougm "NFS: Cannot share file systems " 1843549ec3ffSdougm "in non-global zones: %s\n"), path); 1844549ec3ffSdougm err = SA_NOT_SUPPORTED; 1845549ec3ffSdougm break; 1846549ec3ffSdougm } 1847549ec3ffSdougm err = SA_NO_PERMISSION; 1848549ec3ffSdougm /* FALLTHROUGH */ 1849549ec3ffSdougm default: 1850549ec3ffSdougm break; 1851549ec3ffSdougm } 1852549ec3ffSdougm } else { 1853549ec3ffSdougm /* update sharetab with an add/modify */ 1854ecd6cf80Smarks if (!iszfs) { 1855549ec3ffSdougm (void) sa_update_sharetab(share, "nfs"); 1856549ec3ffSdougm } 1857ecd6cf80Smarks } 1858549ec3ffSdougm 1859549ec3ffSdougm if (err == SA_OK) { 1860549ec3ffSdougm /* 1861549ec3ffSdougm * enable services as needed. This should probably be 1862549ec3ffSdougm * done elsewhere in order to minimize the calls to 1863549ec3ffSdougm * check services. 1864549ec3ffSdougm */ 1865549ec3ffSdougm /* 1866549ec3ffSdougm * check to see if logging and other services need to 1867549ec3ffSdougm * be triggered, but only if there wasn't an 1868549ec3ffSdougm * error. This is probably where sharetab should be 1869549ec3ffSdougm * updated with the NFS specific entry. 1870549ec3ffSdougm */ 1871549ec3ffSdougm if (export.ex_flags & EX_LOG) { 1872549ec3ffSdougm /* enable logging */ 1873549ec3ffSdougm if (nfslogtab_add(path, export.ex_log_buffer, 1874549ec3ffSdougm export.ex_tag) != 0) { 1875a3351425Sdougm (void) fprintf(stderr, dgettext(TEXT_DOMAIN, 1876549ec3ffSdougm "Could not enable logging for %s\n"), 1877549ec3ffSdougm path); 1878549ec3ffSdougm } 1879549ec3ffSdougm _check_services(service_list_logging); 1880549ec3ffSdougm } else { 1881549ec3ffSdougm /* 1882549ec3ffSdougm * don't have logging so remove it from file. It might 1883549ec3ffSdougm * not be thre, but that doesn't matter. 1884549ec3ffSdougm */ 1885549ec3ffSdougm (void) nfslogtab_deactivate(path); 1886549ec3ffSdougm _check_services(service_list_default); 1887549ec3ffSdougm } 1888549ec3ffSdougm } 1889549ec3ffSdougm 1890549ec3ffSdougm out: 1891549ec3ffSdougm if (path != NULL) 1892549ec3ffSdougm free(path); 1893549ec3ffSdougm 1894549ec3ffSdougm cleanup_export(&export); 1895549ec3ffSdougm if (opt != NULL) 1896549ec3ffSdougm sa_free_derived_optionset(opt); 1897549ec3ffSdougm if (secoptlist != NULL) 1898549ec3ffSdougm (void) sa_destroy_optionset(secoptlist); 1899549ec3ffSdougm return (err); 1900549ec3ffSdougm } 1901549ec3ffSdougm 1902549ec3ffSdougm /* 19038e314a44Sdougm * nfs_disable_share(share, path) 1904549ec3ffSdougm * 19058e314a44Sdougm * Unshare the specified share. Note that "path" is the same path as 19068e314a44Sdougm * what is in the "share" object. It is passed in to avoid an 19078e314a44Sdougm * additional lookup. A missing "path" value makes this a no-op 19088e314a44Sdougm * function. 1909549ec3ffSdougm */ 1910549ec3ffSdougm static int 1911ecd6cf80Smarks nfs_disable_share(sa_share_t share, char *path) 1912549ec3ffSdougm { 1913549ec3ffSdougm int err; 1914549ec3ffSdougm int ret = SA_OK; 1915ecd6cf80Smarks int iszfs; 19168e314a44Sdougm sa_group_t parent; 19175b6e0c46Sdougm sa_handle_t handle; 1918549ec3ffSdougm 19198e314a44Sdougm if (path == NULL) 19208e314a44Sdougm return (ret); 1921ecd6cf80Smarks 19228e314a44Sdougm /* 19238e314a44Sdougm * If the share is in a ZFS group we need to handle it 19248e314a44Sdougm * differently. Just being on a ZFS file system isn't 19258e314a44Sdougm * enough since we may be in a legacy share case. 19268e314a44Sdougm */ 19278e314a44Sdougm parent = sa_get_parent_group(share); 19288e314a44Sdougm iszfs = sa_group_is_zfs(parent); 1929ecd6cf80Smarks if (iszfs) { 1930ecd6cf80Smarks struct exportfs_args ea; 1931ecd6cf80Smarks share_t sh = { 0 }; 1932ecd6cf80Smarks ea.dname = path; 1933ecd6cf80Smarks ea.uex = NULL; 1934ecd6cf80Smarks sh.sh_path = path; 1935ecd6cf80Smarks sh.sh_fstype = "nfs"; 1936ecd6cf80Smarks 1937da6c28aaSamw err = sa_share_zfs(share, path, &sh, 1938da6c28aaSamw &ea, ZFS_UNSHARE_NFS); 19398e314a44Sdougm } else { 1940ecd6cf80Smarks err = exportfs(path, NULL); 19418e314a44Sdougm } 1942549ec3ffSdougm if (err < 0) { 1943a3351425Sdougm /* 1944ecd6cf80Smarks * TBD: only an error in some 1945ecd6cf80Smarks * cases - need better analysis 1946a3351425Sdougm */ 1947549ec3ffSdougm switch (errno) { 1948549ec3ffSdougm case EPERM: 1949549ec3ffSdougm case EACCES: 1950549ec3ffSdougm ret = SA_NO_PERMISSION; 1951ecd6cf80Smarks if (getzoneid() != GLOBAL_ZONEID) { 1952549ec3ffSdougm ret = SA_NOT_SUPPORTED; 1953ecd6cf80Smarks } 1954549ec3ffSdougm break; 1955549ec3ffSdougm case EINVAL: 1956549ec3ffSdougm case ENOENT: 1957549ec3ffSdougm ret = SA_NO_SUCH_PATH; 1958549ec3ffSdougm break; 1959549ec3ffSdougm default: 1960549ec3ffSdougm ret = SA_SYSTEM_ERR; 1961549ec3ffSdougm break; 1962549ec3ffSdougm } 1963549ec3ffSdougm } 1964549ec3ffSdougm if (ret == SA_OK || ret == SA_NO_SUCH_PATH) { 19655b6e0c46Sdougm handle = sa_find_group_handle((sa_group_t)share); 1966ecd6cf80Smarks if (!iszfs) 19675b6e0c46Sdougm (void) sa_delete_sharetab(handle, path, "nfs"); 1968549ec3ffSdougm /* just in case it was logged */ 1969ecd6cf80Smarks (void) nfslogtab_deactivate(path); 1970549ec3ffSdougm } 1971549ec3ffSdougm return (ret); 1972549ec3ffSdougm } 1973549ec3ffSdougm 1974549ec3ffSdougm /* 1975549ec3ffSdougm * check ro vs rw values. Over time this may get beefed up. 1976549ec3ffSdougm * for now it just does simple checks. 1977549ec3ffSdougm */ 1978549ec3ffSdougm 1979549ec3ffSdougm static int 1980549ec3ffSdougm check_rorw(char *v1, char *v2) 1981549ec3ffSdougm { 1982549ec3ffSdougm int ret = SA_OK; 1983549ec3ffSdougm if (strcmp(v1, v2) == 0) 1984549ec3ffSdougm ret = SA_VALUE_CONFLICT; 1985549ec3ffSdougm return (ret); 1986549ec3ffSdougm } 1987549ec3ffSdougm 1988549ec3ffSdougm /* 1989549ec3ffSdougm * nfs_validate_property(property, parent) 1990549ec3ffSdougm * 1991549ec3ffSdougm * Check that the property has a legitimate value for its type. 1992549ec3ffSdougm */ 1993549ec3ffSdougm 1994549ec3ffSdougm static int 1995549ec3ffSdougm nfs_validate_property(sa_property_t property, sa_optionset_t parent) 1996549ec3ffSdougm { 1997549ec3ffSdougm int ret = SA_OK; 1998549ec3ffSdougm char *propname; 1999549ec3ffSdougm char *other; 2000549ec3ffSdougm int optindex; 2001549ec3ffSdougm nfsl_config_t *configlist; 2002549ec3ffSdougm sa_group_t parent_group; 2003549ec3ffSdougm char *value; 2004549ec3ffSdougm 2005549ec3ffSdougm propname = sa_get_property_attr(property, "type"); 2006549ec3ffSdougm 2007549ec3ffSdougm if ((optindex = findopt(propname)) < 0) 2008549ec3ffSdougm ret = SA_NO_SUCH_PROP; 2009549ec3ffSdougm 2010549ec3ffSdougm /* need to validate value range here as well */ 2011549ec3ffSdougm 2012549ec3ffSdougm if (ret == SA_OK) { 2013549ec3ffSdougm parent_group = sa_get_parent_group((sa_share_t)parent); 2014a3351425Sdougm if (optdefs[optindex].share && !sa_is_share(parent_group)) 2015549ec3ffSdougm ret = SA_PROP_SHARE_ONLY; 2016549ec3ffSdougm } 2017549ec3ffSdougm if (ret == SA_OK) { 2018549ec3ffSdougm value = sa_get_property_attr(property, "value"); 2019549ec3ffSdougm if (value != NULL) { 2020549ec3ffSdougm /* first basic type checking */ 2021549ec3ffSdougm switch (optdefs[optindex].type) { 2022549ec3ffSdougm case OPT_TYPE_NUMBER: 2023549ec3ffSdougm /* check that the value is all digits */ 2024549ec3ffSdougm if (!is_a_number(value)) 2025549ec3ffSdougm ret = SA_BAD_VALUE; 2026549ec3ffSdougm break; 2027549ec3ffSdougm case OPT_TYPE_BOOLEAN: 2028549ec3ffSdougm if (strlen(value) == 0 || 2029549ec3ffSdougm strcasecmp(value, "true") == 0 || 2030549ec3ffSdougm strcmp(value, "1") == 0 || 2031549ec3ffSdougm strcasecmp(value, "false") == 0 || 2032549ec3ffSdougm strcmp(value, "0") == 0) { 2033549ec3ffSdougm ret = SA_OK; 2034549ec3ffSdougm } else { 2035549ec3ffSdougm ret = SA_BAD_VALUE; 2036549ec3ffSdougm } 2037549ec3ffSdougm break; 2038549ec3ffSdougm case OPT_TYPE_USER: 2039549ec3ffSdougm if (!is_a_number(value)) { 2040549ec3ffSdougm struct passwd *pw; 2041a3351425Sdougm /* 2042a3351425Sdougm * in this case it would have to be a 2043a3351425Sdougm * user name 2044a3351425Sdougm */ 2045549ec3ffSdougm pw = getpwnam(value); 2046549ec3ffSdougm if (pw == NULL) 2047549ec3ffSdougm ret = SA_BAD_VALUE; 2048549ec3ffSdougm endpwent(); 2049549ec3ffSdougm } else { 2050549ec3ffSdougm uint64_t intval; 2051549ec3ffSdougm intval = strtoull(value, NULL, 0); 2052549ec3ffSdougm if (intval > UID_MAX && intval != ~0) 2053549ec3ffSdougm ret = SA_BAD_VALUE; 2054549ec3ffSdougm } 2055549ec3ffSdougm break; 2056549ec3ffSdougm case OPT_TYPE_FILE: 2057549ec3ffSdougm if (strcmp(value, "..") == 0 || 2058549ec3ffSdougm strchr(value, '/') != NULL) { 2059549ec3ffSdougm ret = SA_BAD_VALUE; 2060549ec3ffSdougm } 2061549ec3ffSdougm break; 2062549ec3ffSdougm case OPT_TYPE_ACCLIST: 2063549ec3ffSdougm /* 2064549ec3ffSdougm * access list handling. Should eventually 2065549ec3ffSdougm * validate that all the values make sense. 2066549ec3ffSdougm * Also, ro and rw may have cross value 2067549ec3ffSdougm * conflicts. 2068549ec3ffSdougm */ 2069549ec3ffSdougm if (strcmp(propname, SHOPT_RO) == 0) 2070549ec3ffSdougm other = SHOPT_RW; 2071549ec3ffSdougm else if (strcmp(propname, SHOPT_RW) == 0) 2072549ec3ffSdougm other = SHOPT_RO; 2073549ec3ffSdougm else 2074549ec3ffSdougm other = NULL; 2075a3351425Sdougm 2076549ec3ffSdougm if (other != NULL && parent != NULL) { 2077549ec3ffSdougm /* compare rw(ro) with ro(rw) */ 2078549ec3ffSdougm sa_property_t oprop; 2079549ec3ffSdougm oprop = sa_get_property(parent, other); 2080549ec3ffSdougm if (oprop != NULL) { 2081a3351425Sdougm /* 2082a3351425Sdougm * only potential 2083a3351425Sdougm * confusion if other 2084a3351425Sdougm * exists 2085a3351425Sdougm */ 2086549ec3ffSdougm char *ovalue; 2087a3351425Sdougm ovalue = sa_get_property_attr( 2088a3351425Sdougm oprop, "value"); 2089549ec3ffSdougm if (ovalue != NULL) { 2090a3351425Sdougm ret = check_rorw(value, 2091a3351425Sdougm ovalue); 2092a3351425Sdougm sa_free_attr_string( 2093a3351425Sdougm ovalue); 2094549ec3ffSdougm } 2095549ec3ffSdougm } 2096549ec3ffSdougm } 2097549ec3ffSdougm break; 2098549ec3ffSdougm case OPT_TYPE_LOGTAG: 2099549ec3ffSdougm if (nfsl_getconfig_list(&configlist) == 0) { 2100549ec3ffSdougm int error; 2101a3351425Sdougm if (value == NULL || 2102a3351425Sdougm strlen(value) == 0) { 2103549ec3ffSdougm if (value != NULL) 2104a3351425Sdougm sa_free_attr_string( 2105a3351425Sdougm value); 2106549ec3ffSdougm value = strdup("global"); 2107549ec3ffSdougm } 2108a3351425Sdougm if (value != NULL && 2109a3351425Sdougm nfsl_findconfig(configlist, value, 2110a3351425Sdougm &error) == NULL) { 2111549ec3ffSdougm ret = SA_BAD_VALUE; 2112a3351425Sdougm } 2113aed5d200Sdougm /* Must always free when done */ 2114aed5d200Sdougm nfsl_freeconfig_list(&configlist); 2115549ec3ffSdougm } else { 2116549ec3ffSdougm ret = SA_CONFIG_ERR; 2117549ec3ffSdougm } 2118549ec3ffSdougm break; 2119549ec3ffSdougm case OPT_TYPE_STRING: 2120549ec3ffSdougm /* whatever is here should be ok */ 2121549ec3ffSdougm break; 2122549ec3ffSdougm case OPT_TYPE_SECURITY: 2123549ec3ffSdougm /* 2124549ec3ffSdougm * The "sec" property isn't used in the 2125549ec3ffSdougm * non-legacy parts of sharemgr. We need to 2126549ec3ffSdougm * reject it here. For legacy, it is pulled 2127549ec3ffSdougm * out well before we get here. 2128549ec3ffSdougm */ 2129549ec3ffSdougm ret = SA_NO_SUCH_PROP; 2130549ec3ffSdougm break; 2131549ec3ffSdougm default: 2132549ec3ffSdougm break; 2133549ec3ffSdougm } 2134aed5d200Sdougm 2135aed5d200Sdougm if (value != NULL) 2136549ec3ffSdougm sa_free_attr_string(value); 2137aed5d200Sdougm 2138549ec3ffSdougm if (ret == SA_OK && optdefs[optindex].check != NULL) { 2139549ec3ffSdougm /* do the property specific check */ 2140549ec3ffSdougm ret = optdefs[optindex].check(property); 2141549ec3ffSdougm } 2142549ec3ffSdougm } 2143549ec3ffSdougm } 2144549ec3ffSdougm 2145549ec3ffSdougm if (propname != NULL) 2146549ec3ffSdougm sa_free_attr_string(propname); 2147549ec3ffSdougm return (ret); 2148549ec3ffSdougm } 2149549ec3ffSdougm 2150549ec3ffSdougm /* 2151549ec3ffSdougm * Protocol management functions 2152549ec3ffSdougm * 2153549ec3ffSdougm * Properties defined in the default files are defined in 2154549ec3ffSdougm * proto_option_defs for parsing and validation. If "other" and 2155549ec3ffSdougm * "compare" are set, then the value for this property should be 2156549ec3ffSdougm * compared against the property specified in "other" using the 2157549ec3ffSdougm * "compare" check (either <= or >=) in order to ensure that the 2158549ec3ffSdougm * values are in the correct range. E.g. setting server_versmin 2159549ec3ffSdougm * higher than server_versmax should not be allowed. 2160549ec3ffSdougm */ 2161549ec3ffSdougm 2162549ec3ffSdougm struct proto_option_defs { 2163549ec3ffSdougm char *tag; 2164549ec3ffSdougm char *name; /* display name -- remove protocol identifier */ 2165549ec3ffSdougm int index; 2166549ec3ffSdougm int type; 2167549ec3ffSdougm union { 2168549ec3ffSdougm int intval; 2169549ec3ffSdougm char *string; 2170549ec3ffSdougm } defvalue; 2171549ec3ffSdougm uint32_t svcs; 2172549ec3ffSdougm int32_t minval; 2173549ec3ffSdougm int32_t maxval; 2174549ec3ffSdougm char *file; 2175549ec3ffSdougm char *other; 2176549ec3ffSdougm int compare; 2177549ec3ffSdougm #define OPT_CMP_GE 0 2178549ec3ffSdougm #define OPT_CMP_LE 1 2179549ec3ffSdougm int (*check)(char *); 2180549ec3ffSdougm } proto_options[] = { 2181549ec3ffSdougm #define PROTO_OPT_NFSD_SERVERS 0 2182549ec3ffSdougm {"nfsd_servers", 2183549ec3ffSdougm "servers", PROTO_OPT_NFSD_SERVERS, OPT_TYPE_NUMBER, 16, SVC_NFSD, 2184549ec3ffSdougm 1, INT32_MAX, NFSADMIN}, 2185549ec3ffSdougm #define PROTO_OPT_LOCKD_LISTEN_BACKLOG 1 2186549ec3ffSdougm {"lockd_listen_backlog", 2187549ec3ffSdougm "lockd_listen_backlog", PROTO_OPT_LOCKD_LISTEN_BACKLOG, 2188549ec3ffSdougm OPT_TYPE_NUMBER, 32, SVC_LOCKD, 32, INT32_MAX, NFSADMIN}, 2189549ec3ffSdougm #define PROTO_OPT_LOCKD_SERVERS 2 2190549ec3ffSdougm {"lockd_servers", 2191549ec3ffSdougm "lockd_servers", PROTO_OPT_LOCKD_SERVERS, OPT_TYPE_NUMBER, 20, 2192549ec3ffSdougm SVC_LOCKD, 1, INT32_MAX, NFSADMIN}, 2193549ec3ffSdougm #define PROTO_OPT_LOCKD_RETRANSMIT_TIMEOUT 3 2194549ec3ffSdougm {"lockd_retransmit_timeout", 2195549ec3ffSdougm "lockd_retransmit_timeout", PROTO_OPT_LOCKD_RETRANSMIT_TIMEOUT, 2196549ec3ffSdougm OPT_TYPE_NUMBER, 5, SVC_LOCKD, 0, INT32_MAX, NFSADMIN}, 2197549ec3ffSdougm #define PROTO_OPT_GRACE_PERIOD 4 2198549ec3ffSdougm {"grace_period", 2199549ec3ffSdougm "grace_period", PROTO_OPT_GRACE_PERIOD, OPT_TYPE_NUMBER, 90, 2200549ec3ffSdougm SVC_LOCKD, 0, INT32_MAX, NFSADMIN}, 2201549ec3ffSdougm #define PROTO_OPT_NFS_SERVER_VERSMIN 5 2202549ec3ffSdougm {"nfs_server_versmin", 2203549ec3ffSdougm "server_versmin", PROTO_OPT_NFS_SERVER_VERSMIN, OPT_TYPE_NUMBER, 2204549ec3ffSdougm (int)NFS_VERSMIN_DEFAULT, SVC_NFSD|SVC_MOUNTD, NFS_VERSMIN, 2205549ec3ffSdougm NFS_VERSMAX, NFSADMIN, "server_versmax", OPT_CMP_LE}, 2206549ec3ffSdougm #define PROTO_OPT_NFS_SERVER_VERSMAX 6 2207549ec3ffSdougm {"nfs_server_versmax", 2208549ec3ffSdougm "server_versmax", PROTO_OPT_NFS_SERVER_VERSMAX, OPT_TYPE_NUMBER, 2209549ec3ffSdougm (int)NFS_VERSMAX_DEFAULT, SVC_NFSD|SVC_MOUNTD, NFS_VERSMIN, 2210549ec3ffSdougm NFS_VERSMAX, NFSADMIN, "server_versmin", OPT_CMP_GE}, 2211549ec3ffSdougm #define PROTO_OPT_NFS_CLIENT_VERSMIN 7 2212549ec3ffSdougm {"nfs_client_versmin", 2213549ec3ffSdougm "client_versmin", PROTO_OPT_NFS_CLIENT_VERSMIN, OPT_TYPE_NUMBER, 2214549ec3ffSdougm (int)NFS_VERSMIN_DEFAULT, NULL, NFS_VERSMIN, NFS_VERSMAX, 2215549ec3ffSdougm NFSADMIN, "client_versmax", OPT_CMP_LE}, 2216549ec3ffSdougm #define PROTO_OPT_NFS_CLIENT_VERSMAX 8 2217549ec3ffSdougm {"nfs_client_versmax", 2218549ec3ffSdougm "client_versmax", PROTO_OPT_NFS_CLIENT_VERSMAX, OPT_TYPE_NUMBER, 2219549ec3ffSdougm (int)NFS_VERSMAX_DEFAULT, NULL, NFS_VERSMIN, NFS_VERSMAX, 2220549ec3ffSdougm NFSADMIN, "client_versmin", OPT_CMP_GE}, 2221549ec3ffSdougm #define PROTO_OPT_NFS_SERVER_DELEGATION 9 2222549ec3ffSdougm {"nfs_server_delegation", 2223549ec3ffSdougm "server_delegation", PROTO_OPT_NFS_SERVER_DELEGATION, 2224549ec3ffSdougm OPT_TYPE_ONOFF, NFS_SERVER_DELEGATION_DEFAULT, SVC_NFSD, 0, 0, 2225549ec3ffSdougm NFSADMIN}, 2226549ec3ffSdougm #define PROTO_OPT_NFSMAPID_DOMAIN 10 2227549ec3ffSdougm {"nfsmapid_domain", 2228549ec3ffSdougm "nfsmapid_domain", PROTO_OPT_NFSMAPID_DOMAIN, OPT_TYPE_DOMAIN, 2229549ec3ffSdougm NULL, SVC_NFSMAPID, 0, 0, NFSADMIN}, 2230549ec3ffSdougm #define PROTO_OPT_NFSD_MAX_CONNECTIONS 11 2231549ec3ffSdougm {"nfsd_max_connections", 2232549ec3ffSdougm "max_connections", PROTO_OPT_NFSD_MAX_CONNECTIONS, 2233549ec3ffSdougm OPT_TYPE_NUMBER, -1, SVC_NFSD, -1, INT32_MAX, NFSADMIN}, 2234549ec3ffSdougm #define PROTO_OPT_NFSD_PROTOCOL 12 2235549ec3ffSdougm {"nfsd_protocol", 2236549ec3ffSdougm "protocol", PROTO_OPT_NFSD_PROTOCOL, OPT_TYPE_PROTOCOL, 0, 2237549ec3ffSdougm SVC_NFSD, 0, 0, NFSADMIN}, 2238549ec3ffSdougm #define PROTO_OPT_NFSD_LISTEN_BACKLOG 13 2239549ec3ffSdougm {"nfsd_listen_backlog", 2240549ec3ffSdougm "listen_backlog", PROTO_OPT_NFSD_LISTEN_BACKLOG, 2241549ec3ffSdougm OPT_TYPE_NUMBER, 0, 2242549ec3ffSdougm SVC_LOCKD, 0, INT32_MAX, NFSADMIN}, 2243549ec3ffSdougm {NULL} 2244549ec3ffSdougm }; 2245549ec3ffSdougm 2246549ec3ffSdougm /* 2247549ec3ffSdougm * the protoset holds the defined options so we don't have to read 2248549ec3ffSdougm * them multiple times 2249549ec3ffSdougm */ 2250aed5d200Sdougm static sa_protocol_properties_t protoset; 2251549ec3ffSdougm 2252549ec3ffSdougm static int 2253549ec3ffSdougm findprotoopt(char *name, int whichname) 2254549ec3ffSdougm { 2255549ec3ffSdougm int i; 2256549ec3ffSdougm for (i = 0; proto_options[i].tag != NULL; i++) { 2257549ec3ffSdougm if (whichname == 1) { 2258549ec3ffSdougm if (strcasecmp(proto_options[i].name, name) == 0) 2259549ec3ffSdougm return (i); 2260549ec3ffSdougm } else { 2261549ec3ffSdougm if (strcasecmp(proto_options[i].tag, name) == 0) 2262549ec3ffSdougm return (i); 2263549ec3ffSdougm } 2264549ec3ffSdougm } 2265549ec3ffSdougm return (-1); 2266549ec3ffSdougm } 2267549ec3ffSdougm 2268549ec3ffSdougm /* 2269549ec3ffSdougm * fixcaselower(str) 2270549ec3ffSdougm * 2271549ec3ffSdougm * convert a string to lower case (inplace). 2272549ec3ffSdougm */ 2273549ec3ffSdougm 2274549ec3ffSdougm static void 2275549ec3ffSdougm fixcaselower(char *str) 2276549ec3ffSdougm { 2277549ec3ffSdougm while (*str) { 2278549ec3ffSdougm *str = tolower(*str); 2279549ec3ffSdougm str++; 2280549ec3ffSdougm } 2281549ec3ffSdougm } 2282549ec3ffSdougm 2283549ec3ffSdougm /* 2284549ec3ffSdougm * fixcaseupper(str) 2285549ec3ffSdougm * 2286549ec3ffSdougm * convert a string to upper case (inplace). 2287549ec3ffSdougm */ 2288549ec3ffSdougm 2289549ec3ffSdougm static void 2290549ec3ffSdougm fixcaseupper(char *str) 2291549ec3ffSdougm { 2292549ec3ffSdougm while (*str) { 2293549ec3ffSdougm *str = toupper(*str); 2294549ec3ffSdougm str++; 2295549ec3ffSdougm } 2296549ec3ffSdougm } 2297549ec3ffSdougm 2298549ec3ffSdougm /* 2299330ef417Sdougm * skipwhitespace(str) 2300330ef417Sdougm * 2301330ef417Sdougm * Skip leading white space. It is assumed that it is called with a 2302330ef417Sdougm * valid pointer. 2303330ef417Sdougm */ 2304330ef417Sdougm 2305330ef417Sdougm static char * 2306330ef417Sdougm skipwhitespace(char *str) 2307330ef417Sdougm { 2308330ef417Sdougm while (*str && isspace(*str)) 2309330ef417Sdougm str++; 2310330ef417Sdougm 2311330ef417Sdougm return (str); 2312330ef417Sdougm } 2313330ef417Sdougm 2314330ef417Sdougm /* 2315a3351425Sdougm * extractprop() 2316a3351425Sdougm * 2317a3351425Sdougm * Extract the property and value out of the line and create the 2318a3351425Sdougm * property in the optionset. 2319a3351425Sdougm */ 2320*e7bab347Sdougm static int 2321a3351425Sdougm extractprop(char *name, char *value) 2322a3351425Sdougm { 2323a3351425Sdougm sa_property_t prop; 2324a3351425Sdougm int index; 2325*e7bab347Sdougm int ret = SA_OK; 2326a3351425Sdougm /* 2327a3351425Sdougm * Remove any leading 2328a3351425Sdougm * white space. 2329a3351425Sdougm */ 2330a3351425Sdougm name = skipwhitespace(name); 2331a3351425Sdougm 2332a3351425Sdougm index = findprotoopt(name, 0); 2333a3351425Sdougm if (index >= 0) { 2334a3351425Sdougm fixcaselower(name); 2335a3351425Sdougm prop = sa_create_property(proto_options[index].name, value); 2336a3351425Sdougm if (prop != NULL) 2337*e7bab347Sdougm ret = sa_add_protocol_property(protoset, prop); 2338*e7bab347Sdougm else 2339*e7bab347Sdougm ret = SA_NO_MEMORY; 2340a3351425Sdougm } 2341*e7bab347Sdougm return (ret); 2342a3351425Sdougm } 2343a3351425Sdougm 2344a3351425Sdougm /* 2345549ec3ffSdougm * initprotofromdefault() 2346549ec3ffSdougm * 2347549ec3ffSdougm * read the default file(s) and add the defined values to the 2348549ec3ffSdougm * protoset. Note that default values are known from the built in 2349549ec3ffSdougm * table in case the file doesn't have a definition. 2350549ec3ffSdougm */ 2351549ec3ffSdougm 2352549ec3ffSdougm static int 2353549ec3ffSdougm initprotofromdefault() 2354549ec3ffSdougm { 2355549ec3ffSdougm FILE *nfs; 2356549ec3ffSdougm char buff[BUFSIZ]; 2357549ec3ffSdougm char *name; 2358549ec3ffSdougm char *value; 2359*e7bab347Sdougm int ret = SA_OK; 2360549ec3ffSdougm 2361549ec3ffSdougm protoset = sa_create_protocol_properties("nfs"); 2362549ec3ffSdougm 2363549ec3ffSdougm if (protoset != NULL) { 2364549ec3ffSdougm nfs = fopen(NFSADMIN, "r"); 2365549ec3ffSdougm if (nfs != NULL) { 2366*e7bab347Sdougm while (ret == SA_OK && 2367*e7bab347Sdougm fgets(buff, sizeof (buff), nfs) != NULL) { 2368549ec3ffSdougm switch (buff[0]) { 2369549ec3ffSdougm case '\n': 2370549ec3ffSdougm case '#': 2371549ec3ffSdougm /* skip */ 2372549ec3ffSdougm break; 2373549ec3ffSdougm default: 2374549ec3ffSdougm name = buff; 2375549ec3ffSdougm buff[strlen(buff) - 1] = '\0'; 2376549ec3ffSdougm value = strchr(name, '='); 2377549ec3ffSdougm if (value != NULL) { 2378549ec3ffSdougm *value++ = '\0'; 2379*e7bab347Sdougm ret = extractprop(name, value); 2380549ec3ffSdougm } 2381549ec3ffSdougm } 2382549ec3ffSdougm } 2383549ec3ffSdougm (void) fclose(nfs); 2384*e7bab347Sdougm } else { 2385*e7bab347Sdougm (void) printf(gettext("Problem with file: %s\n"), 2386*e7bab347Sdougm NFSADMIN); 2387*e7bab347Sdougm ret = SA_SYSTEM_ERR; 2388549ec3ffSdougm } 2389*e7bab347Sdougm } else { 2390*e7bab347Sdougm ret = SA_NO_MEMORY; 2391549ec3ffSdougm } 2392*e7bab347Sdougm return (ret); 2393549ec3ffSdougm } 2394549ec3ffSdougm 2395549ec3ffSdougm /* 2396a3351425Sdougm * add_defaults() 2397549ec3ffSdougm * 2398549ec3ffSdougm * Add the default values for any property not defined in the parsing 2399549ec3ffSdougm * of the default files. Values are set according to their defined 2400549ec3ffSdougm * types. 2401549ec3ffSdougm */ 2402549ec3ffSdougm 2403549ec3ffSdougm static void 2404549ec3ffSdougm add_defaults() 2405549ec3ffSdougm { 2406549ec3ffSdougm int i; 2407549ec3ffSdougm char number[MAXDIGITS]; 2408549ec3ffSdougm 2409549ec3ffSdougm for (i = 0; proto_options[i].tag != NULL; i++) { 2410549ec3ffSdougm sa_property_t prop; 2411a3351425Sdougm prop = sa_get_protocol_property(protoset, 2412a3351425Sdougm proto_options[i].name); 2413549ec3ffSdougm if (prop == NULL) { 2414549ec3ffSdougm /* add the default value */ 2415549ec3ffSdougm switch (proto_options[i].type) { 2416549ec3ffSdougm case OPT_TYPE_NUMBER: 2417549ec3ffSdougm (void) snprintf(number, sizeof (number), "%d", 2418549ec3ffSdougm proto_options[i].defvalue.intval); 2419a3351425Sdougm prop = sa_create_property(proto_options[i].name, 2420a3351425Sdougm number); 2421549ec3ffSdougm break; 2422549ec3ffSdougm 2423549ec3ffSdougm case OPT_TYPE_BOOLEAN: 2424549ec3ffSdougm prop = sa_create_property(proto_options[i].name, 2425549ec3ffSdougm proto_options[i].defvalue.intval ? 2426549ec3ffSdougm "true" : "false"); 2427549ec3ffSdougm break; 2428549ec3ffSdougm 2429549ec3ffSdougm case OPT_TYPE_ONOFF: 2430549ec3ffSdougm prop = sa_create_property(proto_options[i].name, 2431549ec3ffSdougm proto_options[i].defvalue.intval ? 2432549ec3ffSdougm "on" : "off"); 2433549ec3ffSdougm break; 2434549ec3ffSdougm 2435549ec3ffSdougm default: 2436549ec3ffSdougm /* treat as strings of zero length */ 2437a3351425Sdougm prop = sa_create_property(proto_options[i].name, 2438a3351425Sdougm ""); 2439549ec3ffSdougm break; 2440549ec3ffSdougm } 2441549ec3ffSdougm if (prop != NULL) 2442549ec3ffSdougm (void) sa_add_protocol_property(protoset, prop); 2443549ec3ffSdougm } 2444549ec3ffSdougm } 2445549ec3ffSdougm } 2446549ec3ffSdougm 2447549ec3ffSdougm static void 2448549ec3ffSdougm free_protoprops() 2449549ec3ffSdougm { 2450aed5d200Sdougm if (protoset != NULL) { 2451549ec3ffSdougm xmlFreeNode(protoset); 2452aed5d200Sdougm protoset = NULL; 2453aed5d200Sdougm } 2454549ec3ffSdougm } 2455549ec3ffSdougm 2456549ec3ffSdougm /* 2457549ec3ffSdougm * nfs_init() 2458549ec3ffSdougm * 2459549ec3ffSdougm * Initialize the NFS plugin. 2460549ec3ffSdougm */ 2461549ec3ffSdougm 2462549ec3ffSdougm static int 2463549ec3ffSdougm nfs_init() 2464549ec3ffSdougm { 2465549ec3ffSdougm int ret = SA_OK; 2466549ec3ffSdougm 2467549ec3ffSdougm if (sa_plugin_ops.sa_init != nfs_init) 2468549ec3ffSdougm (void) printf(dgettext(TEXT_DOMAIN, 2469549ec3ffSdougm "NFS plugin not properly initialized\n")); 2470549ec3ffSdougm 2471549ec3ffSdougm ret = initprotofromdefault(); 2472a3351425Sdougm if (ret == SA_OK) 2473549ec3ffSdougm add_defaults(); 2474549ec3ffSdougm 2475549ec3ffSdougm return (ret); 2476549ec3ffSdougm } 2477549ec3ffSdougm 2478549ec3ffSdougm /* 2479549ec3ffSdougm * nfs_fini() 2480549ec3ffSdougm * 2481549ec3ffSdougm * uninitialize the NFS plugin. Want to avoid memory leaks. 2482549ec3ffSdougm */ 2483549ec3ffSdougm 2484549ec3ffSdougm static void 2485549ec3ffSdougm nfs_fini() 2486549ec3ffSdougm { 2487549ec3ffSdougm free_protoprops(); 2488549ec3ffSdougm } 2489549ec3ffSdougm 2490549ec3ffSdougm /* 2491549ec3ffSdougm * nfs_get_proto_set() 2492549ec3ffSdougm * 2493549ec3ffSdougm * Return an optionset with all the protocol specific properties in 2494549ec3ffSdougm * it. 2495549ec3ffSdougm */ 2496549ec3ffSdougm 2497549ec3ffSdougm static sa_protocol_properties_t 2498549ec3ffSdougm nfs_get_proto_set() 2499549ec3ffSdougm { 2500549ec3ffSdougm return (protoset); 2501549ec3ffSdougm } 2502549ec3ffSdougm 2503549ec3ffSdougm struct deffile { 2504549ec3ffSdougm struct deffile *next; 2505549ec3ffSdougm char *line; 2506549ec3ffSdougm }; 2507549ec3ffSdougm 2508549ec3ffSdougm /* 2509549ec3ffSdougm * read_default_file(fname) 2510549ec3ffSdougm * 2511549ec3ffSdougm * Read the specified default file. We return a list of entries. This 2512549ec3ffSdougm * get used for adding or removing values. 2513549ec3ffSdougm */ 2514549ec3ffSdougm 2515549ec3ffSdougm static struct deffile * 2516549ec3ffSdougm read_default_file(char *fname) 2517549ec3ffSdougm { 2518549ec3ffSdougm FILE *file; 2519549ec3ffSdougm struct deffile *defs = NULL; 2520549ec3ffSdougm struct deffile *newdef; 2521549ec3ffSdougm struct deffile *prevdef = NULL; 2522549ec3ffSdougm char buff[BUFSIZ * 2]; 2523549ec3ffSdougm 2524549ec3ffSdougm file = fopen(fname, "r"); 2525549ec3ffSdougm if (file != NULL) { 2526549ec3ffSdougm while (fgets(buff, sizeof (buff), file) != NULL) { 2527a3351425Sdougm newdef = (struct deffile *)calloc(1, 2528a3351425Sdougm sizeof (struct deffile)); 2529549ec3ffSdougm if (newdef != NULL) { 2530330ef417Sdougm /* Make sure we skip any leading whitespace. */ 2531330ef417Sdougm newdef->line = strdup(skipwhitespace(buff)); 2532549ec3ffSdougm if (defs == NULL) { 2533549ec3ffSdougm prevdef = defs = newdef; 2534549ec3ffSdougm } else { 2535549ec3ffSdougm prevdef->next = newdef; 2536549ec3ffSdougm prevdef = newdef; 2537549ec3ffSdougm } 2538549ec3ffSdougm } 2539549ec3ffSdougm } 2540549ec3ffSdougm } 2541549ec3ffSdougm (void) fclose(file); 2542549ec3ffSdougm return (defs); 2543549ec3ffSdougm } 2544549ec3ffSdougm 2545549ec3ffSdougm static void 2546549ec3ffSdougm free_default_file(struct deffile *defs) 2547549ec3ffSdougm { 2548549ec3ffSdougm struct deffile *curdefs = NULL; 2549549ec3ffSdougm 2550549ec3ffSdougm while (defs != NULL) { 2551549ec3ffSdougm curdefs = defs; 2552549ec3ffSdougm defs = defs->next; 2553549ec3ffSdougm if (curdefs->line != NULL) 2554549ec3ffSdougm free(curdefs->line); 2555549ec3ffSdougm free(curdefs); 2556549ec3ffSdougm } 2557549ec3ffSdougm } 2558549ec3ffSdougm 2559549ec3ffSdougm /* 2560549ec3ffSdougm * write_default_file(fname, defs) 2561549ec3ffSdougm * 2562549ec3ffSdougm * Write the default file back. 2563549ec3ffSdougm */ 2564549ec3ffSdougm 2565549ec3ffSdougm static int 2566549ec3ffSdougm write_default_file(char *fname, struct deffile *defs) 2567549ec3ffSdougm { 2568549ec3ffSdougm FILE *file; 2569549ec3ffSdougm int ret = SA_OK; 2570549ec3ffSdougm sigset_t old, new; 2571549ec3ffSdougm 2572549ec3ffSdougm file = fopen(fname, "w+"); 2573549ec3ffSdougm if (file != NULL) { 2574549ec3ffSdougm (void) sigprocmask(SIG_BLOCK, NULL, &new); 2575549ec3ffSdougm (void) sigaddset(&new, SIGHUP); 2576549ec3ffSdougm (void) sigaddset(&new, SIGINT); 2577549ec3ffSdougm (void) sigaddset(&new, SIGQUIT); 2578549ec3ffSdougm (void) sigaddset(&new, SIGTSTP); 2579549ec3ffSdougm (void) sigprocmask(SIG_SETMASK, &new, &old); 2580549ec3ffSdougm while (defs != NULL) { 2581549ec3ffSdougm (void) fputs(defs->line, file); 2582549ec3ffSdougm defs = defs->next; 2583549ec3ffSdougm } 2584549ec3ffSdougm (void) fsync(fileno(file)); 2585549ec3ffSdougm (void) sigprocmask(SIG_SETMASK, &old, NULL); 2586549ec3ffSdougm (void) fclose(file); 2587549ec3ffSdougm } else { 2588549ec3ffSdougm switch (errno) { 2589549ec3ffSdougm case EPERM: 2590549ec3ffSdougm case EACCES: 2591549ec3ffSdougm ret = SA_NO_PERMISSION; 2592549ec3ffSdougm break; 2593549ec3ffSdougm default: 2594549ec3ffSdougm ret = SA_SYSTEM_ERR; 2595549ec3ffSdougm } 2596549ec3ffSdougm } 2597549ec3ffSdougm return (ret); 2598549ec3ffSdougm } 2599549ec3ffSdougm 2600549ec3ffSdougm 2601549ec3ffSdougm /* 2602549ec3ffSdougm * set_default_file_value(tag, value) 2603549ec3ffSdougm * 2604549ec3ffSdougm * Set the default file value for tag to value. Then rewrite the file. 2605549ec3ffSdougm * tag and value are always set. The caller must ensure this. 2606549ec3ffSdougm */ 2607549ec3ffSdougm 2608549ec3ffSdougm #define MAX_STRING_LENGTH 256 2609549ec3ffSdougm static int 2610549ec3ffSdougm set_default_file_value(char *tag, char *value) 2611549ec3ffSdougm { 2612549ec3ffSdougm int ret = SA_OK; 2613549ec3ffSdougm struct deffile *root; 2614549ec3ffSdougm struct deffile *defs; 2615549ec3ffSdougm struct deffile *prev; 2616549ec3ffSdougm char string[MAX_STRING_LENGTH]; 2617549ec3ffSdougm int len; 2618549ec3ffSdougm int update = 0; 2619549ec3ffSdougm 2620549ec3ffSdougm (void) snprintf(string, MAX_STRING_LENGTH, "%s=", tag); 2621549ec3ffSdougm len = strlen(string); 2622549ec3ffSdougm 2623549ec3ffSdougm root = defs = read_default_file(NFSADMIN); 2624549ec3ffSdougm if (root == NULL) { 2625549ec3ffSdougm if (errno == EPERM || errno == EACCES) 2626549ec3ffSdougm ret = SA_NO_PERMISSION; 2627549ec3ffSdougm else 2628549ec3ffSdougm ret = SA_SYSTEM_ERR; 2629549ec3ffSdougm } else { 2630549ec3ffSdougm while (defs != NULL) { 2631549ec3ffSdougm if (defs->line != NULL && 2632549ec3ffSdougm strncasecmp(defs->line, string, len) == 0) { 2633549ec3ffSdougm /* replace with the new value */ 2634549ec3ffSdougm free(defs->line); 2635549ec3ffSdougm fixcaseupper(tag); 2636a3351425Sdougm (void) snprintf(string, sizeof (string), 2637a3351425Sdougm "%s=%s\n", tag, value); 2638549ec3ffSdougm string[MAX_STRING_LENGTH - 1] = '\0'; 2639549ec3ffSdougm defs->line = strdup(string); 2640549ec3ffSdougm update = 1; 2641549ec3ffSdougm break; 2642549ec3ffSdougm } 2643549ec3ffSdougm defs = defs->next; 2644549ec3ffSdougm } 2645549ec3ffSdougm if (!update) { 2646549ec3ffSdougm defs = root; 2647549ec3ffSdougm /* didn't find, so see if it is a comment */ 2648549ec3ffSdougm (void) snprintf(string, MAX_STRING_LENGTH, "#%s=", tag); 2649549ec3ffSdougm len = strlen(string); 2650549ec3ffSdougm while (defs != NULL) { 2651549ec3ffSdougm if (strncasecmp(defs->line, string, len) == 0) { 2652549ec3ffSdougm /* replace with the new value */ 2653549ec3ffSdougm free(defs->line); 2654549ec3ffSdougm fixcaseupper(tag); 2655549ec3ffSdougm (void) snprintf(string, sizeof (string), 2656549ec3ffSdougm "%s=%s\n", tag, value); 2657549ec3ffSdougm string[MAX_STRING_LENGTH - 1] = '\0'; 2658549ec3ffSdougm defs->line = strdup(string); 2659549ec3ffSdougm update = 1; 2660549ec3ffSdougm break; 2661549ec3ffSdougm } 2662549ec3ffSdougm defs = defs->next; 2663549ec3ffSdougm } 2664549ec3ffSdougm } 2665549ec3ffSdougm if (!update) { 2666549ec3ffSdougm fixcaseupper(tag); 2667549ec3ffSdougm (void) snprintf(string, sizeof (string), "%s=%s\n", 2668549ec3ffSdougm tag, value); 2669549ec3ffSdougm prev = root; 2670549ec3ffSdougm while (prev->next != NULL) 2671549ec3ffSdougm prev = prev->next; 2672549ec3ffSdougm defs = malloc(sizeof (struct deffile)); 2673549ec3ffSdougm prev->next = defs; 2674549ec3ffSdougm if (defs != NULL) { 2675549ec3ffSdougm defs->next = NULL; 2676549ec3ffSdougm defs->line = strdup(string); 2677549ec3ffSdougm } 2678549ec3ffSdougm } 2679549ec3ffSdougm if (update) { 2680549ec3ffSdougm ret = write_default_file(NFSADMIN, root); 2681549ec3ffSdougm } 2682549ec3ffSdougm free_default_file(root); 2683549ec3ffSdougm } 2684549ec3ffSdougm return (ret); 2685549ec3ffSdougm } 2686549ec3ffSdougm 2687549ec3ffSdougm /* 2688549ec3ffSdougm * service_in_state(service, chkstate) 2689549ec3ffSdougm * 2690549ec3ffSdougm * Want to know if the specified service is in the desired state 2691549ec3ffSdougm * (chkstate) or not. Return true (1) if it is and false (0) if it 2692549ec3ffSdougm * isn't. 2693549ec3ffSdougm */ 2694549ec3ffSdougm static int 2695549ec3ffSdougm service_in_state(char *service, const char *chkstate) 2696549ec3ffSdougm { 2697549ec3ffSdougm char *state; 2698549ec3ffSdougm int ret = B_FALSE; 2699549ec3ffSdougm 2700549ec3ffSdougm state = smf_get_state(service); 2701549ec3ffSdougm if (state != NULL) { 2702549ec3ffSdougm /* got the state so get the equality for the return value */ 2703549ec3ffSdougm ret = strcmp(state, chkstate) == 0 ? B_TRUE : B_FALSE; 2704549ec3ffSdougm free(state); 2705549ec3ffSdougm } 2706549ec3ffSdougm return (ret); 2707549ec3ffSdougm } 2708549ec3ffSdougm 2709549ec3ffSdougm /* 2710549ec3ffSdougm * restart_service(svcs) 2711549ec3ffSdougm * 2712549ec3ffSdougm * Walk through the bit mask of services that need to be restarted in 2713549ec3ffSdougm * order to use the new property values. Some properties affect 2714549ec3ffSdougm * multiple daemons. Should only restart a service if it is currently 2715549ec3ffSdougm * enabled (online). 2716549ec3ffSdougm */ 2717549ec3ffSdougm 2718549ec3ffSdougm static void 2719549ec3ffSdougm restart_service(uint32_t svcs) 2720549ec3ffSdougm { 2721549ec3ffSdougm uint32_t mask; 2722549ec3ffSdougm int ret; 2723549ec3ffSdougm char *service; 2724549ec3ffSdougm 2725549ec3ffSdougm for (mask = 1; svcs != 0; mask <<= 1) { 2726549ec3ffSdougm switch (svcs & mask) { 2727549ec3ffSdougm case SVC_LOCKD: 2728549ec3ffSdougm service = LOCKD; 2729549ec3ffSdougm break; 2730549ec3ffSdougm case SVC_STATD: 2731549ec3ffSdougm service = STATD; 2732549ec3ffSdougm break; 2733549ec3ffSdougm case SVC_NFSD: 2734549ec3ffSdougm service = NFSD; 2735549ec3ffSdougm break; 2736549ec3ffSdougm case SVC_MOUNTD: 2737549ec3ffSdougm service = MOUNTD; 2738549ec3ffSdougm break; 2739549ec3ffSdougm case SVC_NFS4CBD: 2740549ec3ffSdougm service = NFS4CBD; 2741549ec3ffSdougm break; 2742549ec3ffSdougm case SVC_NFSMAPID: 2743549ec3ffSdougm service = NFSMAPID; 2744549ec3ffSdougm break; 2745549ec3ffSdougm case SVC_RQUOTAD: 2746549ec3ffSdougm service = RQUOTAD; 2747549ec3ffSdougm break; 2748549ec3ffSdougm case SVC_NFSLOGD: 2749549ec3ffSdougm service = NFSLOGD; 2750549ec3ffSdougm break; 2751549ec3ffSdougm default: 2752549ec3ffSdougm continue; 2753549ec3ffSdougm } 2754549ec3ffSdougm 2755549ec3ffSdougm /* 2756549ec3ffSdougm * Only attempt to restart the service if it is 2757549ec3ffSdougm * currently running. In the future, it may be 2758549ec3ffSdougm * desirable to use smf_refresh_instance if the NFS 2759549ec3ffSdougm * services ever implement the refresh method. 2760549ec3ffSdougm */ 2761549ec3ffSdougm if (service_in_state(service, SCF_STATE_STRING_ONLINE)) { 2762549ec3ffSdougm ret = smf_restart_instance(service); 2763549ec3ffSdougm /* 2764549ec3ffSdougm * There are only a few SMF errors at this point, but 2765549ec3ffSdougm * it is also possible that a bad value may have put 2766549ec3ffSdougm * the service into maintenance if there wasn't an 2767549ec3ffSdougm * SMF level error. 2768549ec3ffSdougm */ 2769549ec3ffSdougm if (ret != 0) { 2770549ec3ffSdougm (void) fprintf(stderr, 2771549ec3ffSdougm dgettext(TEXT_DOMAIN, 2772549ec3ffSdougm "%s failed to restart: %s\n"), 2773549ec3ffSdougm scf_strerror(scf_error())); 2774549ec3ffSdougm } else { 2775549ec3ffSdougm /* 2776549ec3ffSdougm * Check whether it has gone to "maintenance" 2777549ec3ffSdougm * mode or not. Maintenance implies something 2778549ec3ffSdougm * went wrong. 2779549ec3ffSdougm */ 2780a3351425Sdougm if (service_in_state(service, 2781a3351425Sdougm SCF_STATE_STRING_MAINT)) { 2782549ec3ffSdougm (void) fprintf(stderr, 2783549ec3ffSdougm dgettext(TEXT_DOMAIN, 2784549ec3ffSdougm "%s failed to restart\n"), 2785549ec3ffSdougm service); 2786549ec3ffSdougm } 2787549ec3ffSdougm } 2788549ec3ffSdougm } 2789549ec3ffSdougm svcs &= ~mask; 2790549ec3ffSdougm } 2791549ec3ffSdougm } 2792549ec3ffSdougm 2793549ec3ffSdougm /* 2794549ec3ffSdougm * nfs_minmax_check(name, value) 2795549ec3ffSdougm * 2796549ec3ffSdougm * Verify that the value for the property specified by index is valid 2797549ec3ffSdougm * relative to the opposite value in the case of a min/max variable. 2798549ec3ffSdougm * Currently, server_minvers/server_maxvers and 2799549ec3ffSdougm * client_minvers/client_maxvers are the only ones to check. 2800549ec3ffSdougm */ 2801549ec3ffSdougm 2802549ec3ffSdougm static int 2803549ec3ffSdougm nfs_minmax_check(int index, int value) 2804549ec3ffSdougm { 2805549ec3ffSdougm int val; 2806549ec3ffSdougm char *pval; 2807549ec3ffSdougm sa_property_t prop; 2808549ec3ffSdougm sa_optionset_t opts; 2809549ec3ffSdougm int ret = B_TRUE; 2810549ec3ffSdougm 2811549ec3ffSdougm if (proto_options[index].other != NULL) { 2812549ec3ffSdougm /* have a property to compare against */ 2813549ec3ffSdougm opts = nfs_get_proto_set(); 2814549ec3ffSdougm prop = sa_get_property(opts, proto_options[index].other); 2815549ec3ffSdougm /* 2816549ec3ffSdougm * If we don't find the property, assume default 2817549ec3ffSdougm * values which will work since the max will be at the 2818549ec3ffSdougm * max and the min at the min. 2819549ec3ffSdougm */ 2820549ec3ffSdougm if (prop != NULL) { 2821549ec3ffSdougm pval = sa_get_property_attr(prop, "value"); 2822549ec3ffSdougm if (pval != NULL) { 2823549ec3ffSdougm val = strtoul(pval, NULL, 0); 2824a3351425Sdougm if (proto_options[index].compare == 2825a3351425Sdougm OPT_CMP_LE) { 2826549ec3ffSdougm ret = value <= val ? B_TRUE : B_FALSE; 2827a3351425Sdougm } else if (proto_options[index].compare == 2828a3351425Sdougm OPT_CMP_GE) { 2829549ec3ffSdougm ret = value >= val ? B_TRUE : B_FALSE; 2830549ec3ffSdougm } 2831549ec3ffSdougm } 2832549ec3ffSdougm } 2833549ec3ffSdougm } 2834549ec3ffSdougm return (ret); 2835549ec3ffSdougm } 2836549ec3ffSdougm 2837549ec3ffSdougm /* 2838549ec3ffSdougm * nfs_validate_proto_prop(index, name, value) 2839549ec3ffSdougm * 2840da6c28aaSamw * Verify that the property specified by name can take the new 2841549ec3ffSdougm * value. This is a sanity check to prevent bad values getting into 2842549ec3ffSdougm * the default files. All values need to be checked against what is 2843549ec3ffSdougm * allowed by their defined type. If a type isn't explicitly defined 2844549ec3ffSdougm * here, it is treated as a string. 2845549ec3ffSdougm * 2846549ec3ffSdougm * Note that OPT_TYPE_NUMBER will additionally check that the value is 2847549ec3ffSdougm * within the range specified and potentially against another property 2848549ec3ffSdougm * value as well as specified in the proto_options members other and 2849549ec3ffSdougm * compare. 2850549ec3ffSdougm */ 2851549ec3ffSdougm 2852549ec3ffSdougm static int 2853549ec3ffSdougm nfs_validate_proto_prop(int index, char *name, char *value) 2854549ec3ffSdougm { 2855549ec3ffSdougm int ret = SA_OK; 2856549ec3ffSdougm char *cp; 2857549ec3ffSdougm #ifdef lint 2858549ec3ffSdougm name = name; 2859549ec3ffSdougm #endif 2860549ec3ffSdougm 2861549ec3ffSdougm switch (proto_options[index].type) { 2862549ec3ffSdougm case OPT_TYPE_NUMBER: 2863549ec3ffSdougm if (!is_a_number(value)) 2864549ec3ffSdougm ret = SA_BAD_VALUE; 2865549ec3ffSdougm else { 2866549ec3ffSdougm int val; 2867549ec3ffSdougm val = strtoul(value, NULL, 0); 2868549ec3ffSdougm if (val < proto_options[index].minval || 2869549ec3ffSdougm val > proto_options[index].maxval) 2870549ec3ffSdougm ret = SA_BAD_VALUE; 2871549ec3ffSdougm /* 2872549ec3ffSdougm * For server_versmin/server_versmax and 2873549ec3ffSdougm * client_versmin/client_versmax, the value of the 2874549ec3ffSdougm * min(max) should be checked to be correct relative 2875549ec3ffSdougm * to the current max(min). 2876549ec3ffSdougm */ 2877549ec3ffSdougm if (!nfs_minmax_check(index, val)) { 2878549ec3ffSdougm ret = SA_BAD_VALUE; 2879549ec3ffSdougm } 2880549ec3ffSdougm } 2881549ec3ffSdougm break; 2882549ec3ffSdougm 2883549ec3ffSdougm case OPT_TYPE_DOMAIN: 2884549ec3ffSdougm /* 2885549ec3ffSdougm * needs to be a qualified domain so will have at 2886549ec3ffSdougm * least one period and other characters on either 2887549ec3ffSdougm * side of it. A zero length string is also allowed 2888549ec3ffSdougm * and is the way to turn off the override. 2889549ec3ffSdougm */ 2890549ec3ffSdougm if (strlen(value) == 0) 2891549ec3ffSdougm break; 2892549ec3ffSdougm cp = strchr(value, '.'); 2893549ec3ffSdougm if (cp == NULL || cp == value || strchr(value, '@') != NULL) 2894549ec3ffSdougm ret = SA_BAD_VALUE; 2895549ec3ffSdougm break; 2896549ec3ffSdougm 2897549ec3ffSdougm case OPT_TYPE_BOOLEAN: 2898549ec3ffSdougm if (strlen(value) == 0 || 2899549ec3ffSdougm strcasecmp(value, "true") == 0 || 2900549ec3ffSdougm strcmp(value, "1") == 0 || 2901549ec3ffSdougm strcasecmp(value, "false") == 0 || 2902549ec3ffSdougm strcmp(value, "0") == 0) { 2903549ec3ffSdougm ret = SA_OK; 2904549ec3ffSdougm } else { 2905549ec3ffSdougm ret = SA_BAD_VALUE; 2906549ec3ffSdougm } 2907549ec3ffSdougm break; 2908549ec3ffSdougm 2909549ec3ffSdougm case OPT_TYPE_ONOFF: 2910549ec3ffSdougm if (strcasecmp(value, "on") != 0 && 2911549ec3ffSdougm strcasecmp(value, "off") != 0) { 2912549ec3ffSdougm ret = SA_BAD_VALUE; 2913549ec3ffSdougm } 2914549ec3ffSdougm break; 2915549ec3ffSdougm 2916549ec3ffSdougm case OPT_TYPE_PROTOCOL: 2917549ec3ffSdougm if (strcasecmp(value, "all") != 0 && 2918549ec3ffSdougm strcasecmp(value, "tcp") != 0 && 2919549ec3ffSdougm strcasecmp(value, "udp") != 0) 2920549ec3ffSdougm ret = SA_BAD_VALUE; 2921549ec3ffSdougm break; 2922549ec3ffSdougm 2923549ec3ffSdougm default: 2924549ec3ffSdougm /* treat as a string */ 2925549ec3ffSdougm break; 2926549ec3ffSdougm } 2927549ec3ffSdougm return (ret); 2928549ec3ffSdougm } 2929549ec3ffSdougm 2930549ec3ffSdougm /* 2931549ec3ffSdougm * nfs_set_proto_prop(prop) 2932549ec3ffSdougm * 2933549ec3ffSdougm * check that prop is valid. 2934549ec3ffSdougm */ 2935549ec3ffSdougm 2936549ec3ffSdougm static int 2937549ec3ffSdougm nfs_set_proto_prop(sa_property_t prop) 2938549ec3ffSdougm { 2939549ec3ffSdougm int ret = SA_OK; 2940549ec3ffSdougm char *name; 2941549ec3ffSdougm char *value; 2942549ec3ffSdougm 2943549ec3ffSdougm name = sa_get_property_attr(prop, "type"); 2944549ec3ffSdougm value = sa_get_property_attr(prop, "value"); 2945549ec3ffSdougm if (name != NULL && value != NULL) { 2946549ec3ffSdougm int index = findprotoopt(name, 1); 2947549ec3ffSdougm if (index >= 0) { 2948549ec3ffSdougm /* should test for valid value */ 2949549ec3ffSdougm ret = nfs_validate_proto_prop(index, name, value); 2950549ec3ffSdougm if (ret == SA_OK) 2951a3351425Sdougm ret = set_default_file_value( 2952a3351425Sdougm proto_options[index].tag, value); 2953549ec3ffSdougm if (ret == SA_OK) 2954549ec3ffSdougm restart_service(proto_options[index].svcs); 2955549ec3ffSdougm } 2956549ec3ffSdougm } 2957549ec3ffSdougm if (name != NULL) 2958549ec3ffSdougm sa_free_attr_string(name); 2959549ec3ffSdougm if (value != NULL) 2960549ec3ffSdougm sa_free_attr_string(value); 2961549ec3ffSdougm return (ret); 2962549ec3ffSdougm } 2963549ec3ffSdougm 2964549ec3ffSdougm /* 2965549ec3ffSdougm * nfs_get_status() 2966549ec3ffSdougm * 2967549ec3ffSdougm * What is the current status of the nfsd? We use the SMF state here. 2968549ec3ffSdougm * Caller must free the returned value. 2969549ec3ffSdougm */ 2970549ec3ffSdougm 2971549ec3ffSdougm static char * 2972549ec3ffSdougm nfs_get_status() 2973549ec3ffSdougm { 2974549ec3ffSdougm char *state; 2975549ec3ffSdougm state = smf_get_state(NFSD); 2976549ec3ffSdougm return (state != NULL ? state : strdup("-")); 2977549ec3ffSdougm } 2978549ec3ffSdougm 2979549ec3ffSdougm /* 2980549ec3ffSdougm * nfs_space_alias(alias) 2981549ec3ffSdougm * 2982549ec3ffSdougm * Lookup the space (security) name. If it is default, convert to the 2983549ec3ffSdougm * real name. 2984549ec3ffSdougm */ 2985549ec3ffSdougm 2986549ec3ffSdougm static char * 2987549ec3ffSdougm nfs_space_alias(char *space) 2988549ec3ffSdougm { 2989549ec3ffSdougm char *name = space; 2990549ec3ffSdougm seconfig_t secconf; 2991549ec3ffSdougm 2992549ec3ffSdougm /* 2993549ec3ffSdougm * Only the space named "default" is special. If it is used, 2994549ec3ffSdougm * the default needs to be looked up and the real name used. 2995549ec3ffSdougm * This is normally "sys" but could be changed. We always 2996549ec3ffSdougm * change defautl to the real name. 2997549ec3ffSdougm */ 2998549ec3ffSdougm if (strcmp(space, "default") == 0 && 2999549ec3ffSdougm nfs_getseconfig_default(&secconf) == 0) { 3000549ec3ffSdougm if (nfs_getseconfig_bynumber(secconf.sc_nfsnum, &secconf) == 0) 3001549ec3ffSdougm name = secconf.sc_name; 3002549ec3ffSdougm } 3003549ec3ffSdougm return (strdup(name)); 3004549ec3ffSdougm } 3005da6c28aaSamw 3006da6c28aaSamw /* 3007da6c28aaSamw * nfs_features() 3008da6c28aaSamw * 3009da6c28aaSamw * Return a mask of the features required. 3010da6c28aaSamw */ 3011da6c28aaSamw 3012da6c28aaSamw static uint64_t 3013da6c28aaSamw nfs_features() 3014da6c28aaSamw { 3015da6c28aaSamw return ((uint64_t)SA_FEATURE_DFSTAB); 3016da6c28aaSamw } 3017