Make setthetime() static per the prototype.
[dragonfly.git] / sbin / mount / getmntopts.c
1 /*-
2  * Copyright (c) 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  * @(#)getmntopts.c     8.3 (Berkeley) 3/29/95
34  * $FreeBSD: src/sbin/mount/getmntopts.c,v 1.9 1999/10/09 11:54:06 phk Exp $
35  * $DragonFly: src/sbin/mount/getmntopts.c,v 1.3 2003/09/28 14:39:18 hmp Exp $
36  */
37
38 #include <sys/param.h>
39 #include <sys/stat.h>
40
41 #include <err.h>
42 #include <errno.h>
43 #include <stdlib.h>
44 #include <string.h>
45 #include <sysexits.h>
46
47 #include "mntopts.h"
48
49 int getmnt_silent = 0;
50
51 void
52 getmntopts(const char *options, const struct mntopt *m0, int *flagp,
53            int *altflagp)
54 {
55         const struct mntopt *m;
56         int negative, len;
57         char *opt, *optbuf, *p;
58         int *thisflagp;
59
60         /* Copy option string, since it is about to be torn asunder... */
61         if ((optbuf = strdup(options)) == NULL)
62                 err(1, NULL);
63
64         for (opt = optbuf; (opt = strtok(opt, ",")) != NULL; opt = NULL) {
65                 /* Check for "no" prefix. */
66                 if (opt[0] == 'n' && opt[1] == 'o') {
67                         negative = 1;
68                         opt += 2;
69                 } else
70                         negative = 0;
71
72                 /*
73                  * for options with assignments in them (ie. quotas)
74                  * ignore the assignment as it's handled elsewhere
75                  */
76                 p = strchr(opt, '=');
77                 if (p)
78                          *++p = '\0';
79
80                 /* Scan option table. */
81                 for (m = m0; m->m_option != NULL; ++m) {
82                         len = strlen(m->m_option);
83                         if (strncasecmp(opt, m->m_option, len) == 0)
84                                 if (   m->m_option[len] == '\0'
85                                     || m->m_option[len] == '='
86                                    )
87                                 break;
88                 }
89
90                 /* Save flag, or fail if option is not recognized. */
91                 if (m->m_option) {
92                         thisflagp = m->m_altloc ? altflagp : flagp;
93                         if (negative == m->m_inverse)
94                                 *thisflagp |= m->m_flag;
95                         else
96                                 *thisflagp &= ~m->m_flag;
97                 } else if (!getmnt_silent) {
98                         errx(1, "-o %s: option not supported", opt);
99                 }
100         }
101
102         free(optbuf);
103 }
104
105 void
106 rmslashes(char *rrpin, char *rrpout)
107 {
108         char *rrpoutstart;
109
110         *rrpout = *rrpin;
111         for (rrpoutstart = rrpout; *rrpin != '\0'; *rrpout++ = *rrpin++) {
112
113                 /* skip all double slashes */
114                 while (*rrpin == '/' && *(rrpin + 1) == '/')
115                          rrpin++;
116         }
117
118         /* remove trailing slash if necessary */
119         if (rrpout - rrpoutstart > 1 && *(rrpout - 1) == '/')
120                 *(rrpout - 1) = '\0';
121         else
122                 *rrpout = '\0';
123 }
124
125 void
126 checkpath(const char *path, char *resolved)
127 {
128         struct stat sb;
129
130         if (realpath(path, resolved) != NULL && stat(resolved, &sb) == 0) {
131                 if (!S_ISDIR(sb.st_mode)) 
132                         errx(EX_USAGE, "%s: not a directory", resolved);
133         } else
134                 errx(EX_USAGE, "%s: %s", resolved, strerror(errno));
135 }