]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/mount/network.c
Imported Upstream version 1.2.3
[nfs-utils.git] / utils / mount / network.c
1 /*
2  * network.c -- Provide common network functions for NFS mount/umount
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 <ctype.h>
29 #include <unistd.h>
30 #include <stdio.h>
31 #include <string.h>
32 #include <stdlib.h>
33 #include <errno.h>
34 #include <netdb.h>
35 #include <time.h>
36
37 #include <sys/types.h>
38 #include <sys/socket.h>
39 #include <sys/wait.h>
40 #include <sys/stat.h>
41 #include <netinet/in.h>
42 #include <rpc/rpc.h>
43 #include <rpc/pmap_prot.h>
44 #include <rpc/pmap_clnt.h>
45
46 #include "sockaddr.h"
47 #include "xcommon.h"
48 #include "mount.h"
49 #include "nls.h"
50 #include "nfs_mount.h"
51 #include "mount_constants.h"
52 #include "nfsrpc.h"
53 #include "parse_opt.h"
54 #include "network.h"
55 #include "conffile.h"
56 #include "nfslib.h"
57
58 #define PMAP_TIMEOUT    (10)
59 #define CONNECT_TIMEOUT (20)
60 #define MOUNT_TIMEOUT   (30)
61
62 extern int nfs_mount_data_version;
63 extern char *progname;
64 extern int verbose;
65
66 static const char *nfs_ns_pgmtbl[] = {
67         "status",
68         NULL,
69 };
70
71 static const char *nfs_mnt_pgmtbl[] = {
72         "mount",
73         "mountd",
74         NULL,
75 };
76
77 static const char *nfs_nfs_pgmtbl[] = {
78         "nfs",
79         "nfsprog",
80         NULL,
81 };
82
83 static const char *nfs_transport_opttbl[] = {
84         "udp",
85         "tcp",
86         "rdma",
87         "proto",
88         NULL,
89 };
90
91 static const char *nfs_version_opttbl[] = {
92         "v2",
93         "v3",
94         "v4",
95         "vers",
96         "nfsvers",
97         NULL,
98 };
99
100 static const unsigned long nfs_to_mnt[] = {
101         0,
102         0,
103         1,
104         3,
105 };
106
107 static const unsigned long mnt_to_nfs[] = {
108         0,
109         2,
110         2,
111         3,
112 };
113
114 /*
115  * Map an NFS version into the corresponding Mountd version
116  */
117 unsigned long nfsvers_to_mnt(const unsigned long vers)
118 {
119         if (vers <= 3)
120                 return nfs_to_mnt[vers];
121         return 0;
122 }
123
124 /*
125  * Map a Mountd version into the corresponding NFS version
126  */
127 static unsigned long mntvers_to_nfs(const unsigned long vers)
128 {
129         if (vers <= 3)
130                 return mnt_to_nfs[vers];
131         return 0;
132 }
133
134 static const unsigned int probe_udp_only[] = {
135         IPPROTO_UDP,
136         0,
137 };
138
139 static const unsigned int probe_udp_first[] = {
140         IPPROTO_UDP,
141         IPPROTO_TCP,
142         0,
143 };
144
145 static const unsigned int probe_tcp_first[] = {
146         IPPROTO_TCP,
147         IPPROTO_UDP,
148         0,
149 };
150
151 static const unsigned long probe_nfs2_only[] = {
152         2,
153         0,
154 };
155
156 static const unsigned long probe_nfs3_first[] = {
157         3,
158         2,
159         0,
160 };
161
162 static const unsigned long probe_mnt1_first[] = {
163         1,
164         2,
165         0,
166 };
167
168 static const unsigned long probe_mnt3_first[] = {
169         3,
170         1,
171         2,
172         0,
173 };
174
175 static const unsigned int *nfs_default_proto(void);
176 #ifdef MOUNT_CONFIG
177 static const unsigned int *nfs_default_proto()
178 {
179         extern unsigned long config_default_proto;
180         /*
181          * If the default proto has been set and 
182          * its not TCP, start with UDP
183          */
184         if (config_default_proto && config_default_proto != IPPROTO_TCP)
185                 return probe_udp_first;
186
187         return probe_tcp_first; 
188 }
189 #else
190 static const unsigned int *nfs_default_proto() 
191 {
192         return probe_tcp_first; 
193 }
194 #endif /* MOUNT_CONFIG */
195
196 /**
197  * nfs_lookup - resolve hostname to an IPv4 or IPv6 socket address
198  * @hostname: pointer to C string containing DNS hostname to resolve
199  * @family: address family hint
200  * @sap: pointer to buffer to fill with socket address
201  * @len: IN: size of buffer to fill; OUT: size of socket address
202  *
203  * Returns 1 and places a socket address at @sap if successful;
204  * otherwise zero.
205  */
206 int nfs_lookup(const char *hostname, const sa_family_t family,
207                 struct sockaddr *sap, socklen_t *salen)
208 {
209         struct addrinfo *gai_results;
210         struct addrinfo gai_hint = {
211 #ifdef HAVE_DECL_AI_ADDRCONFIG
212                 .ai_flags       = AI_ADDRCONFIG,
213 #endif  /* HAVE_DECL_AI_ADDRCONFIG */
214                 .ai_family      = family,
215         };
216         socklen_t len = *salen;
217         int error, ret = 0;
218
219         *salen = 0;
220
221         error = getaddrinfo(hostname, NULL, &gai_hint, &gai_results);
222         switch (error) {
223         case 0:
224                 break;
225         case EAI_SYSTEM:
226                 nfs_error(_("%s: DNS resolution failed for %s: %s"),
227                         progname, hostname, strerror(errno));
228                 return ret;
229         default:
230                 nfs_error(_("%s: DNS resolution failed for %s: %s"),
231                         progname, hostname, gai_strerror(error));
232                 return ret;
233         }
234
235         switch (gai_results->ai_addr->sa_family) {
236         case AF_INET:
237         case AF_INET6:
238                 if (len >= gai_results->ai_addrlen) {
239                         *salen = gai_results->ai_addrlen;
240                         memcpy(sap, gai_results->ai_addr, *salen);
241                         ret = 1;
242                 }
243                 break;
244         default:
245                 /* things are really broken if we get here, so warn */
246                 nfs_error(_("%s: unrecognized DNS resolution results for %s"),
247                                 progname, hostname);
248                 break;
249         }
250
251         freeaddrinfo(gai_results);
252         return ret;
253 }
254
255 /**
256  * nfs_gethostbyname - resolve a hostname to an IPv4 address
257  * @hostname: pointer to a C string containing a DNS hostname
258  * @sin: returns an IPv4 address 
259  *
260  * Returns 1 if successful, otherwise zero.
261  */
262 int nfs_gethostbyname(const char *hostname, struct sockaddr_in *sin)
263 {
264         socklen_t len = sizeof(*sin);
265
266         return nfs_lookup(hostname, AF_INET, (struct sockaddr *)sin, &len);
267 }
268
269 /**
270  * nfs_string_to_sockaddr - convert string address to sockaddr
271  * @address:    pointer to presentation format address to convert
272  * @sap:        pointer to socket address buffer to fill in
273  * @salen:      IN: length of address buffer
274  *              OUT: length of converted socket address
275  *
276  * Convert a presentation format address string to a socket address.
277  * Similar to nfs_lookup(), but the DNS query is squelched, and it
278  * won't make any noise if the getaddrinfo() call fails.
279  *
280  * Returns 1 and fills in @sap and @salen if successful; otherwise zero.
281  *
282  * See RFC 4038 section 5.1 or RFC 3513 section 2.2 for more details
283  * on presenting IPv6 addresses as text strings.
284  */
285 int nfs_string_to_sockaddr(const char *address, struct sockaddr *sap,
286                            socklen_t *salen)
287 {
288         struct addrinfo *gai_results;
289         struct addrinfo gai_hint = {
290                 .ai_flags       = AI_NUMERICHOST,
291         };
292         socklen_t len = *salen;
293         int ret = 0;
294
295         *salen = 0;
296
297         if (getaddrinfo(address, NULL, &gai_hint, &gai_results) == 0) {
298                 switch (gai_results->ai_addr->sa_family) {
299                 case AF_INET:
300                 case AF_INET6:
301                         if (len >= gai_results->ai_addrlen) {
302                                 *salen = gai_results->ai_addrlen;
303                                 memcpy(sap, gai_results->ai_addr, *salen);
304                                 ret = 1;
305                         }
306                         break;
307                 }
308                 freeaddrinfo(gai_results);
309         }
310
311         return ret;
312 }
313
314 /**
315  * nfs_present_sockaddr - convert sockaddr to string
316  * @sap: pointer to socket address to convert
317  * @salen: length of socket address
318  * @buf: pointer to buffer to fill in
319  * @buflen: length of buffer
320  *
321  * Convert the passed-in sockaddr-style address to presentation format.
322  * The presentation format address is placed in @buf and is
323  * '\0'-terminated.
324  *
325  * Returns 1 if successful; otherwise zero.
326  *
327  * See RFC 4038 section 5.1 or RFC 3513 section 2.2 for more details
328  * on presenting IPv6 addresses as text strings.
329  */
330 int nfs_present_sockaddr(const struct sockaddr *sap, const socklen_t salen,
331                          char *buf, const size_t buflen)
332 {
333 #ifdef HAVE_GETNAMEINFO
334         int result;
335
336         result = getnameinfo(sap, salen, buf, buflen,
337                                         NULL, 0, NI_NUMERICHOST);
338         if (!result)
339                 return 1;
340
341         nfs_error(_("%s: invalid server address: %s"), progname,
342                         gai_strerror(result));
343         return 0;
344 #else   /* HAVE_GETNAMEINFO */
345         char *addr;
346
347         if (sap->sa_family == AF_INET) {
348                 addr = inet_ntoa(((struct sockaddr_in *)sap)->sin_addr);
349                 if (addr && strlen(addr) < buflen) {
350                         strcpy(buf, addr);
351                         return 1;
352                 }
353         }
354
355         nfs_error(_("%s: invalid server address"), progname);
356         return 0;
357 #endif  /* HAVE_GETNAMEINFO */
358 }
359
360 /*
361  * Attempt to connect a socket, but time out after "timeout" seconds.
362  *
363  * On error return, caller closes the socket.
364  */
365 static int connect_to(int fd, struct sockaddr *addr,
366                         socklen_t addrlen, int timeout)
367 {
368         int ret, saved;
369         fd_set rset, wset;
370         struct timeval tv = {
371                 .tv_sec = timeout,
372         };
373
374         saved = fcntl(fd, F_GETFL, 0);
375         fcntl(fd, F_SETFL, saved | O_NONBLOCK);
376
377         ret = connect(fd, addr, addrlen);
378         if (ret < 0 && errno != EINPROGRESS)
379                 return -1;
380         if (ret == 0)
381                 goto out;
382
383         FD_ZERO(&rset);
384         FD_SET(fd, &rset);
385         wset = rset;
386         ret = select(fd + 1, &rset, &wset, NULL, &tv);
387         if (ret == 0) {
388                 errno = ETIMEDOUT;
389                 return -1;
390         }
391         if (FD_ISSET(fd, &rset) || FD_ISSET(fd, &wset)) {
392                 int error;
393                 socklen_t len = sizeof(error);
394                 if (getsockopt(fd, SOL_SOCKET, SO_ERROR, &error, &len) < 0)
395                         return -1;
396                 if (error) {
397                         errno = error;
398                         return -1;
399                 }
400         } else
401                 return -1;
402
403 out:
404         fcntl(fd, F_SETFL, saved);
405         return 0;
406 }
407
408 /*
409  * Create a socket that is locally bound to a reserved or non-reserved port.
410  *
411  * The caller should check rpc_createerr to determine the cause of any error.
412  */
413 static int get_socket(struct sockaddr_in *saddr, unsigned int p_prot,
414                         unsigned int timeout, int resvp, int conn)
415 {
416         int so, cc, type;
417         struct sockaddr_in laddr;
418         socklen_t namelen = sizeof(laddr);
419
420         type = (p_prot == IPPROTO_UDP ? SOCK_DGRAM : SOCK_STREAM);
421         if ((so = socket (AF_INET, type, p_prot)) < 0)
422                 goto err_socket;
423
424         laddr.sin_family = AF_INET;
425         laddr.sin_port = 0;
426         laddr.sin_addr.s_addr = htonl(INADDR_ANY);
427         if (resvp) {
428                 if (bindresvport(so, &laddr) < 0)
429                         goto err_bindresvport;
430         } else {
431                 cc = bind(so, (struct sockaddr *)&laddr, namelen);
432                 if (cc < 0)
433                         goto err_bind;
434         }
435         if (type == SOCK_STREAM || (conn && type == SOCK_DGRAM)) {
436                 cc = connect_to(so, (struct sockaddr *)saddr, namelen,
437                                 timeout);
438                 if (cc < 0)
439                         goto err_connect;
440         }
441         return so;
442
443 err_socket:
444         rpc_createerr.cf_stat = RPC_SYSTEMERROR;
445         rpc_createerr.cf_error.re_errno = errno;
446         if (verbose) {
447                 nfs_error(_("%s: Unable to create %s socket: errno %d (%s)\n"),
448                         progname, p_prot == IPPROTO_UDP ? _("UDP") : _("TCP"),
449                         errno, strerror(errno));
450         }
451         return RPC_ANYSOCK;
452
453 err_bindresvport:
454         rpc_createerr.cf_stat = RPC_SYSTEMERROR;
455         rpc_createerr.cf_error.re_errno = errno;
456         if (verbose) {
457                 nfs_error(_("%s: Unable to bindresvport %s socket: errno %d"
458                                 " (%s)\n"),
459                         progname, p_prot == IPPROTO_UDP ? _("UDP") : _("TCP"),
460                         errno, strerror(errno));
461         }
462         close(so);
463         return RPC_ANYSOCK;
464
465 err_bind:
466         rpc_createerr.cf_stat = RPC_SYSTEMERROR;
467         rpc_createerr.cf_error.re_errno = errno;
468         if (verbose) {
469                 nfs_error(_("%s: Unable to bind to %s socket: errno %d (%s)\n"),
470                         progname, p_prot == IPPROTO_UDP ? _("UDP") : _("TCP"),
471                         errno, strerror(errno));
472         }
473         close(so);
474         return RPC_ANYSOCK;
475
476 err_connect:
477         rpc_createerr.cf_stat = RPC_SYSTEMERROR;
478         rpc_createerr.cf_error.re_errno = errno;
479         if (verbose) {
480                 nfs_error(_("%s: Unable to connect to %s:%d, errno %d (%s)\n"),
481                         progname, inet_ntoa(saddr->sin_addr),
482                         ntohs(saddr->sin_port), errno, strerror(errno));
483         }
484         close(so);
485         return RPC_ANYSOCK;
486 }
487
488 static void nfs_pp_debug(const struct sockaddr *sap, const socklen_t salen,
489                          const rpcprog_t program, const rpcvers_t version,
490                          const unsigned short protocol,
491                          const unsigned short port)
492 {
493         char buf[NI_MAXHOST];
494
495         if (!verbose)
496                 return;
497
498         if (nfs_present_sockaddr(sap, salen, buf, sizeof(buf)) == 0) {
499                 buf[0] = '\0';
500                 strcat(buf, "unknown host");
501         }
502
503         fprintf(stderr, _("%s: trying %s prog %lu vers %lu prot %s port %d\n"),
504                         progname, buf, (unsigned long)program,
505                         (unsigned long)version,
506                         (protocol == IPPROTO_UDP ? _("UDP") : _("TCP")),
507                         port);
508 }
509
510 static void nfs_pp_debug2(const char *str)
511 {
512         if (!verbose)
513                 return;
514
515         if (rpc_createerr.cf_error.re_status == RPC_CANTRECV ||
516             rpc_createerr.cf_error.re_status == RPC_CANTSEND)
517                 nfs_error(_("%s: portmap query %s%s - %s"),
518                                 progname, str, clnt_spcreateerror(""),
519                                 strerror(rpc_createerr.cf_error.re_errno));
520         else
521                 nfs_error(_("%s: portmap query %s%s"),
522                                 progname, str, clnt_spcreateerror(""));
523 }
524
525 /*
526  * Use the portmapper to discover whether or not the service we want is
527  * available. The lists 'versions' and 'protos' define ordered sequences
528  * of service versions and udp/tcp protocols to probe for.
529  *
530  * Returns 1 if the requested service port is unambiguous and pingable;
531  * @pmap is filled in with the version, port, and transport protocol used
532  * during the successful ping.  Note that if a port is already specified
533  * in @pmap and it matches the rpcbind query result, nfs_probe_port() does
534  * not perform an RPC ping.
535  * 
536  * If an error occurs or the requested service isn't available, zero is
537  * returned; rpccreateerr.cf_stat is set to reflect the nature of the error.
538  */
539 static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen,
540                           struct pmap *pmap, const unsigned long *versions,
541                           const unsigned int *protos)
542 {
543         union nfs_sockaddr address;
544         struct sockaddr *saddr = &address.sa;
545         const unsigned long prog = pmap->pm_prog, *p_vers;
546         const unsigned int prot = (u_int)pmap->pm_prot, *p_prot;
547         const u_short port = (u_short) pmap->pm_port;
548         unsigned long vers = pmap->pm_vers;
549         unsigned short p_port;
550
551         memcpy(saddr, sap, salen);
552         p_prot = prot ? &prot : protos;
553         p_vers = vers ? &vers : versions;
554
555         for (;;) {
556                 if (verbose)
557                         printf(_("%s: prog %lu, trying vers=%lu, prot=%u\n"),
558                                 progname, prog, *p_vers, *p_prot);
559                 p_port = nfs_getport(saddr, salen, prog, *p_vers, *p_prot);
560                 if (p_port) {
561                         if (!port || port == p_port) {
562                                 nfs_set_port(saddr, p_port);
563                                 nfs_pp_debug(saddr, salen, prog, *p_vers,
564                                                 *p_prot, p_port);
565                                 if (nfs_rpc_ping(saddr, salen, prog,
566                                                         *p_vers, *p_prot, NULL))
567                                         goto out_ok;
568                         } else
569                                 rpc_createerr.cf_stat = RPC_PROGNOTREGISTERED;
570                 }
571                 if (rpc_createerr.cf_stat != RPC_PROGNOTREGISTERED &&
572                     rpc_createerr.cf_stat != RPC_TIMEDOUT &&
573                     rpc_createerr.cf_stat != RPC_CANTRECV &&
574                     rpc_createerr.cf_stat != RPC_PROGVERSMISMATCH)
575                         break;
576
577                 if (!prot) {
578                         if (*++p_prot) {
579                                 nfs_pp_debug2("retrying");
580                                 continue;
581                         }
582                         p_prot = protos;
583                 }
584                 if (rpc_createerr.cf_stat == RPC_TIMEDOUT ||
585                     rpc_createerr.cf_stat == RPC_CANTRECV)
586                         break;
587
588                 if (vers || !*++p_vers)
589                         break;
590         }
591
592         nfs_pp_debug2("failed");
593         return 0;
594
595 out_ok:
596         if (!vers)
597                 pmap->pm_vers = *p_vers;
598         if (!prot)
599                 pmap->pm_prot = *p_prot;
600         if (!port)
601                 pmap->pm_port = p_port;
602         nfs_clear_rpc_createerr();
603         return 1;
604 }
605 /*
606  * Probe a server's NFS service to determine which versions and
607  * transport protocols are supported.
608  *
609  * Returns 1 if the requested service port is unambiguous and pingable;
610  * @pmap is filled in with the version, port, and transport protocol used
611  * during the successful ping.  If all three are already specified, simply
612  * return success without an rpcbind query or RPC ping (we may be trying
613  * to mount an NFS service that is not advertised via rpcbind).
614  *
615  * If an error occurs or the requested service isn't available, zero is
616  * returned; rpccreateerr.cf_stat is set to reflect the nature of the error.
617  */
618 static int nfs_probe_nfsport(const struct sockaddr *sap, const socklen_t salen,
619                                 struct pmap *pmap)
620 {
621         if (pmap->pm_vers && pmap->pm_prot && pmap->pm_port)
622                 return 1;
623
624         if (nfs_mount_data_version >= 4) {
625                 const unsigned int *probe_proto;
626
627                 probe_proto = nfs_default_proto();
628
629                 return nfs_probe_port(sap, salen, pmap,
630                                         probe_nfs3_first, probe_proto);
631         } else
632                 return nfs_probe_port(sap, salen, pmap,
633                                         probe_nfs2_only, probe_udp_only);
634 }
635
636 /*
637  * Probe a server's mountd service to determine which versions and
638  * transport protocols are supported.
639  *
640  * Returns 1 if the requested service port is unambiguous and pingable;
641  * @pmap is filled in with the version, port, and transport protocol used
642  * during the successful ping.  If all three are already specified, simply
643  * return success without an rpcbind query or RPC ping (we may be trying
644  * to mount an NFS service that is not advertised via rpcbind).
645  * 
646  * If an error occurs or the requested service isn't available, zero is
647  * returned; rpccreateerr.cf_stat is set to reflect the nature of the error.
648  */
649 static int nfs_probe_mntport(const struct sockaddr *sap, const socklen_t salen,
650                                 struct pmap *pmap)
651 {
652         if (pmap->pm_vers && pmap->pm_prot && pmap->pm_port)
653                 return 1;
654
655         if (nfs_mount_data_version >= 4)
656                 return nfs_probe_port(sap, salen, pmap,
657                                         probe_mnt3_first, probe_udp_first);
658         else
659                 return nfs_probe_port(sap, salen, pmap,
660                                         probe_mnt1_first, probe_udp_only);
661 }
662
663 /*
664  * Probe a server's mountd service to determine which versions and
665  * transport protocols are supported.  Invoked when the protocol
666  * version is already known for both the NFS and mountd service.
667  *
668  * Returns 1 and fills in both @pmap structs if the requested service
669  * ports are unambiguous and pingable.  Otherwise zero is returned;
670  * rpccreateerr.cf_stat is set to reflect the nature of the error.
671  */
672 static int nfs_probe_version_fixed(const struct sockaddr *mnt_saddr,
673                         const socklen_t mnt_salen,
674                         struct pmap *mnt_pmap,
675                         const struct sockaddr *nfs_saddr,
676                         const socklen_t nfs_salen,
677                         struct pmap *nfs_pmap)
678 {
679         if (!nfs_probe_nfsport(nfs_saddr, nfs_salen, nfs_pmap))
680                 return 0;
681         return nfs_probe_mntport(mnt_saddr, mnt_salen, mnt_pmap);
682 }
683
684 /**
685  * nfs_probe_bothports - discover the RPC endpoints of mountd and NFS server
686  * @mnt_saddr:  pointer to socket address of mountd server
687  * @mnt_salen:  length of mountd server's address
688  * @mnt_pmap:   IN: partially filled-in mountd RPC service tuple;
689  *              OUT: fully filled-in mountd RPC service tuple
690  * @nfs_saddr:  pointer to socket address of NFS server
691  * @nfs_salen:  length of NFS server's address
692  * @nfs_pmap:   IN: partially filled-in NFS RPC service tuple;
693  *              OUT: fully filled-in NFS RPC service tuple
694  *
695  * Returns 1 and fills in both @pmap structs if the requested service
696  * ports are unambiguous and pingable.  Otherwise zero is returned;
697  * rpccreateerr.cf_stat is set to reflect the nature of the error.
698  */
699 int nfs_probe_bothports(const struct sockaddr *mnt_saddr,
700                         const socklen_t mnt_salen,
701                         struct pmap *mnt_pmap,
702                         const struct sockaddr *nfs_saddr,
703                         const socklen_t nfs_salen,
704                         struct pmap *nfs_pmap)
705 {
706         struct pmap save_nfs, save_mnt;
707         const unsigned long *probe_vers;
708
709         if (mnt_pmap->pm_vers && !nfs_pmap->pm_vers)
710                 nfs_pmap->pm_vers = mntvers_to_nfs(mnt_pmap->pm_vers);
711         else if (nfs_pmap->pm_vers && !mnt_pmap->pm_vers)
712                 mnt_pmap->pm_vers = nfsvers_to_mnt(nfs_pmap->pm_vers);
713
714         if (nfs_pmap->pm_vers)
715                 return nfs_probe_version_fixed(mnt_saddr, mnt_salen, mnt_pmap,
716                                                nfs_saddr, nfs_salen, nfs_pmap);
717
718         memcpy(&save_nfs, nfs_pmap, sizeof(save_nfs));
719         memcpy(&save_mnt, mnt_pmap, sizeof(save_mnt));
720         probe_vers = (nfs_mount_data_version >= 4) ?
721                         probe_mnt3_first : probe_mnt1_first;
722
723         for (; *probe_vers; probe_vers++) {
724                 nfs_pmap->pm_vers = mntvers_to_nfs(*probe_vers);
725                 if (nfs_probe_nfsport(nfs_saddr, nfs_salen, nfs_pmap) != 0) {
726                         mnt_pmap->pm_vers = *probe_vers;
727                         if (nfs_probe_mntport(mnt_saddr, mnt_salen, mnt_pmap) != 0)
728                                 return 1;
729                         memcpy(mnt_pmap, &save_mnt, sizeof(*mnt_pmap));
730                 }
731                 switch (rpc_createerr.cf_stat) {
732                 case RPC_PROGVERSMISMATCH:
733                 case RPC_PROGNOTREGISTERED:
734                         break;
735                 default:
736                         return 0;
737                 }
738                 memcpy(nfs_pmap, &save_nfs, sizeof(*nfs_pmap));
739         }
740
741         return 0;
742 }
743
744 /**
745  * probe_bothports - discover the RPC endpoints of mountd and NFS server
746  * @mnt_server: pointer to address and pmap argument for mountd results
747  * @nfs_server: pointer to address and pmap argument for NFS server
748  *
749  * This is the legacy API that takes "clnt_addr_t" for both servers,
750  * but supports only AF_INET addresses.
751  *
752  * Returns 1 and fills in the pmap field in both clnt_addr_t structs
753  * if the requested service ports are unambiguous and pingable.
754  * Otherwise zero is returned; rpccreateerr.cf_stat is set to reflect
755  * the nature of the error.
756  */
757 int probe_bothports(clnt_addr_t *mnt_server, clnt_addr_t *nfs_server)
758 {
759         return nfs_probe_bothports((struct sockaddr *)&mnt_server->saddr,
760                                         sizeof(mnt_server->saddr),
761                                         &mnt_server->pmap,
762                                         (struct sockaddr *)&nfs_server->saddr,
763                                         sizeof(nfs_server->saddr),
764                                         &nfs_server->pmap);
765 }
766
767 static int nfs_probe_statd(void)
768 {
769         struct sockaddr_in addr = {
770                 .sin_family             = AF_INET,
771                 .sin_addr.s_addr        = htonl(INADDR_LOOPBACK),
772         };
773         rpcprog_t program = nfs_getrpcbyname(NSMPROG, nfs_ns_pgmtbl);
774
775         return nfs_getport_ping((struct sockaddr *)&addr, sizeof(addr),
776                                 program, (rpcvers_t)1, IPPROTO_UDP);
777 }
778
779 /**
780  * start_statd - attempt to start rpc.statd
781  *
782  * Returns 1 if statd is running; otherwise zero.
783  */
784 int start_statd(void)
785 {
786 #ifdef START_STATD
787         struct stat stb;
788 #endif
789
790         if (nfs_probe_statd())
791                 return 1;
792
793 #ifdef START_STATD
794         if (stat(START_STATD, &stb) == 0) {
795                 if (S_ISREG(stb.st_mode) && (stb.st_mode & S_IXUSR)) {
796                         pid_t pid = fork();
797                         switch (pid) {
798                         case 0: /* child */
799                                 execl(START_STATD, START_STATD, NULL);
800                                 exit(1);
801                         case -1: /* error */
802                                 nfs_error(_("%s: fork failed: %s"),
803                                                 progname, strerror(errno));
804                                 break;
805                         default: /* parent */
806                                 waitpid(pid, NULL,0);
807                                 break;
808                         }
809                         if (nfs_probe_statd())
810                                 return 1;
811                 }
812         }
813 #endif
814
815         return 0;
816 }
817
818 /**
819  * nfs_advise_umount - ask the server to remove a share from it's rmtab
820  * @sap: pointer to IP address of server to call
821  * @salen: length of server address
822  * @pmap: partially filled-in mountd RPC service tuple
823  * @argp: directory path of share to "unmount"
824  *
825  * Returns one if the unmount call succeeded; zero if the unmount
826  * failed for any reason;  rpccreateerr.cf_stat is set to reflect
827  * the nature of the error.
828  *
829  * We use a fast timeout since this call is advisory only.
830  */
831 int nfs_advise_umount(const struct sockaddr *sap, const socklen_t salen,
832                       const struct pmap *pmap, const dirpath *argp)
833 {
834         union nfs_sockaddr address;
835         struct sockaddr *saddr = &address.sa;
836         struct pmap mnt_pmap = *pmap;
837         struct timeval timeout = {
838                 .tv_sec         = MOUNT_TIMEOUT >> 3,
839         };
840         CLIENT *client;
841         enum clnt_stat res = 0;
842
843         memcpy(saddr, sap, salen);
844         if (nfs_probe_mntport(saddr, salen, &mnt_pmap) == 0) {
845                 if (verbose)
846                         nfs_error(_("%s: Failed to discover mountd port%s"),
847                                 progname, clnt_spcreateerror(""));
848                 return 0;
849         }
850         nfs_set_port(saddr, mnt_pmap.pm_port);
851
852         client = nfs_get_priv_rpcclient(saddr, salen, mnt_pmap.pm_prot,
853                                         mnt_pmap.pm_prog, mnt_pmap.pm_vers,
854                                         &timeout);
855         if (client == NULL) {
856                 if (verbose)
857                         nfs_error(_("%s: Failed to create RPC client%s"),
858                                 progname, clnt_spcreateerror(""));
859                 return 0;
860         }
861
862         client->cl_auth = nfs_authsys_create();
863         if (client->cl_auth == NULL) {
864                 if (verbose)
865                         nfs_error(_("%s: Failed to create RPC auth handle"),
866                                 progname);
867                 CLNT_DESTROY(client);
868                 return 0;
869         }
870
871         res = CLNT_CALL(client, MOUNTPROC_UMNT,
872                         (xdrproc_t)xdr_dirpath, (caddr_t)argp,
873                         (xdrproc_t)xdr_void, NULL,
874                         timeout);
875         if (res != RPC_SUCCESS) {
876                 rpc_createerr.cf_stat = res;
877                 CLNT_GETERR(client, &rpc_createerr.cf_error);
878                 if (verbose)
879                         nfs_error(_("%s: UMNT call failed: %s"),
880                                 progname, clnt_sperrno(res));
881
882         }
883         auth_destroy(client->cl_auth);
884         CLNT_DESTROY(client);
885
886         if (res != RPC_SUCCESS)
887                 return 0;
888         return 1;
889 }
890
891 /**
892  * nfs_call_umount - ask the server to remove a share from it's rmtab
893  * @mnt_server: address of RPC MNT program server
894  * @argp: directory path of share to "unmount"
895  *
896  * Returns one if the unmount call succeeded; zero if the unmount
897  * failed for any reason.
898  *
899  * Note that a side effect of calling this function is that rpccreateerr
900  * is set.
901  */
902 int nfs_call_umount(clnt_addr_t *mnt_server, dirpath *argp)
903 {
904         struct sockaddr *sap = (struct sockaddr *)&mnt_server->saddr;
905         socklen_t salen = sizeof(mnt_server->saddr);
906         struct pmap *pmap = &mnt_server->pmap;
907         CLIENT *clnt;
908         enum clnt_stat res = 0;
909         int msock;
910
911         if (!nfs_probe_mntport(sap, salen, pmap))
912                 return 0;
913         clnt = mnt_openclnt(mnt_server, &msock);
914         if (!clnt)
915                 return 0;
916         res = clnt_call(clnt, MOUNTPROC_UMNT,
917                         (xdrproc_t)xdr_dirpath, (caddr_t)argp,
918                         (xdrproc_t)xdr_void, NULL,
919                         TIMEOUT);
920         mnt_closeclnt(clnt, msock);
921
922         if (res == RPC_SUCCESS)
923                 return 1;
924         return 0;
925 }
926
927 /**
928  * mnt_openclnt - get a handle for a remote mountd service
929  * @mnt_server: address and pmap arguments of mountd service
930  * @msock: returns a file descriptor of the underlying transport socket
931  *
932  * Returns an active handle for the remote's mountd service
933  */
934 CLIENT *mnt_openclnt(clnt_addr_t *mnt_server, int *msock)
935 {
936         struct sockaddr_in *mnt_saddr = &mnt_server->saddr;
937         struct pmap *mnt_pmap = &mnt_server->pmap;
938         CLIENT *clnt = NULL;
939
940         mnt_saddr->sin_port = htons((u_short)mnt_pmap->pm_port);
941         *msock = get_socket(mnt_saddr, mnt_pmap->pm_prot, MOUNT_TIMEOUT,
942                                 TRUE, FALSE);
943         if (*msock == RPC_ANYSOCK) {
944                 if (rpc_createerr.cf_error.re_errno == EADDRINUSE)
945                         /*
946                          * Probably in-use by a TIME_WAIT connection,
947                          * It is worth waiting a while and trying again.
948                          */
949                         rpc_createerr.cf_stat = RPC_TIMEDOUT;
950                 return NULL;
951         }
952
953         switch (mnt_pmap->pm_prot) {
954         case IPPROTO_UDP:
955                 clnt = clntudp_bufcreate(mnt_saddr,
956                                          mnt_pmap->pm_prog, mnt_pmap->pm_vers,
957                                          RETRY_TIMEOUT, msock,
958                                          MNT_SENDBUFSIZE, MNT_RECVBUFSIZE);
959                 break;
960         case IPPROTO_TCP:
961                 clnt = clnttcp_create(mnt_saddr,
962                                       mnt_pmap->pm_prog, mnt_pmap->pm_vers,
963                                       msock,
964                                       MNT_SENDBUFSIZE, MNT_RECVBUFSIZE);
965                 break;
966         }
967         if (clnt) {
968                 /* try to mount hostname:dirname */
969                 clnt->cl_auth = nfs_authsys_create();
970                 if (clnt->cl_auth)
971                         return clnt;
972                 CLNT_DESTROY(clnt);
973         }
974         return NULL;
975 }
976
977 /**
978  * mnt_closeclnt - terminate a handle for a remote mountd service
979  * @clnt: pointer to an active handle for a remote mountd service
980  * @msock: file descriptor of the underlying transport socket
981  *
982  */
983 void mnt_closeclnt(CLIENT *clnt, int msock)
984 {
985         auth_destroy(clnt->cl_auth);
986         clnt_destroy(clnt);
987         close(msock);
988 }
989
990 /**
991  * clnt_ping - send an RPC ping to the remote RPC service endpoint
992  * @saddr: server's address
993  * @prog: target RPC program number
994  * @vers: target RPC version number
995  * @prot: target RPC protocol
996  * @caddr: filled in with our network address
997  *
998  * Sigh... GETPORT queries don't actually check the version number.
999  * In order to make sure that the server actually supports the service
1000  * we're requesting, we open an RPC client, and fire off a NULL
1001  * RPC call.
1002  *
1003  * caddr is the network address that the server will use to call us back.
1004  * On multi-homed clients, this address depends on which NIC we use to
1005  * route requests to the server.
1006  *
1007  * Returns one if successful, otherwise zero.
1008  */
1009 int clnt_ping(struct sockaddr_in *saddr, const unsigned long prog,
1010                 const unsigned long vers, const unsigned int prot,
1011                 struct sockaddr_in *caddr)
1012 {
1013         CLIENT *clnt = NULL;
1014         int sock, stat;
1015         static char clnt_res;
1016         struct sockaddr dissolve;
1017
1018         rpc_createerr.cf_stat = stat = 0;
1019         sock = get_socket(saddr, prot, CONNECT_TIMEOUT, FALSE, TRUE);
1020         if (sock == RPC_ANYSOCK) {
1021                 if (rpc_createerr.cf_error.re_errno == ETIMEDOUT) {
1022                         /*
1023                          * TCP timeout. Bubble up the error to see 
1024                          * how it should be handled.
1025                          */
1026                         rpc_createerr.cf_stat = RPC_TIMEDOUT;
1027                 }
1028                 return 0;
1029         }
1030
1031         if (caddr) {
1032                 /* Get the address of our end of this connection */
1033                 socklen_t len = sizeof(*caddr);
1034                 if (getsockname(sock, caddr, &len) != 0)
1035                         caddr->sin_family = 0;
1036         }
1037
1038         switch(prot) {
1039         case IPPROTO_UDP:
1040                 /* The socket is connected (so we could getsockname successfully),
1041                  * but some servers on multi-homed hosts reply from
1042                  * the wrong address, so if we stay connected, we lose the reply.
1043                  */
1044                 dissolve.sa_family = AF_UNSPEC;
1045                 connect(sock, &dissolve, sizeof(dissolve));
1046
1047                 clnt = clntudp_bufcreate(saddr, prog, vers,
1048                                          RETRY_TIMEOUT, &sock,
1049                                          RPCSMALLMSGSIZE, RPCSMALLMSGSIZE);
1050                 break;
1051         case IPPROTO_TCP:
1052                 clnt = clnttcp_create(saddr, prog, vers, &sock,
1053                                       RPCSMALLMSGSIZE, RPCSMALLMSGSIZE);
1054                 break;
1055         }
1056         if (!clnt) {
1057                 close(sock);
1058                 return 0;
1059         }
1060         memset(&clnt_res, 0, sizeof(clnt_res));
1061         stat = clnt_call(clnt, NULLPROC,
1062                          (xdrproc_t)xdr_void, (caddr_t)NULL,
1063                          (xdrproc_t)xdr_void, (caddr_t)&clnt_res,
1064                          TIMEOUT);
1065         if (stat) {
1066                 clnt_geterr(clnt, &rpc_createerr.cf_error);
1067                 rpc_createerr.cf_stat = stat;
1068         }
1069         clnt_destroy(clnt);
1070         close(sock);
1071
1072         if (stat == RPC_SUCCESS)
1073                 return 1;
1074         else
1075                 return 0;
1076 }
1077
1078 /*
1079  * Try a getsockname() on a connected datagram socket.
1080  *
1081  * Returns 1 and fills in @buf if successful; otherwise, zero.
1082  *
1083  * A connected datagram socket prevents leaving a socket in TIME_WAIT.
1084  * This conserves the ephemeral port number space, helping reduce failed
1085  * socket binds during mount storms.
1086  */
1087 static int nfs_ca_sockname(const struct sockaddr *sap, const socklen_t salen,
1088                            struct sockaddr *buf, socklen_t *buflen)
1089 {
1090         struct sockaddr_in sin = {
1091                 .sin_family             = AF_INET,
1092                 .sin_addr.s_addr        = htonl(INADDR_ANY),
1093         };
1094         struct sockaddr_in6 sin6 = {
1095                 .sin6_family            = AF_INET6,
1096                 .sin6_addr              = IN6ADDR_ANY_INIT,
1097         };
1098         int sock;
1099
1100         sock = socket(sap->sa_family, SOCK_DGRAM, IPPROTO_UDP);
1101         if (sock < 0)
1102                 return 0;
1103
1104         switch (sap->sa_family) {
1105         case AF_INET:
1106                 if (bind(sock, (struct sockaddr *)&sin, sizeof(sin)) < 0) {
1107                         close(sock);
1108                         return 0;
1109                 }
1110                 break;
1111         case AF_INET6:
1112                 if (bind(sock, (struct sockaddr *)&sin6, sizeof(sin6)) < 0) {
1113                         close(sock);
1114                         return 0;
1115                 }
1116                 break;
1117         default:
1118                 errno = EAFNOSUPPORT;
1119                 return 0;
1120         }
1121
1122         if (connect(sock, sap, salen) < 0) {
1123                 close(sock);
1124                 return 0;
1125         }
1126
1127         return !getsockname(sock, buf, buflen);
1128 }
1129
1130 /*
1131  * Try to generate an address that prevents the server from calling us.
1132  *
1133  * Returns 1 and fills in @buf if successful; otherwise, zero.
1134  */
1135 static int nfs_ca_gai(const struct sockaddr *sap,
1136                       struct sockaddr *buf, socklen_t *buflen)
1137 {
1138         struct addrinfo *gai_results;
1139         struct addrinfo gai_hint = {
1140                 .ai_family      = sap->sa_family,
1141                 .ai_flags       = AI_PASSIVE,   /* ANYADDR */
1142         };
1143
1144         if (getaddrinfo(NULL, "", &gai_hint, &gai_results))
1145                 return 0;
1146
1147         *buflen = gai_results->ai_addrlen;
1148         memcpy(buf, gai_results->ai_addr, *buflen);
1149
1150         freeaddrinfo(gai_results);
1151
1152         return 1;
1153 }
1154
1155 /**
1156  * nfs_callback_address - acquire our local network address
1157  * @sap: pointer to address of remote
1158  * @sap_len: length of address
1159  * @buf: pointer to buffer to be filled in with local network address
1160  * @buflen: IN: length of buffer to fill in; OUT: length of filled-in address
1161  *
1162  * Discover a network address that an NFSv4 server can use to call us back.
1163  * On multi-homed clients, this address depends on which NIC we use to
1164  * route requests to the server.
1165  *
1166  * Returns 1 and fills in @buf if an unambiguous local address is
1167  * available; returns 1 and fills in an appropriate ANYADDR address
1168  * if a local address isn't available; otherwise, returns zero.
1169  */
1170 int nfs_callback_address(const struct sockaddr *sap, const socklen_t salen,
1171                          struct sockaddr *buf, socklen_t *buflen)
1172 {
1173         struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)buf;
1174
1175         if (nfs_ca_sockname(sap, salen, buf, buflen) == 0)
1176                 if (nfs_ca_gai(sap, buf, buflen) == 0)
1177                         goto out_failed;
1178
1179         /*
1180          * The server can't use an interface ID that was generated
1181          * here on the client, so always clear sin6_scope_id.
1182          */
1183         if (sin6->sin6_family == AF_INET6)
1184                 sin6->sin6_scope_id = 0;
1185
1186         return 1;
1187
1188 out_failed:
1189         *buflen = 0;
1190         if (verbose)
1191                 nfs_error(_("%s: failed to construct callback address"),
1192                                 progname);
1193         return 0;
1194 }
1195
1196 /*
1197  * "nfsprog" is supported only by the legacy mount command.  The
1198  * kernel mount client does not support this option.
1199  *
1200  * Returns TRUE if @program contains a valid value for this option,
1201  * or FALSE if the option was specified with an invalid value.
1202  */
1203 static int
1204 nfs_nfs_program(struct mount_options *options, unsigned long *program)
1205 {
1206         long tmp;
1207
1208         switch (po_get_numeric(options, "nfsprog", &tmp)) {
1209         case PO_NOT_FOUND:
1210                 break;
1211         case PO_FOUND:
1212                 if (tmp > 0) {
1213                         *program = tmp;
1214                         return 1;
1215                 }
1216         case PO_BAD_VALUE:
1217                 nfs_error(_("%s: invalid value for 'nfsprog=' option"),
1218                                 progname);
1219                 return 0;
1220         }
1221
1222         /*
1223          * NFS RPC program wasn't specified.  The RPC program
1224          * cannot be determined via an rpcbind query.
1225          */
1226         *program = nfs_getrpcbyname(NFSPROG, nfs_nfs_pgmtbl);
1227         return 1;
1228 }
1229
1230 /*
1231  * Returns TRUE if @version contains a valid value for this option,
1232  * or FALSE if the option was specified with an invalid value.
1233  */
1234 int
1235 nfs_nfs_version(struct mount_options *options, unsigned long *version)
1236 {
1237         long tmp;
1238
1239         switch (po_rightmost(options, nfs_version_opttbl)) {
1240         case 0: /* v2 */
1241                 *version = 2;
1242                 return 1;
1243         case 1: /* v3 */
1244                 *version = 3;
1245                 return 1;
1246         case 2: /* v4 */
1247                 *version = 4;
1248                 return 1;
1249         case 3: /* vers */
1250                 switch (po_get_numeric(options, "vers", &tmp)) {
1251                 case PO_FOUND:
1252                         if (tmp >= 2 && tmp <= 4) {
1253                                 *version = tmp;
1254                                 return 1;
1255                         }
1256                         return 0;
1257                 case PO_NOT_FOUND:
1258                         nfs_error(_("%s: parsing error on 'vers=' option\n"),
1259                                         progname);
1260                         return 0;
1261                 case PO_BAD_VALUE:
1262                         nfs_error(_("%s: invalid value for 'vers=' option"),
1263                                         progname);
1264                         return 0;
1265                 }
1266         case 4: /* nfsvers */
1267                 switch (po_get_numeric(options, "nfsvers", &tmp)) {
1268                 case PO_FOUND:
1269                         if (tmp >= 2 && tmp <= 4) {
1270                                 *version = tmp;
1271                                 return 1;
1272                         }
1273                         return 0;
1274                 case PO_NOT_FOUND:
1275                         nfs_error(_("%s: parsing error on 'nfsvers=' option\n"),
1276                                         progname);
1277                         return 0;
1278                 case PO_BAD_VALUE:
1279                         nfs_error(_("%s: invalid value for 'nfsvers=' option"),
1280                                         progname);
1281                         return 0;
1282                 }
1283         }
1284
1285         /*
1286          * NFS version wasn't specified.  The pmap version value
1287          * will be filled in later by an rpcbind query in this case.
1288          */
1289         *version = 0;
1290         return 1;
1291 }
1292
1293 /*
1294  * Returns TRUE if @protocol contains a valid value for this option,
1295  * or FALSE if the option was specified with an invalid value. On
1296  * error, errno is set.
1297  */
1298 int
1299 nfs_nfs_protocol(struct mount_options *options, unsigned long *protocol)
1300 {
1301         sa_family_t family;
1302         char *option;
1303
1304         switch (po_rightmost(options, nfs_transport_opttbl)) {
1305         case 0: /* udp */
1306                 *protocol = IPPROTO_UDP;
1307                 return 1;
1308         case 1: /* tcp */
1309                 *protocol = IPPROTO_TCP;
1310                 return 1;
1311         case 2: /* rdma */
1312                 *protocol = NFSPROTO_RDMA;
1313                 return 1;
1314         case 3: /* proto */
1315                 option = po_get(options, "proto");
1316                 if (option != NULL) {
1317                         if (!nfs_get_proto(option, &family, protocol)) {
1318                                 errno = EPROTONOSUPPORT;
1319                                 nfs_error(_("%s: Failed to find '%s' protocol"), 
1320                                         progname, option);
1321                                 return 0;
1322                         }
1323                         return 1;
1324                 }
1325         }
1326
1327         /*
1328          * NFS transport protocol wasn't specified.  The pmap
1329          * protocol value will be filled in later by an rpcbind
1330          * query in this case.
1331          */
1332         *protocol = 0;
1333         return 1;
1334 }
1335
1336 /*
1337  * Returns TRUE if @port contains a valid value for this option,
1338  * or FALSE if the option was specified with an invalid value.
1339  */
1340 static int
1341 nfs_nfs_port(struct mount_options *options, unsigned long *port)
1342 {
1343         long tmp;
1344
1345         switch (po_get_numeric(options, "port", &tmp)) {
1346         case PO_NOT_FOUND:
1347                 break;
1348         case PO_FOUND:
1349                 if (tmp >= 1 && tmp <= 65535) {
1350                         *port = tmp;
1351                         return 1;
1352                 }
1353         case PO_BAD_VALUE:
1354                 nfs_error(_("%s: invalid value for 'port=' option"),
1355                                 progname);
1356                 return 0;
1357         }
1358
1359         /*
1360          * NFS service port wasn't specified.  The pmap port value
1361          * will be filled in later by an rpcbind query in this case.
1362          */
1363         *port = 0;
1364         return 1;
1365 }
1366
1367 #ifdef IPV6_SUPPORTED
1368 sa_family_t     config_default_family = AF_UNSPEC;
1369
1370 static int
1371 nfs_verify_family(sa_family_t UNUSED(family))
1372 {
1373         return 1;
1374 }
1375 #else /* IPV6_SUPPORTED */
1376 sa_family_t     config_default_family = AF_INET;
1377
1378 static int
1379 nfs_verify_family(sa_family_t family)
1380 {
1381         if (family != AF_INET)
1382                 return 0;
1383
1384         return 1;
1385 }
1386 #endif /* IPV6_SUPPORTED */
1387
1388 /*
1389  * Returns TRUE and fills in @family if a valid NFS protocol option
1390  * is found, or FALSE if the option was specified with an invalid value
1391  * or if the protocol family isn't supported. On error, errno is set.
1392  */
1393 int nfs_nfs_proto_family(struct mount_options *options,
1394                                 sa_family_t *family)
1395 {
1396         unsigned long protocol;
1397         char *option;
1398         sa_family_t tmp_family = config_default_family;
1399
1400         switch (po_rightmost(options, nfs_transport_opttbl)) {
1401         case 0: /* udp */
1402         case 1: /* tcp */
1403         case 2: /* rdma */
1404                 /* for compatibility; these are always AF_INET */
1405                 *family = AF_INET;
1406                 return 1;
1407         case 3: /* proto */
1408                 option = po_get(options, "proto");
1409                 if (option != NULL &&
1410                     !nfs_get_proto(option, &tmp_family, &protocol)) {
1411
1412                         nfs_error(_("%s: Failed to find '%s' protocol"), 
1413                                 progname, option);
1414                         errno = EPROTONOSUPPORT;
1415                         return 0;
1416                 }
1417         }
1418
1419         if (!nfs_verify_family(tmp_family))
1420                 goto out_err;
1421         *family = tmp_family;
1422         return 1;
1423 out_err:
1424         errno = EAFNOSUPPORT;
1425         return 0;
1426 }
1427
1428 /*
1429  * "mountprog" is supported only by the legacy mount command.  The
1430  * kernel mount client does not support this option.
1431  *
1432  * Returns TRUE if @program contains a valid value for this option,
1433  * or FALSE if the option was specified with an invalid value.
1434  */
1435 static int
1436 nfs_mount_program(struct mount_options *options, unsigned long *program)
1437 {
1438         long tmp;
1439
1440         switch (po_get_numeric(options, "mountprog", &tmp)) {
1441         case PO_NOT_FOUND:
1442                 break;
1443         case PO_FOUND:
1444                 if (tmp > 0) {
1445                         *program = tmp;
1446                         return 1;
1447                 }
1448         case PO_BAD_VALUE:
1449                 nfs_error(_("%s: invalid value for 'mountprog=' option"),
1450                                 progname);
1451                 return 0;
1452         }
1453
1454         /*
1455          * MNT RPC program wasn't specified.  The RPC program
1456          * cannot be determined via an rpcbind query.
1457          */
1458         *program = nfs_getrpcbyname(MOUNTPROG, nfs_mnt_pgmtbl);
1459         return 1;
1460 }
1461
1462 /*
1463  * Returns TRUE if @version contains a valid value for this option,
1464  * or FALSE if the option was specified with an invalid value.
1465  */
1466 static int
1467 nfs_mount_version(struct mount_options *options, unsigned long *version)
1468 {
1469         long tmp;
1470
1471         switch (po_get_numeric(options, "mountvers", &tmp)) {
1472         case PO_NOT_FOUND:
1473                 break;
1474         case PO_FOUND:
1475                 if (tmp >= 1 && tmp <= 4) {
1476                         *version = tmp;
1477                         return 1;
1478                 }
1479         case PO_BAD_VALUE:
1480                 nfs_error(_("%s: invalid value for 'mountvers=' option"),
1481                                 progname);
1482                 return 0;
1483         }
1484
1485         /*
1486          * MNT version wasn't specified.  The pmap version value
1487          * will be filled in later by an rpcbind query in this case.
1488          */
1489         *version = 0;
1490         return 1;
1491 }
1492
1493 /*
1494  * Returns TRUE if @protocol contains a valid value for this option,
1495  * or FALSE if the option was specified with an invalid value. On
1496  * error, errno is set.
1497  */
1498 static int
1499 nfs_mount_protocol(struct mount_options *options, unsigned long *protocol)
1500 {
1501         sa_family_t family;
1502         char *option;
1503
1504         option = po_get(options, "mountproto");
1505         if (option != NULL) {
1506                 if (!nfs_get_proto(option, &family, protocol)) {
1507                         errno = EPROTONOSUPPORT;
1508                         nfs_error(_("%s: Failed to find '%s' protocol"), 
1509                                 progname, option);
1510                         return 0;
1511                 }
1512                 return 1;
1513         }
1514
1515         /*
1516          * MNT transport protocol wasn't specified.  If the NFS
1517          * transport protocol was specified, use that; otherwise
1518          * set @protocol to zero.  The pmap protocol value will
1519          * be filled in later by an rpcbind query in this case.
1520          */
1521         return nfs_nfs_protocol(options, protocol);
1522 }
1523
1524 /*
1525  * Returns TRUE if @port contains a valid value for this option,
1526  * or FALSE if the option was specified with an invalid value.
1527  */
1528 static int
1529 nfs_mount_port(struct mount_options *options, unsigned long *port)
1530 {
1531         long tmp;
1532
1533         switch (po_get_numeric(options, "mountport", &tmp)) {
1534         case PO_NOT_FOUND:
1535                 break;
1536         case PO_FOUND:
1537                 if (tmp >= 1 && tmp <= 65535) {
1538                         *port = tmp;
1539                         return 1;
1540                 }
1541         case PO_BAD_VALUE:
1542                 nfs_error(_("%s: invalid value for 'mountport=' option"),
1543                                 progname);
1544                 return 0;
1545         }
1546
1547         /*
1548          * MNT service port wasn't specified.  The pmap port value
1549          * will be filled in later by an rpcbind query in this case.
1550          */
1551         *port = 0;
1552         return 1;
1553 }
1554
1555 /*
1556  * Returns TRUE and fills in @family if a valid MNT protocol option
1557  * is found, or FALSE if the option was specified with an invalid value
1558  * or if the protocol family isn't supported. On error, errno is set.
1559  */
1560 int nfs_mount_proto_family(struct mount_options *options,
1561                                 sa_family_t *family)
1562 {
1563         unsigned long protocol;
1564         char *option;
1565         sa_family_t tmp_family = config_default_family;
1566
1567         option = po_get(options, "mountproto");
1568         if (option != NULL) {
1569                 if (!nfs_get_proto(option, &tmp_family, &protocol)) {
1570                         nfs_error(_("%s: Failed to find '%s' protocol"), 
1571                                 progname, option);
1572                         errno = EPROTONOSUPPORT;
1573                         goto out_err;
1574                 }
1575                 if (!nfs_verify_family(tmp_family))
1576                         goto out_err;
1577                 *family = tmp_family;
1578                 return 1;
1579         }
1580
1581         /*
1582          * MNT transport protocol wasn't specified.  If the NFS
1583          * transport protocol was specified, derive the family
1584          * from that; otherwise, return the default family for
1585          * NFS.
1586          */
1587         return nfs_nfs_proto_family(options, family);
1588 out_err:
1589         errno = EAFNOSUPPORT;
1590         return 0;
1591 }
1592
1593 /**
1594  * nfs_options2pmap - set up pmap structs based on mount options
1595  * @options: pointer to mount options
1596  * @nfs_pmap: OUT: pointer to pmap arguments for NFS server
1597  * @mnt_pmap: OUT: pointer to pmap arguments for mountd server
1598  *
1599  * Returns TRUE if the pmap options specified in @options have valid
1600  * values; otherwise FALSE is returned.
1601  */
1602 int nfs_options2pmap(struct mount_options *options,
1603                      struct pmap *nfs_pmap, struct pmap *mnt_pmap)
1604 {
1605         if (!nfs_nfs_program(options, &nfs_pmap->pm_prog))
1606                 return 0;
1607         if (!nfs_nfs_version(options, &nfs_pmap->pm_vers))
1608                 return 0;
1609         if (!nfs_nfs_protocol(options, &nfs_pmap->pm_prot))
1610                 return 0;
1611         if (!nfs_nfs_port(options, &nfs_pmap->pm_port))
1612                 return 0;
1613
1614         if (!nfs_mount_program(options, &mnt_pmap->pm_prog))
1615                 return 0;
1616         if (!nfs_mount_version(options, &mnt_pmap->pm_vers))
1617                 return 0;
1618         if (!nfs_mount_protocol(options, &mnt_pmap->pm_prot))
1619                 return 0;
1620         if (!nfs_mount_port(options, &mnt_pmap->pm_port))
1621                 return 0;
1622
1623         return 1;
1624 }