Home | History | Annotate | Line # | Download | only in tftpd
tftpd.c revision 1.43
      1  1.43   jnemeth /*	$NetBSD: tftpd.c,v 1.43 2013/10/04 07:51:48 jnemeth Exp $	*/
      2   1.9       mrg 
      3   1.1       cgd /*
      4   1.9       mrg  * Copyright (c) 1983, 1993
      5   1.9       mrg  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1       cgd  * modification, are permitted provided that the following conditions
      9   1.1       cgd  * are met:
     10   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15  1.26       agc  * 3. Neither the name of the University nor the names of its contributors
     16   1.1       cgd  *    may be used to endorse or promote products derived from this software
     17   1.1       cgd  *    without specific prior written permission.
     18   1.1       cgd  *
     19   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1       cgd  * SUCH DAMAGE.
     30   1.1       cgd  */
     31   1.1       cgd 
     32   1.9       mrg #include <sys/cdefs.h>
     33   1.1       cgd #ifndef lint
     34  1.31     lukem __COPYRIGHT("@(#) Copyright (c) 1983, 1993\
     35  1.31     lukem  The Regents of the University of California.  All rights reserved.");
     36   1.9       mrg #if 0
     37   1.9       mrg static char sccsid[] = "@(#)tftpd.c	8.1 (Berkeley) 6/4/93";
     38   1.9       mrg #else
     39  1.43   jnemeth __RCSID("$NetBSD: tftpd.c,v 1.43 2013/10/04 07:51:48 jnemeth Exp $");
     40   1.9       mrg #endif
     41   1.1       cgd #endif /* not lint */
     42   1.1       cgd 
     43   1.1       cgd /*
     44   1.1       cgd  * Trivial file transfer protocol server.
     45   1.1       cgd  *
     46   1.9       mrg  * This version includes many modifications by Jim Guyton
     47   1.9       mrg  * <guyton@rand-unix>.
     48   1.1       cgd  */
     49   1.1       cgd 
     50   1.9       mrg #include <sys/param.h>
     51   1.1       cgd #include <sys/ioctl.h>
     52   1.1       cgd #include <sys/stat.h>
     53   1.9       mrg #include <sys/socket.h>
     54   1.9       mrg 
     55   1.1       cgd #include <netinet/in.h>
     56   1.1       cgd #include <arpa/tftp.h>
     57   1.9       mrg #include <arpa/inet.h>
     58   1.9       mrg 
     59   1.9       mrg #include <ctype.h>
     60   1.9       mrg #include <errno.h>
     61   1.9       mrg #include <fcntl.h>
     62  1.14     lukem #include <grp.h>
     63   1.1       cgd #include <netdb.h>
     64  1.14     lukem #include <pwd.h>
     65   1.1       cgd #include <setjmp.h>
     66   1.9       mrg #include <signal.h>
     67   1.1       cgd #include <stdio.h>
     68   1.9       mrg #include <stdlib.h>
     69   1.1       cgd #include <string.h>
     70   1.9       mrg #include <syslog.h>
     71  1.28    kleink #include <time.h>
     72   1.9       mrg #include <unistd.h>
     73   1.9       mrg 
     74   1.9       mrg #include "tftpsubs.h"
     75   1.1       cgd 
     76  1.14     lukem #define	DEFAULTUSER	"nobody"
     77   1.7       jtc 
     78   1.1       cgd #define	TIMEOUT		5
     79   1.1       cgd 
     80  1.33  christos static int	peer;
     81  1.33  christos static int	rexmtval = TIMEOUT;
     82  1.33  christos static int	maxtimeout = 5*TIMEOUT;
     83  1.33  christos 
     84  1.33  christos static char	buf[MAXPKTSIZE];
     85  1.33  christos static char	ackbuf[PKTSIZE];
     86  1.33  christos static char	oackbuf[PKTSIZE];
     87  1.33  christos static struct	sockaddr_storage from;
     88  1.33  christos static socklen_t	fromlen;
     89  1.33  christos static int	debug;
     90  1.33  christos 
     91  1.33  christos static int	tftp_opt_tsize = 0;
     92  1.33  christos static int	tftp_blksize = SEGSIZE;
     93  1.33  christos static int	tftp_tsize = 0;
     94  1.25    briggs 
     95   1.9       mrg /*
     96   1.9       mrg  * Null-terminated directory prefix list for absolute pathname requests and
     97   1.9       mrg  * search list for relative pathname requests.
     98   1.9       mrg  *
     99   1.9       mrg  * MAXDIRS should be at least as large as the number of arguments that
    100   1.9       mrg  * inetd allows (currently 20).
    101   1.9       mrg  */
    102   1.9       mrg #define MAXDIRS	20
    103   1.9       mrg static struct dirlist {
    104   1.9       mrg 	char	*name;
    105   1.9       mrg 	int	len;
    106   1.9       mrg } dirs[MAXDIRS+1];
    107   1.9       mrg static int	suppress_naks;
    108   1.9       mrg static int	logging;
    109   1.9       mrg static int	secure;
    110  1.33  christos static char	pathsep = '\0';
    111   1.9       mrg static char	*securedir;
    112  1.37   hubertf static int	unrestricted_writes;    /* uploaded files don't have to exist */
    113   1.9       mrg 
    114   1.9       mrg struct formats;
    115   1.9       mrg 
    116  1.22     lukem static const char *errtomsg(int);
    117  1.33  christos static void	nak(int);
    118  1.39     joerg __dead static void	tftp(struct tftphdr *, int);
    119  1.39     joerg __dead static void	usage(void);
    120  1.22     lukem static char	*verifyhost(struct sockaddr *);
    121  1.39     joerg __dead static void	justquit(int);
    122  1.33  christos static void	recvfile(struct formats *, int, int);
    123  1.33  christos static void	sendfile(struct formats *, int, int);
    124  1.39     joerg __dead static void	timer(int);
    125  1.24  christos static const char *opcode(int);
    126  1.33  christos static int	validate_access(char **, int);
    127   1.1       cgd 
    128  1.33  christos static struct formats {
    129  1.22     lukem 	const char	*f_mode;
    130  1.22     lukem 	int		(*f_validate)(char **, int);
    131  1.25    briggs 	void		(*f_send)(struct formats *, int, int);
    132  1.25    briggs 	void		(*f_recv)(struct formats *, int, int);
    133  1.22     lukem 	int		f_convert;
    134   1.9       mrg } formats[] = {
    135   1.9       mrg 	{ "netascii",	validate_access,	sendfile,	recvfile, 1 },
    136   1.9       mrg 	{ "octet",	validate_access,	sendfile,	recvfile, 0 },
    137  1.33  christos 	{ .f_mode = NULL }
    138   1.9       mrg };
    139   1.4   mycroft 
    140   1.5       cgd static void
    141  1.22     lukem usage(void)
    142   1.5       cgd {
    143  1.22     lukem 
    144  1.14     lukem 	syslog(LOG_ERR,
    145  1.43   jnemeth     "Usage: %s [-cdln] [-g group] [-p pathsep] [-s directory] [-u user] [directory ...]",
    146  1.23       cgd 		    getprogname());
    147   1.5       cgd 	exit(1);
    148   1.5       cgd }
    149   1.5       cgd 
    150   1.9       mrg int
    151  1.22     lukem main(int argc, char *argv[])
    152   1.1       cgd {
    153  1.18    itojun 	struct sockaddr_storage me;
    154  1.22     lukem 	struct passwd	*pwent;
    155  1.22     lukem 	struct group	*grent;
    156  1.22     lukem 	struct tftphdr	*tp;
    157  1.33  christos 	const char	*tgtuser, *tgtgroup;
    158  1.33  christos 	char *ep;
    159  1.22     lukem 	int	n, ch, on, fd;
    160  1.30       mrg 	int	soopt;
    161  1.30       mrg 	socklen_t len;
    162  1.22     lukem 	uid_t	curuid, tgtuid;
    163  1.22     lukem 	gid_t	curgid, tgtgid;
    164  1.22     lukem 	long	nid;
    165   1.1       cgd 
    166  1.22     lukem 	n = 0;
    167  1.22     lukem 	fd = 0;
    168  1.28    kleink 	tzset();
    169  1.11     lukem 	openlog("tftpd", LOG_PID | LOG_NDELAY, LOG_DAEMON);
    170  1.14     lukem 	tgtuser = DEFAULTUSER;
    171  1.14     lukem 	tgtgroup = NULL;
    172  1.14     lukem 	curuid = getuid();
    173  1.14     lukem 	curgid = getgid();
    174   1.5       cgd 
    175  1.38   hubertf 	while ((ch = getopt(argc, argv, "cdg:lnp:s:u:")) != -1)
    176   1.9       mrg 		switch (ch) {
    177  1.43   jnemeth 		case 'c':
    178  1.38   hubertf 			unrestricted_writes = 1;
    179  1.38   hubertf 			break;
    180  1.38   hubertf 
    181  1.24  christos 		case 'd':
    182  1.24  christos 			debug++;
    183  1.24  christos 			break;
    184  1.14     lukem 
    185  1.14     lukem 		case 'g':
    186  1.14     lukem 			tgtgroup = optarg;
    187  1.14     lukem 			break;
    188  1.14     lukem 
    189   1.9       mrg 		case 'l':
    190   1.9       mrg 			logging = 1;
    191   1.9       mrg 			break;
    192   1.9       mrg 
    193   1.9       mrg 		case 'n':
    194   1.9       mrg 			suppress_naks = 1;
    195   1.9       mrg 			break;
    196   1.9       mrg 
    197  1.33  christos 		case 'p':
    198  1.33  christos 			if (optarg[0] == '\0' || optarg[1] != '\0')
    199  1.33  christos 				usage();
    200  1.33  christos 			pathsep = optarg[0];
    201  1.33  christos 			break;
    202  1.33  christos 
    203   1.5       cgd 		case 's':
    204   1.5       cgd 			secure = 1;
    205   1.9       mrg 			securedir = optarg;
    206   1.5       cgd 			break;
    207   1.5       cgd 
    208  1.14     lukem 		case 'u':
    209  1.14     lukem 			tgtuser = optarg;
    210  1.14     lukem 			break;
    211  1.14     lukem 
    212   1.5       cgd 		default:
    213   1.5       cgd 			usage();
    214   1.5       cgd 			break;
    215   1.5       cgd 		}
    216   1.5       cgd 
    217   1.9       mrg 	if (optind < argc) {
    218   1.9       mrg 		struct dirlist *dirp;
    219   1.9       mrg 
    220   1.9       mrg 		/* Get list of directory prefixes. Skip relative pathnames. */
    221   1.9       mrg 		for (dirp = dirs; optind < argc && dirp < &dirs[MAXDIRS];
    222   1.9       mrg 		     optind++) {
    223   1.9       mrg 			if (argv[optind][0] == '/') {
    224   1.9       mrg 				dirp->name = argv[optind];
    225   1.9       mrg 				dirp->len  = strlen(dirp->name);
    226   1.9       mrg 				dirp++;
    227   1.9       mrg 			}
    228   1.9       mrg 		}
    229   1.9       mrg 	}
    230   1.9       mrg 
    231  1.14     lukem 	if (*tgtuser == '\0' || (tgtgroup != NULL && *tgtgroup == '\0'))
    232  1.14     lukem 		usage();
    233  1.14     lukem 
    234  1.14     lukem 	nid = (strtol(tgtuser, &ep, 10));
    235  1.14     lukem 	if (*ep == '\0') {
    236  1.36   mbalmer 		if ((uid_t)nid > UID_MAX) {
    237  1.14     lukem 			syslog(LOG_ERR, "uid %ld is too large", nid);
    238  1.14     lukem 			exit(1);
    239  1.14     lukem 		}
    240  1.14     lukem 		pwent = getpwuid((uid_t)nid);
    241  1.14     lukem 	} else
    242  1.14     lukem 		pwent = getpwnam(tgtuser);
    243  1.14     lukem 	if (pwent == NULL) {
    244  1.14     lukem 		syslog(LOG_ERR, "unknown user `%s'", tgtuser);
    245  1.14     lukem 		exit(1);
    246  1.14     lukem 	}
    247  1.14     lukem 	tgtuid = pwent->pw_uid;
    248  1.14     lukem 	tgtgid = pwent->pw_gid;
    249  1.14     lukem 
    250  1.14     lukem 	if (tgtgroup != NULL) {
    251  1.14     lukem 		nid = (strtol(tgtgroup, &ep, 10));
    252  1.14     lukem 		if (*ep == '\0') {
    253  1.36   mbalmer 			if ((uid_t)nid > GID_MAX) {
    254  1.14     lukem 				syslog(LOG_ERR, "gid %ld is too large", nid);
    255  1.14     lukem 				exit(1);
    256  1.14     lukem 			}
    257  1.14     lukem 			grent = getgrgid((gid_t)nid);
    258  1.14     lukem 		} else
    259  1.14     lukem 			grent = getgrnam(tgtgroup);
    260  1.14     lukem 		if (grent != NULL)
    261  1.14     lukem 			tgtgid = grent->gr_gid;
    262  1.14     lukem 		else {
    263  1.14     lukem 			syslog(LOG_ERR, "unknown group `%s'", tgtgroup);
    264  1.14     lukem 			exit(1);
    265  1.14     lukem 		}
    266  1.14     lukem 	}
    267  1.14     lukem 
    268   1.9       mrg 	if (secure) {
    269   1.9       mrg 		if (chdir(securedir) < 0) {
    270   1.9       mrg 			syslog(LOG_ERR, "chdir %s: %m", securedir);
    271   1.9       mrg 			exit(1);
    272   1.4   mycroft 		}
    273   1.9       mrg 		if (chroot(".")) {
    274  1.14     lukem 			syslog(LOG_ERR, "chroot: %m");
    275   1.4   mycroft 			exit(1);
    276   1.4   mycroft 		}
    277   1.4   mycroft 	}
    278   1.5       cgd 
    279  1.22     lukem 	if (logging)
    280  1.22     lukem 		syslog(LOG_DEBUG, "running as user `%s' (%d), group `%s' (%d)",
    281  1.22     lukem 		    tgtuser, tgtuid, tgtgroup ? tgtgroup : "(unspecified)",
    282  1.22     lukem 		    tgtgid);
    283  1.14     lukem 	if (curgid != tgtgid) {
    284  1.14     lukem 		if (setgid(tgtgid)) {
    285  1.14     lukem 			syslog(LOG_ERR, "setgid to %d: %m", (int)tgtgid);
    286  1.14     lukem 			exit(1);
    287  1.14     lukem 		}
    288  1.14     lukem 		if (setgroups(0, NULL)) {
    289  1.14     lukem 			syslog(LOG_ERR, "setgroups: %m");
    290  1.14     lukem 			exit(1);
    291  1.14     lukem 		}
    292   1.8       mrg 	}
    293   1.8       mrg 
    294  1.14     lukem 	if (curuid != tgtuid) {
    295  1.14     lukem 		if (setuid(tgtuid)) {
    296  1.14     lukem 			syslog(LOG_ERR, "setuid to %d: %m", (int)tgtuid);
    297  1.14     lukem 			exit(1);
    298  1.14     lukem 		}
    299   1.4   mycroft 	}
    300   1.5       cgd 
    301   1.9       mrg 	on = 1;
    302   1.5       cgd 	if (ioctl(fd, FIONBIO, &on) < 0) {
    303  1.14     lukem 		syslog(LOG_ERR, "ioctl(FIONBIO): %m");
    304   1.1       cgd 		exit(1);
    305   1.1       cgd 	}
    306   1.1       cgd 	fromlen = sizeof (from);
    307   1.5       cgd 	n = recvfrom(fd, buf, sizeof (buf), 0,
    308   1.1       cgd 	    (struct sockaddr *)&from, &fromlen);
    309   1.1       cgd 	if (n < 0) {
    310  1.14     lukem 		syslog(LOG_ERR, "recvfrom: %m");
    311   1.1       cgd 		exit(1);
    312   1.1       cgd 	}
    313   1.1       cgd 	/*
    314   1.1       cgd 	 * Now that we have read the message out of the UDP
    315   1.1       cgd 	 * socket, we fork and exit.  Thus, inetd will go back
    316   1.1       cgd 	 * to listening to the tftp port, and the next request
    317   1.1       cgd 	 * to come in will start up a new instance of tftpd.
    318   1.1       cgd 	 *
    319   1.1       cgd 	 * We do this so that inetd can run tftpd in "wait" mode.
    320   1.1       cgd 	 * The problem with tftpd running in "nowait" mode is that
    321   1.1       cgd 	 * inetd may get one or more successful "selects" on the
    322   1.1       cgd 	 * tftp port before we do our receive, so more than one
    323   1.1       cgd 	 * instance of tftpd may be started up.  Worse, if tftpd
    324   1.1       cgd 	 * break before doing the above "recvfrom", inetd would
    325   1.1       cgd 	 * spawn endless instances, clogging the system.
    326   1.1       cgd 	 */
    327   1.1       cgd 	{
    328   1.1       cgd 		int pid;
    329  1.30       mrg 		int i;
    330  1.30       mrg 		socklen_t j;
    331   1.1       cgd 
    332   1.1       cgd 		for (i = 1; i < 20; i++) {
    333   1.1       cgd 		    pid = fork();
    334   1.1       cgd 		    if (pid < 0) {
    335   1.1       cgd 				sleep(i);
    336   1.1       cgd 				/*
    337   1.1       cgd 				 * flush out to most recently sent request.
    338   1.1       cgd 				 *
    339   1.1       cgd 				 * This may drop some request, but those
    340   1.1       cgd 				 * will be resent by the clients when
    341   1.1       cgd 				 * they timeout.  The positive effect of
    342   1.1       cgd 				 * this flush is to (try to) prevent more
    343   1.1       cgd 				 * than one tftpd being started up to service
    344   1.1       cgd 				 * a single request from a single client.
    345   1.1       cgd 				 */
    346   1.1       cgd 				j = sizeof from;
    347   1.5       cgd 				i = recvfrom(fd, buf, sizeof (buf), 0,
    348   1.1       cgd 				    (struct sockaddr *)&from, &j);
    349   1.1       cgd 				if (i > 0) {
    350   1.1       cgd 					n = i;
    351   1.1       cgd 					fromlen = j;
    352   1.1       cgd 				}
    353   1.1       cgd 		    } else {
    354   1.1       cgd 				break;
    355   1.1       cgd 		    }
    356   1.1       cgd 		}
    357   1.1       cgd 		if (pid < 0) {
    358  1.14     lukem 			syslog(LOG_ERR, "fork: %m");
    359   1.1       cgd 			exit(1);
    360   1.1       cgd 		} else if (pid != 0) {
    361   1.1       cgd 			exit(0);
    362   1.1       cgd 		}
    363   1.1       cgd 	}
    364  1.15  explorer 
    365  1.15  explorer 	/*
    366  1.15  explorer 	 * remember what address this was sent to, so we can respond on the
    367  1.15  explorer 	 * same interface
    368  1.15  explorer 	 */
    369  1.18    itojun 	len = sizeof(me);
    370  1.18    itojun 	if (getsockname(fd, (struct sockaddr *)&me, &len) == 0) {
    371  1.18    itojun 		switch (me.ss_family) {
    372  1.18    itojun 		case AF_INET:
    373  1.18    itojun 			((struct sockaddr_in *)&me)->sin_port = 0;
    374  1.18    itojun 			break;
    375  1.18    itojun 		case AF_INET6:
    376  1.18    itojun 			((struct sockaddr_in6 *)&me)->sin6_port = 0;
    377  1.18    itojun 			break;
    378  1.18    itojun 		default:
    379  1.18    itojun 			/* unsupported */
    380  1.18    itojun 			break;
    381  1.18    itojun 		}
    382  1.18    itojun 	} else {
    383  1.18    itojun 		memset(&me, 0, sizeof(me));
    384  1.18    itojun 		me.ss_family = from.ss_family;
    385  1.18    itojun 		me.ss_len = from.ss_len;
    386  1.15  explorer 	}
    387  1.15  explorer 
    388   1.1       cgd 	alarm(0);
    389   1.5       cgd 	close(fd);
    390   1.1       cgd 	close(1);
    391  1.18    itojun 	peer = socket(from.ss_family, SOCK_DGRAM, 0);
    392   1.1       cgd 	if (peer < 0) {
    393  1.14     lukem 		syslog(LOG_ERR, "socket: %m");
    394   1.1       cgd 		exit(1);
    395   1.1       cgd 	}
    396  1.18    itojun 	if (bind(peer, (struct sockaddr *)&me, me.ss_len) < 0) {
    397  1.14     lukem 		syslog(LOG_ERR, "bind: %m");
    398   1.1       cgd 		exit(1);
    399   1.1       cgd 	}
    400  1.18    itojun 	if (connect(peer, (struct sockaddr *)&from, from.ss_len) < 0) {
    401  1.14     lukem 		syslog(LOG_ERR, "connect: %m");
    402   1.1       cgd 		exit(1);
    403   1.1       cgd 	}
    404  1.25    briggs 	soopt = 65536;	/* larger than we'll ever need */
    405  1.25    briggs 	if (setsockopt(peer, SOL_SOCKET, SO_SNDBUF, (void *) &soopt, sizeof(soopt)) < 0) {
    406  1.25    briggs 		syslog(LOG_ERR, "set SNDBUF: %m");
    407  1.25    briggs 		exit(1);
    408  1.25    briggs 	}
    409  1.25    briggs 	if (setsockopt(peer, SOL_SOCKET, SO_RCVBUF, (void *) &soopt, sizeof(soopt)) < 0) {
    410  1.25    briggs 		syslog(LOG_ERR, "set RCVBUF: %m");
    411  1.25    briggs 		exit(1);
    412  1.25    briggs 	}
    413  1.25    briggs 
    414   1.1       cgd 	tp = (struct tftphdr *)buf;
    415   1.1       cgd 	tp->th_opcode = ntohs(tp->th_opcode);
    416   1.1       cgd 	if (tp->th_opcode == RRQ || tp->th_opcode == WRQ)
    417   1.1       cgd 		tftp(tp, n);
    418   1.1       cgd 	exit(1);
    419   1.1       cgd }
    420   1.1       cgd 
    421  1.25    briggs static int
    422  1.40  christos blk_handler(struct tftphdr *tp, const char *val, char *ack, size_t asize,
    423  1.42  christos     size_t *ackl, int *ecode)
    424  1.25    briggs {
    425  1.25    briggs 	unsigned long bsize;
    426  1.25    briggs 	char *endp;
    427  1.25    briggs 	int l;
    428  1.25    briggs 
    429  1.25    briggs 	/*
    430  1.25    briggs 	 * On these failures, we could just ignore the blocksize option.
    431  1.25    briggs 	 * Perhaps that should be a command-line option.
    432  1.25    briggs 	 */
    433  1.25    briggs 	errno = 0;
    434  1.25    briggs 	bsize = strtoul(val, &endp, 10);
    435  1.25    briggs 	if ((bsize == ULONG_MAX && errno == ERANGE) || *endp) {
    436  1.25    briggs 		syslog(LOG_NOTICE, "%s: %s request for %s: "
    437  1.25    briggs 			"illegal value %s for blksize option",
    438  1.25    briggs 			verifyhost((struct sockaddr *)&from),
    439  1.25    briggs 			tp->th_opcode == WRQ ? "write" : "read",
    440  1.25    briggs 			tp->th_stuff, val);
    441  1.42  christos 		*ecode = EBADOP;
    442  1.42  christos 		return -1;
    443  1.25    briggs 	}
    444  1.25    briggs 	if (bsize < 8 || bsize > 65464) {
    445  1.25    briggs 		syslog(LOG_NOTICE, "%s: %s request for %s: "
    446  1.25    briggs 			"out of range value %s for blksize option",
    447  1.25    briggs 			verifyhost((struct sockaddr *)&from),
    448  1.25    briggs 			tp->th_opcode == WRQ ? "write" : "read",
    449  1.25    briggs 			tp->th_stuff, val);
    450  1.42  christos 		*ecode = EBADOP;
    451  1.42  christos 		return -1;
    452  1.25    briggs 	}
    453  1.25    briggs 
    454  1.25    briggs 	tftp_blksize = bsize;
    455  1.40  christos 	if (asize > *ackl && (l = snprintf(ack + *ackl, asize - *ackl,
    456  1.42  christos 	    "blksize%c%lu%c", 0, bsize, 0)) > 0) {
    457  1.40  christos 		*ackl += l;
    458  1.42  christos 	} else {
    459  1.42  christos 		*ecode = EBADOP;
    460  1.40  christos 		return -1;
    461  1.42  christos 	}
    462  1.25    briggs 
    463  1.25    briggs 	return 0;
    464  1.25    briggs }
    465  1.25    briggs 
    466  1.25    briggs static int
    467  1.40  christos timeout_handler(struct tftphdr *tp, const char *val, char *ack, size_t asize,
    468  1.42  christos 		size_t *ackl, int *ecode)
    469  1.25    briggs {
    470  1.25    briggs 	unsigned long tout;
    471  1.25    briggs 	char *endp;
    472  1.25    briggs 	int l;
    473  1.25    briggs 
    474  1.25    briggs 	errno = 0;
    475  1.25    briggs 	tout = strtoul(val, &endp, 10);
    476  1.25    briggs 	if ((tout == ULONG_MAX && errno == ERANGE) || *endp) {
    477  1.25    briggs 		syslog(LOG_NOTICE, "%s: %s request for %s: "
    478  1.25    briggs 			"illegal value %s for timeout option",
    479  1.25    briggs 			verifyhost((struct sockaddr *)&from),
    480  1.25    briggs 			tp->th_opcode == WRQ ? "write" : "read",
    481  1.25    briggs 			tp->th_stuff, val);
    482  1.42  christos 		*ecode = EBADOP;
    483  1.42  christos 		return -1;
    484  1.25    briggs 	}
    485  1.25    briggs 	if (tout < 1 || tout > 255) {
    486  1.25    briggs 		syslog(LOG_NOTICE, "%s: %s request for %s: "
    487  1.25    briggs 			"out of range value %s for timeout option",
    488  1.25    briggs 			verifyhost((struct sockaddr *)&from),
    489  1.25    briggs 			tp->th_opcode == WRQ ? "write" : "read",
    490  1.25    briggs 			tp->th_stuff, val);
    491  1.25    briggs 		return 0;
    492  1.25    briggs 	}
    493  1.25    briggs 
    494  1.25    briggs 	rexmtval = tout;
    495  1.40  christos 	if (asize > *ackl && (l = snprintf(ack + *ackl, asize - *ackl,
    496  1.41  christos 	    "timeout%c%lu%c", 0, tout, 0)) > 0)
    497  1.40  christos 		*ackl += l;
    498  1.40  christos 	else
    499  1.40  christos 		return -1;
    500  1.25    briggs 	/*
    501  1.25    briggs 	 * Arbitrarily pick a maximum timeout on a request to 3
    502  1.25    briggs 	 * retransmissions if the interval timeout is more than
    503  1.25    briggs 	 * one minute.  Longest possible timeout is therefore
    504  1.25    briggs 	 * 3 * 255 - 1, or 764 seconds.
    505  1.25    briggs 	 */
    506  1.25    briggs 	if (rexmtval > 60) {
    507  1.25    briggs 		maxtimeout = rexmtval * 3;
    508  1.25    briggs 	} else {
    509  1.25    briggs 		maxtimeout = rexmtval * 5;
    510  1.25    briggs 	}
    511  1.25    briggs 
    512  1.25    briggs 	return 0;
    513  1.25    briggs }
    514  1.25    briggs 
    515  1.25    briggs static int
    516  1.40  christos tsize_handler(struct tftphdr *tp, const char *val, char *ack, size_t asize,
    517  1.42  christos     size_t *ackl, int *ecode)
    518  1.25    briggs {
    519  1.25    briggs 	unsigned long fsize;
    520  1.25    briggs 	char *endp;
    521  1.25    briggs 
    522  1.25    briggs 	/*
    523  1.25    briggs 	 * Maximum file even with extended tftp is 65535 blocks of
    524  1.25    briggs 	 * length 65464, or 4290183240 octets (4784056 less than 2^32).
    525  1.25    briggs 	 * unsigned long is at least 32 bits on all NetBSD archs.
    526  1.25    briggs 	 */
    527  1.25    briggs 
    528  1.25    briggs 	errno = 0;
    529  1.25    briggs 	fsize = strtoul(val, &endp, 10);
    530  1.25    briggs 	if ((fsize == ULONG_MAX && errno == ERANGE) || *endp) {
    531  1.25    briggs 		syslog(LOG_NOTICE, "%s: %s request for %s: "
    532  1.25    briggs 			"illegal value %s for tsize option",
    533  1.25    briggs 			verifyhost((struct sockaddr *)&from),
    534  1.25    briggs 			tp->th_opcode == WRQ ? "write" : "read",
    535  1.25    briggs 			tp->th_stuff, val);
    536  1.42  christos 		*ecode = EBADOP;
    537  1.42  christos 		return -1;
    538  1.25    briggs 	}
    539  1.25    briggs 	if (fsize > (unsigned long) 65535 * 65464) {
    540  1.25    briggs 		syslog(LOG_NOTICE, "%s: %s request for %s: "
    541  1.25    briggs 			"out of range value %s for tsize option",
    542  1.25    briggs 			verifyhost((struct sockaddr *)&from),
    543  1.25    briggs 			tp->th_opcode == WRQ ? "write" : "read",
    544  1.25    briggs 			tp->th_stuff, val);
    545  1.42  christos 		*ecode = EBADOP;
    546  1.42  christos 		return -1;
    547  1.25    briggs 	}
    548  1.25    briggs 
    549  1.25    briggs 	tftp_opt_tsize = 1;
    550  1.25    briggs 	tftp_tsize = fsize;
    551  1.25    briggs 	/*
    552  1.25    briggs 	 * We will report this later -- either replying with the fsize (WRQ)
    553  1.25    briggs 	 * or replying with the actual filesize (RRQ).
    554  1.25    briggs 	 */
    555  1.25    briggs 
    556  1.25    briggs 	return 0;
    557  1.25    briggs }
    558  1.25    briggs 
    559  1.33  christos static const struct tftp_options {
    560  1.33  christos 	const char *o_name;
    561  1.40  christos 	int (*o_handler)(struct tftphdr *, const char *, char *, size_t,
    562  1.40  christos 			 size_t *, int *);
    563  1.25    briggs } options[] = {
    564  1.25    briggs 	{ "blksize", blk_handler },
    565  1.25    briggs 	{ "timeout", timeout_handler },
    566  1.25    briggs 	{ "tsize", tsize_handler },
    567  1.33  christos 	{ .o_name = NULL }
    568  1.25    briggs };
    569  1.25    briggs 
    570  1.25    briggs /*
    571  1.25    briggs  * Get options for an extended tftp session.  Stuff the ones we
    572  1.25    briggs  * recognize in oackbuf.
    573  1.25    briggs  */
    574  1.25    briggs static int
    575  1.40  christos get_options(struct tftphdr *tp, char *cp, int size, char *ackb, size_t asize,
    576  1.42  christos     size_t *alen, int *ecode)
    577  1.25    briggs {
    578  1.33  christos 	const struct tftp_options *op;
    579  1.25    briggs 	char *option, *value, *endp;
    580  1.42  christos 	int r, rv=0;
    581  1.25    briggs 
    582  1.25    briggs 	endp = cp + size;
    583  1.25    briggs 	while (cp < endp) {
    584  1.25    briggs 		option = cp;
    585  1.25    briggs 		while (*cp && cp < endp) {
    586  1.29       dsl 			*cp = tolower((unsigned char)*cp);
    587  1.25    briggs 			cp++;
    588  1.25    briggs 		}
    589  1.25    briggs 		if (*cp) {
    590  1.25    briggs 			/* if we have garbage at the end, just ignore it */
    591  1.25    briggs 			break;
    592  1.25    briggs 		}
    593  1.25    briggs 		cp++;	/* skip over NUL */
    594  1.25    briggs 		value = cp;
    595  1.25    briggs 		while (*cp && cp < endp) {
    596  1.25    briggs 			cp++;
    597  1.25    briggs 		}
    598  1.25    briggs 		if (*cp) {
    599  1.25    briggs 			/* if we have garbage at the end, just ignore it */
    600  1.25    briggs 			break;
    601  1.25    briggs 		}
    602  1.25    briggs 		cp++;
    603  1.25    briggs 		for (op = options; op->o_name; op++) {
    604  1.25    briggs 			if (strcmp(op->o_name, option) == 0)
    605  1.25    briggs 				break;
    606  1.25    briggs 		}
    607  1.25    briggs 		if (op->o_name) {
    608  1.42  christos 			r = op->o_handler(tp, value, ackb, asize, alen, ecode);
    609  1.25    briggs 			if (r < 0) {
    610  1.25    briggs 				rv = -1;
    611  1.25    briggs 				break;
    612  1.25    briggs 			}
    613  1.25    briggs 			rv++;
    614  1.25    briggs 		} /* else ignore unknown options */
    615  1.25    briggs 	}
    616  1.25    briggs 
    617  1.25    briggs 	return rv;
    618  1.25    briggs }
    619  1.25    briggs 
    620   1.1       cgd /*
    621   1.1       cgd  * Handle initial connection protocol.
    622   1.1       cgd  */
    623   1.9       mrg static void
    624  1.22     lukem tftp(struct tftphdr *tp, int size)
    625   1.1       cgd {
    626  1.14     lukem 	struct formats *pf;
    627  1.22     lukem 	char	*cp;
    628  1.22     lukem 	char	*filename, *mode;
    629  1.40  christos 	int	 first, ecode, etftp = 0, r;
    630  1.40  christos 	size_t alen;
    631  1.22     lukem 
    632  1.30       mrg 	ecode = 0;	/* XXX gcc */
    633  1.22     lukem 	first = 1;
    634  1.22     lukem 	mode = NULL;
    635   1.1       cgd 
    636   1.1       cgd 	filename = cp = tp->th_stuff;
    637   1.1       cgd again:
    638   1.1       cgd 	while (cp < buf + size) {
    639   1.1       cgd 		if (*cp == '\0')
    640   1.1       cgd 			break;
    641   1.1       cgd 		cp++;
    642   1.1       cgd 	}
    643   1.1       cgd 	if (*cp != '\0') {
    644   1.1       cgd 		nak(EBADOP);
    645   1.1       cgd 		exit(1);
    646   1.1       cgd 	}
    647   1.1       cgd 	if (first) {
    648   1.1       cgd 		mode = ++cp;
    649   1.1       cgd 		first = 0;
    650   1.1       cgd 		goto again;
    651   1.1       cgd 	}
    652   1.1       cgd 	for (cp = mode; *cp; cp++)
    653  1.29       dsl 		*cp = tolower((unsigned char)*cp);
    654   1.1       cgd 	for (pf = formats; pf->f_mode; pf++)
    655   1.1       cgd 		if (strcmp(pf->f_mode, mode) == 0)
    656   1.1       cgd 			break;
    657   1.1       cgd 	if (pf->f_mode == 0) {
    658   1.1       cgd 		nak(EBADOP);
    659   1.1       cgd 		exit(1);
    660   1.1       cgd 	}
    661  1.25    briggs 	/*
    662  1.25    briggs 	 * cp currently points to the NUL byte following the mode.
    663  1.25    briggs 	 *
    664  1.25    briggs 	 * If we have some valid options, then let's assume that we're
    665  1.25    briggs 	 * now dealing with an extended tftp session.  Note that if we
    666  1.25    briggs 	 * don't get any options, then we *must* assume that we do not
    667  1.25    briggs 	 * have an extended tftp session.  If we get options, we fill
    668  1.25    briggs 	 * in the ack buf to acknowledge them.  If we skip that, then
    669  1.25    briggs 	 * the client *must* assume that we are not using an extended
    670  1.25    briggs 	 * session.
    671  1.25    briggs 	 */
    672  1.25    briggs 	size -= (++cp - (char *) tp);
    673  1.25    briggs 	if (size > 0 && *cp) {
    674  1.25    briggs 		alen = 2; /* Skip over opcode */
    675  1.40  christos 		r = get_options(tp, cp, size, oackbuf, sizeof(oackbuf),
    676  1.40  christos 		    &alen, &ecode);
    677  1.25    briggs 		if (r > 0) {
    678  1.25    briggs 			etftp = 1;
    679  1.25    briggs 		} else if (r < 0) {
    680  1.25    briggs 			nak(ecode);
    681  1.25    briggs 			exit(1);
    682  1.25    briggs 		}
    683  1.25    briggs 	}
    684  1.33  christos 	/*
    685  1.33  christos 	 * Globally replace the path separator given in the -p option
    686  1.33  christos 	 * with / to cope with clients expecting a non-unix path separator.
    687  1.33  christos 	 */
    688  1.33  christos 	if (pathsep != '\0') {
    689  1.33  christos 		for (cp = filename; *cp != '\0'; ++cp) {
    690  1.33  christos 			if (*cp == pathsep)
    691  1.33  christos 				*cp = '/';
    692  1.33  christos 		}
    693  1.33  christos 	}
    694   1.9       mrg 	ecode = (*pf->f_validate)(&filename, tp->th_opcode);
    695   1.9       mrg 	if (logging) {
    696   1.9       mrg 		syslog(LOG_INFO, "%s: %s request for %s: %s",
    697  1.18    itojun 			verifyhost((struct sockaddr *)&from),
    698   1.9       mrg 			tp->th_opcode == WRQ ? "write" : "read",
    699   1.9       mrg 			filename, errtomsg(ecode));
    700   1.9       mrg 	}
    701   1.1       cgd 	if (ecode) {
    702   1.9       mrg 		/*
    703   1.9       mrg 		 * Avoid storms of naks to a RRQ broadcast for a relative
    704   1.9       mrg 		 * bootfile pathname from a diskless Sun.
    705   1.9       mrg 		 */
    706   1.9       mrg 		if (suppress_naks && *filename != '/' && ecode == ENOTFOUND)
    707   1.9       mrg 			exit(0);
    708   1.1       cgd 		nak(ecode);
    709   1.1       cgd 		exit(1);
    710   1.1       cgd 	}
    711  1.25    briggs 
    712  1.25    briggs 	if (etftp) {
    713  1.25    briggs 		struct tftphdr *oack_h;
    714  1.25    briggs 
    715  1.25    briggs 		if (tftp_opt_tsize) {
    716  1.25    briggs 			int l;
    717  1.25    briggs 
    718  1.40  christos 			if (sizeof(oackbuf) > alen &&
    719  1.40  christos 			    (l = snprintf(oackbuf + alen,
    720  1.40  christos 			    sizeof(oackbuf) - alen, "tsize%c%u%c", 0,
    721  1.41  christos 			    tftp_tsize, 0)) > 0)
    722  1.40  christos 				alen += l;
    723  1.25    briggs 		}
    724  1.25    briggs 		oack_h = (struct tftphdr *) oackbuf;
    725  1.25    briggs 		oack_h->th_opcode = htons(OACK);
    726  1.25    briggs 	}
    727  1.25    briggs 
    728   1.1       cgd 	if (tp->th_opcode == WRQ)
    729  1.25    briggs 		(*pf->f_recv)(pf, etftp, alen);
    730   1.1       cgd 	else
    731  1.25    briggs 		(*pf->f_send)(pf, etftp, alen);
    732   1.1       cgd 	exit(0);
    733   1.1       cgd }
    734   1.1       cgd 
    735   1.1       cgd 
    736   1.1       cgd FILE *file;
    737   1.1       cgd 
    738   1.1       cgd /*
    739   1.1       cgd  * Validate file access.  Since we
    740   1.1       cgd  * have no uid or gid, for now require
    741   1.1       cgd  * file to exist and be publicly
    742   1.1       cgd  * readable/writable.
    743   1.1       cgd  * If we were invoked with arguments
    744   1.1       cgd  * from inetd then the file must also be
    745   1.1       cgd  * in one of the given directory prefixes.
    746   1.1       cgd  */
    747   1.9       mrg int
    748  1.22     lukem validate_access(char **filep, int mode)
    749  1.22     lukem {
    750  1.22     lukem 	struct stat	 stbuf;
    751  1.22     lukem 	struct dirlist	*dirp;
    752  1.22     lukem 	static char	 pathname[MAXPATHLEN];
    753  1.22     lukem 	char		*filename;
    754  1.22     lukem 	int		 fd;
    755  1.37   hubertf 	int		 create = 0;
    756  1.37   hubertf 	int		 trunc = 0;
    757  1.22     lukem 
    758  1.22     lukem 	filename = *filep;
    759   1.1       cgd 
    760   1.9       mrg 	/*
    761   1.9       mrg 	 * Prevent tricksters from getting around the directory restrictions
    762   1.9       mrg 	 */
    763   1.9       mrg 	if (strstr(filename, "/../"))
    764   1.9       mrg 		return (EACCESS);
    765   1.9       mrg 
    766   1.9       mrg 	if (*filename == '/') {
    767   1.4   mycroft 		/*
    768   1.9       mrg 		 * Allow the request if it's in one of the approved locations.
    769   1.9       mrg 		 * Special case: check the null prefix ("/") by looking
    770   1.9       mrg 		 * for length = 1 and relying on the arg. processing that
    771   1.9       mrg 		 * it's a /.
    772   1.4   mycroft 		 */
    773   1.9       mrg 		for (dirp = dirs; dirp->name != NULL; dirp++) {
    774   1.9       mrg 			if (dirp->len == 1 ||
    775   1.9       mrg 			    (!strncmp(filename, dirp->name, dirp->len) &&
    776   1.9       mrg 			     filename[dirp->len] == '/'))
    777   1.9       mrg 				    break;
    778   1.9       mrg 		}
    779   1.9       mrg 		/* If directory list is empty, allow access to any file */
    780   1.9       mrg 		if (dirp->name == NULL && dirp != dirs)
    781   1.1       cgd 			return (EACCESS);
    782   1.9       mrg 		if (stat(filename, &stbuf) < 0)
    783   1.9       mrg 			return (errno == ENOENT ? ENOTFOUND : EACCESS);
    784  1.10   mycroft 		if (!S_ISREG(stbuf.st_mode))
    785   1.9       mrg 			return (ENOTFOUND);
    786   1.9       mrg 		if (mode == RRQ) {
    787   1.9       mrg 			if ((stbuf.st_mode & S_IROTH) == 0)
    788   1.9       mrg 				return (EACCESS);
    789   1.9       mrg 		} else {
    790   1.9       mrg 			if ((stbuf.st_mode & S_IWOTH) == 0)
    791   1.9       mrg 				return (EACCESS);
    792   1.9       mrg 		}
    793   1.1       cgd 	} else {
    794   1.9       mrg 		/*
    795   1.9       mrg 		 * Relative file name: search the approved locations for it.
    796   1.9       mrg 		 */
    797   1.9       mrg 
    798  1.16     aidan 		if (!strncmp(filename, "../", 3))
    799   1.1       cgd 			return (EACCESS);
    800   1.9       mrg 
    801   1.9       mrg 		/*
    802  1.16     aidan 		 * Find the first file that exists in any of the directories,
    803  1.16     aidan 		 * check access on it.
    804   1.9       mrg 		 */
    805   1.9       mrg 		if (dirs[0].name != NULL) {
    806   1.9       mrg 			for (dirp = dirs; dirp->name != NULL; dirp++) {
    807   1.9       mrg 				snprintf(pathname, sizeof pathname, "%s/%s",
    808   1.9       mrg 				    dirp->name, filename);
    809   1.9       mrg 				if (stat(pathname, &stbuf) == 0 &&
    810   1.9       mrg 				    (stbuf.st_mode & S_IFMT) == S_IFREG) {
    811  1.16     aidan 					break;
    812   1.9       mrg 				}
    813   1.9       mrg 			}
    814   1.9       mrg 			if (dirp->name == NULL)
    815  1.16     aidan 				return (ENOTFOUND);
    816  1.16     aidan 			if (mode == RRQ && !(stbuf.st_mode & S_IROTH))
    817  1.16     aidan 				return (EACCESS);
    818  1.16     aidan 			if (mode == WRQ && !(stbuf.st_mode & S_IWOTH))
    819  1.16     aidan 				return (EACCESS);
    820   1.9       mrg 			*filep = filename = pathname;
    821  1.16     aidan 		} else {
    822  1.37   hubertf 			int stat_rc;
    823  1.37   hubertf 
    824  1.16     aidan 			/*
    825  1.16     aidan 			 * If there's no directory list, take our cue from the
    826  1.16     aidan 			 * absolute file request check above (*filename == '/'),
    827  1.16     aidan 			 * and allow access to anything.
    828  1.16     aidan 			 */
    829  1.37   hubertf 			stat_rc = stat(filename, &stbuf);
    830  1.16     aidan 			if (mode == RRQ) {
    831  1.37   hubertf 				/* Read request */
    832  1.37   hubertf 				if (stat_rc < 0)
    833  1.37   hubertf 				       return (errno == ENOENT ? ENOTFOUND : EACCESS);
    834  1.37   hubertf 				if (!S_ISREG(stbuf.st_mode))
    835  1.37   hubertf 				       return (ENOTFOUND);
    836  1.16     aidan 				if ((stbuf.st_mode & S_IROTH) == 0)
    837  1.16     aidan 					return (EACCESS);
    838  1.16     aidan 			} else {
    839  1.37   hubertf 				if (stat_rc < 0) {
    840  1.37   hubertf 				       /* Can't stat */
    841  1.37   hubertf 				       if (errno == EACCES) {
    842  1.37   hubertf 					       /* Permission denied */
    843  1.37   hubertf 					       return EACCESS;
    844  1.37   hubertf 				       } else {
    845  1.37   hubertf 					       /* Not there */
    846  1.37   hubertf 					       if (unrestricted_writes) {
    847  1.37   hubertf 						       /* need to creat new file! */
    848  1.37   hubertf 						       create = O_CREAT;
    849  1.37   hubertf 					       } else {
    850  1.37   hubertf 						       /* Permission denied */
    851  1.37   hubertf 						       return EACCESS;
    852  1.37   hubertf 					       }
    853  1.37   hubertf 				       }
    854  1.37   hubertf 				} else {
    855  1.37   hubertf 				       /* Can stat */
    856  1.37   hubertf 				       if ((stbuf.st_mode & S_IWOTH) == 0) {
    857  1.37   hubertf 					       return (EACCESS);
    858  1.37   hubertf 				       }
    859  1.37   hubertf 				       trunc = O_TRUNC;
    860  1.37   hubertf 				}
    861  1.16     aidan 			}
    862   1.9       mrg 			*filep = filename;
    863  1.16     aidan 		}
    864   1.1       cgd 	}
    865  1.25    briggs 
    866  1.25    briggs 	if (tftp_opt_tsize && mode == RRQ)
    867  1.25    briggs 		tftp_tsize = (unsigned long) stbuf.st_size;
    868  1.25    briggs 
    869  1.37   hubertf 	fd = open(filename, mode == RRQ ? O_RDONLY : O_WRONLY | trunc | create,
    870  1.37   hubertf 			0644); /* debatable */
    871   1.1       cgd 	if (fd < 0)
    872   1.1       cgd 		return (errno + 100);
    873   1.1       cgd 	file = fdopen(fd, (mode == RRQ)? "r":"w");
    874   1.1       cgd 	if (file == NULL) {
    875  1.16     aidan 		close(fd);
    876  1.22     lukem 		return (errno + 100);
    877   1.1       cgd 	}
    878   1.1       cgd 	return (0);
    879   1.1       cgd }
    880   1.1       cgd 
    881  1.33  christos static int	timeout;
    882  1.33  christos static jmp_buf	timeoutbuf;
    883   1.1       cgd 
    884  1.33  christos static void
    885  1.22     lukem timer(int dummy)
    886   1.1       cgd {
    887   1.1       cgd 
    888   1.1       cgd 	timeout += rexmtval;
    889   1.1       cgd 	if (timeout >= maxtimeout)
    890   1.1       cgd 		exit(1);
    891   1.1       cgd 	longjmp(timeoutbuf, 1);
    892   1.1       cgd }
    893   1.1       cgd 
    894  1.24  christos static const char *
    895  1.24  christos opcode(int code)
    896  1.24  christos {
    897  1.32     lukem 	static char obuf[64];
    898  1.24  christos 
    899  1.24  christos 	switch (code) {
    900  1.24  christos 	case RRQ:
    901  1.24  christos 		return "RRQ";
    902  1.24  christos 	case WRQ:
    903  1.24  christos 		return "WRQ";
    904  1.24  christos 	case DATA:
    905  1.24  christos 		return "DATA";
    906  1.24  christos 	case ACK:
    907  1.24  christos 		return "ACK";
    908  1.24  christos 	case ERROR:
    909  1.24  christos 		return "ERROR";
    910  1.25    briggs 	case OACK:
    911  1.25    briggs 		return "OACK";
    912  1.24  christos 	default:
    913  1.33  christos 		(void)snprintf(obuf, sizeof(obuf), "*code 0x%x*", code);
    914  1.32     lukem 		return obuf;
    915  1.24  christos 	}
    916  1.24  christos }
    917  1.24  christos 
    918   1.1       cgd /*
    919   1.1       cgd  * Send the requested file.
    920   1.1       cgd  */
    921  1.33  christos static void
    922  1.33  christos sendfile(struct formats *pf, volatile int etftp, int acklength)
    923   1.1       cgd {
    924  1.19    dogcow 	volatile unsigned int block;
    925  1.22     lukem 	struct tftphdr	*dp;
    926  1.22     lukem 	struct tftphdr	*ap;    /* ack packet */
    927  1.33  christos 	volatile int	 size;
    928  1.33  christos 	int n;
    929   1.1       cgd 
    930   1.1       cgd 	signal(SIGALRM, timer);
    931   1.1       cgd 	ap = (struct tftphdr *)ackbuf;
    932  1.25    briggs 	if (etftp) {
    933  1.25    briggs 		dp = (struct tftphdr *)oackbuf;
    934  1.25    briggs 		size = acklength - 4;
    935  1.25    briggs 		block = 0;
    936  1.25    briggs 	} else {
    937  1.25    briggs 		dp = r_init();
    938  1.25    briggs 		size = 0;
    939  1.25    briggs 		block = 1;
    940  1.25    briggs 	}
    941  1.25    briggs 
    942   1.1       cgd 	do {
    943  1.25    briggs 		if (block > 0) {
    944  1.25    briggs 			size = readit(file, &dp, tftp_blksize, pf->f_convert);
    945  1.25    briggs 			if (size < 0) {
    946  1.25    briggs 				nak(errno + 100);
    947  1.25    briggs 				goto abort;
    948  1.25    briggs 			}
    949  1.25    briggs 			dp->th_opcode = htons((u_short)DATA);
    950  1.25    briggs 			dp->th_block = htons((u_short)block);
    951   1.1       cgd 		}
    952   1.1       cgd 		timeout = 0;
    953   1.9       mrg 		(void)setjmp(timeoutbuf);
    954   1.1       cgd 
    955   1.1       cgd send_data:
    956  1.25    briggs 		if (!etftp && debug)
    957  1.24  christos 			syslog(LOG_DEBUG, "Send DATA %u", block);
    958  1.25    briggs 		if ((n = send(peer, dp, size + 4, 0)) != size + 4) {
    959  1.14     lukem 			syslog(LOG_ERR, "tftpd: write: %m");
    960   1.1       cgd 			goto abort;
    961   1.1       cgd 		}
    962  1.25    briggs 		if (block)
    963  1.25    briggs 			read_ahead(file, tftp_blksize, pf->f_convert);
    964   1.1       cgd 		for ( ; ; ) {
    965   1.1       cgd 			alarm(rexmtval);        /* read the ack */
    966  1.25    briggs 			n = recv(peer, ackbuf, tftp_blksize, 0);
    967   1.1       cgd 			alarm(0);
    968   1.1       cgd 			if (n < 0) {
    969  1.14     lukem 				syslog(LOG_ERR, "tftpd: read: %m");
    970   1.1       cgd 				goto abort;
    971   1.1       cgd 			}
    972   1.1       cgd 			ap->th_opcode = ntohs((u_short)ap->th_opcode);
    973   1.1       cgd 			ap->th_block = ntohs((u_short)ap->th_block);
    974  1.24  christos 			switch (ap->th_opcode) {
    975  1.24  christos 			case ERROR:
    976   1.1       cgd 				goto abort;
    977   1.9       mrg 
    978  1.24  christos 			case ACK:
    979  1.33  christos 				if (etftp && ap->th_block == 0) {
    980  1.25    briggs 					etftp = 0;
    981  1.25    briggs 					acklength = 0;
    982  1.25    briggs 					dp = r_init();
    983  1.25    briggs 					goto done;
    984  1.25    briggs 				}
    985  1.33  christos 				if (ap->th_block == (u_short)block)
    986  1.24  christos 					goto done;
    987  1.24  christos 				if (debug)
    988  1.24  christos 					syslog(LOG_DEBUG, "Resync ACK %u != %u",
    989  1.24  christos 					    (unsigned int)ap->th_block, block);
    990   1.1       cgd 				/* Re-synchronize with the other side */
    991  1.25    briggs 				(void) synchnet(peer, tftp_blksize);
    992  1.33  christos 				if (ap->th_block == (u_short)(block - 1))
    993   1.1       cgd 					goto send_data;
    994  1.24  christos 			default:
    995  1.24  christos 				syslog(LOG_INFO, "Received %s in sendfile\n",
    996  1.24  christos 				    opcode(dp->th_opcode));
    997   1.1       cgd 			}
    998   1.1       cgd 
    999   1.1       cgd 		}
   1000  1.24  christos done:
   1001  1.24  christos 		if (debug)
   1002  1.24  christos 			syslog(LOG_DEBUG, "Received ACK for block %u", block);
   1003  1.33  christos 		if (block == UINT16_MAX && size == tftp_blksize)
   1004  1.33  christos 			syslog(LOG_WARNING,
   1005  1.33  christos 			    "Block number wrapped (hint: increase block size)");
   1006   1.1       cgd 		block++;
   1007  1.25    briggs 	} while (size == tftp_blksize || block == 1);
   1008   1.1       cgd abort:
   1009   1.1       cgd 	(void) fclose(file);
   1010   1.1       cgd }
   1011   1.1       cgd 
   1012  1.33  christos static void
   1013  1.22     lukem justquit(int dummy)
   1014   1.1       cgd {
   1015  1.22     lukem 
   1016   1.1       cgd 	exit(0);
   1017   1.1       cgd }
   1018   1.1       cgd 
   1019   1.1       cgd /*
   1020   1.1       cgd  * Receive a file.
   1021   1.1       cgd  */
   1022  1.33  christos static void
   1023  1.33  christos recvfile(struct formats *pf, volatile int etftp, volatile int acklength)
   1024   1.1       cgd {
   1025  1.19    dogcow 	volatile unsigned int block;
   1026  1.22     lukem 	struct tftphdr	*dp;
   1027  1.22     lukem 	struct tftphdr	*ap;    /* ack buffer */
   1028  1.33  christos 	volatile int size;
   1029  1.33  christos 	int n;
   1030   1.1       cgd 
   1031   1.1       cgd 	signal(SIGALRM, timer);
   1032   1.1       cgd 	dp = w_init();
   1033  1.25    briggs 	ap = (struct tftphdr *)oackbuf;
   1034   1.9       mrg 	block = 0;
   1035   1.1       cgd 	do {
   1036   1.1       cgd 		timeout = 0;
   1037  1.25    briggs 		if (etftp == 0) {
   1038  1.25    briggs 			ap = (struct tftphdr *)ackbuf;
   1039  1.25    briggs 			ap->th_opcode = htons((u_short)ACK);
   1040  1.25    briggs 			ap->th_block = htons((u_short)block);
   1041  1.25    briggs 			acklength = 4;
   1042  1.25    briggs 		}
   1043  1.24  christos 		if (debug)
   1044  1.24  christos 			syslog(LOG_DEBUG, "Sending ACK for block %u\n", block);
   1045  1.33  christos 		if (block == UINT16_MAX)
   1046  1.33  christos 			syslog(LOG_WARNING,
   1047  1.33  christos 			    "Block number wrapped (hint: increase block size)");
   1048   1.1       cgd 		block++;
   1049   1.1       cgd 		(void) setjmp(timeoutbuf);
   1050   1.1       cgd send_ack:
   1051  1.33  christos 		ap = (struct tftphdr *) (etftp ? oackbuf : ackbuf);
   1052  1.25    briggs 		if (send(peer, ap, acklength, 0) != acklength) {
   1053  1.14     lukem 			syslog(LOG_ERR, "tftpd: write: %m");
   1054   1.1       cgd 			goto abort;
   1055   1.1       cgd 		}
   1056   1.1       cgd 		write_behind(file, pf->f_convert);
   1057   1.1       cgd 		for ( ; ; ) {
   1058   1.1       cgd 			alarm(rexmtval);
   1059  1.25    briggs 			n = recv(peer, dp, tftp_blksize + 4, 0);
   1060   1.1       cgd 			alarm(0);
   1061   1.1       cgd 			if (n < 0) {            /* really? */
   1062  1.14     lukem 				syslog(LOG_ERR, "tftpd: read: %m");
   1063   1.1       cgd 				goto abort;
   1064   1.1       cgd 			}
   1065  1.25    briggs 			etftp = 0;
   1066   1.1       cgd 			dp->th_opcode = ntohs((u_short)dp->th_opcode);
   1067   1.1       cgd 			dp->th_block = ntohs((u_short)dp->th_block);
   1068  1.24  christos 			if (debug)
   1069  1.24  christos 				syslog(LOG_DEBUG, "Received %s for block %u",
   1070  1.24  christos 				    opcode(dp->th_opcode),
   1071  1.24  christos 				    (unsigned int)dp->th_block);
   1072  1.24  christos 
   1073  1.24  christos 			switch (dp->th_opcode) {
   1074  1.24  christos 			case ERROR:
   1075   1.1       cgd 				goto abort;
   1076  1.24  christos 			case DATA:
   1077  1.24  christos 				if (dp->th_block == block)
   1078  1.24  christos 					goto done;   /* normal */
   1079  1.24  christos 				if (debug)
   1080  1.24  christos 					syslog(LOG_DEBUG, "Resync %u != %u",
   1081  1.24  christos 					    (unsigned int)dp->th_block, block);
   1082   1.1       cgd 				/* Re-synchronize with the other side */
   1083  1.25    briggs 				(void) synchnet(peer, tftp_blksize);
   1084   1.1       cgd 				if (dp->th_block == (block-1))
   1085   1.1       cgd 					goto send_ack;          /* rexmit */
   1086  1.24  christos 				break;
   1087  1.24  christos 			default:
   1088  1.24  christos 				syslog(LOG_INFO, "Received %s in recvfile\n",
   1089  1.24  christos 				    opcode(dp->th_opcode));
   1090  1.24  christos 				break;
   1091   1.1       cgd 			}
   1092   1.1       cgd 		}
   1093  1.24  christos done:
   1094  1.24  christos 		if (debug)
   1095  1.24  christos 			syslog(LOG_DEBUG, "Got block %u", block);
   1096   1.1       cgd 		/*  size = write(file, dp->th_data, n - 4); */
   1097   1.1       cgd 		size = writeit(file, &dp, n - 4, pf->f_convert);
   1098   1.1       cgd 		if (size != (n-4)) {                    /* ahem */
   1099   1.1       cgd 			if (size < 0) nak(errno + 100);
   1100   1.1       cgd 			else nak(ENOSPACE);
   1101   1.1       cgd 			goto abort;
   1102   1.1       cgd 		}
   1103  1.25    briggs 	} while (size == tftp_blksize);
   1104   1.1       cgd 	write_behind(file, pf->f_convert);
   1105   1.1       cgd 	(void) fclose(file);            /* close data file */
   1106   1.1       cgd 
   1107   1.1       cgd 	ap->th_opcode = htons((u_short)ACK);    /* send the "final" ack */
   1108   1.1       cgd 	ap->th_block = htons((u_short)(block));
   1109  1.24  christos 	if (debug)
   1110  1.24  christos 		syslog(LOG_DEBUG, "Send final ACK %u", block);
   1111   1.1       cgd 	(void) send(peer, ackbuf, 4, 0);
   1112   1.1       cgd 
   1113   1.1       cgd 	signal(SIGALRM, justquit);      /* just quit on timeout */
   1114   1.1       cgd 	alarm(rexmtval);
   1115   1.1       cgd 	n = recv(peer, buf, sizeof (buf), 0); /* normally times out and quits */
   1116   1.1       cgd 	alarm(0);
   1117   1.1       cgd 	if (n >= 4 &&                   /* if read some data */
   1118   1.1       cgd 	    dp->th_opcode == DATA &&    /* and got a data block */
   1119   1.1       cgd 	    block == dp->th_block) {	/* then my last ack was lost */
   1120   1.1       cgd 		(void) send(peer, ackbuf, 4, 0);     /* resend final ack */
   1121   1.1       cgd 	}
   1122   1.1       cgd abort:
   1123   1.1       cgd 	return;
   1124   1.1       cgd }
   1125   1.1       cgd 
   1126  1.13   mycroft const struct errmsg {
   1127  1.22     lukem 	int		 e_code;
   1128  1.22     lukem 	const char	*e_msg;
   1129   1.1       cgd } errmsgs[] = {
   1130   1.1       cgd 	{ EUNDEF,	"Undefined error code" },
   1131   1.1       cgd 	{ ENOTFOUND,	"File not found" },
   1132   1.1       cgd 	{ EACCESS,	"Access violation" },
   1133   1.1       cgd 	{ ENOSPACE,	"Disk full or allocation exceeded" },
   1134   1.1       cgd 	{ EBADOP,	"Illegal TFTP operation" },
   1135   1.1       cgd 	{ EBADID,	"Unknown transfer ID" },
   1136   1.1       cgd 	{ EEXISTS,	"File already exists" },
   1137   1.1       cgd 	{ ENOUSER,	"No such user" },
   1138  1.25    briggs 	{ EOPTNEG,	"Option negotiation failed" },
   1139   1.1       cgd 	{ -1,		0 }
   1140   1.1       cgd };
   1141   1.1       cgd 
   1142  1.13   mycroft static const char *
   1143  1.22     lukem errtomsg(int error)
   1144   1.9       mrg {
   1145  1.22     lukem 	static char ebuf[20];
   1146  1.14     lukem 	const struct errmsg *pe;
   1147   1.9       mrg 
   1148   1.9       mrg 	if (error == 0)
   1149  1.22     lukem 		return ("success");
   1150   1.9       mrg 	for (pe = errmsgs; pe->e_code >= 0; pe++)
   1151   1.9       mrg 		if (pe->e_code == error)
   1152  1.22     lukem 			return (pe->e_msg);
   1153  1.22     lukem 	snprintf(ebuf, sizeof(ebuf), "error %d", error);
   1154  1.22     lukem 	return (ebuf);
   1155   1.9       mrg }
   1156   1.9       mrg 
   1157   1.1       cgd /*
   1158   1.1       cgd  * Send a nak packet (error message).
   1159   1.1       cgd  * Error code passed in is one of the
   1160   1.1       cgd  * standard TFTP codes, or a UNIX errno
   1161   1.1       cgd  * offset by 100.
   1162   1.1       cgd  */
   1163   1.9       mrg static void
   1164  1.22     lukem nak(int error)
   1165   1.1       cgd {
   1166  1.22     lukem 	const struct errmsg *pe;
   1167  1.14     lukem 	struct tftphdr *tp;
   1168  1.22     lukem 	int	length;
   1169  1.22     lukem 	size_t	msglen;
   1170   1.1       cgd 
   1171   1.1       cgd 	tp = (struct tftphdr *)buf;
   1172   1.1       cgd 	tp->th_opcode = htons((u_short)ERROR);
   1173  1.21    itojun 	msglen = sizeof(buf) - (&tp->th_msg[0] - buf);
   1174   1.1       cgd 	for (pe = errmsgs; pe->e_code >= 0; pe++)
   1175   1.1       cgd 		if (pe->e_code == error)
   1176   1.1       cgd 			break;
   1177   1.1       cgd 	if (pe->e_code < 0) {
   1178   1.1       cgd 		tp->th_code = EUNDEF;   /* set 'undef' errorcode */
   1179  1.21    itojun 		strlcpy(tp->th_msg, strerror(error - 100), msglen);
   1180  1.13   mycroft 	} else {
   1181  1.13   mycroft 		tp->th_code = htons((u_short)error);
   1182  1.21    itojun 		strlcpy(tp->th_msg, pe->e_msg, msglen);
   1183   1.1       cgd 	}
   1184  1.24  christos 	if (debug)
   1185  1.24  christos 		syslog(LOG_DEBUG, "Send NACK %s", tp->th_msg);
   1186  1.21    itojun 	length = strlen(tp->th_msg);
   1187  1.21    itojun 	msglen = &tp->th_msg[length + 1] - buf;
   1188  1.35  christos 	if (send(peer, buf, msglen, 0) != (ssize_t)msglen)
   1189  1.14     lukem 		syslog(LOG_ERR, "nak: %m");
   1190   1.9       mrg }
   1191   1.9       mrg 
   1192   1.9       mrg static char *
   1193  1.22     lukem verifyhost(struct sockaddr *fromp)
   1194   1.9       mrg {
   1195  1.18    itojun 	static char hbuf[MAXHOSTNAMELEN];
   1196   1.9       mrg 
   1197  1.20    itojun 	if (getnameinfo(fromp, fromp->sa_len, hbuf, sizeof(hbuf), NULL, 0, 0))
   1198  1.20    itojun 		strlcpy(hbuf, "?", sizeof(hbuf));
   1199  1.22     lukem 	return (hbuf);
   1200   1.1       cgd }
   1201