1 /* 2 * Copyright (c) 1980, 1989, 1993, 1994 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 3. All advertising materials mentioning features or use of this software 14 * must display the following acknowledgement: 15 * This product includes software developed by the University of 16 * California, Berkeley and its contributors. 17 * 4. Neither the name of the University nor the names of its contributors 18 * may be used to endorse or promote products derived from this software 19 * without specific prior written permission. 20 * 21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31 * SUCH DAMAGE. 32 */ 33 34 #ifndef lint 35 static char copyright[] = 36 "@(#) Copyright (c) 1980, 1989, 1993, 1994\n\ 37 The Regents of the University of California. All rights reserved.\n"; 38 #endif /* not lint */ 39 40 #ifndef lint 41 static char sccsid[] = "@(#)mount.c 8.19 (Berkeley) 4/19/94"; 42 #endif /* not lint */ 43 44 #include <sys/param.h> 45 #include <sys/mount.h> 46 #include <sys/wait.h> 47 48 #include <err.h> 49 #include <errno.h> 50 #include <fstab.h> 51 #include <signal.h> 52 #include <stdio.h> 53 #include <stdlib.h> 54 #include <string.h> 55 #include <unistd.h> 56 57 #include "pathnames.h" 58 59 int debug, verbose, skipvfs; 60 61 int badvfsname __P((const char *, const char **)); 62 int badvfstype __P((int, const char **)); 63 char *catopt __P((char *, const char *)); 64 struct statfs 65 *getmntpt __P((const char *)); 66 const char 67 **makevfslist __P((char *)); 68 void mangle __P((char *, int *, const char **)); 69 int mountfs __P((const char *, const char *, const char *, 70 int, const char *, const char *)); 71 void prmount __P((const char *, const char *, int)); 72 void usage __P((void)); 73 74 /* From mount_ufs.c. */ 75 int mount_ufs __P((int, char * const *)); 76 77 /* Map from mount otions to printable formats. */ 78 static struct opt { 79 int o_opt; 80 const char *o_name; 81 } optnames[] = { 82 { MNT_ASYNC, "asynchronous" }, 83 { MNT_EXPORTED, "NFS exported" }, 84 { MNT_LOCAL, "local" }, 85 { MNT_NODEV, "nodev" }, 86 { MNT_NOEXEC, "noexec" }, 87 { MNT_NOSUID, "nosuid" }, 88 { MNT_QUOTA, "with quotas" }, 89 { MNT_RDONLY, "read-only" }, 90 { MNT_SYNCHRONOUS, "synchronous" }, 91 { MNT_UNION, "union" }, 92 { MNT_USER, "user mount" }, 93 { NULL } 94 }; 95 96 int 97 main(argc, argv) 98 int argc; 99 char * const argv[]; 100 { 101 const char *mntonname, **vfslist, *vfstype; 102 struct fstab *fs; 103 struct statfs *mntbuf; 104 FILE *mountdfp; 105 pid_t pid; 106 int all, ch, i, init_flags, mntsize, rval; 107 char *options; 108 109 all = init_flags = 0; 110 options = NULL; 111 vfslist = NULL; 112 vfstype = "ufs"; 113 while ((ch = getopt(argc, argv, "adfo:rwt:uv")) != EOF) 114 switch (ch) { 115 case 'a': 116 all = 1; 117 break; 118 case 'd': 119 debug = 1; 120 break; 121 case 'f': 122 init_flags |= MNT_FORCE; 123 break; 124 case 'o': 125 if (*optarg) 126 options = catopt(options, optarg); 127 break; 128 case 'r': 129 init_flags |= MNT_RDONLY; 130 break; 131 case 't': 132 if (vfslist != NULL) 133 errx(1, "only one -t option may be specified."); 134 vfslist = makevfslist(optarg); 135 vfstype = optarg; 136 break; 137 case 'u': 138 init_flags |= MNT_UPDATE; 139 break; 140 case 'v': 141 verbose = 1; 142 break; 143 case 'w': 144 init_flags &= ~MNT_RDONLY; 145 break; 146 case '?': 147 default: 148 usage(); 149 /* NOTREACHED */ 150 } 151 argc -= optind; 152 argv += optind; 153 154 #define BADTYPE(type) \ 155 (strcmp(type, FSTAB_RO) && \ 156 strcmp(type, FSTAB_RW) && strcmp(type, FSTAB_RQ)) 157 158 rval = 0; 159 switch (argc) { 160 case 0: 161 if (all) 162 while ((fs = getfsent()) != NULL) { 163 if (BADTYPE(fs->fs_type)) 164 continue; 165 if (badvfsname(fs->fs_vfstype, vfslist)) 166 continue; 167 if (mountfs(fs->fs_vfstype, fs->fs_spec, 168 fs->fs_file, init_flags, options, 169 fs->fs_mntops)) 170 rval = 1; 171 } 172 else { 173 if ((mntsize = getmntinfo(&mntbuf, MNT_NOWAIT)) == 0) 174 err(1, "getmntinfo"); 175 for (i = 0; i < mntsize; i++) { 176 if (badvfstype(mntbuf[i].f_type, vfslist)) 177 continue; 178 prmount(mntbuf[i].f_mntfromname, 179 mntbuf[i].f_mntonname, mntbuf[i].f_flags); 180 } 181 } 182 exit(rval); 183 case 1: 184 if (vfslist != NULL) 185 usage(); 186 187 if (init_flags & MNT_UPDATE) { 188 if ((mntbuf = getmntpt(*argv)) == NULL) 189 errx(1, 190 "unknown special file or file system %s.", 191 *argv); 192 if ((fs = getfsfile(mntbuf->f_mntonname)) == NULL) 193 errx(1, "can't find fstab entry for %s.", 194 *argv); 195 /* If it's an update, ignore the fstab file options. */ 196 fs->fs_mntops = NULL; 197 mntonname = mntbuf->f_mntonname; 198 } else { 199 if ((fs = getfsfile(*argv)) == NULL && 200 (fs = getfsspec(*argv)) == NULL) 201 errx(1, 202 "%s: unknown special file or file system.", 203 *argv); 204 if (BADTYPE(fs->fs_type)) 205 errx(1, "%s has unknown file system type.", 206 *argv); 207 mntonname = fs->fs_file; 208 } 209 rval = mountfs(fs->fs_vfstype, fs->fs_spec, 210 mntonname, init_flags, options, fs->fs_mntops); 211 break; 212 case 2: 213 /* 214 * If -t flag has not been specified, and spec contains either 215 * a ':' or a '@' then assume that an NFS filesystem is being 216 * specified ala Sun. 217 */ 218 if (vfslist == NULL && strpbrk(argv[0], ":@") != NULL) 219 vfstype = "nfs"; 220 rval = mountfs(vfstype, 221 argv[0], argv[1], init_flags, options, NULL); 222 break; 223 default: 224 usage(); 225 /* NOTREACHED */ 226 } 227 228 /* 229 * If the mount was successfully, and done by root, tell mountd the 230 * good news. Pid checks are probably unnecessary, but don't hurt. 231 */ 232 if (rval == 0 && getuid() == 0 && 233 (mountdfp = fopen(_PATH_MOUNTDPID, "r")) != NULL) { 234 if (fscanf(mountdfp, "%ld", &pid) == 1 && 235 pid > 0 && kill(pid, SIGHUP) == -1 && errno != ESRCH) 236 err(1, "signal mountd"); 237 (void)fclose(mountdfp); 238 } 239 240 exit(rval); 241 } 242 243 int 244 mountfs(vfstype, spec, name, flags, options, mntopts) 245 const char *vfstype, *spec, *name, *options, *mntopts; 246 int flags; 247 { 248 /* List of directories containing mount_xxx subcommands. */ 249 static const char *edirs[] = { 250 _PATH_SBIN, 251 _PATH_USRSBIN, 252 NULL 253 }; 254 const char *argv[100], **edir; 255 struct statfs sf; 256 pid_t pid; 257 int argc, i, status; 258 char *optbuf, execname[MAXPATHLEN + 1], mntpath[MAXPATHLEN]; 259 260 if (realpath(name, mntpath) == NULL) { 261 warn("%s", mntpath); 262 return (1); 263 } 264 if (mntopts == NULL) 265 mntopts = ""; 266 267 name = mntpath; 268 269 if (options == NULL) { 270 if (*mntopts == '\0') 271 options = "rw"; 272 else 273 options = mntopts; 274 mntopts = ""; 275 } 276 optbuf = catopt(strdup(mntopts), options); 277 278 if (strcmp(name, "/") == 0) 279 flags |= MNT_UPDATE; 280 if (flags & MNT_FORCE) 281 optbuf = catopt(optbuf, "force"); 282 if (flags & MNT_RDONLY) 283 optbuf = catopt(optbuf, "ro"); 284 /* 285 * XXX 286 * The mount_mfs (newfs) command uses -o to select the 287 * optimisation mode. We don't pass the default "-o rw" 288 * for that reason. 289 */ 290 if (flags & MNT_UPDATE) 291 optbuf = catopt(optbuf, "update"); 292 293 argc = 0; 294 argv[argc++] = vfstype; 295 mangle(optbuf, &argc, argv); 296 argv[argc++] = spec; 297 argv[argc++] = name; 298 argv[argc] = NULL; 299 300 if (debug) { 301 (void)printf("exec: mount_%s", vfstype); 302 for (i = 1; i < argc; i++) 303 (void)printf(" %s", argv[i]); 304 (void)printf("\n"); 305 return (0); 306 } 307 308 switch (pid = vfork()) { 309 case -1: /* Error. */ 310 warn("vfork"); 311 free(optbuf); 312 return (1); 313 case 0: /* Child. */ 314 if (strcmp(vfstype, "ufs") == 0) 315 exit(mount_ufs(argc, (char * const *) argv)); 316 317 /* Go find an executable. */ 318 edir = edirs; 319 do { 320 (void)snprintf(execname, 321 sizeof(execname), "%s/mount_%s", *edir, vfstype); 322 execv(execname, (char * const *)argv); 323 if (errno != ENOENT) 324 warn("exec %s for %s", execname, name); 325 } while (*++edir != NULL); 326 327 if (errno == ENOENT) 328 warn("exec %s for %s", execname, name); 329 exit(1); 330 /* NOTREACHED */ 331 default: /* Parent. */ 332 free(optbuf); 333 334 if (waitpid(pid, &status, 0) < 0) { 335 warn("waitpid"); 336 return (1); 337 } 338 339 if (WIFEXITED(status)) { 340 if (WEXITSTATUS(status) != 0) 341 return (WEXITSTATUS(status)); 342 } else if (WIFSIGNALED(status)) { 343 warnx("%s: %s", name, sys_siglist[WTERMSIG(status)]); 344 return (1); 345 } 346 347 if (verbose) { 348 if (statfs(name, &sf) < 0) { 349 warn("%s", name); 350 return (1); 351 } 352 prmount(sf.f_mntfromname, sf.f_mntonname, sf.f_flags); 353 } 354 break; 355 } 356 357 return (0); 358 } 359 360 void 361 prmount(spec, name, flags) 362 const char *spec, *name; 363 int flags; 364 { 365 struct opt *o; 366 int f; 367 368 (void)printf("%s on %s", spec, name); 369 370 flags &= MNT_VISFLAGMASK; 371 for (f = 0, o = optnames; flags && o->o_opt; o++) 372 if (flags & o->o_opt) { 373 (void)printf("%s%s", !f++ ? " (" : ", ", o->o_name); 374 flags &= ~o->o_opt; 375 } 376 (void)printf(f ? ")\n" : "\n"); 377 } 378 379 struct statfs * 380 getmntpt(name) 381 const char *name; 382 { 383 struct statfs *mntbuf; 384 int i, mntsize; 385 386 mntsize = getmntinfo(&mntbuf, MNT_NOWAIT); 387 for (i = 0; i < mntsize; i++) 388 if (strcmp(mntbuf[i].f_mntfromname, name) == 0 || 389 strcmp(mntbuf[i].f_mntonname, name) == 0) 390 return (&mntbuf[i]); 391 return (NULL); 392 } 393 394 int 395 badvfsname(vfsname, vfslist) 396 const char *vfsname; 397 const char **vfslist; 398 { 399 400 if (vfslist == NULL) 401 return (0); 402 while (*vfslist != NULL) { 403 if (strcmp(vfsname, *vfslist) == 0) 404 return (skipvfs); 405 ++vfslist; 406 } 407 return (!skipvfs); 408 } 409 410 int 411 badvfstype(vfstype, vfslist) 412 int vfstype; 413 const char **vfslist; 414 { 415 static const char *vfsnames[] = INITMOUNTNAMES; 416 417 if ((vfstype < 0) || (vfstype > MOUNT_MAXTYPE)) 418 return (0); 419 420 return (badvfsname(vfsnames[vfstype], vfslist)); 421 } 422 423 const char ** 424 makevfslist(fslist) 425 char *fslist; 426 { 427 const char **av; 428 int i; 429 char *nextcp; 430 431 if (fslist == NULL) 432 return (NULL); 433 if (fslist[0] == 'n' && fslist[1] == 'o') { 434 fslist += 2; 435 skipvfs = 1; 436 } 437 for (i = 0, nextcp = fslist; *nextcp; nextcp++) 438 if (*nextcp == ',') 439 i++; 440 if ((av = malloc((size_t)(i + 2) * sizeof(char *))) == NULL) { 441 warn(NULL); 442 return (NULL); 443 } 444 nextcp = fslist; 445 i = 0; 446 av[i++] = nextcp; 447 while ((nextcp = strchr(nextcp, ',')) != NULL) { 448 *nextcp++ = '\0'; 449 av[i++] = nextcp; 450 } 451 av[i++] = NULL; 452 return (av); 453 } 454 455 char * 456 catopt(s0, s1) 457 char *s0; 458 const char *s1; 459 { 460 size_t i; 461 char *cp; 462 463 if (s0 && *s0) { 464 i = strlen(s0) + strlen(s1) + 1 + 1; 465 if ((cp = malloc(i)) == NULL) 466 err(1, NULL); 467 (void)snprintf(cp, i, "%s,%s", s0, s1); 468 } else 469 cp = strdup(s1); 470 471 if (s0) 472 free(s0); 473 return (cp); 474 } 475 476 void 477 mangle(options, argcp, argv) 478 char *options; 479 int *argcp; 480 const char **argv; 481 { 482 char *p, *s; 483 int argc; 484 485 argc = *argcp; 486 for (s = options; (p = strsep(&s, ",")) != NULL;) 487 if (*p != '\0') 488 if (*p == '-') { 489 argv[argc++] = p; 490 p = strchr(p, '='); 491 if (p) { 492 *p = '\0'; 493 argv[argc++] = p+1; 494 } 495 } else if (strcmp(p, "rw") != 0) { 496 argv[argc++] = "-o"; 497 argv[argc++] = p; 498 } 499 500 *argcp = argc; 501 } 502 503 void 504 usage() 505 { 506 507 (void)fprintf(stderr, 508 "usage: mount %s %s\n mount %s\n mount %s\n", 509 "[-dfruvw] [-o options] [-t ufs | external_type]", 510 "special node", 511 "[-adfruvw] [-t ufs | external_type]", 512 "[-dfruvw] special | node"); 513 exit(1); 514 } 515