xref: /dragonfly/sbin/mount_nfs/mount_nfs.c (revision fe76c4fb)
1 /*
2  * Copyright (c) 1992, 1993, 1994
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Rick Macklem at The University of Guelph.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
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.
23  *
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
34  * SUCH DAMAGE.
35  *
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.12 2006/03/27 16:18:13 dillon Exp $
40  */
41 
42 #include <sys/param.h>
43 #include <sys/mount.h>
44 #include <sys/stat.h>
45 #include <sys/syslog.h>
46 
47 #include <rpc/rpc.h>
48 #include <rpc/pmap_clnt.h>
49 #include <rpc/pmap_prot.h>
50 
51 #include <vfs/nfs/rpcv2.h>
52 #include <vfs/nfs/nfsproto.h>
53 #include <vfs/nfs/nfs.h>
54 
55 #include <arpa/inet.h>
56 
57 #include <ctype.h>
58 #include <err.h>
59 #include <errno.h>
60 #include <netdb.h>
61 #include <stdio.h>
62 #include <stdlib.h>
63 #include <strings.h>
64 #include <sysexits.h>
65 #include <unistd.h>
66 #include <resolv.h>
67 
68 #include "mntopts.h"
69 #include "mounttab.h"
70 
71 #define	ALTF_BG		0x1
72 #define ALTF_NOCONN	0x2
73 #define ALTF_DUMBTIMR	0x4
74 #define ALTF_INTR	0x8
75 #define ALTF_KERB	0x10
76 #define ALTF_NFSV3	0x20
77 #define ALTF_RDIRPLUS	0x40
78 #define	ALTF_MNTUDP	0x80
79 #define ALTF_RESVPORT	0x100
80 #define ALTF_SEQPACKET	0x200
81 #define ALTF_UNUSED400	0x400
82 #define ALTF_SOFT	0x800
83 #define ALTF_TCP	0x1000
84 #define ALTF_PORT	0x2000
85 #define ALTF_NFSV2	0x4000
86 #define ALTF_ACREGMIN	0x8000
87 #define ALTF_ACREGMAX	0x10000
88 #define ALTF_ACDIRMIN	0x20000
89 #define ALTF_ACDIRMAX	0x40000
90 
91 struct mntopt mopts[] = {
92 	MOPT_STDOPTS,
93 	MOPT_FORCE,
94 	MOPT_UPDATE,
95 	MOPT_ASYNC,
96 	{ "bg", 0, ALTF_BG, 1 },
97 	{ "conn", 1, ALTF_NOCONN, 1 },
98 	{ "dumbtimer", 0, ALTF_DUMBTIMR, 1 },
99 	{ "intr", 0, ALTF_INTR, 1 },
100 #ifdef NFSKERB
101 	{ "kerb", 0, ALTF_KERB, 1 },
102 #endif
103 	{ "nfsv3", 0, ALTF_NFSV3, 1 },
104 	{ "rdirplus", 0, ALTF_RDIRPLUS, 1 },
105 	{ "mntudp", 0, ALTF_MNTUDP, 1 },
106 	{ "resvport", 0, ALTF_RESVPORT, 1 },
107 	{ "soft", 0, ALTF_SOFT, 1 },
108 	{ "tcp", 0, ALTF_TCP, 1 },
109 	{ "port=", 0, ALTF_PORT, 1 },
110 	{ "nfsv2", 0, ALTF_NFSV2, 1 },
111 	{ "acregmin=", 0, ALTF_ACREGMIN, 1 },
112 	{ "acregmax=", 0, ALTF_ACREGMAX, 1 },
113 	{ "acdirmin=", 0, ALTF_ACDIRMIN, 1 },
114 	{ "acdirmax=", 0, ALTF_ACDIRMAX, 1 },
115 	MOPT_NULL
116 };
117 
118 struct nfs_args nfsdefargs = {
119 	NFS_ARGSVERSION,
120 	(struct sockaddr *)0,
121 	sizeof (struct sockaddr_in),
122 	SOCK_DGRAM,
123 	0,
124 	(u_char *)0,
125 	0,
126 	NFSMNT_RESVPORT,
127 	NFS_WSIZE,
128 	NFS_RSIZE,
129 	NFS_READDIRSIZE,
130 	10,
131 	NFS_RETRANS,
132 	NFS_MAXGRPS,
133 	NFS_DEFRAHEAD,
134 	0,
135 	NFS_DEADTHRESH,
136 	(char *)0,
137 	/* args version 4 */
138 	NFS_MINATTRTIMO,
139 	NFS_MAXATTRTIMO,
140 	NFS_MINDIRATTRTIMO,
141 	NFS_MAXDIRATTRTIMO,
142 };
143 
144 struct nfhret {
145 	u_long		stat;
146 	long		vers;
147 	long		auth;
148 	long		fhsize;
149 	u_char		nfh[NFSX_V3FHMAX];
150 };
151 
152 #define	BGRND	0x0001
153 #define	ISBGRND	0x0002
154 #define DIDWARN 0x0004
155 
156 int retrycnt = -1;
157 int opflags = 0;
158 int nfsproto = IPPROTO_UDP;
159 int mnttcp_ok = 1;
160 u_short port_no = 0;
161 enum mountmode {
162 	ANY,
163 	V2,
164 	V3
165 } mountmode = ANY;
166 
167 #ifdef NFSKERB
168 char inst[INST_SZ];
169 char realm[REALM_SZ];
170 struct {
171 	u_long		kind;
172 	KTEXT_ST	kt;
173 } ktick;
174 struct nfsrpc_nickverf kverf;
175 struct nfsrpc_fullblock kin, kout;
176 NFSKERBKEY_T kivec;
177 CREDENTIALS kcr;
178 struct timeval ktv;
179 NFSKERBKEYSCHED_T kerb_keysched;
180 #endif
181 
182 /* Return codes for nfs_tryproto. */
183 enum tryret {
184 	TRYRET_SUCCESS,
185 	TRYRET_TIMEOUT,		/* No response received. */
186 	TRYRET_REMOTEERR,	/* Error received from remote server. */
187 	TRYRET_LOCALERR		/* Local failure. */
188 };
189 
190 void	set_rpc_maxgrouplist(int);
191 
192 static int	getnfsargs(char *, struct nfs_args *);
193 static void	usage(void) __dead2;
194 static int	xdr_dir(XDR *, char *);
195 static int	xdr_fh(XDR *, struct nfhret *);
196 static enum tryret
197 		nfs_tryproto(struct nfs_args *, struct sockaddr_in *,
198 			     char *, char *, char **);
199 static enum tryret
200 		returncode(enum clnt_stat, struct rpc_err *);
201 
202 /*
203  * Used to set mount flags with getmntopts.  Call with dir=TRUE to
204  * initialize altflags from the current mount flags.  Call with
205  * dir=FALSE to update mount flags with the new value of altflags after
206  * the call to getmntopts.
207  */
208 static void
209 set_flags(int* altflags, int* nfsflags, int dir)
210 {
211 #define F2(af, nf)					\
212 	if (dir) {					\
213 		if (*nfsflags & NFSMNT_##nf)		\
214 			*altflags |= ALTF_##af;		\
215 		else					\
216 			*altflags &= ~ALTF_##af;	\
217 	} else {					\
218 		if (*altflags & ALTF_##af)		\
219 			*nfsflags |= NFSMNT_##nf;	\
220 		else					\
221 			*nfsflags &= ~NFSMNT_##nf;	\
222 	}
223 #define F(f)	F2(f,f)
224 
225 	F(NOCONN);
226 	F(DUMBTIMR);
227 	F2(INTR, INT);
228 #ifdef NFSKERB
229 	F(KERB);
230 #endif
231 	F(RDIRPLUS);
232 	F(RESVPORT);
233 	F(SOFT);
234 	F(ACREGMIN);
235 	F(ACREGMAX);
236 	F(ACDIRMIN);
237 	F(ACDIRMAX);
238 
239 #undef F
240 #undef F2
241 }
242 
243 int
244 main(int argc, char **argv)
245 {
246 	int c;
247 	struct nfs_args *nfsargsp;
248 	struct nfs_args nfsargs;
249 	struct nfsd_cargs ncd;
250 	int mntflags, altflags, nfssvc_flag, num;
251 	char *name, *p, *spec;
252 	char mntpath[MAXPATHLEN];
253 	struct vfsconf vfc;
254 	int error = 0;
255 #ifdef NFSKERB
256 	uid_t last_ruid;
257 
258 	last_ruid = -1;
259 	strcpy(realm, KRB_REALM);
260 	if (sizeof (struct nfsrpc_nickverf) != RPCX_NICKVERF ||
261 	    sizeof (struct nfsrpc_fullblock) != RPCX_FULLBLOCK ||
262 	    ((char *)&ktick.kt) - ((char *)&ktick) != NFSX_UNSIGNED ||
263 	    ((char *)ktick.kt.dat) - ((char *)&ktick) != 2 * NFSX_UNSIGNED)
264 		fprintf(stderr, "Yikes! NFSKERB structs not packed!!\n");
265 #endif /* NFSKERB */
266 
267 	mntflags = 0;
268 	altflags = 0;
269 	nfsargs = nfsdefargs;
270 	nfsargsp = &nfsargs;
271 	while ((c = getopt(argc, argv,
272 	    "23a:bcdD:g:I:iKlm:No:PR:r:sTt:w:x:U")) != -1)
273 		switch (c) {
274 		case '2':
275 			mountmode = V2;
276 			break;
277 		case '3':
278 			mountmode = V3;
279 			break;
280 		case 'a':
281 			num = strtol(optarg, &p, 10);
282 			if (*p || num < 0)
283 				errx(1, "illegal -a value -- %s", optarg);
284 			nfsargsp->readahead = num;
285 			nfsargsp->flags |= NFSMNT_READAHEAD;
286 			break;
287 		case 'b':
288 			opflags |= BGRND;
289 			break;
290 		case 'c':
291 			nfsargsp->flags |= NFSMNT_NOCONN;
292 			break;
293 		case 'D':
294 			num = strtol(optarg, &p, 10);
295 			if (*p || num <= 0)
296 				errx(1, "illegal -D value -- %s", optarg);
297 			nfsargsp->deadthresh = num;
298 			nfsargsp->flags |= NFSMNT_DEADTHRESH;
299 			break;
300 		case 'd':
301 			nfsargsp->flags |= NFSMNT_DUMBTIMR;
302 			break;
303 		case 'g':
304 			num = strtol(optarg, &p, 10);
305 			if (*p || num <= 0)
306 				errx(1, "illegal -g value -- %s", optarg);
307 			set_rpc_maxgrouplist(num);
308 			nfsargsp->maxgrouplist = num;
309 			nfsargsp->flags |= NFSMNT_MAXGRPS;
310 			break;
311 		case 'I':
312 			num = strtol(optarg, &p, 10);
313 			if (*p || num <= 0)
314 				errx(1, "illegal -I value -- %s", optarg);
315 			nfsargsp->readdirsize = num;
316 			nfsargsp->flags |= NFSMNT_READDIRSIZE;
317 			break;
318 		case 'i':
319 			nfsargsp->flags |= NFSMNT_INT;
320 			break;
321 #ifdef NFSKERB
322 		case 'K':
323 			nfsargsp->flags |= NFSMNT_KERB;
324 			break;
325 #endif
326 		case 'l':
327 			nfsargsp->flags |= NFSMNT_RDIRPLUS;
328 			break;
329 #ifdef NFSKERB
330 		case 'm':
331 			strncpy(realm, optarg, REALM_SZ - 1);
332 			realm[REALM_SZ - 1] = '\0';
333 			break;
334 #endif
335 		case 'N':
336 			nfsargsp->flags &= ~NFSMNT_RESVPORT;
337 			break;
338 		case 'o':
339 			altflags = 0;
340 			set_flags(&altflags, &nfsargsp->flags, TRUE);
341 			if (mountmode == V2)
342 				altflags |= ALTF_NFSV2;
343 			else if (mountmode == V3)
344 				altflags |= ALTF_NFSV3;
345 			getmntopts(optarg, mopts, &mntflags, &altflags);
346 			set_flags(&altflags, &nfsargsp->flags, FALSE);
347 			/*
348 			 * Handle altflags which don't map directly to
349 			 * mount flags.
350 			 */
351 			if(altflags & ALTF_BG)
352 				opflags |= BGRND;
353 			if(altflags & ALTF_MNTUDP)
354 				mnttcp_ok = 0;
355 			if(altflags & ALTF_TCP) {
356 				nfsargsp->sotype = SOCK_STREAM;
357 				nfsproto = IPPROTO_TCP;
358 			}
359 			if(altflags & ALTF_PORT)
360 				port_no = atoi(strstr(optarg, "port=") + 5);
361 			mountmode = ANY;
362 			if(altflags & ALTF_NFSV2)
363 				mountmode = V2;
364 			if(altflags & ALTF_NFSV3)
365 				mountmode = V3;
366 			if(altflags & ALTF_ACREGMIN)
367 				nfsargsp->acregmin = atoi(strstr(optarg,
368 				    "acregmin=") + 9);
369 			if(altflags & ALTF_ACREGMAX)
370 				nfsargsp->acregmax = atoi(strstr(optarg,
371 				    "acregmax=") + 9);
372 			if(altflags & ALTF_ACDIRMIN)
373 				nfsargsp->acdirmin = atoi(strstr(optarg,
374 				    "acdirmin=") + 9);
375 			if(altflags & ALTF_ACDIRMAX)
376 				nfsargsp->acdirmax = atoi(strstr(optarg,
377 				    "acdirmax=") + 9);
378 			break;
379 		case 'P':
380 			/* obsolete for NFSMNT_RESVPORT, now default */
381 			break;
382 		case 'R':
383 			num = strtol(optarg, &p, 10);
384 			if (*p || num < 0)
385 				errx(1, "illegal -R value -- %s", optarg);
386 			retrycnt = num;
387 			break;
388 		case 'r':
389 			num = strtol(optarg, &p, 10);
390 			if (*p || num <= 0)
391 				errx(1, "illegal -r value -- %s", optarg);
392 			nfsargsp->rsize = num;
393 			nfsargsp->flags |= NFSMNT_RSIZE;
394 			break;
395 		case 's':
396 			nfsargsp->flags |= NFSMNT_SOFT;
397 			break;
398 		case 'T':
399 			nfsargsp->sotype = SOCK_STREAM;
400 			nfsproto = IPPROTO_TCP;
401 			break;
402 		case 't':
403 			num = strtol(optarg, &p, 10);
404 			if (*p || num <= 0)
405 				errx(1, "illegal -t value -- %s", optarg);
406 			nfsargsp->timeo = num;
407 			nfsargsp->flags |= NFSMNT_TIMEO;
408 			break;
409 		case 'w':
410 			num = strtol(optarg, &p, 10);
411 			if (*p || num <= 0)
412 				errx(1, "illegal -w value -- %s", optarg);
413 			nfsargsp->wsize = num;
414 			nfsargsp->flags |= NFSMNT_WSIZE;
415 			break;
416 		case 'x':
417 			num = strtol(optarg, &p, 10);
418 			if (*p || num <= 0)
419 				errx(1, "illegal -x value -- %s", optarg);
420 			nfsargsp->retrans = num;
421 			nfsargsp->flags |= NFSMNT_RETRANS;
422 			break;
423 		case 'U':
424 			mnttcp_ok = 0;
425 			break;
426 		default:
427 			usage();
428 			break;
429 		}
430 	argc -= optind;
431 	argv += optind;
432 
433 	if (argc != 2) {
434 		usage();
435 		/* NOTREACHED */
436 	}
437 
438 	spec = *argv++;
439 	name = *argv;
440 
441 	if (retrycnt == -1)
442 		/* The default is to keep retrying forever. */
443 		retrycnt = 0;
444 	if (!getnfsargs(spec, nfsargsp))
445 		exit(1);
446 
447 	/* resolve the mountpoint with realpath(3) */
448 	checkpath(name, mntpath);
449 
450 	error = getvfsbyname("nfs", &vfc);
451 	if (error && vfsisloadable("nfs")) {
452 		if(vfsload("nfs"))
453 			err(EX_OSERR, "vfsload(nfs)");
454 		endvfsent();	/* clear cache */
455 		error = getvfsbyname("nfs", &vfc);
456 	}
457 	if (error)
458 		errx(EX_OSERR, "nfs filesystem is not available");
459 
460 	if (mount(vfc.vfc_name, mntpath, mntflags, nfsargsp))
461 		err(1, "%s", mntpath);
462 	if (nfsargsp->flags & NFSMNT_KERB) {
463 		if ((opflags & ISBGRND) == 0) {
464 			if (daemon(0, 0) != 0)
465 				err(1, "daemon");
466 		}
467 		openlog("mount_nfs", LOG_PID, LOG_DAEMON);
468 		nfssvc_flag = NFSSVC_MNTD;
469 		ncd.ncd_dirp = mntpath;
470 		while (nfssvc(nfssvc_flag, (caddr_t)&ncd) < 0) {
471 			if (errno != ENEEDAUTH) {
472 				syslog(LOG_ERR, "nfssvc err %m");
473 				continue;
474 			}
475 			nfssvc_flag =
476 			    NFSSVC_MNTD | NFSSVC_GOTAUTH | NFSSVC_AUTHINFAIL;
477 #ifdef NFSKERB
478 			/*
479 			 * Set up as ncd_authuid for the kerberos call.
480 			 * Must set ruid to ncd_authuid and reset the
481 			 * ticket name iff ncd_authuid is not the same
482 			 * as last time, so that the right ticket file
483 			 * is found.
484 			 * Get the Kerberos credential structure so that
485 			 * we have the session key and get a ticket for
486 			 * this uid.
487 			 * For more info see the IETF Draft "Authentication
488 			 * in ONC RPC".
489 			 */
490 			if (ncd.ncd_authuid != last_ruid) {
491 				char buf[512];
492 				sprintf(buf, "%s%d", TKT_ROOT, ncd.ncd_authuid);
493 				krb_set_tkt_string(buf);
494 				last_ruid = ncd.ncd_authuid;
495 			}
496 			setreuid(ncd.ncd_authuid, 0);
497 			kret = krb_get_cred(NFS_KERBSRV, inst, realm, &kcr);
498 			if (kret == RET_NOTKT) {
499 		            kret = get_ad_tkt(NFS_KERBSRV, inst, realm,
500 				DEFAULT_TKT_LIFE);
501 			    if (kret == KSUCCESS)
502 				kret = krb_get_cred(NFS_KERBSRV, inst, realm,
503 				    &kcr);
504 			}
505 			if (kret == KSUCCESS)
506 			    kret = krb_mk_req(&ktick.kt, NFS_KERBSRV, inst,
507 				realm, 0);
508 
509 			/*
510 			 * Fill in the AKN_FULLNAME authenticator and verifier.
511 			 * Along with the Kerberos ticket, we need to build
512 			 * the timestamp verifier and encrypt it in CBC mode.
513 			 */
514 			if (kret == KSUCCESS &&
515 			    ktick.kt.length <= (RPCAUTH_MAXSIZ-3*NFSX_UNSIGNED)
516 			    && gettimeofday(&ktv, (struct timezone *)0) == 0) {
517 			    ncd.ncd_authtype = RPCAUTH_KERB4;
518 			    ncd.ncd_authstr = (u_char *)&ktick;
519 			    ncd.ncd_authlen = nfsm_rndup(ktick.kt.length) +
520 				3 * NFSX_UNSIGNED;
521 			    ncd.ncd_verfstr = (u_char *)&kverf;
522 			    ncd.ncd_verflen = sizeof (kverf);
523 			    memmove(ncd.ncd_key, kcr.session,
524 				sizeof (kcr.session));
525 			    kin.t1 = htonl(ktv.tv_sec);
526 			    kin.t2 = htonl(ktv.tv_usec);
527 			    kin.w1 = htonl(NFS_KERBTTL);
528 			    kin.w2 = htonl(NFS_KERBTTL - 1);
529 			    bzero((caddr_t)kivec, sizeof (kivec));
530 
531 			    /*
532 			     * Encrypt kin in CBC mode using the session
533 			     * key in kcr.
534 			     */
535 			    XXX
536 
537 			    /*
538 			     * Finally, fill the timestamp verifier into the
539 			     * authenticator and verifier.
540 			     */
541 			    ktick.kind = htonl(RPCAKN_FULLNAME);
542 			    kverf.kind = htonl(RPCAKN_FULLNAME);
543 			    NFS_KERBW1(ktick.kt) = kout.w1;
544 			    ktick.kt.length = htonl(ktick.kt.length);
545 			    kverf.verf.t1 = kout.t1;
546 			    kverf.verf.t2 = kout.t2;
547 			    kverf.verf.w2 = kout.w2;
548 			    nfssvc_flag = NFSSVC_MNTD | NFSSVC_GOTAUTH;
549 			}
550 			setreuid(0, 0);
551 #endif /* NFSKERB */
552 		}
553 	}
554 	exit(0);
555 }
556 
557 static int
558 getnfsargs(char *spec, struct nfs_args *nfsargsp)
559 {
560 	struct hostent *hp;
561 	struct sockaddr_in saddr;
562 	enum tryret ret;
563 	int speclen, remoteerr;
564 	char *hostp, *delimp, *errstr;
565 #ifdef NFSKERB
566 	char *cp;
567 #endif
568 	size_t len;
569 	static char nam[MNAMELEN + 1];
570 
571 	if ((delimp = strrchr(spec, ':')) != NULL) {
572 		hostp = spec;
573 		spec = delimp + 1;
574 	} else if ((delimp = strrchr(spec, '@')) != NULL) {
575 		warnx("path@server syntax is deprecated, use server:path");
576 		hostp = delimp + 1;
577 	} else {
578 		warnx("no <host>:<dirpath> nfs-name");
579 		return (0);
580 	}
581 	*delimp = '\0';
582 
583 	/*
584 	 * If there has been a trailing slash at mounttime it seems
585 	 * that some mountd implementations fail to remove the mount
586 	 * entries from their mountlist while unmounting.
587 	 */
588 	for (speclen = strlen(spec);
589 		speclen > 1 && spec[speclen - 1] == '/';
590 		speclen--)
591 		spec[speclen - 1] = '\0';
592 	if (strlen(hostp) + strlen(spec) + 1 > MNAMELEN) {
593 		warnx("%s:%s: %s", hostp, spec, strerror(ENAMETOOLONG));
594 		return (0);
595 	}
596 	/* Make both '@' and ':' notations equal */
597 	if (*hostp != '\0') {
598 		len = strlen(hostp);
599 		memmove(nam, hostp, len);
600 		nam[len] = ':';
601 		memmove(nam + len + 1, spec, speclen);
602 		nam[len + speclen + 1] = '\0';
603 	}
604 
605 	/*
606 	 * Handle an internet host address and reverse resolve it if
607 	 * doing Kerberos.
608 	 */
609 	bzero(&saddr, sizeof saddr);
610 	saddr.sin_family = AF_INET;
611 	saddr.sin_len = sizeof saddr;
612 
613 	if (port_no != 0)
614 		saddr.sin_port = htons(port_no);
615 
616 	for (;;) {
617 		int haserror = 0;
618 
619 		/*
620 		 * Adjust DNS timeouts so we do not linger in the foreground
621 		 * if we can be backgrounded.
622 		 */
623 		switch(opflags & (BGRND | ISBGRND)) {
624 		case BGRND:
625 			_res.retry = 1;
626 			_res.retrans = 1;
627 			break;
628 		case BGRND|ISBGRND:
629 			_res.retry = 3;
630 			_res.retrans = 3;
631 			break;
632 		}
633 		if (isdigit(*hostp)) {
634 			saddr.sin_addr.s_addr = inet_addr(hostp);
635 			if (saddr.sin_addr.s_addr == INADDR_NONE) {
636 				warnx("bad net address %s", hostp);
637 				haserror = EAI_FAIL;
638 			}
639 		} else if ((hp = gethostbyname(hostp)) != NULL) {
640 			memmove(&saddr.sin_addr, hp->h_addr,
641 			    MIN(hp->h_length, (int)sizeof(saddr.sin_addr)));
642 		} else {
643 			warnx("can't get net id for host: %s", hostp);
644 			opflags |= DIDWARN;
645 			haserror = h_errno;
646 		}
647 #ifdef NFSKERB
648 		if (haserror == 0 && (nfsargsp->flags & NFSMNT_KERB)) {
649 			if ((hp = gethostbyaddr((char *)&saddr.sin_addr.s_addr,
650 			    sizeof (u_long), AF_INET)) == NULL) {
651 				warnx("can't reverse resolve net address");
652 				opflags |= DIDWARN;
653 				haserror = h_errno;
654 			} else {
655 				memmove(&saddr.sin_addr, hp->h_addr,
656 				    MIN(hp->h_length, sizeof(saddr.sin_addr)));
657 				strncpy(inst, hp->h_name, INST_SZ);
658 				inst[INST_SZ - 1] = '\0';
659 				if (cp = strchr(inst, '.'))
660 					*cp = '\0';
661 			}
662 		}
663 #endif /* NFSKERB */
664 		/*
665 		 * If no error occured we do not have to retry again.
666 		 * Otherwise try to backgruond us if possible.
667 		 */
668 		if (haserror == 0)
669 		    break;
670 
671 		switch(opflags & (BGRND | ISBGRND)) {
672 		case BGRND:
673 			if (haserror != EAI_AGAIN)
674 				return(0);
675 			/* recoverable error */
676 			warnx("Cannot immediately mount %s:%s, backgrounding",
677 			    hostp, spec);
678 			opflags |= DIDWARN;
679 			opflags |= ISBGRND;
680 			if (daemon(0, 0) != 0)
681 				err(1, "daemon");
682 			break;
683 		default:
684 			/*
685 			 * Already backgrounded or cannot be backgrounded.
686 			 */
687 			if (haserror != EAI_AGAIN)
688 				return(0);
689 			break;
690 		}
691 		sleep(20);
692 		endhostent();
693 	}
694 	if (opflags & DIDWARN) {
695 		opflags &= ~DIDWARN;
696 		warnx("successfully resolved %s after prior failures", hostp);
697 	}
698 
699 	ret = TRYRET_LOCALERR;
700 	for (;;) {
701 		remoteerr = 0;
702 		ret = nfs_tryproto(nfsargsp, &saddr, hostp, spec, &errstr);
703 		if (ret == TRYRET_SUCCESS)
704 			break;
705 		if (ret != TRYRET_LOCALERR)
706 			remoteerr = 1;
707 		if ((opflags & ISBGRND) == 0)
708 			fprintf(stderr, "%s\n", errstr);
709 
710 		/* Exit if all errors were local. */
711 		if (!remoteerr)
712 			exit(1);
713 
714 		/*
715 		 * If retrycnt == 0, we are to keep retrying forever.
716 		 * Otherwise decrement it, and exit if it hits zero.
717 		 */
718 		if (retrycnt != 0 && --retrycnt == 0)
719 			exit(1);
720 
721 		if ((opflags & (BGRND | ISBGRND)) == BGRND) {
722 			warnx("Cannot immediately mount %s:%s, backgrounding",
723 			    hostp, spec);
724 			opflags |= ISBGRND;
725 			opflags |= DIDWARN;
726 			if (daemon(0, 0) != 0)
727 				err(1, "daemon");
728 		}
729 		sleep(20);
730 	}
731 	if (opflags & DIDWARN) {
732 		opflags &= ~DIDWARN;
733 		warnx("successfully mounted %s after prior failures", spec);
734 	}
735 	nfsargsp->hostname = nam;
736 	/* Add mounted filesystem to PATH_MOUNTTAB */
737 	if (!add_mtab(hostp, spec))
738 		warnx("can't update %s for %s:%s", PATH_MOUNTTAB, hostp, spec);
739 	return (1);
740 }
741 
742 /*
743  * Try to set up the NFS arguments according to the address
744  * (and possibly port) specified by `sinp'.
745  *
746  * Returns TRYRET_SUCCESS if successful, or:
747  *   TRYRET_TIMEOUT		The server did not respond.
748  *   TRYRET_REMOTEERR		The server reported an error.
749  *   TRYRET_LOCALERR		Local failure.
750  *
751  * In all error cases, *errstr will be set to a statically-allocated string
752  * describing the error.
753  */
754 static enum tryret
755 nfs_tryproto(struct nfs_args *nfsargsp, struct sockaddr_in *sinp, char *hostp,
756     char *spec, char **errstr)
757 {
758 	static char errbuf[256];
759 	struct sockaddr_in sin, tmpsin;
760 	struct nfhret nfhret;
761 	struct timeval try;
762 	struct rpc_err rpcerr;
763 	CLIENT *clp;
764 	int doconnect, nfsvers, mntvers, so;
765 	enum clnt_stat status;
766 	enum mountmode trymntmode;
767 
768 	trymntmode = mountmode;
769 	errbuf[0] = '\0';
770 	*errstr = errbuf;
771 	sin = tmpsin = *sinp;
772 
773 tryagain:
774 	if (trymntmode == V2) {
775 		nfsvers = 2;
776 		mntvers = 1;
777 	} else {
778 		nfsvers = 3;
779 		mntvers = 3;
780 	}
781 
782 	/* Check that the server (nfsd) responds on the port we have chosen. */
783 	try.tv_sec = 10;
784 	try.tv_usec = 0;
785 	so = RPC_ANYSOCK;
786 	if (nfsargsp->sotype == SOCK_STREAM)
787 		clp = clnttcp_create(&sin, RPCPROG_NFS, nfsvers, &so, 0, 0);
788 	else
789 		clp = clntudp_create(&sin, RPCPROG_NFS, nfsvers, try, &so);
790 	if (clp == NULL) {
791 		snprintf(errbuf, sizeof errbuf, "%s:%s: %s",
792 		    hostp, spec, clnt_spcreateerror("nfsd: RPCPROG_NFS"));
793 		return (returncode(rpc_createerr.cf_stat,
794 		    &rpc_createerr.cf_error));
795 	}
796 	if (nfsargsp->sotype == SOCK_DGRAM &&
797 	    !(nfsargsp->flags & NFSMNT_NOCONN)) {
798 		/*
799 		 * Use connect(), to match what the kernel does. This
800 		 * catches cases where the server responds from the
801 		 * wrong source address.
802 		 */
803 		doconnect = 1;
804 		if (!clnt_control(clp, CLSET_CONNECT, (char *)&doconnect)) {
805 			clnt_destroy(clp);
806 			snprintf(errbuf, sizeof errbuf,
807 			    "%s:%s: CLSET_CONNECT failed", hostp, spec);
808 			return (TRYRET_LOCALERR);
809 		}
810 	}
811 
812 	try.tv_sec = 10;
813 	try.tv_usec = 0;
814 	status = clnt_call(clp, NFSPROC_NULL, xdr_void, NULL, xdr_void, NULL,
815 	    try);
816 	if (status != RPC_SUCCESS) {
817 		if (status == RPC_PROGVERSMISMATCH && trymntmode == ANY) {
818 			clnt_destroy(clp);
819 			trymntmode = V2;
820 			goto tryagain;
821 		}
822 		clnt_geterr(clp, &rpcerr);
823 		snprintf(errbuf, sizeof errbuf, "%s:%s: %s",
824 		    hostp, spec, clnt_sperror(clp, "NFSPROC_NULL"));
825 		clnt_destroy(clp);
826 		return (returncode(status, &rpcerr));
827 	}
828 	clnt_destroy(clp);
829 
830 	/* Send the RPCMNT_MOUNT RPC to get the root filehandle. */
831 	tmpsin.sin_port = 0;
832 	try.tv_sec = 10;
833 	try.tv_usec = 0;
834 	so = RPC_ANYSOCK;
835 	if (mnttcp_ok && nfsargsp->sotype == SOCK_STREAM)
836 		clp = clnttcp_create(&tmpsin, RPCPROG_MNT, mntvers, &so, 0, 0);
837 	else
838 		clp = clntudp_create(&tmpsin, RPCPROG_MNT, mntvers, try, &so);
839 	if (clp == NULL) {
840 		snprintf(errbuf, sizeof errbuf, "%s:%s: %s",
841 		    hostp, spec, clnt_spcreateerror("RPCMNT: clnt_create"));
842 		return (returncode(rpc_createerr.cf_stat,
843 		    &rpc_createerr.cf_error));
844 	}
845 	clp->cl_auth = authunix_create_default();
846 	if (nfsargsp->flags & NFSMNT_KERB)
847 		nfhret.auth = RPCAUTH_KERB4;
848 	else
849 		nfhret.auth = RPCAUTH_UNIX;
850 	nfhret.vers = mntvers;
851 	status = clnt_call(clp, RPCMNT_MOUNT, xdr_dir, spec, xdr_fh, &nfhret,
852 	    try);
853 	auth_destroy(clp->cl_auth);
854 	if (status != RPC_SUCCESS) {
855 		if (status == RPC_PROGVERSMISMATCH && trymntmode == ANY) {
856 			clnt_destroy(clp);
857 			trymntmode = V2;
858 			goto tryagain;
859 		}
860 		clnt_geterr(clp, &rpcerr);
861 		snprintf(errbuf, sizeof errbuf, "%s:%s: %s",
862 		    hostp, spec, clnt_sperror(clp, "RPCPROG_MNT"));
863 		clnt_destroy(clp);
864 		return (returncode(status, &rpcerr));
865 	}
866 	clnt_destroy(clp);
867 
868 	if (nfhret.stat != 0) {
869 		snprintf(errbuf, sizeof errbuf, "%s:%s: %s",
870 		    hostp, spec, strerror(nfhret.stat));
871 		return (TRYRET_REMOTEERR);
872 	}
873 
874 	/*
875 	 * Store the filehandle and server address in nfsargsp, making
876 	 * sure to copy any locally allocated structures.
877 	 */
878 	nfsargsp->addrlen = sin.sin_len;
879 	nfsargsp->addr = malloc(nfsargsp->addrlen);
880 	nfsargsp->fhsize = nfhret.fhsize;
881 	nfsargsp->fh = malloc(nfsargsp->fhsize);
882 	if (nfsargsp->addr == NULL || nfsargsp->fh == NULL)
883 		err(1, "malloc");
884 	bcopy(&sin, nfsargsp->addr, nfsargsp->addrlen);
885 	bcopy(nfhret.nfh, nfsargsp->fh, nfsargsp->fhsize);
886 
887 	if (nfsvers == 3)
888 		nfsargsp->flags |= NFSMNT_NFSV3;
889 	else
890 		nfsargsp->flags &= ~NFSMNT_NFSV3;
891 
892 	return (TRYRET_SUCCESS);
893 }
894 
895 /*
896  * Catagorise a RPC return status and error into an `enum tryret'
897  * return code.
898  */
899 static enum tryret
900 returncode(enum clnt_stat status, struct rpc_err *rpcerr)
901 {
902 	switch (status) {
903 	case RPC_TIMEDOUT:
904 		return (TRYRET_TIMEOUT);
905 	case RPC_PMAPFAILURE:
906 	case RPC_PROGNOTREGISTERED:
907 	case RPC_PROGVERSMISMATCH:
908 	/* XXX, these can be local or remote. */
909 	case RPC_CANTSEND:
910 	case RPC_CANTRECV:
911 		return (TRYRET_REMOTEERR);
912 	case RPC_SYSTEMERROR:
913 		switch (rpcerr->re_errno) {
914 		case ETIMEDOUT:
915 			return (TRYRET_TIMEOUT);
916 		case ENOMEM:
917 			break;
918 		default:
919 			return (TRYRET_REMOTEERR);
920 		}
921 		/* FALLTHROUGH */
922 	default:
923 		break;
924 	}
925 	return (TRYRET_LOCALERR);
926 }
927 
928 /*
929  * xdr routines for mount rpc's
930  */
931 static int
932 xdr_dir(XDR *xdrsp, char *dirp)
933 {
934 	return (xdr_string(xdrsp, &dirp, RPCMNT_PATHLEN));
935 }
936 
937 static int
938 xdr_fh(XDR *xdrsp, struct nfhret *np)
939 {
940 	int i;
941 	long auth, authcnt, authfnd = 0;
942 
943 	if (!xdr_u_long(xdrsp, &np->stat))
944 		return (0);
945 	if (np->stat)
946 		return (1);
947 	switch (np->vers) {
948 	case 1:
949 		np->fhsize = NFSX_V2FH;
950 		return (xdr_opaque(xdrsp, (caddr_t)np->nfh, NFSX_V2FH));
951 	case 3:
952 		if (!xdr_long(xdrsp, &np->fhsize))
953 			return (0);
954 		if (np->fhsize <= 0 || np->fhsize > NFSX_V3FHMAX)
955 			return (0);
956 		if (!xdr_opaque(xdrsp, (caddr_t)np->nfh, np->fhsize))
957 			return (0);
958 		if (!xdr_long(xdrsp, &authcnt))
959 			return (0);
960 		for (i = 0; i < authcnt; i++) {
961 			if (!xdr_long(xdrsp, &auth))
962 				return (0);
963 			if (auth == np->auth)
964 				authfnd++;
965 		}
966 		/*
967 		 * Some servers, such as DEC's OSF/1 return a nil authenticator
968 		 * list to indicate RPCAUTH_UNIX.
969 		 */
970 		if (!authfnd && (authcnt > 0 || np->auth != RPCAUTH_UNIX))
971 			np->stat = EAUTH;
972 		return (1);
973 	};
974 	return (0);
975 }
976 
977 static void
978 usage(void)
979 {
980 	fprintf(stderr, "%s\n%s\n%s\n%s\n",
981 "usage: mount_nfs [-23KNPTUbcdils] [-D deadthresh] [-I readdirsize]",
982 "                 [-R retrycnt] [-a maxreadahead]",
983 "                 [-g maxgroups] [-m realm] [-o options] [-r readsize]",
984 "                 [-t timeout] [-w writesize] [-x retrans] rhost:path node");
985 	exit(1);
986 }
987