Home | History | Annotate | Line # | Download | only in libsa
tftp.c revision 1.7
      1  1.7  drochner /*	$NetBSD: tftp.c,v 1.7 1999/07/12 12:34:57 drochner Exp $	 */
      2  1.1  drochner 
      3  1.1  drochner /*
      4  1.1  drochner  * Copyright (c) 1996
      5  1.1  drochner  *	Matthias Drochner.  All rights reserved.
      6  1.1  drochner  *
      7  1.1  drochner  * Redistribution and use in source and binary forms, with or without
      8  1.1  drochner  * modification, are permitted provided that the following conditions
      9  1.1  drochner  * are met:
     10  1.1  drochner  * 1. Redistributions of source code must retain the above copyright
     11  1.1  drochner  *    notice, this list of conditions and the following disclaimer.
     12  1.1  drochner  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  drochner  *    notice, this list of conditions and the following disclaimer in the
     14  1.1  drochner  *    documentation and/or other materials provided with the distribution.
     15  1.1  drochner  * 3. All advertising materials mentioning features or use of this software
     16  1.1  drochner  *    must display the following acknowledgement:
     17  1.1  drochner  *	This product includes software developed for the NetBSD Project
     18  1.1  drochner  *	by Matthias Drochner.
     19  1.1  drochner  * 4. The name of the author may not be used to endorse or promote products
     20  1.1  drochner  *    derived from this software without specific prior written permission.
     21  1.1  drochner  *
     22  1.1  drochner  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23  1.1  drochner  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24  1.1  drochner  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25  1.1  drochner  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26  1.1  drochner  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27  1.1  drochner  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28  1.1  drochner  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29  1.1  drochner  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30  1.1  drochner  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     31  1.1  drochner  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32  1.1  drochner  *
     33  1.1  drochner  */
     34  1.1  drochner 
     35  1.1  drochner /*
     36  1.1  drochner  * Simple TFTP implementation for libsa.
     37  1.1  drochner  * Assumes:
     38  1.1  drochner  *  - socket descriptor (int) at open_file->f_devdata
     39  1.1  drochner  *  - server host IP in global servip
     40  1.1  drochner  * Restrictions:
     41  1.1  drochner  *  - read only
     42  1.1  drochner  *  - lseek only with SEEK_SET or SEEK_CUR
     43  1.1  drochner  *  - no big time differences between transfers (<tftp timeout)
     44  1.1  drochner  */
     45  1.1  drochner 
     46  1.6       cgd /*
     47  1.6       cgd  * XXX Does not currently implement:
     48  1.6       cgd  * XXX
     49  1.6       cgd  * XXX LIBSA_NO_FS_CLOSE
     50  1.6       cgd  * XXX LIBSA_NO_FS_SEEK
     51  1.6       cgd  * XXX LIBSA_NO_FS_WRITE
     52  1.6       cgd  * XXX LIBSA_NO_FS_SYMLINK (does this even make sense?)
     53  1.6       cgd  * XXX LIBSA_FS_SINGLECOMPONENT (does this even make sense?)
     54  1.6       cgd  */
     55  1.6       cgd 
     56  1.1  drochner #include <sys/types.h>
     57  1.1  drochner #include <sys/stat.h>
     58  1.1  drochner #include <netinet/in.h>
     59  1.1  drochner #include <netinet/udp.h>
     60  1.1  drochner #include <netinet/in_systm.h>
     61  1.2      ross #include <lib/libkern/libkern.h>
     62  1.1  drochner #ifdef _STANDALONE
     63  1.1  drochner #include "/usr/include/arpa/tftp.h" /* XXX */
     64  1.1  drochner #else
     65  1.1  drochner #include <arpa/tftp.h>
     66  1.1  drochner #endif
     67  1.1  drochner 
     68  1.1  drochner #include "stand.h"
     69  1.1  drochner #include "net.h"
     70  1.1  drochner #include "netif.h"
     71  1.1  drochner 
     72  1.1  drochner #include "tftp.h"
     73  1.1  drochner 
     74  1.1  drochner extern struct in_addr servip;
     75  1.1  drochner 
     76  1.1  drochner static int      tftpport = 2000;
     77  1.1  drochner 
     78  1.1  drochner #define RSPACE 520		/* max data packet, rounded up */
     79  1.1  drochner 
     80  1.1  drochner struct tftp_handle {
     81  1.1  drochner 	struct iodesc  *iodesc;
     82  1.1  drochner 	int             currblock;	/* contents of lastdata */
     83  1.1  drochner 	int             islastblock;	/* flag */
     84  1.1  drochner 	int             validsize;
     85  1.1  drochner 	int             off;
     86  1.1  drochner 	char           *path;	/* saved for re-requests */
     87  1.1  drochner 	struct {
     88  1.1  drochner 		u_char header[HEADER_SIZE];
     89  1.1  drochner 		struct tftphdr t;
     90  1.1  drochner 		u_char space[RSPACE];
     91  1.1  drochner 	} lastdata;
     92  1.1  drochner };
     93  1.1  drochner 
     94  1.1  drochner static int tftperrors[8] = {
     95  1.1  drochner 	0,			/* ??? */
     96  1.1  drochner 	ENOENT,
     97  1.1  drochner 	EPERM,
     98  1.1  drochner 	ENOSPC,
     99  1.1  drochner 	EINVAL,			/* ??? */
    100  1.1  drochner 	EINVAL,			/* ??? */
    101  1.1  drochner 	EEXIST,
    102  1.1  drochner 	EINVAL			/* ??? */
    103  1.1  drochner };
    104  1.3  christos 
    105  1.4       kim static ssize_t recvtftp __P((struct iodesc *, void *, size_t, time_t));
    106  1.3  christos static int tftp_makereq __P((struct tftp_handle *));
    107  1.3  christos static int tftp_getnextblock __P((struct tftp_handle *));
    108  1.3  christos #ifndef TFTP_NOTERMINATE
    109  1.3  christos static void tftp_terminate __P((struct tftp_handle *));
    110  1.3  christos #endif
    111  1.1  drochner 
    112  1.1  drochner static ssize_t
    113  1.1  drochner recvtftp(d, pkt, len, tleft)
    114  1.1  drochner 	register struct iodesc *d;
    115  1.1  drochner 	register void  *pkt;
    116  1.4       kim 	register size_t len;
    117  1.1  drochner 	time_t          tleft;
    118  1.1  drochner {
    119  1.7  drochner 	ssize_t n;
    120  1.1  drochner 	struct tftphdr *t;
    121  1.1  drochner 
    122  1.1  drochner 	errno = 0;
    123  1.1  drochner 
    124  1.7  drochner 	n = readudp(d, pkt, len, tleft);
    125  1.1  drochner 
    126  1.7  drochner 	if (n < 4)
    127  1.1  drochner 		return (-1);
    128  1.1  drochner 
    129  1.1  drochner 	t = (struct tftphdr *) pkt;
    130  1.1  drochner 	switch (ntohs(t->th_opcode)) {
    131  1.7  drochner 	case DATA:
    132  1.1  drochner 		if (htons(t->th_block) != d->xid) {
    133  1.1  drochner 			/*
    134  1.1  drochner 			 * Expected block?
    135  1.1  drochner 			 */
    136  1.1  drochner 			return (-1);
    137  1.1  drochner 		}
    138  1.1  drochner 		if (d->xid == 1) {
    139  1.1  drochner 			/*
    140  1.1  drochner 			 * First data packet from new port.
    141  1.1  drochner 			 */
    142  1.1  drochner 			register struct udphdr *uh;
    143  1.1  drochner 			uh = (struct udphdr *) pkt - 1;
    144  1.1  drochner 			d->destport = uh->uh_sport;
    145  1.1  drochner 		} /* else check uh_sport has not changed??? */
    146  1.7  drochner 		return (n - (t->th_data - (char *)t));
    147  1.1  drochner 	case ERROR:
    148  1.1  drochner 		if ((unsigned) ntohs(t->th_code) >= 8) {
    149  1.1  drochner 			printf("illegal tftp error %d\n", ntohs(t->th_code));
    150  1.1  drochner 			errno = EIO;
    151  1.1  drochner 		} else {
    152  1.1  drochner #ifdef DEBUG
    153  1.1  drochner 			printf("tftp-error %d\n", ntohs(t->th_code));
    154  1.1  drochner #endif
    155  1.1  drochner 			errno = tftperrors[ntohs(t->th_code)];
    156  1.1  drochner 		}
    157  1.1  drochner 		return (-1);
    158  1.1  drochner 	default:
    159  1.1  drochner #ifdef DEBUG
    160  1.1  drochner 		printf("tftp type %d not handled\n", ntohs(t->th_opcode));
    161  1.1  drochner #endif
    162  1.1  drochner 		return (-1);
    163  1.1  drochner 	}
    164  1.1  drochner }
    165  1.1  drochner 
    166  1.1  drochner /* send request, expect first block (or error) */
    167  1.1  drochner static int
    168  1.1  drochner tftp_makereq(h)
    169  1.1  drochner 	struct tftp_handle *h;
    170  1.1  drochner {
    171  1.1  drochner 	struct {
    172  1.1  drochner 		u_char header[HEADER_SIZE];
    173  1.1  drochner 		struct tftphdr  t;
    174  1.1  drochner 		u_char space[FNAME_SIZE + 6];
    175  1.1  drochner 	} wbuf;
    176  1.1  drochner 	char           *wtail;
    177  1.1  drochner 	int             l;
    178  1.1  drochner 	ssize_t         res;
    179  1.1  drochner 	struct tftphdr *t;
    180  1.1  drochner 
    181  1.1  drochner 	wbuf.t.th_opcode = htons((u_short) RRQ);
    182  1.1  drochner 	wtail = wbuf.t.th_stuff;
    183  1.1  drochner 	l = strlen(h->path);
    184  1.1  drochner 	bcopy(h->path, wtail, l + 1);
    185  1.1  drochner 	wtail += l + 1;
    186  1.1  drochner 	bcopy("octet", wtail, 6);
    187  1.1  drochner 	wtail += 6;
    188  1.1  drochner 
    189  1.1  drochner 	t = &h->lastdata.t;
    190  1.1  drochner 
    191  1.1  drochner 	/* h->iodesc->myport = htons(--tftpport); */
    192  1.1  drochner 	h->iodesc->myport = htons(tftpport + (getsecs() & 0x3ff));
    193  1.1  drochner 	h->iodesc->destport = htons(IPPORT_TFTP);
    194  1.1  drochner 	h->iodesc->xid = 1;	/* expected block */
    195  1.1  drochner 
    196  1.1  drochner 	res = sendrecv(h->iodesc, sendudp, &wbuf.t, wtail - (char *) &wbuf.t,
    197  1.1  drochner 		       recvtftp, t, sizeof(*t) + RSPACE);
    198  1.1  drochner 
    199  1.1  drochner 	if (res == -1)
    200  1.1  drochner 		return (errno);
    201  1.1  drochner 
    202  1.1  drochner 	h->currblock = 1;
    203  1.1  drochner 	h->validsize = res;
    204  1.1  drochner 	h->islastblock = 0;
    205  1.1  drochner 	if (res < SEGSIZE)
    206  1.1  drochner 		h->islastblock = 1;	/* very short file */
    207  1.1  drochner 	return (0);
    208  1.1  drochner }
    209  1.1  drochner 
    210  1.1  drochner /* ack block, expect next */
    211  1.1  drochner static int
    212  1.1  drochner tftp_getnextblock(h)
    213  1.1  drochner 	struct tftp_handle *h;
    214  1.1  drochner {
    215  1.1  drochner 	struct {
    216  1.1  drochner 		u_char header[HEADER_SIZE];
    217  1.1  drochner 		struct tftphdr t;
    218  1.1  drochner 	} wbuf;
    219  1.1  drochner 	char           *wtail;
    220  1.1  drochner 	int             res;
    221  1.1  drochner 	struct tftphdr *t;
    222  1.1  drochner 
    223  1.1  drochner 	wbuf.t.th_opcode = htons((u_short) ACK);
    224  1.1  drochner 	wbuf.t.th_block = htons((u_short) h->currblock);
    225  1.1  drochner 	wtail = (char *) &wbuf.t.th_data;
    226  1.1  drochner 
    227  1.1  drochner 	t = &h->lastdata.t;
    228  1.1  drochner 
    229  1.1  drochner 	h->iodesc->xid = h->currblock + 1;	/* expected block */
    230  1.1  drochner 
    231  1.1  drochner 	res = sendrecv(h->iodesc, sendudp, &wbuf.t, wtail - (char *) &wbuf.t,
    232  1.1  drochner 		       recvtftp, t, sizeof(*t) + RSPACE);
    233  1.1  drochner 
    234  1.1  drochner 	if (res == -1)		/* 0 is OK! */
    235  1.1  drochner 		return (errno);
    236  1.1  drochner 
    237  1.1  drochner 	h->currblock++;
    238  1.1  drochner 	h->validsize = res;
    239  1.1  drochner 	if (res < SEGSIZE)
    240  1.1  drochner 		h->islastblock = 1;	/* EOF */
    241  1.1  drochner 	return (0);
    242  1.1  drochner }
    243  1.1  drochner 
    244  1.1  drochner #ifndef TFTP_NOTERMINATE
    245  1.1  drochner static void
    246  1.1  drochner tftp_terminate(h)
    247  1.1  drochner 	struct tftp_handle *h;
    248  1.1  drochner {
    249  1.1  drochner 	struct {
    250  1.1  drochner 		u_char header[HEADER_SIZE];
    251  1.1  drochner 		struct tftphdr t;
    252  1.1  drochner 	} wbuf;
    253  1.1  drochner 	char           *wtail;
    254  1.1  drochner 
    255  1.1  drochner 	if (h->islastblock) {
    256  1.1  drochner 		wbuf.t.th_opcode = htons((u_short) ACK);
    257  1.1  drochner 		wbuf.t.th_block = htons((u_short) h->currblock);
    258  1.1  drochner 	} else {
    259  1.1  drochner 		wbuf.t.th_opcode = htons((u_short) ERROR);
    260  1.1  drochner 		wbuf.t.th_code = htons((u_short) ENOSPACE); /* ??? */
    261  1.1  drochner 	}
    262  1.1  drochner 	wtail = (char *) &wbuf.t.th_data;
    263  1.1  drochner 
    264  1.1  drochner 	(void) sendudp(h->iodesc, &wbuf.t, wtail - (char *) &wbuf.t);
    265  1.1  drochner }
    266  1.1  drochner #endif
    267  1.1  drochner 
    268  1.1  drochner int
    269  1.1  drochner tftp_open(path, f)
    270  1.1  drochner 	char           *path;
    271  1.1  drochner 	struct open_file *f;
    272  1.1  drochner {
    273  1.1  drochner 	struct tftp_handle *tftpfile;
    274  1.1  drochner 	struct iodesc  *io;
    275  1.1  drochner 	int             res;
    276  1.1  drochner 
    277  1.1  drochner 	tftpfile = (struct tftp_handle *) alloc(sizeof(*tftpfile));
    278  1.1  drochner 	if (!tftpfile)
    279  1.1  drochner 		return (ENOMEM);
    280  1.1  drochner 
    281  1.1  drochner 	tftpfile->iodesc = io = socktodesc(*(int *) (f->f_devdata));
    282  1.1  drochner 	io->destip = servip;
    283  1.1  drochner 	tftpfile->off = 0;
    284  1.1  drochner 	tftpfile->path = path;	/* XXXXXXX we hope it's static */
    285  1.1  drochner 
    286  1.4       kim 	res = tftp_makereq(tftpfile);
    287  1.1  drochner 
    288  1.1  drochner 	if (res) {
    289  1.1  drochner 		free(tftpfile, sizeof(*tftpfile));
    290  1.1  drochner 		return (res);
    291  1.1  drochner 	}
    292  1.1  drochner 	f->f_fsdata = (void *) tftpfile;
    293  1.1  drochner 	return (0);
    294  1.1  drochner }
    295  1.1  drochner 
    296  1.1  drochner int
    297  1.1  drochner tftp_read(f, addr, size, resid)
    298  1.1  drochner 	struct open_file *f;
    299  1.1  drochner 	void           *addr;
    300  1.1  drochner 	size_t          size;
    301  1.1  drochner 	size_t         *resid;	/* out */
    302  1.1  drochner {
    303  1.1  drochner 	struct tftp_handle *tftpfile;
    304  1.6       cgd #if !defined(LIBSA_NO_TWIDDLE)
    305  1.1  drochner 	static int      tc = 0;
    306  1.6       cgd #endif
    307  1.1  drochner 	tftpfile = (struct tftp_handle *) f->f_fsdata;
    308  1.1  drochner 
    309  1.1  drochner 	while (size > 0) {
    310  1.1  drochner 		int needblock, count;
    311  1.1  drochner 
    312  1.6       cgd #if !defined(LIBSA_NO_TWIDDLE)
    313  1.1  drochner 		if (!(tc++ % 16))
    314  1.1  drochner 			twiddle();
    315  1.6       cgd #endif
    316  1.1  drochner 
    317  1.1  drochner 		needblock = tftpfile->off / SEGSIZE + 1;
    318  1.1  drochner 
    319  1.1  drochner 		if (tftpfile->currblock > needblock) {	/* seek backwards */
    320  1.1  drochner #ifndef TFTP_NOTERMINATE
    321  1.1  drochner 			tftp_terminate(tftpfile);
    322  1.1  drochner #endif
    323  1.1  drochner 			tftp_makereq(tftpfile);	/* no error check, it worked
    324  1.1  drochner 						 * for open */
    325  1.1  drochner 		}
    326  1.1  drochner 
    327  1.1  drochner 		while (tftpfile->currblock < needblock) {
    328  1.1  drochner 			int res;
    329  1.1  drochner 
    330  1.1  drochner 			res = tftp_getnextblock(tftpfile);
    331  1.1  drochner 			if (res) {	/* no answer */
    332  1.1  drochner #ifdef DEBUG
    333  1.1  drochner 				printf("tftp: read error (block %d->%d)\n",
    334  1.1  drochner 				       tftpfile->currblock, needblock);
    335  1.1  drochner #endif
    336  1.1  drochner 				return (res);
    337  1.1  drochner 			}
    338  1.1  drochner 			if (tftpfile->islastblock)
    339  1.1  drochner 				break;
    340  1.1  drochner 		}
    341  1.1  drochner 
    342  1.1  drochner 		if (tftpfile->currblock == needblock) {
    343  1.1  drochner 			int offinblock, inbuffer;
    344  1.1  drochner 
    345  1.1  drochner 			offinblock = tftpfile->off % SEGSIZE;
    346  1.1  drochner 
    347  1.1  drochner 			inbuffer = tftpfile->validsize - offinblock;
    348  1.1  drochner 			if (inbuffer < 0) {
    349  1.1  drochner #ifdef DEBUG
    350  1.1  drochner 				printf("tftp: invalid offset %d\n",
    351  1.1  drochner 				    tftpfile->off);
    352  1.1  drochner #endif
    353  1.1  drochner 				return (EINVAL);
    354  1.1  drochner 			}
    355  1.1  drochner 			count = (size < inbuffer ? size : inbuffer);
    356  1.1  drochner 			bcopy(tftpfile->lastdata.t.th_data + offinblock,
    357  1.1  drochner 			    addr, count);
    358  1.1  drochner 
    359  1.5       dbj 			addr = (caddr_t)addr + count;
    360  1.1  drochner 			tftpfile->off += count;
    361  1.1  drochner 			size -= count;
    362  1.1  drochner 
    363  1.1  drochner 			if ((tftpfile->islastblock) && (count == inbuffer))
    364  1.1  drochner 				break;	/* EOF */
    365  1.1  drochner 		} else {
    366  1.1  drochner #ifdef DEBUG
    367  1.1  drochner 			printf("tftp: block %d not found\n", needblock);
    368  1.1  drochner #endif
    369  1.1  drochner 			return (EINVAL);
    370  1.1  drochner 		}
    371  1.1  drochner 
    372  1.1  drochner 	}
    373  1.1  drochner 
    374  1.1  drochner 	if (resid)
    375  1.1  drochner 		*resid = size;
    376  1.1  drochner 	return (0);
    377  1.1  drochner }
    378  1.1  drochner 
    379  1.1  drochner int
    380  1.1  drochner tftp_close(f)
    381  1.1  drochner 	struct open_file *f;
    382  1.1  drochner {
    383  1.1  drochner 	struct tftp_handle *tftpfile;
    384  1.1  drochner 	tftpfile = (struct tftp_handle *) f->f_fsdata;
    385  1.1  drochner 
    386  1.1  drochner #ifdef TFTP_NOTERMINATE
    387  1.1  drochner 	/* let it time out ... */
    388  1.1  drochner #else
    389  1.1  drochner 	tftp_terminate(tftpfile);
    390  1.1  drochner #endif
    391  1.1  drochner 
    392  1.1  drochner 	free(tftpfile, sizeof(*tftpfile));
    393  1.1  drochner 	return (0);
    394  1.1  drochner }
    395  1.1  drochner 
    396  1.1  drochner int
    397  1.1  drochner tftp_write(f, start, size, resid)
    398  1.1  drochner 	struct open_file *f;
    399  1.1  drochner 	void           *start;
    400  1.1  drochner 	size_t          size;
    401  1.1  drochner 	size_t         *resid;	/* out */
    402  1.1  drochner {
    403  1.1  drochner 	return (EROFS);
    404  1.1  drochner }
    405  1.1  drochner 
    406  1.1  drochner int
    407  1.1  drochner tftp_stat(f, sb)
    408  1.1  drochner 	struct open_file *f;
    409  1.1  drochner 	struct stat    *sb;
    410  1.1  drochner {
    411  1.1  drochner 	struct tftp_handle *tftpfile;
    412  1.1  drochner 	tftpfile = (struct tftp_handle *) f->f_fsdata;
    413  1.1  drochner 
    414  1.1  drochner 	sb->st_mode = 0444;
    415  1.1  drochner 	sb->st_nlink = 1;
    416  1.1  drochner 	sb->st_uid = 0;
    417  1.1  drochner 	sb->st_gid = 0;
    418  1.1  drochner 	sb->st_size = -1;
    419  1.1  drochner 	return (0);
    420  1.1  drochner }
    421  1.1  drochner 
    422  1.1  drochner off_t
    423  1.1  drochner tftp_seek(f, offset, where)
    424  1.1  drochner 	struct open_file *f;
    425  1.1  drochner 	off_t           offset;
    426  1.1  drochner 	int             where;
    427  1.1  drochner {
    428  1.1  drochner 	struct tftp_handle *tftpfile;
    429  1.1  drochner 	tftpfile = (struct tftp_handle *) f->f_fsdata;
    430  1.1  drochner 
    431  1.1  drochner 	switch (where) {
    432  1.1  drochner 	case SEEK_SET:
    433  1.1  drochner 		tftpfile->off = offset;
    434  1.1  drochner 		break;
    435  1.1  drochner 	case SEEK_CUR:
    436  1.1  drochner 		tftpfile->off += offset;
    437  1.1  drochner 		break;
    438  1.1  drochner 	default:
    439  1.1  drochner 		errno = EOFFSET;
    440  1.1  drochner 		return (-1);
    441  1.1  drochner 	}
    442  1.1  drochner 	return (tftpfile->off);
    443  1.1  drochner }
    444