Home | History | Annotate | Line # | Download | only in kern
subr_tftproot.c revision 1.5.2.2
      1  1.5.2.2    yamt /*	$NetBSD: subr_tftproot.c,v 1.5.2.2 2009/09/16 13:38:01 yamt Exp $ */
      2      1.1    manu 
      3      1.1    manu /*-
      4      1.1    manu  * Copyright (c) 2007 Emmanuel Dreyfus, all rights reserved.
      5      1.1    manu  *
      6      1.1    manu  * Redistribution and use in source and binary forms, with or without
      7      1.1    manu  * modification, are permitted provided that the following conditions
      8      1.1    manu  * are met:
      9      1.1    manu  * 1. Redistributions of source code must retain the above copyright
     10      1.1    manu  *    notice, this list of conditions and the following disclaimer.
     11      1.1    manu  * 2. Redistributions in binary form must reproduce the above copyright
     12      1.1    manu  *    notice, this list of conditions and the following disclaimer in the
     13      1.1    manu  *    documentation and/or other materials provided with the distribution.
     14      1.1    manu  * 3. All advertising materials mentioning features or use of this software
     15      1.1    manu  *    must display the following acknowledgement:
     16      1.1    manu  *	This product includes software developed by Emmanuel Dreyfus
     17      1.1    manu  * 4. The name of the author may not be used to endorse or promote
     18      1.1    manu  *    products derived from this software without specific prior written
     19      1.1    manu  *    permission.
     20      1.1    manu  *
     21      1.1    manu  * THIS SOFTWARE IS PROVIDED BY THE THE AUTHOR AND CONTRIBUTORS ``AS IS''
     22      1.1    manu  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
     23      1.1    manu  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     24      1.1    manu  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
     25      1.1    manu  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     26      1.1    manu  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     27      1.1    manu  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     28      1.1    manu  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     29      1.1    manu  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     30      1.1    manu  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     31      1.1    manu  * POSSIBILITY OF SUCH DAMAGE.
     32      1.1    manu  */
     33      1.1    manu 
     34      1.1    manu /*
     35      1.1    manu  * Download the root RAMdisk through TFTP at root mount time
     36      1.1    manu  */
     37      1.1    manu 
     38      1.1    manu #include "opt_tftproot.h"
     39      1.1    manu #include "opt_md.h"
     40      1.1    manu 
     41      1.1    manu #include <sys/cdefs.h>
     42  1.5.2.2    yamt __KERNEL_RCSID(0, "$NetBSD: subr_tftproot.c,v 1.5.2.2 2009/09/16 13:38:01 yamt Exp $");
     43      1.1    manu 
     44      1.1    manu #include <sys/param.h>
     45      1.1    manu #include <sys/types.h>
     46      1.1    manu #include <sys/mount.h>
     47      1.1    manu #include <sys/lwp.h>
     48      1.2    yamt #include <sys/kmem.h>
     49      1.1    manu #include <sys/mbuf.h>
     50      1.1    manu #include <sys/timevar.h>
     51      1.1    manu #include <sys/socketvar.h>
     52      1.1    manu 
     53      1.1    manu #include <net/if.h>
     54      1.1    manu 
     55      1.1    manu #include <dev/md.h>
     56      1.1    manu 
     57      1.1    manu #include <netinet/in.h>
     58      1.1    manu 
     59      1.1    manu #include <nfs/rpcv2.h>
     60      1.1    manu 
     61      1.1    manu #include <nfs/nfsproto.h>
     62      1.1    manu #include <nfs/nfs.h>
     63      1.1    manu #include <nfs/nfsmount.h>
     64      1.1    manu #include <nfs/nfsdiskless.h>
     65      1.1    manu #include <nfs/nfs_var.h>
     66      1.1    manu 
     67      1.1    manu extern void       mdattach(int);
     68      1.1    manu 
     69      1.1    manu /*
     70      1.1    manu  * Copied from <lib/libsa/tftp.h>
     71      1.1    manu  */
     72      1.1    manu 
     73      1.1    manu #define SEGSIZE         512             /* data segment size */
     74      1.1    manu 
     75      1.1    manu /*
     76      1.1    manu  * Packet types.
     77      1.1    manu  */
     78      1.1    manu #define RRQ     01                      /* read request */
     79      1.1    manu #define WRQ     02                      /* write request */
     80      1.1    manu #define DATA    03                      /* data packet */
     81      1.1    manu #define ACK     04                      /* acknowledgement */
     82      1.1    manu #define ERROR   05                      /* error code */
     83      1.1    manu 
     84      1.1    manu struct  tftphdr {
     85      1.1    manu         short   th_opcode;              /* packet type */
     86      1.1    manu         union {
     87      1.1    manu                 unsigned short tu_block; /* block # */
     88      1.1    manu                 short   tu_code;        /* error code */
     89      1.1    manu                 char    tu_stuff[1];    /* request packet stuff */
     90      1.1    manu         } th_u;
     91      1.1    manu         char    th_data[1];             /* data or error string */
     92      1.1    manu } __packed;
     93      1.1    manu 
     94      1.1    manu #define th_block        th_u.tu_block
     95      1.1    manu #define th_code         th_u.tu_code
     96      1.1    manu #define th_stuff        th_u.tu_stuff
     97      1.1    manu #define th_msg          th_data
     98      1.1    manu 
     99      1.1    manu #define IPPORT_TFTP 69
    100      1.1    manu 
    101      1.1    manu #ifdef TFTPROOT_DEBUG
    102      1.1    manu #define DPRINTF(x) printf x
    103      1.1    manu #else
    104      1.1    manu #define DPRINTF(x)
    105      1.1    manu #endif
    106      1.1    manu 
    107      1.1    manu struct tftproot_handle {
    108      1.1    manu 	struct nfs_diskless *trh_nd;
    109      1.1    manu 	void *trh_base;
    110      1.1    manu 	size_t trh_len;
    111      1.1    manu 	unsigned short trh_block;
    112      1.1    manu 	int trh_flags;
    113      1.1    manu };
    114      1.1    manu 
    115      1.1    manu #define TRH_FINISHED	1
    116      1.1    manu 
    117      1.1    manu int tftproot_dhcpboot(struct device *);
    118      1.1    manu 
    119      1.1    manu static int tftproot_getfile(struct tftproot_handle *, struct lwp *);
    120  1.5.2.1    yamt static int tftproot_recv(struct mbuf*, void*);
    121      1.1    manu 
    122      1.1    manu int
    123  1.5.2.1    yamt tftproot_dhcpboot(struct device *bootdv)
    124      1.1    manu {
    125      1.1    manu 	struct nfs_diskless *nd = NULL;
    126      1.1    manu 	struct ifnet *ifp = NULL;
    127      1.1    manu 	struct lwp *l;
    128      1.1    manu 	struct tftproot_handle trh;
    129      1.1    manu 	struct device *dv;
    130      1.1    manu 	int error = -1;
    131      1.1    manu 
    132      1.1    manu 	if (rootspec != NULL) {
    133      1.1    manu 		IFNET_FOREACH(ifp)
    134      1.1    manu 			if (strcmp(rootspec, ifp->if_xname) == 0)
    135      1.1    manu 				break;
    136  1.5.2.2    yamt 	}
    137  1.5.2.2    yamt 
    138  1.5.2.2    yamt 	if ((ifp == NULL) &&
    139  1.5.2.2    yamt 	    (bootdv != NULL && device_class(bootdv) == DV_IFNET)) {
    140      1.1    manu 		IFNET_FOREACH(ifp)
    141      1.4  cegger 			if (strcmp(device_xname(bootdv), ifp->if_xname) == 0)
    142      1.1    manu 				break;
    143      1.1    manu 	}
    144      1.1    manu 
    145      1.1    manu 	if (ifp == NULL) {
    146      1.1    manu 		DPRINTF(("%s():%d ifp is NULL\n", __func__, __LINE__));
    147      1.1    manu 		goto out;
    148      1.1    manu 	}
    149      1.1    manu 
    150      1.3   joerg 	dv = device_find_by_xname(ifp->if_xname);
    151      1.1    manu 
    152      1.1    manu 	if ((dv == NULL) || (device_class(dv) != DV_IFNET)) {
    153      1.1    manu 		DPRINTF(("%s():%d cannot find device for interface %s\n",
    154      1.1    manu 		    __func__, __LINE__, ifp->if_xname));
    155      1.1    manu 		goto out;
    156      1.1    manu 	}
    157      1.1    manu 
    158      1.1    manu 	root_device = dv;
    159      1.1    manu 
    160      1.1    manu 	l = curlwp; /* XXX */
    161      1.1    manu 
    162      1.2    yamt 	nd = kmem_zalloc(sizeof(*nd), KM_SLEEP);
    163      1.1    manu 	nd->nd_ifp = ifp;
    164      1.1    manu 	nd->nd_nomount = 1;
    165      1.1    manu 
    166      1.1    manu 	if ((error = nfs_boot_init(nd, l)) != 0) {
    167      1.1    manu 		DPRINTF(("%s():%d nfs_boot_init returned %d\n",
    168      1.1    manu 		    __func__, __LINE__, error));
    169      1.1    manu 		goto out;
    170      1.1    manu 	}
    171      1.1    manu 
    172      1.1    manu 	/*
    173      1.1    manu 	 * Strip leading "tftp:"
    174      1.1    manu 	 */
    175      1.1    manu #define PREFIX "tftp:"
    176      1.1    manu 	if (strstr(nd->nd_bootfile, PREFIX) == nd->nd_bootfile)
    177      1.1    manu 		(void)memmove(nd->nd_bootfile,
    178      1.1    manu 			      nd->nd_bootfile + (sizeof(PREFIX) - 1),
    179      1.1    manu 			      sizeof(nd->nd_bootfile) - sizeof(PREFIX));
    180      1.1    manu #undef PREFIX
    181      1.1    manu 
    182      1.1    manu 	printf("tftproot: bootfile=%s\n", nd->nd_bootfile);
    183      1.1    manu 
    184  1.5.2.1    yamt 	memset(&trh, 0, sizeof(trh));
    185      1.1    manu 	trh.trh_nd = nd;
    186      1.1    manu 	trh.trh_block = 1;
    187      1.1    manu 
    188      1.1    manu 	if ((error = tftproot_getfile(&trh, l)) != 0) {
    189      1.1    manu 		DPRINTF(("%s():%d tftproot_getfile returned %d\n",
    190      1.1    manu 		    __func__, __LINE__, error));
    191      1.1    manu 		goto out;
    192      1.1    manu 	}
    193      1.1    manu 
    194      1.1    manu 	error = 0;
    195      1.1    manu 
    196      1.1    manu out:
    197      1.1    manu 	if (nd)
    198      1.2    yamt 		kmem_free(nd, sizeof(*nd));
    199      1.1    manu 
    200      1.1    manu 	return error;
    201      1.1    manu }
    202      1.1    manu 
    203      1.1    manu static int
    204  1.5.2.1    yamt tftproot_getfile(struct tftproot_handle *trh, struct lwp *l)
    205      1.1    manu {
    206      1.1    manu 	struct socket *so = NULL;
    207      1.1    manu 	struct mbuf *m_serv = NULL;
    208      1.1    manu 	struct mbuf *m_outbuf = NULL;
    209      1.1    manu 	struct sockaddr_in *sin;
    210      1.1    manu 	struct tftphdr *tftp;
    211      1.1    manu 	size_t packetlen, namelen;
    212      1.1    manu 	int error = -1;
    213      1.1    manu 	const char octetstr[] = "octet";
    214      1.1    manu 	size_t hdrlen = sizeof(*tftp) - sizeof(tftp->th_data);
    215      1.1    manu 	char *cp;
    216      1.1    manu 	/* struct device *dv; */
    217      1.1    manu 
    218      1.5      ad 	if ((error = socreate(AF_INET, &so, SOCK_DGRAM, 0, l, NULL)) != 0) {
    219      1.1    manu 		DPRINTF(("%s():%d socreate returned %d\n",
    220      1.1    manu 		    __func__, __LINE__, error));
    221      1.1    manu 		goto out;
    222      1.1    manu 	}
    223      1.1    manu 
    224      1.1    manu 	/*
    225      1.1    manu 	 * Set timeout
    226      1.1    manu 	 */
    227      1.1    manu 	if ((error = nfs_boot_setrecvtimo(so))) {
    228      1.1    manu 		DPRINTF(("%s():%d SO_RCVTIMEO failed %d\n",
    229      1.1    manu 		    __func__, __LINE__, error));
    230      1.1    manu 		goto out;
    231      1.1    manu 	}
    232      1.1    manu 
    233      1.1    manu 	/*
    234      1.1    manu 	 * Set server address and port
    235      1.1    manu 	 */
    236      1.1    manu 	m_serv = m_get(M_WAIT, MT_SONAME);
    237      1.1    manu 	m_serv->m_len = sizeof(*sin);
    238      1.1    manu 	sin = mtod(m_serv, struct sockaddr_in *);
    239      1.1    manu 	memcpy(sin, &trh->trh_nd->nd_root.ndm_saddr, sizeof(*sin));
    240      1.1    manu 	sin->sin_port = htons(IPPORT_TFTP);
    241      1.1    manu 
    242      1.1    manu 	/*
    243      1.1    manu 	 * Set send buffer, prepare the TFTP packet
    244      1.1    manu 	 */
    245      1.1    manu 	namelen = strlen(trh->trh_nd->nd_bootfile) + 1;
    246      1.1    manu 	packetlen = sizeof(tftp->th_opcode) + namelen + sizeof(octetstr);
    247      1.1    manu 	if (packetlen > MSIZE) {
    248      1.1    manu 		DPRINTF(("%s():%d boot filename too long (%ld bytes)\n",
    249      1.1    manu 		    __func__, __LINE__, (long)namelen));
    250      1.1    manu 		goto out;
    251      1.1    manu 	}
    252      1.1    manu 
    253      1.1    manu 	m_outbuf = m_gethdr(M_WAIT, MT_DATA);
    254      1.1    manu 	m_clget(m_outbuf, M_WAIT);
    255      1.1    manu 	m_outbuf->m_len = packetlen;
    256      1.1    manu 	m_outbuf->m_pkthdr.len = packetlen;
    257      1.1    manu 	m_outbuf->m_pkthdr.rcvif = NULL;
    258      1.1    manu 
    259      1.1    manu 	tftp = mtod(m_outbuf, struct tftphdr *);
    260      1.1    manu 	memset(tftp, 0, packetlen);
    261      1.1    manu 
    262      1.1    manu 	tftp->th_opcode = htons((short)RRQ);
    263      1.1    manu 	cp = tftp->th_stuff;
    264      1.1    manu 	(void)strncpy(cp,  trh->trh_nd->nd_bootfile, namelen);
    265      1.1    manu 	cp += namelen;
    266      1.1    manu 	(void)strncpy(cp, octetstr, sizeof(octetstr));
    267      1.1    manu 
    268      1.1    manu 	/*
    269      1.1    manu 	 * Perform the file transfer
    270      1.1    manu 	 */
    271      1.1    manu 	sin = (struct sockaddr_in *)&trh->trh_nd->nd_root.ndm_saddr;
    272      1.1    manu 	printf("tftproot: download %s:%s ",
    273      1.1    manu 	    inet_ntoa(sin->sin_addr), trh->trh_nd->nd_bootfile);
    274      1.1    manu 
    275      1.1    manu 	do {
    276      1.1    manu 		/*
    277      1.1    manu 		 * Show progress for every 200 blocks (100kB)
    278      1.1    manu 		 */
    279      1.1    manu #ifndef TFTPROOT_PROGRESS
    280      1.1    manu #define TFTPROOT_PROGRESS 200
    281      1.1    manu #endif
    282      1.1    manu 		if ((trh->trh_block % TFTPROOT_PROGRESS) == 0)
    283      1.1    manu 			twiddle();
    284      1.1    manu 
    285      1.1    manu 		/*
    286      1.1    manu 		 * Send the packet and receive the answer.
    287      1.1    manu 		 * We get the sender address here, which should be
    288      1.1    manu 		 * the same server with a different port
    289      1.1    manu 		 */
    290      1.1    manu 		if ((error = nfs_boot_sendrecv(so, m_serv, NULL, m_outbuf,
    291      1.1    manu 		    tftproot_recv, NULL, &m_serv, trh, l)) != 0) {
    292      1.1    manu 			DPRINTF(("%s():%d sendrecv failed %d\n",
    293      1.1    manu 			    __func__, __LINE__, error));
    294      1.1    manu 			goto out;
    295      1.1    manu 		}
    296      1.1    manu 
    297      1.1    manu 		/*
    298      1.1    manu 		 * Accomodate the packet length for acks.
    299      1.1    manu 		 * This is really needed only on first pass
    300      1.1    manu 		 */
    301      1.1    manu 		m_outbuf->m_len = hdrlen;
    302      1.1    manu 		m_outbuf->m_pkthdr.len = hdrlen;
    303      1.1    manu 		tftp->th_opcode = htons((short)ACK);
    304      1.1    manu 		tftp->th_block = htons(trh->trh_block);
    305      1.1    manu 
    306      1.1    manu 
    307      1.1    manu 		/*
    308      1.1    manu 		 * Check for termination
    309      1.1    manu 		 */
    310      1.1    manu 		if (trh->trh_flags & TRH_FINISHED)
    311      1.1    manu 			break;
    312      1.1    manu 
    313      1.1    manu 		trh->trh_block++;
    314      1.1    manu 	} while (1/* CONSTCOND */);
    315      1.1    manu 
    316      1.1    manu 	printf("\n");
    317      1.1    manu 
    318      1.1    manu 	/*
    319      1.1    manu 	 * Ack the last block. so_send frees m_outbuf, therefore
    320      1.1    manu 	 * we do not want to free it ourselves.
    321      1.1    manu 	 * Ignore errors, as we already have the whole file.
    322      1.1    manu 	 */
    323      1.1    manu 	if ((error = (*so->so_send)(so, m_serv, NULL,
    324      1.1    manu 	    m_outbuf, NULL, 0, l)) != 0)
    325      1.1    manu 		DPRINTF(("%s():%d tftproot: sosend returned %d\n",
    326      1.1    manu 		    __func__, __LINE__, error));
    327      1.1    manu 	else
    328      1.1    manu 		m_outbuf = NULL;
    329      1.1    manu 
    330      1.1    manu 	/*
    331      1.1    manu 	 * And use it as the root ramdisk.
    332      1.1    manu 	 */
    333      1.1    manu 	DPRINTF(("%s():%d RAMdisk loaded: %ld@%p\n",
    334      1.1    manu 	    __func__, __LINE__, trh->trh_len, trh->trh_base));
    335      1.1    manu 	md_root_setconf(trh->trh_base, trh->trh_len);
    336      1.1    manu 	mdattach(0);
    337      1.1    manu 
    338      1.1    manu 	error = 0;
    339      1.1    manu out:
    340      1.1    manu 	if (m_serv)
    341      1.1    manu 		m_freem(m_serv);
    342      1.1    manu 
    343      1.1    manu 	if (m_outbuf)
    344      1.1    manu 		m_freem(m_outbuf);
    345      1.1    manu 
    346      1.1    manu 	if (so)
    347      1.1    manu 		soclose(so);
    348      1.1    manu 
    349      1.1    manu 	return error;
    350      1.1    manu }
    351      1.1    manu 
    352      1.1    manu static int
    353  1.5.2.1    yamt tftproot_recv(struct mbuf *m, void *ctx)
    354      1.1    manu {
    355      1.1    manu 	struct tftproot_handle *trh = ctx;
    356      1.1    manu 	struct tftphdr *tftp;
    357      1.1    manu 	size_t newlen;
    358      1.1    manu 	size_t hdrlen = sizeof(*tftp) - sizeof(tftp->th_data);
    359      1.1    manu 
    360      1.1    manu 	/*
    361      1.1    manu 	 * Check for short packet
    362      1.1    manu 	 */
    363      1.1    manu 	if (m->m_pkthdr.len < hdrlen) {
    364      1.1    manu 		DPRINTF(("%s():%d short reply (%d bytes)\n",
    365      1.1    manu 		    __func__, __LINE__, m->m_pkthdr.len));
    366      1.1    manu 		return -1;
    367      1.1    manu 	}
    368      1.1    manu 
    369      1.1    manu 	/*
    370      1.1    manu 	 * Check for packet too large for being a TFTP packet
    371      1.1    manu 	 */
    372      1.1    manu 	if (m->m_pkthdr.len > hdrlen + SEGSIZE) {
    373      1.1    manu 		DPRINTF(("%s():%d packet too big (%d bytes)\n",
    374      1.1    manu 		    __func__, __LINE__, m->m_pkthdr.len));
    375      1.1    manu 		return -1;
    376      1.1    manu 	}
    377      1.1    manu 
    378      1.1    manu 
    379      1.1    manu 	/*
    380      1.1    manu 	 * Examine the TFTP header
    381      1.1    manu 	 */
    382      1.1    manu 	if (m->m_len > sizeof(*tftp)) {
    383      1.1    manu 		if ((m = m_pullup(m, sizeof(*tftp))) == NULL) {
    384      1.1    manu 			DPRINTF(("%s():%d m_pullup failed\n",
    385      1.1    manu 			    __func__, __LINE__));
    386      1.1    manu 			return -1;
    387      1.1    manu 		}
    388      1.1    manu 	}
    389      1.1    manu 	tftp = mtod(m, struct tftphdr *);
    390      1.1    manu 
    391      1.1    manu 	/*
    392      1.1    manu 	 * We handle data or error
    393      1.1    manu 	 */
    394      1.1    manu 	switch(ntohs(tftp->th_opcode)) {
    395      1.1    manu 	case DATA:
    396      1.1    manu 		break;
    397      1.1    manu 
    398      1.1    manu 	case ERROR: {
    399      1.1    manu 		char errbuf[SEGSIZE + 1];
    400      1.1    manu 		int i;
    401      1.1    manu 
    402      1.1    manu 		for (i = 0; i < SEGSIZE; i++) {
    403      1.1    manu 			if ((tftp->th_data[i] < ' ') ||
    404      1.1    manu 			    (tftp->th_data[i] > '~')) {
    405      1.1    manu 				errbuf[i] = '\0';
    406      1.1    manu 				break;
    407      1.1    manu 			}
    408      1.1    manu 			errbuf[i] = tftp->th_data[i];
    409      1.1    manu 		}
    410      1.1    manu 		errbuf[SEGSIZE] = '\0';
    411      1.1    manu 
    412      1.1    manu 		printf("tftproot: TFTP server returned error %d, %s\n",
    413      1.1    manu 		    ntohs(tftp->th_code), errbuf);
    414      1.1    manu 
    415      1.1    manu 		return -1;
    416      1.1    manu 		break;
    417      1.1    manu 	}
    418      1.1    manu 
    419      1.1    manu 	default:
    420      1.1    manu 		DPRINTF(("%s():%d unexpected tftp reply opcode %d\n",
    421      1.1    manu 		    __func__, __LINE__, ntohs(tftp->th_opcode)));
    422      1.1    manu 		return -1;
    423      1.1    manu 		break;
    424      1.1    manu 	}
    425      1.1    manu 
    426      1.1    manu 	/*
    427      1.1    manu 	 * Check for last packet, which does not fill the whole space
    428      1.1    manu 	 */
    429      1.1    manu 	if (m->m_pkthdr.len < hdrlen + SEGSIZE) {
    430      1.1    manu 		DPRINTF(("%s():%d last chunk (%d bytes)\n",
    431      1.1    manu 		    __func__, __LINE__, m->m_pkthdr.len));
    432      1.1    manu 		trh->trh_flags |= TRH_FINISHED;
    433      1.1    manu 	}
    434      1.1    manu 
    435      1.1    manu 
    436      1.1    manu 	if (ntohs(tftp->th_block) != trh->trh_block) {
    437      1.1    manu 		DPRINTF(("%s():%d expected block %d, got block %d\n",
    438      1.1    manu 		    __func__, __LINE__, trh->trh_block, ntohs(tftp->th_block)));
    439      1.1    manu 		return -1;
    440      1.1    manu 	}
    441      1.1    manu 
    442      1.1    manu 	/*
    443      1.1    manu 	 * Grow the receiving buffer to accomodate new data
    444      1.1    manu 	 */
    445      1.1    manu 	newlen = trh->trh_len + (m->m_pkthdr.len - hdrlen);
    446      1.1    manu 	if ((trh->trh_base = realloc(trh->trh_base,
    447      1.1    manu 	    newlen, M_TEMP, M_WAITOK)) == NULL) {
    448      1.1    manu 		DPRINTF(("%s():%d failed to realloc %ld bytes\n",
    449      1.1    manu 		    __func__, __LINE__, (long)newlen));
    450      1.1    manu 		return -1;
    451      1.1    manu 	}
    452      1.1    manu 
    453      1.1    manu 	/*
    454      1.1    manu 	 * Copy the data
    455      1.1    manu 	 */
    456      1.1    manu 	m_copydata(m, hdrlen, m->m_pkthdr.len - hdrlen,
    457      1.1    manu 		   (char *)trh->trh_base + trh->trh_len);
    458      1.1    manu 	trh->trh_len = newlen;
    459      1.1    manu 
    460      1.1    manu 	return 0;
    461      1.1    manu }
    462      1.1    manu 
    463