]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/mount/network.c
mount.nfs: force rpcbind queries if options aren't specified
[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 <netinet/in.h>
41 #include <rpc/rpc.h>
42 #include <rpc/pmap_prot.h>
43 #include <rpc/pmap_clnt.h>
44
45 #include "xcommon.h"
46 #include "mount.h"
47 #include "nls.h"
48 #include "nfs_mount.h"
49 #include "mount_constants.h"
50 #include "nfsrpc.h"
51 #include "parse_opt.h"
52 #include "network.h"
53
54 #define PMAP_TIMEOUT    (10)
55 #define CONNECT_TIMEOUT (20)
56 #define MOUNT_TIMEOUT   (30)
57
58 #if SIZEOF_SOCKLEN_T - 0 == 0
59 #define socklen_t unsigned int
60 #endif
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         "vers",
94         "nfsvers",
95         NULL,
96 };
97
98 static const unsigned long nfs_to_mnt[] = {
99         0,
100         0,
101         1,
102         3,
103 };
104
105 static const unsigned long mnt_to_nfs[] = {
106         0,
107         2,
108         2,
109         3,
110 };
111
112 /*
113  * Map an NFS version into the corresponding Mountd version
114  */
115 unsigned long nfsvers_to_mnt(const unsigned long vers)
116 {
117         if (vers <= 3)
118                 return nfs_to_mnt[vers];
119         return 0;
120 }
121
122 /*
123  * Map a Mountd version into the corresponding NFS version
124  */
125 static unsigned long mntvers_to_nfs(const unsigned long vers)
126 {
127         if (vers <= 3)
128                 return mnt_to_nfs[vers];
129         return 0;
130 }
131
132 static const unsigned int probe_udp_only[] = {
133         IPPROTO_UDP,
134         0,
135 };
136
137 static const unsigned int probe_udp_first[] = {
138         IPPROTO_UDP,
139         IPPROTO_TCP,
140         0,
141 };
142
143 static const unsigned int probe_tcp_first[] = {
144         IPPROTO_TCP,
145         IPPROTO_UDP,
146         0,
147 };
148
149 static const unsigned long probe_nfs2_only[] = {
150         2,
151         0,
152 };
153
154 static const unsigned long probe_nfs3_first[] = {
155         3,
156         2,
157         0,
158 };
159
160 static const unsigned long probe_mnt1_first[] = {
161         1,
162         2,
163         0,
164 };
165
166 static const unsigned long probe_mnt3_first[] = {
167         3,
168         1,
169         2,
170         0,
171 };
172
173 static void nfs_set_port(struct sockaddr *sap, const unsigned short port)
174 {
175         switch (sap->sa_family) {
176         case AF_INET:
177                 ((struct sockaddr_in *)sap)->sin_port = htons(port);
178                 break;
179         case AF_INET6:
180                 ((struct sockaddr_in6 *)sap)->sin6_port = htons(port);
181                 break;
182         default:
183                 nfs_error(_("%s: unrecognized address family in %s"),
184                         progname, __func__);
185         }
186 }
187
188 static int nfs_lookup(const char *hostname, const sa_family_t family,
189                       struct sockaddr *sap, socklen_t *salen)
190 {
191         struct addrinfo *gai_results;
192         struct addrinfo gai_hint = {
193 #ifdef HAVE_DECL_AI_ADDRCONFIG
194                 .ai_flags       = AI_ADDRCONFIG,
195 #endif  /* HAVE_DECL_AI_ADDRCONFIG */
196                 .ai_family      = family,
197         };
198         socklen_t len = *salen;
199         int error, ret = 0;
200
201         *salen = 0;
202
203         error = getaddrinfo(hostname, NULL, &gai_hint, &gai_results);
204         switch (error) {
205         case 0:
206                 break;
207         case EAI_SYSTEM:
208                 nfs_error(_("%s: DNS resolution failed for %s: %s"),
209                         progname, hostname, strerror(errno));
210                 return ret;
211         default:
212                 nfs_error(_("%s: DNS resolution failed for %s: %s"),
213                         progname, hostname, gai_strerror(error));
214                 return ret;
215         }
216
217         switch (gai_results->ai_addr->sa_family) {
218         case AF_INET:
219         case AF_INET6:
220                 if (len >= gai_results->ai_addrlen) {
221                         *salen = gai_results->ai_addrlen;
222                         memcpy(sap, gai_results->ai_addr, *salen);
223                         ret = 1;
224                 }
225                 break;
226         default:
227                 /* things are really broken if we get here, so warn */
228                 nfs_error(_("%s: unrecognized DNS resolution results for %s"),
229                                 progname, hostname);
230                 break;
231         }
232
233         freeaddrinfo(gai_results);
234         return ret;
235 }
236
237 /**
238  * nfs_name_to_address - resolve hostname to an IPv4 or IPv6 socket address
239  * @hostname: pointer to C string containing DNS hostname to resolve
240  * @sap: pointer to buffer to fill with socket address
241  * @len: IN: size of buffer to fill; OUT: size of socket address
242  *
243  * Returns 1 and places a socket address at @sap if successful;
244  * otherwise zero.
245  */
246 int nfs_name_to_address(const char *hostname,
247                         struct sockaddr *sap, socklen_t *salen)
248 {
249 #ifdef IPV6_SUPPORTED
250         return nfs_lookup(hostname, AF_UNSPEC, sap, salen);
251 #else   /* !IPV6_SUPPORTED */
252         return nfs_lookup(hostname, AF_INET, sap, salen);
253 #endif  /* !IPV6_SUPPORTED */
254 }
255
256 /**
257  * nfs_gethostbyname - resolve a hostname to an IPv4 address
258  * @hostname: pointer to a C string containing a DNS hostname
259  * @sin: returns an IPv4 address 
260  *
261  * Returns 1 if successful, otherwise zero.
262  */
263 int nfs_gethostbyname(const char *hostname, struct sockaddr_in *sin)
264 {
265         socklen_t len = sizeof(*sin);
266
267         return nfs_lookup(hostname, AF_INET, (struct sockaddr *)sin, &len);
268 }
269
270 /**
271  * nfs_string_to_sockaddr - convert string address to sockaddr
272  * @address:    pointer to presentation format address to convert
273  * @addrlen:    length of presentation address
274  * @sap:        pointer to socket address buffer to fill in
275  * @salen:      IN: length of address buffer
276  *              OUT: length of converted socket address
277  *
278  * Convert a presentation format address string to a socket address.
279  * Similar to nfs_name_to_address(), but the DNS query is squelched,
280  * and won't make any noise if the getaddrinfo() call fails.
281  *
282  * Returns 1 and fills in @sap and @salen if successful; otherwise zero.
283  *
284  * See RFC 4038 section 5.1 or RFC 3513 section 2.2 for more details
285  * on presenting IPv6 addresses as text strings.
286  */
287 int nfs_string_to_sockaddr(const char *address, const size_t addrlen,
288                            struct sockaddr *sap, socklen_t *salen)
289 {
290         struct addrinfo *gai_results;
291         struct addrinfo gai_hint = {
292                 .ai_flags       = AI_NUMERICHOST,
293         };
294         socklen_t len = *salen;
295         int ret = 0;
296
297         *salen = 0;
298
299         if (getaddrinfo(address, NULL, &gai_hint, &gai_results) == 0) {
300                 switch (gai_results->ai_addr->sa_family) {
301                 case AF_INET:
302                 case AF_INET6:
303                         if (len >= gai_results->ai_addrlen) {
304                                 *salen = gai_results->ai_addrlen;
305                                 memcpy(sap, gai_results->ai_addr, *salen);
306                                 ret = 1;
307                         }
308                         break;
309                 }
310                 freeaddrinfo(gai_results);
311         }
312
313         return ret;
314 }
315
316 /**
317  * nfs_present_sockaddr - convert sockaddr to string
318  * @sap: pointer to socket address to convert
319  * @salen: length of socket address
320  * @buf: pointer to buffer to fill in
321  * @buflen: length of buffer
322  *
323  * Convert the passed-in sockaddr-style address to presentation format.
324  * The presentation format address is placed in @buf and is
325  * '\0'-terminated.
326  *
327  * Returns 1 if successful; otherwise zero.
328  *
329  * See RFC 4038 section 5.1 or RFC 3513 section 2.2 for more details
330  * on presenting IPv6 addresses as text strings.
331  */
332 int nfs_present_sockaddr(const struct sockaddr *sap, const socklen_t salen,
333                          char *buf, const size_t buflen)
334 {
335 #ifdef HAVE_GETNAMEINFO
336         int result;
337
338         result = getnameinfo(sap, salen, buf, buflen,
339                                         NULL, 0, NI_NUMERICHOST);
340         if (!result)
341                 return 1;
342
343         nfs_error(_("%s: invalid server address: %s"), progname,
344                         gai_strerror(result));
345         return 0;
346 #else   /* HAVE_GETNAMEINFO */
347         char *addr;
348
349         if (sap->sa_family == AF_INET) {
350                 addr = inet_ntoa(((struct sockaddr_in *)sap)->sin_addr);
351                 if (addr && strlen(addr) < buflen) {
352                         strcpy(buf, addr);
353                         return 1;
354                 }
355         }
356
357         nfs_error(_("%s: invalid server address"), progname);
358         return 0;
359 #endif  /* HAVE_GETNAMEINFO */
360 }
361
362 /*
363  * Attempt to connect a socket, but time out after "timeout" seconds.
364  *
365  * On error return, caller closes the socket.
366  */
367 static int connect_to(int fd, struct sockaddr *addr,
368                         socklen_t addrlen, int timeout)
369 {
370         int ret, saved;
371         fd_set rset, wset;
372         struct timeval tv = {
373                 .tv_sec = timeout,
374         };
375
376         saved = fcntl(fd, F_GETFL, 0);
377         fcntl(fd, F_SETFL, saved | O_NONBLOCK);
378
379         ret = connect(fd, addr, addrlen);
380         if (ret < 0 && errno != EINPROGRESS)
381                 return -1;
382         if (ret == 0)
383                 goto out;
384
385         FD_ZERO(&rset);
386         FD_SET(fd, &rset);
387         wset = rset;
388         ret = select(fd + 1, &rset, &wset, NULL, &tv);
389         if (ret == 0) {
390                 errno = ETIMEDOUT;
391                 return -1;
392         }
393         if (FD_ISSET(fd, &rset) || FD_ISSET(fd, &wset)) {
394                 int error;
395                 socklen_t len = sizeof(error);
396                 if (getsockopt(fd, SOL_SOCKET, SO_ERROR, &error, &len) < 0)
397                         return -1;
398                 if (error) {
399                         errno = error;
400                         return -1;
401                 }
402         } else
403                 return -1;
404
405 out:
406         fcntl(fd, F_SETFL, saved);
407         return 0;
408 }
409
410 /*
411  * Create a socket that is locally bound to a reserved or non-reserved port.
412  *
413  * The caller should check rpc_createerr to determine the cause of any error.
414  */
415 static int get_socket(struct sockaddr_in *saddr, unsigned int p_prot,
416                         unsigned int timeout, int resvp, int conn)
417 {
418         int so, cc, type;
419         struct sockaddr_in laddr;
420         socklen_t namelen = sizeof(laddr);
421
422         type = (p_prot == IPPROTO_UDP ? SOCK_DGRAM : SOCK_STREAM);
423         if ((so = socket (AF_INET, type, p_prot)) < 0)
424                 goto err_socket;
425
426         laddr.sin_family = AF_INET;
427         laddr.sin_port = 0;
428         laddr.sin_addr.s_addr = htonl(INADDR_ANY);
429         if (resvp) {
430                 if (bindresvport(so, &laddr) < 0)
431                         goto err_bindresvport;
432         } else {
433                 cc = bind(so, (struct sockaddr *)&laddr, namelen);
434                 if (cc < 0)
435                         goto err_bind;
436         }
437         if (type == SOCK_STREAM || (conn && type == SOCK_DGRAM)) {
438                 cc = connect_to(so, (struct sockaddr *)saddr, namelen,
439                                 timeout);
440                 if (cc < 0)
441                         goto err_connect;
442         }
443         return so;
444
445 err_socket:
446         rpc_createerr.cf_stat = RPC_SYSTEMERROR;
447         rpc_createerr.cf_error.re_errno = errno;
448         if (verbose) {
449                 nfs_error(_("%s: Unable to create %s socket: errno %d (%s)\n"),
450                         progname, p_prot == IPPROTO_UDP ? _("UDP") : _("TCP"),
451                         errno, strerror(errno));
452         }
453         return RPC_ANYSOCK;
454
455 err_bindresvport:
456         rpc_createerr.cf_stat = RPC_SYSTEMERROR;
457         rpc_createerr.cf_error.re_errno = errno;
458         if (verbose) {
459                 nfs_error(_("%s: Unable to bindresvport %s socket: errno %d"
460                                 " (%s)\n"),
461                         progname, p_prot == IPPROTO_UDP ? _("UDP") : _("TCP"),
462                         errno, strerror(errno));
463         }
464         close(so);
465         return RPC_ANYSOCK;
466
467 err_bind:
468         rpc_createerr.cf_stat = RPC_SYSTEMERROR;
469         rpc_createerr.cf_error.re_errno = errno;
470         if (verbose) {
471                 nfs_error(_("%s: Unable to bind to %s socket: errno %d (%s)\n"),
472                         progname, p_prot == IPPROTO_UDP ? _("UDP") : _("TCP"),
473                         errno, strerror(errno));
474         }
475         close(so);
476         return RPC_ANYSOCK;
477
478 err_connect:
479         rpc_createerr.cf_stat = RPC_SYSTEMERROR;
480         rpc_createerr.cf_error.re_errno = errno;
481         if (verbose) {
482                 nfs_error(_("%s: Unable to connect to %s:%d, errno %d (%s)\n"),
483                         progname, inet_ntoa(saddr->sin_addr),
484                         ntohs(saddr->sin_port), errno, strerror(errno));
485         }
486         close(so);
487         return RPC_ANYSOCK;
488 }
489
490 static void nfs_pp_debug(const struct sockaddr *sap, const socklen_t salen,
491                          const rpcprog_t program, const rpcvers_t version,
492                          const unsigned short protocol,
493                          const unsigned short port)
494 {
495         char buf[NI_MAXHOST];
496
497         if (!verbose)
498                 return;
499
500         if (nfs_present_sockaddr(sap, salen, buf, sizeof(buf)) == 0) {
501                 buf[0] = '\0';
502                 strcat(buf, "unknown host");
503         }
504
505         fprintf(stderr, _("%s: trying %s prog %lu vers %lu prot %s port %d\n"),
506                         progname, buf, (unsigned long)program,
507                         (unsigned long)version,
508                         (protocol == IPPROTO_UDP ? _("UDP") : _("TCP")),
509                         port);
510 }
511
512 static void nfs_pp_debug2(const char *str)
513 {
514         if (!verbose)
515                 return;
516
517         if (rpc_createerr.cf_error.re_status == RPC_CANTRECV ||
518             rpc_createerr.cf_error.re_status == RPC_CANTSEND)
519                 nfs_error(_("%s: portmap query %s%s - %s"),
520                                 progname, str, clnt_spcreateerror(""),
521                                 strerror(rpc_createerr.cf_error.re_errno));
522         else
523                 nfs_error(_("%s: portmap query %s%s"),
524                                 progname, str, clnt_spcreateerror(""));
525 }
526
527 /*
528  * Use the portmapper to discover whether or not the service we want is
529  * available. The lists 'versions' and 'protos' define ordered sequences
530  * of service versions and udp/tcp protocols to probe for.
531  *
532  * Returns 1 if the requested service port is unambiguous and pingable;
533  * @pmap is filled in with the version, port, and transport protocol used
534  * during the successful ping.  Note that if a port is already specified
535  * in @pmap and it matches the rpcbind query result, nfs_probe_port() does
536  * not perform an RPC ping.
537  * 
538  * If an error occurs or the requested service isn't available, zero is
539  * returned; rpccreateerr.cf_stat is set to reflect the nature of the error.
540  */
541 static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen,
542                           struct pmap *pmap, const unsigned long *versions,
543                           const unsigned int *protos)
544 {
545         struct sockaddr_storage address;
546         struct sockaddr *saddr = (struct sockaddr *)&address;
547         const unsigned long prog = pmap->pm_prog, *p_vers;
548         const unsigned int prot = (u_int)pmap->pm_prot, *p_prot;
549         const u_short port = (u_short) pmap->pm_port;
550         unsigned long vers = pmap->pm_vers;
551         unsigned short p_port;
552
553         memcpy(saddr, sap, salen);
554         p_prot = prot ? &prot : protos;
555         p_vers = vers ? &vers : versions;
556
557         for (;;) {
558                 if (verbose)
559                         printf(_("%s: prog %lu, trying vers=%lu, prot=%u\n"),
560                                 progname, prog, *p_vers, *p_prot);
561                 p_port = nfs_getport(saddr, salen, prog, *p_vers, *p_prot);
562                 if (p_port) {
563                         if (!port || port == p_port) {
564                                 nfs_set_port(saddr, p_port);
565                                 nfs_pp_debug(saddr, salen, prog, *p_vers,
566                                                 *p_prot, p_port);
567                                 if (nfs_rpc_ping(saddr, salen, prog,
568                                                         *p_vers, *p_prot, NULL))
569                                         goto out_ok;
570                         } else
571                                 rpc_createerr.cf_stat = RPC_PROGNOTREGISTERED;
572                 }
573                 if (rpc_createerr.cf_stat != RPC_PROGNOTREGISTERED &&
574                     rpc_createerr.cf_stat != RPC_TIMEDOUT &&
575                     rpc_createerr.cf_stat != RPC_CANTRECV &&
576                     rpc_createerr.cf_stat != RPC_PROGVERSMISMATCH)
577                         break;
578
579                 if (!prot) {
580                         if (*++p_prot) {
581                                 nfs_pp_debug2("retrying");
582                                 continue;
583                         }
584                         p_prot = protos;
585                 }
586                 if (rpc_createerr.cf_stat == RPC_TIMEDOUT ||
587                     rpc_createerr.cf_stat == RPC_CANTRECV)
588                         break;
589
590                 if (vers || !*++p_vers)
591                         break;
592         }
593
594         nfs_pp_debug2("failed");
595         return 0;
596
597 out_ok:
598         if (!vers)
599                 pmap->pm_vers = *p_vers;
600         if (!prot)
601                 pmap->pm_prot = *p_prot;
602         if (!port)
603                 pmap->pm_port = p_port;
604         nfs_clear_rpc_createerr();
605         return 1;
606 }
607
608 /*
609  * Probe a server's NFS service to determine which versions and
610  * transport protocols are supported.
611  *
612  * Returns 1 if the requested service port is unambiguous and pingable;
613  * @pmap is filled in with the version, port, and transport protocol used
614  * during the successful ping.  If all three are already specified, simply
615  * return success without an rpcbind query or RPC ping (we may be trying
616  * to mount an NFS service that is not advertised via rpcbind).
617  *
618  * If an error occurs or the requested service isn't available, zero is
619  * returned; rpccreateerr.cf_stat is set to reflect the nature of the error.
620  */
621 static int nfs_probe_nfsport(const struct sockaddr *sap, const socklen_t salen,
622                                 struct pmap *pmap)
623 {
624         if (pmap->pm_vers && pmap->pm_prot && pmap->pm_port)
625                 return 1;
626
627         if (nfs_mount_data_version >= 4)
628                 return nfs_probe_port(sap, salen, pmap,
629                                         probe_nfs3_first, probe_tcp_first);
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(_("fork failed: %s"),
802                                                         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         struct sockaddr_storage address;
834         struct sockaddr *saddr = (struct sockaddr *)&address;
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 = authunix_create_default();
862
863         res = CLNT_CALL(client, MOUNTPROC_UMNT,
864                         (xdrproc_t)xdr_dirpath, (caddr_t)argp,
865                         (xdrproc_t)xdr_void, NULL,
866                         timeout);
867         if (verbose && res != RPC_SUCCESS)
868                 nfs_error(_("%s: UMNT call failed: %s"),
869                         progname, clnt_sperrno(res));
870
871         auth_destroy(client->cl_auth);
872         CLNT_DESTROY(client);
873
874         if (res != RPC_SUCCESS)
875                 return 0;
876         return 1;
877 }
878
879 /**
880  * nfs_call_umount - ask the server to remove a share from it's rmtab
881  * @mnt_server: address of RPC MNT program server
882  * @argp: directory path of share to "unmount"
883  *
884  * Returns one if the unmount call succeeded; zero if the unmount
885  * failed for any reason.
886  *
887  * Note that a side effect of calling this function is that rpccreateerr
888  * is set.
889  */
890 int nfs_call_umount(clnt_addr_t *mnt_server, dirpath *argp)
891 {
892         struct sockaddr *sap = (struct sockaddr *)&mnt_server->saddr;
893         socklen_t salen = sizeof(mnt_server->saddr);
894         struct pmap *pmap = &mnt_server->pmap;
895         CLIENT *clnt;
896         enum clnt_stat res = 0;
897         int msock;
898
899         if (!nfs_probe_mntport(sap, salen, pmap))
900                 return 0;
901         clnt = mnt_openclnt(mnt_server, &msock);
902         if (!clnt)
903                 return 0;
904         res = clnt_call(clnt, MOUNTPROC_UMNT,
905                         (xdrproc_t)xdr_dirpath, (caddr_t)argp,
906                         (xdrproc_t)xdr_void, NULL,
907                         TIMEOUT);
908         mnt_closeclnt(clnt, msock);
909
910         if (res == RPC_SUCCESS)
911                 return 1;
912         return 0;
913 }
914
915 /**
916  * mnt_openclnt - get a handle for a remote mountd service
917  * @mnt_server: address and pmap arguments of mountd service
918  * @msock: returns a file descriptor of the underlying transport socket
919  *
920  * Returns an active handle for the remote's mountd service
921  */
922 CLIENT *mnt_openclnt(clnt_addr_t *mnt_server, int *msock)
923 {
924         struct sockaddr_in *mnt_saddr = &mnt_server->saddr;
925         struct pmap *mnt_pmap = &mnt_server->pmap;
926         CLIENT *clnt = NULL;
927
928         mnt_saddr->sin_port = htons((u_short)mnt_pmap->pm_port);
929         *msock = get_socket(mnt_saddr, mnt_pmap->pm_prot, MOUNT_TIMEOUT,
930                                 TRUE, FALSE);
931         if (*msock == RPC_ANYSOCK) {
932                 if (rpc_createerr.cf_error.re_errno == EADDRINUSE)
933                         /*
934                          * Probably in-use by a TIME_WAIT connection,
935                          * It is worth waiting a while and trying again.
936                          */
937                         rpc_createerr.cf_stat = RPC_TIMEDOUT;
938                 return NULL;
939         }
940
941         switch (mnt_pmap->pm_prot) {
942         case IPPROTO_UDP:
943                 clnt = clntudp_bufcreate(mnt_saddr,
944                                          mnt_pmap->pm_prog, mnt_pmap->pm_vers,
945                                          RETRY_TIMEOUT, msock,
946                                          MNT_SENDBUFSIZE, MNT_RECVBUFSIZE);
947                 break;
948         case IPPROTO_TCP:
949                 clnt = clnttcp_create(mnt_saddr,
950                                       mnt_pmap->pm_prog, mnt_pmap->pm_vers,
951                                       msock,
952                                       MNT_SENDBUFSIZE, MNT_RECVBUFSIZE);
953                 break;
954         }
955         if (clnt) {
956                 /* try to mount hostname:dirname */
957                 clnt->cl_auth = authunix_create_default();
958                 return clnt;
959         }
960         return NULL;
961 }
962
963 /**
964  * mnt_closeclnt - terminate a handle for a remote mountd service
965  * @clnt: pointer to an active handle for a remote mountd service
966  * @msock: file descriptor of the underlying transport socket
967  *
968  */
969 void mnt_closeclnt(CLIENT *clnt, int msock)
970 {
971         auth_destroy(clnt->cl_auth);
972         clnt_destroy(clnt);
973         close(msock);
974 }
975
976 /**
977  * clnt_ping - send an RPC ping to the remote RPC service endpoint
978  * @saddr: server's address
979  * @prog: target RPC program number
980  * @vers: target RPC version number
981  * @prot: target RPC protocol
982  * @caddr: filled in with our network address
983  *
984  * Sigh... GETPORT queries don't actually check the version number.
985  * In order to make sure that the server actually supports the service
986  * we're requesting, we open an RPC client, and fire off a NULL
987  * RPC call.
988  *
989  * caddr is the network address that the server will use to call us back.
990  * On multi-homed clients, this address depends on which NIC we use to
991  * route requests to the server.
992  *
993  * Returns one if successful, otherwise zero.
994  */
995 int clnt_ping(struct sockaddr_in *saddr, const unsigned long prog,
996                 const unsigned long vers, const unsigned int prot,
997                 struct sockaddr_in *caddr)
998 {
999         CLIENT *clnt = NULL;
1000         int sock, stat;
1001         static char clnt_res;
1002         struct sockaddr dissolve;
1003
1004         rpc_createerr.cf_stat = stat = 0;
1005         sock = get_socket(saddr, prot, CONNECT_TIMEOUT, FALSE, TRUE);
1006         if (sock == RPC_ANYSOCK) {
1007                 if (rpc_createerr.cf_error.re_errno == ETIMEDOUT) {
1008                         /*
1009                          * TCP timeout. Bubble up the error to see 
1010                          * how it should be handled.
1011                          */
1012                         rpc_createerr.cf_stat = RPC_TIMEDOUT;
1013                 }
1014                 return 0;
1015         }
1016
1017         if (caddr) {
1018                 /* Get the address of our end of this connection */
1019                 socklen_t len = sizeof(*caddr);
1020                 if (getsockname(sock, caddr, &len) != 0)
1021                         caddr->sin_family = 0;
1022         }
1023
1024         switch(prot) {
1025         case IPPROTO_UDP:
1026                 /* The socket is connected (so we could getsockname successfully),
1027                  * but some servers on multi-homed hosts reply from
1028                  * the wrong address, so if we stay connected, we lose the reply.
1029                  */
1030                 dissolve.sa_family = AF_UNSPEC;
1031                 connect(sock, &dissolve, sizeof(dissolve));
1032
1033                 clnt = clntudp_bufcreate(saddr, prog, vers,
1034                                          RETRY_TIMEOUT, &sock,
1035                                          RPCSMALLMSGSIZE, RPCSMALLMSGSIZE);
1036                 break;
1037         case IPPROTO_TCP:
1038                 clnt = clnttcp_create(saddr, prog, vers, &sock,
1039                                       RPCSMALLMSGSIZE, RPCSMALLMSGSIZE);
1040                 break;
1041         }
1042         if (!clnt) {
1043                 close(sock);
1044                 return 0;
1045         }
1046         memset(&clnt_res, 0, sizeof(clnt_res));
1047         stat = clnt_call(clnt, NULLPROC,
1048                          (xdrproc_t)xdr_void, (caddr_t)NULL,
1049                          (xdrproc_t)xdr_void, (caddr_t)&clnt_res,
1050                          TIMEOUT);
1051         if (stat) {
1052                 clnt_geterr(clnt, &rpc_createerr.cf_error);
1053                 rpc_createerr.cf_stat = stat;
1054         }
1055         clnt_destroy(clnt);
1056         close(sock);
1057
1058         if (stat == RPC_SUCCESS)
1059                 return 1;
1060         else
1061                 return 0;
1062 }
1063
1064 /*
1065  * Try a getsockname() on a connected datagram socket.
1066  *
1067  * Returns 1 and fills in @buf if successful; otherwise, zero.
1068  *
1069  * A connected datagram socket prevents leaving a socket in TIME_WAIT.
1070  * This conserves the ephemeral port number space, helping reduce failed
1071  * socket binds during mount storms.
1072  */
1073 static int nfs_ca_sockname(const struct sockaddr *sap, const socklen_t salen,
1074                            struct sockaddr *buf, socklen_t *buflen)
1075 {
1076         struct sockaddr_in sin = {
1077                 .sin_family             = AF_INET,
1078                 .sin_addr.s_addr        = htonl(INADDR_ANY),
1079         };
1080         struct sockaddr_in6 sin6 = {
1081                 .sin6_family            = AF_INET6,
1082                 .sin6_addr              = IN6ADDR_ANY_INIT,
1083         };
1084         int sock;
1085
1086         sock = socket(sap->sa_family, SOCK_DGRAM, IPPROTO_UDP);
1087         if (sock < 0)
1088                 return 0;
1089
1090         switch (sap->sa_family) {
1091         case AF_INET:
1092                 if (bind(sock, (struct sockaddr *)&sin, sizeof(sin)) < 0) {
1093                         close(sock);
1094                         return 0;
1095                 }
1096                 break;
1097         case AF_INET6:
1098                 if (bind(sock, (struct sockaddr *)&sin6, sizeof(sin6)) < 0) {
1099                         close(sock);
1100                         return 0;
1101                 }
1102                 break;
1103         default:
1104                 errno = EAFNOSUPPORT;
1105                 return 0;
1106         }
1107
1108         if (connect(sock, sap, salen) < 0) {
1109                 close(sock);
1110                 return 0;
1111         }
1112
1113         return !getsockname(sock, buf, buflen);
1114 }
1115
1116 /*
1117  * Try to generate an address that prevents the server from calling us.
1118  *
1119  * Returns 1 and fills in @buf if successful; otherwise, zero.
1120  */
1121 static int nfs_ca_gai(const struct sockaddr *sap, const socklen_t salen,
1122                       struct sockaddr *buf, socklen_t *buflen)
1123 {
1124         struct addrinfo *gai_results;
1125         struct addrinfo gai_hint = {
1126                 .ai_family      = sap->sa_family,
1127                 .ai_flags       = AI_PASSIVE,   /* ANYADDR */
1128         };
1129
1130         if (getaddrinfo(NULL, "", &gai_hint, &gai_results))
1131                 return 0;
1132
1133         *buflen = gai_results->ai_addrlen;
1134         memcpy(buf, gai_results->ai_addr, *buflen);
1135
1136         freeaddrinfo(gai_results);
1137
1138         return 1;
1139 }
1140
1141 /**
1142  * nfs_callback_address - acquire our local network address
1143  * @sap: pointer to address of remote
1144  * @sap_len: length of address
1145  * @buf: pointer to buffer to be filled in with local network address
1146  * @buflen: IN: length of buffer to fill in; OUT: length of filled-in address
1147  *
1148  * Discover a network address that an NFSv4 server can use to call us back.
1149  * On multi-homed clients, this address depends on which NIC we use to
1150  * route requests to the server.
1151  *
1152  * Returns 1 and fills in @buf if an unambiguous local address is
1153  * available; returns 1 and fills in an appropriate ANYADDR address
1154  * if a local address isn't available; otherwise, returns zero.
1155  */
1156 int nfs_callback_address(const struct sockaddr *sap, const socklen_t salen,
1157                          struct sockaddr *buf, socklen_t *buflen)
1158 {
1159         struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)buf;
1160
1161         if (nfs_ca_sockname(sap, salen, buf, buflen) == 0)
1162                 if (nfs_ca_gai(sap, salen, buf, buflen) == 0)
1163                         goto out_failed;
1164
1165         /*
1166          * The server can't use an interface ID that was generated
1167          * here on the client, so always clear sin6_scope_id.
1168          */
1169         if (sin6->sin6_family == AF_INET6)
1170                 sin6->sin6_scope_id = 0;
1171
1172         return 1;
1173
1174 out_failed:
1175         *buflen = 0;
1176         if (verbose)
1177                 nfs_error(_("%s: failed to construct callback address"));
1178         return 0;
1179
1180 }
1181
1182 /*
1183  * "nfsprog" is only supported by the legacy mount command.  The
1184  * kernel mount client does not support this option.
1185  *
1186  * Returns the value set by the nfsprog= option, the value of
1187  * the RPC NFS program specified in /etc/rpc, or a baked-in
1188  * default program number, if all fails.
1189  */
1190 static rpcprog_t nfs_nfs_program(struct mount_options *options)
1191 {
1192         long tmp;
1193
1194         if (po_get_numeric(options, "nfsprog", &tmp) == PO_FOUND)
1195                 if (tmp >= 0)
1196                         return tmp;
1197         return nfs_getrpcbyname(NFSPROG, nfs_nfs_pgmtbl);
1198 }
1199
1200
1201 /*
1202  * Returns the RPC version number specified by the given mount
1203  * options for the NFS service, or zero if all fails.
1204  */
1205 static rpcvers_t nfs_nfs_version(struct mount_options *options)
1206 {
1207         long tmp;
1208
1209         switch (po_rightmost(options, nfs_version_opttbl)) {
1210         case 0: /* v2 */
1211                 return 2;
1212         case 1: /* v3 */
1213                 return 3;
1214         case 2: /* vers */
1215                 if (po_get_numeric(options, "vers", &tmp) == PO_FOUND)
1216                         if (tmp >= 2 && tmp <= 3)
1217                                 return tmp;
1218                 break;
1219         case 3: /* nfsvers */
1220                 if (po_get_numeric(options, "nfsvers", &tmp) == PO_FOUND)
1221                         if (tmp >= 2 && tmp <= 3)
1222                                 return tmp;
1223                 break;
1224         }
1225
1226         return 0;
1227 }
1228
1229 /*
1230  * Returns the NFS transport protocol specified by the given mount options
1231  *
1232  * Returns the IPPROTO_ value specified by the given mount options, or
1233  * zero if all fails.  The protocol value will be filled in by an
1234  * rpcbind query in this case.
1235  */
1236 static unsigned short nfs_nfs_protocol(struct mount_options *options)
1237 {
1238         char *option;
1239
1240         switch (po_rightmost(options, nfs_transport_opttbl)) {
1241         case 0: /* udp */
1242                 return IPPROTO_UDP;
1243         case 1: /* tcp */
1244                 return IPPROTO_TCP;
1245         case 2: /* proto */
1246                 option = po_get(options, "proto");
1247                 if (option) {
1248                         if (strcmp(option, "tcp") == 0)
1249                                 return IPPROTO_TCP;
1250                         if (strcmp(option, "udp") == 0)
1251                                 return IPPROTO_UDP;
1252                 }
1253         }
1254
1255         return 0;
1256 }
1257
1258 /*
1259  * Returns the NFS server's port number specified by the given
1260  * mount options, or zero if all fails.  Zero results in a portmap
1261  * query to discover the server's mountd service port.
1262  *
1263  * port=0 will guarantee an rpcbind request precedes the first
1264  * NFS RPC so the client can determine the server's port number.
1265  */
1266 static unsigned short nfs_nfs_port(struct mount_options *options)
1267 {
1268         long tmp;
1269
1270         if (po_get_numeric(options, "port", &tmp) == PO_FOUND)
1271                 if (tmp >= 0 && tmp <= 65535)
1272                         return tmp;
1273         return 0;
1274 }
1275
1276 /*
1277  * "mountprog" is only supported by the legacy mount command.  The
1278  * kernel mount client does not support this option.
1279  *
1280  * Returns the value set by the mountprog= option, the value of
1281  * the RPC mount program specified in /etc/rpc, or a baked-in
1282  * default program number, if all fails.
1283  */
1284 static rpcprog_t nfs_mount_program(struct mount_options *options)
1285 {
1286         long tmp;
1287
1288         if (po_get_numeric(options, "mountprog", &tmp) == PO_FOUND)
1289                 if (tmp >= 0)
1290                         return tmp;
1291         return nfs_getrpcbyname(MOUNTPROG, nfs_mnt_pgmtbl);
1292 }
1293
1294 /*
1295  * Returns the RPC version number specified by the given mount options,
1296  * or zero if all fails.  The version value will be filled in by an
1297  * rpcbind query in this case.
1298  */
1299 static rpcvers_t nfs_mount_version(struct mount_options *options)
1300 {
1301         long tmp;
1302
1303         if (po_get_numeric(options, "mountvers", &tmp) == PO_FOUND)
1304                 if (tmp >= 1 && tmp <= 4)
1305                         return tmp;
1306
1307         return 0;
1308 }
1309
1310 /*
1311  * Returns the transport protocol to use for the mount service
1312  *
1313  * Returns the IPPROTO_ value specified by the mountproto option, or
1314  * copies the NFS protocol setting.  If the protocol value is zero,
1315  * the value will be filled in by an rpcbind query.
1316  */
1317 static unsigned short nfs_mount_protocol(struct mount_options *options)
1318 {
1319         char *option;
1320
1321         option = po_get(options, "mountproto");
1322         if (option) {
1323                 if (strcmp(option, "tcp") == 0)
1324                         return IPPROTO_TCP;
1325                 if (strcmp(option, "udp") == 0)
1326                         return IPPROTO_UDP;
1327         }
1328
1329         return nfs_nfs_protocol(options);
1330 }
1331
1332 /*
1333  * Returns the mountd server's port number specified by the given
1334  * mount options, or zero if all fails.  Zero results in a portmap
1335  * query to discover the server's mountd service port.
1336  *
1337  * mountport=0 will guarantee an rpcbind request precedes the mount
1338  * RPC so the client can determine the server's port number.
1339  */
1340 static unsigned short nfs_mount_port(struct mount_options *options)
1341 {
1342         long tmp;
1343
1344         if (po_get_numeric(options, "mountport", &tmp) == PO_FOUND)
1345                 if (tmp >= 0 && tmp <= 65535)
1346                         return tmp;
1347         return 0;
1348 }
1349
1350 /**
1351  * nfs_options2pmap - set up pmap structs based on mount options
1352  * @options: pointer to mount options
1353  * @nfs_pmap: OUT: pointer to pmap arguments for NFS server
1354  * @mnt_pmap: OUT: pointer to pmap arguments for mountd server
1355  *
1356  */
1357 void nfs_options2pmap(struct mount_options *options,
1358                       struct pmap *nfs_pmap, struct pmap *mnt_pmap)
1359 {
1360         nfs_pmap->pm_prog = nfs_nfs_program(options);
1361         nfs_pmap->pm_vers = nfs_nfs_version(options);
1362         nfs_pmap->pm_prot = nfs_nfs_protocol(options);
1363         nfs_pmap->pm_port = nfs_nfs_port(options);
1364
1365         mnt_pmap->pm_prog = nfs_mount_program(options);
1366         mnt_pmap->pm_vers = nfs_mount_version(options);
1367         mnt_pmap->pm_prot = nfs_mount_protocol(options);
1368         mnt_pmap->pm_port = nfs_mount_port(options);
1369 }