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