xref: /illumos-gate/usr/src/cmd/zoneadmd/vplat.c (revision b6c3f786)
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 /*
23  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #pragma ident	"%Z%%M%	%I%	%E% SMI"
28 
29 /*
30  * This module contains functions used to bring up and tear down the
31  * Virtual Platform: [un]mounting file-systems, [un]plumbing network
32  * interfaces, [un]configuring devices, establishing resource controls,
33  * and creating/destroying the zone in the kernel.  These actions, on
34  * the way up, ready the zone; on the way down, they halt the zone.
35  * See the much longer block comment at the beginning of zoneadmd.c
36  * for a bigger picture of how the whole program functions.
37  *
38  * This module also has primary responsibility for the layout of "scratch
39  * zones."  These are mounted, but inactive, zones that are used during
40  * operating system upgrade and potentially other administrative action.  The
41  * scratch zone environment is similar to the miniroot environment.  The zone's
42  * actual root is mounted read-write on /a, and the standard paths (/usr,
43  * /sbin, /lib) all lead to read-only copies of the running system's binaries.
44  * This allows the administrative tools to manipulate the zone using "-R /a"
45  * without relying on any binaries in the zone itself.
46  *
47  * If the scratch zone is on an alternate root (Live Upgrade [LU] boot
48  * environment), then we must resolve the lofs mounts used there to uncover
49  * writable (unshared) resources.  Shared resources, though, are always
50  * read-only.  In addition, if the "same" zone with a different root path is
51  * currently running, then "/b" inside the zone points to the running zone's
52  * root.  This allows LU to synchronize configuration files during the upgrade
53  * process.
54  *
55  * To construct this environment, this module creates a tmpfs mount on
56  * $ZONEPATH/lu.  Inside this scratch area, the miniroot-like environment as
57  * described above is constructed on the fly.  The zone is then created using
58  * $ZONEPATH/lu as the root.
59  *
60  * Note that scratch zones are inactive.  The zone's bits are not running and
61  * likely cannot be run correctly until upgrade is done.  Init is not running
62  * there, nor is SMF.  Because of this, the "mounted" state of a scratch zone
63  * is not a part of the usual halt/ready/boot state machine.
64  */
65 
66 #include <sys/param.h>
67 #include <sys/mount.h>
68 #include <sys/mntent.h>
69 #include <sys/socket.h>
70 #include <sys/utsname.h>
71 #include <sys/types.h>
72 #include <sys/stat.h>
73 #include <sys/sockio.h>
74 #include <sys/stropts.h>
75 #include <sys/conf.h>
76 
77 #include <sys/dlpi.h>
78 #include <libdlpi.h>
79 #include <libdllink.h>
80 #include <libdlvlan.h>
81 
82 #include <inet/tcp.h>
83 #include <arpa/inet.h>
84 #include <netinet/in.h>
85 #include <net/route.h>
86 
87 #include <stdio.h>
88 #include <errno.h>
89 #include <fcntl.h>
90 #include <unistd.h>
91 #include <rctl.h>
92 #include <stdlib.h>
93 #include <string.h>
94 #include <strings.h>
95 #include <wait.h>
96 #include <limits.h>
97 #include <libgen.h>
98 #include <libzfs.h>
99 #include <libdevinfo.h>
100 #include <zone.h>
101 #include <assert.h>
102 #include <libcontract.h>
103 #include <libcontract_priv.h>
104 #include <uuid/uuid.h>
105 
106 #include <sys/mntio.h>
107 #include <sys/mnttab.h>
108 #include <sys/fs/autofs.h>	/* for _autofssys() */
109 #include <sys/fs/lofs_info.h>
110 #include <sys/fs/zfs.h>
111 
112 #include <pool.h>
113 #include <sys/pool.h>
114 #include <sys/priocntl.h>
115 
116 #include <libbrand.h>
117 #include <sys/brand.h>
118 #include <libzonecfg.h>
119 #include <synch.h>
120 
121 #include "zoneadmd.h"
122 #include <tsol/label.h>
123 #include <libtsnet.h>
124 #include <sys/priv.h>
125 
126 #define	V4_ADDR_LEN	32
127 #define	V6_ADDR_LEN	128
128 
129 #define	IPD_DEFAULT_OPTS \
130 	MNTOPT_RO "," MNTOPT_LOFS_NOSUB "," MNTOPT_NODEVICES
131 
132 #define	DFSTYPES	"/etc/dfs/fstypes"
133 #define	MAXTNZLEN	2048
134 
135 #define	ALT_MOUNT(mount_cmd) 	((mount_cmd) != Z_MNT_BOOT)
136 
137 /* for routing socket */
138 static int rts_seqno = 0;
139 
140 /* mangled zone name when mounting in an alternate root environment */
141 static char kernzone[ZONENAME_MAX];
142 
143 /* array of cached mount entries for resolve_lofs */
144 static struct mnttab *resolve_lofs_mnts, *resolve_lofs_mnt_max;
145 
146 /* for Trusted Extensions */
147 static tsol_zcent_t *get_zone_label(zlog_t *, priv_set_t *);
148 static int tsol_mounts(zlog_t *, char *, char *);
149 static void tsol_unmounts(zlog_t *, char *);
150 
151 static m_label_t *zlabel = NULL;
152 static m_label_t *zid_label = NULL;
153 static priv_set_t *zprivs = NULL;
154 
155 /* from libsocket, not in any header file */
156 extern int getnetmaskbyaddr(struct in_addr, struct in_addr *);
157 
158 /*
159  * An optimization for build_mnttable: reallocate (and potentially copy the
160  * data) only once every N times through the loop.
161  */
162 #define	MNTTAB_HUNK	32
163 
164 /*
165  * Private autofs system call
166  */
167 extern int _autofssys(int, void *);
168 
169 static int
170 autofs_cleanup(zoneid_t zoneid)
171 {
172 	/*
173 	 * Ask autofs to unmount all trigger nodes in the given zone.
174 	 */
175 	return (_autofssys(AUTOFS_UNMOUNTALL, (void *)zoneid));
176 }
177 
178 static void
179 free_mnttable(struct mnttab *mnt_array, uint_t nelem)
180 {
181 	uint_t i;
182 
183 	if (mnt_array == NULL)
184 		return;
185 	for (i = 0; i < nelem; i++) {
186 		free(mnt_array[i].mnt_mountp);
187 		free(mnt_array[i].mnt_fstype);
188 		free(mnt_array[i].mnt_special);
189 		free(mnt_array[i].mnt_mntopts);
190 		assert(mnt_array[i].mnt_time == NULL);
191 	}
192 	free(mnt_array);
193 }
194 
195 /*
196  * Build the mount table for the zone rooted at "zroot", storing the resulting
197  * array of struct mnttabs in "mnt_arrayp" and the number of elements in the
198  * array in "nelemp".
199  */
200 static int
201 build_mnttable(zlog_t *zlogp, const char *zroot, size_t zrootlen, FILE *mnttab,
202     struct mnttab **mnt_arrayp, uint_t *nelemp)
203 {
204 	struct mnttab mnt;
205 	struct mnttab *mnts;
206 	struct mnttab *mnp;
207 	uint_t nmnt;
208 
209 	rewind(mnttab);
210 	resetmnttab(mnttab);
211 	nmnt = 0;
212 	mnts = NULL;
213 	while (getmntent(mnttab, &mnt) == 0) {
214 		struct mnttab *tmp_array;
215 
216 		if (strncmp(mnt.mnt_mountp, zroot, zrootlen) != 0)
217 			continue;
218 		if (nmnt % MNTTAB_HUNK == 0) {
219 			tmp_array = realloc(mnts,
220 			    (nmnt + MNTTAB_HUNK) * sizeof (*mnts));
221 			if (tmp_array == NULL) {
222 				free_mnttable(mnts, nmnt);
223 				return (-1);
224 			}
225 			mnts = tmp_array;
226 		}
227 		mnp = &mnts[nmnt++];
228 
229 		/*
230 		 * Zero out any fields we're not using.
231 		 */
232 		(void) memset(mnp, 0, sizeof (*mnp));
233 
234 		if (mnt.mnt_special != NULL)
235 			mnp->mnt_special = strdup(mnt.mnt_special);
236 		if (mnt.mnt_mntopts != NULL)
237 			mnp->mnt_mntopts = strdup(mnt.mnt_mntopts);
238 		mnp->mnt_mountp = strdup(mnt.mnt_mountp);
239 		mnp->mnt_fstype = strdup(mnt.mnt_fstype);
240 		if ((mnt.mnt_special != NULL && mnp->mnt_special == NULL) ||
241 		    (mnt.mnt_mntopts != NULL && mnp->mnt_mntopts == NULL) ||
242 		    mnp->mnt_mountp == NULL || mnp->mnt_fstype == NULL) {
243 			zerror(zlogp, B_TRUE, "memory allocation failed");
244 			free_mnttable(mnts, nmnt);
245 			return (-1);
246 		}
247 	}
248 	*mnt_arrayp = mnts;
249 	*nelemp = nmnt;
250 	return (0);
251 }
252 
253 /*
254  * This is an optimization.  The resolve_lofs function is used quite frequently
255  * to manipulate file paths, and on a machine with a large number of zones,
256  * there will be a huge number of mounted file systems.  Thus, we trigger a
257  * reread of the list of mount points
258  */
259 static void
260 lofs_discard_mnttab(void)
261 {
262 	free_mnttable(resolve_lofs_mnts,
263 	    resolve_lofs_mnt_max - resolve_lofs_mnts);
264 	resolve_lofs_mnts = resolve_lofs_mnt_max = NULL;
265 }
266 
267 static int
268 lofs_read_mnttab(zlog_t *zlogp)
269 {
270 	FILE *mnttab;
271 	uint_t nmnts;
272 
273 	if ((mnttab = fopen(MNTTAB, "r")) == NULL)
274 		return (-1);
275 	if (build_mnttable(zlogp, "", 0, mnttab, &resolve_lofs_mnts,
276 	    &nmnts) == -1) {
277 		(void) fclose(mnttab);
278 		return (-1);
279 	}
280 	(void) fclose(mnttab);
281 	resolve_lofs_mnt_max = resolve_lofs_mnts + nmnts;
282 	return (0);
283 }
284 
285 /*
286  * This function loops over potential loopback mounts and symlinks in a given
287  * path and resolves them all down to an absolute path.
288  */
289 void
290 resolve_lofs(zlog_t *zlogp, char *path, size_t pathlen)
291 {
292 	int len, arlen;
293 	const char *altroot;
294 	char tmppath[MAXPATHLEN];
295 	boolean_t outside_altroot;
296 
297 	if ((len = resolvepath(path, tmppath, sizeof (tmppath))) == -1)
298 		return;
299 	tmppath[len] = '\0';
300 	(void) strlcpy(path, tmppath, sizeof (tmppath));
301 
302 	/* This happens once per zoneadmd operation. */
303 	if (resolve_lofs_mnts == NULL && lofs_read_mnttab(zlogp) == -1)
304 		return;
305 
306 	altroot = zonecfg_get_root();
307 	arlen = strlen(altroot);
308 	outside_altroot = B_FALSE;
309 	for (;;) {
310 		struct mnttab *mnp;
311 
312 		/* Search in reverse order to find longest match */
313 		for (mnp = resolve_lofs_mnt_max - 1; mnp >= resolve_lofs_mnts;
314 		    mnp--) {
315 			if (mnp->mnt_fstype == NULL ||
316 			    mnp->mnt_mountp == NULL ||
317 			    mnp->mnt_special == NULL)
318 				continue;
319 			len = strlen(mnp->mnt_mountp);
320 			if (strncmp(mnp->mnt_mountp, path, len) == 0 &&
321 			    (path[len] == '/' || path[len] == '\0'))
322 				break;
323 		}
324 		if (mnp < resolve_lofs_mnts)
325 			break;
326 		/* If it's not a lofs then we're done */
327 		if (strcmp(mnp->mnt_fstype, MNTTYPE_LOFS) != 0)
328 			break;
329 		if (outside_altroot) {
330 			char *cp;
331 			int olen = sizeof (MNTOPT_RO) - 1;
332 
333 			/*
334 			 * If we run into a read-only mount outside of the
335 			 * alternate root environment, then the user doesn't
336 			 * want this path to be made read-write.
337 			 */
338 			if (mnp->mnt_mntopts != NULL &&
339 			    (cp = strstr(mnp->mnt_mntopts, MNTOPT_RO)) !=
340 			    NULL &&
341 			    (cp == mnp->mnt_mntopts || cp[-1] == ',') &&
342 			    (cp[olen] == '\0' || cp[olen] == ',')) {
343 				break;
344 			}
345 		} else if (arlen > 0 &&
346 		    (strncmp(mnp->mnt_special, altroot, arlen) != 0 ||
347 		    (mnp->mnt_special[arlen] != '\0' &&
348 		    mnp->mnt_special[arlen] != '/'))) {
349 			outside_altroot = B_TRUE;
350 		}
351 		/* use temporary buffer because new path might be longer */
352 		(void) snprintf(tmppath, sizeof (tmppath), "%s%s",
353 		    mnp->mnt_special, path + len);
354 		if ((len = resolvepath(tmppath, path, pathlen)) == -1)
355 			break;
356 		path[len] = '\0';
357 	}
358 }
359 
360 /*
361  * For a regular mount, check if a replacement lofs mount is needed because the
362  * referenced device is already mounted somewhere.
363  */
364 static int
365 check_lofs_needed(zlog_t *zlogp, struct zone_fstab *fsptr)
366 {
367 	struct mnttab *mnp;
368 	zone_fsopt_t *optptr, *onext;
369 
370 	/* This happens once per zoneadmd operation. */
371 	if (resolve_lofs_mnts == NULL && lofs_read_mnttab(zlogp) == -1)
372 		return (-1);
373 
374 	/*
375 	 * If this special node isn't already in use, then it's ours alone;
376 	 * no need to worry about conflicting mounts.
377 	 */
378 	for (mnp = resolve_lofs_mnts; mnp < resolve_lofs_mnt_max;
379 	    mnp++) {
380 		if (strcmp(mnp->mnt_special, fsptr->zone_fs_special) == 0)
381 			break;
382 	}
383 	if (mnp >= resolve_lofs_mnt_max)
384 		return (0);
385 
386 	/*
387 	 * Convert this duplicate mount into a lofs mount.
388 	 */
389 	(void) strlcpy(fsptr->zone_fs_special, mnp->mnt_mountp,
390 	    sizeof (fsptr->zone_fs_special));
391 	(void) strlcpy(fsptr->zone_fs_type, MNTTYPE_LOFS,
392 	    sizeof (fsptr->zone_fs_type));
393 	fsptr->zone_fs_raw[0] = '\0';
394 
395 	/*
396 	 * Discard all but one of the original options and set that to be the
397 	 * same set of options used for inherit package directory resources.
398 	 */
399 	optptr = fsptr->zone_fs_options;
400 	if (optptr == NULL) {
401 		optptr = malloc(sizeof (*optptr));
402 		if (optptr == NULL) {
403 			zerror(zlogp, B_TRUE, "cannot mount %s",
404 			    fsptr->zone_fs_dir);
405 			return (-1);
406 		}
407 	} else {
408 		while ((onext = optptr->zone_fsopt_next) != NULL) {
409 			optptr->zone_fsopt_next = onext->zone_fsopt_next;
410 			free(onext);
411 		}
412 	}
413 	(void) strcpy(optptr->zone_fsopt_opt, IPD_DEFAULT_OPTS);
414 	optptr->zone_fsopt_next = NULL;
415 	fsptr->zone_fs_options = optptr;
416 	return (0);
417 }
418 
419 int
420 make_one_dir(zlog_t *zlogp, const char *prefix, const char *subdir, mode_t mode,
421     uid_t userid, gid_t groupid)
422 {
423 	char path[MAXPATHLEN];
424 	struct stat st;
425 
426 	if (snprintf(path, sizeof (path), "%s%s", prefix, subdir) >
427 	    sizeof (path)) {
428 		zerror(zlogp, B_FALSE, "pathname %s%s is too long", prefix,
429 		    subdir);
430 		return (-1);
431 	}
432 
433 	if (lstat(path, &st) == 0) {
434 		/*
435 		 * We don't check the file mode since presumably the zone
436 		 * administrator may have had good reason to change the mode,
437 		 * and we don't need to second guess him.
438 		 */
439 		if (!S_ISDIR(st.st_mode)) {
440 			if (is_system_labeled() &&
441 			    S_ISREG(st.st_mode)) {
442 				/*
443 				 * The need to mount readonly copies of
444 				 * global zone /etc/ files is unique to
445 				 * Trusted Extensions.
446 				 */
447 				if (strncmp(subdir, "/etc/",
448 				    strlen("/etc/")) != 0) {
449 					zerror(zlogp, B_FALSE,
450 					    "%s is not in /etc", path);
451 					return (-1);
452 				}
453 			} else {
454 				zerror(zlogp, B_FALSE,
455 				    "%s is not a directory", path);
456 				return (-1);
457 			}
458 		}
459 		return (0);
460 	}
461 
462 	if (mkdirp(path, mode) != 0) {
463 		if (errno == EROFS)
464 			zerror(zlogp, B_FALSE, "Could not mkdir %s.\nIt is on "
465 			    "a read-only file system in this local zone.\nMake "
466 			    "sure %s exists in the global zone.", path, subdir);
467 		else
468 			zerror(zlogp, B_TRUE, "mkdirp of %s failed", path);
469 		return (-1);
470 	}
471 
472 	(void) chown(path, userid, groupid);
473 	return (0);
474 }
475 
476 static void
477 free_remote_fstypes(char **types)
478 {
479 	uint_t i;
480 
481 	if (types == NULL)
482 		return;
483 	for (i = 0; types[i] != NULL; i++)
484 		free(types[i]);
485 	free(types);
486 }
487 
488 static char **
489 get_remote_fstypes(zlog_t *zlogp)
490 {
491 	char **types = NULL;
492 	FILE *fp;
493 	char buf[MAXPATHLEN];
494 	char fstype[MAXPATHLEN];
495 	uint_t lines = 0;
496 	uint_t i;
497 
498 	if ((fp = fopen(DFSTYPES, "r")) == NULL) {
499 		zerror(zlogp, B_TRUE, "failed to open %s", DFSTYPES);
500 		return (NULL);
501 	}
502 	/*
503 	 * Count the number of lines
504 	 */
505 	while (fgets(buf, sizeof (buf), fp) != NULL)
506 		lines++;
507 	if (lines == 0)	/* didn't read anything; empty file */
508 		goto out;
509 	rewind(fp);
510 	/*
511 	 * Allocate enough space for a NULL-terminated array.
512 	 */
513 	types = calloc(lines + 1, sizeof (char *));
514 	if (types == NULL) {
515 		zerror(zlogp, B_TRUE, "memory allocation failed");
516 		goto out;
517 	}
518 	i = 0;
519 	while (fgets(buf, sizeof (buf), fp) != NULL) {
520 		/* LINTED - fstype is big enough to hold buf */
521 		if (sscanf(buf, "%s", fstype) == 0) {
522 			zerror(zlogp, B_FALSE, "unable to parse %s", DFSTYPES);
523 			free_remote_fstypes(types);
524 			types = NULL;
525 			goto out;
526 		}
527 		types[i] = strdup(fstype);
528 		if (types[i] == NULL) {
529 			zerror(zlogp, B_TRUE, "memory allocation failed");
530 			free_remote_fstypes(types);
531 			types = NULL;
532 			goto out;
533 		}
534 		i++;
535 	}
536 out:
537 	(void) fclose(fp);
538 	return (types);
539 }
540 
541 static boolean_t
542 is_remote_fstype(const char *fstype, char *const *remote_fstypes)
543 {
544 	uint_t i;
545 
546 	if (remote_fstypes == NULL)
547 		return (B_FALSE);
548 	for (i = 0; remote_fstypes[i] != NULL; i++) {
549 		if (strcmp(remote_fstypes[i], fstype) == 0)
550 			return (B_TRUE);
551 	}
552 	return (B_FALSE);
553 }
554 
555 /*
556  * This converts a zone root path (normally of the form .../root) to a Live
557  * Upgrade scratch zone root (of the form .../lu).
558  */
559 static void
560 root_to_lu(zlog_t *zlogp, char *zroot, size_t zrootlen, boolean_t isresolved)
561 {
562 	assert(zone_isnative || zone_iscluster);
563 
564 	if (!isresolved && zonecfg_in_alt_root())
565 		resolve_lofs(zlogp, zroot, zrootlen);
566 	(void) strcpy(strrchr(zroot, '/') + 1, "lu");
567 }
568 
569 /*
570  * The general strategy for unmounting filesystems is as follows:
571  *
572  * - Remote filesystems may be dead, and attempting to contact them as
573  * part of a regular unmount may hang forever; we want to always try to
574  * forcibly unmount such filesystems and only fall back to regular
575  * unmounts if the filesystem doesn't support forced unmounts.
576  *
577  * - We don't want to unnecessarily corrupt metadata on local
578  * filesystems (ie UFS), so we want to start off with graceful unmounts,
579  * and only escalate to doing forced unmounts if we get stuck.
580  *
581  * We start off walking backwards through the mount table.  This doesn't
582  * give us strict ordering but ensures that we try to unmount submounts
583  * first.  We thus limit the number of failed umount2(2) calls.
584  *
585  * The mechanism for determining if we're stuck is to count the number
586  * of failed unmounts each iteration through the mount table.  This
587  * gives us an upper bound on the number of filesystems which remain
588  * mounted (autofs trigger nodes are dealt with separately).  If at the
589  * end of one unmount+autofs_cleanup cycle we still have the same number
590  * of mounts that we started out with, we're stuck and try a forced
591  * unmount.  If that fails (filesystem doesn't support forced unmounts)
592  * then we bail and are unable to teardown the zone.  If it succeeds,
593  * we're no longer stuck so we continue with our policy of trying
594  * graceful mounts first.
595  *
596  * Zone must be down (ie, no processes or threads active).
597  */
598 static int
599 unmount_filesystems(zlog_t *zlogp, zoneid_t zoneid, boolean_t unmount_cmd)
600 {
601 	int error = 0;
602 	FILE *mnttab;
603 	struct mnttab *mnts;
604 	uint_t nmnt;
605 	char zroot[MAXPATHLEN + 1];
606 	size_t zrootlen;
607 	uint_t oldcount = UINT_MAX;
608 	boolean_t stuck = B_FALSE;
609 	char **remote_fstypes = NULL;
610 
611 	if (zone_get_rootpath(zone_name, zroot, sizeof (zroot)) != Z_OK) {
612 		zerror(zlogp, B_FALSE, "unable to determine zone root");
613 		return (-1);
614 	}
615 	if (unmount_cmd)
616 		root_to_lu(zlogp, zroot, sizeof (zroot), B_FALSE);
617 
618 	(void) strcat(zroot, "/");
619 	zrootlen = strlen(zroot);
620 
621 	/*
622 	 * For Trusted Extensions unmount each higher level zone's mount
623 	 * of our zone's /export/home
624 	 */
625 	if (!unmount_cmd)
626 		tsol_unmounts(zlogp, zone_name);
627 
628 	if ((mnttab = fopen(MNTTAB, "r")) == NULL) {
629 		zerror(zlogp, B_TRUE, "failed to open %s", MNTTAB);
630 		return (-1);
631 	}
632 	/*
633 	 * Use our hacky mntfs ioctl so we see everything, even mounts with
634 	 * MS_NOMNTTAB.
635 	 */
636 	if (ioctl(fileno(mnttab), MNTIOC_SHOWHIDDEN, NULL) < 0) {
637 		zerror(zlogp, B_TRUE, "unable to configure %s", MNTTAB);
638 		error++;
639 		goto out;
640 	}
641 
642 	/*
643 	 * Build the list of remote fstypes so we know which ones we
644 	 * should forcibly unmount.
645 	 */
646 	remote_fstypes = get_remote_fstypes(zlogp);
647 	for (; /* ever */; ) {
648 		uint_t newcount = 0;
649 		boolean_t unmounted;
650 		struct mnttab *mnp;
651 		char *path;
652 		uint_t i;
653 
654 		mnts = NULL;
655 		nmnt = 0;
656 		/*
657 		 * MNTTAB gives us a way to walk through mounted
658 		 * filesystems; we need to be able to walk them in
659 		 * reverse order, so we build a list of all mounted
660 		 * filesystems.
661 		 */
662 		if (build_mnttable(zlogp, zroot, zrootlen, mnttab, &mnts,
663 		    &nmnt) != 0) {
664 			error++;
665 			goto out;
666 		}
667 		for (i = 0; i < nmnt; i++) {
668 			mnp = &mnts[nmnt - i - 1]; /* access in reverse order */
669 			path = mnp->mnt_mountp;
670 			unmounted = B_FALSE;
671 			/*
672 			 * Try forced unmount first for remote filesystems.
673 			 *
674 			 * Not all remote filesystems support forced unmounts,
675 			 * so if this fails (ENOTSUP) we'll continue on
676 			 * and try a regular unmount.
677 			 */
678 			if (is_remote_fstype(mnp->mnt_fstype, remote_fstypes)) {
679 				if (umount2(path, MS_FORCE) == 0)
680 					unmounted = B_TRUE;
681 			}
682 			/*
683 			 * Try forced unmount if we're stuck.
684 			 */
685 			if (stuck) {
686 				if (umount2(path, MS_FORCE) == 0) {
687 					unmounted = B_TRUE;
688 					stuck = B_FALSE;
689 				} else {
690 					/*
691 					 * The first failure indicates a
692 					 * mount we won't be able to get
693 					 * rid of automatically, so we
694 					 * bail.
695 					 */
696 					error++;
697 					zerror(zlogp, B_FALSE,
698 					    "unable to unmount '%s'", path);
699 					free_mnttable(mnts, nmnt);
700 					goto out;
701 				}
702 			}
703 			/*
704 			 * Try regular unmounts for everything else.
705 			 */
706 			if (!unmounted && umount2(path, 0) != 0)
707 				newcount++;
708 		}
709 		free_mnttable(mnts, nmnt);
710 
711 		if (newcount == 0)
712 			break;
713 		if (newcount >= oldcount) {
714 			/*
715 			 * Last round didn't unmount anything; we're stuck and
716 			 * should start trying forced unmounts.
717 			 */
718 			stuck = B_TRUE;
719 		}
720 		oldcount = newcount;
721 
722 		/*
723 		 * Autofs doesn't let you unmount its trigger nodes from
724 		 * userland so we have to tell the kernel to cleanup for us.
725 		 */
726 		if (autofs_cleanup(zoneid) != 0) {
727 			zerror(zlogp, B_TRUE, "unable to remove autofs nodes");
728 			error++;
729 			goto out;
730 		}
731 	}
732 
733 out:
734 	free_remote_fstypes(remote_fstypes);
735 	(void) fclose(mnttab);
736 	return (error ? -1 : 0);
737 }
738 
739 static int
740 fs_compare(const void *m1, const void *m2)
741 {
742 	struct zone_fstab *i = (struct zone_fstab *)m1;
743 	struct zone_fstab *j = (struct zone_fstab *)m2;
744 
745 	return (strcmp(i->zone_fs_dir, j->zone_fs_dir));
746 }
747 
748 /*
749  * Fork and exec (and wait for) the mentioned binary with the provided
750  * arguments.  Returns (-1) if something went wrong with fork(2) or exec(2),
751  * returns the exit status otherwise.
752  *
753  * If we were unable to exec the provided pathname (for whatever
754  * reason), we return the special token ZEXIT_EXEC.  The current value
755  * of ZEXIT_EXEC doesn't conflict with legitimate exit codes of the
756  * consumers of this function; any future consumers must make sure this
757  * remains the case.
758  */
759 static int
760 forkexec(zlog_t *zlogp, const char *path, char *const argv[])
761 {
762 	pid_t child_pid;
763 	int child_status = 0;
764 
765 	/*
766 	 * Do not let another thread localize a message while we are forking.
767 	 */
768 	(void) mutex_lock(&msglock);
769 	child_pid = fork();
770 	(void) mutex_unlock(&msglock);
771 	if (child_pid == -1) {
772 		zerror(zlogp, B_TRUE, "could not fork for %s", argv[0]);
773 		return (-1);
774 	} else if (child_pid == 0) {
775 		closefrom(0);
776 		/* redirect stdin, stdout & stderr to /dev/null */
777 		(void) open("/dev/null", O_RDONLY);	/* stdin */
778 		(void) open("/dev/null", O_WRONLY);	/* stdout */
779 		(void) open("/dev/null", O_WRONLY);	/* stderr */
780 		(void) execv(path, argv);
781 		/*
782 		 * Since we are in the child, there is no point calling zerror()
783 		 * since there is nobody waiting to consume it.  So exit with a
784 		 * special code that the parent will recognize and call zerror()
785 		 * accordingly.
786 		 */
787 
788 		_exit(ZEXIT_EXEC);
789 	} else {
790 		(void) waitpid(child_pid, &child_status, 0);
791 	}
792 
793 	if (WIFSIGNALED(child_status)) {
794 		zerror(zlogp, B_FALSE, "%s unexpectedly terminated due to "
795 		    "signal %d", path, WTERMSIG(child_status));
796 		return (-1);
797 	}
798 	assert(WIFEXITED(child_status));
799 	if (WEXITSTATUS(child_status) == ZEXIT_EXEC) {
800 		zerror(zlogp, B_FALSE, "failed to exec %s", path);
801 		return (-1);
802 	}
803 	return (WEXITSTATUS(child_status));
804 }
805 
806 static int
807 dofsck(zlog_t *zlogp, const char *fstype, const char *rawdev)
808 {
809 	char cmdbuf[MAXPATHLEN];
810 	char *argv[4];
811 	int status;
812 
813 	/*
814 	 * We could alternatively have called /usr/sbin/fsck -F <fstype>, but
815 	 * that would cost us an extra fork/exec without buying us anything.
816 	 */
817 	if (snprintf(cmdbuf, sizeof (cmdbuf), "/usr/lib/fs/%s/fsck", fstype)
818 	    >= sizeof (cmdbuf)) {
819 		zerror(zlogp, B_FALSE, "file-system type %s too long", fstype);
820 		return (-1);
821 	}
822 
823 	argv[0] = "fsck";
824 	argv[1] = "-m";
825 	argv[2] = (char *)rawdev;
826 	argv[3] = NULL;
827 
828 	status = forkexec(zlogp, cmdbuf, argv);
829 	if (status == 0 || status == -1)
830 		return (status);
831 	zerror(zlogp, B_FALSE, "fsck of '%s' failed with exit status %d; "
832 	    "run fsck manually", rawdev, status);
833 	return (-1);
834 }
835 
836 static int
837 domount(zlog_t *zlogp, const char *fstype, const char *opts,
838     const char *special, const char *directory)
839 {
840 	char cmdbuf[MAXPATHLEN];
841 	char *argv[6];
842 	int status;
843 
844 	/*
845 	 * We could alternatively have called /usr/sbin/mount -F <fstype>, but
846 	 * that would cost us an extra fork/exec without buying us anything.
847 	 */
848 	if (snprintf(cmdbuf, sizeof (cmdbuf), "/usr/lib/fs/%s/mount", fstype)
849 	    >= sizeof (cmdbuf)) {
850 		zerror(zlogp, B_FALSE, "file-system type %s too long", fstype);
851 		return (-1);
852 	}
853 	argv[0] = "mount";
854 	if (opts[0] == '\0') {
855 		argv[1] = (char *)special;
856 		argv[2] = (char *)directory;
857 		argv[3] = NULL;
858 	} else {
859 		argv[1] = "-o";
860 		argv[2] = (char *)opts;
861 		argv[3] = (char *)special;
862 		argv[4] = (char *)directory;
863 		argv[5] = NULL;
864 	}
865 
866 	status = forkexec(zlogp, cmdbuf, argv);
867 	if (status == 0 || status == -1)
868 		return (status);
869 	if (opts[0] == '\0')
870 		zerror(zlogp, B_FALSE, "\"%s %s %s\" "
871 		    "failed with exit code %d",
872 		    cmdbuf, special, directory, status);
873 	else
874 		zerror(zlogp, B_FALSE, "\"%s -o %s %s %s\" "
875 		    "failed with exit code %d",
876 		    cmdbuf, opts, special, directory, status);
877 	return (-1);
878 }
879 
880 /*
881  * Check if a given mount point path exists.
882  * If it does, make sure it doesn't contain any symlinks.
883  * Note that if "leaf" is false we're checking an intermediate
884  * component of the mount point path, so it must be a directory.
885  * If "leaf" is true, then we're checking the entire mount point
886  * path, so the mount point itself can be anything aside from a
887  * symbolic link.
888  *
889  * If the path is invalid then a negative value is returned.  If the
890  * path exists and is a valid mount point path then 0 is returned.
891  * If the path doesn't exist return a positive value.
892  */
893 static int
894 valid_mount_point(zlog_t *zlogp, const char *path, const boolean_t leaf)
895 {
896 	struct stat statbuf;
897 	char respath[MAXPATHLEN];
898 	int res;
899 
900 	if (lstat(path, &statbuf) != 0) {
901 		if (errno == ENOENT)
902 			return (1);
903 		zerror(zlogp, B_TRUE, "can't stat %s", path);
904 		return (-1);
905 	}
906 	if (S_ISLNK(statbuf.st_mode)) {
907 		zerror(zlogp, B_FALSE, "%s is a symlink", path);
908 		return (-1);
909 	}
910 	if (!leaf && !S_ISDIR(statbuf.st_mode)) {
911 		zerror(zlogp, B_FALSE, "%s is not a directory", path);
912 		return (-1);
913 	}
914 	if ((res = resolvepath(path, respath, sizeof (respath))) == -1) {
915 		zerror(zlogp, B_TRUE, "unable to resolve path %s", path);
916 		return (-1);
917 	}
918 	respath[res] = '\0';
919 	if (strcmp(path, respath) != 0) {
920 		/*
921 		 * We don't like ".."s, "."s, or "//"s throwing us off
922 		 */
923 		zerror(zlogp, B_FALSE, "%s is not a canonical path", path);
924 		return (-1);
925 	}
926 	return (0);
927 }
928 
929 /*
930  * Validate a mount point path.  A valid mount point path is an
931  * absolute path that either doesn't exist, or, if it does exists it
932  * must be an absolute canonical path that doesn't have any symbolic
933  * links in it.  The target of a mount point path can be any filesystem
934  * object.  (Different filesystems can support different mount points,
935  * for example "lofs" and "mntfs" both support files and directories
936  * while "ufs" just supports directories.)
937  *
938  * If the path is invalid then a negative value is returned.  If the
939  * path exists and is a valid mount point path then 0 is returned.
940  * If the path doesn't exist return a positive value.
941  */
942 int
943 valid_mount_path(zlog_t *zlogp, const char *rootpath, const char *spec,
944     const char *dir, const char *fstype)
945 {
946 	char abspath[MAXPATHLEN], *slashp, *slashp_next;
947 	int rv;
948 
949 	/*
950 	 * Sanity check the target mount point path.
951 	 * It must be a non-null string that starts with a '/'.
952 	 */
953 	if (dir[0] != '/') {
954 		if (spec[0] == '\0') {
955 			/*
956 			 * This must be an invalid ipd entry (see comments
957 			 * in mount_filesystems_ipdent()).
958 			 */
959 			zerror(zlogp, B_FALSE,
960 			    "invalid inherit-pkg-dir entry: \"%s\"", dir);
961 		} else {
962 			/* Something went wrong. */
963 			zerror(zlogp, B_FALSE, "invalid mount directory, "
964 			    "type: \"%s\", special: \"%s\", dir: \"%s\"",
965 			    fstype, spec, dir);
966 		}
967 		return (-1);
968 	}
969 
970 	/*
971 	 * Join rootpath and dir.  Make sure abspath ends with '/', this
972 	 * is added to all paths (even non-directory paths) to allow us
973 	 * to detect the end of paths below.  If the path already ends
974 	 * in a '/', then that's ok too (although we'll fail the
975 	 * cannonical path check in valid_mount_point()).
976 	 */
977 	if (snprintf(abspath, sizeof (abspath),
978 	    "%s%s/", rootpath, dir) >= sizeof (abspath)) {
979 		zerror(zlogp, B_FALSE, "pathname %s%s is too long",
980 		    rootpath, dir);
981 		return (-1);
982 	}
983 
984 	/*
985 	 * Starting with rootpath, verify the mount path one component
986 	 * at a time.  Continue until we've evaluated all of abspath.
987 	 */
988 	slashp = &abspath[strlen(rootpath)];
989 	assert(*slashp == '/');
990 	do {
991 		slashp_next = strchr(slashp + 1, '/');
992 		*slashp = '\0';
993 		if (slashp_next != NULL) {
994 			/* This is an intermediary mount path component. */
995 			rv = valid_mount_point(zlogp, abspath, B_FALSE);
996 		} else {
997 			/* This is the last component of the mount path. */
998 			rv = valid_mount_point(zlogp, abspath, B_TRUE);
999 		}
1000 		if (rv < 0)
1001 			return (rv);
1002 		*slashp = '/';
1003 	} while ((slashp = slashp_next) != NULL);
1004 	return (rv);
1005 }
1006 
1007 static int
1008 mount_one_dev_device_cb(void *arg, const char *match, const char *name)
1009 {
1010 	di_prof_t prof = arg;
1011 
1012 	if (name == NULL)
1013 		return (di_prof_add_dev(prof, match));
1014 	return (di_prof_add_map(prof, match, name));
1015 }
1016 
1017 static int
1018 mount_one_dev_symlink_cb(void *arg, const char *source, const char *target)
1019 {
1020 	di_prof_t prof = arg;
1021 
1022 	return (di_prof_add_symlink(prof, source, target));
1023 }
1024 
1025 static int
1026 get_iptype(zlog_t *zlogp, zone_iptype_t *iptypep)
1027 {
1028 	zone_dochandle_t handle;
1029 
1030 	if ((handle = zonecfg_init_handle()) == NULL) {
1031 		zerror(zlogp, B_TRUE, "getting zone configuration handle");
1032 		return (-1);
1033 	}
1034 	if (zonecfg_get_snapshot_handle(zone_name, handle) != Z_OK) {
1035 		zerror(zlogp, B_FALSE, "invalid configuration");
1036 		zonecfg_fini_handle(handle);
1037 		return (-1);
1038 	}
1039 	if (zonecfg_get_iptype(handle, iptypep) != Z_OK) {
1040 		zerror(zlogp, B_FALSE, "invalid ip-type configuration");
1041 		zonecfg_fini_handle(handle);
1042 		return (-1);
1043 	}
1044 	zonecfg_fini_handle(handle);
1045 	return (0);
1046 }
1047 
1048 /*
1049  * Apply the standard lists of devices/symlinks/mappings and the user-specified
1050  * list of devices (via zonecfg) to the /dev filesystem.  The filesystem will
1051  * use these as a profile/filter to determine what exists in /dev.
1052  */
1053 static int
1054 mount_one_dev(zlog_t *zlogp, char *devpath)
1055 {
1056 	char			brand[MAXNAMELEN];
1057 	zone_dochandle_t	handle = NULL;
1058 	brand_handle_t		bh = NULL;
1059 	struct zone_devtab	ztab;
1060 	di_prof_t		prof = NULL;
1061 	int			err;
1062 	int			retval = -1;
1063 	zone_iptype_t		iptype;
1064 	const char 		*curr_iptype;
1065 
1066 	if (di_prof_init(devpath, &prof)) {
1067 		zerror(zlogp, B_TRUE, "failed to initialize profile");
1068 		goto cleanup;
1069 	}
1070 
1071 	/* Get a handle to the brand info for this zone */
1072 	if ((zone_get_brand(zone_name, brand, sizeof (brand)) != Z_OK) ||
1073 	    (bh = brand_open(brand)) == NULL) {
1074 		zerror(zlogp, B_FALSE, "unable to determine zone brand");
1075 		goto cleanup;
1076 	}
1077 
1078 	if (get_iptype(zlogp, &iptype) < 0) {
1079 		zerror(zlogp, B_TRUE, "unable to determine ip-type");
1080 		goto cleanup;
1081 	}
1082 	switch (iptype) {
1083 	case ZS_SHARED:
1084 		curr_iptype = "shared";
1085 		break;
1086 	case ZS_EXCLUSIVE:
1087 		curr_iptype = "exclusive";
1088 		break;
1089 	}
1090 
1091 	if (brand_platform_iter_devices(bh, zone_name,
1092 	    mount_one_dev_device_cb, prof, curr_iptype) != 0) {
1093 		zerror(zlogp, B_TRUE, "failed to add standard device");
1094 		goto cleanup;
1095 	}
1096 
1097 	if (brand_platform_iter_link(bh,
1098 	    mount_one_dev_symlink_cb, prof) != 0) {
1099 		zerror(zlogp, B_TRUE, "failed to add standard symlink");
1100 		goto cleanup;
1101 	}
1102 
1103 	/* Add user-specified devices and directories */
1104 	if ((handle = zonecfg_init_handle()) == NULL) {
1105 		zerror(zlogp, B_FALSE, "can't initialize zone handle");
1106 		goto cleanup;
1107 	}
1108 	if (err = zonecfg_get_handle(zone_name, handle)) {
1109 		zerror(zlogp, B_FALSE, "can't get handle for zone "
1110 		    "%s: %s", zone_name, zonecfg_strerror(err));
1111 		goto cleanup;
1112 	}
1113 	if (err = zonecfg_setdevent(handle)) {
1114 		zerror(zlogp, B_FALSE, "%s: %s", zone_name,
1115 		    zonecfg_strerror(err));
1116 		goto cleanup;
1117 	}
1118 	while (zonecfg_getdevent(handle, &ztab) == Z_OK) {
1119 		if (di_prof_add_dev(prof, ztab.zone_dev_match)) {
1120 			zerror(zlogp, B_TRUE, "failed to add "
1121 			    "user-specified device");
1122 			goto cleanup;
1123 		}
1124 	}
1125 	(void) zonecfg_enddevent(handle);
1126 
1127 	/* Send profile to kernel */
1128 	if (di_prof_commit(prof)) {
1129 		zerror(zlogp, B_TRUE, "failed to commit profile");
1130 		goto cleanup;
1131 	}
1132 
1133 	retval = 0;
1134 
1135 cleanup:
1136 	if (bh != NULL)
1137 		brand_close(bh);
1138 	if (handle != NULL)
1139 		zonecfg_fini_handle(handle);
1140 	if (prof)
1141 		di_prof_fini(prof);
1142 	return (retval);
1143 }
1144 
1145 static int
1146 mount_one(zlog_t *zlogp, struct zone_fstab *fsptr, const char *rootpath)
1147 {
1148 	char path[MAXPATHLEN];
1149 	char specpath[MAXPATHLEN];
1150 	char optstr[MAX_MNTOPT_STR];
1151 	zone_fsopt_t *optptr;
1152 	int rv;
1153 
1154 	if ((rv = valid_mount_path(zlogp, rootpath, fsptr->zone_fs_special,
1155 	    fsptr->zone_fs_dir, fsptr->zone_fs_type)) < 0) {
1156 		zerror(zlogp, B_FALSE, "%s%s is not a valid mount point",
1157 		    rootpath, fsptr->zone_fs_dir);
1158 		return (-1);
1159 	} else if (rv > 0) {
1160 		/* The mount point path doesn't exist, create it now. */
1161 		if (make_one_dir(zlogp, rootpath, fsptr->zone_fs_dir,
1162 		    DEFAULT_DIR_MODE, DEFAULT_DIR_USER,
1163 		    DEFAULT_DIR_GROUP) != 0) {
1164 			zerror(zlogp, B_FALSE, "failed to create mount point");
1165 			return (-1);
1166 		}
1167 
1168 		/*
1169 		 * Now this might seem weird, but we need to invoke
1170 		 * valid_mount_path() again.  Why?  Because it checks
1171 		 * to make sure that the mount point path is canonical,
1172 		 * which it can only do if the path exists, so now that
1173 		 * we've created the path we have to verify it again.
1174 		 */
1175 		if ((rv = valid_mount_path(zlogp, rootpath,
1176 		    fsptr->zone_fs_special, fsptr->zone_fs_dir,
1177 		    fsptr->zone_fs_type)) < 0) {
1178 			zerror(zlogp, B_FALSE,
1179 			    "%s%s is not a valid mount point",
1180 			    rootpath, fsptr->zone_fs_dir);
1181 			return (-1);
1182 		}
1183 	}
1184 
1185 	(void) snprintf(path, sizeof (path), "%s%s", rootpath,
1186 	    fsptr->zone_fs_dir);
1187 
1188 	if (strlen(fsptr->zone_fs_special) == 0) {
1189 		/*
1190 		 * A zero-length special is how we distinguish IPDs from
1191 		 * general-purpose FSs.  Make sure it mounts from a place that
1192 		 * can be seen via the alternate zone's root.
1193 		 */
1194 		if (snprintf(specpath, sizeof (specpath), "%s%s",
1195 		    zonecfg_get_root(), fsptr->zone_fs_dir) >=
1196 		    sizeof (specpath)) {
1197 			zerror(zlogp, B_FALSE, "cannot mount %s: path too "
1198 			    "long in alternate root", fsptr->zone_fs_dir);
1199 			return (-1);
1200 		}
1201 		if (zonecfg_in_alt_root())
1202 			resolve_lofs(zlogp, specpath, sizeof (specpath));
1203 		if (domount(zlogp, MNTTYPE_LOFS, IPD_DEFAULT_OPTS,
1204 		    specpath, path) != 0) {
1205 			zerror(zlogp, B_TRUE, "failed to loopback mount %s",
1206 			    specpath);
1207 			return (-1);
1208 		}
1209 		return (0);
1210 	}
1211 
1212 	/*
1213 	 * In general the strategy here is to do just as much verification as
1214 	 * necessary to avoid crashing or otherwise doing something bad; if the
1215 	 * administrator initiated the operation via zoneadm(1m), he'll get
1216 	 * auto-verification which will let him know what's wrong.  If he
1217 	 * modifies the zone configuration of a running zone and doesn't attempt
1218 	 * to verify that it's OK we won't crash but won't bother trying to be
1219 	 * too helpful either.  zoneadm verify is only a couple keystrokes away.
1220 	 */
1221 	if (!zonecfg_valid_fs_type(fsptr->zone_fs_type)) {
1222 		zerror(zlogp, B_FALSE, "cannot mount %s on %s: "
1223 		    "invalid file-system type %s", fsptr->zone_fs_special,
1224 		    fsptr->zone_fs_dir, fsptr->zone_fs_type);
1225 		return (-1);
1226 	}
1227 
1228 	/*
1229 	 * If we're looking at an alternate root environment, then construct
1230 	 * read-only loopback mounts as necessary.  Note that any special
1231 	 * paths for lofs zone mounts in an alternate root must have
1232 	 * already been pre-pended with any alternate root path by the
1233 	 * time we get here.
1234 	 */
1235 	if (zonecfg_in_alt_root()) {
1236 		struct stat64 st;
1237 
1238 		if (stat64(fsptr->zone_fs_special, &st) != -1 &&
1239 		    S_ISBLK(st.st_mode)) {
1240 			/*
1241 			 * If we're going to mount a block device we need
1242 			 * to check if that device is already mounted
1243 			 * somewhere else, and if so, do a lofs mount
1244 			 * of the device instead of a direct mount
1245 			 */
1246 			if (check_lofs_needed(zlogp, fsptr) == -1)
1247 				return (-1);
1248 		} else if (strcmp(fsptr->zone_fs_type, MNTTYPE_LOFS) == 0) {
1249 			/*
1250 			 * For lofs mounts, the special node is inside the
1251 			 * alternate root.  We need lofs resolution for
1252 			 * this case in order to get at the underlying
1253 			 * read-write path.
1254 			 */
1255 			resolve_lofs(zlogp, fsptr->zone_fs_special,
1256 			    sizeof (fsptr->zone_fs_special));
1257 		}
1258 	}
1259 
1260 	/*
1261 	 * Run 'fsck -m' if there's a device to fsck.
1262 	 */
1263 	if (fsptr->zone_fs_raw[0] != '\0' &&
1264 	    dofsck(zlogp, fsptr->zone_fs_type, fsptr->zone_fs_raw) != 0)
1265 		return (-1);
1266 
1267 	/*
1268 	 * Build up mount option string.
1269 	 */
1270 	optstr[0] = '\0';
1271 	if (fsptr->zone_fs_options != NULL) {
1272 		(void) strlcpy(optstr, fsptr->zone_fs_options->zone_fsopt_opt,
1273 		    sizeof (optstr));
1274 		for (optptr = fsptr->zone_fs_options->zone_fsopt_next;
1275 		    optptr != NULL; optptr = optptr->zone_fsopt_next) {
1276 			(void) strlcat(optstr, ",", sizeof (optstr));
1277 			(void) strlcat(optstr, optptr->zone_fsopt_opt,
1278 			    sizeof (optstr));
1279 		}
1280 	}
1281 
1282 	if ((rv = domount(zlogp, fsptr->zone_fs_type, optstr,
1283 	    fsptr->zone_fs_special, path)) != 0)
1284 		return (rv);
1285 
1286 	/*
1287 	 * The mount succeeded.  If this was not a mount of /dev then
1288 	 * we're done.
1289 	 */
1290 	if (strcmp(fsptr->zone_fs_type, MNTTYPE_DEV) != 0)
1291 		return (0);
1292 
1293 	/*
1294 	 * We just mounted an instance of a /dev filesystem, so now we
1295 	 * need to configure it.
1296 	 */
1297 	return (mount_one_dev(zlogp, path));
1298 }
1299 
1300 static void
1301 free_fs_data(struct zone_fstab *fsarray, uint_t nelem)
1302 {
1303 	uint_t i;
1304 
1305 	if (fsarray == NULL)
1306 		return;
1307 	for (i = 0; i < nelem; i++)
1308 		zonecfg_free_fs_option_list(fsarray[i].zone_fs_options);
1309 	free(fsarray);
1310 }
1311 
1312 /*
1313  * This function initiates the creation of a small Solaris Environment for
1314  * scratch zone. The Environment creation process is split up into two
1315  * functions(build_mounted_pre_var() and build_mounted_post_var()). It
1316  * is done this way because:
1317  * 	We need to have both /etc and /var in the root of the scratchzone.
1318  * 	We loopback mount zone's own /etc and /var into the root of the
1319  * 	scratch zone. Unlike /etc, /var can be a seperate filesystem. So we
1320  * 	need to delay the mount of /var till the zone's root gets populated.
1321  *	So mounting of localdirs[](/etc and /var) have been moved to the
1322  * 	build_mounted_post_var() which gets called only after the zone
1323  * 	specific filesystems are mounted.
1324  *
1325  * Note that the scratch zone we set up for updating the zone (Z_MNT_UPDATE)
1326  * does not loopback mount the zone's own /etc and /var into the root of the
1327  * scratch zone.
1328  */
1329 static boolean_t
1330 build_mounted_pre_var(zlog_t *zlogp, char *rootpath,
1331     size_t rootlen, const char *zonepath, char *luroot, size_t lurootlen)
1332 {
1333 	char tmp[MAXPATHLEN], fromdir[MAXPATHLEN];
1334 	const char **cpp;
1335 	static const char *mkdirs[] = {
1336 		"/system", "/system/contract", "/system/object", "/proc",
1337 		"/dev", "/tmp", "/a", NULL
1338 	};
1339 	char *altstr;
1340 	FILE *fp;
1341 	uuid_t uuid;
1342 
1343 	assert(zone_isnative || zone_iscluster);
1344 
1345 	resolve_lofs(zlogp, rootpath, rootlen);
1346 	(void) snprintf(luroot, lurootlen, "%s/lu", zonepath);
1347 	resolve_lofs(zlogp, luroot, lurootlen);
1348 	(void) snprintf(tmp, sizeof (tmp), "%s/bin", luroot);
1349 	(void) symlink("./usr/bin", tmp);
1350 
1351 	/*
1352 	 * These are mostly special mount points; not handled here.  (See
1353 	 * zone_mount_early.)
1354 	 */
1355 	for (cpp = mkdirs; *cpp != NULL; cpp++) {
1356 		(void) snprintf(tmp, sizeof (tmp), "%s%s", luroot, *cpp);
1357 		if (mkdir(tmp, 0755) != 0) {
1358 			zerror(zlogp, B_TRUE, "cannot create %s", tmp);
1359 			return (B_FALSE);
1360 		}
1361 	}
1362 	/*
1363 	 * This is here to support lucopy.  If there's an instance of this same
1364 	 * zone on the current running system, then we mount its root up as
1365 	 * read-only inside the scratch zone.
1366 	 */
1367 	(void) zonecfg_get_uuid(zone_name, uuid);
1368 	altstr = strdup(zonecfg_get_root());
1369 	if (altstr == NULL) {
1370 		zerror(zlogp, B_TRUE, "memory allocation failed");
1371 		return (B_FALSE);
1372 	}
1373 	zonecfg_set_root("");
1374 	(void) strlcpy(tmp, zone_name, sizeof (tmp));
1375 	(void) zonecfg_get_name_by_uuid(uuid, tmp, sizeof (tmp));
1376 	if (zone_get_rootpath(tmp, fromdir, sizeof (fromdir)) == Z_OK &&
1377 	    strcmp(fromdir, rootpath) != 0) {
1378 		(void) snprintf(tmp, sizeof (tmp), "%s/b", luroot);
1379 		if (mkdir(tmp, 0755) != 0) {
1380 			zerror(zlogp, B_TRUE, "cannot create %s", tmp);
1381 			return (B_FALSE);
1382 		}
1383 		if (domount(zlogp, MNTTYPE_LOFS, IPD_DEFAULT_OPTS, fromdir,
1384 		    tmp) != 0) {
1385 			zerror(zlogp, B_TRUE, "cannot mount %s on %s", tmp,
1386 			    fromdir);
1387 			return (B_FALSE);
1388 		}
1389 	}
1390 	zonecfg_set_root(altstr);
1391 	free(altstr);
1392 
1393 	if ((fp = zonecfg_open_scratch(luroot, B_TRUE)) == NULL) {
1394 		zerror(zlogp, B_TRUE, "cannot open zone mapfile");
1395 		return (B_FALSE);
1396 	}
1397 	(void) ftruncate(fileno(fp), 0);
1398 	if (zonecfg_add_scratch(fp, zone_name, kernzone, "/") == -1) {
1399 		zerror(zlogp, B_TRUE, "cannot add zone mapfile entry");
1400 	}
1401 	zonecfg_close_scratch(fp);
1402 	(void) snprintf(tmp, sizeof (tmp), "%s/a", luroot);
1403 	if (domount(zlogp, MNTTYPE_LOFS, "", rootpath, tmp) != 0)
1404 		return (B_FALSE);
1405 	(void) strlcpy(rootpath, tmp, rootlen);
1406 	return (B_TRUE);
1407 }
1408 
1409 
1410 static boolean_t
1411 build_mounted_post_var(zlog_t *zlogp, zone_mnt_t mount_cmd, char *rootpath,
1412     const char *luroot)
1413 {
1414 	char tmp[MAXPATHLEN], fromdir[MAXPATHLEN];
1415 	const char **cpp;
1416 	const char **loopdirs;
1417 	const char **tmpdirs;
1418 	static const char *localdirs[] = {
1419 		"/etc", "/var", NULL
1420 	};
1421 	static const char *scr_loopdirs[] = {
1422 		"/etc/lib", "/etc/fs", "/lib", "/sbin", "/platform",
1423 		"/usr", NULL
1424 	};
1425 	static const char *upd_loopdirs[] = {
1426 		"/etc", "/kernel", "/lib", "/opt", "/platform", "/sbin",
1427 		"/usr", "/var", NULL
1428 	};
1429 	static const char *scr_tmpdirs[] = {
1430 		"/tmp", "/var/run", NULL
1431 	};
1432 	static const char *upd_tmpdirs[] = {
1433 		"/tmp", "/var/run", "/var/tmp", NULL
1434 	};
1435 	struct stat st;
1436 
1437 	if (mount_cmd == Z_MNT_SCRATCH) {
1438 		/*
1439 		 * These are mounted read-write from the zone undergoing
1440 		 * upgrade.  We must be careful not to 'leak' things from the
1441 		 * main system into the zone, and this accomplishes that goal.
1442 		 */
1443 		for (cpp = localdirs; *cpp != NULL; cpp++) {
1444 			(void) snprintf(tmp, sizeof (tmp), "%s%s", luroot,
1445 			    *cpp);
1446 			(void) snprintf(fromdir, sizeof (fromdir), "%s%s",
1447 			    rootpath, *cpp);
1448 			if (mkdir(tmp, 0755) != 0) {
1449 				zerror(zlogp, B_TRUE, "cannot create %s", tmp);
1450 				return (B_FALSE);
1451 			}
1452 			if (domount(zlogp, MNTTYPE_LOFS, "", fromdir, tmp)
1453 			    != 0) {
1454 				zerror(zlogp, B_TRUE, "cannot mount %s on %s",
1455 				    tmp, *cpp);
1456 				return (B_FALSE);
1457 			}
1458 		}
1459 	}
1460 
1461 	if (mount_cmd == Z_MNT_UPDATE)
1462 		loopdirs = upd_loopdirs;
1463 	else
1464 		loopdirs = scr_loopdirs;
1465 
1466 	/*
1467 	 * These are things mounted read-only from the running system because
1468 	 * they contain binaries that must match system.
1469 	 */
1470 	for (cpp = loopdirs; *cpp != NULL; cpp++) {
1471 		(void) snprintf(tmp, sizeof (tmp), "%s%s", luroot, *cpp);
1472 		if (mkdir(tmp, 0755) != 0) {
1473 			if (errno != EEXIST) {
1474 				zerror(zlogp, B_TRUE, "cannot create %s", tmp);
1475 				return (B_FALSE);
1476 			}
1477 			if (lstat(tmp, &st) != 0) {
1478 				zerror(zlogp, B_TRUE, "cannot stat %s", tmp);
1479 				return (B_FALSE);
1480 			}
1481 			/*
1482 			 * Ignore any non-directories encountered.  These are
1483 			 * things that have been converted into symlinks
1484 			 * (/etc/fs and /etc/lib) and no longer need a lofs
1485 			 * fixup.
1486 			 */
1487 			if (!S_ISDIR(st.st_mode))
1488 				continue;
1489 		}
1490 		if (domount(zlogp, MNTTYPE_LOFS, IPD_DEFAULT_OPTS, *cpp,
1491 		    tmp) != 0) {
1492 			zerror(zlogp, B_TRUE, "cannot mount %s on %s", tmp,
1493 			    *cpp);
1494 			return (B_FALSE);
1495 		}
1496 	}
1497 
1498 	if (mount_cmd == Z_MNT_UPDATE)
1499 		tmpdirs = upd_tmpdirs;
1500 	else
1501 		tmpdirs = scr_tmpdirs;
1502 
1503 	/*
1504 	 * These are things with tmpfs mounted inside.
1505 	 */
1506 	for (cpp = tmpdirs; *cpp != NULL; cpp++) {
1507 		(void) snprintf(tmp, sizeof (tmp), "%s%s", luroot, *cpp);
1508 		if (mount_cmd == Z_MNT_SCRATCH && mkdir(tmp, 0755) != 0 &&
1509 		    errno != EEXIST) {
1510 			zerror(zlogp, B_TRUE, "cannot create %s", tmp);
1511 			return (B_FALSE);
1512 		}
1513 
1514 		/*
1515 		 * We could set the mode for /tmp when we do the mkdir but
1516 		 * since that can be modified by the umask we will just set
1517 		 * the correct mode for /tmp now.
1518 		 */
1519 		if (strcmp(*cpp, "/tmp") == 0 && chmod(tmp, 01777) != 0) {
1520 			zerror(zlogp, B_TRUE, "cannot chmod %s", tmp);
1521 			return (B_FALSE);
1522 		}
1523 
1524 		if (domount(zlogp, MNTTYPE_TMPFS, "", "swap", tmp) != 0) {
1525 			zerror(zlogp, B_TRUE, "cannot mount swap on %s", *cpp);
1526 			return (B_FALSE);
1527 		}
1528 	}
1529 	return (B_TRUE);
1530 }
1531 
1532 typedef struct plat_gmount_cb_data {
1533 	zlog_t			*pgcd_zlogp;
1534 	struct zone_fstab	**pgcd_fs_tab;
1535 	int			*pgcd_num_fs;
1536 } plat_gmount_cb_data_t;
1537 
1538 /*
1539  * plat_gmount_cb() is a callback function invoked by libbrand to iterate
1540  * through all global brand platform mounts.
1541  */
1542 int
1543 plat_gmount_cb(void *data, const char *spec, const char *dir,
1544     const char *fstype, const char *opt)
1545 {
1546 	plat_gmount_cb_data_t	*cp = data;
1547 	zlog_t			*zlogp = cp->pgcd_zlogp;
1548 	struct zone_fstab	*fs_ptr = *cp->pgcd_fs_tab;
1549 	int			num_fs = *cp->pgcd_num_fs;
1550 	struct zone_fstab	*fsp, *tmp_ptr;
1551 
1552 	num_fs++;
1553 	if ((tmp_ptr = realloc(fs_ptr, num_fs * sizeof (*tmp_ptr))) == NULL) {
1554 		zerror(zlogp, B_TRUE, "memory allocation failed");
1555 		return (-1);
1556 	}
1557 
1558 	fs_ptr = tmp_ptr;
1559 	fsp = &fs_ptr[num_fs - 1];
1560 
1561 	/* update the callback struct passed in */
1562 	*cp->pgcd_fs_tab = fs_ptr;
1563 	*cp->pgcd_num_fs = num_fs;
1564 
1565 	fsp->zone_fs_raw[0] = '\0';
1566 	(void) strlcpy(fsp->zone_fs_special, spec,
1567 	    sizeof (fsp->zone_fs_special));
1568 	(void) strlcpy(fsp->zone_fs_dir, dir, sizeof (fsp->zone_fs_dir));
1569 	(void) strlcpy(fsp->zone_fs_type, fstype, sizeof (fsp->zone_fs_type));
1570 	fsp->zone_fs_options = NULL;
1571 	if ((opt != NULL) &&
1572 	    (zonecfg_add_fs_option(fsp, (char *)opt) != Z_OK)) {
1573 		zerror(zlogp, B_FALSE, "error adding property");
1574 		return (-1);
1575 	}
1576 
1577 	return (0);
1578 }
1579 
1580 static int
1581 mount_filesystems_ipdent(zone_dochandle_t handle, zlog_t *zlogp,
1582     struct zone_fstab **fs_tabp, int *num_fsp)
1583 {
1584 	struct zone_fstab *tmp_ptr, *fs_ptr, *fsp, fstab;
1585 	int num_fs;
1586 
1587 	num_fs = *num_fsp;
1588 	fs_ptr = *fs_tabp;
1589 
1590 	if (zonecfg_setipdent(handle) != Z_OK) {
1591 		zerror(zlogp, B_FALSE, "invalid configuration");
1592 		return (-1);
1593 	}
1594 	while (zonecfg_getipdent(handle, &fstab) == Z_OK) {
1595 		num_fs++;
1596 		if ((tmp_ptr = realloc(fs_ptr,
1597 		    num_fs * sizeof (*tmp_ptr))) == NULL) {
1598 			zerror(zlogp, B_TRUE, "memory allocation failed");
1599 			(void) zonecfg_endipdent(handle);
1600 			return (-1);
1601 		}
1602 
1603 		/* update the pointers passed in */
1604 		*fs_tabp = tmp_ptr;
1605 		*num_fsp = num_fs;
1606 
1607 		/*
1608 		 * IPDs logically only have a mount point; all other properties
1609 		 * are implied.
1610 		 */
1611 		fs_ptr = tmp_ptr;
1612 		fsp = &fs_ptr[num_fs - 1];
1613 		(void) strlcpy(fsp->zone_fs_dir,
1614 		    fstab.zone_fs_dir, sizeof (fsp->zone_fs_dir));
1615 		fsp->zone_fs_special[0] = '\0';
1616 		fsp->zone_fs_raw[0] = '\0';
1617 		fsp->zone_fs_type[0] = '\0';
1618 		fsp->zone_fs_options = NULL;
1619 	}
1620 	(void) zonecfg_endipdent(handle);
1621 	return (0);
1622 }
1623 
1624 static int
1625 mount_filesystems_fsent(zone_dochandle_t handle, zlog_t *zlogp,
1626     struct zone_fstab **fs_tabp, int *num_fsp, zone_mnt_t mount_cmd)
1627 {
1628 	struct zone_fstab *tmp_ptr, *fs_ptr, *fsp, fstab;
1629 	int num_fs;
1630 
1631 	num_fs = *num_fsp;
1632 	fs_ptr = *fs_tabp;
1633 
1634 	if (zonecfg_setfsent(handle) != Z_OK) {
1635 		zerror(zlogp, B_FALSE, "invalid configuration");
1636 		return (-1);
1637 	}
1638 	while (zonecfg_getfsent(handle, &fstab) == Z_OK) {
1639 		/*
1640 		 * ZFS filesystems will not be accessible under an alternate
1641 		 * root, since the pool will not be known.  Ignore them in this
1642 		 * case.
1643 		 */
1644 		if (ALT_MOUNT(mount_cmd) &&
1645 		    strcmp(fstab.zone_fs_type, MNTTYPE_ZFS) == 0)
1646 			continue;
1647 
1648 		num_fs++;
1649 		if ((tmp_ptr = realloc(fs_ptr,
1650 		    num_fs * sizeof (*tmp_ptr))) == NULL) {
1651 			zerror(zlogp, B_TRUE, "memory allocation failed");
1652 			(void) zonecfg_endfsent(handle);
1653 			return (-1);
1654 		}
1655 		/* update the pointers passed in */
1656 		*fs_tabp = tmp_ptr;
1657 		*num_fsp = num_fs;
1658 
1659 		fs_ptr = tmp_ptr;
1660 		fsp = &fs_ptr[num_fs - 1];
1661 		(void) strlcpy(fsp->zone_fs_dir,
1662 		    fstab.zone_fs_dir, sizeof (fsp->zone_fs_dir));
1663 		(void) strlcpy(fsp->zone_fs_raw, fstab.zone_fs_raw,
1664 		    sizeof (fsp->zone_fs_raw));
1665 		(void) strlcpy(fsp->zone_fs_type, fstab.zone_fs_type,
1666 		    sizeof (fsp->zone_fs_type));
1667 		fsp->zone_fs_options = fstab.zone_fs_options;
1668 
1669 		/*
1670 		 * For all lofs mounts, make sure that the 'special'
1671 		 * entry points inside the alternate root.  The
1672 		 * source path for a lofs mount in a given zone needs
1673 		 * to be relative to the root of the boot environment
1674 		 * that contains the zone.  Note that we don't do this
1675 		 * for non-lofs mounts since they will have a device
1676 		 * as a backing store and device paths must always be
1677 		 * specified relative to the current boot environment.
1678 		 */
1679 		fsp->zone_fs_special[0] = '\0';
1680 		if (strcmp(fsp->zone_fs_type, MNTTYPE_LOFS) == 0) {
1681 			(void) strlcat(fsp->zone_fs_special, zonecfg_get_root(),
1682 			    sizeof (fsp->zone_fs_special));
1683 		}
1684 		(void) strlcat(fsp->zone_fs_special, fstab.zone_fs_special,
1685 		    sizeof (fsp->zone_fs_special));
1686 	}
1687 	(void) zonecfg_endfsent(handle);
1688 	return (0);
1689 }
1690 
1691 static int
1692 mount_filesystems(zlog_t *zlogp, zone_mnt_t mount_cmd)
1693 {
1694 	char rootpath[MAXPATHLEN];
1695 	char zonepath[MAXPATHLEN];
1696 	char brand[MAXNAMELEN];
1697 	char luroot[MAXPATHLEN];
1698 	int i, num_fs = 0;
1699 	struct zone_fstab *fs_ptr = NULL;
1700 	zone_dochandle_t handle = NULL;
1701 	zone_state_t zstate;
1702 	brand_handle_t bh;
1703 	plat_gmount_cb_data_t cb;
1704 
1705 	if (zone_get_state(zone_name, &zstate) != Z_OK ||
1706 	    (zstate != ZONE_STATE_READY && zstate != ZONE_STATE_MOUNTED)) {
1707 		zerror(zlogp, B_FALSE,
1708 		    "zone must be in '%s' or '%s' state to mount file-systems",
1709 		    zone_state_str(ZONE_STATE_READY),
1710 		    zone_state_str(ZONE_STATE_MOUNTED));
1711 		goto bad;
1712 	}
1713 
1714 	if (zone_get_zonepath(zone_name, zonepath, sizeof (zonepath)) != Z_OK) {
1715 		zerror(zlogp, B_TRUE, "unable to determine zone path");
1716 		goto bad;
1717 	}
1718 
1719 	if (zone_get_rootpath(zone_name, rootpath, sizeof (rootpath)) != Z_OK) {
1720 		zerror(zlogp, B_TRUE, "unable to determine zone root");
1721 		goto bad;
1722 	}
1723 
1724 	if ((handle = zonecfg_init_handle()) == NULL) {
1725 		zerror(zlogp, B_TRUE, "getting zone configuration handle");
1726 		goto bad;
1727 	}
1728 	if (zonecfg_get_snapshot_handle(zone_name, handle) != Z_OK ||
1729 	    zonecfg_setfsent(handle) != Z_OK) {
1730 		zerror(zlogp, B_FALSE, "invalid configuration");
1731 		goto bad;
1732 	}
1733 
1734 	/* Get a handle to the brand info for this zone */
1735 	if ((zone_get_brand(zone_name, brand, sizeof (brand)) != Z_OK) ||
1736 	    (bh = brand_open(brand)) == NULL) {
1737 		zerror(zlogp, B_FALSE, "unable to determine zone brand");
1738 		zonecfg_fini_handle(handle);
1739 		return (-1);
1740 	}
1741 
1742 	/*
1743 	 * Get the list of global filesystems to mount from the brand
1744 	 * configuration.
1745 	 */
1746 	cb.pgcd_zlogp = zlogp;
1747 	cb.pgcd_fs_tab = &fs_ptr;
1748 	cb.pgcd_num_fs = &num_fs;
1749 	if (brand_platform_iter_gmounts(bh, zonepath,
1750 	    plat_gmount_cb, &cb) != 0) {
1751 		zerror(zlogp, B_FALSE, "unable to mount filesystems");
1752 		brand_close(bh);
1753 		zonecfg_fini_handle(handle);
1754 		return (-1);
1755 	}
1756 	brand_close(bh);
1757 
1758 	/*
1759 	 * Iterate through the rest of the filesystems, first the IPDs, then
1760 	 * the general FSs.  Sort them all, then mount them in sorted order.
1761 	 * This is to make sure the higher level directories (e.g., /usr)
1762 	 * get mounted before any beneath them (e.g., /usr/local).
1763 	 */
1764 	if (mount_filesystems_ipdent(handle, zlogp, &fs_ptr, &num_fs) != 0)
1765 		goto bad;
1766 
1767 	if (mount_filesystems_fsent(handle, zlogp, &fs_ptr, &num_fs,
1768 	    mount_cmd) != 0)
1769 		goto bad;
1770 
1771 	zonecfg_fini_handle(handle);
1772 	handle = NULL;
1773 
1774 	/*
1775 	 * Normally when we mount a zone all the zone filesystems
1776 	 * get mounted relative to rootpath, which is usually
1777 	 * <zonepath>/root.  But when mounting a zone for administration
1778 	 * purposes via the zone "mount" state, build_mounted_pre_var()
1779 	 * updates rootpath to be <zonepath>/lu/a so we'll mount all
1780 	 * the zones filesystems there instead.
1781 	 *
1782 	 * build_mounted_pre_var() and build_mounted_post_var() will
1783 	 * also do some extra work to create directories and lofs mount
1784 	 * a bunch of global zone file system paths into <zonepath>/lu.
1785 	 *
1786 	 * This allows us to be able to enter the zone (now rooted at
1787 	 * <zonepath>/lu) and run the upgrade/patch tools that are in the
1788 	 * global zone and have them upgrade the to-be-modified zone's
1789 	 * files mounted on /a.  (Which mirrors the existing standard
1790 	 * upgrade environment.)
1791 	 *
1792 	 * There is of course one catch.  When doing the upgrade
1793 	 * we need <zoneroot>/lu/dev to be the /dev filesystem
1794 	 * for the zone and we don't want to have any /dev filesystem
1795 	 * mounted at <zoneroot>/lu/a/dev.  Since /dev is specified
1796 	 * as a normal zone filesystem by default we'll try to mount
1797 	 * it at <zoneroot>/lu/a/dev, so we have to detect this
1798 	 * case and instead mount it at <zoneroot>/lu/dev.
1799 	 *
1800 	 * All this work is done in three phases:
1801 	 *   1) Create and populate lu directory (build_mounted_pre_var()).
1802 	 *   2) Mount the required filesystems as per the zone configuration.
1803 	 *   3) Set up the rest of the scratch zone environment
1804 	 *	(build_mounted_post_var()).
1805 	 */
1806 	if (ALT_MOUNT(mount_cmd) && !build_mounted_pre_var(zlogp,
1807 	    rootpath, sizeof (rootpath), zonepath, luroot, sizeof (luroot)))
1808 		goto bad;
1809 
1810 	qsort(fs_ptr, num_fs, sizeof (*fs_ptr), fs_compare);
1811 
1812 	for (i = 0; i < num_fs; i++) {
1813 		if (ALT_MOUNT(mount_cmd) &&
1814 		    strcmp(fs_ptr[i].zone_fs_dir, "/dev") == 0) {
1815 			size_t slen = strlen(rootpath) - 2;
1816 
1817 			/*
1818 			 * By default we'll try to mount /dev as /a/dev
1819 			 * but /dev is special and always goes at the top
1820 			 * so strip the trailing '/a' from the rootpath.
1821 			 */
1822 			assert(zone_isnative || zone_iscluster);
1823 			assert(strcmp(&rootpath[slen], "/a") == 0);
1824 			rootpath[slen] = '\0';
1825 			if (mount_one(zlogp, &fs_ptr[i], rootpath) != 0)
1826 				goto bad;
1827 			rootpath[slen] = '/';
1828 			continue;
1829 		}
1830 		if (mount_one(zlogp, &fs_ptr[i], rootpath) != 0)
1831 			goto bad;
1832 	}
1833 	if (ALT_MOUNT(mount_cmd) &&
1834 	    !build_mounted_post_var(zlogp, mount_cmd, rootpath, luroot))
1835 		goto bad;
1836 
1837 	/*
1838 	 * For Trusted Extensions cross-mount each lower level /export/home
1839 	 */
1840 	if (mount_cmd == Z_MNT_BOOT &&
1841 	    tsol_mounts(zlogp, zone_name, rootpath) != 0)
1842 		goto bad;
1843 
1844 	free_fs_data(fs_ptr, num_fs);
1845 
1846 	/*
1847 	 * Everything looks fine.
1848 	 */
1849 	return (0);
1850 
1851 bad:
1852 	if (handle != NULL)
1853 		zonecfg_fini_handle(handle);
1854 	free_fs_data(fs_ptr, num_fs);
1855 	return (-1);
1856 }
1857 
1858 /* caller makes sure neither parameter is NULL */
1859 static int
1860 addr2netmask(char *prefixstr, int maxprefixlen, uchar_t *maskstr)
1861 {
1862 	int prefixlen;
1863 
1864 	prefixlen = atoi(prefixstr);
1865 	if (prefixlen < 0 || prefixlen > maxprefixlen)
1866 		return (1);
1867 	while (prefixlen > 0) {
1868 		if (prefixlen >= 8) {
1869 			*maskstr++ = 0xFF;
1870 			prefixlen -= 8;
1871 			continue;
1872 		}
1873 		*maskstr |= 1 << (8 - prefixlen);
1874 		prefixlen--;
1875 	}
1876 	return (0);
1877 }
1878 
1879 /*
1880  * Tear down all interfaces belonging to the given zone.  This should
1881  * be called with the zone in a state other than "running", so that
1882  * interfaces can't be assigned to the zone after this returns.
1883  *
1884  * If anything goes wrong, log an error message and return an error.
1885  */
1886 static int
1887 unconfigure_shared_network_interfaces(zlog_t *zlogp, zoneid_t zone_id)
1888 {
1889 	struct lifnum lifn;
1890 	struct lifconf lifc;
1891 	struct lifreq *lifrp, lifrl;
1892 	int64_t lifc_flags = LIFC_NOXMIT | LIFC_ALLZONES;
1893 	int num_ifs, s, i, ret_code = 0;
1894 	uint_t bufsize;
1895 	char *buf = NULL;
1896 
1897 	if ((s = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
1898 		zerror(zlogp, B_TRUE, "could not get socket");
1899 		ret_code = -1;
1900 		goto bad;
1901 	}
1902 	lifn.lifn_family = AF_UNSPEC;
1903 	lifn.lifn_flags = (int)lifc_flags;
1904 	if (ioctl(s, SIOCGLIFNUM, (char *)&lifn) < 0) {
1905 		zerror(zlogp, B_TRUE,
1906 		    "could not determine number of network interfaces");
1907 		ret_code = -1;
1908 		goto bad;
1909 	}
1910 	num_ifs = lifn.lifn_count;
1911 	bufsize = num_ifs * sizeof (struct lifreq);
1912 	if ((buf = malloc(bufsize)) == NULL) {
1913 		zerror(zlogp, B_TRUE, "memory allocation failed");
1914 		ret_code = -1;
1915 		goto bad;
1916 	}
1917 	lifc.lifc_family = AF_UNSPEC;
1918 	lifc.lifc_flags = (int)lifc_flags;
1919 	lifc.lifc_len = bufsize;
1920 	lifc.lifc_buf = buf;
1921 	if (ioctl(s, SIOCGLIFCONF, (char *)&lifc) < 0) {
1922 		zerror(zlogp, B_TRUE, "could not get configured network "
1923 		    "interfaces");
1924 		ret_code = -1;
1925 		goto bad;
1926 	}
1927 	lifrp = lifc.lifc_req;
1928 	for (i = lifc.lifc_len / sizeof (struct lifreq); i > 0; i--, lifrp++) {
1929 		(void) close(s);
1930 		if ((s = socket(lifrp->lifr_addr.ss_family, SOCK_DGRAM, 0)) <
1931 		    0) {
1932 			zerror(zlogp, B_TRUE, "%s: could not get socket",
1933 			    lifrl.lifr_name);
1934 			ret_code = -1;
1935 			continue;
1936 		}
1937 		(void) memset(&lifrl, 0, sizeof (lifrl));
1938 		(void) strncpy(lifrl.lifr_name, lifrp->lifr_name,
1939 		    sizeof (lifrl.lifr_name));
1940 		if (ioctl(s, SIOCGLIFZONE, (caddr_t)&lifrl) < 0) {
1941 			if (errno == ENXIO)
1942 				/*
1943 				 * Interface may have been removed by admin or
1944 				 * another zone halting.
1945 				 */
1946 				continue;
1947 			zerror(zlogp, B_TRUE,
1948 			    "%s: could not determine the zone to which this "
1949 			    "network interface is bound", lifrl.lifr_name);
1950 			ret_code = -1;
1951 			continue;
1952 		}
1953 		if (lifrl.lifr_zoneid == zone_id) {
1954 			if (ioctl(s, SIOCLIFREMOVEIF, (caddr_t)&lifrl) < 0) {
1955 				zerror(zlogp, B_TRUE,
1956 				    "%s: could not remove network interface",
1957 				    lifrl.lifr_name);
1958 				ret_code = -1;
1959 				continue;
1960 			}
1961 		}
1962 	}
1963 bad:
1964 	if (s > 0)
1965 		(void) close(s);
1966 	if (buf)
1967 		free(buf);
1968 	return (ret_code);
1969 }
1970 
1971 static union	sockunion {
1972 	struct	sockaddr sa;
1973 	struct	sockaddr_in sin;
1974 	struct	sockaddr_dl sdl;
1975 	struct	sockaddr_in6 sin6;
1976 } so_dst, so_ifp;
1977 
1978 static struct {
1979 	struct	rt_msghdr hdr;
1980 	char	space[512];
1981 } rtmsg;
1982 
1983 static int
1984 salen(struct sockaddr *sa)
1985 {
1986 	switch (sa->sa_family) {
1987 	case AF_INET:
1988 		return (sizeof (struct sockaddr_in));
1989 	case AF_LINK:
1990 		return (sizeof (struct sockaddr_dl));
1991 	case AF_INET6:
1992 		return (sizeof (struct sockaddr_in6));
1993 	default:
1994 		return (sizeof (struct sockaddr));
1995 	}
1996 }
1997 
1998 #define	ROUNDUP_LONG(a) \
1999 	((a) > 0 ? (1 + (((a) - 1) | (sizeof (long) - 1))) : sizeof (long))
2000 
2001 /*
2002  * Look up which zone is using a given IP address.  The address in question
2003  * is expected to have been stuffed into the structure to which lifr points
2004  * via a previous SIOCGLIFADDR ioctl().
2005  *
2006  * This is done using black router socket magic.
2007  *
2008  * Return the name of the zone on success or NULL on failure.
2009  *
2010  * This is a lot of code for a simple task; a new ioctl request to take care
2011  * of this might be a useful RFE.
2012  */
2013 
2014 static char *
2015 who_is_using(zlog_t *zlogp, struct lifreq *lifr)
2016 {
2017 	static char answer[ZONENAME_MAX];
2018 	pid_t pid;
2019 	int s, rlen, l, i;
2020 	char *cp = rtmsg.space;
2021 	struct sockaddr_dl *ifp = NULL;
2022 	struct sockaddr *sa;
2023 	char save_if_name[LIFNAMSIZ];
2024 
2025 	answer[0] = '\0';
2026 
2027 	pid = getpid();
2028 	if ((s = socket(PF_ROUTE, SOCK_RAW, 0)) < 0) {
2029 		zerror(zlogp, B_TRUE, "could not get routing socket");
2030 		return (NULL);
2031 	}
2032 
2033 	if (lifr->lifr_addr.ss_family == AF_INET) {
2034 		struct sockaddr_in *sin4;
2035 
2036 		so_dst.sa.sa_family = AF_INET;
2037 		sin4 = (struct sockaddr_in *)&lifr->lifr_addr;
2038 		so_dst.sin.sin_addr = sin4->sin_addr;
2039 	} else {
2040 		struct sockaddr_in6 *sin6;
2041 
2042 		so_dst.sa.sa_family = AF_INET6;
2043 		sin6 = (struct sockaddr_in6 *)&lifr->lifr_addr;
2044 		so_dst.sin6.sin6_addr = sin6->sin6_addr;
2045 	}
2046 
2047 	so_ifp.sa.sa_family = AF_LINK;
2048 
2049 	(void) memset(&rtmsg, 0, sizeof (rtmsg));
2050 	rtmsg.hdr.rtm_type = RTM_GET;
2051 	rtmsg.hdr.rtm_flags = RTF_UP | RTF_HOST;
2052 	rtmsg.hdr.rtm_version = RTM_VERSION;
2053 	rtmsg.hdr.rtm_seq = ++rts_seqno;
2054 	rtmsg.hdr.rtm_addrs = RTA_IFP | RTA_DST;
2055 
2056 	l = ROUNDUP_LONG(salen(&so_dst.sa));
2057 	(void) memmove(cp, &(so_dst), l);
2058 	cp += l;
2059 	l = ROUNDUP_LONG(salen(&so_ifp.sa));
2060 	(void) memmove(cp, &(so_ifp), l);
2061 	cp += l;
2062 
2063 	rtmsg.hdr.rtm_msglen = l = cp - (char *)&rtmsg;
2064 
2065 	if ((rlen = write(s, &rtmsg, l)) < 0) {
2066 		zerror(zlogp, B_TRUE, "writing to routing socket");
2067 		return (NULL);
2068 	} else if (rlen < (int)rtmsg.hdr.rtm_msglen) {
2069 		zerror(zlogp, B_TRUE,
2070 		    "write to routing socket got only %d for len\n", rlen);
2071 		return (NULL);
2072 	}
2073 	do {
2074 		l = read(s, &rtmsg, sizeof (rtmsg));
2075 	} while (l > 0 && (rtmsg.hdr.rtm_seq != rts_seqno ||
2076 	    rtmsg.hdr.rtm_pid != pid));
2077 	if (l < 0) {
2078 		zerror(zlogp, B_TRUE, "reading from routing socket");
2079 		return (NULL);
2080 	}
2081 
2082 	if (rtmsg.hdr.rtm_version != RTM_VERSION) {
2083 		zerror(zlogp, B_FALSE,
2084 		    "routing message version %d not understood",
2085 		    rtmsg.hdr.rtm_version);
2086 		return (NULL);
2087 	}
2088 	if (rtmsg.hdr.rtm_msglen != (ushort_t)l) {
2089 		zerror(zlogp, B_FALSE, "message length mismatch, "
2090 		    "expected %d bytes, returned %d bytes",
2091 		    rtmsg.hdr.rtm_msglen, l);
2092 		return (NULL);
2093 	}
2094 	if (rtmsg.hdr.rtm_errno != 0)  {
2095 		errno = rtmsg.hdr.rtm_errno;
2096 		zerror(zlogp, B_TRUE, "RTM_GET routing socket message");
2097 		return (NULL);
2098 	}
2099 	if ((rtmsg.hdr.rtm_addrs & RTA_IFP) == 0) {
2100 		zerror(zlogp, B_FALSE, "network interface not found");
2101 		return (NULL);
2102 	}
2103 	cp = ((char *)(&rtmsg.hdr + 1));
2104 	for (i = 1; i != 0; i <<= 1) {
2105 		/* LINTED E_BAD_PTR_CAST_ALIGN */
2106 		sa = (struct sockaddr *)cp;
2107 		if (i != RTA_IFP) {
2108 			if ((i & rtmsg.hdr.rtm_addrs) != 0)
2109 				cp += ROUNDUP_LONG(salen(sa));
2110 			continue;
2111 		}
2112 		if (sa->sa_family == AF_LINK &&
2113 		    ((struct sockaddr_dl *)sa)->sdl_nlen != 0)
2114 			ifp = (struct sockaddr_dl *)sa;
2115 		break;
2116 	}
2117 	if (ifp == NULL) {
2118 		zerror(zlogp, B_FALSE, "network interface could not be "
2119 		    "determined");
2120 		return (NULL);
2121 	}
2122 
2123 	/*
2124 	 * We need to set the I/F name to what we got above, then do the
2125 	 * appropriate ioctl to get its zone name.  But lifr->lifr_name is
2126 	 * used by the calling function to do a REMOVEIF, so if we leave the
2127 	 * "good" zone's I/F name in place, *that* I/F will be removed instead
2128 	 * of the bad one.  So we save the old (bad) I/F name before over-
2129 	 * writing it and doing the ioctl, then restore it after the ioctl.
2130 	 */
2131 	(void) strlcpy(save_if_name, lifr->lifr_name, sizeof (save_if_name));
2132 	(void) strncpy(lifr->lifr_name, ifp->sdl_data, ifp->sdl_nlen);
2133 	lifr->lifr_name[ifp->sdl_nlen] = '\0';
2134 	i = ioctl(s, SIOCGLIFZONE, lifr);
2135 	(void) strlcpy(lifr->lifr_name, save_if_name, sizeof (save_if_name));
2136 	if (i < 0) {
2137 		zerror(zlogp, B_TRUE,
2138 		    "%s: could not determine the zone network interface "
2139 		    "belongs to", lifr->lifr_name);
2140 		return (NULL);
2141 	}
2142 	if (getzonenamebyid(lifr->lifr_zoneid, answer, sizeof (answer)) < 0)
2143 		(void) snprintf(answer, sizeof (answer), "%d",
2144 		    lifr->lifr_zoneid);
2145 
2146 	if (strlen(answer) > 0)
2147 		return (answer);
2148 	return (NULL);
2149 }
2150 
2151 typedef struct mcast_rtmsg_s {
2152 	struct rt_msghdr	m_rtm;
2153 	union {
2154 		struct {
2155 			struct sockaddr_in	m_dst;
2156 			struct sockaddr_in	m_gw;
2157 			struct sockaddr_in	m_netmask;
2158 		} m_v4;
2159 		struct {
2160 			struct sockaddr_in6	m_dst;
2161 			struct sockaddr_in6	m_gw;
2162 			struct sockaddr_in6	m_netmask;
2163 		} m_v6;
2164 	} m_u;
2165 } mcast_rtmsg_t;
2166 #define	m_dst4		m_u.m_v4.m_dst
2167 #define	m_dst6		m_u.m_v6.m_dst
2168 #define	m_gw4		m_u.m_v4.m_gw
2169 #define	m_gw6		m_u.m_v6.m_gw
2170 #define	m_netmask4	m_u.m_v4.m_netmask
2171 #define	m_netmask6	m_u.m_v6.m_netmask
2172 
2173 /*
2174  * Configures a single interface: a new virtual interface is added, based on
2175  * the physical interface nwiftabptr->zone_nwif_physical, with the address
2176  * specified in nwiftabptr->zone_nwif_address, for zone zone_id.  Note that
2177  * the "address" can be an IPv6 address (with a /prefixlength required), an
2178  * IPv4 address (with a /prefixlength optional), or a name; for the latter,
2179  * an IPv4 name-to-address resolution will be attempted.
2180  *
2181  * A default interface route for multicast is created on the first IPv4 and
2182  * IPv6 interfaces (that have the IFF_MULTICAST flag set), respectively.
2183  * This should really be done in the init scripts if we ever allow zones to
2184  * modify the routing tables.
2185  *
2186  * If anything goes wrong, we log an detailed error message, attempt to tear
2187  * down whatever we set up and return an error.
2188  */
2189 static int
2190 configure_one_interface(zlog_t *zlogp, zoneid_t zone_id,
2191     struct zone_nwiftab *nwiftabptr, boolean_t *mcast_rt_v4_setp,
2192     boolean_t *mcast_rt_v6_setp)
2193 {
2194 	struct lifreq lifr;
2195 	struct sockaddr_in netmask4;
2196 	struct sockaddr_in6 netmask6;
2197 	struct in_addr in4;
2198 	struct in6_addr in6;
2199 	sa_family_t af;
2200 	char *slashp = strchr(nwiftabptr->zone_nwif_address, '/');
2201 	mcast_rtmsg_t mcast_rtmsg;
2202 	int s;
2203 	int rs;
2204 	int rlen;
2205 	boolean_t got_netmask = B_FALSE;
2206 	char addrstr4[INET_ADDRSTRLEN];
2207 	int res;
2208 
2209 	res = zonecfg_valid_net_address(nwiftabptr->zone_nwif_address, &lifr);
2210 	if (res != Z_OK) {
2211 		zerror(zlogp, B_FALSE, "%s: %s", zonecfg_strerror(res),
2212 		    nwiftabptr->zone_nwif_address);
2213 		return (-1);
2214 	}
2215 	af = lifr.lifr_addr.ss_family;
2216 	if (af == AF_INET)
2217 		in4 = ((struct sockaddr_in *)(&lifr.lifr_addr))->sin_addr;
2218 	else
2219 		in6 = ((struct sockaddr_in6 *)(&lifr.lifr_addr))->sin6_addr;
2220 
2221 	if ((s = socket(af, SOCK_DGRAM, 0)) < 0) {
2222 		zerror(zlogp, B_TRUE, "could not get socket");
2223 		return (-1);
2224 	}
2225 
2226 	(void) strlcpy(lifr.lifr_name, nwiftabptr->zone_nwif_physical,
2227 	    sizeof (lifr.lifr_name));
2228 	if (ioctl(s, SIOCLIFADDIF, (caddr_t)&lifr) < 0) {
2229 		/*
2230 		 * Here, we know that the interface can't be brought up.
2231 		 * A similar warning message was already printed out to
2232 		 * the console by zoneadm(1M) so instead we log the
2233 		 * message to syslog and continue.
2234 		 */
2235 		zerror(&logsys, B_TRUE, "WARNING: skipping network interface "
2236 		    "'%s' which may not be present/plumbed in the "
2237 		    "global zone.", lifr.lifr_name);
2238 		(void) close(s);
2239 		return (Z_OK);
2240 	}
2241 
2242 	if (ioctl(s, SIOCSLIFADDR, (caddr_t)&lifr) < 0) {
2243 		zerror(zlogp, B_TRUE,
2244 		    "%s: could not set IP address to %s",
2245 		    lifr.lifr_name, nwiftabptr->zone_nwif_address);
2246 		goto bad;
2247 	}
2248 
2249 	/* Preserve literal IPv4 address for later potential printing. */
2250 	if (af == AF_INET)
2251 		(void) inet_ntop(AF_INET, &in4, addrstr4, INET_ADDRSTRLEN);
2252 
2253 	lifr.lifr_zoneid = zone_id;
2254 	if (ioctl(s, SIOCSLIFZONE, (caddr_t)&lifr) < 0) {
2255 		zerror(zlogp, B_TRUE, "%s: could not place network interface "
2256 		    "into zone", lifr.lifr_name);
2257 		goto bad;
2258 	}
2259 
2260 	if (strcmp(nwiftabptr->zone_nwif_physical, "lo0") == 0) {
2261 		got_netmask = B_TRUE;	/* default setting will be correct */
2262 	} else {
2263 		if (af == AF_INET) {
2264 			/*
2265 			 * The IPv4 netmask can be determined either
2266 			 * directly if a prefix length was supplied with
2267 			 * the address or via the netmasks database.  Not
2268 			 * being able to determine it is a common failure,
2269 			 * but it often is not fatal to operation of the
2270 			 * interface.  In that case, a warning will be
2271 			 * printed after the rest of the interface's
2272 			 * parameters have been configured.
2273 			 */
2274 			(void) memset(&netmask4, 0, sizeof (netmask4));
2275 			if (slashp != NULL) {
2276 				if (addr2netmask(slashp + 1, V4_ADDR_LEN,
2277 				    (uchar_t *)&netmask4.sin_addr) != 0) {
2278 					*slashp = '/';
2279 					zerror(zlogp, B_FALSE,
2280 					    "%s: invalid prefix length in %s",
2281 					    lifr.lifr_name,
2282 					    nwiftabptr->zone_nwif_address);
2283 					goto bad;
2284 				}
2285 				got_netmask = B_TRUE;
2286 			} else if (getnetmaskbyaddr(in4,
2287 			    &netmask4.sin_addr) == 0) {
2288 				got_netmask = B_TRUE;
2289 			}
2290 			if (got_netmask) {
2291 				netmask4.sin_family = af;
2292 				(void) memcpy(&lifr.lifr_addr, &netmask4,
2293 				    sizeof (netmask4));
2294 			}
2295 		} else {
2296 			(void) memset(&netmask6, 0, sizeof (netmask6));
2297 			if (addr2netmask(slashp + 1, V6_ADDR_LEN,
2298 			    (uchar_t *)&netmask6.sin6_addr) != 0) {
2299 				*slashp = '/';
2300 				zerror(zlogp, B_FALSE,
2301 				    "%s: invalid prefix length in %s",
2302 				    lifr.lifr_name,
2303 				    nwiftabptr->zone_nwif_address);
2304 				goto bad;
2305 			}
2306 			got_netmask = B_TRUE;
2307 			netmask6.sin6_family = af;
2308 			(void) memcpy(&lifr.lifr_addr, &netmask6,
2309 			    sizeof (netmask6));
2310 		}
2311 		if (got_netmask &&
2312 		    ioctl(s, SIOCSLIFNETMASK, (caddr_t)&lifr) < 0) {
2313 			zerror(zlogp, B_TRUE, "%s: could not set netmask",
2314 			    lifr.lifr_name);
2315 			goto bad;
2316 		}
2317 
2318 		/*
2319 		 * This doesn't set the broadcast address at all. Rather, it
2320 		 * gets, then sets the interface's address, relying on the fact
2321 		 * that resetting the address will reset the broadcast address.
2322 		 */
2323 		if (ioctl(s, SIOCGLIFADDR, (caddr_t)&lifr) < 0) {
2324 			zerror(zlogp, B_TRUE, "%s: could not get address",
2325 			    lifr.lifr_name);
2326 			goto bad;
2327 		}
2328 		if (ioctl(s, SIOCSLIFADDR, (caddr_t)&lifr) < 0) {
2329 			zerror(zlogp, B_TRUE,
2330 			    "%s: could not reset broadcast address",
2331 			    lifr.lifr_name);
2332 			goto bad;
2333 		}
2334 	}
2335 
2336 	if (ioctl(s, SIOCGLIFFLAGS, (caddr_t)&lifr) < 0) {
2337 		zerror(zlogp, B_TRUE, "%s: could not get flags",
2338 		    lifr.lifr_name);
2339 		goto bad;
2340 	}
2341 	lifr.lifr_flags |= IFF_UP;
2342 	if (ioctl(s, SIOCSLIFFLAGS, (caddr_t)&lifr) < 0) {
2343 		int save_errno = errno;
2344 		char *zone_using;
2345 
2346 		/*
2347 		 * If we failed with something other than EADDRNOTAVAIL,
2348 		 * then skip to the end.  Otherwise, look up our address,
2349 		 * then call a function to determine which zone is already
2350 		 * using that address.
2351 		 */
2352 		if (errno != EADDRNOTAVAIL) {
2353 			zerror(zlogp, B_TRUE,
2354 			    "%s: could not bring network interface up",
2355 			    lifr.lifr_name);
2356 			goto bad;
2357 		}
2358 		if (ioctl(s, SIOCGLIFADDR, (caddr_t)&lifr) < 0) {
2359 			zerror(zlogp, B_TRUE, "%s: could not get address",
2360 			    lifr.lifr_name);
2361 			goto bad;
2362 		}
2363 		zone_using = who_is_using(zlogp, &lifr);
2364 		errno = save_errno;
2365 		if (zone_using == NULL)
2366 			zerror(zlogp, B_TRUE,
2367 			    "%s: could not bring network interface up",
2368 			    lifr.lifr_name);
2369 		else
2370 			zerror(zlogp, B_TRUE, "%s: could not bring network "
2371 			    "interface up: address in use by zone '%s'",
2372 			    lifr.lifr_name, zone_using);
2373 		goto bad;
2374 	}
2375 	if ((lifr.lifr_flags & IFF_MULTICAST) && ((af == AF_INET &&
2376 	    mcast_rt_v4_setp != NULL && *mcast_rt_v4_setp == B_FALSE) ||
2377 	    (af == AF_INET6 &&
2378 	    mcast_rt_v6_setp != NULL && *mcast_rt_v6_setp == B_FALSE))) {
2379 		rs = socket(PF_ROUTE, SOCK_RAW, 0);
2380 		if (rs < 0) {
2381 			zerror(zlogp, B_TRUE, "%s: could not create "
2382 			    "routing socket", lifr.lifr_name);
2383 			goto bad;
2384 		}
2385 		(void) shutdown(rs, 0);
2386 		(void) memset((void *)&mcast_rtmsg, 0, sizeof (mcast_rtmsg_t));
2387 		mcast_rtmsg.m_rtm.rtm_msglen =  sizeof (struct rt_msghdr) +
2388 		    3 * (af == AF_INET ? sizeof (struct sockaddr_in) :
2389 		    sizeof (struct sockaddr_in6));
2390 		mcast_rtmsg.m_rtm.rtm_version = RTM_VERSION;
2391 		mcast_rtmsg.m_rtm.rtm_type = RTM_ADD;
2392 		mcast_rtmsg.m_rtm.rtm_flags = RTF_UP;
2393 		mcast_rtmsg.m_rtm.rtm_addrs =
2394 		    RTA_DST | RTA_GATEWAY | RTA_NETMASK;
2395 		mcast_rtmsg.m_rtm.rtm_seq = ++rts_seqno;
2396 		if (af == AF_INET) {
2397 			mcast_rtmsg.m_dst4.sin_family = AF_INET;
2398 			mcast_rtmsg.m_dst4.sin_addr.s_addr =
2399 			    htonl(INADDR_UNSPEC_GROUP);
2400 			mcast_rtmsg.m_gw4.sin_family = AF_INET;
2401 			mcast_rtmsg.m_gw4.sin_addr = in4;
2402 			mcast_rtmsg.m_netmask4.sin_family = AF_INET;
2403 			mcast_rtmsg.m_netmask4.sin_addr.s_addr =
2404 			    htonl(IN_CLASSD_NET);
2405 		} else {
2406 			mcast_rtmsg.m_dst6.sin6_family = AF_INET6;
2407 			mcast_rtmsg.m_dst6.sin6_addr.s6_addr[0] = 0xffU;
2408 			mcast_rtmsg.m_gw6.sin6_family = AF_INET6;
2409 			mcast_rtmsg.m_gw6.sin6_addr = in6;
2410 			mcast_rtmsg.m_netmask6.sin6_family = AF_INET6;
2411 			mcast_rtmsg.m_netmask6.sin6_addr.s6_addr[0] = 0xffU;
2412 		}
2413 		rlen = write(rs, (char *)&mcast_rtmsg,
2414 		    mcast_rtmsg.m_rtm.rtm_msglen);
2415 		/*
2416 		 * The write to the multicast socket will fail if the
2417 		 * interface belongs to a failed IPMP group. This is a
2418 		 * non-fatal error and the zone will continue booting.
2419 		 * While the zone is running, if any interface in the
2420 		 * failed IPMP group recovers, the zone will fallback to
2421 		 * using that interface.
2422 		 */
2423 		if (rlen < mcast_rtmsg.m_rtm.rtm_msglen) {
2424 			if (rlen < 0) {
2425 				zerror(zlogp, B_TRUE, "WARNING: network "
2426 				    "interface '%s' not available as default "
2427 				    "for multicast.", lifr.lifr_name);
2428 			} else {
2429 				zerror(zlogp, B_FALSE, "WARNING: network "
2430 				    "interface '%s' not available as default "
2431 				    "for multicast; routing socket returned "
2432 				    "unexpected %d bytes.",
2433 				    lifr.lifr_name, rlen);
2434 			}
2435 		} else {
2436 
2437 			if (af == AF_INET) {
2438 				*mcast_rt_v4_setp = B_TRUE;
2439 			} else {
2440 				*mcast_rt_v6_setp = B_TRUE;
2441 			}
2442 		}
2443 		(void) close(rs);
2444 	}
2445 
2446 	if (!got_netmask) {
2447 		/*
2448 		 * A common, but often non-fatal problem, is that the system
2449 		 * cannot find the netmask for an interface address. This is
2450 		 * often caused by it being only in /etc/inet/netmasks, but
2451 		 * /etc/nsswitch.conf says to use NIS or NIS+ and it's not
2452 		 * in that. This doesn't show up at boot because the netmask
2453 		 * is obtained from /etc/inet/netmasks when no network
2454 		 * interfaces are up, but isn't consulted when NIS/NIS+ is
2455 		 * available. We warn the user here that something like this
2456 		 * has happened and we're just running with a default and
2457 		 * possible incorrect netmask.
2458 		 */
2459 		char buffer[INET6_ADDRSTRLEN];
2460 		void  *addr;
2461 
2462 		if (af == AF_INET)
2463 			addr = &((struct sockaddr_in *)
2464 			    (&lifr.lifr_addr))->sin_addr;
2465 		else
2466 			addr = &((struct sockaddr_in6 *)
2467 			    (&lifr.lifr_addr))->sin6_addr;
2468 
2469 		/* Find out what netmask interface is going to be using */
2470 		if (ioctl(s, SIOCGLIFNETMASK, (caddr_t)&lifr) < 0 ||
2471 		    inet_ntop(af, addr, buffer, sizeof (buffer)) == NULL)
2472 			goto bad;
2473 		zerror(zlogp, B_FALSE,
2474 		    "WARNING: %s: no matching subnet found in netmasks(4) for "
2475 		    "%s; using default of %s.",
2476 		    lifr.lifr_name, addrstr4, buffer);
2477 	}
2478 
2479 	/*
2480 	 * If a default router was specified for this interface
2481 	 * set the route now. Ignore if already set.
2482 	 */
2483 	if (strlen(nwiftabptr->zone_nwif_defrouter) > 0) {
2484 		int status;
2485 		char *argv[7];
2486 
2487 		argv[0] = "route";
2488 		argv[1] = "add";
2489 		argv[2] = "-ifp";
2490 		argv[3] = nwiftabptr->zone_nwif_physical;
2491 		argv[4] = "default";
2492 		argv[5] = nwiftabptr->zone_nwif_defrouter;
2493 		argv[6] = NULL;
2494 
2495 		status = forkexec(zlogp, "/usr/sbin/route", argv);
2496 		if (status != 0 && status != EEXIST)
2497 			zerror(zlogp, B_FALSE, "Unable to set route for "
2498 			    "interface %s to %s\n",
2499 			    nwiftabptr->zone_nwif_physical,
2500 			    nwiftabptr->zone_nwif_defrouter);
2501 	}
2502 
2503 	(void) close(s);
2504 	return (Z_OK);
2505 bad:
2506 	(void) ioctl(s, SIOCLIFREMOVEIF, (caddr_t)&lifr);
2507 	(void) close(s);
2508 	return (-1);
2509 }
2510 
2511 /*
2512  * Sets up network interfaces based on information from the zone configuration.
2513  * An IPv4 loopback interface is set up "for free", modeling the global system.
2514  * If any of the configuration interfaces were IPv6, then an IPv6 loopback
2515  * address is set up as well.
2516  *
2517  * If anything goes wrong, we log a general error message, attempt to tear down
2518  * whatever we set up, and return an error.
2519  */
2520 static int
2521 configure_shared_network_interfaces(zlog_t *zlogp)
2522 {
2523 	zone_dochandle_t handle;
2524 	struct zone_nwiftab nwiftab, loopback_iftab;
2525 	boolean_t saw_v6 = B_FALSE;
2526 	boolean_t mcast_rt_v4_set = B_FALSE;
2527 	boolean_t mcast_rt_v6_set = B_FALSE;
2528 	zoneid_t zoneid;
2529 
2530 	if ((zoneid = getzoneidbyname(zone_name)) == ZONE_ID_UNDEFINED) {
2531 		zerror(zlogp, B_TRUE, "unable to get zoneid");
2532 		return (-1);
2533 	}
2534 
2535 	if ((handle = zonecfg_init_handle()) == NULL) {
2536 		zerror(zlogp, B_TRUE, "getting zone configuration handle");
2537 		return (-1);
2538 	}
2539 	if (zonecfg_get_snapshot_handle(zone_name, handle) != Z_OK) {
2540 		zerror(zlogp, B_FALSE, "invalid configuration");
2541 		zonecfg_fini_handle(handle);
2542 		return (-1);
2543 	}
2544 	if (zonecfg_setnwifent(handle) == Z_OK) {
2545 		for (;;) {
2546 			struct in6_addr in6;
2547 
2548 			if (zonecfg_getnwifent(handle, &nwiftab) != Z_OK)
2549 				break;
2550 			if (configure_one_interface(zlogp, zoneid,
2551 			    &nwiftab, &mcast_rt_v4_set, &mcast_rt_v6_set) !=
2552 			    Z_OK) {
2553 				(void) zonecfg_endnwifent(handle);
2554 				zonecfg_fini_handle(handle);
2555 				return (-1);
2556 			}
2557 			if (inet_pton(AF_INET6, nwiftab.zone_nwif_address,
2558 			    &in6) == 1)
2559 				saw_v6 = B_TRUE;
2560 		}
2561 		(void) zonecfg_endnwifent(handle);
2562 	}
2563 	zonecfg_fini_handle(handle);
2564 	if (is_system_labeled()) {
2565 		/*
2566 		 * Labeled zones share the loopback interface
2567 		 * so it is not plumbed for shared stack instances.
2568 		 */
2569 		return (0);
2570 	}
2571 	(void) strlcpy(loopback_iftab.zone_nwif_physical, "lo0",
2572 	    sizeof (loopback_iftab.zone_nwif_physical));
2573 	(void) strlcpy(loopback_iftab.zone_nwif_address, "127.0.0.1",
2574 	    sizeof (loopback_iftab.zone_nwif_address));
2575 	if (configure_one_interface(zlogp, zoneid, &loopback_iftab, NULL, NULL)
2576 	    != Z_OK) {
2577 		return (-1);
2578 	}
2579 	if (saw_v6) {
2580 		(void) strlcpy(loopback_iftab.zone_nwif_address, "::1/128",
2581 		    sizeof (loopback_iftab.zone_nwif_address));
2582 		if (configure_one_interface(zlogp, zoneid,
2583 		    &loopback_iftab, NULL, NULL) != Z_OK) {
2584 			return (-1);
2585 		}
2586 	}
2587 	return (0);
2588 }
2589 
2590 static void
2591 show_owner(zlog_t *zlogp, char *dlname)
2592 {
2593 	zoneid_t dl_owner_zid;
2594 	char dl_owner_zname[ZONENAME_MAX];
2595 
2596 	dl_owner_zid = ALL_ZONES;
2597 	if (zone_check_datalink(&dl_owner_zid, dlname) != 0)
2598 		(void) snprintf(dl_owner_zname, ZONENAME_MAX, "<unknown>");
2599 	else if (getzonenamebyid(dl_owner_zid, dl_owner_zname, ZONENAME_MAX)
2600 	    < 0)
2601 		(void) snprintf(dl_owner_zname, ZONENAME_MAX, "<%d>",
2602 		    dl_owner_zid);
2603 
2604 	errno = EPERM;
2605 	zerror(zlogp, B_TRUE, "WARNING: skipping network interface '%s' "
2606 	    "which is used by the non-global zone '%s'.\n",
2607 	    dlname, dl_owner_zname);
2608 }
2609 
2610 static int
2611 add_datalink(zlog_t *zlogp, zoneid_t zoneid, char *dlname)
2612 {
2613 	/* First check if it's in use by global zone. */
2614 	if (zonecfg_ifname_exists(AF_INET, dlname) ||
2615 	    zonecfg_ifname_exists(AF_INET6, dlname)) {
2616 		errno = EPERM;
2617 		zerror(zlogp, B_TRUE, "WARNING: skipping network interface "
2618 		    "'%s' which is used in the global zone.", dlname);
2619 		return (-1);
2620 	}
2621 
2622 	/* Add access control information */
2623 	if (zone_add_datalink(zoneid, dlname) != 0) {
2624 		/* If someone got this link before us, show its name */
2625 		if (errno == EPERM)
2626 			show_owner(zlogp, dlname);
2627 		else
2628 			zerror(zlogp, B_TRUE, "WARNING: unable to add network "
2629 			    "interface '%s'.", dlname);
2630 		return (-1);
2631 	}
2632 
2633 	/* Set zoneid of this link. */
2634 	if (dladm_setzid(dlname, zoneid) != DLADM_STATUS_OK) {
2635 		zerror(zlogp, B_TRUE, "WARNING: unable to add network "
2636 		    "interface '%s'.", dlname);
2637 		(void) zone_remove_datalink(zoneid, dlname);
2638 		return (-1);
2639 	}
2640 
2641 	return (0);
2642 }
2643 
2644 static int
2645 remove_datalink(zlog_t *zlogp, zoneid_t zoneid, char *dlname)
2646 {
2647 	/*
2648 	 * Remove access control information.
2649 	 * If the errno is ENXIO, the interface is not added yet,
2650 	 * nothing to report then.
2651 	 */
2652 	if (zone_remove_datalink(zoneid, dlname) != 0) {
2653 		if (errno == ENXIO)
2654 			return (0);
2655 		zerror(zlogp, B_TRUE, "unable to remove network interface '%s'",
2656 		    dlname);
2657 		return (-1);
2658 	}
2659 
2660 	if (dladm_setzid(dlname, GLOBAL_ZONEID) != DLADM_STATUS_OK) {
2661 		zerror(zlogp, B_TRUE, "unable to release network "
2662 		    "interface '%s'", dlname);
2663 		return (-1);
2664 	}
2665 	return (0);
2666 }
2667 
2668 /*
2669  * Add the kernel access control information for the interface names.
2670  * If anything goes wrong, we log a general error message, attempt to tear down
2671  * whatever we set up, and return an error.
2672  */
2673 static int
2674 configure_exclusive_network_interfaces(zlog_t *zlogp)
2675 {
2676 	zone_dochandle_t handle;
2677 	struct zone_nwiftab nwiftab;
2678 	zoneid_t zoneid;
2679 	char rootpath[MAXPATHLEN];
2680 	char path[MAXPATHLEN];
2681 	di_prof_t prof = NULL;
2682 	boolean_t added = B_FALSE;
2683 
2684 	if ((zoneid = getzoneidbyname(zone_name)) == -1) {
2685 		zerror(zlogp, B_TRUE, "unable to get zoneid");
2686 		return (-1);
2687 	}
2688 
2689 	if ((handle = zonecfg_init_handle()) == NULL) {
2690 		zerror(zlogp, B_TRUE, "getting zone configuration handle");
2691 		return (-1);
2692 	}
2693 	if (zonecfg_get_snapshot_handle(zone_name, handle) != Z_OK) {
2694 		zerror(zlogp, B_FALSE, "invalid configuration");
2695 		zonecfg_fini_handle(handle);
2696 		return (-1);
2697 	}
2698 
2699 	if (zonecfg_setnwifent(handle) != Z_OK) {
2700 		zonecfg_fini_handle(handle);
2701 		return (0);
2702 	}
2703 
2704 	for (;;) {
2705 		if (zonecfg_getnwifent(handle, &nwiftab) != Z_OK)
2706 			break;
2707 
2708 		if (prof == NULL) {
2709 			if (zone_get_devroot(zone_name, rootpath,
2710 			    sizeof (rootpath)) != Z_OK) {
2711 				(void) zonecfg_endnwifent(handle);
2712 				zonecfg_fini_handle(handle);
2713 				zerror(zlogp, B_TRUE,
2714 				    "unable to determine dev root");
2715 				return (-1);
2716 			}
2717 			(void) snprintf(path, sizeof (path), "%s%s", rootpath,
2718 			    "/dev");
2719 			if (di_prof_init(path, &prof) != 0) {
2720 				(void) zonecfg_endnwifent(handle);
2721 				zonecfg_fini_handle(handle);
2722 				zerror(zlogp, B_TRUE,
2723 				    "failed to initialize profile");
2724 				return (-1);
2725 			}
2726 		}
2727 
2728 		/*
2729 		 * Create the /dev entry for backward compatibility.
2730 		 * Only create the /dev entry if it's not in use.
2731 		 * Note that the zone still boots when the assigned
2732 		 * interface is inaccessible, used by others, etc.
2733 		 * Also, when vanity naming is used, some interface do
2734 		 * do not have corresponding /dev node names (for example,
2735 		 * vanity named aggregations).  The /dev entry is not
2736 		 * created in that case.  The /dev/net entry is always
2737 		 * accessible.
2738 		 */
2739 		if (add_datalink(zlogp, zoneid, nwiftab.zone_nwif_physical)
2740 		    == 0) {
2741 			char		name[DLPI_LINKNAME_MAX];
2742 			datalink_id_t	linkid;
2743 
2744 			if (dladm_name2info(nwiftab.zone_nwif_physical,
2745 			    &linkid, NULL, NULL, NULL) == DLADM_STATUS_OK &&
2746 			    dladm_linkid2legacyname(linkid, name,
2747 			    sizeof (name)) == DLADM_STATUS_OK) {
2748 				if (di_prof_add_dev(prof, name) != 0) {
2749 					(void) zonecfg_endnwifent(handle);
2750 					zonecfg_fini_handle(handle);
2751 					zerror(zlogp, B_TRUE,
2752 					    "failed to add network device");
2753 					return (-1);
2754 				}
2755 				added = B_TRUE;
2756 			}
2757 		}
2758 	}
2759 	(void) zonecfg_endnwifent(handle);
2760 	zonecfg_fini_handle(handle);
2761 
2762 	if (prof != NULL && added) {
2763 		if (di_prof_commit(prof) != 0) {
2764 			zerror(zlogp, B_TRUE, "failed to commit profile");
2765 			return (-1);
2766 		}
2767 	}
2768 	if (prof != NULL)
2769 		di_prof_fini(prof);
2770 
2771 	return (0);
2772 }
2773 
2774 /*
2775  * Get the list of the data-links from kernel, and try to remove it
2776  */
2777 static int
2778 unconfigure_exclusive_network_interfaces_run(zlog_t *zlogp, zoneid_t zoneid)
2779 {
2780 	char *dlnames, *ptr;
2781 	int dlnum, dlnum_saved, i;
2782 
2783 	dlnum = 0;
2784 	if (zone_list_datalink(zoneid, &dlnum, NULL) != 0) {
2785 		zerror(zlogp, B_TRUE, "unable to list network interfaces");
2786 		return (-1);
2787 	}
2788 again:
2789 	/* this zone doesn't have any data-links */
2790 	if (dlnum == 0)
2791 		return (0);
2792 
2793 	dlnames = malloc(dlnum * LIFNAMSIZ);
2794 	if (dlnames == NULL) {
2795 		zerror(zlogp, B_TRUE, "memory allocation failed");
2796 		return (-1);
2797 	}
2798 	dlnum_saved = dlnum;
2799 
2800 	if (zone_list_datalink(zoneid, &dlnum, dlnames) != 0) {
2801 		zerror(zlogp, B_TRUE, "unable to list network interfaces");
2802 		free(dlnames);
2803 		return (-1);
2804 	}
2805 	if (dlnum_saved < dlnum) {
2806 		/* list increased, try again */
2807 		free(dlnames);
2808 		goto again;
2809 	}
2810 	ptr = dlnames;
2811 	for (i = 0; i < dlnum; i++) {
2812 		/* Remove access control information */
2813 		if (remove_datalink(zlogp, zoneid, ptr) != 0) {
2814 			free(dlnames);
2815 			return (-1);
2816 		}
2817 		ptr += LIFNAMSIZ;
2818 	}
2819 	free(dlnames);
2820 	return (0);
2821 }
2822 
2823 /*
2824  * Get the list of the data-links from configuration, and try to remove it
2825  */
2826 static int
2827 unconfigure_exclusive_network_interfaces_static(zlog_t *zlogp, zoneid_t zoneid)
2828 {
2829 	zone_dochandle_t handle;
2830 	struct zone_nwiftab nwiftab;
2831 
2832 	if ((handle = zonecfg_init_handle()) == NULL) {
2833 		zerror(zlogp, B_TRUE, "getting zone configuration handle");
2834 		return (-1);
2835 	}
2836 	if (zonecfg_get_snapshot_handle(zone_name, handle) != Z_OK) {
2837 		zerror(zlogp, B_FALSE, "invalid configuration");
2838 		zonecfg_fini_handle(handle);
2839 		return (-1);
2840 	}
2841 	if (zonecfg_setnwifent(handle) != Z_OK) {
2842 		zonecfg_fini_handle(handle);
2843 		return (0);
2844 	}
2845 	for (;;) {
2846 		if (zonecfg_getnwifent(handle, &nwiftab) != Z_OK)
2847 			break;
2848 		/* Remove access control information */
2849 		if (remove_datalink(zlogp, zoneid, nwiftab.zone_nwif_physical)
2850 		    != 0) {
2851 			(void) zonecfg_endnwifent(handle);
2852 			zonecfg_fini_handle(handle);
2853 			return (-1);
2854 		}
2855 	}
2856 	(void) zonecfg_endnwifent(handle);
2857 	zonecfg_fini_handle(handle);
2858 	return (0);
2859 }
2860 
2861 /*
2862  * Remove the access control information from the kernel for the exclusive
2863  * network interfaces.
2864  */
2865 static int
2866 unconfigure_exclusive_network_interfaces(zlog_t *zlogp, zoneid_t zoneid)
2867 {
2868 	if (unconfigure_exclusive_network_interfaces_run(zlogp, zoneid) != 0) {
2869 		return (unconfigure_exclusive_network_interfaces_static(zlogp,
2870 		    zoneid));
2871 	}
2872 
2873 	return (0);
2874 }
2875 
2876 static int
2877 tcp_abort_conn(zlog_t *zlogp, zoneid_t zoneid,
2878     const struct sockaddr_storage *local, const struct sockaddr_storage *remote)
2879 {
2880 	int fd;
2881 	struct strioctl ioc;
2882 	tcp_ioc_abort_conn_t conn;
2883 	int error;
2884 
2885 	conn.ac_local = *local;
2886 	conn.ac_remote = *remote;
2887 	conn.ac_start = TCPS_SYN_SENT;
2888 	conn.ac_end = TCPS_TIME_WAIT;
2889 	conn.ac_zoneid = zoneid;
2890 
2891 	ioc.ic_cmd = TCP_IOC_ABORT_CONN;
2892 	ioc.ic_timout = -1; /* infinite timeout */
2893 	ioc.ic_len = sizeof (conn);
2894 	ioc.ic_dp = (char *)&conn;
2895 
2896 	if ((fd = open("/dev/tcp", O_RDONLY)) < 0) {
2897 		zerror(zlogp, B_TRUE, "unable to open %s", "/dev/tcp");
2898 		return (-1);
2899 	}
2900 
2901 	error = ioctl(fd, I_STR, &ioc);
2902 	(void) close(fd);
2903 	if (error == 0 || errno == ENOENT)	/* ENOENT is not an error */
2904 		return (0);
2905 	return (-1);
2906 }
2907 
2908 static int
2909 tcp_abort_connections(zlog_t *zlogp, zoneid_t zoneid)
2910 {
2911 	struct sockaddr_storage l, r;
2912 	struct sockaddr_in *local, *remote;
2913 	struct sockaddr_in6 *local6, *remote6;
2914 	int error;
2915 
2916 	/*
2917 	 * Abort IPv4 connections.
2918 	 */
2919 	bzero(&l, sizeof (*local));
2920 	local = (struct sockaddr_in *)&l;
2921 	local->sin_family = AF_INET;
2922 	local->sin_addr.s_addr = INADDR_ANY;
2923 	local->sin_port = 0;
2924 
2925 	bzero(&r, sizeof (*remote));
2926 	remote = (struct sockaddr_in *)&r;
2927 	remote->sin_family = AF_INET;
2928 	remote->sin_addr.s_addr = INADDR_ANY;
2929 	remote->sin_port = 0;
2930 
2931 	if ((error = tcp_abort_conn(zlogp, zoneid, &l, &r)) != 0)
2932 		return (error);
2933 
2934 	/*
2935 	 * Abort IPv6 connections.
2936 	 */
2937 	bzero(&l, sizeof (*local6));
2938 	local6 = (struct sockaddr_in6 *)&l;
2939 	local6->sin6_family = AF_INET6;
2940 	local6->sin6_port = 0;
2941 	local6->sin6_addr = in6addr_any;
2942 
2943 	bzero(&r, sizeof (*remote6));
2944 	remote6 = (struct sockaddr_in6 *)&r;
2945 	remote6->sin6_family = AF_INET6;
2946 	remote6->sin6_port = 0;
2947 	remote6->sin6_addr = in6addr_any;
2948 
2949 	if ((error = tcp_abort_conn(zlogp, zoneid, &l, &r)) != 0)
2950 		return (error);
2951 	return (0);
2952 }
2953 
2954 static int
2955 get_privset(zlog_t *zlogp, priv_set_t *privs, zone_mnt_t mount_cmd)
2956 {
2957 	int error = -1;
2958 	zone_dochandle_t handle;
2959 	char *privname = NULL;
2960 
2961 	if ((handle = zonecfg_init_handle()) == NULL) {
2962 		zerror(zlogp, B_TRUE, "getting zone configuration handle");
2963 		return (-1);
2964 	}
2965 	if (zonecfg_get_snapshot_handle(zone_name, handle) != Z_OK) {
2966 		zerror(zlogp, B_FALSE, "invalid configuration");
2967 		zonecfg_fini_handle(handle);
2968 		return (-1);
2969 	}
2970 
2971 	if (ALT_MOUNT(mount_cmd)) {
2972 		zone_iptype_t	iptype;
2973 		const char	*curr_iptype;
2974 
2975 		if (zonecfg_get_iptype(handle, &iptype) != Z_OK) {
2976 			zerror(zlogp, B_TRUE, "unable to determine ip-type");
2977 			zonecfg_fini_handle(handle);
2978 			return (-1);
2979 		}
2980 
2981 		switch (iptype) {
2982 		case ZS_SHARED:
2983 			curr_iptype = "shared";
2984 			break;
2985 		case ZS_EXCLUSIVE:
2986 			curr_iptype = "exclusive";
2987 			break;
2988 		}
2989 
2990 		if (zonecfg_default_privset(privs, curr_iptype) == Z_OK) {
2991 			zonecfg_fini_handle(handle);
2992 			return (0);
2993 		}
2994 		zerror(zlogp, B_FALSE,
2995 		    "failed to determine the zone's default privilege set");
2996 		zonecfg_fini_handle(handle);
2997 		return (-1);
2998 	}
2999 
3000 	switch (zonecfg_get_privset(handle, privs, &privname)) {
3001 	case Z_OK:
3002 		error = 0;
3003 		break;
3004 	case Z_PRIV_PROHIBITED:
3005 		zerror(zlogp, B_FALSE, "privilege \"%s\" is not permitted "
3006 		    "within the zone's privilege set", privname);
3007 		break;
3008 	case Z_PRIV_REQUIRED:
3009 		zerror(zlogp, B_FALSE, "required privilege \"%s\" is missing "
3010 		    "from the zone's privilege set", privname);
3011 		break;
3012 	case Z_PRIV_UNKNOWN:
3013 		zerror(zlogp, B_FALSE, "unknown privilege \"%s\" specified "
3014 		    "in the zone's privilege set", privname);
3015 		break;
3016 	default:
3017 		zerror(zlogp, B_FALSE, "failed to determine the zone's "
3018 		    "privilege set");
3019 		break;
3020 	}
3021 
3022 	free(privname);
3023 	zonecfg_fini_handle(handle);
3024 	return (error);
3025 }
3026 
3027 static int
3028 get_rctls(zlog_t *zlogp, char **bufp, size_t *bufsizep)
3029 {
3030 	nvlist_t *nvl = NULL;
3031 	char *nvl_packed = NULL;
3032 	size_t nvl_size = 0;
3033 	nvlist_t **nvlv = NULL;
3034 	int rctlcount = 0;
3035 	int error = -1;
3036 	zone_dochandle_t handle;
3037 	struct zone_rctltab rctltab;
3038 	rctlblk_t *rctlblk = NULL;
3039 
3040 	*bufp = NULL;
3041 	*bufsizep = 0;
3042 
3043 	if ((handle = zonecfg_init_handle()) == NULL) {
3044 		zerror(zlogp, B_TRUE, "getting zone configuration handle");
3045 		return (-1);
3046 	}
3047 	if (zonecfg_get_snapshot_handle(zone_name, handle) != Z_OK) {
3048 		zerror(zlogp, B_FALSE, "invalid configuration");
3049 		zonecfg_fini_handle(handle);
3050 		return (-1);
3051 	}
3052 
3053 	rctltab.zone_rctl_valptr = NULL;
3054 	if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, 0) != 0) {
3055 		zerror(zlogp, B_TRUE, "%s failed", "nvlist_alloc");
3056 		goto out;
3057 	}
3058 
3059 	if (zonecfg_setrctlent(handle) != Z_OK) {
3060 		zerror(zlogp, B_FALSE, "%s failed", "zonecfg_setrctlent");
3061 		goto out;
3062 	}
3063 
3064 	if ((rctlblk = malloc(rctlblk_size())) == NULL) {
3065 		zerror(zlogp, B_TRUE, "memory allocation failed");
3066 		goto out;
3067 	}
3068 	while (zonecfg_getrctlent(handle, &rctltab) == Z_OK) {
3069 		struct zone_rctlvaltab *rctlval;
3070 		uint_t i, count;
3071 		const char *name = rctltab.zone_rctl_name;
3072 
3073 		/* zoneadm should have already warned about unknown rctls. */
3074 		if (!zonecfg_is_rctl(name)) {
3075 			zonecfg_free_rctl_value_list(rctltab.zone_rctl_valptr);
3076 			rctltab.zone_rctl_valptr = NULL;
3077 			continue;
3078 		}
3079 		count = 0;
3080 		for (rctlval = rctltab.zone_rctl_valptr; rctlval != NULL;
3081 		    rctlval = rctlval->zone_rctlval_next) {
3082 			count++;
3083 		}
3084 		if (count == 0) {	/* ignore */
3085 			continue;	/* Nothing to free */
3086 		}
3087 		if ((nvlv = malloc(sizeof (*nvlv) * count)) == NULL)
3088 			goto out;
3089 		i = 0;
3090 		for (rctlval = rctltab.zone_rctl_valptr; rctlval != NULL;
3091 		    rctlval = rctlval->zone_rctlval_next, i++) {
3092 			if (nvlist_alloc(&nvlv[i], NV_UNIQUE_NAME, 0) != 0) {
3093 				zerror(zlogp, B_TRUE, "%s failed",
3094 				    "nvlist_alloc");
3095 				goto out;
3096 			}
3097 			if (zonecfg_construct_rctlblk(rctlval, rctlblk)
3098 			    != Z_OK) {
3099 				zerror(zlogp, B_FALSE, "invalid rctl value: "
3100 				    "(priv=%s,limit=%s,action=%s)",
3101 				    rctlval->zone_rctlval_priv,
3102 				    rctlval->zone_rctlval_limit,
3103 				    rctlval->zone_rctlval_action);
3104 				goto out;
3105 			}
3106 			if (!zonecfg_valid_rctl(name, rctlblk)) {
3107 				zerror(zlogp, B_FALSE,
3108 				    "(priv=%s,limit=%s,action=%s) is not a "
3109 				    "valid value for rctl '%s'",
3110 				    rctlval->zone_rctlval_priv,
3111 				    rctlval->zone_rctlval_limit,
3112 				    rctlval->zone_rctlval_action,
3113 				    name);
3114 				goto out;
3115 			}
3116 			if (nvlist_add_uint64(nvlv[i], "privilege",
3117 			    rctlblk_get_privilege(rctlblk)) != 0) {
3118 				zerror(zlogp, B_FALSE, "%s failed",
3119 				    "nvlist_add_uint64");
3120 				goto out;
3121 			}
3122 			if (nvlist_add_uint64(nvlv[i], "limit",
3123 			    rctlblk_get_value(rctlblk)) != 0) {
3124 				zerror(zlogp, B_FALSE, "%s failed",
3125 				    "nvlist_add_uint64");
3126 				goto out;
3127 			}
3128 			if (nvlist_add_uint64(nvlv[i], "action",
3129 			    (uint_t)rctlblk_get_local_action(rctlblk, NULL))
3130 			    != 0) {
3131 				zerror(zlogp, B_FALSE, "%s failed",
3132 				    "nvlist_add_uint64");
3133 				goto out;
3134 			}
3135 		}
3136 		zonecfg_free_rctl_value_list(rctltab.zone_rctl_valptr);
3137 		rctltab.zone_rctl_valptr = NULL;
3138 		if (nvlist_add_nvlist_array(nvl, (char *)name, nvlv, count)
3139 		    != 0) {
3140 			zerror(zlogp, B_FALSE, "%s failed",
3141 			    "nvlist_add_nvlist_array");
3142 			goto out;
3143 		}
3144 		for (i = 0; i < count; i++)
3145 			nvlist_free(nvlv[i]);
3146 		free(nvlv);
3147 		nvlv = NULL;
3148 		rctlcount++;
3149 	}
3150 	(void) zonecfg_endrctlent(handle);
3151 
3152 	if (rctlcount == 0) {
3153 		error = 0;
3154 		goto out;
3155 	}
3156 	if (nvlist_pack(nvl, &nvl_packed, &nvl_size, NV_ENCODE_NATIVE, 0)
3157 	    != 0) {
3158 		zerror(zlogp, B_FALSE, "%s failed", "nvlist_pack");
3159 		goto out;
3160 	}
3161 
3162 	error = 0;
3163 	*bufp = nvl_packed;
3164 	*bufsizep = nvl_size;
3165 
3166 out:
3167 	free(rctlblk);
3168 	zonecfg_free_rctl_value_list(rctltab.zone_rctl_valptr);
3169 	if (error && nvl_packed != NULL)
3170 		free(nvl_packed);
3171 	if (nvl != NULL)
3172 		nvlist_free(nvl);
3173 	if (nvlv != NULL)
3174 		free(nvlv);
3175 	if (handle != NULL)
3176 		zonecfg_fini_handle(handle);
3177 	return (error);
3178 }
3179 
3180 static int
3181 get_datasets(zlog_t *zlogp, char **bufp, size_t *bufsizep)
3182 {
3183 	zone_dochandle_t handle;
3184 	struct zone_dstab dstab;
3185 	size_t total, offset, len;
3186 	int error = -1;
3187 	char *str = NULL;
3188 
3189 	*bufp = NULL;
3190 	*bufsizep = 0;
3191 
3192 	if ((handle = zonecfg_init_handle()) == NULL) {
3193 		zerror(zlogp, B_TRUE, "getting zone configuration handle");
3194 		return (-1);
3195 	}
3196 	if (zonecfg_get_snapshot_handle(zone_name, handle) != Z_OK) {
3197 		zerror(zlogp, B_FALSE, "invalid configuration");
3198 		zonecfg_fini_handle(handle);
3199 		return (-1);
3200 	}
3201 
3202 	if (zonecfg_setdsent(handle) != Z_OK) {
3203 		zerror(zlogp, B_FALSE, "%s failed", "zonecfg_setdsent");
3204 		goto out;
3205 	}
3206 
3207 	total = 0;
3208 	while (zonecfg_getdsent(handle, &dstab) == Z_OK)
3209 		total += strlen(dstab.zone_dataset_name) + 1;
3210 	(void) zonecfg_enddsent(handle);
3211 
3212 	if (total == 0) {
3213 		error = 0;
3214 		goto out;
3215 	}
3216 
3217 	if ((str = malloc(total)) == NULL) {
3218 		zerror(zlogp, B_TRUE, "memory allocation failed");
3219 		goto out;
3220 	}
3221 
3222 	if (zonecfg_setdsent(handle) != Z_OK) {
3223 		zerror(zlogp, B_FALSE, "%s failed", "zonecfg_setdsent");
3224 		goto out;
3225 	}
3226 	offset = 0;
3227 	while (zonecfg_getdsent(handle, &dstab) == Z_OK) {
3228 		len = strlen(dstab.zone_dataset_name);
3229 		(void) strlcpy(str + offset, dstab.zone_dataset_name,
3230 		    total - offset);
3231 		offset += len;
3232 		if (offset < total - 1)
3233 			str[offset++] = ',';
3234 	}
3235 	(void) zonecfg_enddsent(handle);
3236 
3237 	error = 0;
3238 	*bufp = str;
3239 	*bufsizep = total;
3240 
3241 out:
3242 	if (error != 0 && str != NULL)
3243 		free(str);
3244 	if (handle != NULL)
3245 		zonecfg_fini_handle(handle);
3246 
3247 	return (error);
3248 }
3249 
3250 static int
3251 validate_datasets(zlog_t *zlogp)
3252 {
3253 	zone_dochandle_t handle;
3254 	struct zone_dstab dstab;
3255 	zfs_handle_t *zhp;
3256 	libzfs_handle_t *hdl;
3257 
3258 	if ((handle = zonecfg_init_handle()) == NULL) {
3259 		zerror(zlogp, B_TRUE, "getting zone configuration handle");
3260 		return (-1);
3261 	}
3262 	if (zonecfg_get_snapshot_handle(zone_name, handle) != Z_OK) {
3263 		zerror(zlogp, B_FALSE, "invalid configuration");
3264 		zonecfg_fini_handle(handle);
3265 		return (-1);
3266 	}
3267 
3268 	if (zonecfg_setdsent(handle) != Z_OK) {
3269 		zerror(zlogp, B_FALSE, "invalid configuration");
3270 		zonecfg_fini_handle(handle);
3271 		return (-1);
3272 	}
3273 
3274 	if ((hdl = libzfs_init()) == NULL) {
3275 		zerror(zlogp, B_FALSE, "opening ZFS library");
3276 		zonecfg_fini_handle(handle);
3277 		return (-1);
3278 	}
3279 
3280 	while (zonecfg_getdsent(handle, &dstab) == Z_OK) {
3281 
3282 		if ((zhp = zfs_open(hdl, dstab.zone_dataset_name,
3283 		    ZFS_TYPE_FILESYSTEM)) == NULL) {
3284 			zerror(zlogp, B_FALSE, "cannot open ZFS dataset '%s'",
3285 			    dstab.zone_dataset_name);
3286 			zonecfg_fini_handle(handle);
3287 			libzfs_fini(hdl);
3288 			return (-1);
3289 		}
3290 
3291 		/*
3292 		 * Automatically set the 'zoned' property.  We check the value
3293 		 * first because we'll get EPERM if it is already set.
3294 		 */
3295 		if (!zfs_prop_get_int(zhp, ZFS_PROP_ZONED) &&
3296 		    zfs_prop_set(zhp, zfs_prop_to_name(ZFS_PROP_ZONED),
3297 		    "on") != 0) {
3298 			zerror(zlogp, B_FALSE, "cannot set 'zoned' "
3299 			    "property for ZFS dataset '%s'\n",
3300 			    dstab.zone_dataset_name);
3301 			zonecfg_fini_handle(handle);
3302 			zfs_close(zhp);
3303 			libzfs_fini(hdl);
3304 			return (-1);
3305 		}
3306 
3307 		zfs_close(zhp);
3308 	}
3309 	(void) zonecfg_enddsent(handle);
3310 
3311 	zonecfg_fini_handle(handle);
3312 	libzfs_fini(hdl);
3313 
3314 	return (0);
3315 }
3316 
3317 /*
3318  * Mount lower level home directories into/from current zone
3319  * Share exported directories specified in dfstab for zone
3320  */
3321 static int
3322 tsol_mounts(zlog_t *zlogp, char *zone_name, char *rootpath)
3323 {
3324 	zoneid_t *zids = NULL;
3325 	priv_set_t *zid_privs;
3326 	const priv_impl_info_t *ip = NULL;
3327 	uint_t nzents_saved;
3328 	uint_t nzents;
3329 	int i;
3330 	char readonly[] = "ro";
3331 	struct zone_fstab lower_fstab;
3332 	char *argv[4];
3333 
3334 	if (!is_system_labeled())
3335 		return (0);
3336 
3337 	if (zid_label == NULL) {
3338 		zid_label = m_label_alloc(MAC_LABEL);
3339 		if (zid_label == NULL)
3340 			return (-1);
3341 	}
3342 
3343 	/* Make sure our zone has an /export/home dir */
3344 	(void) make_one_dir(zlogp, rootpath, "/export/home",
3345 	    DEFAULT_DIR_MODE, DEFAULT_DIR_USER, DEFAULT_DIR_GROUP);
3346 
3347 	lower_fstab.zone_fs_raw[0] = '\0';
3348 	(void) strlcpy(lower_fstab.zone_fs_type, MNTTYPE_LOFS,
3349 	    sizeof (lower_fstab.zone_fs_type));
3350 	lower_fstab.zone_fs_options = NULL;
3351 	(void) zonecfg_add_fs_option(&lower_fstab, readonly);
3352 
3353 	/*
3354 	 * Get the list of zones from the kernel
3355 	 */
3356 	if (zone_list(NULL, &nzents) != 0) {
3357 		zerror(zlogp, B_TRUE, "unable to list zones");
3358 		zonecfg_free_fs_option_list(lower_fstab.zone_fs_options);
3359 		return (-1);
3360 	}
3361 again:
3362 	if (nzents == 0) {
3363 		zonecfg_free_fs_option_list(lower_fstab.zone_fs_options);
3364 		return (-1);
3365 	}
3366 
3367 	zids = malloc(nzents * sizeof (zoneid_t));
3368 	if (zids == NULL) {
3369 		zerror(zlogp, B_TRUE, "memory allocation failed");
3370 		return (-1);
3371 	}
3372 	nzents_saved = nzents;
3373 
3374 	if (zone_list(zids, &nzents) != 0) {
3375 		zerror(zlogp, B_TRUE, "unable to list zones");
3376 		zonecfg_free_fs_option_list(lower_fstab.zone_fs_options);
3377 		free(zids);
3378 		return (-1);
3379 	}
3380 	if (nzents != nzents_saved) {
3381 		/* list changed, try again */
3382 		free(zids);
3383 		goto again;
3384 	}
3385 
3386 	ip = getprivimplinfo();
3387 	if ((zid_privs = priv_allocset()) == NULL) {
3388 		zerror(zlogp, B_TRUE, "%s failed", "priv_allocset");
3389 		zonecfg_free_fs_option_list(
3390 		    lower_fstab.zone_fs_options);
3391 		free(zids);
3392 		return (-1);
3393 	}
3394 
3395 	for (i = 0; i < nzents; i++) {
3396 		char zid_name[ZONENAME_MAX];
3397 		zone_state_t zid_state;
3398 		char zid_rpath[MAXPATHLEN];
3399 		struct stat stat_buf;
3400 
3401 		if (zids[i] == GLOBAL_ZONEID)
3402 			continue;
3403 
3404 		if (getzonenamebyid(zids[i], zid_name, ZONENAME_MAX) == -1)
3405 			continue;
3406 
3407 		/*
3408 		 * Do special setup for the zone we are booting
3409 		 */
3410 		if (strcmp(zid_name, zone_name) == 0) {
3411 			struct zone_fstab autofs_fstab;
3412 			char map_path[MAXPATHLEN];
3413 			int fd;
3414 
3415 			/*
3416 			 * Create auto_home_<zone> map for this zone
3417 			 * in the global zone. The non-global zone entry
3418 			 * will be created by automount when the zone
3419 			 * is booted.
3420 			 */
3421 
3422 			(void) snprintf(autofs_fstab.zone_fs_special,
3423 			    MAXPATHLEN, "auto_home_%s", zid_name);
3424 
3425 			(void) snprintf(autofs_fstab.zone_fs_dir, MAXPATHLEN,
3426 			    "/zone/%s/home", zid_name);
3427 
3428 			(void) snprintf(map_path, sizeof (map_path),
3429 			    "/etc/%s", autofs_fstab.zone_fs_special);
3430 			/*
3431 			 * If the map file doesn't exist create a template
3432 			 */
3433 			if ((fd = open(map_path, O_RDWR | O_CREAT | O_EXCL,
3434 			    S_IRUSR | S_IWUSR | S_IRGRP| S_IROTH)) != -1) {
3435 				int len;
3436 				char map_rec[MAXPATHLEN];
3437 
3438 				len = snprintf(map_rec, sizeof (map_rec),
3439 				    "+%s\n*\t-fstype=lofs\t:%s/export/home/&\n",
3440 				    autofs_fstab.zone_fs_special, rootpath);
3441 				(void) write(fd, map_rec, len);
3442 				(void) close(fd);
3443 			}
3444 
3445 			/*
3446 			 * Mount auto_home_<zone> in the global zone if absent.
3447 			 * If it's already of type autofs, then
3448 			 * don't mount it again.
3449 			 */
3450 			if ((stat(autofs_fstab.zone_fs_dir, &stat_buf) == -1) ||
3451 			    strcmp(stat_buf.st_fstype, MNTTYPE_AUTOFS) != 0) {
3452 				char optstr[] = "indirect,ignore,nobrowse";
3453 
3454 				(void) make_one_dir(zlogp, "",
3455 				    autofs_fstab.zone_fs_dir, DEFAULT_DIR_MODE,
3456 				    DEFAULT_DIR_USER, DEFAULT_DIR_GROUP);
3457 
3458 				/*
3459 				 * Mount will fail if automounter has already
3460 				 * processed the auto_home_<zonename> map
3461 				 */
3462 				(void) domount(zlogp, MNTTYPE_AUTOFS, optstr,
3463 				    autofs_fstab.zone_fs_special,
3464 				    autofs_fstab.zone_fs_dir);
3465 			}
3466 			continue;
3467 		}
3468 
3469 
3470 		if (zone_get_state(zid_name, &zid_state) != Z_OK ||
3471 		    (zid_state != ZONE_STATE_READY &&
3472 		    zid_state != ZONE_STATE_RUNNING))
3473 			/* Skip over zones without mounted filesystems */
3474 			continue;
3475 
3476 		if (zone_getattr(zids[i], ZONE_ATTR_SLBL, zid_label,
3477 		    sizeof (m_label_t)) < 0)
3478 			/* Skip over zones with unspecified label */
3479 			continue;
3480 
3481 		if (zone_getattr(zids[i], ZONE_ATTR_ROOT, zid_rpath,
3482 		    sizeof (zid_rpath)) == -1)
3483 			/* Skip over zones with bad path */
3484 			continue;
3485 
3486 		if (zone_getattr(zids[i], ZONE_ATTR_PRIVSET, zid_privs,
3487 		    sizeof (priv_chunk_t) * ip->priv_setsize) == -1)
3488 			/* Skip over zones with bad privs */
3489 			continue;
3490 
3491 		/*
3492 		 * Reading down is valid according to our label model
3493 		 * but some customers want to disable it because it
3494 		 * allows execute down and other possible attacks.
3495 		 * Therefore, we restrict this feature to zones that
3496 		 * have the NET_MAC_AWARE privilege which is required
3497 		 * for NFS read-down semantics.
3498 		 */
3499 		if ((bldominates(zlabel, zid_label)) &&
3500 		    (priv_ismember(zprivs, PRIV_NET_MAC_AWARE))) {
3501 			/*
3502 			 * Our zone dominates this one.
3503 			 * Create a lofs mount from lower zone's /export/home
3504 			 */
3505 			(void) snprintf(lower_fstab.zone_fs_dir, MAXPATHLEN,
3506 			    "%s/zone/%s/export/home", rootpath, zid_name);
3507 
3508 			/*
3509 			 * If the target is already an LOFS mount
3510 			 * then don't do it again.
3511 			 */
3512 			if ((stat(lower_fstab.zone_fs_dir, &stat_buf) == -1) ||
3513 			    strcmp(stat_buf.st_fstype, MNTTYPE_LOFS) != 0) {
3514 
3515 				if (snprintf(lower_fstab.zone_fs_special,
3516 				    MAXPATHLEN, "%s/export",
3517 				    zid_rpath) > MAXPATHLEN)
3518 					continue;
3519 
3520 				/*
3521 				 * Make sure the lower-level home exists
3522 				 */
3523 				if (make_one_dir(zlogp,
3524 				    lower_fstab.zone_fs_special, "/home",
3525 				    DEFAULT_DIR_MODE, DEFAULT_DIR_USER,
3526 				    DEFAULT_DIR_GROUP) != 0)
3527 					continue;
3528 
3529 				(void) strlcat(lower_fstab.zone_fs_special,
3530 				    "/home", MAXPATHLEN);
3531 
3532 				/*
3533 				 * Mount can fail because the lower-level
3534 				 * zone may have already done a mount up.
3535 				 */
3536 				(void) mount_one(zlogp, &lower_fstab, "");
3537 			}
3538 		} else if ((bldominates(zid_label, zlabel)) &&
3539 		    (priv_ismember(zid_privs, PRIV_NET_MAC_AWARE))) {
3540 			/*
3541 			 * This zone dominates our zone.
3542 			 * Create a lofs mount from our zone's /export/home
3543 			 */
3544 			if (snprintf(lower_fstab.zone_fs_dir, MAXPATHLEN,
3545 			    "%s/zone/%s/export/home", zid_rpath,
3546 			    zone_name) > MAXPATHLEN)
3547 				continue;
3548 
3549 			/*
3550 			 * If the target is already an LOFS mount
3551 			 * then don't do it again.
3552 			 */
3553 			if ((stat(lower_fstab.zone_fs_dir, &stat_buf) == -1) ||
3554 			    strcmp(stat_buf.st_fstype, MNTTYPE_LOFS) != 0) {
3555 
3556 				(void) snprintf(lower_fstab.zone_fs_special,
3557 				    MAXPATHLEN, "%s/export/home", rootpath);
3558 
3559 				/*
3560 				 * Mount can fail because the higher-level
3561 				 * zone may have already done a mount down.
3562 				 */
3563 				(void) mount_one(zlogp, &lower_fstab, "");
3564 			}
3565 		}
3566 	}
3567 	zonecfg_free_fs_option_list(lower_fstab.zone_fs_options);
3568 	priv_freeset(zid_privs);
3569 	free(zids);
3570 
3571 	/*
3572 	 * Now share any exported directories from this zone.
3573 	 * Each zone can have its own dfstab.
3574 	 */
3575 
3576 	argv[0] = "zoneshare";
3577 	argv[1] = "-z";
3578 	argv[2] = zone_name;
3579 	argv[3] = NULL;
3580 
3581 	(void) forkexec(zlogp, "/usr/lib/zones/zoneshare", argv);
3582 	/* Don't check for errors since they don't affect the zone */
3583 
3584 	return (0);
3585 }
3586 
3587 /*
3588  * Unmount lofs mounts from higher level zones
3589  * Unshare nfs exported directories
3590  */
3591 static void
3592 tsol_unmounts(zlog_t *zlogp, char *zone_name)
3593 {
3594 	zoneid_t *zids = NULL;
3595 	uint_t nzents_saved;
3596 	uint_t nzents;
3597 	int i;
3598 	char *argv[4];
3599 	char path[MAXPATHLEN];
3600 
3601 	if (!is_system_labeled())
3602 		return;
3603 
3604 	/*
3605 	 * Get the list of zones from the kernel
3606 	 */
3607 	if (zone_list(NULL, &nzents) != 0) {
3608 		return;
3609 	}
3610 
3611 	if (zid_label == NULL) {
3612 		zid_label = m_label_alloc(MAC_LABEL);
3613 		if (zid_label == NULL)
3614 			return;
3615 	}
3616 
3617 again:
3618 	if (nzents == 0)
3619 		return;
3620 
3621 	zids = malloc(nzents * sizeof (zoneid_t));
3622 	if (zids == NULL) {
3623 		zerror(zlogp, B_TRUE, "memory allocation failed");
3624 		return;
3625 	}
3626 	nzents_saved = nzents;
3627 
3628 	if (zone_list(zids, &nzents) != 0) {
3629 		free(zids);
3630 		return;
3631 	}
3632 	if (nzents != nzents_saved) {
3633 		/* list changed, try again */
3634 		free(zids);
3635 		goto again;
3636 	}
3637 
3638 	for (i = 0; i < nzents; i++) {
3639 		char zid_name[ZONENAME_MAX];
3640 		zone_state_t zid_state;
3641 		char zid_rpath[MAXPATHLEN];
3642 
3643 		if (zids[i] == GLOBAL_ZONEID)
3644 			continue;
3645 
3646 		if (getzonenamebyid(zids[i], zid_name, ZONENAME_MAX) == -1)
3647 			continue;
3648 
3649 		/*
3650 		 * Skip the zone we are halting
3651 		 */
3652 		if (strcmp(zid_name, zone_name) == 0)
3653 			continue;
3654 
3655 		if ((zone_getattr(zids[i], ZONE_ATTR_STATUS, &zid_state,
3656 		    sizeof (zid_state)) < 0) ||
3657 		    (zid_state < ZONE_IS_READY))
3658 			/* Skip over zones without mounted filesystems */
3659 			continue;
3660 
3661 		if (zone_getattr(zids[i], ZONE_ATTR_SLBL, zid_label,
3662 		    sizeof (m_label_t)) < 0)
3663 			/* Skip over zones with unspecified label */
3664 			continue;
3665 
3666 		if (zone_getattr(zids[i], ZONE_ATTR_ROOT, zid_rpath,
3667 		    sizeof (zid_rpath)) == -1)
3668 			/* Skip over zones with bad path */
3669 			continue;
3670 
3671 		if (zlabel != NULL && bldominates(zid_label, zlabel)) {
3672 			/*
3673 			 * This zone dominates our zone.
3674 			 * Unmount the lofs mount of our zone's /export/home
3675 			 */
3676 
3677 			if (snprintf(path, MAXPATHLEN,
3678 			    "%s/zone/%s/export/home", zid_rpath,
3679 			    zone_name) > MAXPATHLEN)
3680 				continue;
3681 
3682 			/* Skip over mount failures */
3683 			(void) umount(path);
3684 		}
3685 	}
3686 	free(zids);
3687 
3688 	/*
3689 	 * Unmount global zone autofs trigger for this zone
3690 	 */
3691 	(void) snprintf(path, MAXPATHLEN, "/zone/%s/home", zone_name);
3692 	/* Skip over mount failures */
3693 	(void) umount(path);
3694 
3695 	/*
3696 	 * Next unshare any exported directories from this zone.
3697 	 */
3698 
3699 	argv[0] = "zoneunshare";
3700 	argv[1] = "-z";
3701 	argv[2] = zone_name;
3702 	argv[3] = NULL;
3703 
3704 	(void) forkexec(zlogp, "/usr/lib/zones/zoneunshare", argv);
3705 	/* Don't check for errors since they don't affect the zone */
3706 
3707 	/*
3708 	 * Finally, deallocate any devices in the zone.
3709 	 */
3710 
3711 	argv[0] = "deallocate";
3712 	argv[1] = "-Isz";
3713 	argv[2] = zone_name;
3714 	argv[3] = NULL;
3715 
3716 	(void) forkexec(zlogp, "/usr/sbin/deallocate", argv);
3717 	/* Don't check for errors since they don't affect the zone */
3718 }
3719 
3720 /*
3721  * Fetch the Trusted Extensions label and multi-level ports (MLPs) for
3722  * this zone.
3723  */
3724 static tsol_zcent_t *
3725 get_zone_label(zlog_t *zlogp, priv_set_t *privs)
3726 {
3727 	FILE *fp;
3728 	tsol_zcent_t *zcent = NULL;
3729 	char line[MAXTNZLEN];
3730 
3731 	if ((fp = fopen(TNZONECFG_PATH, "r")) == NULL) {
3732 		zerror(zlogp, B_TRUE, "%s", TNZONECFG_PATH);
3733 		return (NULL);
3734 	}
3735 
3736 	while (fgets(line, sizeof (line), fp) != NULL) {
3737 		/*
3738 		 * Check for malformed database
3739 		 */
3740 		if (strlen(line) == MAXTNZLEN - 1)
3741 			break;
3742 		if ((zcent = tsol_sgetzcent(line, NULL, NULL)) == NULL)
3743 			continue;
3744 		if (strcmp(zcent->zc_name, zone_name) == 0)
3745 			break;
3746 		tsol_freezcent(zcent);
3747 		zcent = NULL;
3748 	}
3749 	(void) fclose(fp);
3750 
3751 	if (zcent == NULL) {
3752 		zerror(zlogp, B_FALSE, "zone requires a label assignment. "
3753 		    "See tnzonecfg(4)");
3754 	} else {
3755 		if (zlabel == NULL)
3756 			zlabel = m_label_alloc(MAC_LABEL);
3757 		/*
3758 		 * Save this zone's privileges for later read-down processing
3759 		 */
3760 		if ((zprivs = priv_allocset()) == NULL) {
3761 			zerror(zlogp, B_TRUE, "%s failed", "priv_allocset");
3762 			return (NULL);
3763 		} else {
3764 			priv_copyset(privs, zprivs);
3765 		}
3766 	}
3767 	return (zcent);
3768 }
3769 
3770 /*
3771  * Add the Trusted Extensions multi-level ports for this zone.
3772  */
3773 static void
3774 set_mlps(zlog_t *zlogp, zoneid_t zoneid, tsol_zcent_t *zcent)
3775 {
3776 	tsol_mlp_t *mlp;
3777 	tsol_mlpent_t tsme;
3778 
3779 	if (!is_system_labeled())
3780 		return;
3781 
3782 	tsme.tsme_zoneid = zoneid;
3783 	tsme.tsme_flags = 0;
3784 	for (mlp = zcent->zc_private_mlp; !TSOL_MLP_END(mlp); mlp++) {
3785 		tsme.tsme_mlp = *mlp;
3786 		if (tnmlp(TNDB_LOAD, &tsme) != 0) {
3787 			zerror(zlogp, B_TRUE, "cannot set zone-specific MLP "
3788 			    "on %d-%d/%d", mlp->mlp_port,
3789 			    mlp->mlp_port_upper, mlp->mlp_ipp);
3790 		}
3791 	}
3792 
3793 	tsme.tsme_flags = TSOL_MEF_SHARED;
3794 	for (mlp = zcent->zc_shared_mlp; !TSOL_MLP_END(mlp); mlp++) {
3795 		tsme.tsme_mlp = *mlp;
3796 		if (tnmlp(TNDB_LOAD, &tsme) != 0) {
3797 			zerror(zlogp, B_TRUE, "cannot set shared MLP "
3798 			    "on %d-%d/%d", mlp->mlp_port,
3799 			    mlp->mlp_port_upper, mlp->mlp_ipp);
3800 		}
3801 	}
3802 }
3803 
3804 static void
3805 remove_mlps(zlog_t *zlogp, zoneid_t zoneid)
3806 {
3807 	tsol_mlpent_t tsme;
3808 
3809 	if (!is_system_labeled())
3810 		return;
3811 
3812 	(void) memset(&tsme, 0, sizeof (tsme));
3813 	tsme.tsme_zoneid = zoneid;
3814 	if (tnmlp(TNDB_FLUSH, &tsme) != 0)
3815 		zerror(zlogp, B_TRUE, "cannot flush MLPs");
3816 }
3817 
3818 int
3819 prtmount(const char *fs, void *x) {
3820 	zerror((zlog_t *)x, B_FALSE, "  %s", fs);
3821 	return (0);
3822 }
3823 
3824 /*
3825  * Look for zones running on the main system that are using this root (or any
3826  * subdirectory of it).  Return B_TRUE and print an error if a conflicting zone
3827  * is found or if we can't tell.
3828  */
3829 static boolean_t
3830 duplicate_zone_root(zlog_t *zlogp, const char *rootpath)
3831 {
3832 	zoneid_t *zids = NULL;
3833 	uint_t nzids = 0;
3834 	boolean_t retv;
3835 	int rlen, zlen;
3836 	char zroot[MAXPATHLEN];
3837 	char zonename[ZONENAME_MAX];
3838 
3839 	for (;;) {
3840 		nzids += 10;
3841 		zids = malloc(nzids * sizeof (*zids));
3842 		if (zids == NULL) {
3843 			zerror(zlogp, B_TRUE, "memory allocation failed");
3844 			return (B_TRUE);
3845 		}
3846 		if (zone_list(zids, &nzids) == 0)
3847 			break;
3848 		free(zids);
3849 	}
3850 	retv = B_FALSE;
3851 	rlen = strlen(rootpath);
3852 	while (nzids > 0) {
3853 		/*
3854 		 * Ignore errors; they just mean that the zone has disappeared
3855 		 * while we were busy.
3856 		 */
3857 		if (zone_getattr(zids[--nzids], ZONE_ATTR_ROOT, zroot,
3858 		    sizeof (zroot)) == -1)
3859 			continue;
3860 		zlen = strlen(zroot);
3861 		if (zlen > rlen)
3862 			zlen = rlen;
3863 		if (strncmp(rootpath, zroot, zlen) == 0 &&
3864 		    (zroot[zlen] == '\0' || zroot[zlen] == '/') &&
3865 		    (rootpath[zlen] == '\0' || rootpath[zlen] == '/')) {
3866 			if (getzonenamebyid(zids[nzids], zonename,
3867 			    sizeof (zonename)) == -1)
3868 				(void) snprintf(zonename, sizeof (zonename),
3869 				    "id %d", (int)zids[nzids]);
3870 			zerror(zlogp, B_FALSE,
3871 			    "zone root %s already in use by zone %s",
3872 			    rootpath, zonename);
3873 			retv = B_TRUE;
3874 			break;
3875 		}
3876 	}
3877 	free(zids);
3878 	return (retv);
3879 }
3880 
3881 /*
3882  * Search for loopback mounts that use this same source node (same device and
3883  * inode).  Return B_TRUE if there is one or if we can't tell.
3884  */
3885 static boolean_t
3886 duplicate_reachable_path(zlog_t *zlogp, const char *rootpath)
3887 {
3888 	struct stat64 rst, zst;
3889 	struct mnttab *mnp;
3890 
3891 	if (stat64(rootpath, &rst) == -1) {
3892 		zerror(zlogp, B_TRUE, "can't stat %s", rootpath);
3893 		return (B_TRUE);
3894 	}
3895 	if (resolve_lofs_mnts == NULL && lofs_read_mnttab(zlogp) == -1)
3896 		return (B_TRUE);
3897 	for (mnp = resolve_lofs_mnts; mnp < resolve_lofs_mnt_max; mnp++) {
3898 		if (mnp->mnt_fstype == NULL ||
3899 		    strcmp(MNTTYPE_LOFS, mnp->mnt_fstype) != 0)
3900 			continue;
3901 		/* We're looking at a loopback mount.  Stat it. */
3902 		if (mnp->mnt_special != NULL &&
3903 		    stat64(mnp->mnt_special, &zst) != -1 &&
3904 		    rst.st_dev == zst.st_dev && rst.st_ino == zst.st_ino) {
3905 			zerror(zlogp, B_FALSE,
3906 			    "zone root %s is reachable through %s",
3907 			    rootpath, mnp->mnt_mountp);
3908 			return (B_TRUE);
3909 		}
3910 	}
3911 	return (B_FALSE);
3912 }
3913 
3914 /*
3915  * Set memory cap and pool info for the zone's resource management
3916  * configuration.
3917  */
3918 static int
3919 setup_zone_rm(zlog_t *zlogp, char *zone_name, zoneid_t zoneid)
3920 {
3921 	int res;
3922 	uint64_t tmp;
3923 	struct zone_mcaptab mcap;
3924 	char sched[MAXNAMELEN];
3925 	zone_dochandle_t handle = NULL;
3926 	char pool_err[128];
3927 
3928 	if ((handle = zonecfg_init_handle()) == NULL) {
3929 		zerror(zlogp, B_TRUE, "getting zone configuration handle");
3930 		return (Z_BAD_HANDLE);
3931 	}
3932 
3933 	if ((res = zonecfg_get_snapshot_handle(zone_name, handle)) != Z_OK) {
3934 		zerror(zlogp, B_FALSE, "invalid configuration");
3935 		zonecfg_fini_handle(handle);
3936 		return (res);
3937 	}
3938 
3939 	/*
3940 	 * If a memory cap is configured, set the cap in the kernel using
3941 	 * zone_setattr() and make sure the rcapd SMF service is enabled.
3942 	 */
3943 	if (zonecfg_getmcapent(handle, &mcap) == Z_OK) {
3944 		uint64_t num;
3945 		char smf_err[128];
3946 
3947 		num = (uint64_t)strtoull(mcap.zone_physmem_cap, NULL, 10);
3948 		if (zone_setattr(zoneid, ZONE_ATTR_PHYS_MCAP, &num, 0) == -1) {
3949 			zerror(zlogp, B_TRUE, "could not set zone memory cap");
3950 			zonecfg_fini_handle(handle);
3951 			return (Z_INVAL);
3952 		}
3953 
3954 		if (zonecfg_enable_rcapd(smf_err, sizeof (smf_err)) != Z_OK) {
3955 			zerror(zlogp, B_FALSE, "enabling system/rcap service "
3956 			    "failed: %s", smf_err);
3957 			zonecfg_fini_handle(handle);
3958 			return (Z_INVAL);
3959 		}
3960 	}
3961 
3962 	/* Get the scheduling class set in the zone configuration. */
3963 	if (zonecfg_get_sched_class(handle, sched, sizeof (sched)) == Z_OK &&
3964 	    strlen(sched) > 0) {
3965 		if (zone_setattr(zoneid, ZONE_ATTR_SCHED_CLASS, sched,
3966 		    strlen(sched)) == -1)
3967 			zerror(zlogp, B_TRUE, "WARNING: unable to set the "
3968 			    "default scheduling class");
3969 
3970 	} else if (zonecfg_get_aliased_rctl(handle, ALIAS_SHARES, &tmp)
3971 	    == Z_OK) {
3972 		/*
3973 		 * If the zone has the zone.cpu-shares rctl set then we want to
3974 		 * use the Fair Share Scheduler (FSS) for processes in the
3975 		 * zone.  Check what scheduling class the zone would be running
3976 		 * in by default so we can print a warning and modify the class
3977 		 * if we wouldn't be using FSS.
3978 		 */
3979 		char class_name[PC_CLNMSZ];
3980 
3981 		if (zonecfg_get_dflt_sched_class(handle, class_name,
3982 		    sizeof (class_name)) != Z_OK) {
3983 			zerror(zlogp, B_FALSE, "WARNING: unable to determine "
3984 			    "the zone's scheduling class");
3985 
3986 		} else if (strcmp("FSS", class_name) != 0) {
3987 			zerror(zlogp, B_FALSE, "WARNING: The zone.cpu-shares "
3988 			    "rctl is set but\nFSS is not the default "
3989 			    "scheduling class for\nthis zone.  FSS will be "
3990 			    "used for processes\nin the zone but to get the "
3991 			    "full benefit of FSS,\nit should be the default "
3992 			    "scheduling class.\nSee dispadmin(1M) for more "
3993 			    "details.");
3994 
3995 			if (zone_setattr(zoneid, ZONE_ATTR_SCHED_CLASS, "FSS",
3996 			    strlen("FSS")) == -1)
3997 				zerror(zlogp, B_TRUE, "WARNING: unable to set "
3998 				    "zone scheduling class to FSS");
3999 		}
4000 	}
4001 
4002 	/*
4003 	 * The next few blocks of code attempt to set up temporary pools as
4004 	 * well as persistent pools.  In all cases we call the functions
4005 	 * unconditionally.  Within each funtion the code will check if the
4006 	 * zone is actually configured for a temporary pool or persistent pool
4007 	 * and just return if there is nothing to do.
4008 	 *
4009 	 * If we are rebooting we want to attempt to reuse any temporary pool
4010 	 * that was previously set up.  zonecfg_bind_tmp_pool() will do the
4011 	 * right thing in all cases (reuse or create) based on the current
4012 	 * zonecfg.
4013 	 */
4014 	if ((res = zonecfg_bind_tmp_pool(handle, zoneid, pool_err,
4015 	    sizeof (pool_err))) != Z_OK) {
4016 		if (res == Z_POOL || res == Z_POOL_CREATE || res == Z_POOL_BIND)
4017 			zerror(zlogp, B_FALSE, "%s: %s\ndedicated-cpu setting "
4018 			    "cannot be instantiated", zonecfg_strerror(res),
4019 			    pool_err);
4020 		else
4021 			zerror(zlogp, B_FALSE, "could not bind zone to "
4022 			    "temporary pool: %s", zonecfg_strerror(res));
4023 		zonecfg_fini_handle(handle);
4024 		return (Z_POOL_BIND);
4025 	}
4026 
4027 	/*
4028 	 * Check if we need to warn about poold not being enabled.
4029 	 */
4030 	if (zonecfg_warn_poold(handle)) {
4031 		zerror(zlogp, B_FALSE, "WARNING: A range of dedicated-cpus has "
4032 		    "been specified\nbut the dynamic pool service is not "
4033 		    "enabled.\nThe system will not dynamically adjust the\n"
4034 		    "processor allocation within the specified range\n"
4035 		    "until svc:/system/pools/dynamic is enabled.\n"
4036 		    "See poold(1M).");
4037 	}
4038 
4039 	/* The following is a warning, not an error. */
4040 	if ((res = zonecfg_bind_pool(handle, zoneid, pool_err,
4041 	    sizeof (pool_err))) != Z_OK) {
4042 		if (res == Z_POOL_BIND)
4043 			zerror(zlogp, B_FALSE, "WARNING: unable to bind to "
4044 			    "pool '%s'; using default pool.", pool_err);
4045 		else if (res == Z_POOL)
4046 			zerror(zlogp, B_FALSE, "WARNING: %s: %s",
4047 			    zonecfg_strerror(res), pool_err);
4048 		else
4049 			zerror(zlogp, B_FALSE, "WARNING: %s",
4050 			    zonecfg_strerror(res));
4051 	}
4052 
4053 	zonecfg_fini_handle(handle);
4054 	return (Z_OK);
4055 }
4056 
4057 zoneid_t
4058 vplat_create(zlog_t *zlogp, zone_mnt_t mount_cmd)
4059 {
4060 	zoneid_t rval = -1;
4061 	priv_set_t *privs;
4062 	char rootpath[MAXPATHLEN];
4063 	char modname[MAXPATHLEN];
4064 	struct brand_attr attr;
4065 	brand_handle_t bh;
4066 	char *rctlbuf = NULL;
4067 	size_t rctlbufsz = 0;
4068 	char *zfsbuf = NULL;
4069 	size_t zfsbufsz = 0;
4070 	zoneid_t zoneid = -1;
4071 	int xerr;
4072 	char *kzone;
4073 	FILE *fp = NULL;
4074 	tsol_zcent_t *zcent = NULL;
4075 	int match = 0;
4076 	int doi = 0;
4077 	int flags;
4078 	zone_iptype_t iptype;
4079 
4080 	if (zone_get_rootpath(zone_name, rootpath, sizeof (rootpath)) != Z_OK) {
4081 		zerror(zlogp, B_TRUE, "unable to determine zone root");
4082 		return (-1);
4083 	}
4084 	if (zonecfg_in_alt_root())
4085 		resolve_lofs(zlogp, rootpath, sizeof (rootpath));
4086 
4087 	if (get_iptype(zlogp, &iptype) < 0) {
4088 		zerror(zlogp, B_TRUE, "unable to determine ip-type");
4089 		return (-1);
4090 	}
4091 	switch (iptype) {
4092 	case ZS_SHARED:
4093 		flags = 0;
4094 		break;
4095 	case ZS_EXCLUSIVE:
4096 		flags = ZCF_NET_EXCL;
4097 		break;
4098 	}
4099 
4100 	if ((privs = priv_allocset()) == NULL) {
4101 		zerror(zlogp, B_TRUE, "%s failed", "priv_allocset");
4102 		return (-1);
4103 	}
4104 	priv_emptyset(privs);
4105 	if (get_privset(zlogp, privs, mount_cmd) != 0)
4106 		goto error;
4107 
4108 	if (mount_cmd == Z_MNT_BOOT &&
4109 	    get_rctls(zlogp, &rctlbuf, &rctlbufsz) != 0) {
4110 		zerror(zlogp, B_FALSE, "Unable to get list of rctls");
4111 		goto error;
4112 	}
4113 
4114 	if (get_datasets(zlogp, &zfsbuf, &zfsbufsz) != 0) {
4115 		zerror(zlogp, B_FALSE, "Unable to get list of ZFS datasets");
4116 		goto error;
4117 	}
4118 
4119 	if (mount_cmd == Z_MNT_BOOT && is_system_labeled()) {
4120 		zcent = get_zone_label(zlogp, privs);
4121 		if (zcent != NULL) {
4122 			match = zcent->zc_match;
4123 			doi = zcent->zc_doi;
4124 			*zlabel = zcent->zc_label;
4125 		} else {
4126 			goto error;
4127 		}
4128 	}
4129 
4130 	kzone = zone_name;
4131 
4132 	/*
4133 	 * We must do this scan twice.  First, we look for zones running on the
4134 	 * main system that are using this root (or any subdirectory of it).
4135 	 * Next, we reduce to the shortest path and search for loopback mounts
4136 	 * that use this same source node (same device and inode).
4137 	 */
4138 	if (duplicate_zone_root(zlogp, rootpath))
4139 		goto error;
4140 	if (duplicate_reachable_path(zlogp, rootpath))
4141 		goto error;
4142 
4143 	if (ALT_MOUNT(mount_cmd)) {
4144 		assert(zone_isnative || zone_iscluster);
4145 		root_to_lu(zlogp, rootpath, sizeof (rootpath), B_TRUE);
4146 
4147 		/*
4148 		 * Forge up a special root for this zone.  When a zone is
4149 		 * mounted, we can't let the zone have its own root because the
4150 		 * tools that will be used in this "scratch zone" need access
4151 		 * to both the zone's resources and the running machine's
4152 		 * executables.
4153 		 *
4154 		 * Note that the mkdir here also catches read-only filesystems.
4155 		 */
4156 		if (mkdir(rootpath, 0755) != 0 && errno != EEXIST) {
4157 			zerror(zlogp, B_TRUE, "cannot create %s", rootpath);
4158 			goto error;
4159 		}
4160 		if (domount(zlogp, "tmpfs", "", "swap", rootpath) != 0)
4161 			goto error;
4162 	}
4163 
4164 	if (zonecfg_in_alt_root()) {
4165 		/*
4166 		 * If we are mounting up a zone in an alternate root partition,
4167 		 * then we have some additional work to do before starting the
4168 		 * zone.  First, resolve the root path down so that we're not
4169 		 * fooled by duplicates.  Then forge up an internal name for
4170 		 * the zone.
4171 		 */
4172 		if ((fp = zonecfg_open_scratch("", B_TRUE)) == NULL) {
4173 			zerror(zlogp, B_TRUE, "cannot open mapfile");
4174 			goto error;
4175 		}
4176 		if (zonecfg_lock_scratch(fp) != 0) {
4177 			zerror(zlogp, B_TRUE, "cannot lock mapfile");
4178 			goto error;
4179 		}
4180 		if (zonecfg_find_scratch(fp, zone_name, zonecfg_get_root(),
4181 		    NULL, 0) == 0) {
4182 			zerror(zlogp, B_FALSE, "scratch zone already running");
4183 			goto error;
4184 		}
4185 		/* This is the preferred name */
4186 		(void) snprintf(kernzone, sizeof (kernzone), "SUNWlu-%s",
4187 		    zone_name);
4188 		srandom(getpid());
4189 		while (zonecfg_reverse_scratch(fp, kernzone, NULL, 0, NULL,
4190 		    0) == 0) {
4191 			/* This is just an arbitrary name; note "." usage */
4192 			(void) snprintf(kernzone, sizeof (kernzone),
4193 			    "SUNWlu.%08lX%08lX", random(), random());
4194 		}
4195 		kzone = kernzone;
4196 	}
4197 
4198 	xerr = 0;
4199 	if ((zoneid = zone_create(kzone, rootpath, privs, rctlbuf,
4200 	    rctlbufsz, zfsbuf, zfsbufsz, &xerr, match, doi, zlabel,
4201 	    flags)) == -1) {
4202 		if (xerr == ZE_AREMOUNTS) {
4203 			if (zonecfg_find_mounts(rootpath, NULL, NULL) < 1) {
4204 				zerror(zlogp, B_FALSE,
4205 				    "An unknown file-system is mounted on "
4206 				    "a subdirectory of %s", rootpath);
4207 			} else {
4208 
4209 				zerror(zlogp, B_FALSE,
4210 				    "These file-systems are mounted on "
4211 				    "subdirectories of %s:", rootpath);
4212 				(void) zonecfg_find_mounts(rootpath,
4213 				    prtmount, zlogp);
4214 			}
4215 		} else if (xerr == ZE_CHROOTED) {
4216 			zerror(zlogp, B_FALSE, "%s: "
4217 			    "cannot create a zone from a chrooted "
4218 			    "environment", "zone_create");
4219 		} else if (xerr == ZE_LABELINUSE) {
4220 			char zonename[ZONENAME_MAX];
4221 			(void) getzonenamebyid(getzoneidbylabel(zlabel),
4222 			    zonename, ZONENAME_MAX);
4223 			zerror(zlogp, B_FALSE, "The zone label is already "
4224 			    "used by the zone '%s'.", zonename);
4225 		} else {
4226 			zerror(zlogp, B_TRUE, "%s failed", "zone_create");
4227 		}
4228 		goto error;
4229 	}
4230 
4231 	if (zonecfg_in_alt_root() &&
4232 	    zonecfg_add_scratch(fp, zone_name, kernzone,
4233 	    zonecfg_get_root()) == -1) {
4234 		zerror(zlogp, B_TRUE, "cannot add mapfile entry");
4235 		goto error;
4236 	}
4237 
4238 	if ((zone_get_brand(zone_name, attr.ba_brandname,
4239 	    MAXNAMELEN) != Z_OK) ||
4240 	    (bh = brand_open(attr.ba_brandname)) == NULL) {
4241 		zerror(zlogp, B_FALSE, "unable to determine brand name");
4242 		return (-1);
4243 	}
4244 
4245 	/*
4246 	 * If this brand requires any kernel support, now is the time to
4247 	 * get it loaded and initialized.
4248 	 */
4249 	if (brand_get_modname(bh, modname, MAXPATHLEN) < 0) {
4250 		brand_close(bh);
4251 		zerror(zlogp, B_FALSE, "unable to determine brand kernel "
4252 		    "module");
4253 		return (-1);
4254 	}
4255 	brand_close(bh);
4256 
4257 	if (strlen(modname) > 0) {
4258 		(void) strlcpy(attr.ba_modname, modname, MAXPATHLEN);
4259 		if (zone_setattr(zoneid, ZONE_ATTR_BRAND, &attr,
4260 		    sizeof (attr) != 0)) {
4261 			zerror(zlogp, B_TRUE, "could not set zone brand "
4262 			    "attribute.");
4263 			goto error;
4264 		}
4265 	}
4266 
4267 	/*
4268 	 * The following actions are not performed when merely mounting a zone
4269 	 * for administrative use.
4270 	 */
4271 	if (mount_cmd == Z_MNT_BOOT) {
4272 		if (setup_zone_rm(zlogp, zone_name, zoneid) != Z_OK) {
4273 			(void) zone_shutdown(zoneid);
4274 			goto error;
4275 		}
4276 
4277 		set_mlps(zlogp, zoneid, zcent);
4278 	}
4279 
4280 	rval = zoneid;
4281 	zoneid = -1;
4282 
4283 error:
4284 	if (zoneid != -1)
4285 		(void) zone_destroy(zoneid);
4286 	if (rctlbuf != NULL)
4287 		free(rctlbuf);
4288 	priv_freeset(privs);
4289 	if (fp != NULL)
4290 		zonecfg_close_scratch(fp);
4291 	lofs_discard_mnttab();
4292 	if (zcent != NULL)
4293 		tsol_freezcent(zcent);
4294 	return (rval);
4295 }
4296 
4297 /*
4298  * Enter the zone and write a /etc/zones/index file there.  This allows
4299  * libzonecfg (and thus zoneadm) to report the UUID and potentially other zone
4300  * details from inside the zone.
4301  */
4302 static void
4303 write_index_file(zoneid_t zoneid)
4304 {
4305 	FILE *zef;
4306 	FILE *zet;
4307 	struct zoneent *zep;
4308 	pid_t child;
4309 	int tmpl_fd;
4310 	ctid_t ct;
4311 	int fd;
4312 	char uuidstr[UUID_PRINTABLE_STRING_LENGTH];
4313 
4314 	/* Locate the zone entry in the global zone's index file */
4315 	if ((zef = setzoneent()) == NULL)
4316 		return;
4317 	while ((zep = getzoneent_private(zef)) != NULL) {
4318 		if (strcmp(zep->zone_name, zone_name) == 0)
4319 			break;
4320 		free(zep);
4321 	}
4322 	endzoneent(zef);
4323 	if (zep == NULL)
4324 		return;
4325 
4326 	if ((tmpl_fd = init_template()) == -1) {
4327 		free(zep);
4328 		return;
4329 	}
4330 
4331 	if ((child = fork()) == -1) {
4332 		(void) ct_tmpl_clear(tmpl_fd);
4333 		(void) close(tmpl_fd);
4334 		free(zep);
4335 		return;
4336 	}
4337 
4338 	/* parent waits for child to finish */
4339 	if (child != 0) {
4340 		free(zep);
4341 		if (contract_latest(&ct) == -1)
4342 			ct = -1;
4343 		(void) ct_tmpl_clear(tmpl_fd);
4344 		(void) close(tmpl_fd);
4345 		(void) waitpid(child, NULL, 0);
4346 		(void) contract_abandon_id(ct);
4347 		return;
4348 	}
4349 
4350 	/* child enters zone and sets up index file */
4351 	(void) ct_tmpl_clear(tmpl_fd);
4352 	if (zone_enter(zoneid) != -1) {
4353 		(void) mkdir(ZONE_CONFIG_ROOT, ZONE_CONFIG_MODE);
4354 		(void) chown(ZONE_CONFIG_ROOT, ZONE_CONFIG_UID,
4355 		    ZONE_CONFIG_GID);
4356 		fd = open(ZONE_INDEX_FILE, O_WRONLY|O_CREAT|O_TRUNC,
4357 		    ZONE_INDEX_MODE);
4358 		if (fd != -1 && (zet = fdopen(fd, "w")) != NULL) {
4359 			(void) fchown(fd, ZONE_INDEX_UID, ZONE_INDEX_GID);
4360 			if (uuid_is_null(zep->zone_uuid))
4361 				uuidstr[0] = '\0';
4362 			else
4363 				uuid_unparse(zep->zone_uuid, uuidstr);
4364 			(void) fprintf(zet, "%s:%s:/:%s\n", zep->zone_name,
4365 			    zone_state_str(zep->zone_state),
4366 			    uuidstr);
4367 			(void) fclose(zet);
4368 		}
4369 	}
4370 	_exit(0);
4371 }
4372 
4373 int
4374 vplat_bringup(zlog_t *zlogp, zone_mnt_t mount_cmd, zoneid_t zoneid)
4375 {
4376 	char zonepath[MAXPATHLEN];
4377 
4378 	if (mount_cmd == Z_MNT_BOOT && validate_datasets(zlogp) != 0) {
4379 		lofs_discard_mnttab();
4380 		return (-1);
4381 	}
4382 
4383 	/*
4384 	 * Before we try to mount filesystems we need to create the
4385 	 * attribute backing store for /dev
4386 	 */
4387 	if (zone_get_zonepath(zone_name, zonepath, sizeof (zonepath)) != Z_OK) {
4388 		lofs_discard_mnttab();
4389 		return (-1);
4390 	}
4391 	resolve_lofs(zlogp, zonepath, sizeof (zonepath));
4392 
4393 	/* Make /dev directory owned by root, grouped sys */
4394 	if (make_one_dir(zlogp, zonepath, "/dev", DEFAULT_DIR_MODE,
4395 	    0, 3) != 0) {
4396 		lofs_discard_mnttab();
4397 		return (-1);
4398 	}
4399 
4400 	if (mount_filesystems(zlogp, mount_cmd) != 0) {
4401 		lofs_discard_mnttab();
4402 		return (-1);
4403 	}
4404 
4405 	if (mount_cmd == Z_MNT_BOOT) {
4406 		zone_iptype_t iptype;
4407 
4408 		if (get_iptype(zlogp, &iptype) < 0) {
4409 			zerror(zlogp, B_TRUE, "unable to determine ip-type");
4410 			lofs_discard_mnttab();
4411 			return (-1);
4412 		}
4413 
4414 		switch (iptype) {
4415 		case ZS_SHARED:
4416 			/* Always do this to make lo0 get configured */
4417 			if (configure_shared_network_interfaces(zlogp) != 0) {
4418 				lofs_discard_mnttab();
4419 				return (-1);
4420 			}
4421 			break;
4422 		case ZS_EXCLUSIVE:
4423 			if (configure_exclusive_network_interfaces(zlogp) !=
4424 			    0) {
4425 				lofs_discard_mnttab();
4426 				return (-1);
4427 			}
4428 			break;
4429 		}
4430 	}
4431 
4432 	write_index_file(zoneid);
4433 
4434 	lofs_discard_mnttab();
4435 	return (0);
4436 }
4437 
4438 static int
4439 lu_root_teardown(zlog_t *zlogp)
4440 {
4441 	char zroot[MAXPATHLEN];
4442 
4443 	assert(zone_isnative || zone_iscluster);
4444 
4445 	if (zone_get_rootpath(zone_name, zroot, sizeof (zroot)) != Z_OK) {
4446 		zerror(zlogp, B_FALSE, "unable to determine zone root");
4447 		return (-1);
4448 	}
4449 	root_to_lu(zlogp, zroot, sizeof (zroot), B_FALSE);
4450 
4451 	/*
4452 	 * At this point, the processes are gone, the filesystems (save the
4453 	 * root) are unmounted, and the zone is on death row.  But there may
4454 	 * still be creds floating about in the system that reference the
4455 	 * zone_t, and which pin down zone_rootvp causing this call to fail
4456 	 * with EBUSY.  Thus, we try for a little while before just giving up.
4457 	 * (How I wish this were not true, and umount2 just did the right
4458 	 * thing, or tmpfs supported MS_FORCE This is a gross hack.)
4459 	 */
4460 	if (umount2(zroot, MS_FORCE) != 0) {
4461 		if (errno == ENOTSUP && umount2(zroot, 0) == 0)
4462 			goto unmounted;
4463 		if (errno == EBUSY) {
4464 			int tries = 10;
4465 
4466 			while (--tries >= 0) {
4467 				(void) sleep(1);
4468 				if (umount2(zroot, 0) == 0)
4469 					goto unmounted;
4470 				if (errno != EBUSY)
4471 					break;
4472 			}
4473 		}
4474 		zerror(zlogp, B_TRUE, "unable to unmount '%s'", zroot);
4475 		return (-1);
4476 	}
4477 unmounted:
4478 
4479 	/*
4480 	 * Only zones in an alternate root environment have scratch zone
4481 	 * entries.
4482 	 */
4483 	if (zonecfg_in_alt_root()) {
4484 		FILE *fp;
4485 		int retv;
4486 
4487 		if ((fp = zonecfg_open_scratch("", B_FALSE)) == NULL) {
4488 			zerror(zlogp, B_TRUE, "cannot open mapfile");
4489 			return (-1);
4490 		}
4491 		retv = -1;
4492 		if (zonecfg_lock_scratch(fp) != 0)
4493 			zerror(zlogp, B_TRUE, "cannot lock mapfile");
4494 		else if (zonecfg_delete_scratch(fp, kernzone) != 0)
4495 			zerror(zlogp, B_TRUE, "cannot delete map entry");
4496 		else
4497 			retv = 0;
4498 		zonecfg_close_scratch(fp);
4499 		return (retv);
4500 	} else {
4501 		return (0);
4502 	}
4503 }
4504 
4505 int
4506 vplat_teardown(zlog_t *zlogp, boolean_t unmount_cmd, boolean_t rebooting)
4507 {
4508 	char *kzone;
4509 	zoneid_t zoneid;
4510 	int res;
4511 	char pool_err[128];
4512 	char zroot[MAXPATHLEN];
4513 	char cmdbuf[MAXPATHLEN];
4514 	char brand[MAXNAMELEN];
4515 	brand_handle_t bh = NULL;
4516 	ushort_t flags;
4517 
4518 	kzone = zone_name;
4519 	if (zonecfg_in_alt_root()) {
4520 		FILE *fp;
4521 
4522 		if ((fp = zonecfg_open_scratch("", B_FALSE)) == NULL) {
4523 			zerror(zlogp, B_TRUE, "unable to open map file");
4524 			goto error;
4525 		}
4526 		if (zonecfg_find_scratch(fp, zone_name, zonecfg_get_root(),
4527 		    kernzone, sizeof (kernzone)) != 0) {
4528 			zerror(zlogp, B_FALSE, "unable to find scratch zone");
4529 			zonecfg_close_scratch(fp);
4530 			goto error;
4531 		}
4532 		zonecfg_close_scratch(fp);
4533 		kzone = kernzone;
4534 	}
4535 
4536 	if ((zoneid = getzoneidbyname(kzone)) == ZONE_ID_UNDEFINED) {
4537 		if (!bringup_failure_recovery)
4538 			zerror(zlogp, B_TRUE, "unable to get zoneid");
4539 		if (unmount_cmd)
4540 			(void) lu_root_teardown(zlogp);
4541 		goto error;
4542 	}
4543 
4544 	if (zone_shutdown(zoneid) != 0) {
4545 		zerror(zlogp, B_TRUE, "unable to shutdown zone");
4546 		goto error;
4547 	}
4548 
4549 	/* Get the path to the root of this zone */
4550 	if (zone_get_zonepath(zone_name, zroot, sizeof (zroot)) != Z_OK) {
4551 		zerror(zlogp, B_FALSE, "unable to determine zone root");
4552 		goto error;
4553 	}
4554 
4555 	/* Get a handle to the brand info for this zone */
4556 	if ((zone_get_brand(zone_name, brand, sizeof (brand)) != Z_OK) ||
4557 	    (bh = brand_open(brand)) == NULL) {
4558 		zerror(zlogp, B_FALSE, "unable to determine zone brand");
4559 		return (-1);
4560 	}
4561 	/*
4562 	 * If there is a brand 'halt' callback, execute it now to give the
4563 	 * brand a chance to cleanup any custom configuration.
4564 	 */
4565 	(void) strcpy(cmdbuf, EXEC_PREFIX);
4566 	if (brand_get_halt(bh, zone_name, zroot, cmdbuf + EXEC_LEN,
4567 	    sizeof (cmdbuf) - EXEC_LEN, 0, NULL) < 0) {
4568 		brand_close(bh);
4569 		zerror(zlogp, B_FALSE, "unable to determine branded zone's "
4570 		    "halt callback.");
4571 		goto error;
4572 	}
4573 	brand_close(bh);
4574 
4575 	if ((strlen(cmdbuf) > EXEC_LEN) &&
4576 	    (do_subproc(zlogp, cmdbuf) != Z_OK)) {
4577 		zerror(zlogp, B_FALSE, "%s failed", cmdbuf);
4578 		goto error;
4579 	}
4580 
4581 	if (!unmount_cmd) {
4582 		zone_iptype_t iptype;
4583 
4584 		if (zone_getattr(zoneid, ZONE_ATTR_FLAGS, &flags,
4585 		    sizeof (flags)) < 0) {
4586 			if (get_iptype(zlogp, &iptype) < 0) {
4587 				zerror(zlogp, B_TRUE, "unable to determine "
4588 				    "ip-type");
4589 				goto error;
4590 			}
4591 		} else {
4592 			if (flags & ZF_NET_EXCL)
4593 				iptype = ZS_EXCLUSIVE;
4594 			else
4595 				iptype = ZS_SHARED;
4596 		}
4597 
4598 		switch (iptype) {
4599 		case ZS_SHARED:
4600 			if (unconfigure_shared_network_interfaces(zlogp,
4601 			    zoneid) != 0) {
4602 				zerror(zlogp, B_FALSE, "unable to unconfigure "
4603 				    "network interfaces in zone");
4604 				goto error;
4605 			}
4606 			break;
4607 		case ZS_EXCLUSIVE:
4608 			if (unconfigure_exclusive_network_interfaces(zlogp,
4609 			    zoneid) != 0) {
4610 				zerror(zlogp, B_FALSE, "unable to unconfigure "
4611 				    "network interfaces in zone");
4612 				goto error;
4613 			}
4614 			break;
4615 		}
4616 	}
4617 
4618 	if (!unmount_cmd && tcp_abort_connections(zlogp, zoneid) != 0) {
4619 		zerror(zlogp, B_TRUE, "unable to abort TCP connections");
4620 		goto error;
4621 	}
4622 
4623 	/* destroy zconsole before umount /dev */
4624 	if (!unmount_cmd)
4625 		destroy_console_slave();
4626 
4627 	if (unmount_filesystems(zlogp, zoneid, unmount_cmd) != 0) {
4628 		zerror(zlogp, B_FALSE,
4629 		    "unable to unmount file systems in zone");
4630 		goto error;
4631 	}
4632 
4633 	/*
4634 	 * If we are rebooting then we normally don't want to destroy an
4635 	 * existing temporary pool at this point so that we can just reuse it
4636 	 * when the zone boots back up.  However, it is also possible we were
4637 	 * running with a temporary pool and the zone configuration has been
4638 	 * modified to no longer use a temporary pool.  In that case we need
4639 	 * to destroy the temporary pool now.  This case looks like the case
4640 	 * where we never had a temporary pool configured but
4641 	 * zonecfg_destroy_tmp_pool will do the right thing either way.
4642 	 */
4643 	if (!unmount_cmd) {
4644 		boolean_t destroy_tmp_pool = B_TRUE;
4645 
4646 		if (rebooting) {
4647 			struct zone_psettab pset_tab;
4648 			zone_dochandle_t handle;
4649 
4650 			if ((handle = zonecfg_init_handle()) != NULL &&
4651 			    zonecfg_get_handle(zone_name, handle) == Z_OK &&
4652 			    zonecfg_lookup_pset(handle, &pset_tab) == Z_OK)
4653 				destroy_tmp_pool = B_FALSE;
4654 
4655 			zonecfg_fini_handle(handle);
4656 		}
4657 
4658 		if (destroy_tmp_pool) {
4659 			if ((res = zonecfg_destroy_tmp_pool(zone_name, pool_err,
4660 			    sizeof (pool_err))) != Z_OK) {
4661 				if (res == Z_POOL)
4662 					zerror(zlogp, B_FALSE, pool_err);
4663 			}
4664 		}
4665 	}
4666 
4667 	remove_mlps(zlogp, zoneid);
4668 
4669 	if (zone_destroy(zoneid) != 0) {
4670 		zerror(zlogp, B_TRUE, "unable to destroy zone");
4671 		goto error;
4672 	}
4673 
4674 	/*
4675 	 * Special teardown for alternate boot environments: remove the tmpfs
4676 	 * root for the zone and then remove it from the map file.
4677 	 */
4678 	if (unmount_cmd && lu_root_teardown(zlogp) != 0)
4679 		goto error;
4680 
4681 	lofs_discard_mnttab();
4682 	return (0);
4683 
4684 error:
4685 	lofs_discard_mnttab();
4686 	return (-1);
4687 }
4688