1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 /*
27  *	Copyright (c) 1983,1984,1985,1986,1987,1988,1989  AT&T.
28  *	All Rights Reserved
29  */
30 
31 #pragma ident	"%Z%%M%	%I%	%E% SMI"
32 
33 #include <sys/param.h>
34 #include <sys/types.h>
35 #include <sys/systm.h>
36 #include <sys/cred.h>
37 #include <sys/vfs.h>
38 #include <sys/vfs_opreg.h>
39 #include <sys/vnode.h>
40 #include <sys/pathname.h>
41 #include <sys/sysmacros.h>
42 #include <sys/kmem.h>
43 #include <sys/mkdev.h>
44 #include <sys/mount.h>
45 #include <sys/statvfs.h>
46 #include <sys/errno.h>
47 #include <sys/debug.h>
48 #include <sys/cmn_err.h>
49 #include <sys/utsname.h>
50 #include <sys/bootconf.h>
51 #include <sys/modctl.h>
52 #include <sys/acl.h>
53 #include <sys/flock.h>
54 #include <sys/time.h>
55 #include <sys/disp.h>
56 #include <sys/policy.h>
57 #include <sys/socket.h>
58 #include <sys/netconfig.h>
59 #include <sys/dnlc.h>
60 #include <sys/list.h>
61 #include <sys/mntent.h>
62 #include <sys/tsol/label.h>
63 
64 #include <rpc/types.h>
65 #include <rpc/auth.h>
66 #include <rpc/rpcsec_gss.h>
67 #include <rpc/clnt.h>
68 
69 #include <nfs/nfs.h>
70 #include <nfs/nfs_clnt.h>
71 #include <nfs/mount.h>
72 #include <nfs/nfs_acl.h>
73 
74 #include <fs/fs_subr.h>
75 
76 #include <nfs/nfs4.h>
77 #include <nfs/rnode4.h>
78 #include <nfs/nfs4_clnt.h>
79 #include <sys/fs/autofs.h>
80 
81 
82 /*
83  * Arguments passed to thread to free data structures from forced unmount.
84  */
85 
86 typedef struct {
87 	vfs_t	*fm_vfsp;
88 	int	fm_flag;
89 	cred_t	*fm_cr;
90 } freemountargs_t;
91 
92 static void	async_free_mount(vfs_t *, int, cred_t *);
93 static void	nfs4_free_mount(vfs_t *, int, cred_t *);
94 static void	nfs4_free_mount_thread(freemountargs_t *);
95 static int nfs4_chkdup_servinfo4(servinfo4_t *, servinfo4_t *);
96 
97 /*
98  * From rpcsec module (common/rpcsec).
99  */
100 extern int sec_clnt_loadinfo(struct sec_data *, struct sec_data **, model_t);
101 extern void sec_clnt_freeinfo(struct sec_data *);
102 
103 /*
104  * The order and contents of this structure must be kept in sync with that of
105  * rfsreqcnt_v4_tmpl in nfs_stats.c
106  */
107 static char *rfsnames_v4[] = {
108 	"null", "compound", "reserved",	"access", "close", "commit", "create",
109 	"delegpurge", "delegreturn", "getattr",	"getfh", "link", "lock",
110 	"lockt", "locku", "lookup", "lookupp", "nverify", "open", "openattr",
111 	"open_confirm",	"open_downgrade", "putfh", "putpubfh", "putrootfh",
112 	"read", "readdir", "readlink", "remove", "rename", "renew",
113 	"restorefh", "savefh", "secinfo", "setattr", "setclientid",
114 	"setclientid_confirm", "verify", "write"
115 };
116 
117 /*
118  * nfs4_max_mount_retry is the number of times the client will redrive
119  * a mount compound before giving up and returning failure.  The intent
120  * is to redrive mount compounds which fail NFS4ERR_STALE so that
121  * if a component of the server path being mounted goes stale, it can
122  * "recover" by redriving the mount compund (LOOKUP ops).  This recovery
123  * code is needed outside of the recovery framework because mount is a
124  * special case.  The client doesn't create vnodes/rnodes for components
125  * of the server path being mounted.  The recovery code recovers real
126  * client objects, not STALE FHs which map to components of the server
127  * path being mounted.
128  *
129  * We could just fail the mount on the first time, but that would
130  * instantly trigger failover (from nfs4_mount), and the client should
131  * try to re-lookup the STALE FH before doing failover.  The easiest
132  * way to "re-lookup" is to simply redrive the mount compound.
133  */
134 static int nfs4_max_mount_retry = 2;
135 
136 /*
137  * nfs4 vfs operations.
138  */
139 int		nfs4_mount(vfs_t *, vnode_t *, struct mounta *, cred_t *);
140 static int	nfs4_unmount(vfs_t *, int, cred_t *);
141 static int	nfs4_root(vfs_t *, vnode_t **);
142 static int	nfs4_statvfs(vfs_t *, struct statvfs64 *);
143 static int	nfs4_sync(vfs_t *, short, cred_t *);
144 static int	nfs4_vget(vfs_t *, vnode_t **, fid_t *);
145 static int	nfs4_mountroot(vfs_t *, whymountroot_t);
146 static void	nfs4_freevfs(vfs_t *);
147 
148 static int	nfs4rootvp(vnode_t **, vfs_t *, struct servinfo4 *,
149 		    int, cred_t *, zone_t *);
150 
151 vfsops_t	*nfs4_vfsops;
152 
153 int nfs4_vfsinit(void);
154 void nfs4_vfsfini(void);
155 static void nfs4setclientid_init(void);
156 static void nfs4setclientid_fini(void);
157 static void nfs4setclientid_otw(mntinfo4_t *, servinfo4_t *,  cred_t *,
158 		struct nfs4_server *, nfs4_error_t *, int *);
159 static void	destroy_nfs4_server(nfs4_server_t *);
160 static void	remove_mi(nfs4_server_t *, mntinfo4_t *);
161 
162 extern void nfs4_ephemeral_init(void);
163 extern void nfs4_ephemeral_fini(void);
164 
165 /*
166  * Initialize the vfs structure
167  */
168 
169 static int nfs4fstyp;
170 
171 
172 /*
173  * Debug variable to check for rdma based
174  * transport startup and cleanup. Controlled
175  * through /etc/system. Off by default.
176  */
177 extern int rdma_debug;
178 
179 int
180 nfs4init(int fstyp, char *name)
181 {
182 	static const fs_operation_def_t nfs4_vfsops_template[] = {
183 		VFSNAME_MOUNT,		{ .vfs_mount = nfs4_mount },
184 		VFSNAME_UNMOUNT,	{ .vfs_unmount = nfs4_unmount },
185 		VFSNAME_ROOT,		{ .vfs_root = nfs4_root },
186 		VFSNAME_STATVFS,	{ .vfs_statvfs = nfs4_statvfs },
187 		VFSNAME_SYNC,		{ .vfs_sync = nfs4_sync },
188 		VFSNAME_VGET,		{ .vfs_vget = nfs4_vget },
189 		VFSNAME_MOUNTROOT,	{ .vfs_mountroot = nfs4_mountroot },
190 		VFSNAME_FREEVFS,	{ .vfs_freevfs = nfs4_freevfs },
191 		NULL,			NULL
192 	};
193 	int error;
194 
195 	nfs4_vfsops = NULL;
196 	nfs4_vnodeops = NULL;
197 	nfs4_trigger_vnodeops = NULL;
198 
199 	error = vfs_setfsops(fstyp, nfs4_vfsops_template, &nfs4_vfsops);
200 	if (error != 0) {
201 		zcmn_err(GLOBAL_ZONEID, CE_WARN,
202 		    "nfs4init: bad vfs ops template");
203 		goto out;
204 	}
205 
206 	error = vn_make_ops(name, nfs4_vnodeops_template, &nfs4_vnodeops);
207 	if (error != 0) {
208 		zcmn_err(GLOBAL_ZONEID, CE_WARN,
209 		    "nfs4init: bad vnode ops template");
210 		goto out;
211 	}
212 
213 	error = vn_make_ops("nfs4_trigger", nfs4_trigger_vnodeops_template,
214 	    &nfs4_trigger_vnodeops);
215 	if (error != 0) {
216 		zcmn_err(GLOBAL_ZONEID, CE_WARN,
217 		    "nfs4init: bad trigger vnode ops template");
218 		goto out;
219 	}
220 
221 	nfs4fstyp = fstyp;
222 	(void) nfs4_vfsinit();
223 	(void) nfs4_init_dot_entries();
224 
225 out:
226 	if (error) {
227 		if (nfs4_trigger_vnodeops != NULL)
228 			vn_freevnodeops(nfs4_trigger_vnodeops);
229 
230 		if (nfs4_vnodeops != NULL)
231 			vn_freevnodeops(nfs4_vnodeops);
232 
233 		(void) vfs_freevfsops_by_type(fstyp);
234 	}
235 
236 	return (error);
237 }
238 
239 void
240 nfs4fini(void)
241 {
242 	(void) nfs4_destroy_dot_entries();
243 	nfs4_vfsfini();
244 }
245 
246 /*
247  * Create a new sec_data structure to store AUTH_DH related data:
248  * netname, syncaddr, knetconfig. There is no AUTH_F_RPCTIMESYNC
249  * flag set for NFS V4 since we are avoiding to contact the rpcbind
250  * daemon and is using the IP time service (IPPORT_TIMESERVER).
251  *
252  * sec_data can be freed by sec_clnt_freeinfo().
253  */
254 static struct sec_data *
255 create_authdh_data(char *netname, int nlen, struct netbuf *syncaddr,
256 		struct knetconfig *knconf) {
257 	struct sec_data *secdata;
258 	dh_k4_clntdata_t *data;
259 	char *pf, *p;
260 
261 	if (syncaddr == NULL || syncaddr->buf == NULL || nlen == 0)
262 		return (NULL);
263 
264 	secdata = kmem_alloc(sizeof (*secdata), KM_SLEEP);
265 	secdata->flags = 0;
266 
267 	data = kmem_alloc(sizeof (*data), KM_SLEEP);
268 
269 	data->syncaddr.maxlen = syncaddr->maxlen;
270 	data->syncaddr.len = syncaddr->len;
271 	data->syncaddr.buf = (char *)kmem_alloc(syncaddr->len, KM_SLEEP);
272 	bcopy(syncaddr->buf, data->syncaddr.buf, syncaddr->len);
273 
274 	/*
275 	 * duplicate the knconf information for the
276 	 * new opaque data.
277 	 */
278 	data->knconf = kmem_alloc(sizeof (*knconf), KM_SLEEP);
279 	*data->knconf = *knconf;
280 	pf = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
281 	p = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
282 	bcopy(knconf->knc_protofmly, pf, KNC_STRSIZE);
283 	bcopy(knconf->knc_proto, p, KNC_STRSIZE);
284 	data->knconf->knc_protofmly = pf;
285 	data->knconf->knc_proto = p;
286 
287 	/* move server netname to the sec_data structure */
288 	data->netname = kmem_alloc(nlen, KM_SLEEP);
289 	bcopy(netname, data->netname, nlen);
290 	data->netnamelen = (int)nlen;
291 
292 	secdata->secmod = AUTH_DH;
293 	secdata->rpcflavor = AUTH_DH;
294 	secdata->data = (caddr_t)data;
295 
296 	return (secdata);
297 }
298 
299 /*
300  * Returns (deep) copy of sec_data_t. Allocates all memory required; caller
301  * is responsible for freeing.
302  */
303 sec_data_t *
304 copy_sec_data(sec_data_t *fsecdata) {
305 	sec_data_t *tsecdata;
306 
307 	if (fsecdata == NULL)
308 		return (NULL);
309 
310 	if (fsecdata->rpcflavor == AUTH_DH) {
311 		dh_k4_clntdata_t *fdata = (dh_k4_clntdata_t *)fsecdata->data;
312 
313 		if (fdata == NULL)
314 			return (NULL);
315 
316 		tsecdata = (sec_data_t *)create_authdh_data(fdata->netname,
317 		    fdata->netnamelen, &fdata->syncaddr, fdata->knconf);
318 
319 		return (tsecdata);
320 	}
321 
322 	tsecdata = kmem_zalloc(sizeof (sec_data_t), KM_SLEEP);
323 
324 	tsecdata->secmod = fsecdata->secmod;
325 	tsecdata->rpcflavor = fsecdata->rpcflavor;
326 	tsecdata->flags = fsecdata->flags;
327 	tsecdata->uid = fsecdata->uid;
328 
329 	if (fsecdata->rpcflavor == RPCSEC_GSS) {
330 		gss_clntdata_t *gcd = (gss_clntdata_t *)fsecdata->data;
331 
332 		tsecdata->data = (caddr_t)copy_sec_data_gss(gcd);
333 	} else {
334 		tsecdata->data = NULL;
335 	}
336 
337 	return (tsecdata);
338 }
339 
340 gss_clntdata_t *
341 copy_sec_data_gss(gss_clntdata_t *fdata)
342 {
343 	gss_clntdata_t *tdata;
344 
345 	if (fdata == NULL)
346 		return (NULL);
347 
348 	tdata = kmem_zalloc(sizeof (gss_clntdata_t), KM_SLEEP);
349 
350 	tdata->mechanism.length = fdata->mechanism.length;
351 	tdata->mechanism.elements = kmem_zalloc(fdata->mechanism.length,
352 	    KM_SLEEP);
353 	bcopy(fdata->mechanism.elements, tdata->mechanism.elements,
354 	    fdata->mechanism.length);
355 
356 	tdata->service = fdata->service;
357 
358 	(void) strcpy(tdata->uname, fdata->uname);
359 	(void) strcpy(tdata->inst, fdata->inst);
360 	(void) strcpy(tdata->realm, fdata->realm);
361 
362 	tdata->qop = fdata->qop;
363 
364 	return (tdata);
365 }
366 
367 static int
368 nfs4_chkdup_servinfo4(servinfo4_t *svp_head, servinfo4_t *svp)
369 {
370 	servinfo4_t *si;
371 
372 	/*
373 	 * Iterate over the servinfo4 list to make sure
374 	 * we do not have a duplicate. Skip any servinfo4
375 	 * that has been marked "NOT IN USE"
376 	 */
377 	for (si = svp_head; si; si = si->sv_next) {
378 		(void) nfs_rw_enter_sig(&si->sv_lock, RW_READER, 0);
379 		if (si->sv_flags & SV4_NOTINUSE) {
380 			nfs_rw_exit(&si->sv_lock);
381 			continue;
382 		}
383 		nfs_rw_exit(&si->sv_lock);
384 		if (si == svp)
385 			continue;
386 		if (si->sv_addr.len == svp->sv_addr.len &&
387 		    strcmp(si->sv_knconf->knc_protofmly,
388 		    svp->sv_knconf->knc_protofmly) == 0 &&
389 		    bcmp(si->sv_addr.buf, svp->sv_addr.buf,
390 		    si->sv_addr.len) == 0) {
391 			/* it's a duplicate */
392 			return (1);
393 		}
394 	}
395 	/* it's not a duplicate */
396 	return (0);
397 }
398 
399 void
400 nfs4_free_args(struct nfs_args *nargs)
401 {
402 	if (nargs->knconf) {
403 		if (nargs->knconf->knc_protofmly)
404 			kmem_free(nargs->knconf->knc_protofmly,
405 			    KNC_STRSIZE);
406 		if (nargs->knconf->knc_proto)
407 			kmem_free(nargs->knconf->knc_proto, KNC_STRSIZE);
408 		kmem_free(nargs->knconf, sizeof (*nargs->knconf));
409 		nargs->knconf = NULL;
410 	}
411 
412 	if (nargs->fh) {
413 		kmem_free(nargs->fh, strlen(nargs->fh) + 1);
414 		nargs->fh = NULL;
415 	}
416 
417 	if (nargs->hostname) {
418 		kmem_free(nargs->hostname, strlen(nargs->hostname) + 1);
419 		nargs->hostname = NULL;
420 	}
421 
422 	if (nargs->addr) {
423 		if (nargs->addr->buf) {
424 			ASSERT(nargs->addr->len);
425 			kmem_free(nargs->addr->buf, nargs->addr->len);
426 		}
427 		kmem_free(nargs->addr, sizeof (struct netbuf));
428 		nargs->addr = NULL;
429 	}
430 
431 	if (nargs->syncaddr) {
432 		ASSERT(nargs->syncaddr->len);
433 		if (nargs->syncaddr->buf) {
434 			ASSERT(nargs->syncaddr->len);
435 			kmem_free(nargs->syncaddr->buf, nargs->syncaddr->len);
436 		}
437 		kmem_free(nargs->syncaddr, sizeof (struct netbuf));
438 		nargs->syncaddr = NULL;
439 	}
440 
441 	if (nargs->netname) {
442 		kmem_free(nargs->netname, strlen(nargs->netname) + 1);
443 		nargs->netname = NULL;
444 	}
445 
446 	if (nargs->nfs_ext_u.nfs_extA.secdata) {
447 		sec_clnt_freeinfo(
448 		    nargs->nfs_ext_u.nfs_extA.secdata);
449 		nargs->nfs_ext_u.nfs_extA.secdata = NULL;
450 	}
451 }
452 
453 
454 int
455 nfs4_copyin(char *data, int datalen, struct nfs_args *nargs)
456 {
457 
458 	int error;
459 	size_t hlen;			/* length of hostname */
460 	size_t nlen;			/* length of netname */
461 	char netname[MAXNETNAMELEN+1];	/* server's netname */
462 	struct netbuf addr;		/* server's address */
463 	struct netbuf syncaddr;		/* AUTH_DES time sync addr */
464 	struct knetconfig *knconf;		/* transport structure */
465 	struct sec_data *secdata = NULL;	/* security data */
466 	STRUCT_DECL(nfs_args, args);		/* nfs mount arguments */
467 	STRUCT_DECL(knetconfig, knconf_tmp);
468 	STRUCT_DECL(netbuf, addr_tmp);
469 	int flags;
470 	char *p, *pf;
471 	struct pathname pn;
472 	char *userbufptr;
473 
474 
475 	bzero(nargs, sizeof (*nargs));
476 
477 	STRUCT_INIT(args, get_udatamodel());
478 	bzero(STRUCT_BUF(args), SIZEOF_STRUCT(nfs_args, DATAMODEL_NATIVE));
479 	if (copyin(data, STRUCT_BUF(args), MIN(datalen,
480 	    STRUCT_SIZE(args))))
481 		return (EFAULT);
482 
483 	nargs->wsize = STRUCT_FGET(args, wsize);
484 	nargs->rsize = STRUCT_FGET(args, rsize);
485 	nargs->timeo = STRUCT_FGET(args, timeo);
486 	nargs->retrans = STRUCT_FGET(args, retrans);
487 	nargs->acregmin = STRUCT_FGET(args, acregmin);
488 	nargs->acregmax = STRUCT_FGET(args, acregmax);
489 	nargs->acdirmin = STRUCT_FGET(args, acdirmin);
490 	nargs->acdirmax = STRUCT_FGET(args, acdirmax);
491 
492 	flags = STRUCT_FGET(args, flags);
493 	nargs->flags = flags;
494 
495 	addr.buf = NULL;
496 	syncaddr.buf = NULL;
497 
498 
499 	/*
500 	 * Allocate space for a knetconfig structure and
501 	 * its strings and copy in from user-land.
502 	 */
503 	knconf = kmem_zalloc(sizeof (*knconf), KM_SLEEP);
504 	STRUCT_INIT(knconf_tmp, get_udatamodel());
505 	if (copyin(STRUCT_FGETP(args, knconf), STRUCT_BUF(knconf_tmp),
506 	    STRUCT_SIZE(knconf_tmp))) {
507 		kmem_free(knconf, sizeof (*knconf));
508 		return (EFAULT);
509 	}
510 
511 	knconf->knc_semantics = STRUCT_FGET(knconf_tmp, knc_semantics);
512 	knconf->knc_protofmly = STRUCT_FGETP(knconf_tmp, knc_protofmly);
513 	knconf->knc_proto = STRUCT_FGETP(knconf_tmp, knc_proto);
514 	if (get_udatamodel() != DATAMODEL_LP64) {
515 		knconf->knc_rdev = expldev(STRUCT_FGET(knconf_tmp, knc_rdev));
516 	} else {
517 		knconf->knc_rdev = STRUCT_FGET(knconf_tmp, knc_rdev);
518 	}
519 
520 	pf = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
521 	p = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
522 	error = copyinstr(knconf->knc_protofmly, pf, KNC_STRSIZE, NULL);
523 	if (error) {
524 		kmem_free(pf, KNC_STRSIZE);
525 		kmem_free(p, KNC_STRSIZE);
526 		kmem_free(knconf, sizeof (*knconf));
527 		return (error);
528 	}
529 
530 	error = copyinstr(knconf->knc_proto, p, KNC_STRSIZE, NULL);
531 	if (error) {
532 		kmem_free(pf, KNC_STRSIZE);
533 		kmem_free(p, KNC_STRSIZE);
534 		kmem_free(knconf, sizeof (*knconf));
535 		return (error);
536 	}
537 
538 
539 	knconf->knc_protofmly = pf;
540 	knconf->knc_proto = p;
541 
542 	nargs->knconf = knconf;
543 
544 	/*
545 	 * Get server address
546 	 */
547 	STRUCT_INIT(addr_tmp, get_udatamodel());
548 	if (copyin(STRUCT_FGETP(args, addr), STRUCT_BUF(addr_tmp),
549 	    STRUCT_SIZE(addr_tmp))) {
550 		error = EFAULT;
551 		goto errout;
552 	}
553 
554 	nargs->addr = kmem_alloc(sizeof (struct netbuf), KM_SLEEP);
555 	userbufptr = STRUCT_FGETP(addr_tmp, buf);
556 	addr.len = STRUCT_FGET(addr_tmp, len);
557 	addr.buf = kmem_alloc(addr.len, KM_SLEEP);
558 	addr.maxlen = addr.len;
559 	if (copyin(userbufptr, addr.buf, addr.len)) {
560 		kmem_free(addr.buf, addr.len);
561 		error = EFAULT;
562 		goto errout;
563 	}
564 	bcopy(&addr, nargs->addr, sizeof (struct netbuf));
565 
566 	/*
567 	 * Get the root fhandle
568 	 */
569 	error = pn_get(STRUCT_FGETP(args, fh), UIO_USERSPACE, &pn);
570 	if (error)
571 		goto errout;
572 
573 	/* Volatile fh: keep server paths, so use actual-size strings */
574 	nargs->fh = kmem_alloc(pn.pn_pathlen + 1, KM_SLEEP);
575 	bcopy(pn.pn_path, nargs->fh, pn.pn_pathlen);
576 	nargs->fh[pn.pn_pathlen] = '\0';
577 	pn_free(&pn);
578 
579 
580 	/*
581 	 * Get server's hostname
582 	 */
583 	if (flags & NFSMNT_HOSTNAME) {
584 		error = copyinstr(STRUCT_FGETP(args, hostname),
585 		    netname, sizeof (netname), &hlen);
586 		if (error)
587 			goto errout;
588 		nargs->hostname = kmem_zalloc(hlen, KM_SLEEP);
589 		(void) strcpy(nargs->hostname, netname);
590 
591 	} else {
592 		nargs->hostname = NULL;
593 	}
594 
595 
596 	/*
597 	 * If there are syncaddr and netname data, load them in. This is
598 	 * to support data needed for NFSV4 when AUTH_DH is the negotiated
599 	 * flavor via SECINFO. (instead of using MOUNT protocol in V3).
600 	 */
601 	netname[0] = '\0';
602 	if (flags & NFSMNT_SECURE) {
603 
604 		/* get syncaddr */
605 		STRUCT_INIT(addr_tmp, get_udatamodel());
606 		if (copyin(STRUCT_FGETP(args, syncaddr), STRUCT_BUF(addr_tmp),
607 		    STRUCT_SIZE(addr_tmp))) {
608 			error = EINVAL;
609 			goto errout;
610 		}
611 		userbufptr = STRUCT_FGETP(addr_tmp, buf);
612 		syncaddr.len = STRUCT_FGET(addr_tmp, len);
613 		syncaddr.buf = kmem_alloc(syncaddr.len, KM_SLEEP);
614 		syncaddr.maxlen = syncaddr.len;
615 		if (copyin(userbufptr, syncaddr.buf, syncaddr.len)) {
616 			kmem_free(syncaddr.buf, syncaddr.len);
617 			error = EFAULT;
618 			goto errout;
619 		}
620 
621 		nargs->syncaddr = kmem_alloc(sizeof (struct netbuf), KM_SLEEP);
622 		bcopy(&syncaddr, nargs->syncaddr, sizeof (struct netbuf));
623 
624 		/* get server's netname */
625 		if (copyinstr(STRUCT_FGETP(args, netname), netname,
626 		    sizeof (netname), &nlen)) {
627 			error = EFAULT;
628 			goto errout;
629 		}
630 
631 		netname[nlen] = '\0';
632 		nargs->netname = kmem_zalloc(nlen, KM_SLEEP);
633 		(void) strcpy(nargs->netname, netname);
634 	}
635 
636 	/*
637 	 * Get the extention data which has the security data structure.
638 	 * This includes data for AUTH_SYS as well.
639 	 */
640 	if (flags & NFSMNT_NEWARGS) {
641 		nargs->nfs_args_ext = STRUCT_FGET(args, nfs_args_ext);
642 		if (nargs->nfs_args_ext == NFS_ARGS_EXTA ||
643 		    nargs->nfs_args_ext == NFS_ARGS_EXTB) {
644 			/*
645 			 * Indicating the application is using the new
646 			 * sec_data structure to pass in the security
647 			 * data.
648 			 */
649 			if (STRUCT_FGETP(args,
650 			    nfs_ext_u.nfs_extA.secdata) != NULL) {
651 				error = sec_clnt_loadinfo(
652 				    (struct sec_data *)STRUCT_FGETP(args,
653 				    nfs_ext_u.nfs_extA.secdata),
654 				    &secdata, get_udatamodel());
655 			}
656 			nargs->nfs_ext_u.nfs_extA.secdata = secdata;
657 		}
658 	}
659 
660 	if (error)
661 		goto errout;
662 
663 	/*
664 	 * Failover support:
665 	 *
666 	 * We may have a linked list of nfs_args structures,
667 	 * which means the user is looking for failover.  If
668 	 * the mount is either not "read-only" or "soft",
669 	 * we want to bail out with EINVAL.
670 	 */
671 	if (nargs->nfs_args_ext == NFS_ARGS_EXTB)
672 		nargs->nfs_ext_u.nfs_extB.next =
673 		    STRUCT_FGETP(args, nfs_ext_u.nfs_extB.next);
674 
675 errout:
676 	if (error)
677 		nfs4_free_args(nargs);
678 
679 	return (error);
680 }
681 
682 
683 /*
684  * nfs mount vfsop
685  * Set up mount info record and attach it to vfs struct.
686  */
687 int
688 nfs4_mount(vfs_t *vfsp, vnode_t *mvp, struct mounta *uap, cred_t *cr)
689 {
690 	char *data = uap->dataptr;
691 	int error;
692 	vnode_t *rtvp;			/* the server's root */
693 	mntinfo4_t *mi;			/* mount info, pointed at by vfs */
694 	struct knetconfig *rdma_knconf;	/* rdma transport structure */
695 	rnode4_t *rp;
696 	struct servinfo4 *svp;		/* nfs server info */
697 	struct servinfo4 *svp_tail = NULL; /* previous nfs server info */
698 	struct servinfo4 *svp_head;	/* first nfs server info */
699 	struct servinfo4 *svp_2ndlast;	/* 2nd last in server info list */
700 	struct sec_data *secdata;	/* security data */
701 	struct nfs_args *args = NULL;
702 	int flags, addr_type, removed;
703 	zone_t *zone = nfs_zone();
704 	nfs4_error_t n4e;
705 	zone_t *mntzone = NULL;
706 
707 	if (secpolicy_fs_mount(cr, mvp, vfsp) != 0)
708 		return (EPERM);
709 	if (mvp->v_type != VDIR)
710 		return (ENOTDIR);
711 
712 	/*
713 	 * get arguments
714 	 *
715 	 * nfs_args is now versioned and is extensible, so
716 	 * uap->datalen might be different from sizeof (args)
717 	 * in a compatible situation.
718 	 */
719 more:
720 	if (!(uap->flags & MS_SYSSPACE)) {
721 		if (args == NULL)
722 			args = kmem_zalloc(sizeof (struct nfs_args), KM_SLEEP);
723 		else
724 			nfs4_free_args(args);
725 		error = nfs4_copyin(data, uap->datalen, args);
726 		if (error) {
727 			if (args) {
728 				kmem_free(args, sizeof (*args));
729 			}
730 			return (error);
731 		}
732 	} else {
733 		args = (struct nfs_args *)data;
734 	}
735 
736 	flags = args->flags;
737 
738 	/*
739 	 * If the request changes the locking type, disallow the remount,
740 	 * because it's questionable whether we can transfer the
741 	 * locking state correctly.
742 	 */
743 	if (uap->flags & MS_REMOUNT) {
744 		if (!(uap->flags & MS_SYSSPACE)) {
745 			nfs4_free_args(args);
746 			kmem_free(args, sizeof (*args));
747 		}
748 		if ((mi = VFTOMI4(vfsp)) != NULL) {
749 			uint_t new_mi_llock;
750 			uint_t old_mi_llock;
751 			new_mi_llock = (flags & NFSMNT_LLOCK) ? 1 : 0;
752 			old_mi_llock = (mi->mi_flags & MI4_LLOCK) ? 1 : 0;
753 			if (old_mi_llock != new_mi_llock)
754 				return (EBUSY);
755 		}
756 		return (0);
757 	}
758 
759 	/*
760 	 * For ephemeral mount trigger stub vnodes, we have two problems
761 	 * to solve: racing threads will likely fail the v_count check, and
762 	 * we want only one to proceed with the mount.
763 	 *
764 	 * For stubs, if the mount has already occurred (via a racing thread),
765 	 * just return success. If not, skip the v_count check and proceed.
766 	 * Note that we are already serialised at this point.
767 	 */
768 	mutex_enter(&mvp->v_lock);
769 	if (vn_matchops(mvp, nfs4_trigger_vnodeops)) {
770 		/* mntpt is a v4 stub vnode */
771 		ASSERT(RP_ISSTUB(VTOR4(mvp)));
772 		ASSERT(!(uap->flags & MS_OVERLAY));
773 		ASSERT(!(mvp->v_flag & VROOT));
774 		if (vn_mountedvfs(mvp) != NULL) {
775 			/* ephemeral mount has already occurred */
776 			ASSERT(uap->flags & MS_SYSSPACE);
777 			mutex_exit(&mvp->v_lock);
778 			return (0);
779 		}
780 	} else {
781 		/* mntpt is a non-v4 or v4 non-stub vnode */
782 		if (!(uap->flags & MS_OVERLAY) &&
783 		    (mvp->v_count != 1 || (mvp->v_flag & VROOT))) {
784 			mutex_exit(&mvp->v_lock);
785 			if (!(uap->flags & MS_SYSSPACE)) {
786 				nfs4_free_args(args);
787 				kmem_free(args, sizeof (*args));
788 			}
789 			return (EBUSY);
790 		}
791 	}
792 	mutex_exit(&mvp->v_lock);
793 
794 	/* make sure things are zeroed for errout: */
795 	rtvp = NULL;
796 	mi = NULL;
797 	secdata = NULL;
798 
799 	/*
800 	 * A valid knetconfig structure is required.
801 	 */
802 	if (!(flags & NFSMNT_KNCONF) ||
803 	    args->knconf == NULL || args->knconf->knc_protofmly == NULL ||
804 	    args->knconf->knc_proto == NULL ||
805 	    (strcmp(args->knconf->knc_proto, NC_UDP) == 0)) {
806 		if (!(uap->flags & MS_SYSSPACE)) {
807 			nfs4_free_args(args);
808 			kmem_free(args, sizeof (*args));
809 		}
810 		return (EINVAL);
811 	}
812 
813 	if ((strlen(args->knconf->knc_protofmly) >= KNC_STRSIZE) ||
814 	    (strlen(args->knconf->knc_proto) >= KNC_STRSIZE)) {
815 		if (!(uap->flags & MS_SYSSPACE)) {
816 			nfs4_free_args(args);
817 			kmem_free(args, sizeof (*args));
818 		}
819 		return (EINVAL);
820 	}
821 
822 	/*
823 	 * Allocate a servinfo4 struct.
824 	 */
825 	svp = kmem_zalloc(sizeof (*svp), KM_SLEEP);
826 	nfs_rw_init(&svp->sv_lock, NULL, RW_DEFAULT, NULL);
827 	if (svp_tail) {
828 		svp_2ndlast = svp_tail;
829 		svp_tail->sv_next = svp;
830 	} else {
831 		svp_head = svp;
832 		svp_2ndlast = svp;
833 	}
834 
835 	svp_tail = svp;
836 	svp->sv_knconf = args->knconf;
837 	args->knconf = NULL;
838 
839 	/*
840 	 * Get server address
841 	 */
842 	if (args->addr == NULL || args->addr->buf == NULL) {
843 		error = EINVAL;
844 		goto errout;
845 	}
846 
847 	svp->sv_addr.maxlen = args->addr->maxlen;
848 	svp->sv_addr.len = args->addr->len;
849 	svp->sv_addr.buf = args->addr->buf;
850 	args->addr->buf = NULL;
851 
852 	/*
853 	 * Get the root fhandle
854 	 */
855 	if (args->fh == NULL || (strlen(args->fh) >= MAXPATHLEN)) {
856 		error = EINVAL;
857 		goto errout;
858 	}
859 
860 	svp->sv_path = args->fh;
861 	svp->sv_pathlen = strlen(args->fh) + 1;
862 	args->fh = NULL;
863 
864 	/*
865 	 * Get server's hostname
866 	 */
867 	if (flags & NFSMNT_HOSTNAME) {
868 		if (args->hostname == NULL || (strlen(args->hostname) >
869 		    MAXNETNAMELEN)) {
870 			error = EINVAL;
871 			goto errout;
872 		}
873 		svp->sv_hostnamelen = strlen(args->hostname) + 1;
874 		svp->sv_hostname = args->hostname;
875 		args->hostname = NULL;
876 	} else {
877 		char *p = "unknown-host";
878 		svp->sv_hostnamelen = strlen(p) + 1;
879 		svp->sv_hostname = kmem_zalloc(svp->sv_hostnamelen, KM_SLEEP);
880 		(void) strcpy(svp->sv_hostname, p);
881 	}
882 
883 	/*
884 	 * RDMA MOUNT SUPPORT FOR NFS v4.
885 	 * Establish, is it possible to use RDMA, if so overload the
886 	 * knconf with rdma specific knconf and free the orignal knconf.
887 	 */
888 	if ((flags & NFSMNT_TRYRDMA) || (flags & NFSMNT_DORDMA)) {
889 		/*
890 		 * Determine the addr type for RDMA, IPv4 or v6.
891 		 */
892 		if (strcmp(svp->sv_knconf->knc_protofmly, NC_INET) == 0)
893 			addr_type = AF_INET;
894 		else if (strcmp(svp->sv_knconf->knc_protofmly, NC_INET6) == 0)
895 			addr_type = AF_INET6;
896 
897 		if (rdma_reachable(addr_type, &svp->sv_addr,
898 		    &rdma_knconf) == 0) {
899 			/*
900 			 * If successful, hijack the orignal knconf and
901 			 * replace with the new one, depending on the flags.
902 			 */
903 			svp->sv_origknconf = svp->sv_knconf;
904 			svp->sv_knconf = rdma_knconf;
905 		} else {
906 			if (flags & NFSMNT_TRYRDMA) {
907 #ifdef	DEBUG
908 				if (rdma_debug)
909 					zcmn_err(getzoneid(), CE_WARN,
910 					    "no RDMA onboard, revert\n");
911 #endif
912 			}
913 
914 			if (flags & NFSMNT_DORDMA) {
915 				/*
916 				 * If proto=rdma is specified and no RDMA
917 				 * path to this server is avialable then
918 				 * ditch this server.
919 				 * This is not included in the mountable
920 				 * server list or the replica list.
921 				 * Check if more servers are specified;
922 				 * Failover case, otherwise bail out of mount.
923 				 */
924 				if (args->nfs_args_ext == NFS_ARGS_EXTB &&
925 				    args->nfs_ext_u.nfs_extB.next != NULL) {
926 					data = (char *)
927 					    args->nfs_ext_u.nfs_extB.next;
928 					if (uap->flags & MS_RDONLY &&
929 					    !(flags & NFSMNT_SOFT)) {
930 						if (svp_head->sv_next == NULL) {
931 							svp_tail = NULL;
932 							svp_2ndlast = NULL;
933 							sv4_free(svp_head);
934 							goto more;
935 						} else {
936 							svp_tail = svp_2ndlast;
937 							svp_2ndlast->sv_next =
938 							    NULL;
939 							sv4_free(svp);
940 							goto more;
941 						}
942 					}
943 				} else {
944 					/*
945 					 * This is the last server specified
946 					 * in the nfs_args list passed down
947 					 * and its not rdma capable.
948 					 */
949 					if (svp_head->sv_next == NULL) {
950 						/*
951 						 * Is this the only one
952 						 */
953 						error = EINVAL;
954 #ifdef	DEBUG
955 						if (rdma_debug)
956 							zcmn_err(getzoneid(),
957 							    CE_WARN,
958 							    "No RDMA srv");
959 #endif
960 						goto errout;
961 					} else {
962 						/*
963 						 * There is list, since some
964 						 * servers specified before
965 						 * this passed all requirements
966 						 */
967 						svp_tail = svp_2ndlast;
968 						svp_2ndlast->sv_next = NULL;
969 						sv4_free(svp);
970 						goto proceed;
971 					}
972 				}
973 			}
974 		}
975 	}
976 
977 	/*
978 	 * If there are syncaddr and netname data, load them in. This is
979 	 * to support data needed for NFSV4 when AUTH_DH is the negotiated
980 	 * flavor via SECINFO. (instead of using MOUNT protocol in V3).
981 	 */
982 	if (args->flags & NFSMNT_SECURE) {
983 		svp->sv_dhsec = create_authdh_data(args->netname,
984 		    strlen(args->netname),
985 		    args->syncaddr, svp->sv_knconf);
986 	}
987 
988 	/*
989 	 * Get the extention data which has the security data structure.
990 	 * This includes data for AUTH_SYS as well.
991 	 */
992 	if (flags & NFSMNT_NEWARGS) {
993 		switch (args->nfs_args_ext) {
994 		case NFS_ARGS_EXTA:
995 		case NFS_ARGS_EXTB:
996 			/*
997 			 * Indicating the application is using the new
998 			 * sec_data structure to pass in the security
999 			 * data.
1000 			 */
1001 			secdata = args->nfs_ext_u.nfs_extA.secdata;
1002 			if (secdata == NULL) {
1003 				error = EINVAL;
1004 			} else if (uap->flags & MS_SYSSPACE) {
1005 				/*
1006 				 * Need to validate the flavor here if
1007 				 * sysspace, userspace was already
1008 				 * validate from the nfs_copyin function.
1009 				 */
1010 				switch (secdata->rpcflavor) {
1011 				case AUTH_NONE:
1012 				case AUTH_UNIX:
1013 				case AUTH_LOOPBACK:
1014 				case AUTH_DES:
1015 				case RPCSEC_GSS:
1016 					break;
1017 				default:
1018 					error = EINVAL;
1019 					goto errout;
1020 				}
1021 			}
1022 			args->nfs_ext_u.nfs_extA.secdata = NULL;
1023 			break;
1024 
1025 		default:
1026 			error = EINVAL;
1027 			break;
1028 		}
1029 
1030 	} else if (flags & NFSMNT_SECURE) {
1031 		/*
1032 		 * NFSMNT_SECURE is deprecated but we keep it
1033 		 * to support the rogue user-generated application
1034 		 * that may use this undocumented interface to do
1035 		 * AUTH_DH security, e.g. our own rexd.
1036 		 *
1037 		 * Also note that NFSMNT_SECURE is used for passing
1038 		 * AUTH_DH info to be used in negotiation.
1039 		 */
1040 		secdata = create_authdh_data(args->netname,
1041 		    strlen(args->netname), args->syncaddr, svp->sv_knconf);
1042 
1043 	} else {
1044 		secdata = kmem_alloc(sizeof (*secdata), KM_SLEEP);
1045 		secdata->secmod = secdata->rpcflavor = AUTH_SYS;
1046 		secdata->data = NULL;
1047 	}
1048 
1049 	svp->sv_secdata = secdata;
1050 
1051 	/*
1052 	 * User does not explictly specify a flavor, and a user
1053 	 * defined default flavor is passed down.
1054 	 */
1055 	if (flags & NFSMNT_SECDEFAULT) {
1056 		(void) nfs_rw_enter_sig(&svp->sv_lock, RW_WRITER, 0);
1057 		svp->sv_flags |= SV4_TRYSECDEFAULT;
1058 		nfs_rw_exit(&svp->sv_lock);
1059 	}
1060 
1061 	/*
1062 	 * Failover support:
1063 	 *
1064 	 * We may have a linked list of nfs_args structures,
1065 	 * which means the user is looking for failover.  If
1066 	 * the mount is either not "read-only" or "soft",
1067 	 * we want to bail out with EINVAL.
1068 	 */
1069 	if (args->nfs_args_ext == NFS_ARGS_EXTB &&
1070 	    args->nfs_ext_u.nfs_extB.next != NULL) {
1071 		if (uap->flags & MS_RDONLY && !(flags & NFSMNT_SOFT)) {
1072 			data = (char *)args->nfs_ext_u.nfs_extB.next;
1073 			goto more;
1074 		}
1075 		error = EINVAL;
1076 		goto errout;
1077 	}
1078 
1079 	/*
1080 	 * Determine the zone we're being mounted into.
1081 	 */
1082 	zone_hold(mntzone = zone);		/* start with this assumption */
1083 	if (getzoneid() == GLOBAL_ZONEID) {
1084 		zone_rele(mntzone);
1085 		mntzone = zone_find_by_path(refstr_value(vfsp->vfs_mntpt));
1086 		ASSERT(mntzone != NULL);
1087 		if (mntzone != zone) {
1088 			error = EBUSY;
1089 			goto errout;
1090 		}
1091 	}
1092 
1093 	if (is_system_labeled()) {
1094 		error = nfs_mount_label_policy(vfsp, &svp->sv_addr,
1095 		    svp->sv_knconf, cr);
1096 
1097 		if (error > 0)
1098 			goto errout;
1099 
1100 		if (error == -1) {
1101 			/* change mount to read-only to prevent write-down */
1102 			vfs_setmntopt(vfsp, MNTOPT_RO, NULL, 0);
1103 		}
1104 	}
1105 
1106 	/*
1107 	 * Stop the mount from going any further if the zone is going away.
1108 	 */
1109 	if (zone_status_get(mntzone) >= ZONE_IS_SHUTTING_DOWN) {
1110 		error = EBUSY;
1111 		goto errout;
1112 	}
1113 
1114 	/*
1115 	 * Get root vnode.
1116 	 */
1117 proceed:
1118 	error = nfs4rootvp(&rtvp, vfsp, svp_head, flags, cr, mntzone);
1119 	if (error) {
1120 		/* if nfs4rootvp failed, it will free svp_head */
1121 		svp_head = NULL;
1122 		goto errout;
1123 	}
1124 
1125 	mi = VTOMI4(rtvp);
1126 
1127 	/*
1128 	 * Send client id to the server, if necessary
1129 	 */
1130 	nfs4_error_zinit(&n4e);
1131 	nfs4setclientid(mi, cr, FALSE, &n4e);
1132 
1133 	error = n4e.error;
1134 
1135 	if (error)
1136 		goto errout;
1137 
1138 	/*
1139 	 * Set option fields in the mount info record
1140 	 */
1141 
1142 	if (svp_head->sv_next) {
1143 		mutex_enter(&mi->mi_lock);
1144 		mi->mi_flags |= MI4_LLOCK;
1145 		mutex_exit(&mi->mi_lock);
1146 	}
1147 	error = nfs4_setopts(rtvp, DATAMODEL_NATIVE, args);
1148 	if (error)
1149 		goto errout;
1150 
1151 	/*
1152 	 * Time to tie in the mirror mount info at last!
1153 	 */
1154 	if (flags & NFSMNT_EPHEMERAL)
1155 		nfs4_record_ephemeral_mount(mi, mvp);
1156 
1157 errout:
1158 	if (error) {
1159 		if (rtvp != NULL) {
1160 			rp = VTOR4(rtvp);
1161 			if (rp->r_flags & R4HASHED)
1162 				rp4_rmhash(rp);
1163 		}
1164 		if (mi != NULL) {
1165 			nfs4_async_stop(vfsp);
1166 			nfs4_async_manager_stop(vfsp);
1167 			nfs4_remove_mi_from_server(mi, NULL);
1168 			if (rtvp != NULL)
1169 				VN_RELE(rtvp);
1170 			if (mntzone != NULL)
1171 				zone_rele(mntzone);
1172 			/* need to remove it from the zone */
1173 			removed = nfs4_mi_zonelist_remove(mi);
1174 			if (removed)
1175 				zone_rele(mi->mi_zone);
1176 			MI4_RELE(mi);
1177 			if (!(uap->flags & MS_SYSSPACE) && args) {
1178 				nfs4_free_args(args);
1179 				kmem_free(args, sizeof (*args));
1180 			}
1181 			return (error);
1182 		}
1183 		if (svp_head)
1184 			sv4_free(svp_head);
1185 	}
1186 
1187 	if (!(uap->flags & MS_SYSSPACE) && args) {
1188 		nfs4_free_args(args);
1189 		kmem_free(args, sizeof (*args));
1190 	}
1191 	if (rtvp != NULL)
1192 		VN_RELE(rtvp);
1193 
1194 	if (mntzone != NULL)
1195 		zone_rele(mntzone);
1196 
1197 	return (error);
1198 }
1199 
1200 #ifdef  DEBUG
1201 #define	VERS_MSG	"NFS4 server "
1202 #else
1203 #define	VERS_MSG	"NFS server "
1204 #endif
1205 
1206 #define	READ_MSG        \
1207 	VERS_MSG "%s returned 0 for read transfer size"
1208 #define	WRITE_MSG       \
1209 	VERS_MSG "%s returned 0 for write transfer size"
1210 #define	SIZE_MSG        \
1211 	VERS_MSG "%s returned 0 for maximum file size"
1212 
1213 /*
1214  * Get the symbolic link text from the server for a given filehandle
1215  * of that symlink.
1216  *
1217  *      (get symlink text) PUTFH READLINK
1218  */
1219 static int
1220 getlinktext_otw(mntinfo4_t *mi, nfs_fh4 *fh, char **linktextp, cred_t *cr,
1221     int flags)
1222 {
1223 	COMPOUND4args_clnt args;
1224 	COMPOUND4res_clnt res;
1225 	int doqueue;
1226 	nfs_argop4 argop[2];
1227 	nfs_resop4 *resop;
1228 	READLINK4res *lr_res;
1229 	uint_t len;
1230 	bool_t needrecov = FALSE;
1231 	nfs4_recov_state_t recov_state;
1232 	nfs4_sharedfh_t *sfh;
1233 	nfs4_error_t e;
1234 	int num_retry = nfs4_max_mount_retry;
1235 	int recovery = !(flags & NFS4_GETFH_NEEDSOP);
1236 
1237 	sfh = sfh4_get(fh, mi);
1238 	recov_state.rs_flags = 0;
1239 	recov_state.rs_num_retry_despite_err = 0;
1240 
1241 recov_retry:
1242 	nfs4_error_zinit(&e);
1243 
1244 	args.array_len = 2;
1245 	args.array = argop;
1246 	args.ctag = TAG_GET_SYMLINK;
1247 
1248 	if (! recovery) {
1249 		e.error = nfs4_start_op(mi, NULL, NULL, &recov_state);
1250 		if (e.error) {
1251 			sfh4_rele(&sfh);
1252 			return (e.error);
1253 		}
1254 	}
1255 
1256 	/* 0. putfh symlink fh */
1257 	argop[0].argop = OP_CPUTFH;
1258 	argop[0].nfs_argop4_u.opcputfh.sfh = sfh;
1259 
1260 	/* 1. readlink */
1261 	argop[1].argop = OP_READLINK;
1262 
1263 	doqueue = 1;
1264 
1265 	rfs4call(mi, &args, &res, cr, &doqueue, 0, &e);
1266 
1267 	needrecov = nfs4_needs_recovery(&e, FALSE, mi->mi_vfsp);
1268 
1269 	if (needrecov && !recovery && num_retry-- > 0) {
1270 
1271 		NFS4_DEBUG(nfs4_client_recov_debug, (CE_NOTE,
1272 		    "getlinktext_otw: initiating recovery\n"));
1273 
1274 		if (nfs4_start_recovery(&e, mi, NULL, NULL, NULL, NULL,
1275 		    OP_READLINK, NULL) == FALSE) {
1276 			nfs4_end_op(mi, NULL, NULL, &recov_state, needrecov);
1277 			if (!e.error)
1278 				(void) xdr_free(xdr_COMPOUND4res_clnt,
1279 				    (caddr_t)&res);
1280 			goto recov_retry;
1281 		}
1282 	}
1283 
1284 	/*
1285 	 * If non-NFS4 pcol error and/or we weren't able to recover.
1286 	 */
1287 	if (e.error != 0) {
1288 		if (! recovery)
1289 			nfs4_end_op(mi, NULL, NULL, &recov_state, needrecov);
1290 		sfh4_rele(&sfh);
1291 		return (e.error);
1292 	}
1293 
1294 	if (res.status) {
1295 		e.error = geterrno4(res.status);
1296 		(void) xdr_free(xdr_COMPOUND4res_clnt, (caddr_t)&res);
1297 		if (! recovery)
1298 			nfs4_end_op(mi, NULL, NULL, &recov_state, needrecov);
1299 		sfh4_rele(&sfh);
1300 		return (e.error);
1301 	}
1302 
1303 	/* res.status == NFS4_OK */
1304 	ASSERT(res.status == NFS4_OK);
1305 
1306 	resop = &res.array[1];  /* readlink res */
1307 	lr_res = &resop->nfs_resop4_u.opreadlink;
1308 
1309 	/* treat symlink name as data */
1310 	*linktextp = utf8_to_str(&lr_res->link, &len, NULL);
1311 
1312 	if (! recovery)
1313 		nfs4_end_op(mi, NULL, NULL, &recov_state, needrecov);
1314 	sfh4_rele(&sfh);
1315 	(void) xdr_free(xdr_COMPOUND4res_clnt, (caddr_t)&res);
1316 	return (0);
1317 }
1318 
1319 /*
1320  * Skip over consecutive slashes and "/./" in a pathname.
1321  */
1322 void
1323 pathname_skipslashdot(struct pathname *pnp)
1324 {
1325 	char *c1, *c2;
1326 
1327 	while (pnp->pn_pathlen > 0 && *pnp->pn_path == '/') {
1328 
1329 		c1 = pnp->pn_path + 1;
1330 		c2 = pnp->pn_path + 2;
1331 
1332 		if (*c1 == '.' && (*c2 == '/' || *c2 == '\0')) {
1333 			pnp->pn_path = pnp->pn_path + 2; /* skip "/." */
1334 			pnp->pn_pathlen = pnp->pn_pathlen - 2;
1335 		} else {
1336 			pnp->pn_path++;
1337 			pnp->pn_pathlen--;
1338 		}
1339 	}
1340 }
1341 
1342 /*
1343  * Resolve a symbolic link path. The symlink is in the nth component of
1344  * svp->sv_path and has an nfs4 file handle "fh".
1345  * Upon return, the sv_path will point to the new path that has the nth
1346  * component resolved to its symlink text.
1347  */
1348 int
1349 resolve_sympath(mntinfo4_t *mi, servinfo4_t *svp, int nth, nfs_fh4 *fh,
1350     cred_t *cr, int flags)
1351 {
1352 	char *oldpath;
1353 	char *symlink, *newpath;
1354 	struct pathname oldpn, newpn;
1355 	char component[MAXNAMELEN];
1356 	int i, addlen, error = 0;
1357 	int oldpathlen;
1358 
1359 	/* Get the symbolic link text over the wire. */
1360 	error = getlinktext_otw(mi, fh, &symlink, cr, flags);
1361 
1362 	if (error || symlink == NULL || strlen(symlink) == 0)
1363 		return (error);
1364 
1365 	/*
1366 	 * Compose the new pathname.
1367 	 * Note:
1368 	 *    - only the nth component is resolved for the pathname.
1369 	 *    - pathname.pn_pathlen does not count the ending null byte.
1370 	 */
1371 	(void) nfs_rw_enter_sig(&svp->sv_lock, RW_READER, 0);
1372 	oldpath = svp->sv_path;
1373 	oldpathlen = svp->sv_pathlen;
1374 	if (error = pn_get(oldpath, UIO_SYSSPACE, &oldpn)) {
1375 		nfs_rw_exit(&svp->sv_lock);
1376 		kmem_free(symlink, strlen(symlink) + 1);
1377 		return (error);
1378 	}
1379 	nfs_rw_exit(&svp->sv_lock);
1380 	pn_alloc(&newpn);
1381 
1382 	/*
1383 	 * Skip over previous components from the oldpath so that the
1384 	 * oldpn.pn_path will point to the symlink component. Skip
1385 	 * leading slashes and "/./" (no OP_LOOKUP on ".") so that
1386 	 * pn_getcompnent can get the component.
1387 	 */
1388 	for (i = 1; i < nth; i++) {
1389 		pathname_skipslashdot(&oldpn);
1390 		error = pn_getcomponent(&oldpn, component);
1391 		if (error)
1392 			goto out;
1393 	}
1394 
1395 	/*
1396 	 * Copy the old path upto the component right before the symlink
1397 	 * if the symlink is not an absolute path.
1398 	 */
1399 	if (symlink[0] != '/') {
1400 		addlen = oldpn.pn_path - oldpn.pn_buf;
1401 		bcopy(oldpn.pn_buf, newpn.pn_path, addlen);
1402 		newpn.pn_pathlen += addlen;
1403 		newpn.pn_path += addlen;
1404 		newpn.pn_buf[newpn.pn_pathlen] = '/';
1405 		newpn.pn_pathlen++;
1406 		newpn.pn_path++;
1407 	}
1408 
1409 	/* copy the resolved symbolic link text */
1410 	addlen = strlen(symlink);
1411 	if (newpn.pn_pathlen + addlen >= newpn.pn_bufsize) {
1412 		error = ENAMETOOLONG;
1413 		goto out;
1414 	}
1415 	bcopy(symlink, newpn.pn_path, addlen);
1416 	newpn.pn_pathlen += addlen;
1417 	newpn.pn_path += addlen;
1418 
1419 	/*
1420 	 * Check if there is any remaining path after the symlink component.
1421 	 * First, skip the symlink component.
1422 	 */
1423 	pathname_skipslashdot(&oldpn);
1424 	if (error = pn_getcomponent(&oldpn, component))
1425 		goto out;
1426 
1427 	addlen = pn_pathleft(&oldpn); /* includes counting the slash */
1428 
1429 	/*
1430 	 * Copy the remaining path to the new pathname if there is any.
1431 	 */
1432 	if (addlen > 0) {
1433 		if (newpn.pn_pathlen + addlen >= newpn.pn_bufsize) {
1434 			error = ENAMETOOLONG;
1435 			goto out;
1436 		}
1437 		bcopy(oldpn.pn_path, newpn.pn_path, addlen);
1438 		newpn.pn_pathlen += addlen;
1439 	}
1440 	newpn.pn_buf[newpn.pn_pathlen] = '\0';
1441 
1442 	/* get the newpath and store it in the servinfo4_t */
1443 	newpath = kmem_alloc(newpn.pn_pathlen + 1, KM_SLEEP);
1444 	bcopy(newpn.pn_buf, newpath, newpn.pn_pathlen);
1445 	newpath[newpn.pn_pathlen] = '\0';
1446 
1447 	(void) nfs_rw_enter_sig(&svp->sv_lock, RW_WRITER, 0);
1448 	svp->sv_path = newpath;
1449 	svp->sv_pathlen = strlen(newpath) + 1;
1450 	nfs_rw_exit(&svp->sv_lock);
1451 
1452 	kmem_free(oldpath, oldpathlen);
1453 out:
1454 	kmem_free(symlink, strlen(symlink) + 1);
1455 	pn_free(&newpn);
1456 	pn_free(&oldpn);
1457 
1458 	return (error);
1459 }
1460 
1461 /*
1462  * Get the root filehandle for the given filesystem and server, and update
1463  * svp.
1464  *
1465  * If NFS4_GETFH_NEEDSOP is set, then use nfs4_start_fop and nfs4_end_fop
1466  * to coordinate with recovery.  Otherwise, the caller is assumed to be
1467  * the recovery thread or have already done a start_fop.
1468  *
1469  * Errors are returned by the nfs4_error_t parameter.
1470  */
1471 
1472 static void
1473 nfs4getfh_otw(struct mntinfo4 *mi, servinfo4_t *svp, vtype_t *vtp,
1474     int flags, cred_t *cr, nfs4_error_t *ep)
1475 {
1476 	COMPOUND4args_clnt args;
1477 	COMPOUND4res_clnt res;
1478 	int doqueue = 1;
1479 	nfs_argop4 *argop;
1480 	nfs_resop4 *resop;
1481 	nfs4_ga_res_t *garp;
1482 	int num_argops;
1483 	lookup4_param_t lookuparg;
1484 	nfs_fh4 *tmpfhp;
1485 	nfs_fh4 *resfhp;
1486 	bool_t needrecov = FALSE;
1487 	nfs4_recov_state_t recov_state;
1488 	int llndx;
1489 	int nthcomp;
1490 	int recovery = !(flags & NFS4_GETFH_NEEDSOP);
1491 
1492 	(void) nfs_rw_enter_sig(&svp->sv_lock, RW_READER, 0);
1493 	ASSERT(svp->sv_path != NULL);
1494 	if (svp->sv_path[0] == '\0') {
1495 		nfs_rw_exit(&svp->sv_lock);
1496 		nfs4_error_init(ep, EINVAL);
1497 		return;
1498 	}
1499 	nfs_rw_exit(&svp->sv_lock);
1500 
1501 	recov_state.rs_flags = 0;
1502 	recov_state.rs_num_retry_despite_err = 0;
1503 recov_retry:
1504 	nfs4_error_zinit(ep);
1505 
1506 	if (!recovery) {
1507 		ep->error = nfs4_start_fop(mi, NULL, NULL, OH_MOUNT,
1508 		    &recov_state, NULL);
1509 
1510 		/*
1511 		 * If recovery has been started and this request as
1512 		 * initiated by a mount, then we must wait for recovery
1513 		 * to finish before proceeding, otherwise, the error
1514 		 * cleanup would remove data structures needed by the
1515 		 * recovery thread.
1516 		 */
1517 		if (ep->error) {
1518 			mutex_enter(&mi->mi_lock);
1519 			if (mi->mi_flags & MI4_MOUNTING) {
1520 				mi->mi_flags |= MI4_RECOV_FAIL;
1521 				mi->mi_error = EIO;
1522 
1523 				NFS4_DEBUG(nfs4_client_recov_debug, (CE_NOTE,
1524 				    "nfs4getfh_otw: waiting 4 recovery\n"));
1525 
1526 				while (mi->mi_flags & MI4_RECOV_ACTIV)
1527 					cv_wait(&mi->mi_failover_cv,
1528 					    &mi->mi_lock);
1529 			}
1530 			mutex_exit(&mi->mi_lock);
1531 			return;
1532 		}
1533 
1534 		/*
1535 		 * If the client does not specify a specific flavor to use
1536 		 * and has not gotten a secinfo list from the server yet,
1537 		 * retrieve the secinfo list from the server and use a
1538 		 * flavor from the list to mount.
1539 		 *
1540 		 * If fail to get the secinfo list from the server, then
1541 		 * try the default flavor.
1542 		 */
1543 		if ((svp->sv_flags & SV4_TRYSECDEFAULT) &&
1544 		    svp->sv_secinfo == NULL) {
1545 			(void) nfs4_secinfo_path(mi, cr, FALSE);
1546 		}
1547 	}
1548 
1549 	if (recovery)
1550 		args.ctag = TAG_REMAP_MOUNT;
1551 	else
1552 		args.ctag = TAG_MOUNT;
1553 
1554 	lookuparg.l4_getattrs = LKP4_ALL_ATTRIBUTES;
1555 	lookuparg.argsp = &args;
1556 	lookuparg.resp = &res;
1557 	lookuparg.header_len = 2;	/* Putrootfh, getfh */
1558 	lookuparg.trailer_len = 0;
1559 	lookuparg.ga_bits = FATTR4_FSINFO_MASK;
1560 	lookuparg.mi = mi;
1561 
1562 	(void) nfs_rw_enter_sig(&svp->sv_lock, RW_READER, 0);
1563 	ASSERT(svp->sv_path != NULL);
1564 	llndx = nfs4lookup_setup(svp->sv_path, &lookuparg, 0);
1565 	nfs_rw_exit(&svp->sv_lock);
1566 
1567 	argop = args.array;
1568 	num_argops = args.array_len;
1569 
1570 	/* choose public or root filehandle */
1571 	if (flags & NFS4_GETFH_PUBLIC)
1572 		argop[0].argop = OP_PUTPUBFH;
1573 	else
1574 		argop[0].argop = OP_PUTROOTFH;
1575 
1576 	/* get fh */
1577 	argop[1].argop = OP_GETFH;
1578 
1579 	NFS4_DEBUG(nfs4_client_call_debug, (CE_NOTE,
1580 	    "nfs4getfh_otw: %s call, mi 0x%p",
1581 	    needrecov ? "recov" : "first", (void *)mi));
1582 
1583 	rfs4call(mi, &args, &res, cr, &doqueue, RFSCALL_SOFT, ep);
1584 
1585 	needrecov = nfs4_needs_recovery(ep, FALSE, mi->mi_vfsp);
1586 
1587 	if (needrecov) {
1588 		bool_t abort;
1589 
1590 		if (recovery) {
1591 			nfs4args_lookup_free(argop, num_argops);
1592 			kmem_free(argop,
1593 			    lookuparg.arglen * sizeof (nfs_argop4));
1594 			if (!ep->error)
1595 				(void) xdr_free(xdr_COMPOUND4res_clnt,
1596 				    (caddr_t)&res);
1597 			return;
1598 		}
1599 
1600 		NFS4_DEBUG(nfs4_client_recov_debug,
1601 		    (CE_NOTE, "nfs4getfh_otw: initiating recovery\n"));
1602 
1603 		abort = nfs4_start_recovery(ep, mi, NULL,
1604 		    NULL, NULL, NULL, OP_GETFH, NULL);
1605 		if (!ep->error) {
1606 			ep->error = geterrno4(res.status);
1607 			(void) xdr_free(xdr_COMPOUND4res_clnt, (caddr_t)&res);
1608 		}
1609 		nfs4args_lookup_free(argop, num_argops);
1610 		kmem_free(argop, lookuparg.arglen * sizeof (nfs_argop4));
1611 		nfs4_end_fop(mi, NULL, NULL, OH_MOUNT, &recov_state, needrecov);
1612 		/* have another go? */
1613 		if (abort == FALSE)
1614 			goto recov_retry;
1615 		return;
1616 	}
1617 
1618 	/*
1619 	 * No recovery, but check if error is set.
1620 	 */
1621 	if (ep->error)  {
1622 		nfs4args_lookup_free(argop, num_argops);
1623 		kmem_free(argop, lookuparg.arglen * sizeof (nfs_argop4));
1624 		if (!recovery)
1625 			nfs4_end_fop(mi, NULL, NULL, OH_MOUNT, &recov_state,
1626 			    needrecov);
1627 		return;
1628 	}
1629 
1630 is_link_err:
1631 
1632 	/* for non-recovery errors */
1633 	if (res.status && res.status != NFS4ERR_SYMLINK) {
1634 		if (!recovery) {
1635 			nfs4_end_fop(mi, NULL, NULL, OH_MOUNT, &recov_state,
1636 			    needrecov);
1637 		}
1638 		nfs4args_lookup_free(argop, num_argops);
1639 		kmem_free(argop, lookuparg.arglen * sizeof (nfs_argop4));
1640 		(void) xdr_free(xdr_COMPOUND4res_clnt, (caddr_t)&res);
1641 		return;
1642 	}
1643 
1644 	/*
1645 	 * If any intermediate component in the path is a symbolic link,
1646 	 * resolve the symlink, then try mount again using the new path.
1647 	 */
1648 	if (res.status == NFS4ERR_SYMLINK) {
1649 		int where;
1650 
1651 		/*
1652 		 * This must be from OP_LOOKUP failure. The (cfh) for this
1653 		 * OP_LOOKUP is a symlink node. Found out where the
1654 		 * OP_GETFH is for the (cfh) that is a symlink node.
1655 		 *
1656 		 * Example:
1657 		 * (mount) PUTROOTFH, GETFH, LOOKUP comp1, GETFH, GETATTR,
1658 		 * LOOKUP comp2, GETFH, GETATTR, LOOKUP comp3, GETFH, GETATTR
1659 		 *
1660 		 * LOOKUP comp3 fails with SYMLINK because comp2 is a symlink.
1661 		 * In this case, where = 7, nthcomp = 2.
1662 		 */
1663 		where = res.array_len - 2;
1664 		ASSERT(where > 0);
1665 
1666 		resop = &res.array[where - 1];
1667 		ASSERT(resop->resop == OP_GETFH);
1668 		tmpfhp = &resop->nfs_resop4_u.opgetfh.object;
1669 		nthcomp = res.array_len/3 - 1;
1670 
1671 		/*
1672 		 * Need to call nfs4_end_op before resolve_sympath to avoid
1673 		 * potential nfs4_start_op deadlock.
1674 		 */
1675 		if (!recovery)
1676 			nfs4_end_fop(mi, NULL, NULL, OH_MOUNT, &recov_state,
1677 			    needrecov);
1678 
1679 		ep->error = resolve_sympath(mi, svp, nthcomp, tmpfhp, cr,
1680 		    flags);
1681 
1682 		nfs4args_lookup_free(argop, num_argops);
1683 		kmem_free(argop, lookuparg.arglen * sizeof (nfs_argop4));
1684 		(void) xdr_free(xdr_COMPOUND4res_clnt, (caddr_t)&res);
1685 
1686 		if (ep->error)
1687 			return;
1688 
1689 		goto recov_retry;
1690 	}
1691 
1692 	/* getfh */
1693 	resop = &res.array[res.array_len - 2];
1694 	ASSERT(resop->resop == OP_GETFH);
1695 	resfhp = &resop->nfs_resop4_u.opgetfh.object;
1696 
1697 	/* getattr fsinfo res */
1698 	resop++;
1699 	garp = &resop->nfs_resop4_u.opgetattr.ga_res;
1700 
1701 	*vtp = garp->n4g_va.va_type;
1702 
1703 	mi->mi_fh_expire_type = garp->n4g_ext_res->n4g_fet;
1704 
1705 	mutex_enter(&mi->mi_lock);
1706 	if (garp->n4g_ext_res->n4g_pc4.pc4_link_support)
1707 		mi->mi_flags |= MI4_LINK;
1708 	if (garp->n4g_ext_res->n4g_pc4.pc4_symlink_support)
1709 		mi->mi_flags |= MI4_SYMLINK;
1710 	if (garp->n4g_ext_res->n4g_suppattrs & FATTR4_ACL_MASK)
1711 		mi->mi_flags |= MI4_ACL;
1712 	mutex_exit(&mi->mi_lock);
1713 
1714 	if (garp->n4g_ext_res->n4g_maxread == 0)
1715 		mi->mi_tsize =
1716 		    MIN(MAXBSIZE, mi->mi_tsize);
1717 	else
1718 		mi->mi_tsize =
1719 		    MIN(garp->n4g_ext_res->n4g_maxread,
1720 		    mi->mi_tsize);
1721 
1722 	if (garp->n4g_ext_res->n4g_maxwrite == 0)
1723 		mi->mi_stsize =
1724 		    MIN(MAXBSIZE, mi->mi_stsize);
1725 	else
1726 		mi->mi_stsize =
1727 		    MIN(garp->n4g_ext_res->n4g_maxwrite,
1728 		    mi->mi_stsize);
1729 
1730 	if (garp->n4g_ext_res->n4g_maxfilesize != 0)
1731 		mi->mi_maxfilesize =
1732 		    MIN(garp->n4g_ext_res->n4g_maxfilesize,
1733 		    mi->mi_maxfilesize);
1734 
1735 	/*
1736 	 * If the final component is a a symbolic link, resolve the symlink,
1737 	 * then try mount again using the new path.
1738 	 *
1739 	 * Assume no symbolic link for root filesysm "/".
1740 	 */
1741 	if (*vtp == VLNK) {
1742 		/*
1743 		 * nthcomp is the total result length minus
1744 		 * the 1st 2 OPs (PUTROOTFH, GETFH),
1745 		 * then divided by 3 (LOOKUP,GETFH,GETATTR)
1746 		 *
1747 		 * e.g. PUTROOTFH GETFH LOOKUP 1st-comp GETFH GETATTR
1748 		 *	LOOKUP 2nd-comp GETFH GETATTR
1749 		 *
1750 		 *	(8 - 2)/3 = 2
1751 		 */
1752 		nthcomp = (res.array_len - 2)/3;
1753 
1754 		/*
1755 		 * Need to call nfs4_end_op before resolve_sympath to avoid
1756 		 * potential nfs4_start_op deadlock. See RFE 4777612.
1757 		 */
1758 		if (!recovery)
1759 			nfs4_end_fop(mi, NULL, NULL, OH_MOUNT, &recov_state,
1760 			    needrecov);
1761 
1762 		ep->error = resolve_sympath(mi, svp, nthcomp, resfhp, cr,
1763 		    flags);
1764 
1765 		nfs4args_lookup_free(argop, num_argops);
1766 		kmem_free(argop, lookuparg.arglen * sizeof (nfs_argop4));
1767 		(void) xdr_free(xdr_COMPOUND4res_clnt, (caddr_t)&res);
1768 
1769 		if (ep->error)
1770 			return;
1771 
1772 		goto recov_retry;
1773 	}
1774 
1775 	/*
1776 	 * We need to figure out where in the compound the getfh
1777 	 * for the parent directory is. If the object to be mounted is
1778 	 * the root, then there is no lookup at all:
1779 	 * PUTROOTFH, GETFH.
1780 	 * If the object to be mounted is in the root, then the compound is:
1781 	 * PUTROOTFH, GETFH, LOOKUP, GETFH, GETATTR.
1782 	 * In either of these cases, the index of the GETFH is 1.
1783 	 * If it is not at the root, then it's something like:
1784 	 * PUTROOTFH, GETFH, LOOKUP, GETFH, GETATTR,
1785 	 * LOOKUP, GETFH, GETATTR
1786 	 * In this case, the index is llndx (last lookup index) - 2.
1787 	 */
1788 	if (llndx == -1 || llndx == 2)
1789 		resop = &res.array[1];
1790 	else {
1791 		ASSERT(llndx > 2);
1792 		resop = &res.array[llndx-2];
1793 	}
1794 
1795 	ASSERT(resop->resop == OP_GETFH);
1796 	tmpfhp = &resop->nfs_resop4_u.opgetfh.object;
1797 
1798 	/* save the filehandles for the replica */
1799 	(void) nfs_rw_enter_sig(&svp->sv_lock, RW_WRITER, 0);
1800 	ASSERT(tmpfhp->nfs_fh4_len <= NFS4_FHSIZE);
1801 	svp->sv_pfhandle.fh_len = tmpfhp->nfs_fh4_len;
1802 	bcopy(tmpfhp->nfs_fh4_val, svp->sv_pfhandle.fh_buf,
1803 	    tmpfhp->nfs_fh4_len);
1804 	ASSERT(resfhp->nfs_fh4_len <= NFS4_FHSIZE);
1805 	svp->sv_fhandle.fh_len = resfhp->nfs_fh4_len;
1806 	bcopy(resfhp->nfs_fh4_val, svp->sv_fhandle.fh_buf, resfhp->nfs_fh4_len);
1807 
1808 	/* initialize fsid and supp_attrs for server fs */
1809 	svp->sv_fsid = garp->n4g_fsid;
1810 	svp->sv_supp_attrs =
1811 	    garp->n4g_ext_res->n4g_suppattrs | FATTR4_MANDATTR_MASK;
1812 
1813 	nfs_rw_exit(&svp->sv_lock);
1814 
1815 	nfs4args_lookup_free(argop, num_argops);
1816 	kmem_free(argop, lookuparg.arglen * sizeof (nfs_argop4));
1817 	(void) xdr_free(xdr_COMPOUND4res_clnt, (caddr_t)&res);
1818 	if (!recovery)
1819 		nfs4_end_fop(mi, NULL, NULL, OH_MOUNT, &recov_state, needrecov);
1820 }
1821 
1822 static ushort_t nfs4_max_threads = 8;	/* max number of active async threads */
1823 static uint_t nfs4_bsize = 32 * 1024;	/* client `block' size */
1824 static uint_t nfs4_async_clusters = 1;	/* # of reqs from each async queue */
1825 static uint_t nfs4_cots_timeo = NFS_COTS_TIMEO;
1826 
1827 /*
1828  * Remap the root filehandle for the given filesystem.
1829  *
1830  * results returned via the nfs4_error_t parameter.
1831  */
1832 void
1833 nfs4_remap_root(mntinfo4_t *mi, nfs4_error_t *ep, int flags)
1834 {
1835 	struct servinfo4 *svp;
1836 	vtype_t vtype;
1837 	nfs_fh4 rootfh;
1838 	int getfh_flags;
1839 	char *orig_sv_path;
1840 	int orig_sv_pathlen, num_retry;
1841 
1842 	mutex_enter(&mi->mi_lock);
1843 
1844 remap_retry:
1845 	svp = mi->mi_curr_serv;
1846 	getfh_flags =
1847 	    (flags & NFS4_REMAP_NEEDSOP) ? NFS4_GETFH_NEEDSOP : 0;
1848 	getfh_flags |=
1849 	    (mi->mi_flags & MI4_PUBLIC) ? NFS4_GETFH_PUBLIC : 0;
1850 	mutex_exit(&mi->mi_lock);
1851 
1852 	/*
1853 	 * Just in case server path being mounted contains
1854 	 * symlinks and fails w/STALE, save the initial sv_path
1855 	 * so we can redrive the initial mount compound with the
1856 	 * initial sv_path -- not a symlink-expanded version.
1857 	 *
1858 	 * This could only happen if a symlink was expanded
1859 	 * and the expanded mount compound failed stale.  Because
1860 	 * it could be the case that the symlink was removed at
1861 	 * the server (and replaced with another symlink/dir,
1862 	 * we need to use the initial sv_path when attempting
1863 	 * to re-lookup everything and recover.
1864 	 */
1865 	(void) nfs_rw_enter_sig(&svp->sv_lock, RW_READER, 0);
1866 	orig_sv_pathlen = svp->sv_pathlen;
1867 	orig_sv_path = kmem_alloc(orig_sv_pathlen, KM_SLEEP);
1868 	bcopy(svp->sv_path, orig_sv_path, orig_sv_pathlen);
1869 	nfs_rw_exit(&svp->sv_lock);
1870 
1871 	num_retry = nfs4_max_mount_retry;
1872 
1873 	do {
1874 		/*
1875 		 * Get the root fh from the server.  Retry nfs4_max_mount_retry
1876 		 * (2) times if it fails with STALE since the recovery
1877 		 * infrastructure doesn't do STALE recovery for components
1878 		 * of the server path to the object being mounted.
1879 		 */
1880 		nfs4getfh_otw(mi, svp, &vtype, getfh_flags, CRED(), ep);
1881 
1882 		if (ep->error == 0 && ep->stat == NFS4_OK)
1883 			break;
1884 
1885 		/*
1886 		 * For some reason, the mount compound failed.  Before
1887 		 * retrying, we need to restore the original sv_path
1888 		 * because it might have contained symlinks that were
1889 		 * expanded by nfsgetfh_otw before the failure occurred.
1890 		 * replace current sv_path with orig sv_path -- just in case
1891 		 * it changed due to embedded symlinks.
1892 		 */
1893 		(void) nfs_rw_enter_sig(&svp->sv_lock, RW_READER, 0);
1894 		if (orig_sv_pathlen != svp->sv_pathlen) {
1895 			kmem_free(svp->sv_path, svp->sv_pathlen);
1896 			svp->sv_path = kmem_alloc(orig_sv_pathlen, KM_SLEEP);
1897 			svp->sv_pathlen = orig_sv_pathlen;
1898 		}
1899 		bcopy(orig_sv_path, svp->sv_path, orig_sv_pathlen);
1900 		nfs_rw_exit(&svp->sv_lock);
1901 
1902 	} while (num_retry-- > 0);
1903 
1904 	kmem_free(orig_sv_path, orig_sv_pathlen);
1905 
1906 	if (ep->error != 0 || ep->stat != 0) {
1907 		return;
1908 	}
1909 
1910 	if (vtype != VNON && vtype != mi->mi_type) {
1911 		/* shouldn't happen */
1912 		zcmn_err(mi->mi_zone->zone_id, CE_WARN,
1913 		    "nfs4_remap_root: server root vnode type (%d) doesn't "
1914 		    "match mount info (%d)", vtype, mi->mi_type);
1915 	}
1916 
1917 	(void) nfs_rw_enter_sig(&svp->sv_lock, RW_READER, 0);
1918 	rootfh.nfs_fh4_val = svp->sv_fhandle.fh_buf;
1919 	rootfh.nfs_fh4_len = svp->sv_fhandle.fh_len;
1920 	nfs_rw_exit(&svp->sv_lock);
1921 	sfh4_update(mi->mi_rootfh, &rootfh);
1922 
1923 	/*
1924 	 * It's possible that recovery took place on the filesystem
1925 	 * and the server has been updated between the time we did
1926 	 * the nfs4getfh_otw and now. Re-drive the otw operation
1927 	 * to make sure we have a good fh.
1928 	 */
1929 	mutex_enter(&mi->mi_lock);
1930 	if (mi->mi_curr_serv != svp)
1931 		goto remap_retry;
1932 
1933 	mutex_exit(&mi->mi_lock);
1934 }
1935 
1936 static int
1937 nfs4rootvp(vnode_t **rtvpp, vfs_t *vfsp, struct servinfo4 *svp_head,
1938     int flags, cred_t *cr, zone_t *zone)
1939 {
1940 	vnode_t *rtvp = NULL;
1941 	mntinfo4_t *mi;
1942 	dev_t nfs_dev;
1943 	int error = 0;
1944 	rnode4_t *rp;
1945 	int i;
1946 	struct vattr va;
1947 	vtype_t vtype = VNON;
1948 	vtype_t tmp_vtype = VNON;
1949 	struct servinfo4 *firstsvp = NULL, *svp = svp_head;
1950 	nfs4_oo_hash_bucket_t *bucketp;
1951 	nfs_fh4 fh;
1952 	char *droptext = "";
1953 	struct nfs_stats *nfsstatsp;
1954 	nfs4_fname_t *mfname;
1955 	nfs4_error_t e;
1956 	char *orig_sv_path;
1957 	int orig_sv_pathlen, num_retry, removed;
1958 	cred_t *lcr = NULL, *tcr = cr;
1959 
1960 	nfsstatsp = zone_getspecific(nfsstat_zone_key, nfs_zone());
1961 	ASSERT(nfsstatsp != NULL);
1962 
1963 	ASSERT(nfs_zone() == zone);
1964 	ASSERT(crgetref(cr));
1965 
1966 	/*
1967 	 * Create a mount record and link it to the vfs struct.
1968 	 */
1969 	mi = kmem_zalloc(sizeof (*mi), KM_SLEEP);
1970 	mutex_init(&mi->mi_lock, NULL, MUTEX_DEFAULT, NULL);
1971 	nfs_rw_init(&mi->mi_recovlock, NULL, RW_DEFAULT, NULL);
1972 	nfs_rw_init(&mi->mi_rename_lock, NULL, RW_DEFAULT, NULL);
1973 	nfs_rw_init(&mi->mi_fh_lock, NULL, RW_DEFAULT, NULL);
1974 
1975 	if (!(flags & NFSMNT_SOFT))
1976 		mi->mi_flags |= MI4_HARD;
1977 	if ((flags & NFSMNT_NOPRINT))
1978 		mi->mi_flags |= MI4_NOPRINT;
1979 	if (flags & NFSMNT_INT)
1980 		mi->mi_flags |= MI4_INT;
1981 	if (flags & NFSMNT_PUBLIC)
1982 		mi->mi_flags |= MI4_PUBLIC;
1983 	if (flags & NFSMNT_MIRRORMOUNT)
1984 		mi->mi_flags |= MI4_MIRRORMOUNT;
1985 	mi->mi_retrans = NFS_RETRIES;
1986 	if (svp->sv_knconf->knc_semantics == NC_TPI_COTS_ORD ||
1987 	    svp->sv_knconf->knc_semantics == NC_TPI_COTS)
1988 		mi->mi_timeo = nfs4_cots_timeo;
1989 	else
1990 		mi->mi_timeo = NFS_TIMEO;
1991 	mi->mi_prog = NFS_PROGRAM;
1992 	mi->mi_vers = NFS_V4;
1993 	mi->mi_rfsnames = rfsnames_v4;
1994 	mi->mi_reqs = nfsstatsp->nfs_stats_v4.rfsreqcnt_ptr;
1995 	cv_init(&mi->mi_failover_cv, NULL, CV_DEFAULT, NULL);
1996 	mi->mi_servers = svp;
1997 	mi->mi_curr_serv = svp;
1998 	mi->mi_acregmin = SEC2HR(ACREGMIN);
1999 	mi->mi_acregmax = SEC2HR(ACREGMAX);
2000 	mi->mi_acdirmin = SEC2HR(ACDIRMIN);
2001 	mi->mi_acdirmax = SEC2HR(ACDIRMAX);
2002 	mi->mi_fh_expire_type = FH4_PERSISTENT;
2003 	mi->mi_clientid_next = NULL;
2004 	mi->mi_clientid_prev = NULL;
2005 	mi->mi_grace_wait = 0;
2006 	mi->mi_error = 0;
2007 	mi->mi_srvsettime = 0;
2008 
2009 	mi->mi_count = 1;
2010 
2011 	mi->mi_tsize = nfs4_tsize(svp->sv_knconf);
2012 	mi->mi_stsize = mi->mi_tsize;
2013 
2014 	if (flags & NFSMNT_DIRECTIO)
2015 		mi->mi_flags |= MI4_DIRECTIO;
2016 
2017 	mi->mi_flags |= MI4_MOUNTING;
2018 
2019 	/*
2020 	 * Make a vfs struct for nfs.  We do this here instead of below
2021 	 * because rtvp needs a vfs before we can do a getattr on it.
2022 	 *
2023 	 * Assign a unique device id to the mount
2024 	 */
2025 	mutex_enter(&nfs_minor_lock);
2026 	do {
2027 		nfs_minor = (nfs_minor + 1) & MAXMIN32;
2028 		nfs_dev = makedevice(nfs_major, nfs_minor);
2029 	} while (vfs_devismounted(nfs_dev));
2030 	mutex_exit(&nfs_minor_lock);
2031 
2032 	vfsp->vfs_dev = nfs_dev;
2033 	vfs_make_fsid(&vfsp->vfs_fsid, nfs_dev, nfs4fstyp);
2034 	vfsp->vfs_data = (caddr_t)mi;
2035 	vfsp->vfs_fstype = nfsfstyp;
2036 	vfsp->vfs_bsize = nfs4_bsize;
2037 
2038 	/*
2039 	 * Initialize fields used to support async putpage operations.
2040 	 */
2041 	for (i = 0; i < NFS4_ASYNC_TYPES; i++)
2042 		mi->mi_async_clusters[i] = nfs4_async_clusters;
2043 	mi->mi_async_init_clusters = nfs4_async_clusters;
2044 	mi->mi_async_curr = &mi->mi_async_reqs[0];
2045 	mi->mi_max_threads = nfs4_max_threads;
2046 	mutex_init(&mi->mi_async_lock, NULL, MUTEX_DEFAULT, NULL);
2047 	cv_init(&mi->mi_async_reqs_cv, NULL, CV_DEFAULT, NULL);
2048 	cv_init(&mi->mi_async_work_cv, NULL, CV_DEFAULT, NULL);
2049 	cv_init(&mi->mi_async_cv, NULL, CV_DEFAULT, NULL);
2050 	cv_init(&mi->mi_inact_req_cv, NULL, CV_DEFAULT, NULL);
2051 
2052 	mi->mi_vfsp = vfsp;
2053 	zone_hold(mi->mi_zone = zone);
2054 	nfs4_mi_zonelist_add(mi);
2055 
2056 	/*
2057 	 * Initialize the <open owner/cred> hash table.
2058 	 */
2059 	for (i = 0; i < NFS4_NUM_OO_BUCKETS; i++) {
2060 		bucketp = &(mi->mi_oo_list[i]);
2061 		mutex_init(&bucketp->b_lock, NULL, MUTEX_DEFAULT, NULL);
2062 		list_create(&bucketp->b_oo_hash_list,
2063 		    sizeof (nfs4_open_owner_t),
2064 		    offsetof(nfs4_open_owner_t, oo_hash_node));
2065 	}
2066 
2067 	/*
2068 	 * Initialize the freed open owner list.
2069 	 */
2070 	mi->mi_foo_num = 0;
2071 	mi->mi_foo_max = NFS4_NUM_FREED_OPEN_OWNERS;
2072 	list_create(&mi->mi_foo_list, sizeof (nfs4_open_owner_t),
2073 	    offsetof(nfs4_open_owner_t, oo_foo_node));
2074 
2075 	list_create(&mi->mi_lost_state, sizeof (nfs4_lost_rqst_t),
2076 	    offsetof(nfs4_lost_rqst_t, lr_node));
2077 
2078 	list_create(&mi->mi_bseqid_list, sizeof (nfs4_bseqid_entry_t),
2079 	    offsetof(nfs4_bseqid_entry_t, bs_node));
2080 
2081 	/*
2082 	 * Initialize the msg buffer.
2083 	 */
2084 	list_create(&mi->mi_msg_list, sizeof (nfs4_debug_msg_t),
2085 	    offsetof(nfs4_debug_msg_t, msg_node));
2086 	mi->mi_msg_count = 0;
2087 	mutex_init(&mi->mi_msg_list_lock, NULL, MUTEX_DEFAULT, NULL);
2088 
2089 	/*
2090 	 * Initialize kstats
2091 	 */
2092 	nfs4_mnt_kstat_init(vfsp);
2093 
2094 	/*
2095 	 * Initialize the shared filehandle pool, and get the fname for
2096 	 * the filesystem root.
2097 	 */
2098 	sfh4_createtab(&mi->mi_filehandles);
2099 	mi->mi_fname = fn_get(NULL, ".");
2100 
2101 	/*
2102 	 * Save server path we're attempting to mount.
2103 	 */
2104 	(void) nfs_rw_enter_sig(&svp->sv_lock, RW_WRITER, 0);
2105 	orig_sv_pathlen = svp_head->sv_pathlen;
2106 	orig_sv_path = kmem_alloc(svp_head->sv_pathlen, KM_SLEEP);
2107 	bcopy(svp_head->sv_path, orig_sv_path, svp_head->sv_pathlen);
2108 	nfs_rw_exit(&svp->sv_lock);
2109 
2110 	/*
2111 	 * Make the GETFH call to get root fh for each replica.
2112 	 */
2113 	if (svp_head->sv_next)
2114 		droptext = ", dropping replica";
2115 
2116 	/*
2117 	 * If the uid is set then set the creds for secure mounts
2118 	 * by proxy processes such as automountd.
2119 	 */
2120 	(void) nfs_rw_enter_sig(&svp->sv_lock, RW_READER, 0);
2121 	if (svp->sv_secdata->uid != 0) {
2122 		lcr = crdup(cr);
2123 		(void) crsetugid(lcr, svp->sv_secdata->uid, crgetgid(cr));
2124 		tcr = lcr;
2125 	}
2126 	nfs_rw_exit(&svp->sv_lock);
2127 	for (svp = svp_head; svp; svp = svp->sv_next) {
2128 		if (nfs4_chkdup_servinfo4(svp_head, svp)) {
2129 			nfs_cmn_err(error, CE_WARN,
2130 			    VERS_MSG "Host %s is a duplicate%s",
2131 			    svp->sv_hostname, droptext);
2132 			(void) nfs_rw_enter_sig(&svp->sv_lock, RW_WRITER, 0);
2133 			svp->sv_flags |= SV4_NOTINUSE;
2134 			nfs_rw_exit(&svp->sv_lock);
2135 			continue;
2136 		}
2137 		mi->mi_curr_serv = svp;
2138 
2139 		/*
2140 		 * Just in case server path being mounted contains
2141 		 * symlinks and fails w/STALE, save the initial sv_path
2142 		 * so we can redrive the initial mount compound with the
2143 		 * initial sv_path -- not a symlink-expanded version.
2144 		 *
2145 		 * This could only happen if a symlink was expanded
2146 		 * and the expanded mount compound failed stale.  Because
2147 		 * it could be the case that the symlink was removed at
2148 		 * the server (and replaced with another symlink/dir,
2149 		 * we need to use the initial sv_path when attempting
2150 		 * to re-lookup everything and recover.
2151 		 *
2152 		 * Other mount errors should evenutally be handled here also
2153 		 * (NFS4ERR_DELAY, NFS4ERR_RESOURCE).  For now, all mount
2154 		 * failures will result in mount being redriven a few times.
2155 		 */
2156 		num_retry = nfs4_max_mount_retry;
2157 		do {
2158 			nfs4getfh_otw(mi, svp, &tmp_vtype,
2159 			    ((flags & NFSMNT_PUBLIC) ? NFS4_GETFH_PUBLIC : 0) |
2160 			    NFS4_GETFH_NEEDSOP, tcr, &e);
2161 
2162 			if (e.error == 0 && e.stat == NFS4_OK)
2163 				break;
2164 
2165 			/*
2166 			 * replace current sv_path with orig sv_path -- just in
2167 			 * case it changed due to embedded symlinks.
2168 			 */
2169 			(void) nfs_rw_enter_sig(&svp->sv_lock, RW_READER, 0);
2170 			if (orig_sv_pathlen != svp->sv_pathlen) {
2171 				kmem_free(svp->sv_path, svp->sv_pathlen);
2172 				svp->sv_path = kmem_alloc(orig_sv_pathlen,
2173 				    KM_SLEEP);
2174 				svp->sv_pathlen = orig_sv_pathlen;
2175 			}
2176 			bcopy(orig_sv_path, svp->sv_path, orig_sv_pathlen);
2177 			nfs_rw_exit(&svp->sv_lock);
2178 
2179 		} while (num_retry-- > 0);
2180 
2181 		error = e.error ? e.error : geterrno4(e.stat);
2182 		if (error) {
2183 			nfs_cmn_err(error, CE_WARN,
2184 			    VERS_MSG "initial call to %s failed%s: %m",
2185 			    svp->sv_hostname, droptext);
2186 			(void) nfs_rw_enter_sig(&svp->sv_lock, RW_WRITER, 0);
2187 			svp->sv_flags |= SV4_NOTINUSE;
2188 			nfs_rw_exit(&svp->sv_lock);
2189 			mi->mi_flags &= ~MI4_RECOV_FAIL;
2190 			mi->mi_error = 0;
2191 			continue;
2192 		}
2193 
2194 		if (tmp_vtype == VBAD) {
2195 			zcmn_err(mi->mi_zone->zone_id, CE_WARN,
2196 			    VERS_MSG "%s returned a bad file type for "
2197 			    "root%s", svp->sv_hostname, droptext);
2198 			(void) nfs_rw_enter_sig(&svp->sv_lock, RW_WRITER, 0);
2199 			svp->sv_flags |= SV4_NOTINUSE;
2200 			nfs_rw_exit(&svp->sv_lock);
2201 			continue;
2202 		}
2203 
2204 		if (vtype == VNON) {
2205 			vtype = tmp_vtype;
2206 		} else if (vtype != tmp_vtype) {
2207 			zcmn_err(mi->mi_zone->zone_id, CE_WARN,
2208 			    VERS_MSG "%s returned a different file type "
2209 			    "for root%s", svp->sv_hostname, droptext);
2210 			(void) nfs_rw_enter_sig(&svp->sv_lock, RW_WRITER, 0);
2211 			svp->sv_flags |= SV4_NOTINUSE;
2212 			nfs_rw_exit(&svp->sv_lock);
2213 			continue;
2214 		}
2215 		if (firstsvp == NULL)
2216 			firstsvp = svp;
2217 	}
2218 
2219 	kmem_free(orig_sv_path, orig_sv_pathlen);
2220 
2221 	if (firstsvp == NULL) {
2222 		if (error == 0)
2223 			error = ENOENT;
2224 		goto bad;
2225 	}
2226 
2227 	mi->mi_curr_serv = svp = firstsvp;
2228 	(void) nfs_rw_enter_sig(&svp->sv_lock, RW_READER, 0);
2229 	ASSERT((mi->mi_curr_serv->sv_flags & SV4_NOTINUSE) == 0);
2230 	fh.nfs_fh4_len = svp->sv_fhandle.fh_len;
2231 	fh.nfs_fh4_val = svp->sv_fhandle.fh_buf;
2232 	mi->mi_rootfh = sfh4_get(&fh, mi);
2233 	fh.nfs_fh4_len = svp->sv_pfhandle.fh_len;
2234 	fh.nfs_fh4_val = svp->sv_pfhandle.fh_buf;
2235 	mi->mi_srvparentfh = sfh4_get(&fh, mi);
2236 	nfs_rw_exit(&svp->sv_lock);
2237 
2238 	/*
2239 	 * Make the root vnode without attributes.
2240 	 */
2241 	mfname = mi->mi_fname;
2242 	fn_hold(mfname);
2243 	rtvp = makenfs4node_by_fh(mi->mi_rootfh, NULL,
2244 	    &mfname, NULL, mi, cr, gethrtime());
2245 	rtvp->v_type = vtype;
2246 
2247 	mi->mi_curread = mi->mi_tsize;
2248 	mi->mi_curwrite = mi->mi_stsize;
2249 
2250 	/*
2251 	 * Start the manager thread responsible for handling async worker
2252 	 * threads.
2253 	 */
2254 	MI4_HOLD(mi);
2255 	VFS_HOLD(vfsp);	/* add reference for thread */
2256 	mi->mi_manager_thread = zthread_create(NULL, 0, nfs4_async_manager,
2257 	    vfsp, 0, minclsyspri);
2258 	ASSERT(mi->mi_manager_thread != NULL);
2259 
2260 	/*
2261 	 * Create the thread that handles over-the-wire calls for
2262 	 * VOP_INACTIVE.
2263 	 * This needs to happen after the manager thread is created.
2264 	 */
2265 	MI4_HOLD(mi);
2266 	mi->mi_inactive_thread = zthread_create(NULL, 0, nfs4_inactive_thread,
2267 	    mi, 0, minclsyspri);
2268 	ASSERT(mi->mi_inactive_thread != NULL);
2269 
2270 	/* If we didn't get a type, get one now */
2271 	if (rtvp->v_type == VNON) {
2272 		va.va_mask = AT_TYPE;
2273 		error = nfs4getattr(rtvp, &va, tcr);
2274 		if (error)
2275 			goto bad;
2276 		rtvp->v_type = va.va_type;
2277 	}
2278 
2279 	mi->mi_type = rtvp->v_type;
2280 
2281 	mutex_enter(&mi->mi_lock);
2282 	mi->mi_flags &= ~MI4_MOUNTING;
2283 	mutex_exit(&mi->mi_lock);
2284 
2285 	*rtvpp = rtvp;
2286 	if (lcr != NULL)
2287 		crfree(lcr);
2288 
2289 	return (0);
2290 bad:
2291 	/*
2292 	 * An error occurred somewhere, need to clean up...
2293 	 */
2294 	if (lcr != NULL)
2295 		crfree(lcr);
2296 
2297 	if (rtvp != NULL) {
2298 		/*
2299 		 * We need to release our reference to the root vnode and
2300 		 * destroy the mntinfo4 struct that we just created.
2301 		 */
2302 		rp = VTOR4(rtvp);
2303 		if (rp->r_flags & R4HASHED)
2304 			rp4_rmhash(rp);
2305 		VN_RELE(rtvp);
2306 	}
2307 	nfs4_async_stop(vfsp);
2308 	nfs4_async_manager_stop(vfsp);
2309 	removed = nfs4_mi_zonelist_remove(mi);
2310 	if (removed)
2311 		zone_rele(mi->mi_zone);
2312 
2313 	/*
2314 	 * This releases the initial "hold" of the mi since it will never
2315 	 * be referenced by the vfsp.  Also, when mount returns to vfs.c
2316 	 * with an error, the vfsp will be destroyed, not rele'd.
2317 	 */
2318 	MI4_RELE(mi);
2319 
2320 	*rtvpp = NULL;
2321 	return (error);
2322 }
2323 
2324 /*
2325  * vfs operations
2326  */
2327 static int
2328 nfs4_unmount(vfs_t *vfsp, int flag, cred_t *cr)
2329 {
2330 	mntinfo4_t		*mi;
2331 	ushort_t		omax;
2332 	int			removed;
2333 
2334 	bool_t			must_unlock = FALSE;
2335 
2336 	nfs4_ephemeral_tree_t	*eph_tree;
2337 
2338 	if (secpolicy_fs_unmount(cr, vfsp) != 0)
2339 		return (EPERM);
2340 
2341 	mi = VFTOMI4(vfsp);
2342 
2343 	if (flag & MS_FORCE) {
2344 		vfsp->vfs_flag |= VFS_UNMOUNTED;
2345 		if (nfs_zone() != mi->mi_zone) {
2346 			/*
2347 			 * If the request is coming from the wrong zone,
2348 			 * we don't want to create any new threads, and
2349 			 * performance is not a concern.  Do everything
2350 			 * inline.
2351 			 */
2352 			NFS4_DEBUG(nfs4_client_zone_debug, (CE_NOTE,
2353 			    "nfs4_unmount x-zone forced unmount of vfs %p\n",
2354 			    (void *)vfsp));
2355 			nfs4_free_mount(vfsp, flag, cr);
2356 		} else {
2357 			/*
2358 			 * Free data structures asynchronously, to avoid
2359 			 * blocking the current thread (for performance
2360 			 * reasons only).
2361 			 */
2362 			async_free_mount(vfsp, flag, cr);
2363 		}
2364 
2365 		return (0);
2366 	}
2367 
2368 	/*
2369 	 * Wait until all asynchronous putpage operations on
2370 	 * this file system are complete before flushing rnodes
2371 	 * from the cache.
2372 	 */
2373 	omax = mi->mi_max_threads;
2374 	if (nfs4_async_stop_sig(vfsp))
2375 		return (EINTR);
2376 
2377 	r4flush(vfsp, cr);
2378 
2379 	/*
2380 	 * About the only reason that this would fail would be
2381 	 * that the harvester is already busy tearing down this
2382 	 * node. So we fail back to the caller and let them try
2383 	 * again when needed.
2384 	 */
2385 	if (nfs4_ephemeral_umount(mi, flag, cr,
2386 	    &must_unlock, &eph_tree)) {
2387 
2388 		/*
2389 		 * Note that we ignore must_unlock
2390 		 * because it is garbage at this point.
2391 		 * I.e., it only has meaning upon
2392 		 * success.
2393 		 */
2394 		mutex_enter(&mi->mi_async_lock);
2395 		mi->mi_max_threads = omax;
2396 		mutex_exit(&mi->mi_async_lock);
2397 
2398 		return (EBUSY);
2399 	}
2400 
2401 	/*
2402 	 * If there are any active vnodes on this file system,
2403 	 * then the file system is busy and can't be unmounted.
2404 	 */
2405 	if (check_rtable4(vfsp)) {
2406 		nfs4_ephemeral_umount_unlock(&must_unlock, &eph_tree);
2407 
2408 		mutex_enter(&mi->mi_async_lock);
2409 		mi->mi_max_threads = omax;
2410 		mutex_exit(&mi->mi_async_lock);
2411 
2412 		return (EBUSY);
2413 	}
2414 
2415 	/*
2416 	 * The unmount can't fail from now on, so record any
2417 	 * ephemeral changes.
2418 	 */
2419 	nfs4_ephemeral_umount_activate(mi, &must_unlock, &eph_tree);
2420 
2421 	/*
2422 	 * There are no active files that could require over-the-wire
2423 	 * calls to the server, so stop the async manager and the
2424 	 * inactive thread.
2425 	 */
2426 	nfs4_async_manager_stop(vfsp);
2427 
2428 	/*
2429 	 * Destroy all rnodes belonging to this file system from the
2430 	 * rnode hash queues and purge any resources allocated to
2431 	 * them.
2432 	 */
2433 	destroy_rtable4(vfsp, cr);
2434 	vfsp->vfs_flag |= VFS_UNMOUNTED;
2435 
2436 	nfs4_remove_mi_from_server(mi, NULL);
2437 	removed = nfs4_mi_zonelist_remove(mi);
2438 	if (removed)
2439 		zone_rele(mi->mi_zone);
2440 
2441 	return (0);
2442 }
2443 
2444 /*
2445  * find root of nfs
2446  */
2447 static int
2448 nfs4_root(vfs_t *vfsp, vnode_t **vpp)
2449 {
2450 	mntinfo4_t *mi;
2451 	vnode_t *vp;
2452 	nfs4_fname_t *mfname;
2453 	servinfo4_t *svp;
2454 
2455 	mi = VFTOMI4(vfsp);
2456 
2457 	if (nfs_zone() != mi->mi_zone)
2458 		return (EPERM);
2459 
2460 	svp = mi->mi_curr_serv;
2461 	if (svp) {
2462 		(void) nfs_rw_enter_sig(&svp->sv_lock, RW_READER, 0);
2463 		if (svp->sv_flags & SV4_ROOT_STALE) {
2464 			nfs_rw_exit(&svp->sv_lock);
2465 
2466 			(void) nfs_rw_enter_sig(&svp->sv_lock, RW_WRITER, 0);
2467 			if (svp->sv_flags & SV4_ROOT_STALE) {
2468 				svp->sv_flags &= ~SV4_ROOT_STALE;
2469 				nfs_rw_exit(&svp->sv_lock);
2470 				return (ENOENT);
2471 			}
2472 			nfs_rw_exit(&svp->sv_lock);
2473 		} else
2474 			nfs_rw_exit(&svp->sv_lock);
2475 	}
2476 
2477 	mfname = mi->mi_fname;
2478 	fn_hold(mfname);
2479 	vp = makenfs4node_by_fh(mi->mi_rootfh, NULL, &mfname, NULL,
2480 	    VFTOMI4(vfsp), CRED(), gethrtime());
2481 
2482 	if (VTOR4(vp)->r_flags & R4STALE) {
2483 		VN_RELE(vp);
2484 		return (ENOENT);
2485 	}
2486 
2487 	ASSERT(vp->v_type == VNON || vp->v_type == mi->mi_type);
2488 
2489 	vp->v_type = mi->mi_type;
2490 
2491 	*vpp = vp;
2492 
2493 	return (0);
2494 }
2495 
2496 static int
2497 nfs4_statfs_otw(vnode_t *vp, struct statvfs64 *sbp, cred_t *cr)
2498 {
2499 	int error;
2500 	nfs4_ga_res_t gar;
2501 	nfs4_ga_ext_res_t ger;
2502 
2503 	gar.n4g_ext_res = &ger;
2504 
2505 	if (error = nfs4_attr_otw(vp, TAG_FSINFO, &gar,
2506 	    NFS4_STATFS_ATTR_MASK, cr))
2507 		return (error);
2508 
2509 	*sbp = gar.n4g_ext_res->n4g_sb;
2510 
2511 	return (0);
2512 }
2513 
2514 /*
2515  * Get file system statistics.
2516  */
2517 static int
2518 nfs4_statvfs(vfs_t *vfsp, struct statvfs64 *sbp)
2519 {
2520 	int error;
2521 	vnode_t *vp;
2522 	cred_t *cr;
2523 
2524 	error = nfs4_root(vfsp, &vp);
2525 	if (error)
2526 		return (error);
2527 
2528 	cr = CRED();
2529 
2530 	error = nfs4_statfs_otw(vp, sbp, cr);
2531 	if (!error) {
2532 		(void) strncpy(sbp->f_basetype,
2533 		    vfssw[vfsp->vfs_fstype].vsw_name, FSTYPSZ);
2534 		sbp->f_flag = vf_to_stf(vfsp->vfs_flag);
2535 	} else {
2536 		nfs4_purge_stale_fh(error, vp, cr);
2537 	}
2538 
2539 	VN_RELE(vp);
2540 
2541 	return (error);
2542 }
2543 
2544 static kmutex_t nfs4_syncbusy;
2545 
2546 /*
2547  * Flush dirty nfs files for file system vfsp.
2548  * If vfsp == NULL, all nfs files are flushed.
2549  *
2550  * SYNC_CLOSE in flag is passed to us to
2551  * indicate that we are shutting down and or
2552  * rebooting.
2553  */
2554 static int
2555 nfs4_sync(vfs_t *vfsp, short flag, cred_t *cr)
2556 {
2557 	/*
2558 	 * Cross-zone calls are OK here, since this translates to a
2559 	 * VOP_PUTPAGE(B_ASYNC), which gets picked up by the right zone.
2560 	 */
2561 	if (!(flag & SYNC_ATTR) && mutex_tryenter(&nfs4_syncbusy) != 0) {
2562 		r4flush(vfsp, cr);
2563 		mutex_exit(&nfs4_syncbusy);
2564 	}
2565 
2566 	/*
2567 	 * if SYNC_CLOSE is set then we know that
2568 	 * the system is rebooting, mark the mntinfo
2569 	 * for later examination.
2570 	 */
2571 	if (vfsp && (flag & SYNC_CLOSE)) {
2572 		mntinfo4_t *mi;
2573 
2574 		mi = VFTOMI4(vfsp);
2575 		if (!(mi->mi_flags & MI4_SHUTDOWN)) {
2576 			mutex_enter(&mi->mi_lock);
2577 			mi->mi_flags |= MI4_SHUTDOWN;
2578 			mutex_exit(&mi->mi_lock);
2579 		}
2580 	}
2581 	return (0);
2582 }
2583 
2584 /*
2585  * vget is difficult, if not impossible, to support in v4 because we don't
2586  * know the parent directory or name, which makes it impossible to create a
2587  * useful shadow vnode.  And we need the shadow vnode for things like
2588  * OPEN.
2589  */
2590 
2591 /* ARGSUSED */
2592 /*
2593  * XXX Check nfs4_vget_pseudo() for dependency.
2594  */
2595 static int
2596 nfs4_vget(vfs_t *vfsp, vnode_t **vpp, fid_t *fidp)
2597 {
2598 	return (EREMOTE);
2599 }
2600 
2601 /*
2602  * nfs4_mountroot get called in the case where we are diskless booting.  All
2603  * we need from here is the ability to get the server info and from there we
2604  * can simply call nfs4_rootvp.
2605  */
2606 /* ARGSUSED */
2607 static int
2608 nfs4_mountroot(vfs_t *vfsp, whymountroot_t why)
2609 {
2610 	vnode_t *rtvp;
2611 	char root_hostname[SYS_NMLN+1];
2612 	struct servinfo4 *svp;
2613 	int error;
2614 	int vfsflags;
2615 	size_t size;
2616 	char *root_path;
2617 	struct pathname pn;
2618 	char *name;
2619 	cred_t *cr;
2620 	mntinfo4_t *mi;
2621 	struct nfs_args args;		/* nfs mount arguments */
2622 	static char token[10];
2623 	nfs4_error_t n4e;
2624 
2625 	bzero(&args, sizeof (args));
2626 
2627 	/* do this BEFORE getfile which causes xid stamps to be initialized */
2628 	clkset(-1L);		/* hack for now - until we get time svc? */
2629 
2630 	if (why == ROOT_REMOUNT) {
2631 		/*
2632 		 * Shouldn't happen.
2633 		 */
2634 		panic("nfs4_mountroot: why == ROOT_REMOUNT");
2635 	}
2636 
2637 	if (why == ROOT_UNMOUNT) {
2638 		/*
2639 		 * Nothing to do for NFS.
2640 		 */
2641 		return (0);
2642 	}
2643 
2644 	/*
2645 	 * why == ROOT_INIT
2646 	 */
2647 
2648 	name = token;
2649 	*name = 0;
2650 	(void) getfsname("root", name, sizeof (token));
2651 
2652 	pn_alloc(&pn);
2653 	root_path = pn.pn_path;
2654 
2655 	svp = kmem_zalloc(sizeof (*svp), KM_SLEEP);
2656 	nfs_rw_init(&svp->sv_lock, NULL, RW_DEFAULT, NULL);
2657 	svp->sv_knconf = kmem_zalloc(sizeof (*svp->sv_knconf), KM_SLEEP);
2658 	svp->sv_knconf->knc_protofmly = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
2659 	svp->sv_knconf->knc_proto = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
2660 
2661 	/*
2662 	 * Get server address
2663 	 * Get the root path
2664 	 * Get server's transport
2665 	 * Get server's hostname
2666 	 * Get options
2667 	 */
2668 	args.addr = &svp->sv_addr;
2669 	(void) nfs_rw_enter_sig(&svp->sv_lock, RW_READER, 0);
2670 	args.fh = (char *)&svp->sv_fhandle;
2671 	args.knconf = svp->sv_knconf;
2672 	args.hostname = root_hostname;
2673 	vfsflags = 0;
2674 	if (error = mount_root(*name ? name : "root", root_path, NFS_V4,
2675 	    &args, &vfsflags)) {
2676 		if (error == EPROTONOSUPPORT)
2677 			nfs_cmn_err(error, CE_WARN, "nfs4_mountroot: "
2678 			    "mount_root failed: server doesn't support NFS V4");
2679 		else
2680 			nfs_cmn_err(error, CE_WARN,
2681 			    "nfs4_mountroot: mount_root failed: %m");
2682 		nfs_rw_exit(&svp->sv_lock);
2683 		sv4_free(svp);
2684 		pn_free(&pn);
2685 		return (error);
2686 	}
2687 	nfs_rw_exit(&svp->sv_lock);
2688 	svp->sv_hostnamelen = (int)(strlen(root_hostname) + 1);
2689 	svp->sv_hostname = kmem_alloc(svp->sv_hostnamelen, KM_SLEEP);
2690 	(void) strcpy(svp->sv_hostname, root_hostname);
2691 
2692 	svp->sv_pathlen = (int)(strlen(root_path) + 1);
2693 	svp->sv_path = kmem_alloc(svp->sv_pathlen, KM_SLEEP);
2694 	(void) strcpy(svp->sv_path, root_path);
2695 
2696 	/*
2697 	 * Force root partition to always be mounted with AUTH_UNIX for now
2698 	 */
2699 	svp->sv_secdata = kmem_alloc(sizeof (*svp->sv_secdata), KM_SLEEP);
2700 	svp->sv_secdata->secmod = AUTH_UNIX;
2701 	svp->sv_secdata->rpcflavor = AUTH_UNIX;
2702 	svp->sv_secdata->data = NULL;
2703 
2704 	cr = crgetcred();
2705 	rtvp = NULL;
2706 
2707 	error = nfs4rootvp(&rtvp, vfsp, svp, args.flags, cr, global_zone);
2708 
2709 	if (error) {
2710 		crfree(cr);
2711 		pn_free(&pn);
2712 		sv4_free(svp);
2713 		return (error);
2714 	}
2715 
2716 	mi = VTOMI4(rtvp);
2717 
2718 	/*
2719 	 * Send client id to the server, if necessary
2720 	 */
2721 	nfs4_error_zinit(&n4e);
2722 	nfs4setclientid(mi, cr, FALSE, &n4e);
2723 	error = n4e.error;
2724 
2725 	crfree(cr);
2726 
2727 	if (error) {
2728 		pn_free(&pn);
2729 		goto errout;
2730 	}
2731 
2732 	error = nfs4_setopts(rtvp, DATAMODEL_NATIVE, &args);
2733 	if (error) {
2734 		nfs_cmn_err(error, CE_WARN,
2735 		    "nfs4_mountroot: invalid root mount options");
2736 		pn_free(&pn);
2737 		goto errout;
2738 	}
2739 
2740 	(void) vfs_lock_wait(vfsp);
2741 	vfs_add(NULL, vfsp, vfsflags);
2742 	vfs_unlock(vfsp);
2743 
2744 	size = strlen(svp->sv_hostname);
2745 	(void) strcpy(rootfs.bo_name, svp->sv_hostname);
2746 	rootfs.bo_name[size] = ':';
2747 	(void) strcpy(&rootfs.bo_name[size + 1], root_path);
2748 
2749 	pn_free(&pn);
2750 
2751 errout:
2752 	if (error) {
2753 		sv4_free(svp);
2754 		nfs4_async_stop(vfsp);
2755 		nfs4_async_manager_stop(vfsp);
2756 	}
2757 
2758 	if (rtvp != NULL)
2759 		VN_RELE(rtvp);
2760 
2761 	return (error);
2762 }
2763 
2764 /*
2765  * Initialization routine for VFS routines.  Should only be called once
2766  */
2767 int
2768 nfs4_vfsinit(void)
2769 {
2770 	mutex_init(&nfs4_syncbusy, NULL, MUTEX_DEFAULT, NULL);
2771 	nfs4setclientid_init();
2772 	nfs4_ephemeral_init();
2773 	return (0);
2774 }
2775 
2776 void
2777 nfs4_vfsfini(void)
2778 {
2779 	nfs4_ephemeral_fini();
2780 	nfs4setclientid_fini();
2781 	mutex_destroy(&nfs4_syncbusy);
2782 }
2783 
2784 void
2785 nfs4_freevfs(vfs_t *vfsp)
2786 {
2787 	mntinfo4_t *mi;
2788 
2789 	/* need to release the initial hold */
2790 	mi = VFTOMI4(vfsp);
2791 	MI4_RELE(mi);
2792 }
2793 
2794 /*
2795  * Client side SETCLIENTID and SETCLIENTID_CONFIRM
2796  */
2797 struct nfs4_server nfs4_server_lst =
2798 	{ &nfs4_server_lst, &nfs4_server_lst };
2799 
2800 kmutex_t nfs4_server_lst_lock;
2801 
2802 static void
2803 nfs4setclientid_init(void)
2804 {
2805 	mutex_init(&nfs4_server_lst_lock, NULL, MUTEX_DEFAULT, NULL);
2806 }
2807 
2808 static void
2809 nfs4setclientid_fini(void)
2810 {
2811 	mutex_destroy(&nfs4_server_lst_lock);
2812 }
2813 
2814 int nfs4_retry_sclid_delay = NFS4_RETRY_SCLID_DELAY;
2815 int nfs4_num_sclid_retries = NFS4_NUM_SCLID_RETRIES;
2816 
2817 /*
2818  * Set the clientid for the server for "mi".  No-op if the clientid is
2819  * already set.
2820  *
2821  * The recovery boolean should be set to TRUE if this function was called
2822  * by the recovery code, and FALSE otherwise.  This is used to determine
2823  * if we need to call nfs4_start/end_op as well as grab the mi_recovlock
2824  * for adding a mntinfo4_t to a nfs4_server_t.
2825  *
2826  * Error is returned via 'n4ep'.  If there was a 'n4ep->stat' error, then
2827  * 'n4ep->error' is set to geterrno4(n4ep->stat).
2828  */
2829 void
2830 nfs4setclientid(mntinfo4_t *mi, cred_t *cr, bool_t recovery, nfs4_error_t *n4ep)
2831 {
2832 	struct nfs4_server *np;
2833 	struct servinfo4 *svp = mi->mi_curr_serv;
2834 	nfs4_recov_state_t recov_state;
2835 	int num_retries = 0;
2836 	bool_t retry;
2837 	cred_t *lcr = NULL;
2838 	int retry_inuse = 1; /* only retry once on NFS4ERR_CLID_INUSE */
2839 	time_t lease_time = 0;
2840 
2841 	recov_state.rs_flags = 0;
2842 	recov_state.rs_num_retry_despite_err = 0;
2843 	ASSERT(n4ep != NULL);
2844 
2845 recov_retry:
2846 	retry = FALSE;
2847 	nfs4_error_zinit(n4ep);
2848 	if (!recovery)
2849 		(void) nfs_rw_enter_sig(&mi->mi_recovlock, RW_READER, 0);
2850 
2851 	mutex_enter(&nfs4_server_lst_lock);
2852 	np = servinfo4_to_nfs4_server(svp); /* This locks np if it is found */
2853 	mutex_exit(&nfs4_server_lst_lock);
2854 	if (!np) {
2855 		struct nfs4_server *tnp;
2856 		np = new_nfs4_server(svp, cr);
2857 		mutex_enter(&np->s_lock);
2858 
2859 		mutex_enter(&nfs4_server_lst_lock);
2860 		tnp = servinfo4_to_nfs4_server(svp);
2861 		if (tnp) {
2862 			/*
2863 			 * another thread snuck in and put server on list.
2864 			 * since we aren't adding it to the nfs4_server_list
2865 			 * we need to set the ref count to 0 and destroy it.
2866 			 */
2867 			np->s_refcnt = 0;
2868 			destroy_nfs4_server(np);
2869 			np = tnp;
2870 		} else {
2871 			/*
2872 			 * do not give list a reference until everything
2873 			 * succeeds
2874 			 */
2875 			insque(np, &nfs4_server_lst);
2876 		}
2877 		mutex_exit(&nfs4_server_lst_lock);
2878 	}
2879 	ASSERT(MUTEX_HELD(&np->s_lock));
2880 	/*
2881 	 * If we find the server already has N4S_CLIENTID_SET, then
2882 	 * just return, we've already done SETCLIENTID to that server
2883 	 */
2884 	if (np->s_flags & N4S_CLIENTID_SET) {
2885 		/* add mi to np's mntinfo4_list */
2886 		nfs4_add_mi_to_server(np, mi);
2887 		if (!recovery)
2888 			nfs_rw_exit(&mi->mi_recovlock);
2889 		mutex_exit(&np->s_lock);
2890 		nfs4_server_rele(np);
2891 		return;
2892 	}
2893 	mutex_exit(&np->s_lock);
2894 
2895 
2896 	/*
2897 	 * Drop the mi_recovlock since nfs4_start_op will
2898 	 * acquire it again for us.
2899 	 */
2900 	if (!recovery) {
2901 		nfs_rw_exit(&mi->mi_recovlock);
2902 
2903 		n4ep->error = nfs4_start_op(mi, NULL, NULL, &recov_state);
2904 		if (n4ep->error) {
2905 			nfs4_server_rele(np);
2906 			return;
2907 		}
2908 	}
2909 
2910 	mutex_enter(&np->s_lock);
2911 	while (np->s_flags & N4S_CLIENTID_PEND) {
2912 		if (!cv_wait_sig(&np->s_clientid_pend, &np->s_lock)) {
2913 			mutex_exit(&np->s_lock);
2914 			nfs4_server_rele(np);
2915 			if (!recovery)
2916 				nfs4_end_op(mi, NULL, NULL, &recov_state,
2917 				    recovery);
2918 			n4ep->error = EINTR;
2919 			return;
2920 		}
2921 	}
2922 
2923 	if (np->s_flags & N4S_CLIENTID_SET) {
2924 		/* XXX copied/pasted from above */
2925 		/* add mi to np's mntinfo4_list */
2926 		nfs4_add_mi_to_server(np, mi);
2927 		mutex_exit(&np->s_lock);
2928 		nfs4_server_rele(np);
2929 		if (!recovery)
2930 			nfs4_end_op(mi, NULL, NULL, &recov_state, recovery);
2931 		return;
2932 	}
2933 
2934 	/*
2935 	 * Reset the N4S_CB_PINGED flag. This is used to
2936 	 * indicate if we have received a CB_NULL from the
2937 	 * server. Also we reset the waiter flag.
2938 	 */
2939 	np->s_flags &= ~(N4S_CB_PINGED | N4S_CB_WAITER);
2940 	/* any failure must now clear this flag */
2941 	np->s_flags |= N4S_CLIENTID_PEND;
2942 	mutex_exit(&np->s_lock);
2943 	nfs4setclientid_otw(mi, svp, cr, np, n4ep, &retry_inuse);
2944 
2945 	if (n4ep->error == EACCES) {
2946 		/*
2947 		 * If the uid is set then set the creds for secure mounts
2948 		 * by proxy processes such as automountd.
2949 		 */
2950 		(void) nfs_rw_enter_sig(&svp->sv_lock, RW_READER, 0);
2951 		if (svp->sv_secdata->uid != 0) {
2952 			lcr = crdup(cr);
2953 			(void) crsetugid(lcr, svp->sv_secdata->uid,
2954 			    crgetgid(cr));
2955 		}
2956 		nfs_rw_exit(&svp->sv_lock);
2957 
2958 		if (lcr != NULL) {
2959 			mutex_enter(&np->s_lock);
2960 			crfree(np->s_cred);
2961 			np->s_cred = lcr;
2962 			mutex_exit(&np->s_lock);
2963 			nfs4setclientid_otw(mi, svp, lcr, np, n4ep,
2964 			    &retry_inuse);
2965 		}
2966 	}
2967 	mutex_enter(&np->s_lock);
2968 	lease_time = np->s_lease_time;
2969 	np->s_flags &= ~N4S_CLIENTID_PEND;
2970 	mutex_exit(&np->s_lock);
2971 
2972 	if (n4ep->error != 0 || n4ep->stat != NFS4_OK) {
2973 		/*
2974 		 * Start recovery if failover is a possibility.  If
2975 		 * invoked by the recovery thread itself, then just
2976 		 * return and let it handle the failover first.  NB:
2977 		 * recovery is not allowed if the mount is in progress
2978 		 * since the infrastructure is not sufficiently setup
2979 		 * to allow it.  Just return the error (after suitable
2980 		 * retries).
2981 		 */
2982 		if (FAILOVER_MOUNT4(mi) && nfs4_try_failover(n4ep)) {
2983 			(void) nfs4_start_recovery(n4ep, mi, NULL,
2984 			    NULL, NULL, NULL, OP_SETCLIENTID, NULL);
2985 			/*
2986 			 * Don't retry here, just return and let
2987 			 * recovery take over.
2988 			 */
2989 			if (recovery)
2990 				retry = FALSE;
2991 		} else if (nfs4_rpc_retry_error(n4ep->error) ||
2992 		    n4ep->stat == NFS4ERR_RESOURCE ||
2993 		    n4ep->stat == NFS4ERR_STALE_CLIENTID) {
2994 
2995 			retry = TRUE;
2996 			/*
2997 			 * Always retry if in recovery or once had
2998 			 * contact with the server (but now it's
2999 			 * overloaded).
3000 			 */
3001 			if (recovery == TRUE ||
3002 			    n4ep->error == ETIMEDOUT ||
3003 			    n4ep->error == ECONNRESET)
3004 				num_retries = 0;
3005 		} else if (retry_inuse && n4ep->error == 0 &&
3006 		    n4ep->stat == NFS4ERR_CLID_INUSE) {
3007 			retry = TRUE;
3008 			num_retries = 0;
3009 		}
3010 	} else {
3011 		/*
3012 		 * Since everything succeeded give the list a reference count if
3013 		 * it hasn't been given one by add_new_nfs4_server() or if this
3014 		 * is not a recovery situation in which case it is already on
3015 		 * the list.
3016 		 */
3017 		mutex_enter(&np->s_lock);
3018 		if ((np->s_flags & N4S_INSERTED) == 0) {
3019 			np->s_refcnt++;
3020 			np->s_flags |= N4S_INSERTED;
3021 		}
3022 		mutex_exit(&np->s_lock);
3023 	}
3024 
3025 	if (!recovery)
3026 		nfs4_end_op(mi, NULL, NULL, &recov_state, recovery);
3027 
3028 
3029 	if (retry && num_retries++ < nfs4_num_sclid_retries) {
3030 		if (retry_inuse) {
3031 			delay(SEC_TO_TICK(lease_time + nfs4_retry_sclid_delay));
3032 			retry_inuse = 0;
3033 		} else
3034 			delay(SEC_TO_TICK(nfs4_retry_sclid_delay));
3035 
3036 		nfs4_server_rele(np);
3037 		goto recov_retry;
3038 	}
3039 
3040 
3041 	if (n4ep->error == 0)
3042 		n4ep->error = geterrno4(n4ep->stat);
3043 
3044 	/* broadcast before release in case no other threads are waiting */
3045 	cv_broadcast(&np->s_clientid_pend);
3046 	nfs4_server_rele(np);
3047 }
3048 
3049 int nfs4setclientid_otw_debug = 0;
3050 
3051 /*
3052  * This function handles the recovery of STALE_CLIENTID for SETCLIENTID_CONFRIM,
3053  * but nothing else; the calling function must be designed to handle those
3054  * other errors.
3055  */
3056 static void
3057 nfs4setclientid_otw(mntinfo4_t *mi, struct servinfo4 *svp,  cred_t *cr,
3058     struct nfs4_server *np, nfs4_error_t *ep, int *retry_inusep)
3059 {
3060 	COMPOUND4args_clnt args;
3061 	COMPOUND4res_clnt res;
3062 	nfs_argop4 argop[3];
3063 	SETCLIENTID4args *s_args;
3064 	SETCLIENTID4resok *s_resok;
3065 	int doqueue = 1;
3066 	nfs4_ga_res_t *garp = NULL;
3067 	timespec_t prop_time, after_time;
3068 	verifier4 verf;
3069 	clientid4 tmp_clientid;
3070 
3071 	ASSERT(!MUTEX_HELD(&np->s_lock));
3072 
3073 	args.ctag = TAG_SETCLIENTID;
3074 
3075 	args.array = argop;
3076 	args.array_len = 3;
3077 
3078 	/* PUTROOTFH */
3079 	argop[0].argop = OP_PUTROOTFH;
3080 
3081 	/* GETATTR */
3082 	argop[1].argop = OP_GETATTR;
3083 	argop[1].nfs_argop4_u.opgetattr.attr_request = FATTR4_LEASE_TIME_MASK;
3084 	argop[1].nfs_argop4_u.opgetattr.mi = mi;
3085 
3086 	/* SETCLIENTID */
3087 	argop[2].argop = OP_SETCLIENTID;
3088 
3089 	s_args = &argop[2].nfs_argop4_u.opsetclientid;
3090 
3091 	mutex_enter(&np->s_lock);
3092 
3093 	s_args->client.verifier = np->clidtosend.verifier;
3094 	s_args->client.id_len = np->clidtosend.id_len;
3095 	ASSERT(s_args->client.id_len <= NFS4_OPAQUE_LIMIT);
3096 	s_args->client.id_val = np->clidtosend.id_val;
3097 
3098 	/*
3099 	 * Callback needs to happen on non-RDMA transport
3100 	 * Check if we have saved the original knetconfig
3101 	 * if so, use that instead.
3102 	 */
3103 	if (svp->sv_origknconf != NULL)
3104 		nfs4_cb_args(np, svp->sv_origknconf, s_args);
3105 	else
3106 		nfs4_cb_args(np, svp->sv_knconf, s_args);
3107 
3108 	mutex_exit(&np->s_lock);
3109 
3110 	rfs4call(mi, &args, &res, cr, &doqueue, 0, ep);
3111 
3112 	if (ep->error)
3113 		return;
3114 
3115 	/* getattr lease_time res */
3116 	if (res.array_len >= 2) {
3117 		garp = &res.array[1].nfs_resop4_u.opgetattr.ga_res;
3118 
3119 #ifndef _LP64
3120 		/*
3121 		 * The 32 bit client cannot handle a lease time greater than
3122 		 * (INT32_MAX/1000000).  This is due to the use of the
3123 		 * lease_time in calls to drv_usectohz() in
3124 		 * nfs4_renew_lease_thread().  The problem is that
3125 		 * drv_usectohz() takes a time_t (which is just a long = 4
3126 		 * bytes) as its parameter.  The lease_time is multiplied by
3127 		 * 1000000 to convert seconds to usecs for the parameter.  If
3128 		 * a number bigger than (INT32_MAX/1000000) is used then we
3129 		 * overflow on the 32bit client.
3130 		 */
3131 		if (garp->n4g_ext_res->n4g_leasetime > (INT32_MAX/1000000)) {
3132 			garp->n4g_ext_res->n4g_leasetime = INT32_MAX/1000000;
3133 		}
3134 #endif
3135 
3136 		mutex_enter(&np->s_lock);
3137 		np->s_lease_time = garp->n4g_ext_res->n4g_leasetime;
3138 
3139 		/*
3140 		 * Keep track of the lease period for the mi's
3141 		 * mi_msg_list.  We need an appropiate time
3142 		 * bound to associate past facts with a current
3143 		 * event.  The lease period is perfect for this.
3144 		 */
3145 		mutex_enter(&mi->mi_msg_list_lock);
3146 		mi->mi_lease_period = np->s_lease_time;
3147 		mutex_exit(&mi->mi_msg_list_lock);
3148 		mutex_exit(&np->s_lock);
3149 	}
3150 
3151 
3152 	if (res.status == NFS4ERR_CLID_INUSE) {
3153 		clientaddr4 *clid_inuse;
3154 
3155 		if (!(*retry_inusep)) {
3156 			clid_inuse = &res.array->nfs_resop4_u.
3157 			    opsetclientid.SETCLIENTID4res_u.client_using;
3158 
3159 			zcmn_err(mi->mi_zone->zone_id, CE_NOTE,
3160 			    "NFS4 mount (SETCLIENTID failed)."
3161 			    "  nfs4_client_id.id is in"
3162 			    "use already by: r_netid<%s> r_addr<%s>",
3163 			    clid_inuse->r_netid, clid_inuse->r_addr);
3164 		}
3165 
3166 		/*
3167 		 * XXX - The client should be more robust in its
3168 		 * handling of clientid in use errors (regen another
3169 		 * clientid and try again?)
3170 		 */
3171 		(void) xdr_free(xdr_COMPOUND4res_clnt, (caddr_t)&res);
3172 		return;
3173 	}
3174 
3175 	if (res.status) {
3176 		(void) xdr_free(xdr_COMPOUND4res_clnt, (caddr_t)&res);
3177 		return;
3178 	}
3179 
3180 	s_resok = &res.array[2].nfs_resop4_u.
3181 	    opsetclientid.SETCLIENTID4res_u.resok4;
3182 
3183 	tmp_clientid = s_resok->clientid;
3184 
3185 	verf = s_resok->setclientid_confirm;
3186 
3187 #ifdef	DEBUG
3188 	if (nfs4setclientid_otw_debug) {
3189 		union {
3190 			clientid4	clientid;
3191 			int		foo[2];
3192 		} cid;
3193 
3194 		cid.clientid = s_resok->clientid;
3195 
3196 		zcmn_err(mi->mi_zone->zone_id, CE_NOTE,
3197 		"nfs4setclientid_otw: OK, clientid = %x,%x, "
3198 		"verifier = %" PRIx64 "\n", cid.foo[0], cid.foo[1], verf);
3199 	}
3200 #endif
3201 
3202 	(void) xdr_free(xdr_COMPOUND4res_clnt, (caddr_t)&res);
3203 
3204 	/* Confirm the client id and get the lease_time attribute */
3205 
3206 	args.ctag = TAG_SETCLIENTID_CF;
3207 
3208 	args.array = argop;
3209 	args.array_len = 1;
3210 
3211 	argop[0].argop = OP_SETCLIENTID_CONFIRM;
3212 
3213 	argop[0].nfs_argop4_u.opsetclientid_confirm.clientid = tmp_clientid;
3214 	argop[0].nfs_argop4_u.opsetclientid_confirm.setclientid_confirm = verf;
3215 
3216 	/* used to figure out RTT for np */
3217 	gethrestime(&prop_time);
3218 
3219 	NFS4_DEBUG(nfs4_client_lease_debug, (CE_NOTE, "nfs4setlientid_otw: "
3220 	    "start time: %ld sec %ld nsec", prop_time.tv_sec,
3221 	    prop_time.tv_nsec));
3222 
3223 	rfs4call(mi, &args, &res, cr, &doqueue, 0, ep);
3224 
3225 	gethrestime(&after_time);
3226 	mutex_enter(&np->s_lock);
3227 	np->propagation_delay.tv_sec =
3228 	    MAX(1, after_time.tv_sec - prop_time.tv_sec);
3229 	mutex_exit(&np->s_lock);
3230 
3231 	NFS4_DEBUG(nfs4_client_lease_debug, (CE_NOTE, "nfs4setlcientid_otw: "
3232 	    "finish time: %ld sec ", after_time.tv_sec));
3233 
3234 	NFS4_DEBUG(nfs4_client_lease_debug, (CE_NOTE, "nfs4setclientid_otw: "
3235 	    "propagation delay set to %ld sec",
3236 	    np->propagation_delay.tv_sec));
3237 
3238 	if (ep->error)
3239 		return;
3240 
3241 	if (res.status == NFS4ERR_CLID_INUSE) {
3242 		clientaddr4 *clid_inuse;
3243 
3244 		if (!(*retry_inusep)) {
3245 			clid_inuse = &res.array->nfs_resop4_u.
3246 			    opsetclientid.SETCLIENTID4res_u.client_using;
3247 
3248 			zcmn_err(mi->mi_zone->zone_id, CE_NOTE,
3249 			    "SETCLIENTID_CONFIRM failed.  "
3250 			    "nfs4_client_id.id is in use already by: "
3251 			    "r_netid<%s> r_addr<%s>",
3252 			    clid_inuse->r_netid, clid_inuse->r_addr);
3253 		}
3254 
3255 		(void) xdr_free(xdr_COMPOUND4res_clnt, (caddr_t)&res);
3256 		return;
3257 	}
3258 
3259 	if (res.status) {
3260 		(void) xdr_free(xdr_COMPOUND4res_clnt, (caddr_t)&res);
3261 		return;
3262 	}
3263 
3264 	mutex_enter(&np->s_lock);
3265 	np->clientid = tmp_clientid;
3266 	np->s_flags |= N4S_CLIENTID_SET;
3267 
3268 	/* Add mi to np's mntinfo4 list */
3269 	nfs4_add_mi_to_server(np, mi);
3270 
3271 	if (np->lease_valid == NFS4_LEASE_NOT_STARTED) {
3272 		/*
3273 		 * Start lease management thread.
3274 		 * Keep trying until we succeed.
3275 		 */
3276 
3277 		np->s_refcnt++;		/* pass reference to thread */
3278 		(void) zthread_create(NULL, 0, nfs4_renew_lease_thread, np, 0,
3279 		    minclsyspri);
3280 	}
3281 	mutex_exit(&np->s_lock);
3282 
3283 	(void) xdr_free(xdr_COMPOUND4res_clnt, (caddr_t)&res);
3284 }
3285 
3286 /*
3287  * Add mi to sp's mntinfo4_list if it isn't already in the list.  Makes
3288  * mi's clientid the same as sp's.
3289  * Assumes sp is locked down.
3290  */
3291 void
3292 nfs4_add_mi_to_server(nfs4_server_t *sp, mntinfo4_t *mi)
3293 {
3294 	mntinfo4_t *tmi;
3295 	int in_list = 0;
3296 
3297 	ASSERT(nfs_rw_lock_held(&mi->mi_recovlock, RW_READER) ||
3298 	    nfs_rw_lock_held(&mi->mi_recovlock, RW_WRITER));
3299 	ASSERT(sp != &nfs4_server_lst);
3300 	ASSERT(MUTEX_HELD(&sp->s_lock));
3301 
3302 	NFS4_DEBUG(nfs4_client_lease_debug, (CE_NOTE,
3303 	    "nfs4_add_mi_to_server: add mi %p to sp %p",
3304 	    (void*)mi, (void*)sp));
3305 
3306 	for (tmi = sp->mntinfo4_list;
3307 	    tmi != NULL;
3308 	    tmi = tmi->mi_clientid_next) {
3309 		if (tmi == mi) {
3310 			NFS4_DEBUG(nfs4_client_lease_debug,
3311 			    (CE_NOTE,
3312 			    "nfs4_add_mi_to_server: mi in list"));
3313 			in_list = 1;
3314 		}
3315 	}
3316 
3317 	/*
3318 	 * First put a hold on the mntinfo4's vfsp so that references via
3319 	 * mntinfo4_list will be valid.
3320 	 */
3321 	if (!in_list)
3322 		VFS_HOLD(mi->mi_vfsp);
3323 
3324 	NFS4_DEBUG(nfs4_client_lease_debug, (CE_NOTE, "nfs4_add_mi_to_server: "
3325 	    "hold vfs %p for mi: %p", (void*)mi->mi_vfsp, (void*)mi));
3326 
3327 	if (!in_list) {
3328 		if (sp->mntinfo4_list)
3329 			sp->mntinfo4_list->mi_clientid_prev = mi;
3330 		mi->mi_clientid_next = sp->mntinfo4_list;
3331 		sp->mntinfo4_list = mi;
3332 		mi->mi_srvsettime = gethrestime_sec();
3333 	}
3334 
3335 	/* set mi's clientid to that of sp's for later matching */
3336 	mi->mi_clientid = sp->clientid;
3337 
3338 	/*
3339 	 * Update the clientid for any other mi's belonging to sp.  This
3340 	 * must be done here while we hold sp->s_lock, so that
3341 	 * find_nfs4_server() continues to work.
3342 	 */
3343 
3344 	for (tmi = sp->mntinfo4_list;
3345 	    tmi != NULL;
3346 	    tmi = tmi->mi_clientid_next) {
3347 		if (tmi != mi) {
3348 			tmi->mi_clientid = sp->clientid;
3349 		}
3350 	}
3351 }
3352 
3353 /*
3354  * Remove the mi from sp's mntinfo4_list and release its reference.
3355  * Exception: if mi still has open files, flag it for later removal (when
3356  * all the files are closed).
3357  *
3358  * If this is the last mntinfo4 in sp's list then tell the lease renewal
3359  * thread to exit.
3360  */
3361 static void
3362 nfs4_remove_mi_from_server_nolock(mntinfo4_t *mi, nfs4_server_t *sp)
3363 {
3364 	NFS4_DEBUG(nfs4_client_lease_debug, (CE_NOTE,
3365 	    "nfs4_remove_mi_from_server_nolock: remove mi %p from sp %p",
3366 	    (void*)mi, (void*)sp));
3367 
3368 	ASSERT(sp != NULL);
3369 	ASSERT(MUTEX_HELD(&sp->s_lock));
3370 	ASSERT(mi->mi_open_files >= 0);
3371 
3372 	/*
3373 	 * First make sure this mntinfo4 can be taken off of the list,
3374 	 * ie: it doesn't have any open files remaining.
3375 	 */
3376 	if (mi->mi_open_files > 0) {
3377 		NFS4_DEBUG(nfs4_client_lease_debug, (CE_NOTE,
3378 		    "nfs4_remove_mi_from_server_nolock: don't "
3379 		    "remove mi since it still has files open"));
3380 
3381 		mutex_enter(&mi->mi_lock);
3382 		mi->mi_flags |= MI4_REMOVE_ON_LAST_CLOSE;
3383 		mutex_exit(&mi->mi_lock);
3384 		return;
3385 	}
3386 
3387 	VFS_HOLD(mi->mi_vfsp);
3388 	remove_mi(sp, mi);
3389 	VFS_RELE(mi->mi_vfsp);
3390 
3391 	if (sp->mntinfo4_list == NULL) {
3392 		/* last fs unmounted, kill the thread */
3393 		NFS4_DEBUG(nfs4_client_lease_debug, (CE_NOTE,
3394 		    "remove_mi_from_nfs4_server_nolock: kill the thread"));
3395 		nfs4_mark_srv_dead(sp);
3396 	}
3397 }
3398 
3399 /*
3400  * Remove mi from sp's mntinfo4_list and release the vfs reference.
3401  */
3402 static void
3403 remove_mi(nfs4_server_t *sp, mntinfo4_t *mi)
3404 {
3405 	ASSERT(MUTEX_HELD(&sp->s_lock));
3406 
3407 	/*
3408 	 * We release a reference, and the caller must still have a
3409 	 * reference.
3410 	 */
3411 	ASSERT(mi->mi_vfsp->vfs_count >= 2);
3412 
3413 	if (mi->mi_clientid_prev) {
3414 		mi->mi_clientid_prev->mi_clientid_next = mi->mi_clientid_next;
3415 	} else {
3416 		/* This is the first mi in sp's mntinfo4_list */
3417 		/*
3418 		 * Make sure the first mntinfo4 in the list is the actual
3419 		 * mntinfo4 passed in.
3420 		 */
3421 		ASSERT(sp->mntinfo4_list == mi);
3422 
3423 		sp->mntinfo4_list = mi->mi_clientid_next;
3424 	}
3425 	if (mi->mi_clientid_next)
3426 		mi->mi_clientid_next->mi_clientid_prev = mi->mi_clientid_prev;
3427 
3428 	/* Now mark the mntinfo4's links as being removed */
3429 	mi->mi_clientid_prev = mi->mi_clientid_next = NULL;
3430 
3431 	VFS_RELE(mi->mi_vfsp);
3432 }
3433 
3434 /*
3435  * Free all the entries in sp's mntinfo4_list.
3436  */
3437 static void
3438 remove_all_mi(nfs4_server_t *sp)
3439 {
3440 	mntinfo4_t *mi;
3441 
3442 	ASSERT(MUTEX_HELD(&sp->s_lock));
3443 
3444 	while (sp->mntinfo4_list != NULL) {
3445 		mi = sp->mntinfo4_list;
3446 		/*
3447 		 * Grab a reference in case there is only one left (which
3448 		 * remove_mi() frees).
3449 		 */
3450 		VFS_HOLD(mi->mi_vfsp);
3451 		remove_mi(sp, mi);
3452 		VFS_RELE(mi->mi_vfsp);
3453 	}
3454 }
3455 
3456 /*
3457  * Remove the mi from sp's mntinfo4_list as above, and rele the vfs.
3458  *
3459  * This version can be called with a null nfs4_server_t arg,
3460  * and will either find the right one and handle locking, or
3461  * do nothing because the mi wasn't added to an sp's mntinfo4_list.
3462  */
3463 void
3464 nfs4_remove_mi_from_server(mntinfo4_t *mi, nfs4_server_t *esp)
3465 {
3466 	nfs4_server_t	*sp;
3467 
3468 	if (esp == NULL) {
3469 		(void) nfs_rw_enter_sig(&mi->mi_recovlock, RW_READER, 0);
3470 		sp = find_nfs4_server_all(mi, 1);
3471 	} else
3472 		sp = esp;
3473 
3474 	if (sp != NULL)
3475 		nfs4_remove_mi_from_server_nolock(mi, sp);
3476 
3477 	/*
3478 	 * If we had a valid esp as input, the calling function will be
3479 	 * responsible for unlocking the esp nfs4_server.
3480 	 */
3481 	if (esp == NULL) {
3482 		if (sp != NULL)
3483 			mutex_exit(&sp->s_lock);
3484 		nfs_rw_exit(&mi->mi_recovlock);
3485 		if (sp != NULL)
3486 			nfs4_server_rele(sp);
3487 	}
3488 }
3489 
3490 /*
3491  * Return TRUE if the given server has any non-unmounted filesystems.
3492  */
3493 
3494 bool_t
3495 nfs4_fs_active(nfs4_server_t *sp)
3496 {
3497 	mntinfo4_t *mi;
3498 
3499 	ASSERT(MUTEX_HELD(&sp->s_lock));
3500 
3501 	for (mi = sp->mntinfo4_list; mi != NULL; mi = mi->mi_clientid_next) {
3502 		if (!(mi->mi_vfsp->vfs_flag & VFS_UNMOUNTED))
3503 			return (TRUE);
3504 	}
3505 
3506 	return (FALSE);
3507 }
3508 
3509 /*
3510  * Mark sp as finished and notify any waiters.
3511  */
3512 
3513 void
3514 nfs4_mark_srv_dead(nfs4_server_t *sp)
3515 {
3516 	ASSERT(MUTEX_HELD(&sp->s_lock));
3517 
3518 	sp->s_thread_exit = NFS4_THREAD_EXIT;
3519 	cv_broadcast(&sp->cv_thread_exit);
3520 }
3521 
3522 /*
3523  * Create a new nfs4_server_t structure.
3524  * Returns new node unlocked and not in list, but with a reference count of
3525  * 1.
3526  */
3527 struct nfs4_server *
3528 new_nfs4_server(struct servinfo4 *svp, cred_t *cr)
3529 {
3530 	struct nfs4_server *np;
3531 	timespec_t tt;
3532 	union {
3533 		struct {
3534 			uint32_t sec;
3535 			uint32_t subsec;
3536 		} un_curtime;
3537 		verifier4	un_verifier;
3538 	} nfs4clientid_verifier;
3539 	char id_val[] = "Solaris: %s, NFSv4 kernel client";
3540 	int len;
3541 
3542 	np = kmem_zalloc(sizeof (struct nfs4_server), KM_SLEEP);
3543 	np->saddr.len = svp->sv_addr.len;
3544 	np->saddr.maxlen = svp->sv_addr.maxlen;
3545 	np->saddr.buf = kmem_alloc(svp->sv_addr.maxlen, KM_SLEEP);
3546 	bcopy(svp->sv_addr.buf, np->saddr.buf, svp->sv_addr.len);
3547 	np->s_refcnt = 1;
3548 
3549 	/*
3550 	 * Build the nfs_client_id4 for this server mount.  Ensure
3551 	 * the verifier is useful and that the identification is
3552 	 * somehow based on the server's address for the case of
3553 	 * multi-homed servers.
3554 	 */
3555 	nfs4clientid_verifier.un_verifier = 0;
3556 	gethrestime(&tt);
3557 	nfs4clientid_verifier.un_curtime.sec = (uint32_t)tt.tv_sec;
3558 	nfs4clientid_verifier.un_curtime.subsec = (uint32_t)tt.tv_nsec;
3559 	np->clidtosend.verifier = nfs4clientid_verifier.un_verifier;
3560 
3561 	/*
3562 	 * calculate the length of the opaque identifier.  Subtract 2
3563 	 * for the "%s" and add the traditional +1 for null
3564 	 * termination.
3565 	 */
3566 	len = strlen(id_val) - 2 + strlen(uts_nodename()) + 1;
3567 	np->clidtosend.id_len = len + np->saddr.maxlen;
3568 
3569 	np->clidtosend.id_val = kmem_alloc(np->clidtosend.id_len, KM_SLEEP);
3570 	(void) sprintf(np->clidtosend.id_val, id_val, uts_nodename());
3571 	bcopy(np->saddr.buf, &np->clidtosend.id_val[len], np->saddr.len);
3572 
3573 	np->s_flags = 0;
3574 	np->mntinfo4_list = NULL;
3575 	/* save cred for issuing rfs4calls inside the renew thread */
3576 	crhold(cr);
3577 	np->s_cred = cr;
3578 	cv_init(&np->cv_thread_exit, NULL, CV_DEFAULT, NULL);
3579 	mutex_init(&np->s_lock, NULL, MUTEX_DEFAULT, NULL);
3580 	nfs_rw_init(&np->s_recovlock, NULL, RW_DEFAULT, NULL);
3581 	list_create(&np->s_deleg_list, sizeof (rnode4_t),
3582 	    offsetof(rnode4_t, r_deleg_link));
3583 	np->s_thread_exit = 0;
3584 	np->state_ref_count = 0;
3585 	np->lease_valid = NFS4_LEASE_NOT_STARTED;
3586 	cv_init(&np->s_cv_otw_count, NULL, CV_DEFAULT, NULL);
3587 	cv_init(&np->s_clientid_pend, NULL, CV_DEFAULT, NULL);
3588 	np->s_otw_call_count = 0;
3589 	cv_init(&np->wait_cb_null, NULL, CV_DEFAULT, NULL);
3590 	np->zoneid = getzoneid();
3591 	np->zone_globals = nfs4_get_callback_globals();
3592 	ASSERT(np->zone_globals != NULL);
3593 	return (np);
3594 }
3595 
3596 /*
3597  * Create a new nfs4_server_t structure and add it to the list.
3598  * Returns new node locked; reference must eventually be freed.
3599  */
3600 static struct nfs4_server *
3601 add_new_nfs4_server(struct servinfo4 *svp, cred_t *cr)
3602 {
3603 	nfs4_server_t *sp;
3604 
3605 	ASSERT(MUTEX_HELD(&nfs4_server_lst_lock));
3606 	sp = new_nfs4_server(svp, cr);
3607 	mutex_enter(&sp->s_lock);
3608 	insque(sp, &nfs4_server_lst);
3609 	sp->s_refcnt++;			/* list gets a reference */
3610 	sp->s_flags |= N4S_INSERTED;
3611 	sp->clientid = 0;
3612 	return (sp);
3613 }
3614 
3615 int nfs4_server_t_debug = 0;
3616 
3617 #ifdef lint
3618 extern void
3619 dumpnfs4slist(char *, mntinfo4_t *, clientid4, servinfo4_t *);
3620 #endif
3621 
3622 #ifndef lint
3623 #ifdef DEBUG
3624 void
3625 dumpnfs4slist(char *txt, mntinfo4_t *mi, clientid4 clientid, servinfo4_t *srv_p)
3626 {
3627 	int hash16(void *p, int len);
3628 	nfs4_server_t *np;
3629 
3630 	NFS4_DEBUG(nfs4_server_t_debug, (CE_NOTE,
3631 	    "dumping nfs4_server_t list in %s", txt));
3632 	NFS4_DEBUG(nfs4_server_t_debug, (CE_CONT,
3633 	    "mi 0x%p, want clientid %llx, addr %d/%04X",
3634 	    mi, (longlong_t)clientid, srv_p->sv_addr.len,
3635 	    hash16((void *)srv_p->sv_addr.buf, srv_p->sv_addr.len)));
3636 	for (np = nfs4_server_lst.forw; np != &nfs4_server_lst;
3637 	    np = np->forw) {
3638 		NFS4_DEBUG(nfs4_server_t_debug, (CE_CONT,
3639 		    "node 0x%p,    clientid %llx, addr %d/%04X, cnt %d",
3640 		    np, (longlong_t)np->clientid, np->saddr.len,
3641 		    hash16((void *)np->saddr.buf, np->saddr.len),
3642 		    np->state_ref_count));
3643 		if (np->saddr.len == srv_p->sv_addr.len &&
3644 		    bcmp(np->saddr.buf, srv_p->sv_addr.buf,
3645 		    np->saddr.len) == 0)
3646 			NFS4_DEBUG(nfs4_server_t_debug, (CE_CONT,
3647 			    " - address matches"));
3648 		if (np->clientid == clientid || np->clientid == 0)
3649 			NFS4_DEBUG(nfs4_server_t_debug, (CE_CONT,
3650 			    " - clientid matches"));
3651 		if (np->s_thread_exit != NFS4_THREAD_EXIT)
3652 			NFS4_DEBUG(nfs4_server_t_debug, (CE_CONT,
3653 			    " - thread not exiting"));
3654 	}
3655 	delay(hz);
3656 }
3657 #endif
3658 #endif
3659 
3660 
3661 /*
3662  * Move a mntinfo4_t from one server list to another.
3663  * Locking of the two nfs4_server_t nodes will be done in list order.
3664  *
3665  * Returns NULL if the current nfs4_server_t for the filesystem could not
3666  * be found (e.g., due to forced unmount).  Otherwise returns a reference
3667  * to the new nfs4_server_t, which must eventually be freed.
3668  */
3669 nfs4_server_t *
3670 nfs4_move_mi(mntinfo4_t *mi, servinfo4_t *old, servinfo4_t *new)
3671 {
3672 	nfs4_server_t *p, *op = NULL, *np = NULL;
3673 	int num_open;
3674 	zoneid_t zoneid = nfs_zoneid();
3675 
3676 	ASSERT(nfs_zone() == mi->mi_zone);
3677 
3678 	mutex_enter(&nfs4_server_lst_lock);
3679 #ifdef DEBUG
3680 	if (nfs4_server_t_debug)
3681 		dumpnfs4slist("nfs4_move_mi", mi, (clientid4)0, new);
3682 #endif
3683 	for (p = nfs4_server_lst.forw; p != &nfs4_server_lst; p = p->forw) {
3684 		if (p->zoneid != zoneid)
3685 			continue;
3686 		if (p->saddr.len == old->sv_addr.len &&
3687 		    bcmp(p->saddr.buf, old->sv_addr.buf, p->saddr.len) == 0 &&
3688 		    p->s_thread_exit != NFS4_THREAD_EXIT) {
3689 			op = p;
3690 			mutex_enter(&op->s_lock);
3691 			op->s_refcnt++;
3692 		}
3693 		if (p->saddr.len == new->sv_addr.len &&
3694 		    bcmp(p->saddr.buf, new->sv_addr.buf, p->saddr.len) == 0 &&
3695 		    p->s_thread_exit != NFS4_THREAD_EXIT) {
3696 			np = p;
3697 			mutex_enter(&np->s_lock);
3698 		}
3699 		if (op != NULL && np != NULL)
3700 			break;
3701 	}
3702 	if (op == NULL) {
3703 		/*
3704 		 * Filesystem has been forcibly unmounted.  Bail out.
3705 		 */
3706 		if (np != NULL)
3707 			mutex_exit(&np->s_lock);
3708 		mutex_exit(&nfs4_server_lst_lock);
3709 		return (NULL);
3710 	}
3711 	if (np != NULL) {
3712 		np->s_refcnt++;
3713 	} else {
3714 #ifdef DEBUG
3715 		NFS4_DEBUG(nfs4_client_failover_debug, (CE_NOTE,
3716 		    "nfs4_move_mi: no target nfs4_server, will create."));
3717 #endif
3718 		np = add_new_nfs4_server(new, kcred);
3719 	}
3720 	mutex_exit(&nfs4_server_lst_lock);
3721 
3722 	NFS4_DEBUG(nfs4_client_failover_debug, (CE_NOTE,
3723 	    "nfs4_move_mi: for mi 0x%p, "
3724 	    "old servinfo4 0x%p, new servinfo4 0x%p, "
3725 	    "old nfs4_server 0x%p, new nfs4_server 0x%p, ",
3726 	    (void*)mi, (void*)old, (void*)new,
3727 	    (void*)op, (void*)np));
3728 	ASSERT(op != NULL && np != NULL);
3729 
3730 	/* discard any delegations */
3731 	nfs4_deleg_discard(mi, op);
3732 
3733 	num_open = mi->mi_open_files;
3734 	mi->mi_open_files = 0;
3735 	op->state_ref_count -= num_open;
3736 	ASSERT(op->state_ref_count >= 0);
3737 	np->state_ref_count += num_open;
3738 	nfs4_remove_mi_from_server_nolock(mi, op);
3739 	mi->mi_open_files = num_open;
3740 	NFS4_DEBUG(nfs4_client_failover_debug, (CE_NOTE,
3741 	    "nfs4_move_mi: mi_open_files %d, op->cnt %d, np->cnt %d",
3742 	    mi->mi_open_files, op->state_ref_count, np->state_ref_count));
3743 
3744 	nfs4_add_mi_to_server(np, mi);
3745 
3746 	mutex_exit(&op->s_lock);
3747 	nfs4_server_rele(op);
3748 	mutex_exit(&np->s_lock);
3749 
3750 	return (np);
3751 }
3752 
3753 /*
3754  * Need to have the nfs4_server_lst_lock.
3755  * Search the nfs4_server list to find a match on this servinfo4
3756  * based on its address.
3757  *
3758  * Returns NULL if no match is found.  Otherwise returns a reference (which
3759  * must eventually be freed) to a locked nfs4_server.
3760  */
3761 nfs4_server_t *
3762 servinfo4_to_nfs4_server(servinfo4_t *srv_p)
3763 {
3764 	nfs4_server_t *np;
3765 	zoneid_t zoneid = nfs_zoneid();
3766 
3767 	ASSERT(MUTEX_HELD(&nfs4_server_lst_lock));
3768 	for (np = nfs4_server_lst.forw; np != &nfs4_server_lst; np = np->forw) {
3769 		if (np->zoneid == zoneid &&
3770 		    np->saddr.len == srv_p->sv_addr.len &&
3771 		    bcmp(np->saddr.buf, srv_p->sv_addr.buf,
3772 		    np->saddr.len) == 0 &&
3773 		    np->s_thread_exit != NFS4_THREAD_EXIT) {
3774 			mutex_enter(&np->s_lock);
3775 			np->s_refcnt++;
3776 			return (np);
3777 		}
3778 	}
3779 	return (NULL);
3780 }
3781 
3782 /*
3783  * Search the nfs4_server_lst to find a match based on clientid and
3784  * addr.
3785  * Locks the nfs4_server down if it is found and returns a reference that
3786  * must eventually be freed.
3787  *
3788  * Returns NULL it no match is found.  This means one of two things: either
3789  * mi is in the process of being mounted, or mi has been unmounted.
3790  *
3791  * The caller should be holding mi->mi_recovlock, and it should continue to
3792  * hold the lock until done with the returned nfs4_server_t.  Once
3793  * mi->mi_recovlock is released, there is no guarantee that the returned
3794  * mi->nfs4_server_t will continue to correspond to mi.
3795  */
3796 nfs4_server_t *
3797 find_nfs4_server(mntinfo4_t *mi)
3798 {
3799 	return (find_nfs4_server_all(mi, 0));
3800 }
3801 
3802 /*
3803  * Same as above, but takes an "all" parameter which can be
3804  * set to 1 if the caller wishes to find nfs4_server_t's which
3805  * have been marked for termination by the exit of the renew
3806  * thread.  This should only be used by operations which are
3807  * cleaning up and will not cause an OTW op.
3808  */
3809 nfs4_server_t *
3810 find_nfs4_server_all(mntinfo4_t *mi, int all)
3811 {
3812 	nfs4_server_t *np;
3813 	servinfo4_t *svp;
3814 	zoneid_t zoneid = mi->mi_zone->zone_id;
3815 
3816 	ASSERT(nfs_rw_lock_held(&mi->mi_recovlock, RW_READER) ||
3817 	    nfs_rw_lock_held(&mi->mi_recovlock, RW_WRITER));
3818 	/*
3819 	 * This can be called from nfs4_unmount() which can be called from the
3820 	 * global zone, hence it's legal for the global zone to muck with
3821 	 * another zone's server list, as long as it doesn't try to contact
3822 	 * them.
3823 	 */
3824 	ASSERT(zoneid == getzoneid() || getzoneid() == GLOBAL_ZONEID ||
3825 	    nfs_global_client_only != 0);
3826 
3827 	/*
3828 	 * The nfs4_server_lst_lock global lock is held when we get a new
3829 	 * clientid (via SETCLIENTID OTW).  Holding this global lock and
3830 	 * mi_recovlock (READER is fine) ensures that the nfs4_server
3831 	 * and this mntinfo4 can't get out of sync, so the following search is
3832 	 * always valid.
3833 	 */
3834 	mutex_enter(&nfs4_server_lst_lock);
3835 #ifdef DEBUG
3836 	if (nfs4_server_t_debug) {
3837 		/* mi->mi_clientid is unprotected, ok for debug output */
3838 		dumpnfs4slist("find_nfs4_server", mi, mi->mi_clientid,
3839 		    mi->mi_curr_serv);
3840 	}
3841 #endif
3842 	for (np = nfs4_server_lst.forw; np != &nfs4_server_lst; np = np->forw) {
3843 		mutex_enter(&np->s_lock);
3844 		svp = mi->mi_curr_serv;
3845 
3846 		if (np->zoneid == zoneid &&
3847 		    np->clientid == mi->mi_clientid &&
3848 		    np->saddr.len == svp->sv_addr.len &&
3849 		    bcmp(np->saddr.buf, svp->sv_addr.buf, np->saddr.len) == 0 &&
3850 		    (np->s_thread_exit != NFS4_THREAD_EXIT || all != 0)) {
3851 			mutex_exit(&nfs4_server_lst_lock);
3852 			np->s_refcnt++;
3853 			return (np);
3854 		}
3855 		mutex_exit(&np->s_lock);
3856 	}
3857 	mutex_exit(&nfs4_server_lst_lock);
3858 
3859 	return (NULL);
3860 }
3861 
3862 /*
3863  * Release the reference to sp and destroy it if that's the last one.
3864  */
3865 
3866 void
3867 nfs4_server_rele(nfs4_server_t *sp)
3868 {
3869 	mutex_enter(&sp->s_lock);
3870 	ASSERT(sp->s_refcnt > 0);
3871 	sp->s_refcnt--;
3872 	if (sp->s_refcnt > 0) {
3873 		mutex_exit(&sp->s_lock);
3874 		return;
3875 	}
3876 	mutex_exit(&sp->s_lock);
3877 
3878 	mutex_enter(&nfs4_server_lst_lock);
3879 	mutex_enter(&sp->s_lock);
3880 	if (sp->s_refcnt > 0) {
3881 		mutex_exit(&sp->s_lock);
3882 		mutex_exit(&nfs4_server_lst_lock);
3883 		return;
3884 	}
3885 	remque(sp);
3886 	sp->forw = sp->back = NULL;
3887 	mutex_exit(&nfs4_server_lst_lock);
3888 	destroy_nfs4_server(sp);
3889 }
3890 
3891 static void
3892 destroy_nfs4_server(nfs4_server_t *sp)
3893 {
3894 	ASSERT(MUTEX_HELD(&sp->s_lock));
3895 	ASSERT(sp->s_refcnt == 0);
3896 	ASSERT(sp->s_otw_call_count == 0);
3897 
3898 	remove_all_mi(sp);
3899 
3900 	crfree(sp->s_cred);
3901 	kmem_free(sp->saddr.buf, sp->saddr.maxlen);
3902 	kmem_free(sp->clidtosend.id_val, sp->clidtosend.id_len);
3903 	mutex_exit(&sp->s_lock);
3904 
3905 	/* destroy the nfs4_server */
3906 	nfs4callback_destroy(sp);
3907 	list_destroy(&sp->s_deleg_list);
3908 	mutex_destroy(&sp->s_lock);
3909 	cv_destroy(&sp->cv_thread_exit);
3910 	cv_destroy(&sp->s_cv_otw_count);
3911 	cv_destroy(&sp->s_clientid_pend);
3912 	cv_destroy(&sp->wait_cb_null);
3913 	nfs_rw_destroy(&sp->s_recovlock);
3914 	kmem_free(sp, sizeof (*sp));
3915 }
3916 
3917 /*
3918  * Lock sp, but only if it's still active (in the list and hasn't been
3919  * flagged as exiting) or 'all' is non-zero.
3920  * Returns TRUE if sp got locked and adds a reference to sp.
3921  */
3922 bool_t
3923 nfs4_server_vlock(nfs4_server_t *sp, int all)
3924 {
3925 	nfs4_server_t *np;
3926 
3927 	mutex_enter(&nfs4_server_lst_lock);
3928 	for (np = nfs4_server_lst.forw; np != &nfs4_server_lst; np = np->forw) {
3929 		if (sp == np && (np->s_thread_exit != NFS4_THREAD_EXIT ||
3930 		    all != 0)) {
3931 			mutex_enter(&np->s_lock);
3932 			np->s_refcnt++;
3933 			mutex_exit(&nfs4_server_lst_lock);
3934 			return (TRUE);
3935 		}
3936 	}
3937 	mutex_exit(&nfs4_server_lst_lock);
3938 	return (FALSE);
3939 }
3940 
3941 /*
3942  * Fork off a thread to free the data structures for a mount.
3943  */
3944 
3945 static void
3946 async_free_mount(vfs_t *vfsp, int flag, cred_t *cr)
3947 {
3948 	freemountargs_t *args;
3949 	args = kmem_alloc(sizeof (freemountargs_t), KM_SLEEP);
3950 	args->fm_vfsp = vfsp;
3951 	VFS_HOLD(vfsp);
3952 	MI4_HOLD(VFTOMI4(vfsp));
3953 	args->fm_flag = flag;
3954 	args->fm_cr = cr;
3955 	crhold(cr);
3956 	(void) zthread_create(NULL, 0, nfs4_free_mount_thread, args, 0,
3957 	    minclsyspri);
3958 }
3959 
3960 static void
3961 nfs4_free_mount_thread(freemountargs_t *args)
3962 {
3963 	mntinfo4_t *mi;
3964 	nfs4_free_mount(args->fm_vfsp, args->fm_flag, args->fm_cr);
3965 	mi = VFTOMI4(args->fm_vfsp);
3966 	crfree(args->fm_cr);
3967 	VFS_RELE(args->fm_vfsp);
3968 	MI4_RELE(mi);
3969 	kmem_free(args, sizeof (freemountargs_t));
3970 	zthread_exit();
3971 	/* NOTREACHED */
3972 }
3973 
3974 /*
3975  * Thread to free the data structures for a given filesystem.
3976  */
3977 static void
3978 nfs4_free_mount(vfs_t *vfsp, int flag, cred_t *cr)
3979 {
3980 	mntinfo4_t		*mi = VFTOMI4(vfsp);
3981 	nfs4_server_t		*sp;
3982 	callb_cpr_t		cpr_info;
3983 	kmutex_t		cpr_lock;
3984 	boolean_t		async_thread;
3985 	int			removed;
3986 
3987 	bool_t			must_unlock = FALSE;
3988 	nfs4_ephemeral_tree_t	*eph_tree;
3989 
3990 	/*
3991 	 * We need to participate in the CPR framework if this is a kernel
3992 	 * thread.
3993 	 */
3994 	async_thread = (curproc == nfs_zone()->zone_zsched);
3995 	if (async_thread) {
3996 		mutex_init(&cpr_lock, NULL, MUTEX_DEFAULT, NULL);
3997 		CALLB_CPR_INIT(&cpr_info, &cpr_lock, callb_generic_cpr,
3998 		    "nfsv4AsyncUnmount");
3999 	}
4000 
4001 	/*
4002 	 * We need to wait for all outstanding OTW calls
4003 	 * and recovery to finish before we remove the mi
4004 	 * from the nfs4_server_t, as current pending
4005 	 * calls might still need this linkage (in order
4006 	 * to find a nfs4_server_t from a mntinfo4_t).
4007 	 */
4008 	(void) nfs_rw_enter_sig(&mi->mi_recovlock, RW_READER, FALSE);
4009 	sp = find_nfs4_server(mi);
4010 	nfs_rw_exit(&mi->mi_recovlock);
4011 
4012 	if (sp) {
4013 		while (sp->s_otw_call_count != 0) {
4014 			if (async_thread) {
4015 				mutex_enter(&cpr_lock);
4016 				CALLB_CPR_SAFE_BEGIN(&cpr_info);
4017 				mutex_exit(&cpr_lock);
4018 			}
4019 			cv_wait(&sp->s_cv_otw_count, &sp->s_lock);
4020 			if (async_thread) {
4021 				mutex_enter(&cpr_lock);
4022 				CALLB_CPR_SAFE_END(&cpr_info, &cpr_lock);
4023 				mutex_exit(&cpr_lock);
4024 			}
4025 		}
4026 		mutex_exit(&sp->s_lock);
4027 		nfs4_server_rele(sp);
4028 		sp = NULL;
4029 	}
4030 
4031 	mutex_enter(&mi->mi_lock);
4032 	while (mi->mi_in_recovery != 0) {
4033 		if (async_thread) {
4034 			mutex_enter(&cpr_lock);
4035 			CALLB_CPR_SAFE_BEGIN(&cpr_info);
4036 			mutex_exit(&cpr_lock);
4037 		}
4038 		cv_wait(&mi->mi_cv_in_recov, &mi->mi_lock);
4039 		if (async_thread) {
4040 			mutex_enter(&cpr_lock);
4041 			CALLB_CPR_SAFE_END(&cpr_info, &cpr_lock);
4042 			mutex_exit(&cpr_lock);
4043 		}
4044 	}
4045 	mutex_exit(&mi->mi_lock);
4046 
4047 	/*
4048 	 * If we got an error, then do not nuke the
4049 	 * tree. Either the harvester is busy reclaiming
4050 	 * this node or we ran into some busy condition.
4051 	 *
4052 	 * The harvester will eventually come along and cleanup.
4053 	 * The only problem would be the root mount point.
4054 	 *
4055 	 * Since the busy node can occur for a variety
4056 	 * of reasons and can result in an entry staying
4057 	 * in df output but no longer accessible from the
4058 	 * directory tree, we are okay.
4059 	 */
4060 	if (!nfs4_ephemeral_umount(mi, flag, cr,
4061 	    &must_unlock, &eph_tree))
4062 		nfs4_ephemeral_umount_activate(mi, &must_unlock,
4063 		    &eph_tree);
4064 
4065 	/*
4066 	 * The original purge of the dnlc via 'dounmount'
4067 	 * doesn't guarantee that another dnlc entry was not
4068 	 * added while we waitied for all outstanding OTW
4069 	 * and recovery calls to finish.  So re-purge the
4070 	 * dnlc now.
4071 	 */
4072 	(void) dnlc_purge_vfsp(vfsp, 0);
4073 
4074 	/*
4075 	 * We need to explicitly stop the manager thread; the asyc worker
4076 	 * threads can timeout and exit on their own.
4077 	 */
4078 	mutex_enter(&mi->mi_async_lock);
4079 	mi->mi_max_threads = 0;
4080 	cv_broadcast(&mi->mi_async_work_cv);
4081 	mutex_exit(&mi->mi_async_lock);
4082 	if (mi->mi_manager_thread)
4083 		nfs4_async_manager_stop(vfsp);
4084 
4085 	destroy_rtable4(vfsp, cr);
4086 
4087 	nfs4_remove_mi_from_server(mi, NULL);
4088 
4089 	if (async_thread) {
4090 		mutex_enter(&cpr_lock);
4091 		CALLB_CPR_EXIT(&cpr_info);	/* drops cpr_lock */
4092 		mutex_destroy(&cpr_lock);
4093 	}
4094 
4095 	removed = nfs4_mi_zonelist_remove(mi);
4096 	if (removed)
4097 		zone_rele(mi->mi_zone);
4098 }
4099