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