2 * Copyright (c) 1992, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
6 * Rick Macklem at The University of Guelph.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * @(#) Copyright (c) 1992, 1993, 1994 The Regents of the University of California. All rights reserved.
37 * @(#)mount_nfs.c 8.11 (Berkeley) 5/4/95
38 * $FreeBSD: src/sbin/mount_nfs/mount_nfs.c,v 1.36.2.6 2003/05/13 14:45:40 trhodes Exp $
39 * $DragonFly: src/sbin/mount_nfs/mount_nfs.c,v 1.14 2008/07/14 22:22:40 dillon Exp $
42 #include <sys/param.h>
43 #include <sys/mount.h>
44 #include <sys/socket.h>
46 #include <sys/syslog.h>
49 #include <rpc/pmap_clnt.h>
50 #include <rpc/pmap_prot.h>
52 #include <vfs/nfs/rpcv2.h>
53 #include <vfs/nfs/nfsproto.h>
54 #include <vfs/nfs/nfs.h>
56 #include <arpa/inet.h>
73 #define ALTF_NOCONN 0x2
74 #define ALTF_DUMBTIMR 0x4
76 #define ALTF_KERB 0x10
77 #define ALTF_NFSV3 0x20
78 #define ALTF_RDIRPLUS 0x40
79 #define ALTF_UNUSED080 0x80
80 #define ALTF_RESVPORT 0x100
81 #define ALTF_SEQPACKET 0x200
82 #define ALTF_UNUSED400 0x400
83 #define ALTF_SOFT 0x800
84 #define ALTF_TCP 0x1000
85 #define ALTF_PORT 0x2000
86 #define ALTF_NFSV2 0x4000
87 #define ALTF_ACREGMIN 0x8000
88 #define ALTF_ACREGMAX 0x10000
89 #define ALTF_ACDIRMIN 0x20000
90 #define ALTF_ACDIRMAX 0x40000
92 struct mntopt mopts
[] = {
97 { "bg", 0, ALTF_BG
, 1 },
98 { "conn", 1, ALTF_NOCONN
, 1 },
99 { "dumbtimer", 0, ALTF_DUMBTIMR
, 1 },
100 { "intr", 0, ALTF_INTR
, 1 },
102 { "kerb", 0, ALTF_KERB
, 1 },
104 { "nfsv3", 0, ALTF_NFSV3
, 1 },
105 { "rdirplus", 0, ALTF_RDIRPLUS
, 1 },
106 { "mntudp", 1, ALTF_TCP
, 1 },
107 { "resvport", 0, ALTF_RESVPORT
, 1 },
108 { "soft", 0, ALTF_SOFT
, 1 },
109 { "tcp", 0, ALTF_TCP
, 1 },
110 { "udp", 1, ALTF_TCP
, 1 },
111 { "port=", 0, ALTF_PORT
, 1 },
112 { "nfsv2", 0, ALTF_NFSV2
, 1 },
113 { "acregmin=", 0, ALTF_ACREGMIN
, 1 },
114 { "acregmax=", 0, ALTF_ACREGMAX
, 1 },
115 { "acdirmin=", 0, ALTF_ACDIRMIN
, 1 },
116 { "acdirmax=", 0, ALTF_ACDIRMAX
, 1 },
120 struct nfs_args nfsdefargs
= {
123 sizeof (struct sockaddr_in
),
146 /* Table for af,sotype -> netid conversions. */
152 {"udp", AF_INET
, SOCK_DGRAM
},
153 {"tcp", AF_INET
, SOCK_STREAM
},
154 {"udp6", AF_INET6
, SOCK_DGRAM
},
155 {"tcp6", AF_INET6
, SOCK_STREAM
},
164 u_char nfh
[NFSX_V3FHMAX
];
171 char *portspec
= NULL
; /* Server nfs port; NULL means look up via rpcbind. */
180 char realm
[REALM_SZ
];
185 struct nfsrpc_nickverf kverf
;
186 struct nfsrpc_fullblock kin
, kout
;
190 NFSKERBKEYSCHED_T kerb_keysched
;
193 /* Return codes for nfs_tryproto. */
196 TRYRET_TIMEOUT
, /* No response received. */
197 TRYRET_REMOTEERR
, /* Error received from remote server. */
198 TRYRET_LOCALERR
/* Local failure. */
202 void set_rpc_maxgrouplist(int);
204 static struct netconfig
*getnetconf_cached(const char *);
205 static const char *netidbytype(int, int);
206 static int getnfsargs(char *, struct nfs_args
*);
207 static void usage(void) __dead2
;
208 static int xdr_dir(XDR
*, char *);
209 static int xdr_fh(XDR
*, struct nfhret
*);
211 nfs_tryproto(struct nfs_args
*, struct addrinfo
*,
212 char *, char *, char **);
214 returncode(enum clnt_stat
, struct rpc_err
*);
217 * Used to set mount flags with getmntopts. Call with dir=TRUE to
218 * initialize altflags from the current mount flags. Call with
219 * dir=FALSE to update mount flags with the new value of altflags after
220 * the call to getmntopts.
223 set_flags(int* altflags
, int* nfsflags
, int dir
)
227 if (*nfsflags & NFSMNT_##nf) \
228 *altflags |= ALTF_##af; \
230 *altflags &= ~ALTF_##af; \
232 if (*altflags & ALTF_##af) \
233 *nfsflags |= NFSMNT_##nf; \
235 *nfsflags &= ~NFSMNT_##nf; \
258 main(int argc
, char **argv
)
261 struct nfs_args
*nfsargsp
;
262 struct nfs_args nfsargs
;
263 struct nfsd_cargs ncd
;
264 int mntflags
, altflags
, nfssvc_flag
, num
;
265 char *name
, *p
, *spec
;
266 char mntpath
[MAXPATHLEN
];
273 strcpy(realm
, KRB_REALM
);
274 if (sizeof (struct nfsrpc_nickverf
) != RPCX_NICKVERF
||
275 sizeof (struct nfsrpc_fullblock
) != RPCX_FULLBLOCK
||
276 ((char *)&ktick
.kt
) - ((char *)&ktick
) != NFSX_UNSIGNED
||
277 ((char *)ktick
.kt
.dat
) - ((char *)&ktick
) != 2 * NFSX_UNSIGNED
)
278 fprintf(stderr
, "Yikes! NFSKERB structs not packed!!\n");
283 nfsargs
= nfsdefargs
;
285 if (altflags
& ALTF_TCP
) {
286 nfsproto
= IPPROTO_TCP
;
287 nfsargsp
->sotype
= SOCK_STREAM
;
289 nfsproto
= IPPROTO_UDP
;
290 nfsargsp
->sotype
= SOCK_DGRAM
;
292 while ((c
= getopt(argc
, argv
,
293 "23a:bcdD:g:I:iKlm:No:PR:r:sTt:w:x:U")) != -1)
302 num
= strtol(optarg
, &p
, 10);
304 errx(1, "illegal -a value -- %s", optarg
);
305 nfsargsp
->readahead
= num
;
306 nfsargsp
->flags
|= NFSMNT_READAHEAD
;
312 nfsargsp
->flags
|= NFSMNT_NOCONN
;
315 num
= strtol(optarg
, &p
, 10);
317 errx(1, "illegal -D value -- %s", optarg
);
318 nfsargsp
->deadthresh
= num
;
319 nfsargsp
->flags
|= NFSMNT_DEADTHRESH
;
322 nfsargsp
->flags
|= NFSMNT_DUMBTIMR
;
326 num
= strtol(optarg
, &p
, 10);
328 errx(1, "illegal -g value -- %s", optarg
);
329 set_rpc_maxgrouplist(num
);
330 nfsargsp
->maxgrouplist
= num
;
331 nfsargsp
->flags
|= NFSMNT_MAXGRPS
;
335 num
= strtol(optarg
, &p
, 10);
337 errx(1, "illegal -I value -- %s", optarg
);
338 nfsargsp
->readdirsize
= num
;
339 nfsargsp
->flags
|= NFSMNT_READDIRSIZE
;
342 nfsargsp
->flags
|= NFSMNT_INT
;
346 nfsargsp
->flags
|= NFSMNT_KERB
;
350 nfsargsp
->flags
|= NFSMNT_RDIRPLUS
;
354 strncpy(realm
, optarg
, REALM_SZ
- 1);
355 realm
[REALM_SZ
- 1] = '\0';
359 nfsargsp
->flags
&= ~NFSMNT_RESVPORT
;
363 set_flags(&altflags
, &nfsargsp
->flags
, TRUE
);
364 if (nfsproto
== IPPROTO_TCP
)
365 altflags
|= ALTF_TCP
;
367 altflags
|= ALTF_NFSV2
;
368 else if (mountmode
== V3
)
369 altflags
|= ALTF_NFSV3
;
370 getmntopts(optarg
, mopts
, &mntflags
, &altflags
);
371 set_flags(&altflags
, &nfsargsp
->flags
, FALSE
);
373 * Handle altflags which don't map directly to
376 if(altflags
& ALTF_BG
)
378 if (altflags
& ALTF_TCP
) {
379 nfsproto
= IPPROTO_TCP
;
380 nfsargsp
->sotype
= SOCK_STREAM
;
382 nfsproto
= IPPROTO_UDP
;
383 nfsargsp
->sotype
= SOCK_DGRAM
;
385 if(altflags
& ALTF_PORT
) {
387 * XXX Converting from a string to an int
388 * and back again is silly, and we should
389 * allow /etc/services names.
391 asprintf(&portspec
, "%d",
392 atoi(strstr(optarg
, "port=") + 5));
393 if (portspec
== NULL
)
397 if(altflags
& ALTF_NFSV2
)
399 if(altflags
& ALTF_NFSV3
)
401 if(altflags
& ALTF_ACREGMIN
)
402 nfsargsp
->acregmin
= atoi(strstr(optarg
,
404 if(altflags
& ALTF_ACREGMAX
)
405 nfsargsp
->acregmax
= atoi(strstr(optarg
,
407 if(altflags
& ALTF_ACDIRMIN
)
408 nfsargsp
->acdirmin
= atoi(strstr(optarg
,
410 if(altflags
& ALTF_ACDIRMAX
)
411 nfsargsp
->acdirmax
= atoi(strstr(optarg
,
415 /* obsolete for NFSMNT_RESVPORT, now default */
418 num
= strtol(optarg
, &p
, 10);
420 errx(1, "illegal -R value -- %s", optarg
);
424 num
= strtol(optarg
, &p
, 10);
426 errx(1, "illegal -r value -- %s", optarg
);
427 nfsargsp
->rsize
= num
;
428 nfsargsp
->flags
|= NFSMNT_RSIZE
;
431 nfsargsp
->flags
|= NFSMNT_SOFT
;
434 nfsargsp
->sotype
= SOCK_STREAM
;
435 nfsproto
= IPPROTO_TCP
;
436 altflags
|= ALTF_TCP
;
439 num
= strtol(optarg
, &p
, 10);
441 errx(1, "illegal -t value -- %s", optarg
);
442 nfsargsp
->timeo
= num
;
443 nfsargsp
->flags
|= NFSMNT_TIMEO
;
446 num
= strtol(optarg
, &p
, 10);
448 errx(1, "illegal -w value -- %s", optarg
);
449 nfsargsp
->wsize
= num
;
450 nfsargsp
->flags
|= NFSMNT_WSIZE
;
453 num
= strtol(optarg
, &p
, 10);
455 errx(1, "illegal -x value -- %s", optarg
);
456 nfsargsp
->retrans
= num
;
457 nfsargsp
->flags
|= NFSMNT_RETRANS
;
460 nfsargsp
->sotype
= SOCK_DGRAM
;
461 nfsproto
= IPPROTO_UDP
;
462 altflags
&= ~ALTF_TCP
;
480 /* The default is to keep retrying forever. */
482 if (!getnfsargs(spec
, nfsargsp
))
485 /* resolve the mountpoint with realpath(3) */
486 checkpath(name
, mntpath
);
488 error
= getvfsbyname("nfs", &vfc
);
489 if (error
&& vfsisloadable("nfs")) {
491 err(EX_OSERR
, "vfsload(nfs)");
492 endvfsent(); /* clear cache */
493 error
= getvfsbyname("nfs", &vfc
);
496 errx(EX_OSERR
, "nfs filesystem is not available");
498 if (mount(vfc
.vfc_name
, mntpath
, mntflags
, nfsargsp
))
499 err(1, "%s", mntpath
);
500 if (nfsargsp
->flags
& NFSMNT_KERB
) {
501 if ((opflags
& ISBGRND
) == 0) {
502 if (daemon(0, 0) != 0)
505 openlog("mount_nfs", LOG_PID
, LOG_DAEMON
);
506 nfssvc_flag
= NFSSVC_MNTD
;
507 ncd
.ncd_dirp
= mntpath
;
508 while (nfssvc(nfssvc_flag
, (caddr_t
)&ncd
) < 0) {
509 if (errno
!= ENEEDAUTH
) {
510 syslog(LOG_ERR
, "nfssvc err %m");
514 NFSSVC_MNTD
| NFSSVC_GOTAUTH
| NFSSVC_AUTHINFAIL
;
517 * Set up as ncd_authuid for the kerberos call.
518 * Must set ruid to ncd_authuid and reset the
519 * ticket name iff ncd_authuid is not the same
520 * as last time, so that the right ticket file
522 * Get the Kerberos credential structure so that
523 * we have the session key and get a ticket for
525 * For more info see the IETF Draft "Authentication
528 if (ncd
.ncd_authuid
!= last_ruid
) {
530 sprintf(buf
, "%s%d", TKT_ROOT
, ncd
.ncd_authuid
);
531 krb_set_tkt_string(buf
);
532 last_ruid
= ncd
.ncd_authuid
;
534 setreuid(ncd
.ncd_authuid
, 0);
535 kret
= krb_get_cred(NFS_KERBSRV
, inst
, realm
, &kcr
);
536 if (kret
== RET_NOTKT
) {
537 kret
= get_ad_tkt(NFS_KERBSRV
, inst
, realm
,
539 if (kret
== KSUCCESS
)
540 kret
= krb_get_cred(NFS_KERBSRV
, inst
, realm
,
543 if (kret
== KSUCCESS
)
544 kret
= krb_mk_req(&ktick
.kt
, NFS_KERBSRV
, inst
,
548 * Fill in the AKN_FULLNAME authenticator and verifier.
549 * Along with the Kerberos ticket, we need to build
550 * the timestamp verifier and encrypt it in CBC mode.
552 if (kret
== KSUCCESS
&&
553 ktick
.kt
.length
<= (RPCAUTH_MAXSIZ
-3*NFSX_UNSIGNED
)
554 && gettimeofday(&ktv
, NULL
) == 0) {
555 ncd
.ncd_authtype
= RPCAUTH_KERB4
;
556 ncd
.ncd_authstr
= (u_char
*)&ktick
;
557 ncd
.ncd_authlen
= nfsm_rndup(ktick
.kt
.length
) +
559 ncd
.ncd_verfstr
= (u_char
*)&kverf
;
560 ncd
.ncd_verflen
= sizeof (kverf
);
561 memmove(ncd
.ncd_key
, kcr
.session
,
562 sizeof (kcr
.session
));
563 kin
.t1
= htonl(ktv
.tv_sec
);
564 kin
.t2
= htonl(ktv
.tv_usec
);
565 kin
.w1
= htonl(NFS_KERBTTL
);
566 kin
.w2
= htonl(NFS_KERBTTL
- 1);
567 bzero((caddr_t
)kivec
, sizeof (kivec
));
570 * Encrypt kin in CBC mode using the session
576 * Finally, fill the timestamp verifier into the
577 * authenticator and verifier.
579 ktick
.kind
= htonl(RPCAKN_FULLNAME
);
580 kverf
.kind
= htonl(RPCAKN_FULLNAME
);
581 NFS_KERBW1(ktick
.kt
) = kout
.w1
;
582 ktick
.kt
.length
= htonl(ktick
.kt
.length
);
583 kverf
.verf
.t1
= kout
.t1
;
584 kverf
.verf
.t2
= kout
.t2
;
585 kverf
.verf
.w2
= kout
.w2
;
586 nfssvc_flag
= NFSSVC_MNTD
| NFSSVC_GOTAUTH
;
596 getnfsargs(char *spec
, struct nfs_args
*nfsargsp
)
598 struct addrinfo hints
, *ai_nfs
, *ai
;
600 char host
[NI_MAXHOST
], serv
[NI_MAXSERV
];
603 int ecode
, speclen
, remoteerr
;
604 char *hostp
, *delimp
, *errstr
;
609 static char nam
[MNAMELEN
+ 1];
611 if ((delimp
= strrchr(spec
, ':')) != NULL
) {
614 } else if ((delimp
= strrchr(spec
, '@')) != NULL
) {
615 warnx("path@server syntax is deprecated, use server:path");
618 warnx("no <host>:<dirpath> nfs-name");
624 * If there has been a trailing slash at mounttime it seems
625 * that some mountd implementations fail to remove the mount
626 * entries from their mountlist while unmounting.
628 for (speclen
= strlen(spec
);
629 speclen
> 1 && spec
[speclen
- 1] == '/';
631 spec
[speclen
- 1] = '\0';
632 if (strlen(hostp
) + strlen(spec
) + 1 > MNAMELEN
) {
633 warnx("%s:%s: %s", hostp
, spec
, strerror(ENAMETOOLONG
));
636 /* Make both '@' and ':' notations equal */
637 if (*hostp
!= '\0') {
639 memmove(nam
, hostp
, len
);
641 memmove(nam
+ len
+ 1, spec
, speclen
);
642 nam
[len
+ speclen
+ 1] = '\0';
646 * Handle an internet host address and reverse resolve it if
649 memset(&hints
, 0, sizeof hints
);
650 hints
.ai_flags
= AI_NUMERICHOST
;
651 hints
.ai_socktype
= nfsargsp
->sotype
;
652 if (getaddrinfo(hostp
, portspec
, &hints
, &ai_nfs
) == 0) {
654 if ((nfsargsp
->flags
& NFSMNT_KERB
)) {
656 if (getnameinfo(ai_nfs
->ai_addr
, ai_nfs
->ai_addrlen
,
657 host
, sizeof host
, serv
, sizeof serv
, 0) != 0) {
658 warnx("can't reverse resolve net address");
666 if ((ecode
= getaddrinfo(hostp
, portspec
, &hints
, &ai_nfs
))
668 if (portspec
== NULL
)
669 errx(1, "%s: %s", hostp
, gai_strerror(ecode
));
671 errx(1, "%s:%s: %s", hostp
, portspec
,
672 gai_strerror(ecode
));
677 if (nfsargsp
->flags
& NFSMNT_KERB
) {
678 strncpy(inst
, hp
->h_name
, INST_SZ
);
679 inst
[INST_SZ
- 1] = '\0';
680 if (cp
= strchr(inst
, '.'))
685 ret
= TRYRET_LOCALERR
;
688 * Try each entry returned by getaddrinfo(). Note the
689 * occurence of remote errors by setting `remoteerr'.
692 for (ai
= ai_nfs
; ai
!= NULL
; ai
= ai
->ai_next
) {
693 ret
= nfs_tryproto(nfsargsp
, ai
, hostp
, spec
, &errstr
);
694 if (ret
== TRYRET_SUCCESS
)
696 if (ret
!= TRYRET_LOCALERR
)
698 if ((opflags
& ISBGRND
) == 0)
699 fprintf(stderr
, "%s\n", errstr
);
701 if (ret
== TRYRET_SUCCESS
)
704 /* Exit if all errors were local. */
709 * If retrycnt == 0, we are to keep retrying forever.
710 * Otherwise decrement it, and exit if it hits zero.
712 if (retrycnt
!= 0 && --retrycnt
== 0)
715 if ((opflags
& (BGRND
| ISBGRND
)) == BGRND
) {
716 warnx("Cannot immediately mount %s:%s, backgrounding",
719 if (daemon(0, 0) != 0)
724 freeaddrinfo(ai_nfs
);
725 nfsargsp
->hostname
= nam
;
726 /* Add mounted filesystem to PATH_MOUNTTAB */
727 if (!add_mtab(hostp
, spec
))
728 warnx("can't update %s for %s:%s", PATH_MOUNTTAB
, hostp
, spec
);
733 * Try to set up the NFS arguments according to the address
734 * family, protocol (and possibly port) specified in `ai'.
736 * Returns TRYRET_SUCCESS if successful, or:
737 * TRYRET_TIMEOUT The server did not respond.
738 * TRYRET_REMOTEERR The server reported an error.
739 * TRYRET_LOCALERR Local failure.
741 * In all error cases, *errstr will be set to a statically-allocated string
742 * describing the error.
745 nfs_tryproto(struct nfs_args
*nfsargsp
, struct addrinfo
*ai
, char *hostp
,
746 char *spec
, char **errstr
)
748 static char errbuf
[256];
749 struct sockaddr_storage nfs_ss
;
750 struct netbuf nfs_nb
;
751 struct nfhret nfhret
;
753 struct rpc_err rpcerr
;
755 struct netconfig
*nconf
, *nconf_mnt
;
756 const char *netid
, *netid_mnt
;
757 int doconnect
, nfsvers
, mntvers
;
758 enum clnt_stat status
;
759 enum mountmode trymntmode
;
761 trymntmode
= mountmode
;
765 if ((netid
= netidbytype(ai
->ai_family
, nfsargsp
->sotype
)) == NULL
) {
766 snprintf(errbuf
, sizeof errbuf
,
767 "af %d sotype %d not supported", ai
->ai_family
,
769 return (TRYRET_LOCALERR
);
771 if ((nconf
= getnetconf_cached(netid
)) == NULL
) {
772 snprintf(errbuf
, sizeof errbuf
, "%s: %s", netid
, nc_sperror());
773 return (TRYRET_LOCALERR
);
780 if (trymntmode
== V2
) {
788 if (portspec
!= NULL
) {
789 /* `ai' contains the complete nfsd sockaddr. */
790 nfs_nb
.buf
= ai
->ai_addr
;
791 nfs_nb
.len
= nfs_nb
.maxlen
= ai
->ai_addrlen
;
793 /* Ask the remote rpcbind. */
794 nfs_nb
.buf
= &nfs_ss
;
795 nfs_nb
.len
= nfs_nb
.maxlen
= sizeof nfs_ss
;
797 if (!rpcb_getaddr(RPCPROG_NFS
, nfsvers
, nconf
, &nfs_nb
,
799 if (rpc_createerr
.cf_stat
== RPC_PROGVERSMISMATCH
&&
804 snprintf(errbuf
, sizeof errbuf
, "[%s] %s:%s: %s",
806 clnt_spcreateerror("RPCPROG_NFS"));
807 return (returncode(rpc_createerr
.cf_stat
,
808 &rpc_createerr
.cf_error
));
812 /* Check that the server (nfsd) responds on the port we have chosen. */
813 clp
= clnt_tli_create(RPC_ANYFD
, nconf
, &nfs_nb
, RPCPROG_NFS
, nfsvers
,
816 snprintf(errbuf
, sizeof errbuf
, "[%s] %s:%s: %s", netid
,
817 hostp
, spec
, clnt_spcreateerror("nfsd: RPCPROG_NFS"));
818 return (returncode(rpc_createerr
.cf_stat
,
819 &rpc_createerr
.cf_error
));
821 if (nfsargsp
->sotype
== SOCK_DGRAM
&&
822 !(nfsargsp
->flags
& NFSMNT_NOCONN
)) {
824 * Use connect(), to match what the kernel does. This
825 * catches cases where the server responds from the
826 * wrong source address.
829 if (!clnt_control(clp
, CLSET_CONNECT
, (char *)&doconnect
)) {
831 snprintf(errbuf
, sizeof errbuf
,
832 "[%s] %s:%s: CLSET_CONNECT failed", netid
, hostp
,
834 return (TRYRET_LOCALERR
);
840 status
= clnt_call(clp
, NFSPROC_NULL
, (xdrproc_t
)xdr_void
, NULL
,
841 (xdrproc_t
)xdr_void
, NULL
, try);
842 if (status
!= RPC_SUCCESS
) {
843 if (status
== RPC_PROGVERSMISMATCH
&& trymntmode
== ANY
) {
848 clnt_geterr(clp
, &rpcerr
);
849 snprintf(errbuf
, sizeof errbuf
, "[%s] %s:%s: %s", netid
,
850 hostp
, spec
, clnt_sperror(clp
, "NFSPROC_NULL"));
852 return (returncode(status
, &rpcerr
));
856 /* Send the RPCMNT_MOUNT RPC to get the root filehandle. */
859 clp
= clnt_tp_create(hostp
, RPCPROG_MNT
, mntvers
, nconf_mnt
);
861 snprintf(errbuf
, sizeof errbuf
, "[%s] %s:%s: %s", netid_mnt
,
862 hostp
, spec
, clnt_spcreateerror("RPCMNT: clnt_create"));
863 return (returncode(rpc_createerr
.cf_stat
,
864 &rpc_createerr
.cf_error
));
866 clp
->cl_auth
= authsys_create_default();
867 if (nfsargsp
->flags
& NFSMNT_KERB
)
868 nfhret
.auth
= RPCAUTH_KERB4
;
870 nfhret
.auth
= RPCAUTH_UNIX
;
871 nfhret
.vers
= mntvers
;
872 status
= clnt_call(clp
, RPCMNT_MOUNT
, (xdrproc_t
)xdr_dir
, spec
,
873 (xdrproc_t
)xdr_fh
, &nfhret
, try);
874 auth_destroy(clp
->cl_auth
);
875 if (status
!= RPC_SUCCESS
) {
876 if (status
== RPC_PROGVERSMISMATCH
&& trymntmode
== ANY
) {
881 clnt_geterr(clp
, &rpcerr
);
882 snprintf(errbuf
, sizeof errbuf
, "[%s] %s:%s: %s", netid_mnt
,
883 hostp
, spec
, clnt_sperror(clp
, "RPCPROG_MNT"));
885 return (returncode(status
, &rpcerr
));
889 if (nfhret
.stat
!= 0) {
890 snprintf(errbuf
, sizeof errbuf
, "[%s] %s:%s: %s", netid_mnt
,
891 hostp
, spec
, strerror(nfhret
.stat
));
892 return (TRYRET_REMOTEERR
);
896 * Store the filehandle and server address in nfsargsp, making
897 * sure to copy any locally allocated structures.
899 nfsargsp
->addrlen
= nfs_nb
.len
;
900 nfsargsp
->addr
= malloc(nfsargsp
->addrlen
);
901 nfsargsp
->fhsize
= nfhret
.fhsize
;
902 nfsargsp
->fh
= malloc(nfsargsp
->fhsize
);
903 if (nfsargsp
->addr
== NULL
|| nfsargsp
->fh
== NULL
)
905 bcopy(nfs_nb
.buf
, nfsargsp
->addr
, nfsargsp
->addrlen
);
906 bcopy(nfhret
.nfh
, nfsargsp
->fh
, nfsargsp
->fhsize
);
909 nfsargsp
->flags
|= NFSMNT_NFSV3
;
911 nfsargsp
->flags
&= ~NFSMNT_NFSV3
;
913 return (TRYRET_SUCCESS
);
918 * Catagorise a RPC return status and error into an `enum tryret'
922 returncode(enum clnt_stat status
, struct rpc_err
*rpcerr
)
926 return (TRYRET_TIMEOUT
);
927 case RPC_PMAPFAILURE
:
928 case RPC_PROGNOTREGISTERED
:
929 case RPC_PROGVERSMISMATCH
:
930 /* XXX, these can be local or remote. */
933 return (TRYRET_REMOTEERR
);
934 case RPC_SYSTEMERROR
:
935 switch (rpcerr
->re_errno
) {
937 return (TRYRET_TIMEOUT
);
941 return (TRYRET_REMOTEERR
);
947 return (TRYRET_LOCALERR
);
951 * Look up a netid based on an address family and socket type.
952 * `af' is the address family, and `sotype' is SOCK_DGRAM or SOCK_STREAM.
954 * XXX there should be a library function for this.
957 netidbytype(int af
, int sotype
)
961 for (p
= nc_protos
; p
->netid
!= NULL
; p
++) {
962 if (af
!= p
->af
|| sotype
!= p
->sotype
)
970 * Look up a netconfig entry based on a netid, and cache the result so
971 * that we don't need to remember to call freenetconfigent().
973 * Otherwise it behaves just like getnetconfigent(), so nc_*error()
976 static struct netconfig
*
977 getnetconf_cached(const char *netid
)
979 static struct nc_entry
{
980 struct netconfig
*nconf
;
981 struct nc_entry
*next
;
984 struct netconfig
*nconf
;
986 for (p
= head
; p
!= NULL
; p
= p
->next
)
987 if (strcmp(netid
, p
->nconf
->nc_netid
) == 0)
990 if ((nconf
= getnetconfigent(netid
)) == NULL
)
992 if ((p
= malloc(sizeof(*p
))) == NULL
)
1002 * xdr routines for mount rpc's
1005 xdr_dir(XDR
*xdrsp
, char *dirp
)
1007 return (xdr_string(xdrsp
, &dirp
, RPCMNT_PATHLEN
));
1011 xdr_fh(XDR
*xdrsp
, struct nfhret
*np
)
1014 long auth
, authcnt
, authfnd
= 0;
1016 if (!xdr_u_long(xdrsp
, &np
->stat
))
1022 np
->fhsize
= NFSX_V2FH
;
1023 return (xdr_opaque(xdrsp
, (caddr_t
)np
->nfh
, NFSX_V2FH
));
1025 if (!xdr_long(xdrsp
, &np
->fhsize
))
1027 if (np
->fhsize
<= 0 || np
->fhsize
> NFSX_V3FHMAX
)
1029 if (!xdr_opaque(xdrsp
, (caddr_t
)np
->nfh
, np
->fhsize
))
1031 if (!xdr_long(xdrsp
, &authcnt
))
1033 for (i
= 0; i
< authcnt
; i
++) {
1034 if (!xdr_long(xdrsp
, &auth
))
1036 if (auth
== np
->auth
)
1040 * Some servers, such as DEC's OSF/1 return a nil authenticator
1041 * list to indicate RPCAUTH_UNIX.
1043 if (!authfnd
&& (authcnt
> 0 || np
->auth
!= RPCAUTH_UNIX
))
1053 fprintf(stderr
, "%s\n%s\n%s\n%s\n",
1054 "usage: mount_nfs [-23KNPTUbcdils] [-D deadthresh] [-I readdirsize]",
1055 " [-R retrycnt] [-a maxreadahead]",
1056 " [-g maxgroups] [-m realm] [-o options] [-r readsize]",
1057 " [-t timeout] [-w writesize] [-x retrans] rhost:path node");