]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/mount/stropts.c
mount.nfs: Use dynamically allocated character buffers
[nfs-utils.git] / utils / mount / stropts.c
1 /*
2  * stropts.c -- NFS mount using C string to pass options to kernel
3  *
4  * Copyright (C) 2007 Oracle.  All rights reserved.
5  * Copyright (C) 2007 Chuck Lever <chuck.lever@oracle.com>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public
18  * License along with this program; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 021110-1307, USA.
21  *
22  */
23
24 #include <ctype.h>
25 #include <unistd.h>
26 #include <stdio.h>
27 #include <string.h>
28 #include <stdlib.h>
29 #include <errno.h>
30 #include <netdb.h>
31 #include <time.h>
32 #include <sys/socket.h>
33 #include <sys/mount.h>
34
35 #include "xcommon.h"
36 #include "mount.h"
37 #include "nls.h"
38 #include "nfs_mount.h"
39 #include "mount_constants.h"
40 #include "stropts.h"
41 #include "error.h"
42 #include "network.h"
43
44 #ifdef HAVE_RPCSVC_NFS_PROT_H
45 #include <rpcsvc/nfs_prot.h>
46 #else
47 #include <linux/nfs.h>
48 #define nfsstat nfs_stat
49 #endif
50
51 #ifndef NFS_PORT
52 #define NFS_PORT 2049
53 #endif
54
55 #ifndef NFS_MAXHOSTNAME
56 #define NFS_MAXHOSTNAME         (255)
57 #endif
58
59 #ifndef NFS_MAXPATHNAME
60 #define NFS_MAXPATHNAME         (1024)
61 #endif
62
63 extern int nfs_mount_data_version;
64 extern char *progname;
65 extern int verbose;
66
67 static int retry_opt = 10000;           /* 10,000 minutes ~= 1 week */
68 static int bg_opt = 0;
69 static int addr_opt = 0;
70 static int ca_opt = 0;
71
72 static int parse_devname(const char *spec, char **hostname)
73 {
74         int ret = 0;
75         char *dev, *pathname, *s;
76
77         dev = xstrdup(spec);
78
79         if (!(pathname = strchr(dev, ':'))) {
80                 nfs_error(_("%s: remote share not in 'host:dir' format"),
81                                 progname);
82                 goto out;
83         }
84         *pathname = '\0';
85         pathname++;
86
87         /*
88          * We don't need a copy of the pathname, but let's
89          * sanity check it anyway.
90          */
91         if (strlen(pathname) > NFS_MAXPATHNAME) {
92                 nfs_error(_("%s: export pathname is too long"),
93                                 progname);
94                 goto out;
95         }
96
97         /*
98          * Ignore all but first hostname in replicated mounts
99          * until they can be fully supported. (mack@sgi.com)
100          */
101         if ((s = strchr(dev, ','))) {
102                 *s = '\0';
103                 nfs_error(_("%s: warning: multiple hostnames not supported"),
104                                 progname);
105                 nfs_error(_("%s: ignoring hostnames that follow the first one"),
106                                 progname);
107         }
108         *hostname = xstrdup(dev);
109         if (strlen(*hostname) > NFS_MAXHOSTNAME) {
110                 nfs_error(_("%s: server hostname is too long"),
111                                 progname);
112                 free(*hostname);
113                 goto out;
114         }
115
116         ret = 1;
117
118 out:
119         free(dev);
120         return ret;
121 }
122
123 static int fill_ipv4_sockaddr(const char *hostname, struct sockaddr_in *addr)
124 {
125         struct hostent *hp;
126         addr->sin_family = AF_INET;
127
128         if (inet_aton(hostname, &addr->sin_addr))
129                 return 1;
130         if ((hp = gethostbyname(hostname)) == NULL) {
131                 nfs_error(_("%s: can't get address for %s\n"),
132                                 progname, hostname);
133                 return 0;
134         }
135         if (hp->h_length > sizeof(struct in_addr)) {
136                 nfs_error(_("%s: got bad hp->h_length"), progname);
137                 hp->h_length = sizeof(struct in_addr);
138         }
139         memcpy(&addr->sin_addr, hp->h_addr, hp->h_length);
140         return 1;
141 }
142
143 /*
144  * XXX: This should really use the technique neil recently added
145  * to get the address off the local end of a socket connected to
146  * the server -- to get the right address to use on multi-homed
147  * clients
148  */
149 static int get_my_ipv4addr(char *ip_addr, int len)
150 {
151         char myname[1024];
152         struct sockaddr_in myaddr;
153
154         if (gethostname(myname, sizeof(myname))) {
155                 nfs_error(_("%s: can't determine client address\n"),
156                                 progname);
157                 return 0;
158         }
159         if (!fill_ipv4_sockaddr(myname, &myaddr))
160                 return 0;
161
162         snprintf(ip_addr, len, "%s", inet_ntoa(myaddr.sin_addr));
163         ip_addr[len - 1] = '\0';
164
165         return 1;
166 }
167
168 /*
169  * Walk through our mount options string, and indicate the presence
170  * of 'bg', 'retry=', 'addr=', and 'clientaddr='.
171  */
172 static void extract_interesting_options(char *opts)
173 {
174         char *opt, *opteq;
175         int val;
176
177         opts = xstrdup(opts);
178
179         for (opt = strtok(opts, ","); opt; opt = strtok(NULL, ",")) {
180                 if ((opteq = strchr(opt, '='))) {
181                         val = atoi(opteq + 1);
182                         *opteq = '\0';
183                         if (strcmp(opt, "bg") == 0)
184                                 bg_opt++;
185                         else if (strcmp(opt, "retry") == 0)
186                                 retry_opt = val;
187                         else if (strcmp(opt, "addr") == 0)
188                                 addr_opt++;
189                         else if (strcmp(opt, "clientaddr") == 0)
190                                 ca_opt++;
191                 } else {
192                         if (strcmp(opt, "bg") == 0)
193                                 bg_opt++;
194                 }
195         }
196
197         free(opts);
198 }
199
200 /*
201  * Append the 'addr=' option to the options string.  The server
202  * address is added to /etc/mtab for use when unmounting.
203  *
204  * Returns 1 if 'addr=' option created successfully;
205  * otherwise zero.
206  */
207 static int append_addr_opt(const char *spec, char **extra_opts)
208 {
209         static char new_opts[1024];
210         char *hostname, *s, *old_opts;
211         struct sockaddr_in addr;
212         int err;
213
214         if (!parse_devname(spec, &hostname))
215                 return 0;
216
217         err = fill_ipv4_sockaddr(hostname, &addr);
218         free(hostname);
219         if (!err)
220                 return 0;
221
222         s = inet_ntoa(addr.sin_addr);
223         old_opts = *extra_opts;
224         if (!old_opts)
225                 old_opts = "";
226         if (strlen(old_opts) + strlen(s) + 10 >= sizeof(new_opts)) {
227                 nfs_error(_("%s: excessively long option argument\n"),
228                                 progname);
229                 return 0;
230         }
231         snprintf(new_opts, sizeof(new_opts), "%s%saddr=%s",
232                  old_opts, *old_opts ? "," : "", s);
233         *extra_opts = xstrdup(new_opts);
234
235         return 1;
236 }
237
238 /*
239  * Append the 'clientaddr=' option to the options string.
240  *
241  * Returns 1 if 'clientaddr=' option created successfully;
242  * otherwise zero.
243  */
244 static int append_clientaddr_opt(const char *spec, char **extra_opts)
245 {
246         static char new_opts[1024], cbuf[1024];
247         static char ip_addr[16] = "127.0.0.1";
248
249         if (!get_my_ipv4addr(ip_addr, sizeof(ip_addr)))
250                 return 0;
251
252         /* Ensure we have enough padding for the following strcat()s */
253         if (strlen(*extra_opts) + strlen(ip_addr) + 10 >= sizeof(new_opts)) {
254                 nfs_error(_("%s: excessively long option argument"),
255                                 progname);
256                 return 0;
257         }
258
259         strcat(new_opts, *extra_opts);
260
261         snprintf(cbuf, sizeof(cbuf) - 1, "%sclientaddr=%s",
262                         *extra_opts ? "," : "", ip_addr);
263         strcat(new_opts, cbuf);
264
265         *extra_opts = xstrdup(new_opts);
266
267         return 1;
268 }
269
270 /*
271  * nfsmount_s - Mount an NFSv2 or v3 file system using C string options
272  *
273  * @spec:       C string hostname:path specifying remoteshare to mount
274  * @node:       C string pathname of local mounted on directory
275  * @flags:      MS_ style flags
276  * @extra_opts: pointer to C string containing fs-specific mount options
277  *              (possibly also a return argument)
278  * @fake:       flag indicating whether to carry out the whole operation
279  * @bg:         one if this is a backgrounded mount attempt
280  *
281  * XXX: need to handle bg, fg, and retry options.
282  */
283 int nfsmount_s(const char *spec, const char *node, int flags,
284                 char **extra_opts, int fake, int bg)
285 {
286         int retval = EX_FAIL;
287
288         extract_interesting_options(*extra_opts);
289
290         if (!bg && addr_opt) {
291                 nfs_error(_("%s: Illegal option: 'addr='"), progname);
292                 goto fail;
293         }
294
295         if (!append_addr_opt(spec, extra_opts))
296                 goto fail;
297
298         if (verbose)
299                 printf(_("%s: text-based options: '%s'\n"),
300                         progname, *extra_opts);
301
302         if (!fake) {
303                 if (mount(spec, node, "nfs",
304                                 flags & ~(MS_USER|MS_USERS), *extra_opts)) {
305                         mount_error(spec, node, errno);
306                         goto fail;
307                 }
308         }
309
310         return 0;
311
312 fail:
313         return retval;
314 }
315
316 /*
317  * nfs4mount_s - Mount an NFSv4 file system using C string options
318  *
319  * @spec:       C string hostname:path specifying remoteshare to mount
320  * @node:       C string pathname of local mounted on directory
321  * @flags:      MS_ style flags
322  * @extra_opts: pointer to C string containing fs-specific mount options
323  *              (possibly also a return argument)
324  * @fake:       flag indicating whether to carry out the whole operation
325  * @child:      one if this is a backgrounded mount
326  *
327  * XXX: need to handle bg, fg, and retry options.
328  *
329  */
330 int nfs4mount_s(const char *spec, const char *node, int flags,
331                 char **extra_opts, int fake, int child)
332 {
333         int retval = EX_FAIL;
334
335         extract_interesting_options(*extra_opts);
336
337         if (addr_opt) {
338                 nfs_error(_("%s: Illegal option: 'addr='"), progname);
339                 goto fail;
340         }
341
342         if (ca_opt) {
343                 nfs_error(_("%s: Illegal option: 'clientaddr='"), progname);
344                 goto fail;
345         }
346
347         if (!append_addr_opt(spec, extra_opts))
348                 goto fail;
349
350         if (!append_clientaddr_opt(spec, extra_opts))
351                 goto fail;
352
353         if (verbose)
354                 printf(_("%s: text-based options: '%s'\n"),
355                         progname, *extra_opts);
356
357         if (!fake) {
358                 if (mount(spec, node, "nfs4",
359                                 flags & ~(MS_USER|MS_USERS), *extra_opts)) {
360                         mount_error(spec, node, errno);
361                         goto fail;
362                 }
363         }
364
365         return 0;
366
367 fail:
368         return retval;
369 }