]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/mount/stropts.c
09fca86d1e1705a72e8a6bfb805a9d861f8fdfb8
[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 #ifdef HAVE_CONFIG_H
25 #include <config.h>
26 #endif
27
28 #include <unistd.h>
29 #include <errno.h>
30 #include <netdb.h>
31 #include <time.h>
32
33 #include <sys/socket.h>
34 #include <sys/mount.h>
35 #include <netinet/in.h>
36 #include <arpa/inet.h>
37
38 #include "xcommon.h"
39 #include "mount.h"
40 #include "nls.h"
41 #include "mount_constants.h"
42 #include "stropts.h"
43 #include "error.h"
44 #include "network.h"
45 #include "parse_opt.h"
46 #include "version.h"
47 #include "parse_dev.h"
48
49 #ifndef NFS_PROGRAM
50 #define NFS_PROGRAM     (100003)
51 #endif
52
53 #ifndef NFS_PORT
54 #define NFS_PORT        (2049)
55 #endif
56
57 #ifndef NFS_MAXHOSTNAME
58 #define NFS_MAXHOSTNAME         (255)
59 #endif
60
61 #ifndef NFS_MAXPATHNAME
62 #define NFS_MAXPATHNAME         (1024)
63 #endif
64
65 #ifndef NFS_DEF_FG_TIMEOUT_MINUTES
66 #define NFS_DEF_FG_TIMEOUT_MINUTES      (2u)
67 #endif
68
69 #ifndef NFS_DEF_BG_TIMEOUT_MINUTES
70 #define NFS_DEF_BG_TIMEOUT_MINUTES      (10000u)
71 #endif
72
73 extern int nfs_mount_data_version;
74 extern char *progname;
75 extern int verbose;
76 extern int sloppy;
77
78 struct nfsmount_info {
79         const char              *spec,          /* server:/path */
80                                 *node,          /* mounted-on dir */
81                                 *type;          /* "nfs" or "nfs4" */
82         char                    *hostname;      /* server's hostname */
83
84         struct mount_options    *options;       /* parsed mount options */
85         char                    **extra_opts;   /* string for /etc/mtab */
86
87         int                     flags,          /* MS_ flags */
88                                 fake,           /* actually do the mount? */
89                                 child;          /* forked bg child? */
90
91         sa_family_t             family;         /* supported address family */
92 };
93
94 /*
95  * Obtain a retry timeout value based on the value of the "retry=" option.
96  *
97  * Returns a time_t timeout timestamp, in seconds.
98  */
99 static time_t nfs_parse_retry_option(struct mount_options *options,
100                                      unsigned int timeout_minutes)
101 {
102         char *retry_option, *endptr;
103
104         retry_option = po_get(options, "retry");
105         if (retry_option) {
106                 long tmp;
107
108                 errno = 0;
109                 tmp = strtol(retry_option, &endptr, 10);
110                 if (errno == 0 && endptr != retry_option && tmp >= 0)
111                         timeout_minutes = tmp;
112                 else if (verbose)
113                         nfs_error(_("%s: invalid retry timeout was specified; "
114                                         "using default timeout"), progname);
115         }
116
117         return time(NULL) + (time_t)(timeout_minutes * 60);
118 }
119
120 /*
121  * Convert the passed-in sockaddr-style address to presentation
122  * format, then append an option of the form "keyword=address".
123  *
124  * Returns 1 if the option was appended successfully; otherwise zero.
125  */
126 static int nfs_append_generic_address_option(const struct sockaddr *sap,
127                                              const socklen_t salen,
128                                              const char *keyword,
129                                              struct mount_options *options)
130 {
131         char address[NI_MAXHOST];
132         char new_option[512];
133
134         if (!nfs_present_sockaddr(sap, salen, address, sizeof(address)))
135                 goto out_err;
136
137         if (snprintf(new_option, sizeof(new_option), "%s=%s",
138                                         keyword, address) >= sizeof(new_option))
139                 goto out_err;
140
141         if (po_append(options, new_option) != PO_SUCCEEDED)
142                 goto out_err;
143
144         return 1;
145
146 out_err:
147         nfs_error(_("%s: failed to construct %s option"), progname, keyword);
148         return 0;
149 }
150
151 /*
152  * Append the 'addr=' option to the options string to pass a resolved
153  * server address to the kernel.  After a successful mount, this address
154  * is also added to /etc/mtab for use when unmounting.
155  *
156  * If 'addr=' is already present, we strip it out.  This prevents users
157  * from setting a bogus 'addr=' option themselves, and also allows bg
158  * retries to recompute the server's address, in case it has changed.
159  *
160  * Returns 1 if 'addr=' option appended successfully;
161  * otherwise zero.
162  */
163 static int nfs_append_addr_option(const struct sockaddr *sap,
164                                   socklen_t salen,
165                                   struct mount_options *options)
166 {
167         po_remove_all(options, "addr");
168         return nfs_append_generic_address_option(sap, salen, "addr", options);
169 }
170
171 /*
172  * Called to discover our address and append an appropriate 'clientaddr='
173  * option to the options string.
174  *
175  * Returns 1 if 'clientaddr=' option created successfully or if
176  * 'clientaddr=' option is already present; otherwise zero.
177  */
178 static int nfs_append_clientaddr_option(const struct sockaddr *sap,
179                                         socklen_t salen,
180                                         struct mount_options *options)
181 {
182         struct sockaddr_storage dummy;
183         struct sockaddr *my_addr = (struct sockaddr *)&dummy;
184         socklen_t my_len = sizeof(dummy);
185
186         if (po_contains(options, "clientaddr") == PO_FOUND)
187                 return 1;
188
189         nfs_callback_address(sap, salen, my_addr, &my_len);
190
191         return nfs_append_generic_address_option(my_addr, my_len,
192                                                         "clientaddr", options);
193 }
194
195 /*
196  * Resolve the 'mounthost=' hostname and append a new option using
197  * the resulting address.
198  */
199 static int nfs_fix_mounthost_option(const sa_family_t family,
200                                     struct mount_options *options)
201 {
202         struct sockaddr_storage dummy;
203         struct sockaddr *sap = (struct sockaddr *)&dummy;
204         socklen_t salen = sizeof(dummy);
205         char *mounthost;
206
207         mounthost = po_get(options, "mounthost");
208         if (!mounthost)
209                 return 1;
210
211         if (!nfs_name_to_address(mounthost, family, sap, &salen)) {
212                 nfs_error(_("%s: unable to determine mount server's address"),
213                                 progname);
214                 return 0;
215         }
216
217         return nfs_append_generic_address_option(sap, salen,
218                                                         "mountaddr", options);
219 }
220
221 /*
222  * Returns zero if the "lock" option is in effect, but statd
223  * can't be started.  Otherwise, returns 1.
224  */
225 static int nfs_verify_lock_option(struct mount_options *options)
226 {
227         if (po_rightmost(options, "nolock", "lock") == PO_KEY1_RIGHTMOST)
228                 return 1;
229
230         if (!start_statd()) {
231                 nfs_error(_("%s: rpc.statd is not running but is "
232                             "required for remote locking."), progname);
233                 nfs_error(_("%s: Either use '-o nolock' to keep "
234                             "locks local, or start statd."), progname);
235                 return 0;
236         }
237
238         return 1;
239 }
240
241 static int nfs_append_sloppy_option(struct mount_options *options)
242 {
243         if (!sloppy || linux_version_code() < MAKE_VERSION(2, 6, 27))
244                 return 1;
245
246         if (po_append(options, "sloppy") == PO_FAILED)
247                 return 0;
248         return 1;
249 }
250
251 /*
252  * Set up mandatory NFS mount options.
253  *
254  * Returns 1 if successful; otherwise zero.
255  */
256 static int nfs_validate_options(struct nfsmount_info *mi)
257 {
258         struct sockaddr_storage dummy;
259         struct sockaddr *sap = (struct sockaddr *)&dummy;
260         socklen_t salen = sizeof(dummy);
261
262         if (!nfs_parse_devname(mi->spec, &mi->hostname, NULL))
263                 return 0;
264
265         if (!nfs_name_to_address(mi->hostname, mi->family, sap, &salen))
266                 return 0;
267
268         if (strncmp(mi->type, "nfs4", 4) == 0) {
269                 if (!nfs_append_clientaddr_option(sap, salen, mi->options))
270                         return 0;
271         } else {
272                 if (!nfs_fix_mounthost_option(mi->family, mi->options))
273                         return 0;
274                 if (!mi->fake && !nfs_verify_lock_option(mi->options))
275                         return 0;
276         }
277
278         if (!nfs_append_sloppy_option(mi->options))
279                 return 0;
280
281         return nfs_append_addr_option(sap, salen, mi->options);
282 }
283
284 /*
285  * Distinguish between permanent and temporary errors.
286  *
287  * Returns 0 if the passed-in error is temporary, thus the
288  * mount system call should be retried; returns one if the
289  * passed-in error is permanent, thus the mount system call
290  * should not be retried.
291  */
292 static int nfs_is_permanent_error(int error)
293 {
294         switch (error) {
295         case ESTALE:
296         case ETIMEDOUT:
297         case ECONNREFUSED:
298                 return 0;       /* temporary */
299         default:
300                 return 1;       /* permanent */
301         }
302 }
303
304 /*
305  * Reconstruct the mount option string based on a portmapper probe
306  * of the server.  Returns one if the server's portmapper returned
307  * something we can use, otherwise zero.
308  *
309  * To handle version and transport protocol fallback properly, we
310  * need to parse some of the mount options in order to set up a
311  * portmap probe.  Mount options that nfs_rewrite_mount_options()
312  * doesn't recognize are left alone.
313  *
314  * Returns a new group of mount options if successful; otherwise
315  * NULL is returned if some failure occurred.
316  */
317 static struct mount_options *nfs_rewrite_mount_options(char *str)
318 {
319         struct mount_options *options;
320         char *option, new_option[64];
321         clnt_addr_t mnt_server = { };
322         clnt_addr_t nfs_server = { };
323         int p;
324
325         options = po_split(str);
326         if (!options) {
327                 errno = EFAULT;
328                 return NULL;
329         }
330
331         errno = EINVAL;
332         option = po_get(options, "addr");
333         if (option) {
334                 nfs_server.saddr.sin_family = AF_INET;
335                 if (!inet_aton((const char *)option, &nfs_server.saddr.sin_addr))
336                         goto err;
337         } else
338                 goto err;
339
340         option = po_get(options, "mountaddr");
341         if (option) {
342                 mnt_server.saddr.sin_family = AF_INET;
343                 if (!inet_aton((const char *)option, &mnt_server.saddr.sin_addr))
344                         goto err;
345         } else
346                 memcpy(&mnt_server.saddr, &nfs_server.saddr,
347                                 sizeof(mnt_server.saddr));
348
349         option = po_get(options, "mountport");
350         if (option)
351                 mnt_server.pmap.pm_port = atoi(option);
352         mnt_server.pmap.pm_prog = MOUNTPROG;
353         option = po_get(options, "mountvers");
354         if (option)
355                 mnt_server.pmap.pm_vers = atoi(option);
356         option = po_get(options, "mountproto");
357         if (option) {
358                 if (strcmp(option, "tcp") == 0) {
359                         mnt_server.pmap.pm_prot = IPPROTO_TCP;
360                         po_remove_all(options, "mountproto");
361                 }
362                 if (strcmp(option, "udp") == 0) {
363                         mnt_server.pmap.pm_prot = IPPROTO_UDP;
364                         po_remove_all(options, "mountproto");
365                 }
366         }
367
368         option = po_get(options, "port");
369         if (option) {
370                 nfs_server.pmap.pm_port = atoi(option);
371                 po_remove_all(options, "port");
372         }
373         nfs_server.pmap.pm_prog = NFS_PROGRAM;
374
375         option = po_get(options, "nfsvers");
376         if (option) {
377                 nfs_server.pmap.pm_vers = atoi(option);
378                 po_remove_all(options, "nfsvers");
379         }
380         option = po_get(options, "vers");
381         if (option) {
382                 nfs_server.pmap.pm_vers = atoi(option);
383                 po_remove_all(options, "vers");
384         }
385         option = po_get(options, "proto");
386         if (option) {
387                 if (strcmp(option, "tcp") == 0) {
388                         nfs_server.pmap.pm_prot = IPPROTO_TCP;
389                         po_remove_all(options, "proto");
390                 }
391                 if (strcmp(option, "udp") == 0) {
392                         nfs_server.pmap.pm_prot = IPPROTO_UDP;
393                         po_remove_all(options, "proto");
394                 }
395         }
396         p = po_rightmost(options, "tcp", "udp");
397         switch (p) {
398         case PO_KEY2_RIGHTMOST:
399                 nfs_server.pmap.pm_prot = IPPROTO_UDP;
400                 break;
401         case PO_KEY1_RIGHTMOST:
402                 nfs_server.pmap.pm_prot = IPPROTO_TCP;
403                 break;
404         }
405         po_remove_all(options, "tcp");
406         po_remove_all(options, "udp");
407
408         if (!probe_bothports(&mnt_server, &nfs_server)) {
409                 errno = ESPIPE;
410                 goto err;
411         }
412
413         snprintf(new_option, sizeof(new_option) - 1,
414                  "nfsvers=%lu", nfs_server.pmap.pm_vers);
415         if (po_append(options, new_option) == PO_FAILED)
416                 goto err;
417
418         if (nfs_server.pmap.pm_prot == IPPROTO_TCP)
419                 snprintf(new_option, sizeof(new_option) - 1,
420                          "proto=tcp");
421         else
422                 snprintf(new_option, sizeof(new_option) - 1,
423                          "proto=udp");
424         if (po_append(options, new_option) == PO_FAILED)
425                 goto err;
426
427         if (nfs_server.pmap.pm_port != NFS_PORT) {
428                 snprintf(new_option, sizeof(new_option) - 1,
429                          "port=%lu", nfs_server.pmap.pm_port);
430                 if (po_append(options, new_option) == PO_FAILED)
431                         goto err;
432
433         }
434
435         if (mnt_server.pmap.pm_prot == IPPROTO_TCP)
436                 snprintf(new_option, sizeof(new_option) - 1,
437                          "mountproto=tcp");
438         else
439                 snprintf(new_option, sizeof(new_option) - 1,
440                          "mountproto=udp");
441         if (po_append(options, new_option) == PO_FAILED)
442                 goto err;
443
444         snprintf(new_option, sizeof(new_option) - 1,
445                  "mountport=%lu", mnt_server.pmap.pm_port);
446         if (po_append(options, new_option) == PO_FAILED)
447                 goto err;
448
449         errno = 0;
450         return options;
451
452 err:
453         po_destroy(options);
454         return NULL;
455 }
456
457 /*
458  * Do the mount(2) system call.
459  *
460  * Returns 1 if successful, otherwise zero.
461  * "errno" is set to reflect the individual error.
462  */
463 static int nfs_sys_mount(const struct nfsmount_info *mi, const char *type,
464                          const char *options)
465 {
466         int result;
467
468         result = mount(mi->spec, mi->node, type,
469                                 mi->flags & ~(MS_USER|MS_USERS), options);
470         if (verbose && result) {
471                 int save = errno;
472                 nfs_error(_("%s: mount(2): %s"), progname, strerror(save));
473                 errno = save;
474         }
475         return !result;
476 }
477
478 /*
479  * Retry an NFS mount that failed because the requested service isn't
480  * available on the server.
481  *
482  * Returns 1 if successful.  Otherwise, returns zero.
483  * "errno" is set to reflect the individual error.
484  *
485  * Side effect: If the retry is successful, both 'options' and
486  * 'extra_opts' are updated to reflect the mount options that worked.
487  * If the retry fails, 'options' and 'extra_opts' are left unchanged.
488  */
489 static int nfs_retry_nfs23mount(struct nfsmount_info *mi)
490 {
491         struct mount_options *retry_options;
492         char *retry_str = NULL;
493         char **extra_opts = mi->extra_opts;
494
495         retry_options = nfs_rewrite_mount_options(*extra_opts);
496         if (!retry_options)
497                 return 0;
498
499         if (po_join(retry_options, &retry_str) == PO_FAILED) {
500                 po_destroy(retry_options);
501                 errno = EIO;
502                 return 0;
503         }
504
505         if (verbose)
506                 printf(_("%s: text-based options (retry): '%s'\n"),
507                         progname, retry_str);
508
509         if (!nfs_sys_mount(mi, "nfs", retry_str)) {
510                 po_destroy(retry_options);
511                 free(retry_str);
512                 return 0;
513         }
514
515         free(*extra_opts);
516         *extra_opts = retry_str;
517         po_replace(mi->options, retry_options);
518         return 1;
519 }
520
521 /*
522  * Attempt an NFSv2/3 mount via a mount(2) system call.  If the kernel
523  * claims the requested service isn't supported on the server, probe
524  * the server to see what's supported, rewrite the mount options,
525  * and retry the request.
526  *
527  * Returns 1 if successful.  Otherwise, returns zero.
528  * "errno" is set to reflect the individual error.
529  *
530  * Side effect: If the retry is successful, both 'options' and
531  * 'extra_opts' are updated to reflect the mount options that worked.
532  * If the retry fails, 'options' and 'extra_opts' are left unchanged.
533  */
534 static int nfs_try_nfs23mount(struct nfsmount_info *mi)
535 {
536         char **extra_opts = mi->extra_opts;
537
538         if (po_join(mi->options, extra_opts) == PO_FAILED) {
539                 errno = EIO;
540                 return 0;
541         }
542
543         if (verbose)
544                 printf(_("%s: text-based options: '%s'\n"),
545                         progname, *extra_opts);
546
547         if (mi->fake)
548                 return 1;
549
550         if (nfs_sys_mount(mi, "nfs", *extra_opts))
551                 return 1;
552
553         /*
554          * The kernel returns EOPNOTSUPP if the RPC bind failed,
555          * and EPROTONOSUPPORT if the version isn't supported.
556          */
557         if (errno != EOPNOTSUPP && errno != EPROTONOSUPPORT)
558                 return 0;
559
560         return nfs_retry_nfs23mount(mi);
561 }
562
563 /*
564  * Attempt an NFS v4 mount via a mount(2) system call.
565  *
566  * Returns 1 if successful.  Otherwise, returns zero.
567  * "errno" is set to reflect the individual error.
568  */
569 static int nfs_try_nfs4mount(struct nfsmount_info *mi)
570 {
571         char **extra_opts = mi->extra_opts;
572
573         if (po_join(mi->options, extra_opts) == PO_FAILED) {
574                 errno = EIO;
575                 return 0;
576         }
577
578         if (verbose)
579                 printf(_("%s: text-based options: '%s'\n"),
580                         progname, *extra_opts);
581
582         if (mi->fake)
583                 return 1;
584
585         return nfs_sys_mount(mi, "nfs4", *extra_opts);
586 }
587
588 /*
589  * Perform either an NFSv2/3 mount, or an NFSv4 mount system call.
590  *
591  * Returns 1 if successful.  Otherwise, returns zero.
592  * "errno" is set to reflect the individual error.
593  */
594 static int nfs_try_mount(struct nfsmount_info *mi)
595 {
596         if (strncmp(mi->type, "nfs4", 4) == 0)
597                 return nfs_try_nfs4mount(mi);
598         else
599                 return nfs_try_nfs23mount(mi);
600 }
601
602 /*
603  * Handle "foreground" NFS mounts.
604  *
605  * Retry the mount request for as long as the 'retry=' option says.
606  *
607  * Returns a valid mount command exit code.
608  */
609 static int nfsmount_fg(struct nfsmount_info *mi)
610 {
611         unsigned int secs = 1;
612         time_t timeout;
613
614         timeout = nfs_parse_retry_option(mi->options,
615                                          NFS_DEF_FG_TIMEOUT_MINUTES);
616         if (verbose)
617                 printf(_("%s: timeout set for %s"),
618                         progname, ctime(&timeout));
619
620         for (;;) {
621                 if (nfs_try_mount(mi))
622                         return EX_SUCCESS;
623
624                 if (nfs_is_permanent_error(errno))
625                         break;
626
627                 if (time(NULL) > timeout) {
628                         errno = ETIMEDOUT;
629                         break;
630                 }
631
632                 if (errno != ETIMEDOUT) {
633                         if (sleep(secs))
634                                 break;
635                         secs <<= 1;
636                         if (secs > 10)
637                                 secs = 10;
638                 }
639         };
640
641         mount_error(mi->spec, mi->node, errno);
642         return EX_FAIL;
643 }
644
645 /*
646  * Handle "background" NFS mount [first try]
647  *
648  * Returns a valid mount command exit code.
649  *
650  * EX_BG should cause the caller to fork and invoke nfsmount_child.
651  */
652 static int nfsmount_parent(struct nfsmount_info *mi)
653 {
654         if (nfs_try_mount(mi))
655                 return EX_SUCCESS;
656
657         if (nfs_is_permanent_error(errno)) {
658                 mount_error(mi->spec, mi->node, errno);
659                 return EX_FAIL;
660         }
661
662         sys_mount_errors(mi->hostname, errno, 1, 1);
663         return EX_BG;
664 }
665
666 /*
667  * Handle "background" NFS mount [retry daemon]
668  *
669  * Returns a valid mount command exit code: EX_SUCCESS if successful,
670  * EX_FAIL if a failure occurred.  There's nothing to catch the
671  * error return, though, so we use sys_mount_errors to log the
672  * failure.
673  */
674 static int nfsmount_child(struct nfsmount_info *mi)
675 {
676         unsigned int secs = 1;
677         time_t timeout;
678
679         timeout = nfs_parse_retry_option(mi->options,
680                                          NFS_DEF_BG_TIMEOUT_MINUTES);
681
682         for (;;) {
683                 if (sleep(secs))
684                         break;
685                 secs <<= 1;
686                 if (secs > 120)
687                         secs = 120;
688
689                 if (nfs_try_mount(mi))
690                         return EX_SUCCESS;
691
692                 if (nfs_is_permanent_error(errno))
693                         break;
694
695                 if (time(NULL) > timeout)
696                         break;
697
698                 sys_mount_errors(mi->hostname, errno, 1, 1);
699         };
700
701         sys_mount_errors(mi->hostname, errno, 1, 0);
702         return EX_FAIL;
703 }
704
705 /*
706  * Handle "background" NFS mount
707  *
708  * Returns a valid mount command exit code.
709  */
710 static int nfsmount_bg(struct nfsmount_info *mi)
711 {
712         if (!mi->child)
713                 return nfsmount_parent(mi);
714         else
715                 return nfsmount_child(mi);
716 }
717
718 /*
719  * Process mount options and try a mount system call.
720  *
721  * Returns a valid mount command exit code.
722  */
723 static int nfsmount_start(struct nfsmount_info *mi)
724 {
725         if (!nfs_validate_options(mi))
726                 return EX_FAIL;
727
728         if (po_rightmost(mi->options, "bg", "fg") == PO_KEY1_RIGHTMOST)
729                 return nfsmount_bg(mi);
730         else
731                 return nfsmount_fg(mi);
732 }
733
734 /**
735  * nfsmount_string - Mount an NFS file system using C string options
736  * @spec: C string specifying remote share to mount ("hostname:path")
737  * @node: C string pathname of local mounted-on directory
738  * @type: C string that represents file system type ("nfs" or "nfs4")
739  * @flags: MS_ style mount flags
740  * @extra_opts: pointer to C string containing fs-specific mount options
741  *              (input and output argument)
742  * @fake: flag indicating whether to carry out the whole operation
743  * @child: one if this is a mount daemon (bg)
744  */
745 int nfsmount_string(const char *spec, const char *node, const char *type,
746                     int flags, char **extra_opts, int fake, int child)
747 {
748         struct nfsmount_info mi = {
749                 .spec           = spec,
750                 .node           = node,
751                 .type           = type,
752                 .extra_opts     = extra_opts,
753                 .flags          = flags,
754                 .fake           = fake,
755                 .child          = child,
756 #ifdef IPV6_SUPPORTED
757                 .family         = AF_UNSPEC,    /* either IPv4 or v6 */
758 #else
759                 .family         = AF_INET,      /* only IPv4 */
760 #endif
761         };
762         int retval = EX_FAIL;
763
764         mi.options = po_split(*extra_opts);
765         if (mi.options) {
766                 retval = nfsmount_start(&mi);
767                 po_destroy(mi.options);
768         } else
769                 nfs_error(_("%s: internal option parsing error"), progname);
770
771         free(mi.hostname);
772         return retval;
773 }