]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/mount/network.c
mount.nfs: Add more debugging output around nfs_getport()
[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                         }
571                 }
572                 if (rpc_createerr.cf_stat != RPC_PROGNOTREGISTERED &&
573                     rpc_createerr.cf_stat != RPC_TIMEDOUT &&
574                     rpc_createerr.cf_stat != RPC_CANTRECV &&
575                     rpc_createerr.cf_stat != RPC_PROGVERSMISMATCH)
576                         break;
577
578                 if (!prot) {
579                         if (*++p_prot) {
580                                 nfs_pp_debug2("retrying");
581                                 continue;
582                         }
583                         p_prot = protos;
584                 }
585                 if (rpc_createerr.cf_stat == RPC_TIMEDOUT ||
586                     rpc_createerr.cf_stat == RPC_CANTRECV)
587                         break;
588
589                 if (vers || !*++p_vers)
590                         break;
591         }
592
593         nfs_pp_debug2("failed");
594         return 0;
595
596 out_ok:
597         if (!vers)
598                 pmap->pm_vers = *p_vers;
599         if (!prot)
600                 pmap->pm_prot = *p_prot;
601         if (!port)
602                 pmap->pm_port = p_port;
603         nfs_clear_rpc_createerr();
604         return 1;
605 }
606
607 /*
608  * Probe a server's NFS service to determine which versions and
609  * transport protocols are supported.
610  *
611  * Returns 1 if the requested service port is unambiguous and pingable;
612  * @pmap is filled in with the version, port, and transport protocol used
613  * during the successful ping.  If all three are already specified, simply
614  * return success without an rpcbind query or RPC ping (we may be trying
615  * to mount an NFS service that is not advertised via rpcbind).
616  *
617  * If an error occurs or the requested service isn't available, zero is
618  * returned; rpccreateerr.cf_stat is set to reflect the nature of the error.
619  */
620 static int nfs_probe_nfsport(const struct sockaddr *sap, const socklen_t salen,
621                                 struct pmap *pmap)
622 {
623         if (pmap->pm_vers && pmap->pm_prot && pmap->pm_port)
624                 return 1;
625
626         if (nfs_mount_data_version >= 4)
627                 return nfs_probe_port(sap, salen, pmap,
628                                         probe_nfs3_first, probe_tcp_first);
629         else
630                 return nfs_probe_port(sap, salen, pmap,
631                                         probe_nfs2_only, probe_udp_only);
632 }
633
634 /*
635  * Probe a server's mountd service to determine which versions and
636  * transport protocols are supported.
637  *
638  * Returns 1 if the requested service port is unambiguous and pingable;
639  * @pmap is filled in with the version, port, and transport protocol used
640  * during the successful ping.  If all three are already specified, simply
641  * return success without an rpcbind query or RPC ping (we may be trying
642  * to mount an NFS service that is not advertised via rpcbind).
643  * 
644  * If an error occurs or the requested service isn't available, zero is
645  * returned; rpccreateerr.cf_stat is set to reflect the nature of the error.
646  */
647 static int nfs_probe_mntport(const struct sockaddr *sap, const socklen_t salen,
648                                 struct pmap *pmap)
649 {
650         if (pmap->pm_vers && pmap->pm_prot && pmap->pm_port)
651                 return 1;
652
653         if (nfs_mount_data_version >= 4)
654                 return nfs_probe_port(sap, salen, pmap,
655                                         probe_mnt3_first, probe_udp_first);
656         else
657                 return nfs_probe_port(sap, salen, pmap,
658                                         probe_mnt1_first, probe_udp_only);
659 }
660
661 /*
662  * Probe a server's mountd service to determine which versions and
663  * transport protocols are supported.  Invoked when the protocol
664  * version is already known for both the NFS and mountd service.
665  *
666  * Returns 1 and fills in both @pmap structs if the requested service
667  * ports are unambiguous and pingable.  Otherwise zero is returned;
668  * rpccreateerr.cf_stat is set to reflect the nature of the error.
669  */
670 static int nfs_probe_version_fixed(const struct sockaddr *mnt_saddr,
671                         const socklen_t mnt_salen,
672                         struct pmap *mnt_pmap,
673                         const struct sockaddr *nfs_saddr,
674                         const socklen_t nfs_salen,
675                         struct pmap *nfs_pmap)
676 {
677         if (!nfs_probe_nfsport(nfs_saddr, nfs_salen, nfs_pmap))
678                 return 0;
679         return nfs_probe_mntport(mnt_saddr, mnt_salen, mnt_pmap);
680 }
681
682 /**
683  * nfs_probe_bothports - discover the RPC endpoints of mountd and NFS server
684  * @mnt_saddr:  pointer to socket address of mountd server
685  * @mnt_salen:  length of mountd server's address
686  * @mnt_pmap:   IN: partially filled-in mountd RPC service tuple;
687  *              OUT: fully filled-in mountd RPC service tuple
688  * @nfs_saddr:  pointer to socket address of NFS server
689  * @nfs_salen:  length of NFS server's address
690  * @nfs_pmap:   IN: partially filled-in NFS RPC service tuple;
691  *              OUT: fully filled-in NFS RPC service tuple
692  *
693  * Returns 1 and fills in both @pmap structs if the requested service
694  * ports are unambiguous and pingable.  Otherwise zero is returned;
695  * rpccreateerr.cf_stat is set to reflect the nature of the error.
696  */
697 int nfs_probe_bothports(const struct sockaddr *mnt_saddr,
698                         const socklen_t mnt_salen,
699                         struct pmap *mnt_pmap,
700                         const struct sockaddr *nfs_saddr,
701                         const socklen_t nfs_salen,
702                         struct pmap *nfs_pmap)
703 {
704         struct pmap save_nfs, save_mnt;
705         const unsigned long *probe_vers;
706
707         if (mnt_pmap->pm_vers && !nfs_pmap->pm_vers)
708                 nfs_pmap->pm_vers = mntvers_to_nfs(mnt_pmap->pm_vers);
709         else if (nfs_pmap->pm_vers && !mnt_pmap->pm_vers)
710                 mnt_pmap->pm_vers = nfsvers_to_mnt(nfs_pmap->pm_vers);
711
712         if (nfs_pmap->pm_vers)
713                 return nfs_probe_version_fixed(mnt_saddr, mnt_salen, mnt_pmap,
714                                                nfs_saddr, nfs_salen, nfs_pmap);
715
716         memcpy(&save_nfs, nfs_pmap, sizeof(save_nfs));
717         memcpy(&save_mnt, mnt_pmap, sizeof(save_mnt));
718         probe_vers = (nfs_mount_data_version >= 4) ?
719                         probe_mnt3_first : probe_mnt1_first;
720
721         for (; *probe_vers; probe_vers++) {
722                 nfs_pmap->pm_vers = mntvers_to_nfs(*probe_vers);
723                 if (nfs_probe_nfsport(nfs_saddr, nfs_salen, nfs_pmap) != 0) {
724                         mnt_pmap->pm_vers = *probe_vers;
725                         if (nfs_probe_mntport(mnt_saddr, mnt_salen, mnt_pmap) != 0)
726                                 return 1;
727                         memcpy(mnt_pmap, &save_mnt, sizeof(*mnt_pmap));
728                 }
729                 switch (rpc_createerr.cf_stat) {
730                 case RPC_PROGVERSMISMATCH:
731                 case RPC_PROGNOTREGISTERED:
732                         break;
733                 default:
734                         return 0;
735                 }
736                 memcpy(nfs_pmap, &save_nfs, sizeof(*nfs_pmap));
737         }
738
739         return 0;
740 }
741
742 /**
743  * probe_bothports - discover the RPC endpoints of mountd and NFS server
744  * @mnt_server: pointer to address and pmap argument for mountd results
745  * @nfs_server: pointer to address and pmap argument for NFS server
746  *
747  * This is the legacy API that takes "clnt_addr_t" for both servers,
748  * but supports only AF_INET addresses.
749  *
750  * Returns 1 and fills in the pmap field in both clnt_addr_t structs
751  * if the requested service ports are unambiguous and pingable.
752  * Otherwise zero is returned; rpccreateerr.cf_stat is set to reflect
753  * the nature of the error.
754  */
755 int probe_bothports(clnt_addr_t *mnt_server, clnt_addr_t *nfs_server)
756 {
757         return nfs_probe_bothports((struct sockaddr *)&mnt_server->saddr,
758                                         sizeof(mnt_server->saddr),
759                                         &mnt_server->pmap,
760                                         (struct sockaddr *)&nfs_server->saddr,
761                                         sizeof(nfs_server->saddr),
762                                         &nfs_server->pmap);
763 }
764
765 static int nfs_probe_statd(void)
766 {
767         struct sockaddr_in addr = {
768                 .sin_family             = AF_INET,
769                 .sin_addr.s_addr        = htonl(INADDR_LOOPBACK),
770         };
771         rpcprog_t program = nfs_getrpcbyname(NSMPROG, nfs_ns_pgmtbl);
772
773         return nfs_getport_ping((struct sockaddr *)&addr, sizeof(addr),
774                                 program, (rpcvers_t)1, IPPROTO_UDP);
775 }
776
777 /**
778  * start_statd - attempt to start rpc.statd
779  *
780  * Returns 1 if statd is running; otherwise zero.
781  */
782 int start_statd(void)
783 {
784 #ifdef START_STATD
785         struct stat stb;
786 #endif
787
788         if (nfs_probe_statd())
789                 return 1;
790
791 #ifdef START_STATD
792         if (stat(START_STATD, &stb) == 0) {
793                 if (S_ISREG(stb.st_mode) && (stb.st_mode & S_IXUSR)) {
794                         pid_t pid = fork();
795                         switch (pid) {
796                         case 0: /* child */
797                                 execl(START_STATD, START_STATD, NULL);
798                                 exit(1);
799                         case -1: /* error */
800                                 nfs_error(_("fork failed: %s"),
801                                                         strerror(errno));
802                                 break;
803                         default: /* parent */
804                                 waitpid(pid, NULL,0);
805                                 break;
806                         }
807                         if (nfs_probe_statd())
808                                 return 1;
809                 }
810         }
811 #endif
812
813         return 0;
814 }
815
816 /**
817  * nfs_advise_umount - ask the server to remove a share from it's rmtab
818  * @sap: pointer to IP address of server to call
819  * @salen: length of server address
820  * @pmap: partially filled-in mountd RPC service tuple
821  * @argp: directory path of share to "unmount"
822  *
823  * Returns one if the unmount call succeeded; zero if the unmount
824  * failed for any reason;  rpccreateerr.cf_stat is set to reflect
825  * the nature of the error.
826  *
827  * We use a fast timeout since this call is advisory only.
828  */
829 int nfs_advise_umount(const struct sockaddr *sap, const socklen_t salen,
830                       const struct pmap *pmap, const dirpath *argp)
831 {
832         struct sockaddr_storage address;
833         struct sockaddr *saddr = (struct sockaddr *)&address;
834         struct pmap mnt_pmap = *pmap;
835         struct timeval timeout = {
836                 .tv_sec         = MOUNT_TIMEOUT >> 3,
837         };
838         CLIENT *client;
839         enum clnt_stat res = 0;
840
841         memcpy(saddr, sap, salen);
842         if (nfs_probe_mntport(saddr, salen, &mnt_pmap) == 0) {
843                 if (verbose)
844                         nfs_error(_("%s: Failed to discover mountd port%s"),
845                                 progname, clnt_spcreateerror(""));
846                 return 0;
847         }
848         nfs_set_port(saddr, mnt_pmap.pm_port);
849
850         client = nfs_get_priv_rpcclient(saddr, salen, mnt_pmap.pm_prot,
851                                         mnt_pmap.pm_prog, mnt_pmap.pm_vers,
852                                         &timeout);
853         if (client == NULL) {
854                 if (verbose)
855                         nfs_error(_("%s: Failed to create RPC client%s"),
856                                 progname, clnt_spcreateerror(""));
857                 return 0;
858         }
859
860         client->cl_auth = authunix_create_default();
861
862         res = CLNT_CALL(client, MOUNTPROC_UMNT,
863                         (xdrproc_t)xdr_dirpath, (caddr_t)argp,
864                         (xdrproc_t)xdr_void, NULL,
865                         timeout);
866         if (verbose && res != RPC_SUCCESS)
867                 nfs_error(_("%s: UMNT call failed: %s"),
868                         progname, clnt_sperrno(res));
869
870         auth_destroy(client->cl_auth);
871         CLNT_DESTROY(client);
872
873         if (res != RPC_SUCCESS)
874                 return 0;
875         return 1;
876 }
877
878 /**
879  * nfs_call_umount - ask the server to remove a share from it's rmtab
880  * @mnt_server: address of RPC MNT program server
881  * @argp: directory path of share to "unmount"
882  *
883  * Returns one if the unmount call succeeded; zero if the unmount
884  * failed for any reason.
885  *
886  * Note that a side effect of calling this function is that rpccreateerr
887  * is set.
888  */
889 int nfs_call_umount(clnt_addr_t *mnt_server, dirpath *argp)
890 {
891         struct sockaddr *sap = (struct sockaddr *)&mnt_server->saddr;
892         socklen_t salen = sizeof(mnt_server->saddr);
893         struct pmap *pmap = &mnt_server->pmap;
894         CLIENT *clnt;
895         enum clnt_stat res = 0;
896         int msock;
897
898         if (!nfs_probe_mntport(sap, salen, pmap))
899                 return 0;
900         clnt = mnt_openclnt(mnt_server, &msock);
901         if (!clnt)
902                 return 0;
903         res = clnt_call(clnt, MOUNTPROC_UMNT,
904                         (xdrproc_t)xdr_dirpath, (caddr_t)argp,
905                         (xdrproc_t)xdr_void, NULL,
906                         TIMEOUT);
907         mnt_closeclnt(clnt, msock);
908
909         if (res == RPC_SUCCESS)
910                 return 1;
911         return 0;
912 }
913
914 /**
915  * mnt_openclnt - get a handle for a remote mountd service
916  * @mnt_server: address and pmap arguments of mountd service
917  * @msock: returns a file descriptor of the underlying transport socket
918  *
919  * Returns an active handle for the remote's mountd service
920  */
921 CLIENT *mnt_openclnt(clnt_addr_t *mnt_server, int *msock)
922 {
923         struct sockaddr_in *mnt_saddr = &mnt_server->saddr;
924         struct pmap *mnt_pmap = &mnt_server->pmap;
925         CLIENT *clnt = NULL;
926
927         mnt_saddr->sin_port = htons((u_short)mnt_pmap->pm_port);
928         *msock = get_socket(mnt_saddr, mnt_pmap->pm_prot, MOUNT_TIMEOUT,
929                                 TRUE, FALSE);
930         if (*msock == RPC_ANYSOCK) {
931                 if (rpc_createerr.cf_error.re_errno == EADDRINUSE)
932                         /*
933                          * Probably in-use by a TIME_WAIT connection,
934                          * It is worth waiting a while and trying again.
935                          */
936                         rpc_createerr.cf_stat = RPC_TIMEDOUT;
937                 return NULL;
938         }
939
940         switch (mnt_pmap->pm_prot) {
941         case IPPROTO_UDP:
942                 clnt = clntudp_bufcreate(mnt_saddr,
943                                          mnt_pmap->pm_prog, mnt_pmap->pm_vers,
944                                          RETRY_TIMEOUT, msock,
945                                          MNT_SENDBUFSIZE, MNT_RECVBUFSIZE);
946                 break;
947         case IPPROTO_TCP:
948                 clnt = clnttcp_create(mnt_saddr,
949                                       mnt_pmap->pm_prog, mnt_pmap->pm_vers,
950                                       msock,
951                                       MNT_SENDBUFSIZE, MNT_RECVBUFSIZE);
952                 break;
953         }
954         if (clnt) {
955                 /* try to mount hostname:dirname */
956                 clnt->cl_auth = authunix_create_default();
957                 return clnt;
958         }
959         return NULL;
960 }
961
962 /**
963  * mnt_closeclnt - terminate a handle for a remote mountd service
964  * @clnt: pointer to an active handle for a remote mountd service
965  * @msock: file descriptor of the underlying transport socket
966  *
967  */
968 void mnt_closeclnt(CLIENT *clnt, int msock)
969 {
970         auth_destroy(clnt->cl_auth);
971         clnt_destroy(clnt);
972         close(msock);
973 }
974
975 /**
976  * clnt_ping - send an RPC ping to the remote RPC service endpoint
977  * @saddr: server's address
978  * @prog: target RPC program number
979  * @vers: target RPC version number
980  * @prot: target RPC protocol
981  * @caddr: filled in with our network address
982  *
983  * Sigh... GETPORT queries don't actually check the version number.
984  * In order to make sure that the server actually supports the service
985  * we're requesting, we open an RPC client, and fire off a NULL
986  * RPC call.
987  *
988  * caddr is the network address that the server will use to call us back.
989  * On multi-homed clients, this address depends on which NIC we use to
990  * route requests to the server.
991  *
992  * Returns one if successful, otherwise zero.
993  */
994 int clnt_ping(struct sockaddr_in *saddr, const unsigned long prog,
995                 const unsigned long vers, const unsigned int prot,
996                 struct sockaddr_in *caddr)
997 {
998         CLIENT *clnt = NULL;
999         int sock, stat;
1000         static char clnt_res;
1001         struct sockaddr dissolve;
1002
1003         rpc_createerr.cf_stat = stat = 0;
1004         sock = get_socket(saddr, prot, CONNECT_TIMEOUT, FALSE, TRUE);
1005         if (sock == RPC_ANYSOCK) {
1006                 if (rpc_createerr.cf_error.re_errno == ETIMEDOUT) {
1007                         /*
1008                          * TCP timeout. Bubble up the error to see 
1009                          * how it should be handled.
1010                          */
1011                         rpc_createerr.cf_stat = RPC_TIMEDOUT;
1012                 }
1013                 return 0;
1014         }
1015
1016         if (caddr) {
1017                 /* Get the address of our end of this connection */
1018                 socklen_t len = sizeof(*caddr);
1019                 if (getsockname(sock, caddr, &len) != 0)
1020                         caddr->sin_family = 0;
1021         }
1022
1023         switch(prot) {
1024         case IPPROTO_UDP:
1025                 /* The socket is connected (so we could getsockname successfully),
1026                  * but some servers on multi-homed hosts reply from
1027                  * the wrong address, so if we stay connected, we lose the reply.
1028                  */
1029                 dissolve.sa_family = AF_UNSPEC;
1030                 connect(sock, &dissolve, sizeof(dissolve));
1031
1032                 clnt = clntudp_bufcreate(saddr, prog, vers,
1033                                          RETRY_TIMEOUT, &sock,
1034                                          RPCSMALLMSGSIZE, RPCSMALLMSGSIZE);
1035                 break;
1036         case IPPROTO_TCP:
1037                 clnt = clnttcp_create(saddr, prog, vers, &sock,
1038                                       RPCSMALLMSGSIZE, RPCSMALLMSGSIZE);
1039                 break;
1040         }
1041         if (!clnt) {
1042                 close(sock);
1043                 return 0;
1044         }
1045         memset(&clnt_res, 0, sizeof(clnt_res));
1046         stat = clnt_call(clnt, NULLPROC,
1047                          (xdrproc_t)xdr_void, (caddr_t)NULL,
1048                          (xdrproc_t)xdr_void, (caddr_t)&clnt_res,
1049                          TIMEOUT);
1050         if (stat) {
1051                 clnt_geterr(clnt, &rpc_createerr.cf_error);
1052                 rpc_createerr.cf_stat = stat;
1053         }
1054         clnt_destroy(clnt);
1055         close(sock);
1056
1057         if (stat == RPC_SUCCESS)
1058                 return 1;
1059         else
1060                 return 0;
1061 }
1062
1063 /*
1064  * Try a getsockname() on a connected datagram socket.
1065  *
1066  * Returns 1 and fills in @buf if successful; otherwise, zero.
1067  *
1068  * A connected datagram socket prevents leaving a socket in TIME_WAIT.
1069  * This conserves the ephemeral port number space, helping reduce failed
1070  * socket binds during mount storms.
1071  */
1072 static int nfs_ca_sockname(const struct sockaddr *sap, const socklen_t salen,
1073                            struct sockaddr *buf, socklen_t *buflen)
1074 {
1075         struct sockaddr_in sin = {
1076                 .sin_family             = AF_INET,
1077                 .sin_addr.s_addr        = htonl(INADDR_ANY),
1078         };
1079         struct sockaddr_in6 sin6 = {
1080                 .sin6_family            = AF_INET6,
1081                 .sin6_addr              = IN6ADDR_ANY_INIT,
1082         };
1083         int sock;
1084
1085         sock = socket(sap->sa_family, SOCK_DGRAM, IPPROTO_UDP);
1086         if (sock < 0)
1087                 return 0;
1088
1089         switch (sap->sa_family) {
1090         case AF_INET:
1091                 if (bind(sock, (struct sockaddr *)&sin, sizeof(sin)) < 0) {
1092                         close(sock);
1093                         return 0;
1094                 }
1095                 break;
1096         case AF_INET6:
1097                 if (bind(sock, (struct sockaddr *)&sin6, sizeof(sin6)) < 0) {
1098                         close(sock);
1099                         return 0;
1100                 }
1101                 break;
1102         default:
1103                 errno = EAFNOSUPPORT;
1104                 return 0;
1105         }
1106
1107         if (connect(sock, sap, salen) < 0) {
1108                 close(sock);
1109                 return 0;
1110         }
1111
1112         return !getsockname(sock, buf, buflen);
1113 }
1114
1115 /*
1116  * Try to generate an address that prevents the server from calling us.
1117  *
1118  * Returns 1 and fills in @buf if successful; otherwise, zero.
1119  */
1120 static int nfs_ca_gai(const struct sockaddr *sap, const socklen_t salen,
1121                       struct sockaddr *buf, socklen_t *buflen)
1122 {
1123         struct addrinfo *gai_results;
1124         struct addrinfo gai_hint = {
1125                 .ai_family      = sap->sa_family,
1126                 .ai_flags       = AI_PASSIVE,   /* ANYADDR */
1127         };
1128
1129         if (getaddrinfo(NULL, "", &gai_hint, &gai_results))
1130                 return 0;
1131
1132         *buflen = gai_results->ai_addrlen;
1133         memcpy(buf, gai_results->ai_addr, *buflen);
1134
1135         freeaddrinfo(gai_results);
1136
1137         return 1;
1138 }
1139
1140 /**
1141  * nfs_callback_address - acquire our local network address
1142  * @sap: pointer to address of remote
1143  * @sap_len: length of address
1144  * @buf: pointer to buffer to be filled in with local network address
1145  * @buflen: IN: length of buffer to fill in; OUT: length of filled-in address
1146  *
1147  * Discover a network address that an NFSv4 server can use to call us back.
1148  * On multi-homed clients, this address depends on which NIC we use to
1149  * route requests to the server.
1150  *
1151  * Returns 1 and fills in @buf if an unambiguous local address is
1152  * available; returns 1 and fills in an appropriate ANYADDR address
1153  * if a local address isn't available; otherwise, returns zero.
1154  */
1155 int nfs_callback_address(const struct sockaddr *sap, const socklen_t salen,
1156                          struct sockaddr *buf, socklen_t *buflen)
1157 {
1158         struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)buf;
1159
1160         if (nfs_ca_sockname(sap, salen, buf, buflen) == 0)
1161                 if (nfs_ca_gai(sap, salen, buf, buflen) == 0)
1162                         goto out_failed;
1163
1164         /*
1165          * The server can't use an interface ID that was generated
1166          * here on the client, so always clear sin6_scope_id.
1167          */
1168         if (sin6->sin6_family == AF_INET6)
1169                 sin6->sin6_scope_id = 0;
1170
1171         return 1;
1172
1173 out_failed:
1174         *buflen = 0;
1175         if (verbose)
1176                 nfs_error(_("%s: failed to construct callback address"));
1177         return 0;
1178
1179 }
1180
1181 /*
1182  * "nfsprog" is only supported by the legacy mount command.  The
1183  * kernel mount client does not support this option.
1184  *
1185  * Returns the value set by the nfsprog= option, the value of
1186  * the RPC NFS program specified in /etc/rpc, or a baked-in
1187  * default program number, if all fails.
1188  */
1189 static rpcprog_t nfs_nfs_program(struct mount_options *options)
1190 {
1191         long tmp;
1192
1193         if (po_get_numeric(options, "nfsprog", &tmp) == PO_FOUND)
1194                 if (tmp >= 0)
1195                         return tmp;
1196         return nfs_getrpcbyname(NFSPROG, nfs_nfs_pgmtbl);
1197 }
1198
1199
1200 /*
1201  * Returns the RPC version number specified by the given mount
1202  * options for the NFS service, or zero if all fails.
1203  */
1204 static rpcvers_t nfs_nfs_version(struct mount_options *options)
1205 {
1206         long tmp;
1207
1208         switch (po_rightmost(options, nfs_version_opttbl)) {
1209         case 0: /* v2 */
1210                 return 2;
1211         case 1: /* v3 */
1212                 return 3;
1213         case 2: /* vers */
1214                 if (po_get_numeric(options, "vers", &tmp) == PO_FOUND)
1215                         if (tmp >= 2 && tmp <= 3)
1216                                 return tmp;
1217                 break;
1218         case 3: /* nfsvers */
1219                 if (po_get_numeric(options, "nfsvers", &tmp) == PO_FOUND)
1220                         if (tmp >= 2 && tmp <= 3)
1221                                 return tmp;
1222                 break;
1223         }
1224
1225         return 0;
1226 }
1227
1228 /*
1229  * Returns the NFS transport protocol specified by the given mount options
1230  *
1231  * Returns the IPPROTO_ value specified by the given mount options, or
1232  * IPPROTO_UDP if all fails.
1233  */
1234 static unsigned short nfs_nfs_protocol(struct mount_options *options)
1235 {
1236         char *option;
1237
1238         switch (po_rightmost(options, nfs_transport_opttbl)) {
1239         case 1: /* tcp */
1240                 return IPPROTO_TCP;
1241         case 2: /* proto */
1242                 option = po_get(options, "proto");
1243                 if (option) {
1244                         if (strcmp(option, "tcp") == 0)
1245                                 return IPPROTO_TCP;
1246                         if (strcmp(option, "udp") == 0)
1247                                 return IPPROTO_UDP;
1248                 }
1249         }
1250
1251         return IPPROTO_UDP;
1252 }
1253
1254 /*
1255  * Returns the NFS server's port number specified by the given
1256  * mount options, or zero if all fails.  Zero results in a portmap
1257  * query to discover the server's mountd service port.
1258  *
1259  * port=0 will guarantee an rpcbind request precedes the first
1260  * NFS RPC so the client can determine the server's port number.
1261  */
1262 static unsigned short nfs_nfs_port(struct mount_options *options)
1263 {
1264         long tmp;
1265
1266         if (po_get_numeric(options, "port", &tmp) == PO_FOUND)
1267                 if (tmp >= 0 && tmp <= 65535)
1268                         return tmp;
1269         return 0;
1270 }
1271
1272 /*
1273  * "mountprog" is only supported by the legacy mount command.  The
1274  * kernel mount client does not support this option.
1275  *
1276  * Returns the value set by the mountprog= option, the value of
1277  * the RPC mount program specified in /etc/rpc, or a baked-in
1278  * default program number, if all fails.
1279  */
1280 static rpcprog_t nfs_mount_program(struct mount_options *options)
1281 {
1282         long tmp;
1283
1284         if (po_get_numeric(options, "mountprog", &tmp) == PO_FOUND)
1285                 if (tmp >= 0)
1286                         return tmp;
1287         return nfs_getrpcbyname(MOUNTPROG, nfs_mnt_pgmtbl);
1288 }
1289
1290 /*
1291  * Returns the RPC version number specified by the given mount options,
1292  * or the version "3" if all fails.
1293  */
1294 static rpcvers_t nfs_mount_version(struct mount_options *options)
1295 {
1296         long tmp;
1297
1298         if (po_get_numeric(options, "mountvers", &tmp) == PO_FOUND)
1299                 if (tmp >= 1 && tmp <= 4)
1300                         return tmp;
1301
1302         return nfsvers_to_mnt(nfs_nfs_version(options));
1303 }
1304
1305 /*
1306  * Returns the transport protocol to use for the mount service
1307  *
1308  * Returns the IPPROTO_ value specified by the mountproto option, or
1309  * if that doesn't exist, the IPPROTO_ value specified for NFS
1310  * itself.
1311  */
1312 static unsigned short nfs_mount_protocol(struct mount_options *options)
1313 {
1314         char *option;
1315
1316         option = po_get(options, "mountproto");
1317         if (option) {
1318                 if (strcmp(option, "tcp") == 0)
1319                         return IPPROTO_TCP;
1320                 if (strcmp(option, "udp") == 0)
1321                         return IPPROTO_UDP;
1322         }
1323
1324         return nfs_nfs_protocol(options);
1325 }
1326
1327 /*
1328  * Returns the mountd server's port number specified by the given
1329  * mount options, or zero if all fails.  Zero results in a portmap
1330  * query to discover the server's mountd service port.
1331  *
1332  * port=0 will guarantee an rpcbind request precedes the mount
1333  * RPC so the client can determine the server's port number.
1334  */
1335 static unsigned short nfs_mount_port(struct mount_options *options)
1336 {
1337         long tmp;
1338
1339         if (po_get_numeric(options, "mountport", &tmp) == PO_FOUND)
1340                 if (tmp >= 0 && tmp <= 65535)
1341                         return tmp;
1342         return 0;
1343 }
1344
1345 /**
1346  * nfs_options2pmap - set up pmap structs based on mount options
1347  * @options: pointer to mount options
1348  * @nfs_pmap: OUT: pointer to pmap arguments for NFS server
1349  * @mnt_pmap: OUT: pointer to pmap arguments for mountd server
1350  *
1351  */
1352 void nfs_options2pmap(struct mount_options *options,
1353                       struct pmap *nfs_pmap, struct pmap *mnt_pmap)
1354 {
1355         nfs_pmap->pm_prog = nfs_nfs_program(options);
1356         nfs_pmap->pm_vers = nfs_nfs_version(options);
1357         nfs_pmap->pm_prot = nfs_nfs_protocol(options);
1358         nfs_pmap->pm_port = nfs_nfs_port(options);
1359
1360         mnt_pmap->pm_prog = nfs_mount_program(options);
1361         mnt_pmap->pm_vers = nfs_mount_version(options);
1362         mnt_pmap->pm_prot = nfs_mount_protocol(options);
1363         mnt_pmap->pm_port = nfs_mount_port(options);
1364 }