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 (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Copyright 2016, Joyent Inc.
25 * Copyright (c) 2015, 2016 by Delphix. All rights reserved.
26 * Copyright 2019 OmniOS Community Edition (OmniOSce) Association.
27 * Copyright 2020 RackTop Systems Inc.
28 */
29
30 /*
31 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
32 */
33
34 /*
35 * This module contains functions used to bring up and tear down the
36 * Virtual Platform: [un]mounting file-systems, [un]plumbing network
37 * interfaces, [un]configuring devices, establishing resource controls,
38 * and creating/destroying the zone in the kernel. These actions, on
39 * the way up, ready the zone; on the way down, they halt the zone.
40 * See the much longer block comment at the beginning of zoneadmd.c
41 * for a bigger picture of how the whole program functions.
42 *
43 * This module also has primary responsibility for the layout of "scratch
44 * zones." These are mounted, but inactive, zones that are used during
45 * operating system upgrade and potentially other administrative action. The
46 * scratch zone environment is similar to the miniroot environment. The zone's
47 * actual root is mounted read-write on /a, and the standard paths (/usr,
48 * /sbin, /lib) all lead to read-only copies of the running system's binaries.
49 * This allows the administrative tools to manipulate the zone using "-R /a"
50 * without relying on any binaries in the zone itself.
51 *
52 * If the scratch zone is on an alternate root (Live Upgrade [LU] boot
53 * environment), then we must resolve the lofs mounts used there to uncover
54 * writable (unshared) resources. Shared resources, though, are always
55 * read-only. In addition, if the "same" zone with a different root path is
56 * currently running, then "/b" inside the zone points to the running zone's
57 * root. This allows LU to synchronize configuration files during the upgrade
58 * process.
59 *
60 * To construct this environment, this module creates a tmpfs mount on
61 * $ZONEPATH/lu. Inside this scratch area, the miniroot-like environment as
62 * described above is constructed on the fly. The zone is then created using
63 * $ZONEPATH/lu as the root.
64 *
65 * Note that scratch zones are inactive. The zone's bits are not running and
66 * likely cannot be run correctly until upgrade is done. Init is not running
67 * there, nor is SMF. Because of this, the "mounted" state of a scratch zone
68 * is not a part of the usual halt/ready/boot state machine.
69 */
70
71 #include <sys/param.h>
72 #include <sys/mount.h>
73 #include <sys/mntent.h>
74 #include <sys/socket.h>
75 #include <sys/utsname.h>
76 #include <sys/types.h>
77 #include <sys/stat.h>
78 #include <sys/sockio.h>
79 #include <sys/stropts.h>
80 #include <sys/conf.h>
81 #include <sys/systeminfo.h>
82 #include <sys/secflags.h>
83
84 #include <libdlpi.h>
85 #include <libdllink.h>
86 #include <libdlvlan.h>
87
88 #include <inet/tcp.h>
89 #include <arpa/inet.h>
90 #include <netinet/in.h>
91 #include <net/route.h>
92
93 #include <stdio.h>
94 #include <errno.h>
95 #include <fcntl.h>
96 #include <unistd.h>
97 #include <rctl.h>
98 #include <stdlib.h>
99 #include <string.h>
100 #include <strings.h>
101 #include <wait.h>
102 #include <limits.h>
103 #include <libgen.h>
104 #include <libzfs.h>
105 #include <libdevinfo.h>
106 #include <zone.h>
107 #include <assert.h>
108 #include <libcontract.h>
109 #include <libcontract_priv.h>
110 #include <uuid/uuid.h>
111
112 #include <sys/mntio.h>
113 #include <sys/mnttab.h>
114 #include <sys/fs/autofs.h> /* for _autofssys() */
115 #include <sys/fs/lofs_info.h>
116 #include <sys/fs/zfs.h>
117
118 #include <pool.h>
119 #include <sys/pool.h>
120 #include <sys/priocntl.h>
121
122 #include <libbrand.h>
123 #include <sys/brand.h>
124 #include <libzonecfg.h>
125 #include <synch.h>
126
127 #include "zoneadmd.h"
128 #include <tsol/label.h>
129 #include <libtsnet.h>
130 #include <sys/priv.h>
131 #include <libinetutil.h>
132
133 #define V4_ADDR_LEN 32
134 #define V6_ADDR_LEN 128
135
136 #define RESOURCE_DEFAULT_OPTS \
137 MNTOPT_RO "," MNTOPT_LOFS_NOSUB "," MNTOPT_NODEVICES
138
139 #define DFSTYPES "/etc/dfs/fstypes"
140 #define MAXTNZLEN 2048
141
142 #define ALT_MOUNT(mount_cmd) ((mount_cmd) != Z_MNT_BOOT)
143
144 /* a reasonable estimate for the number of lwps per process */
145 #define LWPS_PER_PROCESS 10
146
147 /* for routing socket */
148 static int rts_seqno = 0;
149
150 /* mangled zone name when mounting in an alternate root environment */
151 static char kernzone[ZONENAME_MAX];
152
153 /* array of cached mount entries for resolve_lofs */
154 static struct mnttab *resolve_lofs_mnts, *resolve_lofs_mnt_max;
155
156 /* for Trusted Extensions */
157 static tsol_zcent_t *get_zone_label(zlog_t *, priv_set_t *);
158 static int tsol_mounts(zlog_t *, char *, char *);
159 static void tsol_unmounts(zlog_t *, char *);
160
161 static m_label_t *zlabel = NULL;
162 static m_label_t *zid_label = NULL;
163 static priv_set_t *zprivs = NULL;
164
165 static const char *DFLT_FS_ALLOWED = "hsfs,smbfs,nfs,nfs3,nfs4,nfsdyn";
166
167 /* from libsocket, not in any header file */
168 extern int getnetmaskbyaddr(struct in_addr, struct in_addr *);
169
170 /* from zoneadmd */
171 extern char query_hook[];
172
173 /*
174 * For each "net" resource configured in zonecfg, we track a zone_addr_list_t
175 * node in a linked list that is sorted by linkid. The list is constructed as
176 * the xml configuration file is parsed, and the information
177 * contained in each node is added to the kernel before the zone is
178 * booted, to be retrieved and applied from within the exclusive-IP NGZ
179 * on boot.
180 */
181 typedef struct zone_addr_list {
182 struct zone_addr_list *za_next;
183 datalink_id_t za_linkid; /* datalink_id_t of interface */
184 struct zone_nwiftab za_nwiftab; /* address, defrouter properties */
185 } zone_addr_list_t;
186
187 /*
188 * An optimization for build_mnttable: reallocate (and potentially copy the
189 * data) only once every N times through the loop.
190 */
191 #define MNTTAB_HUNK 32
192
193 /* some handy macros */
194 #define SIN(s) ((struct sockaddr_in *)s)
195 #define SIN6(s) ((struct sockaddr_in6 *)s)
196
197 /*
198 * Private autofs system call
199 */
200 extern int _autofssys(int, void *);
201
202 static int
autofs_cleanup(zoneid_t zoneid)203 autofs_cleanup(zoneid_t zoneid)
204 {
205 int r;
206
207 /*
208 * Ask autofs to unmount all trigger nodes in the given zone.
209 * Handle ENOSYS in the case that the autofs kernel module is not
210 * installed.
211 */
212 r = _autofssys(AUTOFS_UNMOUNTALL, (void *)zoneid);
213 if (r != 0 && errno == ENOSYS) {
214 return (0);
215 }
216 return (r);
217 }
218
219 static void
free_mnttable(struct mnttab * mnt_array,uint_t nelem)220 free_mnttable(struct mnttab *mnt_array, uint_t nelem)
221 {
222 uint_t i;
223
224 if (mnt_array == NULL)
225 return;
226 for (i = 0; i < nelem; i++) {
227 free(mnt_array[i].mnt_mountp);
228 free(mnt_array[i].mnt_fstype);
229 free(mnt_array[i].mnt_special);
230 free(mnt_array[i].mnt_mntopts);
231 assert(mnt_array[i].mnt_time == NULL);
232 }
233 free(mnt_array);
234 }
235
236 /*
237 * Build the mount table for the zone rooted at "zroot", storing the resulting
238 * array of struct mnttabs in "mnt_arrayp" and the number of elements in the
239 * array in "nelemp".
240 */
241 static int
build_mnttable(zlog_t * zlogp,const char * zroot,size_t zrootlen,FILE * mnttab,struct mnttab ** mnt_arrayp,uint_t * nelemp)242 build_mnttable(zlog_t *zlogp, const char *zroot, size_t zrootlen, FILE *mnttab,
243 struct mnttab **mnt_arrayp, uint_t *nelemp)
244 {
245 struct mnttab mnt;
246 struct mnttab *mnts;
247 struct mnttab *mnp;
248 uint_t nmnt;
249
250 rewind(mnttab);
251 resetmnttab(mnttab);
252 nmnt = 0;
253 mnts = NULL;
254 while (getmntent(mnttab, &mnt) == 0) {
255 struct mnttab *tmp_array;
256
257 if (strncmp(mnt.mnt_mountp, zroot, zrootlen) != 0)
258 continue;
259 if (nmnt % MNTTAB_HUNK == 0) {
260 tmp_array = realloc(mnts,
261 (nmnt + MNTTAB_HUNK) * sizeof (*mnts));
262 if (tmp_array == NULL) {
263 free_mnttable(mnts, nmnt);
264 return (-1);
265 }
266 mnts = tmp_array;
267 }
268 mnp = &mnts[nmnt++];
269
270 /*
271 * Zero out any fields we're not using.
272 */
273 (void) memset(mnp, 0, sizeof (*mnp));
274
275 if (mnt.mnt_special != NULL)
276 mnp->mnt_special = strdup(mnt.mnt_special);
277 if (mnt.mnt_mntopts != NULL)
278 mnp->mnt_mntopts = strdup(mnt.mnt_mntopts);
279 mnp->mnt_mountp = strdup(mnt.mnt_mountp);
280 mnp->mnt_fstype = strdup(mnt.mnt_fstype);
281 if ((mnt.mnt_special != NULL && mnp->mnt_special == NULL) ||
282 (mnt.mnt_mntopts != NULL && mnp->mnt_mntopts == NULL) ||
283 mnp->mnt_mountp == NULL || mnp->mnt_fstype == NULL) {
284 zerror(zlogp, B_TRUE, "memory allocation failed");
285 free_mnttable(mnts, nmnt);
286 return (-1);
287 }
288 }
289 *mnt_arrayp = mnts;
290 *nelemp = nmnt;
291 return (0);
292 }
293
294 /*
295 * This is an optimization. The resolve_lofs function is used quite frequently
296 * to manipulate file paths, and on a machine with a large number of zones,
297 * there will be a huge number of mounted file systems. Thus, we trigger a
298 * reread of the list of mount points
299 */
300 static void
lofs_discard_mnttab(void)301 lofs_discard_mnttab(void)
302 {
303 free_mnttable(resolve_lofs_mnts,
304 resolve_lofs_mnt_max - resolve_lofs_mnts);
305 resolve_lofs_mnts = resolve_lofs_mnt_max = NULL;
306 }
307
308 static int
lofs_read_mnttab(zlog_t * zlogp)309 lofs_read_mnttab(zlog_t *zlogp)
310 {
311 FILE *mnttab;
312 uint_t nmnts;
313
314 if ((mnttab = fopen(MNTTAB, "r")) == NULL)
315 return (-1);
316 if (build_mnttable(zlogp, "", 0, mnttab, &resolve_lofs_mnts,
317 &nmnts) == -1) {
318 (void) fclose(mnttab);
319 return (-1);
320 }
321 (void) fclose(mnttab);
322 resolve_lofs_mnt_max = resolve_lofs_mnts + nmnts;
323 return (0);
324 }
325
326 /*
327 * This function loops over potential loopback mounts and symlinks in a given
328 * path and resolves them all down to an absolute path.
329 */
330 void
resolve_lofs(zlog_t * zlogp,char * path,size_t pathlen)331 resolve_lofs(zlog_t *zlogp, char *path, size_t pathlen)
332 {
333 int len, arlen;
334 const char *altroot;
335 char tmppath[MAXPATHLEN];
336 boolean_t outside_altroot;
337
338 if ((len = resolvepath(path, tmppath, sizeof (tmppath))) == -1)
339 return;
340 tmppath[len] = '\0';
341 (void) strlcpy(path, tmppath, sizeof (tmppath));
342
343 /* This happens once per zoneadmd operation. */
344 if (resolve_lofs_mnts == NULL && lofs_read_mnttab(zlogp) == -1)
345 return;
346
347 altroot = zonecfg_get_root();
348 arlen = strlen(altroot);
349 outside_altroot = B_FALSE;
350 for (;;) {
351 struct mnttab *mnp;
352
353 /* Search in reverse order to find longest match */
354 for (mnp = resolve_lofs_mnt_max - 1; mnp >= resolve_lofs_mnts;
355 mnp--) {
356 if (mnp->mnt_fstype == NULL ||
357 mnp->mnt_mountp == NULL ||
358 mnp->mnt_special == NULL)
359 continue;
360 len = strlen(mnp->mnt_mountp);
361 if (strncmp(mnp->mnt_mountp, path, len) == 0 &&
362 (path[len] == '/' || path[len] == '\0'))
363 break;
364 }
365 if (mnp < resolve_lofs_mnts)
366 break;
367 /* If it's not a lofs then we're done */
368 if (strcmp(mnp->mnt_fstype, MNTTYPE_LOFS) != 0)
369 break;
370 if (outside_altroot) {
371 char *cp;
372 int olen = sizeof (MNTOPT_RO) - 1;
373
374 /*
375 * If we run into a read-only mount outside of the
376 * alternate root environment, then the user doesn't
377 * want this path to be made read-write.
378 */
379 if (mnp->mnt_mntopts != NULL &&
380 (cp = strstr(mnp->mnt_mntopts, MNTOPT_RO)) !=
381 NULL &&
382 (cp == mnp->mnt_mntopts || cp[-1] == ',') &&
383 (cp[olen] == '\0' || cp[olen] == ',')) {
384 break;
385 }
386 } else if (arlen > 0 &&
387 (strncmp(mnp->mnt_special, altroot, arlen) != 0 ||
388 (mnp->mnt_special[arlen] != '\0' &&
389 mnp->mnt_special[arlen] != '/'))) {
390 outside_altroot = B_TRUE;
391 }
392 /* use temporary buffer because new path might be longer */
393 (void) snprintf(tmppath, sizeof (tmppath), "%s%s",
394 mnp->mnt_special, path + len);
395 if ((len = resolvepath(tmppath, path, pathlen)) == -1)
396 break;
397 path[len] = '\0';
398 }
399 }
400
401 /*
402 * For a regular mount, check if a replacement lofs mount is needed because the
403 * referenced device is already mounted somewhere.
404 */
405 static int
check_lofs_needed(zlog_t * zlogp,struct zone_fstab * fsptr)406 check_lofs_needed(zlog_t *zlogp, struct zone_fstab *fsptr)
407 {
408 struct mnttab *mnp;
409 zone_fsopt_t *optptr, *onext;
410
411 /* This happens once per zoneadmd operation. */
412 if (resolve_lofs_mnts == NULL && lofs_read_mnttab(zlogp) == -1)
413 return (-1);
414
415 /*
416 * If this special node isn't already in use, then it's ours alone;
417 * no need to worry about conflicting mounts.
418 */
419 for (mnp = resolve_lofs_mnts; mnp < resolve_lofs_mnt_max;
420 mnp++) {
421 if (strcmp(mnp->mnt_special, fsptr->zone_fs_special) == 0)
422 break;
423 }
424 if (mnp >= resolve_lofs_mnt_max)
425 return (0);
426
427 /*
428 * Convert this duplicate mount into a lofs mount.
429 */
430 (void) strlcpy(fsptr->zone_fs_special, mnp->mnt_mountp,
431 sizeof (fsptr->zone_fs_special));
432 (void) strlcpy(fsptr->zone_fs_type, MNTTYPE_LOFS,
433 sizeof (fsptr->zone_fs_type));
434 fsptr->zone_fs_raw[0] = '\0';
435
436 /*
437 * Discard all but one of the original options and set that to our
438 * default set of options used for resources.
439 */
440 optptr = fsptr->zone_fs_options;
441 if (optptr == NULL) {
442 optptr = malloc(sizeof (*optptr));
443 if (optptr == NULL) {
444 zerror(zlogp, B_TRUE, "cannot mount %s",
445 fsptr->zone_fs_dir);
446 return (-1);
447 }
448 } else {
449 while ((onext = optptr->zone_fsopt_next) != NULL) {
450 optptr->zone_fsopt_next = onext->zone_fsopt_next;
451 free(onext);
452 }
453 }
454 (void) strcpy(optptr->zone_fsopt_opt, RESOURCE_DEFAULT_OPTS);
455 optptr->zone_fsopt_next = NULL;
456 fsptr->zone_fs_options = optptr;
457 return (0);
458 }
459
460 int
make_one_dir(zlog_t * zlogp,const char * prefix,const char * subdir,mode_t mode,uid_t userid,gid_t groupid)461 make_one_dir(zlog_t *zlogp, const char *prefix, const char *subdir, mode_t mode,
462 uid_t userid, gid_t groupid)
463 {
464 char path[MAXPATHLEN];
465 struct stat st;
466
467 if (snprintf(path, sizeof (path), "%s%s", prefix, subdir) >
468 sizeof (path)) {
469 zerror(zlogp, B_FALSE, "pathname %s%s is too long", prefix,
470 subdir);
471 return (-1);
472 }
473
474 if (lstat(path, &st) == 0) {
475 /*
476 * We don't check the file mode since presumably the zone
477 * administrator may have had good reason to change the mode,
478 * and we don't need to second guess them.
479 */
480 if (!S_ISDIR(st.st_mode)) {
481 if (S_ISREG(st.st_mode)) {
482 /*
483 * Allow readonly mounts of /etc/ files; this
484 * is needed most by Trusted Extensions.
485 */
486 if (strncmp(subdir, "/etc/",
487 strlen("/etc/")) != 0) {
488 zerror(zlogp, B_FALSE,
489 "%s is not in /etc", path);
490 return (-1);
491 }
492 } else {
493 zerror(zlogp, B_FALSE,
494 "%s is not a directory", path);
495 return (-1);
496 }
497 }
498 return (0);
499 }
500
501 if (mkdirp(path, mode) != 0) {
502 if (errno == EROFS)
503 zerror(zlogp, B_FALSE, "Could not mkdir %s.\nIt is on "
504 "a read-only file system in this local zone.\nMake "
505 "sure %s exists in the global zone.", path, subdir);
506 else
507 zerror(zlogp, B_TRUE, "mkdirp of %s failed", path);
508 return (-1);
509 }
510
511 (void) chown(path, userid, groupid);
512 return (0);
513 }
514
515 static void
free_remote_fstypes(char ** types)516 free_remote_fstypes(char **types)
517 {
518 uint_t i;
519
520 if (types == NULL)
521 return;
522 for (i = 0; types[i] != NULL; i++)
523 free(types[i]);
524 free(types);
525 }
526
527 static char **
get_remote_fstypes(zlog_t * zlogp)528 get_remote_fstypes(zlog_t *zlogp)
529 {
530 char **types = NULL;
531 FILE *fp;
532 char buf[MAXPATHLEN];
533 char fstype[MAXPATHLEN];
534 uint_t lines = 0;
535 uint_t i;
536
537 if ((fp = fopen(DFSTYPES, "r")) == NULL) {
538 zerror(zlogp, B_TRUE, "failed to open %s", DFSTYPES);
539 return (NULL);
540 }
541 /*
542 * Count the number of lines
543 */
544 while (fgets(buf, sizeof (buf), fp) != NULL)
545 lines++;
546 if (lines == 0) /* didn't read anything; empty file */
547 goto out;
548 rewind(fp);
549 /*
550 * Allocate enough space for a NULL-terminated array.
551 */
552 types = calloc(lines + 1, sizeof (char *));
553 if (types == NULL) {
554 zerror(zlogp, B_TRUE, "memory allocation failed");
555 goto out;
556 }
557 i = 0;
558 while (fgets(buf, sizeof (buf), fp) != NULL) {
559 /* LINTED - fstype is big enough to hold buf */
560 if (sscanf(buf, "%s", fstype) == 0) {
561 zerror(zlogp, B_FALSE, "unable to parse %s", DFSTYPES);
562 free_remote_fstypes(types);
563 types = NULL;
564 goto out;
565 }
566 types[i] = strdup(fstype);
567 if (types[i] == NULL) {
568 zerror(zlogp, B_TRUE, "memory allocation failed");
569 free_remote_fstypes(types);
570 types = NULL;
571 goto out;
572 }
573 i++;
574 }
575 out:
576 (void) fclose(fp);
577 return (types);
578 }
579
580 static boolean_t
is_remote_fstype(const char * fstype,char * const * remote_fstypes)581 is_remote_fstype(const char *fstype, char *const *remote_fstypes)
582 {
583 uint_t i;
584
585 if (remote_fstypes == NULL)
586 return (B_FALSE);
587 for (i = 0; remote_fstypes[i] != NULL; i++) {
588 if (strcmp(remote_fstypes[i], fstype) == 0)
589 return (B_TRUE);
590 }
591 return (B_FALSE);
592 }
593
594 /*
595 * This converts a zone root path (normally of the form .../root) to a Live
596 * Upgrade scratch zone root (of the form .../lu).
597 */
598 static void
root_to_lu(zlog_t * zlogp,char * zroot,size_t zrootlen,boolean_t isresolved)599 root_to_lu(zlog_t *zlogp, char *zroot, size_t zrootlen, boolean_t isresolved)
600 {
601 if (!isresolved && zonecfg_in_alt_root())
602 resolve_lofs(zlogp, zroot, zrootlen);
603 (void) strcpy(strrchr(zroot, '/') + 1, "lu");
604 }
605
606 /*
607 * The general strategy for unmounting filesystems is as follows:
608 *
609 * - Remote filesystems may be dead, and attempting to contact them as
610 * part of a regular unmount may hang forever; we want to always try to
611 * forcibly unmount such filesystems and only fall back to regular
612 * unmounts if the filesystem doesn't support forced unmounts.
613 *
614 * - We don't want to unnecessarily corrupt metadata on local
615 * filesystems (ie UFS), so we want to start off with graceful unmounts,
616 * and only escalate to doing forced unmounts if we get stuck.
617 *
618 * We start off walking backwards through the mount table. This doesn't
619 * give us strict ordering but ensures that we try to unmount submounts
620 * first. We thus limit the number of failed umount2(2) calls.
621 *
622 * The mechanism for determining if we're stuck is to count the number
623 * of failed unmounts each iteration through the mount table. This
624 * gives us an upper bound on the number of filesystems which remain
625 * mounted (autofs trigger nodes are dealt with separately). If at the
626 * end of one unmount+autofs_cleanup cycle we still have the same number
627 * of mounts that we started out with, we're stuck and try a forced
628 * unmount. If that fails (filesystem doesn't support forced unmounts)
629 * then we bail and are unable to teardown the zone. If it succeeds,
630 * we're no longer stuck so we continue with our policy of trying
631 * graceful mounts first.
632 *
633 * Zone must be down (ie, no processes or threads active).
634 */
635 static int
unmount_filesystems(zlog_t * zlogp,zoneid_t zoneid,boolean_t unmount_cmd)636 unmount_filesystems(zlog_t *zlogp, zoneid_t zoneid, boolean_t unmount_cmd)
637 {
638 int error = 0;
639 FILE *mnttab;
640 struct mnttab *mnts;
641 uint_t nmnt;
642 char zroot[MAXPATHLEN + 1];
643 size_t zrootlen;
644 uint_t oldcount = UINT_MAX;
645 boolean_t stuck = B_FALSE;
646 char **remote_fstypes = NULL;
647
648 if (zone_get_rootpath(zone_name, zroot, sizeof (zroot)) != Z_OK) {
649 zerror(zlogp, B_FALSE, "unable to determine zone root");
650 return (-1);
651 }
652 if (unmount_cmd)
653 root_to_lu(zlogp, zroot, sizeof (zroot), B_FALSE);
654
655 (void) strcat(zroot, "/");
656 zrootlen = strlen(zroot);
657
658 /*
659 * For Trusted Extensions unmount each higher level zone's mount
660 * of our zone's /export/home
661 */
662 if (!unmount_cmd)
663 tsol_unmounts(zlogp, zone_name);
664
665 if ((mnttab = fopen(MNTTAB, "r")) == NULL) {
666 zerror(zlogp, B_TRUE, "failed to open %s", MNTTAB);
667 return (-1);
668 }
669 /*
670 * Use our hacky mntfs ioctl so we see everything, even mounts with
671 * MS_NOMNTTAB.
672 */
673 if (ioctl(fileno(mnttab), MNTIOC_SHOWHIDDEN, NULL) < 0) {
674 zerror(zlogp, B_TRUE, "unable to configure %s", MNTTAB);
675 error++;
676 goto out;
677 }
678
679 /*
680 * Build the list of remote fstypes so we know which ones we
681 * should forcibly unmount.
682 */
683 remote_fstypes = get_remote_fstypes(zlogp);
684 for (; /* ever */; ) {
685 uint_t newcount = 0;
686 boolean_t unmounted;
687 struct mnttab *mnp;
688 char *path;
689 uint_t i;
690
691 mnts = NULL;
692 nmnt = 0;
693 /*
694 * MNTTAB gives us a way to walk through mounted
695 * filesystems; we need to be able to walk them in
696 * reverse order, so we build a list of all mounted
697 * filesystems.
698 */
699 if (build_mnttable(zlogp, zroot, zrootlen, mnttab, &mnts,
700 &nmnt) != 0) {
701 error++;
702 goto out;
703 }
704 for (i = 0; i < nmnt; i++) {
705 mnp = &mnts[nmnt - i - 1]; /* access in reverse order */
706 path = mnp->mnt_mountp;
707 unmounted = B_FALSE;
708 /*
709 * Try forced unmount first for remote filesystems.
710 *
711 * Not all remote filesystems support forced unmounts,
712 * so if this fails (ENOTSUP) we'll continue on
713 * and try a regular unmount.
714 */
715 if (is_remote_fstype(mnp->mnt_fstype, remote_fstypes)) {
716 if (umount2(path, MS_FORCE) == 0)
717 unmounted = B_TRUE;
718 }
719 /*
720 * Try forced unmount if we're stuck.
721 */
722 if (stuck) {
723 if (umount2(path, MS_FORCE) == 0) {
724 unmounted = B_TRUE;
725 stuck = B_FALSE;
726 } else {
727 /*
728 * The first failure indicates a
729 * mount we won't be able to get
730 * rid of automatically, so we
731 * bail.
732 */
733 error++;
734 zerror(zlogp, B_FALSE,
735 "unable to unmount '%s'", path);
736 free_mnttable(mnts, nmnt);
737 goto out;
738 }
739 }
740 /*
741 * Try regular unmounts for everything else.
742 */
743 if (!unmounted && umount2(path, 0) != 0)
744 newcount++;
745 }
746 free_mnttable(mnts, nmnt);
747
748 if (newcount == 0)
749 break;
750 if (newcount >= oldcount) {
751 /*
752 * Last round didn't unmount anything; we're stuck and
753 * should start trying forced unmounts.
754 */
755 stuck = B_TRUE;
756 }
757 oldcount = newcount;
758
759 /*
760 * Autofs doesn't let you unmount its trigger nodes from
761 * userland so we have to tell the kernel to cleanup for us.
762 */
763 if (autofs_cleanup(zoneid) != 0) {
764 zerror(zlogp, B_TRUE, "unable to remove autofs nodes");
765 error++;
766 goto out;
767 }
768 }
769
770 out:
771 free_remote_fstypes(remote_fstypes);
772 (void) fclose(mnttab);
773 return (error ? -1 : 0);
774 }
775
776 static int
fs_compare(const void * m1,const void * m2)777 fs_compare(const void *m1, const void *m2)
778 {
779 struct zone_fstab *i = (struct zone_fstab *)m1;
780 struct zone_fstab *j = (struct zone_fstab *)m2;
781
782 return (strcmp(i->zone_fs_dir, j->zone_fs_dir));
783 }
784
785 /*
786 * Fork and exec (and wait for) the mentioned binary with the provided
787 * arguments. Returns (-1) if something went wrong with fork(2) or exec(2),
788 * returns the exit status otherwise.
789 *
790 * If we were unable to exec the provided pathname (for whatever
791 * reason), we return the special token ZEXIT_EXEC. The current value
792 * of ZEXIT_EXEC doesn't conflict with legitimate exit codes of the
793 * consumers of this function; any future consumers must make sure this
794 * remains the case.
795 */
796 static int
forkexec(zlog_t * zlogp,const char * path,char * const argv[])797 forkexec(zlog_t *zlogp, const char *path, char *const argv[])
798 {
799 pid_t child_pid;
800 int child_status = 0;
801
802 /*
803 * Do not let another thread localize a message while we are forking.
804 */
805 (void) mutex_lock(&msglock);
806 child_pid = fork();
807 (void) mutex_unlock(&msglock);
808 if (child_pid == -1) {
809 zerror(zlogp, B_TRUE, "could not fork for %s", argv[0]);
810 return (-1);
811 } else if (child_pid == 0) {
812 closefrom(0);
813 /* redirect stdin, stdout & stderr to /dev/null */
814 (void) open("/dev/null", O_RDONLY); /* stdin */
815 (void) open("/dev/null", O_WRONLY); /* stdout */
816 (void) open("/dev/null", O_WRONLY); /* stderr */
817 (void) execv(path, argv);
818 /*
819 * Since we are in the child, there is no point calling zerror()
820 * since there is nobody waiting to consume it. So exit with a
821 * special code that the parent will recognize and call zerror()
822 * accordingly.
823 */
824
825 _exit(ZEXIT_EXEC);
826 } else {
827 (void) waitpid(child_pid, &child_status, 0);
828 }
829
830 if (WIFSIGNALED(child_status)) {
831 zerror(zlogp, B_FALSE, "%s unexpectedly terminated due to "
832 "signal %d", path, WTERMSIG(child_status));
833 return (-1);
834 }
835 assert(WIFEXITED(child_status));
836 if (WEXITSTATUS(child_status) == ZEXIT_EXEC) {
837 zerror(zlogp, B_FALSE, "failed to exec %s", path);
838 return (-1);
839 }
840 return (WEXITSTATUS(child_status));
841 }
842
843 static int
isregfile(const char * path)844 isregfile(const char *path)
845 {
846 struct stat64 st;
847
848 if (stat64(path, &st) == -1)
849 return (-1);
850
851 return (S_ISREG(st.st_mode));
852 }
853
854 static int
dofsck(zlog_t * zlogp,const char * fstype,const char * rawdev)855 dofsck(zlog_t *zlogp, const char *fstype, const char *rawdev)
856 {
857 char cmdbuf[MAXPATHLEN];
858 char *argv[5];
859 int status;
860
861 /*
862 * We could alternatively have called /usr/sbin/fsck -F <fstype>, but
863 * that would cost us an extra fork/exec without buying us anything.
864 */
865 if (snprintf(cmdbuf, sizeof (cmdbuf), "/usr/lib/fs/%s/fsck", fstype)
866 >= sizeof (cmdbuf)) {
867 zerror(zlogp, B_FALSE, "file-system type %s too long", fstype);
868 return (-1);
869 }
870
871 /*
872 * If it doesn't exist, that's OK: we verified this previously
873 * in zoneadm.
874 */
875 if (isregfile(cmdbuf) == -1)
876 return (0);
877
878 argv[0] = "fsck";
879 argv[1] = "-o";
880 argv[2] = "p";
881 argv[3] = (char *)rawdev;
882 argv[4] = NULL;
883
884 status = forkexec(zlogp, cmdbuf, argv);
885 if (status == 0 || status == -1)
886 return (status);
887 zerror(zlogp, B_FALSE, "fsck of '%s' failed with exit status %d; "
888 "run fsck manually", rawdev, status);
889 return (-1);
890 }
891
892 static int
domount(zlog_t * zlogp,const char * fstype,const char * opts,const char * special,const char * directory)893 domount(zlog_t *zlogp, const char *fstype, const char *opts,
894 const char *special, const char *directory)
895 {
896 char cmdbuf[MAXPATHLEN];
897 char *argv[6];
898 int status;
899
900 /*
901 * We could alternatively have called /usr/sbin/mount -F <fstype>, but
902 * that would cost us an extra fork/exec without buying us anything.
903 */
904 if (snprintf(cmdbuf, sizeof (cmdbuf), "/usr/lib/fs/%s/mount", fstype)
905 >= sizeof (cmdbuf)) {
906 zerror(zlogp, B_FALSE, "file-system type %s too long", fstype);
907 return (-1);
908 }
909 argv[0] = "mount";
910 if (opts[0] == '\0') {
911 argv[1] = (char *)special;
912 argv[2] = (char *)directory;
913 argv[3] = NULL;
914 } else {
915 argv[1] = "-o";
916 argv[2] = (char *)opts;
917 argv[3] = (char *)special;
918 argv[4] = (char *)directory;
919 argv[5] = NULL;
920 }
921
922 status = forkexec(zlogp, cmdbuf, argv);
923 if (status == 0 || status == -1)
924 return (status);
925 if (opts[0] == '\0')
926 zerror(zlogp, B_FALSE, "\"%s %s %s\" "
927 "failed with exit code %d",
928 cmdbuf, special, directory, status);
929 else
930 zerror(zlogp, B_FALSE, "\"%s -o %s %s %s\" "
931 "failed with exit code %d",
932 cmdbuf, opts, special, directory, status);
933 return (-1);
934 }
935
936 /*
937 * Check if a given mount point path exists.
938 * If it does, make sure it doesn't contain any symlinks.
939 * Note that if "leaf" is false we're checking an intermediate
940 * component of the mount point path, so it must be a directory.
941 * If "leaf" is true, then we're checking the entire mount point
942 * path, so the mount point itself can be anything aside from a
943 * symbolic link.
944 *
945 * If the path is invalid then a negative value is returned. If the
946 * path exists and is a valid mount point path then 0 is returned.
947 * If the path doesn't exist return a positive value.
948 */
949 static int
valid_mount_point(zlog_t * zlogp,const char * path,const boolean_t leaf)950 valid_mount_point(zlog_t *zlogp, const char *path, const boolean_t leaf)
951 {
952 struct stat statbuf;
953 char respath[MAXPATHLEN];
954 int res;
955
956 if (lstat(path, &statbuf) != 0) {
957 if (errno == ENOENT)
958 return (1);
959 zerror(zlogp, B_TRUE, "can't stat %s", path);
960 return (-1);
961 }
962 if (S_ISLNK(statbuf.st_mode)) {
963 zerror(zlogp, B_FALSE, "%s is a symlink", path);
964 return (-1);
965 }
966 if (!leaf && !S_ISDIR(statbuf.st_mode)) {
967 zerror(zlogp, B_FALSE, "%s is not a directory", path);
968 return (-1);
969 }
970 if ((res = resolvepath(path, respath, sizeof (respath))) == -1) {
971 zerror(zlogp, B_TRUE, "unable to resolve path %s", path);
972 return (-1);
973 }
974 respath[res] = '\0';
975 if (strcmp(path, respath) != 0) {
976 /*
977 * We don't like ".."s, "."s, or "//"s throwing us off
978 */
979 zerror(zlogp, B_FALSE, "%s is not a canonical path", path);
980 return (-1);
981 }
982 return (0);
983 }
984
985 /*
986 * Validate a mount point path. A valid mount point path is an
987 * absolute path that either doesn't exist, or, if it does exists it
988 * must be an absolute canonical path that doesn't have any symbolic
989 * links in it. The target of a mount point path can be any filesystem
990 * object. (Different filesystems can support different mount points,
991 * for example "lofs" and "mntfs" both support files and directories
992 * while "ufs" just supports directories.)
993 *
994 * If the path is invalid then a negative value is returned. If the
995 * path exists and is a valid mount point path then 0 is returned.
996 * If the path doesn't exist return a positive value.
997 */
998 int
valid_mount_path(zlog_t * zlogp,const char * rootpath,const char * spec,const char * dir,const char * fstype)999 valid_mount_path(zlog_t *zlogp, const char *rootpath, const char *spec,
1000 const char *dir, const char *fstype)
1001 {
1002 char abspath[MAXPATHLEN], *slashp, *slashp_next;
1003 int rv;
1004
1005 /*
1006 * Sanity check the target mount point path.
1007 * It must be a non-null string that starts with a '/'.
1008 */
1009 if (dir[0] != '/') {
1010 /* Something went wrong. */
1011 zerror(zlogp, B_FALSE, "invalid mount directory, "
1012 "type: \"%s\", special: \"%s\", dir: \"%s\"",
1013 fstype, spec, dir);
1014 return (-1);
1015 }
1016
1017 /*
1018 * Join rootpath and dir. Make sure abspath ends with '/', this
1019 * is added to all paths (even non-directory paths) to allow us
1020 * to detect the end of paths below. If the path already ends
1021 * in a '/', then that's ok too (although we'll fail the
1022 * cannonical path check in valid_mount_point()).
1023 */
1024 if (snprintf(abspath, sizeof (abspath),
1025 "%s%s/", rootpath, dir) >= sizeof (abspath)) {
1026 zerror(zlogp, B_FALSE, "pathname %s%s is too long",
1027 rootpath, dir);
1028 return (-1);
1029 }
1030
1031 /*
1032 * Starting with rootpath, verify the mount path one component
1033 * at a time. Continue until we've evaluated all of abspath.
1034 */
1035 slashp = &abspath[strlen(rootpath)];
1036 assert(*slashp == '/');
1037 do {
1038 slashp_next = strchr(slashp + 1, '/');
1039 *slashp = '\0';
1040 if (slashp_next != NULL) {
1041 /* This is an intermediary mount path component. */
1042 rv = valid_mount_point(zlogp, abspath, B_FALSE);
1043 } else {
1044 /* This is the last component of the mount path. */
1045 rv = valid_mount_point(zlogp, abspath, B_TRUE);
1046 }
1047 if (rv < 0)
1048 return (rv);
1049 *slashp = '/';
1050 } while ((slashp = slashp_next) != NULL);
1051 return (rv);
1052 }
1053
1054 static int
mount_one_dev_device_cb(void * arg,const char * match,const char * name)1055 mount_one_dev_device_cb(void *arg, const char *match, const char *name)
1056 {
1057 di_prof_t prof = arg;
1058
1059 if (name == NULL)
1060 return (di_prof_add_dev(prof, match));
1061 return (di_prof_add_map(prof, match, name));
1062 }
1063
1064 static int
mount_one_dev_symlink_cb(void * arg,const char * source,const char * target)1065 mount_one_dev_symlink_cb(void *arg, const char *source, const char *target)
1066 {
1067 di_prof_t prof = arg;
1068
1069 return (di_prof_add_symlink(prof, source, target));
1070 }
1071
1072 int
vplat_get_iptype(zlog_t * zlogp,zone_iptype_t * iptypep)1073 vplat_get_iptype(zlog_t *zlogp, zone_iptype_t *iptypep)
1074 {
1075 zone_dochandle_t handle;
1076
1077 if ((handle = zonecfg_init_handle()) == NULL) {
1078 zerror(zlogp, B_TRUE, "getting zone configuration handle");
1079 return (-1);
1080 }
1081 if (zonecfg_get_snapshot_handle(zone_name, handle) != Z_OK) {
1082 zerror(zlogp, B_FALSE, "invalid configuration");
1083 zonecfg_fini_handle(handle);
1084 return (-1);
1085 }
1086 if (zonecfg_get_iptype(handle, iptypep) != Z_OK) {
1087 zerror(zlogp, B_FALSE, "invalid ip-type configuration");
1088 zonecfg_fini_handle(handle);
1089 return (-1);
1090 }
1091 zonecfg_fini_handle(handle);
1092 return (0);
1093 }
1094
1095 /*
1096 * Apply the standard lists of devices/symlinks/mappings and the user-specified
1097 * list of devices (via zonecfg) to the /dev filesystem. The filesystem will
1098 * use these as a profile/filter to determine what exists in /dev.
1099 */
1100 static int
mount_one_dev(zlog_t * zlogp,char * devpath,zone_mnt_t mount_cmd)1101 mount_one_dev(zlog_t *zlogp, char *devpath, zone_mnt_t mount_cmd)
1102 {
1103 char brand[MAXNAMELEN];
1104 zone_dochandle_t handle = NULL;
1105 brand_handle_t bh = NULL;
1106 struct zone_devtab ztab;
1107 di_prof_t prof = NULL;
1108 int err;
1109 int retval = -1;
1110 zone_iptype_t iptype;
1111 const char *curr_iptype;
1112
1113 if (di_prof_init(devpath, &prof)) {
1114 zerror(zlogp, B_TRUE, "failed to initialize profile");
1115 goto cleanup;
1116 }
1117
1118 /*
1119 * Get a handle to the brand info for this zone.
1120 * If we are mounting the zone, then we must always use the default
1121 * brand device mounts.
1122 */
1123 if (ALT_MOUNT(mount_cmd)) {
1124 (void) strlcpy(brand, default_brand, sizeof (brand));
1125 } else {
1126 (void) strlcpy(brand, brand_name, sizeof (brand));
1127 }
1128
1129 if ((bh = brand_open(brand)) == NULL) {
1130 zerror(zlogp, B_FALSE, "unable to determine zone brand");
1131 goto cleanup;
1132 }
1133
1134 if (vplat_get_iptype(zlogp, &iptype) < 0) {
1135 zerror(zlogp, B_TRUE, "unable to determine ip-type");
1136 goto cleanup;
1137 }
1138 switch (iptype) {
1139 case ZS_SHARED:
1140 curr_iptype = "shared";
1141 break;
1142 case ZS_EXCLUSIVE:
1143 curr_iptype = "exclusive";
1144 break;
1145 default:
1146 zerror(zlogp, B_FALSE, "bad ip-type");
1147 goto cleanup;
1148 }
1149
1150 if (brand_platform_iter_devices(bh, zone_name,
1151 mount_one_dev_device_cb, prof, curr_iptype) != 0) {
1152 zerror(zlogp, B_TRUE, "failed to add standard device");
1153 goto cleanup;
1154 }
1155
1156 if (brand_platform_iter_link(bh,
1157 mount_one_dev_symlink_cb, prof) != 0) {
1158 zerror(zlogp, B_TRUE, "failed to add standard symlink");
1159 goto cleanup;
1160 }
1161
1162 /* Add user-specified devices and directories */
1163 if ((handle = zonecfg_init_handle()) == NULL) {
1164 zerror(zlogp, B_FALSE, "can't initialize zone handle");
1165 goto cleanup;
1166 }
1167 if ((err = zonecfg_get_handle(zone_name, handle)) != 0) {
1168 zerror(zlogp, B_FALSE, "can't get handle for zone "
1169 "%s: %s", zone_name, zonecfg_strerror(err));
1170 goto cleanup;
1171 }
1172 if ((err = zonecfg_setdevent(handle)) != 0) {
1173 zerror(zlogp, B_FALSE, "%s: %s", zone_name,
1174 zonecfg_strerror(err));
1175 goto cleanup;
1176 }
1177 while (zonecfg_getdevent(handle, &ztab) == Z_OK) {
1178 if (di_prof_add_dev(prof, ztab.zone_dev_match)) {
1179 zerror(zlogp, B_TRUE, "failed to add "
1180 "user-specified device");
1181 goto cleanup;
1182 }
1183 }
1184 (void) zonecfg_enddevent(handle);
1185
1186 /* Send profile to kernel */
1187 if (di_prof_commit(prof)) {
1188 zerror(zlogp, B_TRUE, "failed to commit profile");
1189 goto cleanup;
1190 }
1191
1192 retval = 0;
1193
1194 cleanup:
1195 if (bh != NULL)
1196 brand_close(bh);
1197 if (handle != NULL)
1198 zonecfg_fini_handle(handle);
1199 if (prof)
1200 di_prof_fini(prof);
1201 return (retval);
1202 }
1203
1204 static int
mount_one(zlog_t * zlogp,struct zone_fstab * fsptr,const char * rootpath,zone_mnt_t mount_cmd)1205 mount_one(zlog_t *zlogp, struct zone_fstab *fsptr, const char *rootpath,
1206 zone_mnt_t mount_cmd)
1207 {
1208 char path[MAXPATHLEN];
1209 char optstr[MAX_MNTOPT_STR];
1210 zone_fsopt_t *optptr;
1211 int rv;
1212
1213 if ((rv = valid_mount_path(zlogp, rootpath, fsptr->zone_fs_special,
1214 fsptr->zone_fs_dir, fsptr->zone_fs_type)) < 0) {
1215 zerror(zlogp, B_FALSE, "%s%s is not a valid mount point",
1216 rootpath, fsptr->zone_fs_dir);
1217 return (-1);
1218 } else if (rv > 0) {
1219 /* The mount point path doesn't exist, create it now. */
1220 if (make_one_dir(zlogp, rootpath, fsptr->zone_fs_dir,
1221 DEFAULT_DIR_MODE, DEFAULT_DIR_USER,
1222 DEFAULT_DIR_GROUP) != 0) {
1223 zerror(zlogp, B_FALSE, "failed to create mount point");
1224 return (-1);
1225 }
1226
1227 /*
1228 * Now this might seem weird, but we need to invoke
1229 * valid_mount_path() again. Why? Because it checks
1230 * to make sure that the mount point path is canonical,
1231 * which it can only do if the path exists, so now that
1232 * we've created the path we have to verify it again.
1233 */
1234 if ((rv = valid_mount_path(zlogp, rootpath,
1235 fsptr->zone_fs_special, fsptr->zone_fs_dir,
1236 fsptr->zone_fs_type)) < 0) {
1237 zerror(zlogp, B_FALSE,
1238 "%s%s is not a valid mount point",
1239 rootpath, fsptr->zone_fs_dir);
1240 return (-1);
1241 }
1242 }
1243
1244 (void) snprintf(path, sizeof (path), "%s%s", rootpath,
1245 fsptr->zone_fs_dir);
1246
1247 /*
1248 * In general the strategy here is to do just as much verification as
1249 * necessary to avoid crashing or otherwise doing something bad; if the
1250 * administrator initiated the operation via zoneadm(8), they'll get
1251 * auto-verification which will let them know what's wrong. If they
1252 * modify the zone configuration of a running zone, and don't attempt
1253 * to verify that it's OK, then we won't crash but won't bother trying
1254 * to be too helpful either. zoneadm verify is only a couple keystrokes
1255 * away.
1256 */
1257 if (!zonecfg_valid_fs_type(fsptr->zone_fs_type)) {
1258 zerror(zlogp, B_FALSE, "cannot mount %s on %s: "
1259 "invalid file-system type %s", fsptr->zone_fs_special,
1260 fsptr->zone_fs_dir, fsptr->zone_fs_type);
1261 return (-1);
1262 }
1263
1264 /*
1265 * If we're looking at an alternate root environment, then construct
1266 * read-only loopback mounts as necessary. Note that any special
1267 * paths for lofs zone mounts in an alternate root must have
1268 * already been pre-pended with any alternate root path by the
1269 * time we get here.
1270 */
1271 if (zonecfg_in_alt_root()) {
1272 struct stat64 st;
1273
1274 if (stat64(fsptr->zone_fs_special, &st) != -1 &&
1275 S_ISBLK(st.st_mode)) {
1276 /*
1277 * If we're going to mount a block device we need
1278 * to check if that device is already mounted
1279 * somewhere else, and if so, do a lofs mount
1280 * of the device instead of a direct mount
1281 */
1282 if (check_lofs_needed(zlogp, fsptr) == -1)
1283 return (-1);
1284 } else if (strcmp(fsptr->zone_fs_type, MNTTYPE_LOFS) == 0) {
1285 /*
1286 * For lofs mounts, the special node is inside the
1287 * alternate root. We need lofs resolution for
1288 * this case in order to get at the underlying
1289 * read-write path.
1290 */
1291 resolve_lofs(zlogp, fsptr->zone_fs_special,
1292 sizeof (fsptr->zone_fs_special));
1293 }
1294 }
1295
1296 /*
1297 * Run 'fsck -m' if there's a device to fsck.
1298 */
1299 if (fsptr->zone_fs_raw[0] != '\0' &&
1300 dofsck(zlogp, fsptr->zone_fs_type, fsptr->zone_fs_raw) != 0) {
1301 return (-1);
1302 } else if (isregfile(fsptr->zone_fs_special) == 1 &&
1303 dofsck(zlogp, fsptr->zone_fs_type, fsptr->zone_fs_special) != 0) {
1304 return (-1);
1305 }
1306
1307 /*
1308 * Build up mount option string.
1309 */
1310 optstr[0] = '\0';
1311 if (fsptr->zone_fs_options != NULL) {
1312 (void) strlcpy(optstr, fsptr->zone_fs_options->zone_fsopt_opt,
1313 sizeof (optstr));
1314 for (optptr = fsptr->zone_fs_options->zone_fsopt_next;
1315 optptr != NULL; optptr = optptr->zone_fsopt_next) {
1316 (void) strlcat(optstr, ",", sizeof (optstr));
1317 (void) strlcat(optstr, optptr->zone_fsopt_opt,
1318 sizeof (optstr));
1319 }
1320 }
1321
1322 if ((rv = domount(zlogp, fsptr->zone_fs_type, optstr,
1323 fsptr->zone_fs_special, path)) != 0)
1324 return (rv);
1325
1326 /*
1327 * The mount succeeded. If this was not a mount of /dev then
1328 * we're done.
1329 */
1330 if (strcmp(fsptr->zone_fs_type, MNTTYPE_DEV) != 0)
1331 return (0);
1332
1333 /*
1334 * We just mounted an instance of a /dev filesystem, so now we
1335 * need to configure it.
1336 */
1337 return (mount_one_dev(zlogp, path, mount_cmd));
1338 }
1339
1340 static void
free_fs_data(struct zone_fstab * fsarray,uint_t nelem)1341 free_fs_data(struct zone_fstab *fsarray, uint_t nelem)
1342 {
1343 uint_t i;
1344
1345 if (fsarray == NULL)
1346 return;
1347 for (i = 0; i < nelem; i++)
1348 zonecfg_free_fs_option_list(fsarray[i].zone_fs_options);
1349 free(fsarray);
1350 }
1351
1352 /*
1353 * This function initiates the creation of a small Solaris Environment for
1354 * scratch zone. The Environment creation process is split up into two
1355 * functions(build_mounted_pre_var() and build_mounted_post_var()). It
1356 * is done this way because:
1357 * We need to have both /etc and /var in the root of the scratchzone.
1358 * We loopback mount zone's own /etc and /var into the root of the
1359 * scratch zone. Unlike /etc, /var can be a seperate filesystem. So we
1360 * need to delay the mount of /var till the zone's root gets populated.
1361 * So mounting of localdirs[](/etc and /var) have been moved to the
1362 * build_mounted_post_var() which gets called only after the zone
1363 * specific filesystems are mounted.
1364 *
1365 * Note that the scratch zone we set up for updating the zone (Z_MNT_UPDATE)
1366 * does not loopback mount the zone's own /etc and /var into the root of the
1367 * scratch zone.
1368 */
1369 static boolean_t
build_mounted_pre_var(zlog_t * zlogp,char * rootpath,size_t rootlen,const char * zonepath,char * luroot,size_t lurootlen)1370 build_mounted_pre_var(zlog_t *zlogp, char *rootpath,
1371 size_t rootlen, const char *zonepath, char *luroot, size_t lurootlen)
1372 {
1373 char tmp[MAXPATHLEN], fromdir[MAXPATHLEN];
1374 const char **cpp;
1375 static const char *mkdirs[] = {
1376 "/system", "/system/contract", "/system/object", "/proc",
1377 "/dev", "/tmp", "/a", NULL
1378 };
1379 char *altstr;
1380 FILE *fp;
1381 uuid_t uuid;
1382
1383 resolve_lofs(zlogp, rootpath, rootlen);
1384 (void) snprintf(luroot, lurootlen, "%s/lu", zonepath);
1385 resolve_lofs(zlogp, luroot, lurootlen);
1386 (void) snprintf(tmp, sizeof (tmp), "%s/bin", luroot);
1387 (void) symlink("./usr/bin", tmp);
1388
1389 /*
1390 * These are mostly special mount points; not handled here. (See
1391 * zone_mount_early.)
1392 */
1393 for (cpp = mkdirs; *cpp != NULL; cpp++) {
1394 (void) snprintf(tmp, sizeof (tmp), "%s%s", luroot, *cpp);
1395 if (mkdir(tmp, 0755) != 0) {
1396 zerror(zlogp, B_TRUE, "cannot create %s", tmp);
1397 return (B_FALSE);
1398 }
1399 }
1400 /*
1401 * This is here to support lucopy. If there's an instance of this same
1402 * zone on the current running system, then we mount its root up as
1403 * read-only inside the scratch zone.
1404 */
1405 (void) zonecfg_get_uuid(zone_name, uuid);
1406 altstr = strdup(zonecfg_get_root());
1407 if (altstr == NULL) {
1408 zerror(zlogp, B_TRUE, "memory allocation failed");
1409 return (B_FALSE);
1410 }
1411 zonecfg_set_root("");
1412 (void) strlcpy(tmp, zone_name, sizeof (tmp));
1413 (void) zonecfg_get_name_by_uuid(uuid, tmp, sizeof (tmp));
1414 if (zone_get_rootpath(tmp, fromdir, sizeof (fromdir)) == Z_OK &&
1415 strcmp(fromdir, rootpath) != 0) {
1416 (void) snprintf(tmp, sizeof (tmp), "%s/b", luroot);
1417 if (mkdir(tmp, 0755) != 0) {
1418 zerror(zlogp, B_TRUE, "cannot create %s", tmp);
1419 return (B_FALSE);
1420 }
1421 if (domount(zlogp, MNTTYPE_LOFS, RESOURCE_DEFAULT_OPTS, fromdir,
1422 tmp) != 0) {
1423 zerror(zlogp, B_TRUE, "cannot mount %s on %s", tmp,
1424 fromdir);
1425 return (B_FALSE);
1426 }
1427 }
1428 zonecfg_set_root(altstr);
1429 free(altstr);
1430
1431 if ((fp = zonecfg_open_scratch(luroot, B_TRUE)) == NULL) {
1432 zerror(zlogp, B_TRUE, "cannot open zone mapfile");
1433 return (B_FALSE);
1434 }
1435 (void) ftruncate(fileno(fp), 0);
1436 if (zonecfg_add_scratch(fp, zone_name, kernzone, "/") == -1) {
1437 zerror(zlogp, B_TRUE, "cannot add zone mapfile entry");
1438 }
1439 zonecfg_close_scratch(fp);
1440 (void) snprintf(tmp, sizeof (tmp), "%s/a", luroot);
1441 if (domount(zlogp, MNTTYPE_LOFS, "", rootpath, tmp) != 0)
1442 return (B_FALSE);
1443 (void) strlcpy(rootpath, tmp, rootlen);
1444 return (B_TRUE);
1445 }
1446
1447
1448 static boolean_t
build_mounted_post_var(zlog_t * zlogp,zone_mnt_t mount_cmd,char * rootpath,const char * luroot)1449 build_mounted_post_var(zlog_t *zlogp, zone_mnt_t mount_cmd, char *rootpath,
1450 const char *luroot)
1451 {
1452 char tmp[MAXPATHLEN], fromdir[MAXPATHLEN];
1453 const char **cpp;
1454 const char **loopdirs;
1455 const char **tmpdirs;
1456 static const char *localdirs[] = {
1457 "/etc", "/var", NULL
1458 };
1459 static const char *scr_loopdirs[] = {
1460 "/etc/lib", "/etc/fs", "/lib", "/sbin", "/platform",
1461 "/usr", NULL
1462 };
1463 static const char *upd_loopdirs[] = {
1464 "/etc", "/kernel", "/lib", "/opt", "/platform", "/sbin",
1465 "/usr", "/var", NULL
1466 };
1467 static const char *scr_tmpdirs[] = {
1468 "/tmp", "/var/run", NULL
1469 };
1470 static const char *upd_tmpdirs[] = {
1471 "/tmp", "/var/run", "/var/tmp", NULL
1472 };
1473 struct stat st;
1474
1475 if (mount_cmd == Z_MNT_SCRATCH) {
1476 /*
1477 * These are mounted read-write from the zone undergoing
1478 * upgrade. We must be careful not to 'leak' things from the
1479 * main system into the zone, and this accomplishes that goal.
1480 */
1481 for (cpp = localdirs; *cpp != NULL; cpp++) {
1482 (void) snprintf(tmp, sizeof (tmp), "%s%s", luroot,
1483 *cpp);
1484 (void) snprintf(fromdir, sizeof (fromdir), "%s%s",
1485 rootpath, *cpp);
1486 if (mkdir(tmp, 0755) != 0) {
1487 zerror(zlogp, B_TRUE, "cannot create %s", tmp);
1488 return (B_FALSE);
1489 }
1490 if (domount(zlogp, MNTTYPE_LOFS, "", fromdir, tmp)
1491 != 0) {
1492 zerror(zlogp, B_TRUE, "cannot mount %s on %s",
1493 tmp, *cpp);
1494 return (B_FALSE);
1495 }
1496 }
1497 }
1498
1499 if (mount_cmd == Z_MNT_UPDATE)
1500 loopdirs = upd_loopdirs;
1501 else
1502 loopdirs = scr_loopdirs;
1503
1504 /*
1505 * These are things mounted read-only from the running system because
1506 * they contain binaries that must match system.
1507 */
1508 for (cpp = loopdirs; *cpp != NULL; cpp++) {
1509 (void) snprintf(tmp, sizeof (tmp), "%s%s", luroot, *cpp);
1510 if (mkdir(tmp, 0755) != 0) {
1511 if (errno != EEXIST) {
1512 zerror(zlogp, B_TRUE, "cannot create %s", tmp);
1513 return (B_FALSE);
1514 }
1515 if (lstat(tmp, &st) != 0) {
1516 zerror(zlogp, B_TRUE, "cannot stat %s", tmp);
1517 return (B_FALSE);
1518 }
1519 /*
1520 * Ignore any non-directories encountered. These are
1521 * things that have been converted into symlinks
1522 * (/etc/fs and /etc/lib) and no longer need a lofs
1523 * fixup.
1524 */
1525 if (!S_ISDIR(st.st_mode))
1526 continue;
1527 }
1528 if (domount(zlogp, MNTTYPE_LOFS, RESOURCE_DEFAULT_OPTS, *cpp,
1529 tmp) != 0) {
1530 zerror(zlogp, B_TRUE, "cannot mount %s on %s", tmp,
1531 *cpp);
1532 return (B_FALSE);
1533 }
1534 }
1535
1536 if (mount_cmd == Z_MNT_UPDATE)
1537 tmpdirs = upd_tmpdirs;
1538 else
1539 tmpdirs = scr_tmpdirs;
1540
1541 /*
1542 * These are things with tmpfs mounted inside.
1543 */
1544 for (cpp = tmpdirs; *cpp != NULL; cpp++) {
1545 (void) snprintf(tmp, sizeof (tmp), "%s%s", luroot, *cpp);
1546 if (mount_cmd == Z_MNT_SCRATCH && mkdir(tmp, 0755) != 0 &&
1547 errno != EEXIST) {
1548 zerror(zlogp, B_TRUE, "cannot create %s", tmp);
1549 return (B_FALSE);
1550 }
1551
1552 /*
1553 * We could set the mode for /tmp when we do the mkdir but
1554 * since that can be modified by the umask we will just set
1555 * the correct mode for /tmp now.
1556 */
1557 if (strcmp(*cpp, "/tmp") == 0 && chmod(tmp, 01777) != 0) {
1558 zerror(zlogp, B_TRUE, "cannot chmod %s", tmp);
1559 return (B_FALSE);
1560 }
1561
1562 if (domount(zlogp, MNTTYPE_TMPFS, "", "swap", tmp) != 0) {
1563 zerror(zlogp, B_TRUE, "cannot mount swap on %s", *cpp);
1564 return (B_FALSE);
1565 }
1566 }
1567 return (B_TRUE);
1568 }
1569
1570 typedef struct plat_gmount_cb_data {
1571 zlog_t *pgcd_zlogp;
1572 struct zone_fstab **pgcd_fs_tab;
1573 int *pgcd_num_fs;
1574 } plat_gmount_cb_data_t;
1575
1576 /*
1577 * plat_gmount_cb() is a callback function invoked by libbrand to iterate
1578 * through all global brand platform mounts.
1579 */
1580 int
plat_gmount_cb(void * data,const char * spec,const char * dir,const char * fstype,const char * opt)1581 plat_gmount_cb(void *data, const char *spec, const char *dir,
1582 const char *fstype, const char *opt)
1583 {
1584 plat_gmount_cb_data_t *cp = data;
1585 zlog_t *zlogp = cp->pgcd_zlogp;
1586 struct zone_fstab *fs_ptr = *cp->pgcd_fs_tab;
1587 int num_fs = *cp->pgcd_num_fs;
1588 struct zone_fstab *fsp, *tmp_ptr;
1589
1590 num_fs++;
1591 if ((tmp_ptr = realloc(fs_ptr, num_fs * sizeof (*tmp_ptr))) == NULL) {
1592 zerror(zlogp, B_TRUE, "memory allocation failed");
1593 return (-1);
1594 }
1595
1596 fs_ptr = tmp_ptr;
1597 fsp = &fs_ptr[num_fs - 1];
1598
1599 /* update the callback struct passed in */
1600 *cp->pgcd_fs_tab = fs_ptr;
1601 *cp->pgcd_num_fs = num_fs;
1602
1603 fsp->zone_fs_raw[0] = '\0';
1604 (void) strlcpy(fsp->zone_fs_special, spec,
1605 sizeof (fsp->zone_fs_special));
1606 (void) strlcpy(fsp->zone_fs_dir, dir, sizeof (fsp->zone_fs_dir));
1607 (void) strlcpy(fsp->zone_fs_type, fstype, sizeof (fsp->zone_fs_type));
1608 fsp->zone_fs_options = NULL;
1609 if ((opt != NULL) &&
1610 (zonecfg_add_fs_option(fsp, (char *)opt) != Z_OK)) {
1611 zerror(zlogp, B_FALSE, "error adding property");
1612 return (-1);
1613 }
1614
1615 return (0);
1616 }
1617
1618 static int
mount_filesystems_fsent(zone_dochandle_t handle,zlog_t * zlogp,struct zone_fstab ** fs_tabp,int * num_fsp,zone_mnt_t mount_cmd)1619 mount_filesystems_fsent(zone_dochandle_t handle, zlog_t *zlogp,
1620 struct zone_fstab **fs_tabp, int *num_fsp, zone_mnt_t mount_cmd)
1621 {
1622 struct zone_fstab *tmp_ptr, *fs_ptr, *fsp, fstab;
1623 int num_fs;
1624
1625 num_fs = *num_fsp;
1626 fs_ptr = *fs_tabp;
1627
1628 if (zonecfg_setfsent(handle) != Z_OK) {
1629 zerror(zlogp, B_FALSE, "invalid configuration");
1630 return (-1);
1631 }
1632 while (zonecfg_getfsent(handle, &fstab) == Z_OK) {
1633 /*
1634 * ZFS filesystems will not be accessible under an alternate
1635 * root, since the pool will not be known. Ignore them in this
1636 * case.
1637 */
1638 if (ALT_MOUNT(mount_cmd) &&
1639 strcmp(fstab.zone_fs_type, MNTTYPE_ZFS) == 0)
1640 continue;
1641
1642 num_fs++;
1643 if ((tmp_ptr = realloc(fs_ptr,
1644 num_fs * sizeof (*tmp_ptr))) == NULL) {
1645 zerror(zlogp, B_TRUE, "memory allocation failed");
1646 (void) zonecfg_endfsent(handle);
1647 return (-1);
1648 }
1649 /* update the pointers passed in */
1650 *fs_tabp = tmp_ptr;
1651 *num_fsp = num_fs;
1652
1653 fs_ptr = tmp_ptr;
1654 fsp = &fs_ptr[num_fs - 1];
1655 (void) strlcpy(fsp->zone_fs_dir,
1656 fstab.zone_fs_dir, sizeof (fsp->zone_fs_dir));
1657 (void) strlcpy(fsp->zone_fs_raw, fstab.zone_fs_raw,
1658 sizeof (fsp->zone_fs_raw));
1659 (void) strlcpy(fsp->zone_fs_type, fstab.zone_fs_type,
1660 sizeof (fsp->zone_fs_type));
1661 fsp->zone_fs_options = fstab.zone_fs_options;
1662
1663 /*
1664 * For all lofs mounts, make sure that the 'special'
1665 * entry points inside the alternate root. The
1666 * source path for a lofs mount in a given zone needs
1667 * to be relative to the root of the boot environment
1668 * that contains the zone. Note that we don't do this
1669 * for non-lofs mounts since they will have a device
1670 * as a backing store and device paths must always be
1671 * specified relative to the current boot environment.
1672 */
1673 fsp->zone_fs_special[0] = '\0';
1674 if (strcmp(fsp->zone_fs_type, MNTTYPE_LOFS) == 0) {
1675 (void) strlcat(fsp->zone_fs_special, zonecfg_get_root(),
1676 sizeof (fsp->zone_fs_special));
1677 }
1678 (void) strlcat(fsp->zone_fs_special, fstab.zone_fs_special,
1679 sizeof (fsp->zone_fs_special));
1680 }
1681 (void) zonecfg_endfsent(handle);
1682 return (0);
1683 }
1684
1685 static int
mount_filesystems(zlog_t * zlogp,zone_mnt_t mount_cmd)1686 mount_filesystems(zlog_t *zlogp, zone_mnt_t mount_cmd)
1687 {
1688 char rootpath[MAXPATHLEN];
1689 char zonepath[MAXPATHLEN];
1690 char brand[MAXNAMELEN];
1691 char luroot[MAXPATHLEN];
1692 int i, num_fs = 0;
1693 struct zone_fstab *fs_ptr = NULL;
1694 zone_dochandle_t handle = NULL;
1695 zone_state_t zstate;
1696 brand_handle_t bh;
1697 plat_gmount_cb_data_t cb;
1698
1699 if (zone_get_state(zone_name, &zstate) != Z_OK ||
1700 (zstate != ZONE_STATE_READY && zstate != ZONE_STATE_MOUNTED)) {
1701 zerror(zlogp, B_FALSE,
1702 "zone must be in '%s' or '%s' state to mount file-systems",
1703 zone_state_str(ZONE_STATE_READY),
1704 zone_state_str(ZONE_STATE_MOUNTED));
1705 goto bad;
1706 }
1707
1708 if (zone_get_zonepath(zone_name, zonepath, sizeof (zonepath)) != Z_OK) {
1709 zerror(zlogp, B_TRUE, "unable to determine zone path");
1710 goto bad;
1711 }
1712
1713 if (zone_get_rootpath(zone_name, rootpath, sizeof (rootpath)) != Z_OK) {
1714 zerror(zlogp, B_TRUE, "unable to determine zone root");
1715 goto bad;
1716 }
1717
1718 if ((handle = zonecfg_init_handle()) == NULL) {
1719 zerror(zlogp, B_TRUE, "getting zone configuration handle");
1720 goto bad;
1721 }
1722 if (zonecfg_get_snapshot_handle(zone_name, handle) != Z_OK ||
1723 zonecfg_setfsent(handle) != Z_OK) {
1724 zerror(zlogp, B_FALSE, "invalid configuration");
1725 goto bad;
1726 }
1727
1728 /*
1729 * If we are mounting the zone, then we must always use the default
1730 * brand global mounts.
1731 */
1732 if (ALT_MOUNT(mount_cmd)) {
1733 (void) strlcpy(brand, default_brand, sizeof (brand));
1734 } else {
1735 (void) strlcpy(brand, brand_name, sizeof (brand));
1736 }
1737
1738 /* Get a handle to the brand info for this zone */
1739 if ((bh = brand_open(brand)) == NULL) {
1740 zerror(zlogp, B_FALSE, "unable to determine zone brand");
1741 zonecfg_fini_handle(handle);
1742 return (-1);
1743 }
1744
1745 /*
1746 * Get the list of global filesystems to mount from the brand
1747 * configuration.
1748 */
1749 cb.pgcd_zlogp = zlogp;
1750 cb.pgcd_fs_tab = &fs_ptr;
1751 cb.pgcd_num_fs = &num_fs;
1752 if (brand_platform_iter_gmounts(bh, zone_name, zonepath,
1753 plat_gmount_cb, &cb) != 0) {
1754 zerror(zlogp, B_FALSE, "unable to mount filesystems");
1755 brand_close(bh);
1756 zonecfg_fini_handle(handle);
1757 return (-1);
1758 }
1759 brand_close(bh);
1760
1761 /*
1762 * Iterate through the rest of the filesystems. Sort them all,
1763 * then mount them in sorted order. This is to make sure the
1764 * higher level directories (e.g., /usr) get mounted before
1765 * any beneath them (e.g., /usr/local).
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(strcmp(&rootpath[slen], "/a") == 0);
1823 rootpath[slen] = '\0';
1824 if (mount_one(zlogp, &fs_ptr[i], rootpath, mount_cmd)
1825 != 0)
1826 goto bad;
1827 rootpath[slen] = '/';
1828 continue;
1829 }
1830 if (mount_one(zlogp, &fs_ptr[i], rootpath, mount_cmd) != 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
addr2netmask(char * prefixstr,int maxprefixlen,uchar_t * maskstr)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
unconfigure_shared_network_interfaces(zlog_t * zlogp,zoneid_t zone_id)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
salen(struct sockaddr * sa)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 *
who_is_using(zlog_t * zlogp,struct lifreq * lifr)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 /*
2152 * Configures a single interface: a new virtual interface is added, based on
2153 * the physical interface nwiftabptr->zone_nwif_physical, with the address
2154 * specified in nwiftabptr->zone_nwif_address, for zone zone_id. Note that
2155 * the "address" can be an IPv6 address (with a /prefixlength required), an
2156 * IPv4 address (with a /prefixlength optional), or a name; for the latter,
2157 * an IPv4 name-to-address resolution will be attempted.
2158 *
2159 * If anything goes wrong, we log an detailed error message, attempt to tear
2160 * down whatever we set up and return an error.
2161 */
2162 static int
configure_one_interface(zlog_t * zlogp,zoneid_t zone_id,struct zone_nwiftab * nwiftabptr)2163 configure_one_interface(zlog_t *zlogp, zoneid_t zone_id,
2164 struct zone_nwiftab *nwiftabptr)
2165 {
2166 struct lifreq lifr;
2167 struct sockaddr_in netmask4;
2168 struct sockaddr_in6 netmask6;
2169 struct sockaddr_storage laddr;
2170 struct in_addr in4;
2171 sa_family_t af;
2172 char *slashp = strchr(nwiftabptr->zone_nwif_address, '/');
2173 int s;
2174 boolean_t got_netmask = B_FALSE;
2175 boolean_t is_loopback = B_FALSE;
2176 char addrstr4[INET_ADDRSTRLEN];
2177 int res;
2178
2179 res = zonecfg_valid_net_address(nwiftabptr->zone_nwif_address, &lifr);
2180 if (res != Z_OK) {
2181 zerror(zlogp, B_FALSE, "%s: %s", zonecfg_strerror(res),
2182 nwiftabptr->zone_nwif_address);
2183 return (-1);
2184 }
2185 af = lifr.lifr_addr.ss_family;
2186 if (af == AF_INET)
2187 in4 = ((struct sockaddr_in *)(&lifr.lifr_addr))->sin_addr;
2188 if ((s = socket(af, SOCK_DGRAM, 0)) < 0) {
2189 zerror(zlogp, B_TRUE, "could not get socket");
2190 return (-1);
2191 }
2192
2193 /*
2194 * This is a similar kind of "hack" like in addif() to get around
2195 * the problem of SIOCLIFADDIF. The problem is that this ioctl
2196 * does not include the netmask when adding a logical interface.
2197 * To get around this problem, we first add the logical interface
2198 * with a 0 address. After that, we set the netmask if provided.
2199 * Finally we set the interface address.
2200 */
2201 laddr = lifr.lifr_addr;
2202 (void) strlcpy(lifr.lifr_name, nwiftabptr->zone_nwif_physical,
2203 sizeof (lifr.lifr_name));
2204 (void) memset(&lifr.lifr_addr, 0, sizeof (lifr.lifr_addr));
2205
2206 if (ioctl(s, SIOCLIFADDIF, (caddr_t)&lifr) < 0) {
2207 /*
2208 * Here, we know that the interface can't be brought up.
2209 * A similar warning message was already printed out to
2210 * the console by zoneadm(8) so instead we log the
2211 * message to syslog and continue.
2212 */
2213 zerror(&logsys, B_TRUE, "WARNING: skipping network interface "
2214 "'%s' which may not be present/plumbed in the "
2215 "global zone.", lifr.lifr_name);
2216 (void) close(s);
2217 return (Z_OK);
2218 }
2219
2220 /* Preserve literal IPv4 address for later potential printing. */
2221 if (af == AF_INET)
2222 (void) inet_ntop(AF_INET, &in4, addrstr4, INET_ADDRSTRLEN);
2223
2224 lifr.lifr_zoneid = zone_id;
2225 if (ioctl(s, SIOCSLIFZONE, (caddr_t)&lifr) < 0) {
2226 zerror(zlogp, B_TRUE, "%s: could not place network interface "
2227 "into zone", lifr.lifr_name);
2228 goto bad;
2229 }
2230
2231 /*
2232 * Loopback interface will use the default netmask assigned, if no
2233 * netmask is found.
2234 */
2235 if (strcmp(nwiftabptr->zone_nwif_physical, "lo0") == 0) {
2236 is_loopback = B_TRUE;
2237 }
2238 if (af == AF_INET) {
2239 /*
2240 * The IPv4 netmask can be determined either
2241 * directly if a prefix length was supplied with
2242 * the address or via the netmasks database. Not
2243 * being able to determine it is a common failure,
2244 * but it often is not fatal to operation of the
2245 * interface. In that case, a warning will be
2246 * printed after the rest of the interface's
2247 * parameters have been configured.
2248 */
2249 (void) memset(&netmask4, 0, sizeof (netmask4));
2250 if (slashp != NULL) {
2251 if (addr2netmask(slashp + 1, V4_ADDR_LEN,
2252 (uchar_t *)&netmask4.sin_addr) != 0) {
2253 *slashp = '/';
2254 zerror(zlogp, B_FALSE,
2255 "%s: invalid prefix length in %s",
2256 lifr.lifr_name,
2257 nwiftabptr->zone_nwif_address);
2258 goto bad;
2259 }
2260 got_netmask = B_TRUE;
2261 } else if (getnetmaskbyaddr(in4,
2262 &netmask4.sin_addr) == 0) {
2263 got_netmask = B_TRUE;
2264 }
2265 if (got_netmask) {
2266 netmask4.sin_family = af;
2267 (void) memcpy(&lifr.lifr_addr, &netmask4,
2268 sizeof (netmask4));
2269 }
2270 } else {
2271 (void) memset(&netmask6, 0, sizeof (netmask6));
2272 if (addr2netmask(slashp + 1, V6_ADDR_LEN,
2273 (uchar_t *)&netmask6.sin6_addr) != 0) {
2274 *slashp = '/';
2275 zerror(zlogp, B_FALSE,
2276 "%s: invalid prefix length in %s",
2277 lifr.lifr_name,
2278 nwiftabptr->zone_nwif_address);
2279 goto bad;
2280 }
2281 got_netmask = B_TRUE;
2282 netmask6.sin6_family = af;
2283 (void) memcpy(&lifr.lifr_addr, &netmask6,
2284 sizeof (netmask6));
2285 }
2286 if (got_netmask &&
2287 ioctl(s, SIOCSLIFNETMASK, (caddr_t)&lifr) < 0) {
2288 zerror(zlogp, B_TRUE, "%s: could not set netmask",
2289 lifr.lifr_name);
2290 goto bad;
2291 }
2292
2293 /* Set the interface address */
2294 lifr.lifr_addr = laddr;
2295 if (ioctl(s, SIOCSLIFADDR, (caddr_t)&lifr) < 0) {
2296 zerror(zlogp, B_TRUE,
2297 "%s: could not set IP address to %s",
2298 lifr.lifr_name, nwiftabptr->zone_nwif_address);
2299 goto bad;
2300 }
2301
2302 if (ioctl(s, SIOCGLIFFLAGS, (caddr_t)&lifr) < 0) {
2303 zerror(zlogp, B_TRUE, "%s: could not get flags",
2304 lifr.lifr_name);
2305 goto bad;
2306 }
2307 lifr.lifr_flags |= IFF_UP;
2308 if (ioctl(s, SIOCSLIFFLAGS, (caddr_t)&lifr) < 0) {
2309 int save_errno = errno;
2310 char *zone_using;
2311
2312 /*
2313 * If we failed with something other than EADDRNOTAVAIL,
2314 * then skip to the end. Otherwise, look up our address,
2315 * then call a function to determine which zone is already
2316 * using that address.
2317 */
2318 if (errno != EADDRNOTAVAIL) {
2319 zerror(zlogp, B_TRUE,
2320 "%s: could not bring network interface up",
2321 lifr.lifr_name);
2322 goto bad;
2323 }
2324 if (ioctl(s, SIOCGLIFADDR, (caddr_t)&lifr) < 0) {
2325 zerror(zlogp, B_TRUE, "%s: could not get address",
2326 lifr.lifr_name);
2327 goto bad;
2328 }
2329 zone_using = who_is_using(zlogp, &lifr);
2330 errno = save_errno;
2331 if (zone_using == NULL)
2332 zerror(zlogp, B_TRUE,
2333 "%s: could not bring network interface up",
2334 lifr.lifr_name);
2335 else
2336 zerror(zlogp, B_TRUE, "%s: could not bring network "
2337 "interface up: address in use by zone '%s'",
2338 lifr.lifr_name, zone_using);
2339 goto bad;
2340 }
2341
2342 if (!got_netmask && !is_loopback) {
2343 /*
2344 * A common, but often non-fatal problem, is that the system
2345 * cannot find the netmask for an interface address. This is
2346 * often caused by it being only in /etc/inet/netmasks, but
2347 * /etc/nsswitch.conf says to use NIS or NIS+ and it's not
2348 * in that. This doesn't show up at boot because the netmask
2349 * is obtained from /etc/inet/netmasks when no network
2350 * interfaces are up, but isn't consulted when NIS/NIS+ is
2351 * available. We warn the user here that something like this
2352 * has happened and we're just running with a default and
2353 * possible incorrect netmask.
2354 */
2355 char buffer[INET6_ADDRSTRLEN];
2356 void *addr;
2357 const char *nomatch = "no matching subnet found in netmasks(5)";
2358
2359 if (af == AF_INET)
2360 addr = &((struct sockaddr_in *)
2361 (&lifr.lifr_addr))->sin_addr;
2362 else
2363 addr = &((struct sockaddr_in6 *)
2364 (&lifr.lifr_addr))->sin6_addr;
2365
2366 /*
2367 * Find out what netmask the interface is going to be using.
2368 * If we just brought up an IPMP data address on an underlying
2369 * interface above, the address will have already migrated, so
2370 * the SIOCGLIFNETMASK won't be able to find it (but we need
2371 * to bring the address up to get the actual netmask). Just
2372 * omit printing the actual netmask in this corner-case.
2373 */
2374 if (ioctl(s, SIOCGLIFNETMASK, (caddr_t)&lifr) < 0 ||
2375 inet_ntop(af, addr, buffer, sizeof (buffer)) == NULL) {
2376 zerror(zlogp, B_FALSE, "WARNING: %s; using default.",
2377 nomatch);
2378 } else {
2379 zerror(zlogp, B_FALSE,
2380 "WARNING: %s: %s: %s; using default of %s.",
2381 lifr.lifr_name, nomatch, addrstr4, buffer);
2382 }
2383 }
2384
2385 /*
2386 * If a default router was specified for this interface
2387 * set the route now. Ignore if already set.
2388 */
2389 if (strlen(nwiftabptr->zone_nwif_defrouter) > 0) {
2390 int status;
2391 char *argv[7];
2392
2393 argv[0] = "route";
2394 argv[1] = "add";
2395 argv[2] = "-ifp";
2396 argv[3] = nwiftabptr->zone_nwif_physical;
2397 argv[4] = "default";
2398 argv[5] = nwiftabptr->zone_nwif_defrouter;
2399 argv[6] = NULL;
2400
2401 status = forkexec(zlogp, "/usr/sbin/route", argv);
2402 if (status != 0 && status != EEXIST)
2403 zerror(zlogp, B_FALSE, "Unable to set route for "
2404 "interface %s to %s\n",
2405 nwiftabptr->zone_nwif_physical,
2406 nwiftabptr->zone_nwif_defrouter);
2407 }
2408
2409 (void) close(s);
2410 return (Z_OK);
2411 bad:
2412 (void) ioctl(s, SIOCLIFREMOVEIF, (caddr_t)&lifr);
2413 (void) close(s);
2414 return (-1);
2415 }
2416
2417 /*
2418 * Sets up network interfaces based on information from the zone configuration.
2419 * IPv4 and IPv6 loopback interfaces are set up "for free", modeling the global
2420 * system.
2421 *
2422 * If anything goes wrong, we log a general error message, attempt to tear down
2423 * whatever we set up, and return an error.
2424 */
2425 static int
configure_shared_network_interfaces(zlog_t * zlogp)2426 configure_shared_network_interfaces(zlog_t *zlogp)
2427 {
2428 zone_dochandle_t handle;
2429 struct zone_nwiftab nwiftab, loopback_iftab;
2430 zoneid_t zoneid;
2431
2432 if ((zoneid = getzoneidbyname(zone_name)) == ZONE_ID_UNDEFINED) {
2433 zerror(zlogp, B_TRUE, "unable to get zoneid");
2434 return (-1);
2435 }
2436
2437 if ((handle = zonecfg_init_handle()) == NULL) {
2438 zerror(zlogp, B_TRUE, "getting zone configuration handle");
2439 return (-1);
2440 }
2441 if (zonecfg_get_snapshot_handle(zone_name, handle) != Z_OK) {
2442 zerror(zlogp, B_FALSE, "invalid configuration");
2443 zonecfg_fini_handle(handle);
2444 return (-1);
2445 }
2446 if (zonecfg_setnwifent(handle) == Z_OK) {
2447 for (;;) {
2448 if (zonecfg_getnwifent(handle, &nwiftab) != Z_OK)
2449 break;
2450 if (configure_one_interface(zlogp, zoneid, &nwiftab) !=
2451 Z_OK) {
2452 (void) zonecfg_endnwifent(handle);
2453 zonecfg_fini_handle(handle);
2454 return (-1);
2455 }
2456 }
2457 (void) zonecfg_endnwifent(handle);
2458 }
2459 zonecfg_fini_handle(handle);
2460 if (is_system_labeled()) {
2461 /*
2462 * Labeled zones share the loopback interface
2463 * so it is not plumbed for shared stack instances.
2464 */
2465 return (0);
2466 }
2467 (void) strlcpy(loopback_iftab.zone_nwif_physical, "lo0",
2468 sizeof (loopback_iftab.zone_nwif_physical));
2469 (void) strlcpy(loopback_iftab.zone_nwif_address, "127.0.0.1",
2470 sizeof (loopback_iftab.zone_nwif_address));
2471 loopback_iftab.zone_nwif_defrouter[0] = '\0';
2472 if (configure_one_interface(zlogp, zoneid, &loopback_iftab) != Z_OK)
2473 return (-1);
2474
2475 /* Always plumb up the IPv6 loopback interface. */
2476 (void) strlcpy(loopback_iftab.zone_nwif_address, "::1/128",
2477 sizeof (loopback_iftab.zone_nwif_address));
2478 if (configure_one_interface(zlogp, zoneid, &loopback_iftab) != Z_OK)
2479 return (-1);
2480 return (0);
2481 }
2482
2483 static void
zdlerror(zlog_t * zlogp,dladm_status_t err,const char * dlname,const char * str)2484 zdlerror(zlog_t *zlogp, dladm_status_t err, const char *dlname, const char *str)
2485 {
2486 char errmsg[DLADM_STRSIZE];
2487
2488 (void) dladm_status2str(err, errmsg);
2489 zerror(zlogp, B_FALSE, "%s '%s': %s", str, dlname, errmsg);
2490 }
2491
2492 static int
add_datalink(zlog_t * zlogp,char * zone_name,datalink_id_t linkid,char * dlname)2493 add_datalink(zlog_t *zlogp, char *zone_name, datalink_id_t linkid, char *dlname)
2494 {
2495 dladm_status_t err;
2496 boolean_t cpuset, poolset;
2497 char *poolp;
2498
2499 /* First check if it's in use by global zone. */
2500 if (zonecfg_ifname_exists(AF_INET, dlname) ||
2501 zonecfg_ifname_exists(AF_INET6, dlname)) {
2502 zerror(zlogp, B_FALSE, "WARNING: skipping network interface "
2503 "'%s' which is used in the global zone", dlname);
2504 return (-1);
2505 }
2506
2507 /* Set zoneid of this link. */
2508 err = dladm_set_linkprop(dld_handle, linkid, "zone", &zone_name, 1,
2509 DLADM_OPT_ACTIVE);
2510 if (err != DLADM_STATUS_OK) {
2511 zdlerror(zlogp, err, dlname,
2512 "WARNING: unable to add network interface");
2513 return (-1);
2514 }
2515
2516 /*
2517 * Set the pool of this link if the zone has a pool and
2518 * neither the cpus nor the pool datalink property is
2519 * already set.
2520 */
2521 err = dladm_linkprop_is_set(dld_handle, linkid, DLADM_PROP_VAL_CURRENT,
2522 "cpus", &cpuset);
2523 if (err != DLADM_STATUS_OK) {
2524 zdlerror(zlogp, err, dlname,
2525 "WARNING: unable to check if cpus link property is set");
2526 }
2527 err = dladm_linkprop_is_set(dld_handle, linkid, DLADM_PROP_VAL_CURRENT,
2528 "pool", &poolset);
2529 if (err != DLADM_STATUS_OK) {
2530 zdlerror(zlogp, err, dlname,
2531 "WARNING: unable to check if pool link property is set");
2532 }
2533
2534 if ((strlen(pool_name) != 0) && !cpuset && !poolset) {
2535 poolp = pool_name;
2536 err = dladm_set_linkprop(dld_handle, linkid, "pool",
2537 &poolp, 1, DLADM_OPT_ACTIVE);
2538 if (err != DLADM_STATUS_OK) {
2539 zerror(zlogp, B_FALSE, "WARNING: unable to set "
2540 "pool %s to datalink %s", pool_name, dlname);
2541 bzero(pool_name, sizeof (pool_name));
2542 }
2543 } else {
2544 bzero(pool_name, sizeof (pool_name));
2545 }
2546 return (0);
2547 }
2548
2549 static boolean_t
sockaddr_to_str(sa_family_t af,const struct sockaddr * sockaddr,char * straddr,size_t len)2550 sockaddr_to_str(sa_family_t af, const struct sockaddr *sockaddr,
2551 char *straddr, size_t len)
2552 {
2553 struct sockaddr_in *sin;
2554 struct sockaddr_in6 *sin6;
2555 const char *str = NULL;
2556
2557 if (af == AF_INET) {
2558 /* LINTED E_BAD_PTR_CAST_ALIGN */
2559 sin = SIN(sockaddr);
2560 str = inet_ntop(AF_INET, (void *)&sin->sin_addr, straddr, len);
2561 } else if (af == AF_INET6) {
2562 /* LINTED E_BAD_PTR_CAST_ALIGN */
2563 sin6 = SIN6(sockaddr);
2564 str = inet_ntop(AF_INET6, (void *)&sin6->sin6_addr, straddr,
2565 len);
2566 }
2567
2568 return (str != NULL);
2569 }
2570
2571 static int
ipv4_prefixlen(struct sockaddr_in * sin)2572 ipv4_prefixlen(struct sockaddr_in *sin)
2573 {
2574 struct sockaddr_in *m;
2575 struct sockaddr_storage mask;
2576
2577 m = SIN(&mask);
2578 m->sin_family = AF_INET;
2579 if (getnetmaskbyaddr(sin->sin_addr, &m->sin_addr) == 0) {
2580 return (mask2plen((struct sockaddr *)&mask));
2581 } else if (IN_CLASSA(htonl(sin->sin_addr.s_addr))) {
2582 return (8);
2583 } else if (IN_CLASSB(ntohl(sin->sin_addr.s_addr))) {
2584 return (16);
2585 } else if (IN_CLASSC(ntohl(sin->sin_addr.s_addr))) {
2586 return (24);
2587 }
2588 return (0);
2589 }
2590
2591 static int
zone_setattr_network(int type,zoneid_t zoneid,datalink_id_t linkid,void * buf,size_t bufsize)2592 zone_setattr_network(int type, zoneid_t zoneid, datalink_id_t linkid,
2593 void *buf, size_t bufsize)
2594 {
2595 zone_net_data_t *zndata;
2596 size_t znsize;
2597 int err;
2598
2599 znsize = sizeof (*zndata) + bufsize;
2600 zndata = calloc(1, znsize);
2601 if (zndata == NULL)
2602 return (ENOMEM);
2603 zndata->zn_type = type;
2604 zndata->zn_len = bufsize;
2605 zndata->zn_linkid = linkid;
2606 bcopy(buf, zndata->zn_val, zndata->zn_len);
2607 err = zone_setattr(zoneid, ZONE_ATTR_NETWORK, zndata, znsize);
2608 free(zndata);
2609 return (err);
2610 }
2611
2612 static int
add_net_for_linkid(zlog_t * zlogp,zoneid_t zoneid,zone_addr_list_t * start)2613 add_net_for_linkid(zlog_t *zlogp, zoneid_t zoneid, zone_addr_list_t *start)
2614 {
2615 struct lifreq lifr;
2616 char **astr, *address;
2617 dladm_status_t dlstatus;
2618 char *ip_nospoof = "ip-nospoof";
2619 int nnet, naddr, err = 0, j;
2620 size_t zlen, cpleft;
2621 zone_addr_list_t *ptr, *end;
2622 char tmp[INET6_ADDRSTRLEN], *maskstr;
2623 char *zaddr, *cp;
2624 struct in6_addr *routes = NULL;
2625 boolean_t is_set;
2626 datalink_id_t linkid;
2627
2628 assert(start != NULL);
2629 naddr = 0; /* number of addresses */
2630 nnet = 0; /* number of net resources */
2631 linkid = start->za_linkid;
2632 for (ptr = start; ptr != NULL && ptr->za_linkid == linkid;
2633 ptr = ptr->za_next) {
2634 nnet++;
2635 }
2636 end = ptr;
2637 zlen = nnet * (INET6_ADDRSTRLEN + 1);
2638 astr = calloc(1, nnet * sizeof (uintptr_t));
2639 zaddr = calloc(1, zlen);
2640 if (astr == NULL || zaddr == NULL) {
2641 err = ENOMEM;
2642 goto done;
2643 }
2644 cp = zaddr;
2645 cpleft = zlen;
2646 j = 0;
2647 for (ptr = start; ptr != end; ptr = ptr->za_next) {
2648 address = ptr->za_nwiftab.zone_nwif_allowed_address;
2649 if (address[0] == '\0')
2650 continue;
2651 (void) snprintf(tmp, sizeof (tmp), "%s", address);
2652 /*
2653 * Validate the data. zonecfg_valid_net_address() clobbers
2654 * the /<mask> in the address string.
2655 */
2656 if (zonecfg_valid_net_address(address, &lifr) != Z_OK) {
2657 zerror(zlogp, B_FALSE, "invalid address [%s]\n",
2658 address);
2659 err = EINVAL;
2660 goto done;
2661 }
2662 /*
2663 * convert any hostnames to numeric address strings.
2664 */
2665 if (!sockaddr_to_str(lifr.lifr_addr.ss_family,
2666 (const struct sockaddr *)&lifr.lifr_addr, cp, cpleft)) {
2667 err = EINVAL;
2668 goto done;
2669 }
2670 /*
2671 * make a copy of the numeric string for the data needed
2672 * by the "allowed-ips" datalink property.
2673 */
2674 astr[j] = strdup(cp);
2675 if (astr[j] == NULL) {
2676 err = ENOMEM;
2677 goto done;
2678 }
2679 j++;
2680 /*
2681 * compute the default netmask from the address, if necessary
2682 */
2683 if ((maskstr = strchr(tmp, '/')) == NULL) {
2684 int prefixlen;
2685
2686 if (lifr.lifr_addr.ss_family == AF_INET) {
2687 prefixlen = ipv4_prefixlen(
2688 SIN(&lifr.lifr_addr));
2689 } else {
2690 struct sockaddr_in6 *sin6;
2691
2692 sin6 = SIN6(&lifr.lifr_addr);
2693 if (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr))
2694 prefixlen = 10;
2695 else
2696 prefixlen = 64;
2697 }
2698 (void) snprintf(tmp, sizeof (tmp), "%d", prefixlen);
2699 maskstr = tmp;
2700 } else {
2701 maskstr++;
2702 }
2703 /* append the "/<netmask>" */
2704 (void) strlcat(cp, "/", cpleft);
2705 (void) strlcat(cp, maskstr, cpleft);
2706 (void) strlcat(cp, ",", cpleft);
2707 cp += strnlen(cp, zlen);
2708 cpleft = &zaddr[INET6_ADDRSTRLEN] - cp;
2709 }
2710 naddr = j; /* the actual number of addresses in the net resource */
2711 assert(naddr <= nnet);
2712
2713 /*
2714 * zonecfg has already verified that the defrouter property can only
2715 * be set if there is at least one address defined for the net resource.
2716 * If j is 0, there are no addresses defined, and therefore no routers
2717 * to configure, and we are done at that point.
2718 */
2719 if (j == 0)
2720 goto done;
2721
2722 /* over-write last ',' with '\0' */
2723 zaddr[strnlen(zaddr, zlen) - 1] = '\0';
2724
2725 /*
2726 * First make sure L3 protection is not already set on the link.
2727 */
2728 dlstatus = dladm_linkprop_is_set(dld_handle, linkid, DLADM_OPT_ACTIVE,
2729 "protection", &is_set);
2730 if (dlstatus != DLADM_STATUS_OK) {
2731 err = EINVAL;
2732 zerror(zlogp, B_FALSE, "unable to check if protection is set");
2733 goto done;
2734 }
2735 if (is_set) {
2736 err = EINVAL;
2737 zerror(zlogp, B_FALSE, "Protection is already set");
2738 goto done;
2739 }
2740 dlstatus = dladm_linkprop_is_set(dld_handle, linkid, DLADM_OPT_ACTIVE,
2741 "allowed-ips", &is_set);
2742 if (dlstatus != DLADM_STATUS_OK) {
2743 err = EINVAL;
2744 zerror(zlogp, B_FALSE, "unable to check if allowed-ips is set");
2745 goto done;
2746 }
2747 if (is_set) {
2748 zerror(zlogp, B_FALSE, "allowed-ips is already set");
2749 err = EINVAL;
2750 goto done;
2751 }
2752
2753 /*
2754 * Enable ip-nospoof for the link, and add address to the allowed-ips
2755 * list.
2756 */
2757 dlstatus = dladm_set_linkprop(dld_handle, linkid, "protection",
2758 &ip_nospoof, 1, DLADM_OPT_ACTIVE);
2759 if (dlstatus != DLADM_STATUS_OK) {
2760 zerror(zlogp, B_FALSE, "could not set protection\n");
2761 err = EINVAL;
2762 goto done;
2763 }
2764 dlstatus = dladm_set_linkprop(dld_handle, linkid, "allowed-ips",
2765 astr, naddr, DLADM_OPT_ACTIVE);
2766 if (dlstatus != DLADM_STATUS_OK) {
2767 zerror(zlogp, B_FALSE, "could not set allowed-ips\n");
2768 err = EINVAL;
2769 goto done;
2770 }
2771
2772 /* now set the address in the data-store */
2773 err = zone_setattr_network(ZONE_NETWORK_ADDRESS, zoneid, linkid,
2774 zaddr, strnlen(zaddr, zlen) + 1);
2775 if (err != 0)
2776 goto done;
2777
2778 /*
2779 * add the defaultrouters
2780 */
2781 routes = calloc(1, nnet * sizeof (*routes));
2782 j = 0;
2783 for (ptr = start; ptr != end; ptr = ptr->za_next) {
2784 address = ptr->za_nwiftab.zone_nwif_defrouter;
2785 if (address[0] == '\0')
2786 continue;
2787 if (strchr(address, '/') == NULL && strchr(address, ':') != 0) {
2788 /*
2789 * zonecfg_valid_net_address() expects numeric IPv6
2790 * addresses to have a CIDR format netmask.
2791 */
2792 (void) snprintf(tmp, sizeof (tmp), "/%d", V6_ADDR_LEN);
2793 (void) strlcat(address, tmp, INET6_ADDRSTRLEN);
2794 }
2795 if (zonecfg_valid_net_address(address, &lifr) != Z_OK) {
2796 zerror(zlogp, B_FALSE,
2797 "invalid router [%s]\n", address);
2798 err = EINVAL;
2799 goto done;
2800 }
2801 if (lifr.lifr_addr.ss_family == AF_INET6) {
2802 routes[j] = SIN6(&lifr.lifr_addr)->sin6_addr;
2803 } else {
2804 IN6_INADDR_TO_V4MAPPED(&SIN(&lifr.lifr_addr)->sin_addr,
2805 &routes[j]);
2806 }
2807 j++;
2808 }
2809 assert(j <= nnet);
2810 if (j > 0) {
2811 err = zone_setattr_network(ZONE_NETWORK_DEFROUTER, zoneid,
2812 linkid, routes, j * sizeof (*routes));
2813 }
2814 done:
2815 free(routes);
2816 for (j = 0; j < naddr; j++)
2817 free(astr[j]);
2818 free(astr);
2819 free(zaddr);
2820 return (err);
2821
2822 }
2823
2824 static int
add_net(zlog_t * zlogp,zoneid_t zoneid,zone_addr_list_t * zalist)2825 add_net(zlog_t *zlogp, zoneid_t zoneid, zone_addr_list_t *zalist)
2826 {
2827 zone_addr_list_t *ptr;
2828 datalink_id_t linkid;
2829 int err;
2830
2831 if (zalist == NULL)
2832 return (0);
2833
2834 linkid = zalist->za_linkid;
2835
2836 err = add_net_for_linkid(zlogp, zoneid, zalist);
2837 if (err != 0)
2838 return (err);
2839
2840 for (ptr = zalist; ptr != NULL; ptr = ptr->za_next) {
2841 if (ptr->za_linkid == linkid)
2842 continue;
2843 linkid = ptr->za_linkid;
2844 err = add_net_for_linkid(zlogp, zoneid, ptr);
2845 if (err != 0)
2846 return (err);
2847 }
2848 return (0);
2849 }
2850
2851 /*
2852 * Add "new" to the list of network interfaces to be configured by
2853 * add_net on zone boot in "old". The list of interfaces in "old" is
2854 * sorted by datalink_id_t, with interfaces sorted FIFO for a given
2855 * datalink_id_t.
2856 *
2857 * Returns the merged list of IP interfaces containing "old" and "new"
2858 */
2859 static zone_addr_list_t *
add_ip_interface(zone_addr_list_t * old,zone_addr_list_t * new)2860 add_ip_interface(zone_addr_list_t *old, zone_addr_list_t *new)
2861 {
2862 zone_addr_list_t *ptr, *next;
2863 datalink_id_t linkid = new->za_linkid;
2864
2865 assert(old != new);
2866
2867 if (old == NULL)
2868 return (new);
2869 for (ptr = old; ptr != NULL; ptr = ptr->za_next) {
2870 if (ptr->za_linkid == linkid)
2871 break;
2872 }
2873 if (ptr == NULL) {
2874 /* linkid does not already exist, add to the beginning */
2875 new->za_next = old;
2876 return (new);
2877 }
2878 /*
2879 * adding to the middle of the list; ptr points at the first
2880 * occurrence of linkid. Find the last occurrence.
2881 */
2882 while ((next = ptr->za_next) != NULL) {
2883 if (next->za_linkid != linkid)
2884 break;
2885 ptr = next;
2886 }
2887 /* insert new after ptr */
2888 new->za_next = next;
2889 ptr->za_next = new;
2890 return (old);
2891 }
2892
2893 void
free_ip_interface(zone_addr_list_t * zalist)2894 free_ip_interface(zone_addr_list_t *zalist)
2895 {
2896 zone_addr_list_t *ptr, *new;
2897
2898 for (ptr = zalist; ptr != NULL; ) {
2899 new = ptr;
2900 ptr = ptr->za_next;
2901 free(new);
2902 }
2903 }
2904
2905 /*
2906 * Add the kernel access control information for the interface names.
2907 * If anything goes wrong, we log a general error message, attempt to tear down
2908 * whatever we set up, and return an error.
2909 */
2910 static int
configure_exclusive_network_interfaces(zlog_t * zlogp,zoneid_t zoneid)2911 configure_exclusive_network_interfaces(zlog_t *zlogp, zoneid_t zoneid)
2912 {
2913 zone_dochandle_t handle;
2914 struct zone_nwiftab nwiftab;
2915 char rootpath[MAXPATHLEN];
2916 char path[MAXPATHLEN];
2917 datalink_id_t linkid;
2918 di_prof_t prof = NULL;
2919 boolean_t added = B_FALSE;
2920 zone_addr_list_t *zalist = NULL, *new;
2921
2922 if ((handle = zonecfg_init_handle()) == NULL) {
2923 zerror(zlogp, B_TRUE, "getting zone configuration handle");
2924 return (-1);
2925 }
2926 if (zonecfg_get_snapshot_handle(zone_name, handle) != Z_OK) {
2927 zerror(zlogp, B_FALSE, "invalid configuration");
2928 zonecfg_fini_handle(handle);
2929 return (-1);
2930 }
2931
2932 if (zonecfg_setnwifent(handle) != Z_OK) {
2933 zonecfg_fini_handle(handle);
2934 return (0);
2935 }
2936
2937 for (;;) {
2938 if (zonecfg_getnwifent(handle, &nwiftab) != Z_OK)
2939 break;
2940
2941 if (prof == NULL) {
2942 if (zone_get_devroot(zone_name, rootpath,
2943 sizeof (rootpath)) != Z_OK) {
2944 (void) zonecfg_endnwifent(handle);
2945 zonecfg_fini_handle(handle);
2946 zerror(zlogp, B_TRUE,
2947 "unable to determine dev root");
2948 return (-1);
2949 }
2950 (void) snprintf(path, sizeof (path), "%s%s", rootpath,
2951 "/dev");
2952 if (di_prof_init(path, &prof) != 0) {
2953 (void) zonecfg_endnwifent(handle);
2954 zonecfg_fini_handle(handle);
2955 zerror(zlogp, B_TRUE,
2956 "failed to initialize profile");
2957 return (-1);
2958 }
2959 }
2960
2961 /*
2962 * Create the /dev entry for backward compatibility.
2963 * Only create the /dev entry if it's not in use.
2964 * Note that the zone still boots when the assigned
2965 * interface is inaccessible, used by others, etc.
2966 * Also, when vanity naming is used, some interface do
2967 * do not have corresponding /dev node names (for example,
2968 * vanity named aggregations). The /dev entry is not
2969 * created in that case. The /dev/net entry is always
2970 * accessible.
2971 */
2972 if (dladm_name2info(dld_handle, nwiftab.zone_nwif_physical,
2973 &linkid, NULL, NULL, NULL) == DLADM_STATUS_OK &&
2974 add_datalink(zlogp, zone_name, linkid,
2975 nwiftab.zone_nwif_physical) == 0) {
2976 added = B_TRUE;
2977 } else {
2978 (void) zonecfg_endnwifent(handle);
2979 zonecfg_fini_handle(handle);
2980 zerror(zlogp, B_TRUE, "failed to add network device");
2981 return (-1);
2982 }
2983 /* set up the new IP interface, and add them all later */
2984 new = malloc(sizeof (*new));
2985 if (new == NULL) {
2986 zerror(zlogp, B_TRUE, "no memory for %s",
2987 nwiftab.zone_nwif_physical);
2988 zonecfg_fini_handle(handle);
2989 free_ip_interface(zalist);
2990 }
2991 bzero(new, sizeof (*new));
2992 new->za_nwiftab = nwiftab;
2993 new->za_linkid = linkid;
2994 zalist = add_ip_interface(zalist, new);
2995 }
2996 if (zalist != NULL) {
2997 if ((errno = add_net(zlogp, zoneid, zalist)) != 0) {
2998 (void) zonecfg_endnwifent(handle);
2999 zonecfg_fini_handle(handle);
3000 zerror(zlogp, B_TRUE, "failed to add address");
3001 free_ip_interface(zalist);
3002 return (-1);
3003 }
3004 free_ip_interface(zalist);
3005 }
3006 (void) zonecfg_endnwifent(handle);
3007 zonecfg_fini_handle(handle);
3008
3009 if (prof != NULL && added) {
3010 if (di_prof_commit(prof) != 0) {
3011 zerror(zlogp, B_TRUE, "failed to commit profile");
3012 return (-1);
3013 }
3014 }
3015 if (prof != NULL)
3016 di_prof_fini(prof);
3017
3018 return (0);
3019 }
3020
3021 static int
remove_datalink_pool(zlog_t * zlogp,zoneid_t zoneid)3022 remove_datalink_pool(zlog_t *zlogp, zoneid_t zoneid)
3023 {
3024 ushort_t flags;
3025 zone_iptype_t iptype;
3026 int i, dlnum = 0;
3027 datalink_id_t *dllink, *dllinks = NULL;
3028 dladm_status_t err;
3029
3030 if (strlen(pool_name) == 0)
3031 return (0);
3032
3033 if (zone_getattr(zoneid, ZONE_ATTR_FLAGS, &flags,
3034 sizeof (flags)) < 0) {
3035 if (vplat_get_iptype(zlogp, &iptype) < 0) {
3036 zerror(zlogp, B_FALSE, "unable to determine ip-type");
3037 return (-1);
3038 }
3039 } else {
3040 if (flags & ZF_NET_EXCL)
3041 iptype = ZS_EXCLUSIVE;
3042 else
3043 iptype = ZS_SHARED;
3044 }
3045
3046 if (iptype == ZS_EXCLUSIVE) {
3047 /*
3048 * Get the datalink count and for each datalink,
3049 * attempt to clear the pool property and clear
3050 * the pool_name.
3051 */
3052 if (zone_list_datalink(zoneid, &dlnum, NULL) != 0) {
3053 zerror(zlogp, B_TRUE, "unable to count network "
3054 "interfaces");
3055 return (-1);
3056 }
3057
3058 if (dlnum == 0)
3059 return (0);
3060
3061 if ((dllinks = malloc(dlnum * sizeof (datalink_id_t)))
3062 == NULL) {
3063 zerror(zlogp, B_TRUE, "memory allocation failed");
3064 return (-1);
3065 }
3066 if (zone_list_datalink(zoneid, &dlnum, dllinks) != 0) {
3067 zerror(zlogp, B_TRUE, "unable to list network "
3068 "interfaces");
3069 return (-1);
3070 }
3071
3072 bzero(pool_name, sizeof (pool_name));
3073 for (i = 0, dllink = dllinks; i < dlnum; i++, dllink++) {
3074 err = dladm_set_linkprop(dld_handle, *dllink, "pool",
3075 NULL, 0, DLADM_OPT_ACTIVE);
3076 if (err != DLADM_STATUS_OK) {
3077 zerror(zlogp, B_TRUE,
3078 "WARNING: unable to clear pool");
3079 }
3080 }
3081 free(dllinks);
3082 }
3083 return (0);
3084 }
3085
3086 static int
remove_datalink_protect(zlog_t * zlogp,zoneid_t zoneid)3087 remove_datalink_protect(zlog_t *zlogp, zoneid_t zoneid)
3088 {
3089 ushort_t flags;
3090 zone_iptype_t iptype;
3091 int i, dlnum = 0;
3092 dladm_status_t dlstatus;
3093 datalink_id_t *dllink, *dllinks = NULL;
3094
3095 if (zone_getattr(zoneid, ZONE_ATTR_FLAGS, &flags,
3096 sizeof (flags)) < 0) {
3097 if (vplat_get_iptype(zlogp, &iptype) < 0) {
3098 zerror(zlogp, B_FALSE, "unable to determine ip-type");
3099 return (-1);
3100 }
3101 } else {
3102 if (flags & ZF_NET_EXCL)
3103 iptype = ZS_EXCLUSIVE;
3104 else
3105 iptype = ZS_SHARED;
3106 }
3107
3108 if (iptype != ZS_EXCLUSIVE)
3109 return (0);
3110
3111 /*
3112 * Get the datalink count and for each datalink,
3113 * attempt to clear the pool property and clear
3114 * the pool_name.
3115 */
3116 if (zone_list_datalink(zoneid, &dlnum, NULL) != 0) {
3117 zerror(zlogp, B_TRUE, "unable to count network interfaces");
3118 return (-1);
3119 }
3120
3121 if (dlnum == 0)
3122 return (0);
3123
3124 if ((dllinks = malloc(dlnum * sizeof (datalink_id_t))) == NULL) {
3125 zerror(zlogp, B_TRUE, "memory allocation failed");
3126 return (-1);
3127 }
3128 if (zone_list_datalink(zoneid, &dlnum, dllinks) != 0) {
3129 zerror(zlogp, B_TRUE, "unable to list network interfaces");
3130 free(dllinks);
3131 return (-1);
3132 }
3133
3134 for (i = 0, dllink = dllinks; i < dlnum; i++, dllink++) {
3135 char dlerr[DLADM_STRSIZE];
3136
3137 dlstatus = dladm_set_linkprop(dld_handle, *dllink,
3138 "protection", NULL, 0, DLADM_OPT_ACTIVE);
3139 if (dlstatus == DLADM_STATUS_NOTFOUND) {
3140 /* datalink does not belong to the GZ */
3141 continue;
3142 }
3143 if (dlstatus != DLADM_STATUS_OK) {
3144 zerror(zlogp, B_FALSE,
3145 dladm_status2str(dlstatus, dlerr));
3146 free(dllinks);
3147 return (-1);
3148 }
3149 dlstatus = dladm_set_linkprop(dld_handle, *dllink,
3150 "allowed-ips", NULL, 0, DLADM_OPT_ACTIVE);
3151 if (dlstatus != DLADM_STATUS_OK) {
3152 zerror(zlogp, B_FALSE,
3153 dladm_status2str(dlstatus, dlerr));
3154 free(dllinks);
3155 return (-1);
3156 }
3157 }
3158 free(dllinks);
3159 return (0);
3160 }
3161
3162 static int
unconfigure_exclusive_network_interfaces(zlog_t * zlogp,zoneid_t zoneid)3163 unconfigure_exclusive_network_interfaces(zlog_t *zlogp, zoneid_t zoneid)
3164 {
3165 int dlnum = 0;
3166
3167 /*
3168 * The kernel shutdown callback for the dls module should have removed
3169 * all datalinks from this zone. If any remain, then there's a
3170 * problem.
3171 */
3172 if (zone_list_datalink(zoneid, &dlnum, NULL) != 0) {
3173 zerror(zlogp, B_TRUE, "unable to list network interfaces");
3174 return (-1);
3175 }
3176 if (dlnum != 0) {
3177 zerror(zlogp, B_FALSE,
3178 "datalinks remain in zone after shutdown");
3179 return (-1);
3180 }
3181 return (0);
3182 }
3183
3184 static int
tcp_abort_conn(zlog_t * zlogp,zoneid_t zoneid,const struct sockaddr_storage * local,const struct sockaddr_storage * remote)3185 tcp_abort_conn(zlog_t *zlogp, zoneid_t zoneid,
3186 const struct sockaddr_storage *local, const struct sockaddr_storage *remote)
3187 {
3188 int fd;
3189 struct strioctl ioc;
3190 tcp_ioc_abort_conn_t conn;
3191 int error;
3192
3193 conn.ac_local = *local;
3194 conn.ac_remote = *remote;
3195 conn.ac_start = TCPS_SYN_SENT;
3196 conn.ac_end = TCPS_TIME_WAIT;
3197 conn.ac_zoneid = zoneid;
3198
3199 ioc.ic_cmd = TCP_IOC_ABORT_CONN;
3200 ioc.ic_timout = -1; /* infinite timeout */
3201 ioc.ic_len = sizeof (conn);
3202 ioc.ic_dp = (char *)&conn;
3203
3204 if ((fd = open("/dev/tcp", O_RDONLY)) < 0) {
3205 zerror(zlogp, B_TRUE, "unable to open %s", "/dev/tcp");
3206 return (-1);
3207 }
3208
3209 error = ioctl(fd, I_STR, &ioc);
3210 (void) close(fd);
3211 if (error == 0 || errno == ENOENT) /* ENOENT is not an error */
3212 return (0);
3213 return (-1);
3214 }
3215
3216 static int
tcp_abort_connections(zlog_t * zlogp,zoneid_t zoneid)3217 tcp_abort_connections(zlog_t *zlogp, zoneid_t zoneid)
3218 {
3219 struct sockaddr_storage l, r;
3220 struct sockaddr_in *local, *remote;
3221 struct sockaddr_in6 *local6, *remote6;
3222 int error;
3223
3224 /*
3225 * Abort IPv4 connections.
3226 */
3227 bzero(&l, sizeof (*local));
3228 local = (struct sockaddr_in *)&l;
3229 local->sin_family = AF_INET;
3230 local->sin_addr.s_addr = INADDR_ANY;
3231 local->sin_port = 0;
3232
3233 bzero(&r, sizeof (*remote));
3234 remote = (struct sockaddr_in *)&r;
3235 remote->sin_family = AF_INET;
3236 remote->sin_addr.s_addr = INADDR_ANY;
3237 remote->sin_port = 0;
3238
3239 if ((error = tcp_abort_conn(zlogp, zoneid, &l, &r)) != 0)
3240 return (error);
3241
3242 /*
3243 * Abort IPv6 connections.
3244 */
3245 bzero(&l, sizeof (*local6));
3246 local6 = (struct sockaddr_in6 *)&l;
3247 local6->sin6_family = AF_INET6;
3248 local6->sin6_port = 0;
3249 local6->sin6_addr = in6addr_any;
3250
3251 bzero(&r, sizeof (*remote6));
3252 remote6 = (struct sockaddr_in6 *)&r;
3253 remote6->sin6_family = AF_INET6;
3254 remote6->sin6_port = 0;
3255 remote6->sin6_addr = in6addr_any;
3256
3257 if ((error = tcp_abort_conn(zlogp, zoneid, &l, &r)) != 0)
3258 return (error);
3259 return (0);
3260 }
3261
3262 static int
get_privset(zlog_t * zlogp,priv_set_t * privs,zone_mnt_t mount_cmd)3263 get_privset(zlog_t *zlogp, priv_set_t *privs, zone_mnt_t mount_cmd)
3264 {
3265 int error = -1;
3266 zone_dochandle_t handle;
3267 char *privname = NULL;
3268
3269 if ((handle = zonecfg_init_handle()) == NULL) {
3270 zerror(zlogp, B_TRUE, "getting zone configuration handle");
3271 return (-1);
3272 }
3273 if (zonecfg_get_snapshot_handle(zone_name, handle) != Z_OK) {
3274 zerror(zlogp, B_FALSE, "invalid configuration");
3275 zonecfg_fini_handle(handle);
3276 return (-1);
3277 }
3278
3279 if (ALT_MOUNT(mount_cmd)) {
3280 zone_iptype_t iptype;
3281 const char *curr_iptype;
3282
3283 if (zonecfg_get_iptype(handle, &iptype) != Z_OK) {
3284 zerror(zlogp, B_TRUE, "unable to determine ip-type");
3285 zonecfg_fini_handle(handle);
3286 return (-1);
3287 }
3288
3289 switch (iptype) {
3290 case ZS_SHARED:
3291 curr_iptype = "shared";
3292 break;
3293 case ZS_EXCLUSIVE:
3294 curr_iptype = "exclusive";
3295 break;
3296 default:
3297 zerror(zlogp, B_FALSE, "bad ip-type");
3298 zonecfg_fini_handle(handle);
3299 return (-1);
3300 }
3301
3302 if (zonecfg_default_privset(privs, curr_iptype) == Z_OK) {
3303 zonecfg_fini_handle(handle);
3304 return (0);
3305 }
3306 zerror(zlogp, B_FALSE,
3307 "failed to determine the zone's default privilege set");
3308 zonecfg_fini_handle(handle);
3309 return (-1);
3310 }
3311
3312 switch (zonecfg_get_privset(handle, privs, &privname)) {
3313 case Z_OK:
3314 error = 0;
3315 break;
3316 case Z_PRIV_PROHIBITED:
3317 zerror(zlogp, B_FALSE, "privilege \"%s\" is not permitted "
3318 "within the zone's privilege set", privname);
3319 break;
3320 case Z_PRIV_REQUIRED:
3321 zerror(zlogp, B_FALSE, "required privilege \"%s\" is missing "
3322 "from the zone's privilege set", privname);
3323 break;
3324 case Z_PRIV_UNKNOWN:
3325 zerror(zlogp, B_FALSE, "unknown privilege \"%s\" specified "
3326 "in the zone's privilege set", privname);
3327 break;
3328 default:
3329 zerror(zlogp, B_FALSE, "failed to determine the zone's "
3330 "privilege set");
3331 break;
3332 }
3333
3334 free(privname);
3335 zonecfg_fini_handle(handle);
3336 return (error);
3337 }
3338
3339 static int
get_rctls(zlog_t * zlogp,char ** bufp,size_t * bufsizep)3340 get_rctls(zlog_t *zlogp, char **bufp, size_t *bufsizep)
3341 {
3342 nvlist_t *nvl = NULL;
3343 char *nvl_packed = NULL;
3344 size_t nvl_size = 0;
3345 nvlist_t **nvlv = NULL;
3346 int rctlcount = 0;
3347 int error = -1;
3348 zone_dochandle_t handle;
3349 struct zone_rctltab rctltab;
3350 rctlblk_t *rctlblk = NULL;
3351 uint64_t maxlwps;
3352 uint64_t maxprocs;
3353 int rproc, rlwp;
3354
3355 *bufp = NULL;
3356 *bufsizep = 0;
3357
3358 if ((handle = zonecfg_init_handle()) == NULL) {
3359 zerror(zlogp, B_TRUE, "getting zone configuration handle");
3360 return (-1);
3361 }
3362 if (zonecfg_get_snapshot_handle(zone_name, handle) != Z_OK) {
3363 zerror(zlogp, B_FALSE, "invalid configuration");
3364 zonecfg_fini_handle(handle);
3365 return (-1);
3366 }
3367
3368 rctltab.zone_rctl_valptr = NULL;
3369 if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, 0) != 0) {
3370 zerror(zlogp, B_TRUE, "%s failed", "nvlist_alloc");
3371 goto out;
3372 }
3373
3374 /*
3375 * Allow the administrator to control both the maximum number of
3376 * process table slots, and the maximum number of lwps, with a single
3377 * max-processes or max-lwps property. If only the max-processes
3378 * property is set, we add a max-lwps property with a limit derived
3379 * from max-processes. If only the max-lwps property is set, we add a
3380 * max-processes property with the same limit as max-lwps.
3381 */
3382 rproc = zonecfg_get_aliased_rctl(handle, ALIAS_MAXPROCS, &maxprocs);
3383 rlwp = zonecfg_get_aliased_rctl(handle, ALIAS_MAXLWPS, &maxlwps);
3384 if (rproc == Z_OK && rlwp == Z_NO_ENTRY) {
3385 if (zonecfg_set_aliased_rctl(handle, ALIAS_MAXLWPS,
3386 maxprocs * LWPS_PER_PROCESS) != Z_OK) {
3387 zerror(zlogp, B_FALSE, "unable to set max-lwps alias");
3388 goto out;
3389 }
3390 } else if (rlwp == Z_OK && rproc == Z_NO_ENTRY) {
3391 /* no scaling for max-proc value */
3392 if (zonecfg_set_aliased_rctl(handle, ALIAS_MAXPROCS,
3393 maxlwps) != Z_OK) {
3394 zerror(zlogp, B_FALSE,
3395 "unable to set max-processes alias");
3396 goto out;
3397 }
3398 }
3399
3400 if (zonecfg_setrctlent(handle) != Z_OK) {
3401 zerror(zlogp, B_FALSE, "%s failed", "zonecfg_setrctlent");
3402 goto out;
3403 }
3404
3405 if ((rctlblk = malloc(rctlblk_size())) == NULL) {
3406 zerror(zlogp, B_TRUE, "memory allocation failed");
3407 goto out;
3408 }
3409 while (zonecfg_getrctlent(handle, &rctltab) == Z_OK) {
3410 struct zone_rctlvaltab *rctlval;
3411 uint_t i, count;
3412 const char *name = rctltab.zone_rctl_name;
3413
3414 /* zoneadm should have already warned about unknown rctls. */
3415 if (!zonecfg_is_rctl(name)) {
3416 zonecfg_free_rctl_value_list(rctltab.zone_rctl_valptr);
3417 rctltab.zone_rctl_valptr = NULL;
3418 continue;
3419 }
3420 count = 0;
3421 for (rctlval = rctltab.zone_rctl_valptr; rctlval != NULL;
3422 rctlval = rctlval->zone_rctlval_next) {
3423 count++;
3424 }
3425 if (count == 0) { /* ignore */
3426 continue; /* Nothing to free */
3427 }
3428 if ((nvlv = malloc(sizeof (*nvlv) * count)) == NULL)
3429 goto out;
3430 i = 0;
3431 for (