Merge branch 'vendor/ZLIB'
[dragonfly.git] / sbin / mount / mount.c
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  * @(#) Copyright (c) 1980, 1989, 1993, 1994 The Regents of the University of California.  All rights reserved.
34  * @(#)mount.c  8.25 (Berkeley) 5/8/95
35  * $FreeBSD: src/sbin/mount/mount.c,v 1.39.2.3 2001/08/01 08:26:23 obrien Exp $
36  * $DragonFly: src/sbin/mount/mount.c,v 1.10 2005/04/03 17:13:08 joerg Exp $
37  */
38
39 #include <sys/param.h>
40 #include <sys/mount.h>
41 #include <sys/mountctl.h>
42 #define DKTYPENAMES
43 #include <sys/dtype.h>
44 #include <sys/diskslice.h>
45 #include <sys/stat.h>
46 #include <sys/wait.h>
47
48 #include <err.h>
49 #include <errno.h>
50 #include <fcntl.h>
51 #include <fstab.h>
52 #include <pwd.h>
53 #include <signal.h>
54 #include <stdio.h>
55 #include <stdlib.h>
56 #include <string.h>
57 #include <unistd.h>
58
59 #include "extern.h"
60 #include "mntopts.h"
61 #include "pathnames.h"
62
63 /* `meta' options */
64 #define MOUNT_META_OPTION_FSTAB         "fstab" 
65 #define MOUNT_META_OPTION_CURRENT       "current"
66
67 int debug, fstab_style, verbose;
68
69 static char  *catopt(char *, const char *);
70 static struct statfs
71              *getmntpt(const char *);
72 static int    hasopt(const char *, const char *);
73 static int    ismounted(struct fstab *, struct statfs *, int);
74 static int    isremountable(const char *);
75 static void   mangle(char *, int *, const char **);
76 static char  *update_options(char *, char *, int);
77 static int    mountfs(const char *, const char *, const char *,
78                       int, const char *, const char *);
79 static void   remopt(char *, const char *);
80 static void   printdefvals(const struct statfs *);
81 static void   prmount(struct statfs *);
82 static void   putfsent(const struct statfs *);
83 static void   usage(void);
84 static char  *flags2opts(int);
85 static char  *xstrdup(const char *str);
86 static void   checkdisklabel(const char *devpath, const char **vfstypep);
87
88 /*
89  * List of VFS types that can be remounted without becoming mounted on top
90  * of each other.
91  * XXX Is this list correct?
92  */
93 static const char *remountable_fs_names[] = {
94         "ufs", "ffs", "ext2fs", "hammer", "hammer2",
95         NULL
96 };
97
98 int
99 main(int argc, char **argv)
100 {
101         const char *mntfromname, **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, have_fstab;
107         char *options;
108
109         all = init_flags = 0;
110         options = NULL;
111         vfslist = NULL;
112         vfstype = "ufs";
113         while ((ch = getopt(argc, argv, "adF:fo:prwt:uv")) != -1) {
114                 switch (ch) {
115                 case 'a':
116                         all = 1;
117                         break;
118                 case 'd':
119                         debug = 1;
120                         break;
121                 case 'F':
122                         setfstab(optarg);
123                         break;
124                 case 'f':
125                         init_flags |= MNT_FORCE;
126                         break;
127                 case 'o':
128                         if (*optarg)
129                                 options = catopt(options, optarg);
130                         break;
131                 case 'p':
132                         fstab_style = 1;
133                         verbose = 1;
134                         break;
135                 case 'r':
136                         options = catopt(options, "ro");
137                         break;
138                 case 't':
139                         if (vfslist != NULL)
140                                 errx(1, "only one -t option may be specified");
141                         vfslist = makevfslist(optarg);
142                         vfstype = optarg;
143                         break;
144                 case 'u':
145                         init_flags |= MNT_UPDATE;
146                         break;
147                 case 'v':
148                         verbose = 1;
149                         break;
150                 case 'w':
151                         options = catopt(options, "noro");
152                         break;
153                 case '?':
154                 default:
155                         usage();
156                         /* NOTREACHED */
157                 }
158         }
159         argc -= optind;
160         argv += optind;
161
162 #define BADTYPE(type)                                                   \
163         (strcmp(type, FSTAB_RO) &&                                      \
164             strcmp(type, FSTAB_RW) && strcmp(type, FSTAB_RQ))
165
166         rval = 0;
167         switch (argc) {
168         case 0:
169                 if ((mntsize = getmntinfo(&mntbuf, MNT_NOWAIT)) == 0)
170                         err(1, "getmntinfo");
171                 if (all) {
172                         while ((fs = getfsent()) != NULL) {
173                                 if (BADTYPE(fs->fs_type))
174                                         continue;
175                                 if (checkvfsname(fs->fs_vfstype, vfslist))
176                                         continue;
177                                 if (hasopt(fs->fs_mntops, "noauto"))
178                                         continue;
179                                 if (!(init_flags & MNT_UPDATE) &&
180                                     ismounted(fs, mntbuf, mntsize))
181                                         continue;
182                                 options = update_options(options,
183                                     fs->fs_mntops, mntbuf->f_flags);
184                                 if (mountfs(fs->fs_vfstype, fs->fs_spec,
185                                     fs->fs_file, init_flags, options,
186                                     fs->fs_mntops))
187                                         rval = 1;
188                         }
189                 } else if (fstab_style) {
190                         for (i = 0; i < mntsize; i++) {
191                                 if (checkvfsname(mntbuf[i].f_fstypename, vfslist))
192                                         continue;
193                                 putfsent(&mntbuf[i]);
194                         }
195                 } else {
196                         for (i = 0; i < mntsize; i++) {
197                                 if (checkvfsname(mntbuf[i].f_fstypename,
198                                     vfslist))
199                                         continue;
200                                 prmount(&mntbuf[i]);
201                         }
202                 }
203                 exit(rval);
204         case 1:
205                 if (vfslist != NULL)
206                         usage();
207
208                 rmslashes(*argv, *argv);
209
210                 if (init_flags & MNT_UPDATE) {
211                         mntfromname = NULL;
212                         have_fstab = 0;
213                         if ((mntbuf = getmntpt(*argv)) == NULL)
214                                 errx(1, "not currently mounted %s", *argv);
215                         /*
216                          * Only get the mntflags from fstab if both mntpoint
217                          * and mntspec are identical. Also handle the special
218                          * case where just '/' is mounted and 'spec' is not
219                          * identical with the one from fstab ('/dev' is missing
220                          * in the spec-string at boot-time).
221                          */
222                         if ((fs = getfsfile(mntbuf->f_mntonname)) != NULL) {
223                                 if (strcmp(fs->fs_spec,
224                                     mntbuf->f_mntfromname) == 0 &&
225                                     strcmp(fs->fs_file,
226                                     mntbuf->f_mntonname) == 0) {
227                                         have_fstab = 1;
228                                         mntfromname = mntbuf->f_mntfromname;
229                                 } else if (argv[0][0] == '/' &&
230                                     argv[0][1] == '\0') {
231                                         fs = getfsfile("/");
232                                         have_fstab = 1;
233                                         mntfromname = fs->fs_spec;
234                                 }
235                         }
236                         if (have_fstab) {
237                                 options = update_options(options, fs->fs_mntops,
238                                     mntbuf->f_flags);
239                         } else {
240                                 mntfromname = mntbuf->f_mntfromname;
241                                 options = update_options(options, NULL,
242                                     mntbuf->f_flags);
243                         }
244                         rval = mountfs(mntbuf->f_fstypename, mntfromname,
245                             mntbuf->f_mntonname, init_flags, options, 0);
246                         break;
247                 }
248                 if ((fs = getfsfile(*argv)) == NULL &&
249                     (fs = getfsspec(*argv)) == NULL)
250                         errx(1, "%s: unknown special file or file system",
251                             *argv);
252                 if (BADTYPE(fs->fs_type))
253                         errx(1, "%s has unknown file system type",
254                             *argv);
255                 rval = mountfs(fs->fs_vfstype, fs->fs_spec, fs->fs_file,
256                     init_flags, options, fs->fs_mntops);
257                 break;
258         case 2:
259                 /*
260                  * If -t flag has not been specified, the path cannot be
261                  * found.
262                  *
263                  * If the spec is not a file and contains a ':' then assume
264                  * NFS.
265                  *
266                  * If the spec is a cdev attempt to extract the fstype from
267                  * the label.
268                  *
269                  * When all else fails ufs is assumed.
270                  */
271                 if (vfslist == NULL) {
272                         if (strpbrk(argv[0], ":") != NULL &&
273                             access(argv[0], 0) == -1) {
274                                 vfstype = "nfs";
275                         } else {
276                                 checkdisklabel(argv[0], &vfstype);
277                         }
278                 }
279
280                 rval = mountfs(vfstype, getdevpath(argv[0], 0), argv[1],
281                                init_flags, options, NULL);
282                 break;
283         default:
284                 usage();
285                 /* NOTREACHED */
286         }
287
288         /*
289          * If the mount was successfully, and done by root, tell mountd the
290          * good news.  Pid checks are probably unnecessary, but don't hurt.
291          */
292         if (rval == 0 && getuid() == 0 &&
293             (mountdfp = fopen(_PATH_MOUNTDPID, "r")) != NULL) {
294                 if (fscanf(mountdfp, "%d", &pid) == 1 &&
295                      pid > 0 && kill(pid, SIGHUP) == -1 && errno != ESRCH)
296                         err(1, "signal mountd");
297                 fclose(mountdfp);
298         }
299
300         exit(rval);
301 }
302
303 static int
304 ismounted(struct fstab *fs, struct statfs *mntbuf, int mntsize)
305 {
306         int i;
307
308         if (fs->fs_file[0] == '/' && fs->fs_file[1] == '\0')
309                 /* the root file system can always be remounted */
310                 return (0);
311
312         for (i = mntsize - 1; i >= 0; --i)
313                 if (strcmp(fs->fs_file, mntbuf[i].f_mntonname) == 0 &&
314                     (!isremountable(fs->fs_vfstype) ||
315                      strcmp(fs->fs_spec, mntbuf[i].f_mntfromname) == 0))
316                         return (1);
317         return (0);
318 }
319
320 static int
321 isremountable(const char *vfsname)
322 {
323         const char **cp;
324
325         for (cp = remountable_fs_names; *cp; cp++)
326                 if (strcmp(*cp, vfsname) == 0)
327                         return (1);
328         return (0);
329 }
330
331 static int
332 hasopt(const char *mntopts, const char *option)
333 {
334         int negative, found;
335         char *opt, *optbuf;
336
337         if (option[0] == 'n' && option[1] == 'o') {
338                 negative = 1;
339                 option += 2;
340         } else
341                 negative = 0;
342         optbuf = xstrdup(mntopts);
343         found = 0;
344         for (opt = optbuf; (opt = strtok(opt, ",")) != NULL; opt = NULL) {
345                 if (opt[0] == 'n' && opt[1] == 'o') {
346                         if (!strcasecmp(opt + 2, option))
347                                 found = negative;
348                 } else if (!strcasecmp(opt, option))
349                         found = !negative;
350         }
351         free(optbuf);
352         return (found);
353 }
354
355 static int
356 mountfs(const char *vfstype, const char *spec, const char *name, int flags,
357         const char *options, const char *mntopts)
358 {
359         /* List of directories containing mount_xxx subcommands. */
360         static const char *edirs[] = {
361                 _PATH_SBIN,
362                 _PATH_USRSBIN,
363                 NULL
364         };
365         const char *argv[100], **edir;
366         struct statfs sf;
367         pid_t pid;
368         int argc, i, status;
369         char *optbuf, execname[MAXPATHLEN + 1], mntpath[MAXPATHLEN];
370
371 #if __GNUC__
372         (void)&optbuf;
373         (void)&name;
374 #endif
375
376         /* resolve the mountpoint with realpath(3) */
377         checkpath(name, mntpath);
378         name = mntpath;
379
380         if (mntopts == NULL)
381                 mntopts = "";
382         if (options == NULL) {
383                 if (*mntopts == '\0') {
384                         options = "rw";
385                 } else {
386                         options = mntopts;
387                         mntopts = "";
388                 }
389         }
390         optbuf = catopt(xstrdup(mntopts), options);
391
392         if (strcmp(name, "/") == 0)
393                 flags |= MNT_UPDATE;
394         if (flags & MNT_FORCE)
395                 optbuf = catopt(optbuf, "force");
396         if (flags & MNT_RDONLY)
397                 optbuf = catopt(optbuf, "ro");
398         /*
399          * XXX
400          * The mount_mfs (newfs) command uses -o to select the
401          * optimization mode.  We don't pass the default "-o rw"
402          * for that reason.
403          */
404         if (flags & MNT_UPDATE)
405                 optbuf = catopt(optbuf, "update");
406
407         argc = 0;
408         argv[argc++] = vfstype;
409         mangle(optbuf, &argc, argv);
410         argv[argc++] = spec;
411         argv[argc++] = name;
412         argv[argc] = NULL;
413
414         if (debug) {
415                 printf("exec: mount_%s", vfstype);
416                 for (i = 1; i < argc; i++)
417                         printf(" %s", argv[i]);
418                 printf("\n");
419                 return (0);
420         }
421
422         switch (pid = fork()) {
423         case -1:                                /* Error. */
424                 warn("fork");
425                 free(optbuf);
426                 return (1);
427         case 0:                                 /* Child. */
428                 /* Go find an executable. */
429                 for (edir = edirs; *edir; edir++) {
430                         snprintf(execname,
431                             sizeof(execname), "%s/mount_%s", *edir, vfstype);
432                         execv(execname, __DECONST(char * const *, argv));
433                 }
434                 if (errno == ENOENT) {
435                         int len = 0;
436                         char *cp;
437                         for (edir = edirs; *edir; edir++)
438                                 len += strlen(*edir) + 2;       /* ", " */
439                         if ((cp = malloc(len)) == NULL)
440                                 errx(1, "malloc failed");
441                         cp[0] = '\0';
442                         for (edir = edirs; *edir; edir++) {
443                                 strcat(cp, *edir);
444                                 if (edir[1] != NULL)
445                                         strcat(cp, ", ");
446                         }
447                         warn("exec mount_%s not found in %s", vfstype, cp);
448                 }
449                 exit(1);
450                 /* NOTREACHED */
451         default:                                /* Parent. */
452                 free(optbuf);
453
454                 if (waitpid(pid, &status, 0) < 0) {
455                         warn("waitpid");
456                         return (1);
457                 }
458
459                 if (WIFEXITED(status)) {
460                         if (WEXITSTATUS(status) != 0)
461                                 return (WEXITSTATUS(status));
462                 } else if (WIFSIGNALED(status)) {
463                         warnx("%s: %s", name, sys_siglist[WTERMSIG(status)]);
464                         return (1);
465                 }
466
467                 if (verbose) {
468                         if (statfs(name, &sf) < 0) {
469                                 warn("statfs %s", name);
470                                 return (1);
471                         }
472                         if (fstab_style)
473                                 putfsent(&sf);
474                         else
475                                 prmount(&sf);
476                 }
477                 break;
478         }
479
480         return (0);
481 }
482
483 static void
484 prmount(struct statfs *sfp)
485 {
486         struct passwd *pw;
487         char *buf;
488         int error;
489         int len;
490
491         error = 0;
492         len = 256;
493
494         if ((buf = malloc(len)) == NULL)
495                 errx(1, "malloc failed");
496
497         printf("%s on %s (%s", sfp->f_mntfromname, sfp->f_mntonname,
498             sfp->f_fstypename);
499
500         /* Get a string buffer with all the used flags names */
501         error = mountctl(sfp->f_mntonname, MOUNTCTL_MOUNTFLAGS,
502                          -1, NULL, 0, buf, len);
503
504         if (sfp->f_owner) {
505                 printf(", mounted by ");
506                 if ((pw = getpwuid(sfp->f_owner)) != NULL)
507                         printf("%s", pw->pw_name);
508                 else
509                         printf("%d", sfp->f_owner);
510         }
511
512         if (strlen(buf))
513                 printf(", %s", buf);
514
515         if (verbose) {
516                 if (sfp->f_syncwrites != 0 || sfp->f_asyncwrites != 0)
517                         printf(", writes: sync %ld async %ld",
518                             sfp->f_syncwrites, sfp->f_asyncwrites);
519                 if (sfp->f_syncreads != 0 || sfp->f_asyncreads != 0)
520                         printf(", reads: sync %ld async %ld",
521                             sfp->f_syncreads, sfp->f_asyncreads);
522         }
523         printf(")\n");
524 }
525
526 static struct statfs *
527 getmntpt(const char *name)
528 {
529         struct statfs *mntbuf;
530         int i, mntsize;
531
532         mntsize = getmntinfo(&mntbuf, MNT_NOWAIT);
533         for (i = mntsize - 1; i >= 0; i--) {
534                 if (strcmp(mntbuf[i].f_mntfromname, name) == 0 ||
535                     strcmp(mntbuf[i].f_mntonname, name) == 0)
536                         return (&mntbuf[i]);
537         }
538         return (NULL);
539 }
540
541 static char *
542 catopt(char *s0, const char *s1)
543 {
544         size_t i;
545         char *cp;
546
547         if (s1 == NULL || *s1 == '\0')
548                 return s0;
549
550         if (s0 && *s0) {
551                 i = strlen(s0) + strlen(s1) + 1 + 1;
552                 if ((cp = malloc(i)) == NULL)
553                         errx(1, "malloc failed");
554                 snprintf(cp, i, "%s,%s", s0, s1);
555         } else
556                 cp = xstrdup(s1);
557
558         if (s0)
559                 free(s0);
560         return (cp);
561 }
562
563 static void
564 mangle(char *options, int *argcp, const char **argv)
565 {
566         char *p, *s;
567         int argc;
568
569         argc = *argcp;
570         for (s = options; (p = strsep(&s, ",")) != NULL;)
571                 if (*p != '\0') {
572                         if (*p == '-') {
573                                 argv[argc++] = p;
574                                 p = strchr(p, '=');
575                                 if (p) {
576                                         *p = '\0';
577                                         argv[argc++] = p+1;
578                                 }
579                         } else if (strcmp(p, "rw") != 0) {
580                                 argv[argc++] = "-o";
581                                 argv[argc++] = p;
582                         }
583                 }
584
585         *argcp = argc;
586 }
587
588
589 static char *
590 update_options(char *opts, char *fstab, int curflags)
591 {
592         char *o, *p;
593         char *cur;
594         char *expopt, *newopt, *tmpopt;
595
596         if (opts == NULL)
597                 return xstrdup("");
598
599         /* remove meta options from list */
600         remopt(fstab, MOUNT_META_OPTION_FSTAB);
601         remopt(fstab, MOUNT_META_OPTION_CURRENT);
602         cur = flags2opts(curflags);
603
604         /*
605          * Expand all meta-options passed to us first.
606          */
607         expopt = NULL;
608         for (p = opts; (o = strsep(&p, ",")) != NULL;) {
609                 if (strcmp(MOUNT_META_OPTION_FSTAB, o) == 0)
610                         expopt = catopt(expopt, fstab);
611                 else if (strcmp(MOUNT_META_OPTION_CURRENT, o) == 0)
612                         expopt = catopt(expopt, cur);
613                 else
614                         expopt = catopt(expopt, o);
615         }
616         free(cur);
617         free(opts);
618
619         /*
620          * Remove previous contradictory arguments. Given option "foo" we
621          * remove all the "nofoo" options. Given "nofoo" we remove "nonofoo"
622          * and "foo" - so we can deal with possible options like "notice".
623          */
624         newopt = NULL;
625         for (p = expopt; (o = strsep(&p, ",")) != NULL;) {
626                 if ((tmpopt = malloc( strlen(o) + 2 + 1 )) == NULL)
627                         errx(1, "malloc failed");
628         
629                 strcpy(tmpopt, "no");
630                 strcat(tmpopt, o);
631                 remopt(newopt, tmpopt);
632                 free(tmpopt);
633
634                 if (strncmp("no", o, 2) == 0)
635                         remopt(newopt, o+2);
636
637                 newopt = catopt(newopt, o);
638         }
639         free(expopt);
640
641         return newopt;
642 }
643
644 static void
645 remopt(char *string, const char *opt)
646 {
647         char *o, *p, *r;
648
649         if (string == NULL || *string == '\0' || opt == NULL || *opt == '\0')
650                 return;
651
652         r = string;
653
654         for (p = string; (o = strsep(&p, ",")) != NULL;) {
655                 if (strcmp(opt, o) != 0) {
656                         if (*r == ',' && *o != '\0')
657                                 r++;
658                         while ((*r++ = *o++) != '\0')
659                             ;
660                         *--r = ',';
661                 }
662         }
663         *r = '\0';
664 }
665
666 static void
667 usage(void)
668 {
669
670         fprintf(stderr, "%s\n%s\n%s\n",
671 "usage: mount [-adfpruvw] [-F fstab] [-o options] [-t type]",
672 "       mount [-dfpruvw] {special | node}",
673 "       mount [-dfpruvw] [-o options] [-t type] special node");
674         exit(1);
675 }
676
677 /*
678  * Prints the default values for dump frequency and pass number of fsck.
679  * This happens when mount(8) is called with -p and there is no fstab file
680  * or there is but the values aren't specified.
681  */
682 static void
683 printdefvals(const struct statfs *ent)
684 {
685         if (strcmp(ent->f_fstypename, "ufs") == 0) {
686                 if (strcmp(ent->f_mntonname, "/") == 0)
687                         printf("\t1 1\n");
688                 else
689                         printf("\t2 2\n");
690         } else {
691                 printf("\t0 0\n");
692         }
693 }
694
695 static void
696 putfsent(const struct statfs *ent)
697 {
698         struct stat sb;
699         struct fstab *fst;
700         char *opts;
701   
702         opts = flags2opts(ent->f_flags);
703         printf("%s\t%s\t%s %s", ent->f_mntfromname, ent->f_mntonname,
704             ent->f_fstypename, opts);
705         free(opts);
706
707         /*
708          * If fstab file is missing don't call getfsspec() or getfsfile()
709          * at all, because the same warning will be printed twice for every
710          * mounted filesystem.
711          */
712         if (stat(_PATH_FSTAB, &sb) != -1) {
713                 if ((fst = getfsspec(ent->f_mntfromname)))
714                         printf("\t%u %u\n", fst->fs_freq, fst->fs_passno);
715                 else if ((fst = getfsfile(ent->f_mntonname)))
716                         printf("\t%u %u\n", fst->fs_freq, fst->fs_passno);
717                 else
718                         printdefvals(ent);
719         } else {
720                 printdefvals(ent);
721         }
722 }
723
724
725 static char *
726 flags2opts(int flags)
727 {
728         char *res;
729
730         res = NULL;
731
732         res = catopt(res, (flags & MNT_RDONLY) ? "ro" : "rw");
733
734         if (flags & MNT_SYNCHRONOUS)    res = catopt(res, "sync");
735         if (flags & MNT_NOEXEC)         res = catopt(res, "noexec");
736         if (flags & MNT_NOSUID)         res = catopt(res, "nosuid");
737         if (flags & MNT_NODEV)          res = catopt(res, "nodev");
738         if (flags & MNT_UNION)          res = catopt(res, "union");
739         if (flags & MNT_ASYNC)          res = catopt(res, "async");
740         if (flags & MNT_NOATIME)        res = catopt(res, "noatime");
741         if (flags & MNT_NOCLUSTERR)     res = catopt(res, "noclusterr");
742         if (flags & MNT_NOCLUSTERW)     res = catopt(res, "noclusterw");
743         if (flags & MNT_NOSYMFOLLOW)    res = catopt(res, "nosymfollow");
744         if (flags & MNT_SUIDDIR)        res = catopt(res, "suiddir");
745         if (flags & MNT_IGNORE)         res = catopt(res, "ignore");
746
747         return res;
748 }
749
750 static char*
751 xstrdup(const char *str)
752 {
753         char* ret = strdup(str);
754         if(ret == NULL) {
755                 errx(1, "strdup failed (could not allocate memory)");
756         }
757         return ret;
758 }
759
760 /*
761  * Hack 'cd9660' for the default fstype on cd media if no disklabel
762  * found.
763  */
764 static int
765 iscdmedia(const char *path, int fd __unused)
766 {
767         int n;
768
769         if (strrchr(path, '/'))
770                 path = strrchr(path, '/') + 1;
771         if (sscanf(path, "acd%d", &n) == 1)
772                 return 1;
773         if (sscanf(path, "cd%d", &n) == 1)
774                 return 1;
775         return 0;
776 }
777
778 /*
779  * If the device path is a cdev attempt to access the disklabel to determine
780  * the filesystem type.  Adjust *vfstypep if we can figure it out
781  * definitively.
782  *
783  * Ignore any portion of the device path after an '@' or ':'.
784  */
785 static void
786 checkdisklabel(const char *devpath, const char **vfstypep)
787 {
788         struct stat st;
789         struct partinfo info;
790         char *path = strdup(devpath);
791         int fd;
792
793         if (strchr(path, '@'))
794                 *strchr(path, '@') = 0;
795         if (strchr(path, ':'))
796                 *strchr(path, ':') = 0;
797
798         if (stat(path, &st) < 0)
799                 goto done;
800         if (!S_ISCHR(st.st_mode))
801                 goto done;
802         fd = open(path, O_RDONLY);
803         if (fd < 0)
804                 goto done;
805         if (ioctl(fd, DIOCGPART, &info) == 0) {
806                 if (info.fstype >= 0 && info.fstype < (int)FSMAXTYPES) {
807                         if (fstype_to_vfsname[info.fstype]) {
808                                 *vfstypep = fstype_to_vfsname[info.fstype];
809                         } else if (iscdmedia(path, fd)) {
810                                 *vfstypep = "cd9660";
811                         } else {
812                                 fprintf(stderr,
813                                         "mount: warning: fstype in disklabel "
814                                         "not set to anything I understand\n");
815                                 fprintf(stderr,
816                                         "attempting to mount with -t ufs\n");
817                         }
818                 }
819         }
820         close(fd);
821 done:
822         free(path);
823 }