Home | History | Annotate | Line # | Download | only in netipsec
ipsec_mbuf.c revision 1.2
      1  1.1  jonathan /*	$NetBSD: ipsec_mbuf.c,v 1.2 2003/08/13 20:13:59 jonathan Exp $	*/
      2  1.1  jonathan /*	$FreeBSD: src/sys/netipsec/ipsec_mbuf.c,v 1.5.2.1 2003/01/24 05:11:35 sam Exp $	*/
      3  1.1  jonathan 
      4  1.1  jonathan #include <sys/cdefs.h>
      5  1.1  jonathan __KERNEL_RCSID(0, "$NetBSD: ipsec_mbuf.c,v 1.2 2003/08/13 20:13:59 jonathan Exp $");
      6  1.1  jonathan 
      7  1.1  jonathan /*
      8  1.1  jonathan  * IPsec-specific mbuf routines.
      9  1.1  jonathan  */
     10  1.1  jonathan 
     11  1.1  jonathan #include "opt_param.h"
     12  1.1  jonathan 
     13  1.1  jonathan #include <sys/param.h>
     14  1.1  jonathan #include <sys/systm.h>
     15  1.1  jonathan #include <sys/mbuf.h>
     16  1.1  jonathan #include <sys/socket.h>
     17  1.1  jonathan 
     18  1.1  jonathan #include <net/route.h>
     19  1.1  jonathan #include <netinet/in.h>
     20  1.1  jonathan 
     21  1.1  jonathan #include <netipsec/ipsec.h>
     22  1.1  jonathan 
     23  1.1  jonathan #include <netipsec/ipsec_osdep.h>
     24  1.1  jonathan #include <net/net_osdep.h>
     25  1.1  jonathan 
     26  1.1  jonathan extern	struct mbuf *m_getptr(struct mbuf *, int, int *);
     27  1.1  jonathan 
     28  1.1  jonathan /*
     29  1.1  jonathan  * Create a writable copy of the mbuf chain.  While doing this
     30  1.1  jonathan  * we compact the chain with a goal of producing a chain with
     31  1.1  jonathan  * at most two mbufs.  The second mbuf in this chain is likely
     32  1.1  jonathan  * to be a cluster.  The primary purpose of this work is to create
     33  1.1  jonathan  * a writable packet for encryption, compression, etc.  The
     34  1.1  jonathan  * secondary goal is to linearize the data so the data can be
     35  1.1  jonathan  * passed to crypto hardware in the most efficient manner possible.
     36  1.1  jonathan  */
     37  1.1  jonathan struct mbuf *
     38  1.1  jonathan m_clone(struct mbuf *m0)
     39  1.1  jonathan {
     40  1.1  jonathan 	struct mbuf *m, *mprev;
     41  1.1  jonathan 	struct mbuf *n, *mfirst, *mlast;
     42  1.1  jonathan 	int len, off;
     43  1.1  jonathan 
     44  1.1  jonathan 	IPSEC_ASSERT(m0 != NULL, ("m_clone: null mbuf"));
     45  1.1  jonathan 
     46  1.1  jonathan 	mprev = NULL;
     47  1.1  jonathan 	for (m = m0; m != NULL; m = mprev->m_next) {
     48  1.1  jonathan 		/*
     49  1.1  jonathan 		 * Regular mbufs are ignored unless there's a cluster
     50  1.1  jonathan 		 * in front of it that we can use to coalesce.  We do
     51  1.1  jonathan 		 * the latter mainly so later clusters can be coalesced
     52  1.1  jonathan 		 * also w/o having to handle them specially (i.e. convert
     53  1.1  jonathan 		 * mbuf+cluster -> cluster).  This optimization is heavily
     54  1.1  jonathan 		 * influenced by the assumption that we're running over
     55  1.1  jonathan 		 * Ethernet where MCLBYTES is large enough that the max
     56  1.1  jonathan 		 * packet size will permit lots of coalescing into a
     57  1.1  jonathan 		 * single cluster.  This in turn permits efficient
     58  1.1  jonathan 		 * crypto operations, especially when using hardware.
     59  1.1  jonathan 		 */
     60  1.1  jonathan 		if ((m->m_flags & M_EXT) == 0) {
     61  1.1  jonathan 			if (mprev && (mprev->m_flags & M_EXT) &&
     62  1.1  jonathan 			    m->m_len <= M_TRAILINGSPACE(mprev)) {
     63  1.1  jonathan 				/* XXX: this ignores mbuf types */
     64  1.1  jonathan 				memcpy(mtod(mprev, caddr_t) + mprev->m_len,
     65  1.1  jonathan 				       mtod(m, caddr_t), m->m_len);
     66  1.1  jonathan 				mprev->m_len += m->m_len;
     67  1.1  jonathan 				mprev->m_next = m->m_next;	/* unlink from chain */
     68  1.1  jonathan 				m_free(m);			/* reclaim mbuf */
     69  1.1  jonathan 				newipsecstat.ips_mbcoalesced++;
     70  1.1  jonathan 			} else {
     71  1.1  jonathan 				mprev = m;
     72  1.1  jonathan 			}
     73  1.1  jonathan 			continue;
     74  1.1  jonathan 		}
     75  1.1  jonathan 		/*
     76  1.1  jonathan 		 * Writable mbufs are left alone (for now).  Note
     77  1.1  jonathan 		 * that for 4.x systems it's not possible to identify
     78  1.1  jonathan 		 * whether or not mbufs with external buffers are
     79  1.1  jonathan 		 * writable unless they use clusters.
     80  1.1  jonathan 		 */
     81  1.1  jonathan 		if (M_EXT_WRITABLE(m)) {
     82  1.1  jonathan 			mprev = m;
     83  1.1  jonathan 			continue;
     84  1.1  jonathan 		}
     85  1.1  jonathan 
     86  1.1  jonathan 		/*
     87  1.1  jonathan 		 * Not writable, replace with a copy or coalesce with
     88  1.1  jonathan 		 * the previous mbuf if possible (since we have to copy
     89  1.1  jonathan 		 * it anyway, we try to reduce the number of mbufs and
     90  1.1  jonathan 		 * clusters so that future work is easier).
     91  1.1  jonathan 		 */
     92  1.1  jonathan 		IPSEC_ASSERT(m->m_flags & M_EXT,
     93  1.1  jonathan 			("m_clone: m_flags 0x%x", m->m_flags));
     94  1.1  jonathan 		/* NB: we only coalesce into a cluster or larger */
     95  1.1  jonathan 		if (mprev != NULL && (mprev->m_flags & M_EXT) &&
     96  1.1  jonathan 		    m->m_len <= M_TRAILINGSPACE(mprev)) {
     97  1.1  jonathan 			/* XXX: this ignores mbuf types */
     98  1.1  jonathan 			memcpy(mtod(mprev, caddr_t) + mprev->m_len,
     99  1.1  jonathan 			       mtod(m, caddr_t), m->m_len);
    100  1.1  jonathan 			mprev->m_len += m->m_len;
    101  1.1  jonathan 			mprev->m_next = m->m_next;	/* unlink from chain */
    102  1.1  jonathan 			m_free(m);			/* reclaim mbuf */
    103  1.1  jonathan 			newipsecstat.ips_clcoalesced++;
    104  1.1  jonathan 			continue;
    105  1.1  jonathan 		}
    106  1.1  jonathan 
    107  1.1  jonathan 		/*
    108  1.1  jonathan 		 * Allocate new space to hold the copy...
    109  1.1  jonathan 		 */
    110  1.1  jonathan 		/* XXX why can M_PKTHDR be set past the first mbuf? */
    111  1.1  jonathan 		if (mprev == NULL && (m->m_flags & M_PKTHDR)) {
    112  1.1  jonathan 			/*
    113  1.1  jonathan 			 * NB: if a packet header is present we must
    114  1.1  jonathan 			 * allocate the mbuf separately from any cluster
    115  1.1  jonathan 			 * because M_MOVE_PKTHDR will smash the data
    116  1.1  jonathan 			 * pointer and drop the M_EXT marker.
    117  1.1  jonathan 			 */
    118  1.1  jonathan 			MGETHDR(n, M_DONTWAIT, m->m_type);
    119  1.1  jonathan 			if (n == NULL) {
    120  1.1  jonathan 				m_freem(m0);
    121  1.1  jonathan 				return (NULL);
    122  1.1  jonathan 			}
    123  1.1  jonathan 			M_MOVE_PKTHDR(n, m);
    124  1.1  jonathan 			MCLGET(n, M_DONTWAIT);
    125  1.1  jonathan 			if ((n->m_flags & M_EXT) == 0) {
    126  1.1  jonathan 				m_free(n);
    127  1.1  jonathan 				m_freem(m0);
    128  1.1  jonathan 				return (NULL);
    129  1.1  jonathan 			}
    130  1.1  jonathan 		} else {
    131  1.1  jonathan 			n = m_getcl(M_DONTWAIT, m->m_type, m->m_flags);
    132  1.1  jonathan 			if (n == NULL) {
    133  1.1  jonathan 				m_freem(m0);
    134  1.1  jonathan 				return (NULL);
    135  1.1  jonathan 			}
    136  1.1  jonathan 		}
    137  1.1  jonathan 		/*
    138  1.1  jonathan 		 * ... and copy the data.  We deal with jumbo mbufs
    139  1.1  jonathan 		 * (i.e. m_len > MCLBYTES) by splitting them into
    140  1.1  jonathan 		 * clusters.  We could just malloc a buffer and make
    141  1.1  jonathan 		 * it external but too many device drivers don't know
    142  1.1  jonathan 		 * how to break up the non-contiguous memory when
    143  1.1  jonathan 		 * doing DMA.
    144  1.1  jonathan 		 */
    145  1.1  jonathan 		len = m->m_len;
    146  1.1  jonathan 		off = 0;
    147  1.1  jonathan 		mfirst = n;
    148  1.1  jonathan 		mlast = NULL;
    149  1.1  jonathan 		for (;;) {
    150  1.1  jonathan 			int cc = min(len, MCLBYTES);
    151  1.1  jonathan 			memcpy(mtod(n, caddr_t), mtod(m, caddr_t) + off, cc);
    152  1.1  jonathan 			n->m_len = cc;
    153  1.1  jonathan 			if (mlast != NULL)
    154  1.1  jonathan 				mlast->m_next = n;
    155  1.1  jonathan 			mlast = n;
    156  1.1  jonathan 			newipsecstat.ips_clcopied++;
    157  1.1  jonathan 
    158  1.1  jonathan 			len -= cc;
    159  1.1  jonathan 			if (len <= 0)
    160  1.1  jonathan 				break;
    161  1.1  jonathan 			off += cc;
    162  1.1  jonathan 
    163  1.1  jonathan 			n = m_getcl(M_DONTWAIT, m->m_type, m->m_flags);
    164  1.1  jonathan 			if (n == NULL) {
    165  1.1  jonathan 				m_freem(mfirst);
    166  1.1  jonathan 				m_freem(m0);
    167  1.1  jonathan 				return (NULL);
    168  1.1  jonathan 			}
    169  1.1  jonathan 		}
    170  1.1  jonathan 		n->m_next = m->m_next;
    171  1.1  jonathan 		if (mprev == NULL)
    172  1.1  jonathan 			m0 = mfirst;		/* new head of chain */
    173  1.1  jonathan 		else
    174  1.1  jonathan 			mprev->m_next = mfirst;	/* replace old mbuf */
    175  1.1  jonathan 		m_free(m);			/* release old mbuf */
    176  1.1  jonathan 		mprev = mfirst;
    177  1.1  jonathan 	}
    178  1.1  jonathan 	return (m0);
    179  1.1  jonathan }
    180  1.1  jonathan 
    181  1.1  jonathan /*
    182  1.1  jonathan  * Make space for a new header of length hlen at skip bytes
    183  1.1  jonathan  * into the packet.  When doing this we allocate new mbufs only
    184  1.1  jonathan  * when absolutely necessary.  The mbuf where the new header
    185  1.1  jonathan  * is to go is returned together with an offset into the mbuf.
    186  1.1  jonathan  * If NULL is returned then the mbuf chain may have been modified;
    187  1.1  jonathan  * the caller is assumed to always free the chain.
    188  1.1  jonathan  */
    189  1.1  jonathan struct mbuf *
    190  1.1  jonathan m_makespace(struct mbuf *m0, int skip, int hlen, int *off)
    191  1.1  jonathan {
    192  1.1  jonathan 	struct mbuf *m;
    193  1.1  jonathan 	unsigned remain;
    194  1.1  jonathan 
    195  1.1  jonathan 	IPSEC_ASSERT(m0 != NULL, ("m_dmakespace: null mbuf"));
    196  1.1  jonathan 	IPSEC_ASSERT(hlen < MHLEN, ("m_makespace: hlen too big: %u", hlen));
    197  1.1  jonathan 
    198  1.1  jonathan 	for (m = m0; m && skip > m->m_len; m = m->m_next)
    199  1.1  jonathan 		skip -= m->m_len;
    200  1.1  jonathan 	if (m == NULL)
    201  1.1  jonathan 		return (NULL);
    202  1.1  jonathan 	/*
    203  1.1  jonathan 	 * At this point skip is the offset into the mbuf m
    204  1.1  jonathan 	 * where the new header should be placed.  Figure out
    205  1.1  jonathan 	 * if there's space to insert the new header.  If so,
    206  1.1  jonathan 	 * and copying the remainder makese sense then do so.
    207  1.1  jonathan 	 * Otherwise insert a new mbuf in the chain, splitting
    208  1.1  jonathan 	 * the contents of m as needed.
    209  1.1  jonathan 	 */
    210  1.1  jonathan 	remain = m->m_len - skip;		/* data to move */
    211  1.1  jonathan 	if (hlen > M_TRAILINGSPACE(m)) {
    212  1.1  jonathan 		struct mbuf *n;
    213  1.1  jonathan 
    214  1.1  jonathan 		/* XXX code doesn't handle clusters XXX */
    215  1.1  jonathan 		IPSEC_ASSERT(remain < MLEN,
    216  1.1  jonathan 			("m_makespace: remainder too big: %u", remain));
    217  1.1  jonathan 		/*
    218  1.1  jonathan 		 * Not enough space in m, split the contents
    219  1.1  jonathan 		 * of m, inserting new mbufs as required.
    220  1.1  jonathan 		 *
    221  1.1  jonathan 		 * NB: this ignores mbuf types.
    222  1.1  jonathan 		 */
    223  1.1  jonathan 		MGET(n, M_DONTWAIT, MT_DATA);
    224  1.1  jonathan 		if (n == NULL)
    225  1.1  jonathan 			return (NULL);
    226  1.1  jonathan 		n->m_next = m->m_next;		/* splice new mbuf */
    227  1.1  jonathan 		m->m_next = n;
    228  1.1  jonathan 		newipsecstat.ips_mbinserted++;
    229  1.1  jonathan 		if (hlen <= M_TRAILINGSPACE(m) + remain) {
    230  1.1  jonathan 			/*
    231  1.1  jonathan 			 * New header fits in the old mbuf if we copy
    232  1.1  jonathan 			 * the remainder; just do the copy to the new
    233  1.1  jonathan 			 * mbuf and we're good to go.
    234  1.1  jonathan 			 */
    235  1.1  jonathan 			memcpy(mtod(n, caddr_t),
    236  1.1  jonathan 			       mtod(m, caddr_t) + skip, remain);
    237  1.1  jonathan 			n->m_len = remain;
    238  1.1  jonathan 			m->m_len = skip + hlen;
    239  1.1  jonathan 			*off = skip;
    240  1.1  jonathan 		} else {
    241  1.1  jonathan 			/*
    242  1.1  jonathan 			 * No space in the old mbuf for the new header.
    243  1.1  jonathan 			 * Make space in the new mbuf and check the
    244  1.1  jonathan 			 * remainder'd data fits too.  If not then we
    245  1.1  jonathan 			 * must allocate an additional mbuf (yech).
    246  1.1  jonathan 			 */
    247  1.1  jonathan 			n->m_len = 0;
    248  1.1  jonathan 			if (remain + hlen > M_TRAILINGSPACE(n)) {
    249  1.1  jonathan 				struct mbuf *n2;
    250  1.1  jonathan 
    251  1.1  jonathan 				MGET(n2, M_DONTWAIT, MT_DATA);
    252  1.1  jonathan 				/* NB: new mbuf is on chain, let caller free */
    253  1.1  jonathan 				if (n2 == NULL)
    254  1.1  jonathan 					return (NULL);
    255  1.1  jonathan 				n2->m_len = 0;
    256  1.1  jonathan 				memcpy(mtod(n2, caddr_t),
    257  1.1  jonathan 				       mtod(m, caddr_t) + skip, remain);
    258  1.1  jonathan 				n2->m_len = remain;
    259  1.1  jonathan 				/* splice in second mbuf */
    260  1.1  jonathan 				n2->m_next = n->m_next;
    261  1.1  jonathan 				n->m_next = n2;
    262  1.1  jonathan 				newipsecstat.ips_mbinserted++;
    263  1.1  jonathan 			} else {
    264  1.1  jonathan 				memcpy(mtod(n, caddr_t) + hlen,
    265  1.1  jonathan 				       mtod(m, caddr_t) + skip, remain);
    266  1.1  jonathan 				n->m_len += remain;
    267  1.1  jonathan 			}
    268  1.1  jonathan 			m->m_len -= remain;
    269  1.1  jonathan 			n->m_len += hlen;
    270  1.1  jonathan 			m = n;			/* header is at front ... */
    271  1.1  jonathan 			*off = 0;		/* ... of new mbuf */
    272  1.1  jonathan 		}
    273  1.1  jonathan 	} else {
    274  1.1  jonathan 		/*
    275  1.1  jonathan 		 * Copy the remainder to the back of the mbuf
    276  1.1  jonathan 		 * so there's space to write the new header.
    277  1.1  jonathan 		 */
    278  1.1  jonathan 		/* XXX can this be memcpy? does it handle overlap? */
    279  1.1  jonathan 		ovbcopy(mtod(m, caddr_t) + skip,
    280  1.1  jonathan 			mtod(m, caddr_t) + skip + hlen, remain);
    281  1.1  jonathan 		m->m_len += hlen;
    282  1.1  jonathan 		*off = skip;
    283  1.1  jonathan 	}
    284  1.1  jonathan 	m0->m_pkthdr.len += hlen;		/* adjust packet length */
    285  1.1  jonathan 	return m;
    286  1.1  jonathan }
    287  1.1  jonathan 
    288  1.1  jonathan /*
    289  1.1  jonathan  * m_pad(m, n) pads <m> with <n> bytes at the end. The packet header
    290  1.1  jonathan  * length is updated, and a pointer to the first byte of the padding
    291  1.1  jonathan  * (which is guaranteed to be all in one mbuf) is returned.
    292  1.1  jonathan  */
    293  1.1  jonathan caddr_t
    294  1.1  jonathan m_pad(struct mbuf *m, int n)
    295  1.1  jonathan {
    296  1.1  jonathan 	register struct mbuf *m0, *m1;
    297  1.1  jonathan 	register int len, pad;
    298  1.1  jonathan 	caddr_t retval;
    299  1.1  jonathan 
    300  1.1  jonathan 	if (n <= 0) {  /* No stupid arguments. */
    301  1.1  jonathan 		DPRINTF(("m_pad: pad length invalid (%d)\n", n));
    302  1.1  jonathan 		m_freem(m);
    303  1.1  jonathan 		return NULL;
    304  1.1  jonathan 	}
    305  1.1  jonathan 
    306  1.1  jonathan 	len = m->m_pkthdr.len;
    307  1.1  jonathan 	pad = n;
    308  1.1  jonathan 	m0 = m;
    309  1.1  jonathan 
    310  1.1  jonathan 	while (m0->m_len < len) {
    311  1.1  jonathan IPSEC_ASSERT(m0->m_next != NULL, ("m_pad: m0 null, len %u m_len %u", len, m0->m_len));/*XXX*/
    312  1.1  jonathan 		len -= m0->m_len;
    313  1.1  jonathan 		m0 = m0->m_next;
    314  1.1  jonathan 	}
    315  1.1  jonathan 
    316  1.1  jonathan 	if (m0->m_len != len) {
    317  1.1  jonathan 		DPRINTF(("m_pad: length mismatch (should be %d instead of %d)\n",
    318  1.1  jonathan 		    m->m_pkthdr.len, m->m_pkthdr.len + m0->m_len - len));
    319  1.1  jonathan 
    320  1.1  jonathan 		m_freem(m);
    321  1.1  jonathan 		return NULL;
    322  1.1  jonathan 	}
    323  1.1  jonathan 
    324  1.1  jonathan 	/* Check for zero-length trailing mbufs, and find the last one. */
    325  1.1  jonathan 	for (m1 = m0; m1->m_next; m1 = m1->m_next) {
    326  1.1  jonathan 		if (m1->m_next->m_len != 0) {
    327  1.1  jonathan 			DPRINTF(("m_pad: length mismatch (should be %d "
    328  1.1  jonathan 			    "instead of %d)\n",
    329  1.1  jonathan 			    m->m_pkthdr.len,
    330  1.1  jonathan 			    m->m_pkthdr.len + m1->m_next->m_len));
    331  1.1  jonathan 
    332  1.1  jonathan 			m_freem(m);
    333  1.1  jonathan 			return NULL;
    334  1.1  jonathan 		}
    335  1.1  jonathan 
    336  1.1  jonathan 		m0 = m1->m_next;
    337  1.1  jonathan 	}
    338  1.1  jonathan 
    339  1.1  jonathan 	if (pad > M_TRAILINGSPACE(m0)) {
    340  1.1  jonathan 		/* Add an mbuf to the chain. */
    341  1.1  jonathan 		MGET(m1, M_DONTWAIT, MT_DATA);
    342  1.1  jonathan 		if (m1 == 0) {
    343  1.1  jonathan 			m_freem(m0);
    344  1.1  jonathan 			DPRINTF(("m_pad: unable to get extra mbuf\n"));
    345  1.1  jonathan 			return NULL;
    346  1.1  jonathan 		}
    347  1.1  jonathan 
    348  1.1  jonathan 		m0->m_next = m1;
    349  1.1  jonathan 		m0 = m1;
    350  1.1  jonathan 		m0->m_len = 0;
    351  1.1  jonathan 	}
    352  1.1  jonathan 
    353  1.1  jonathan 	retval = m0->m_data + m0->m_len;
    354  1.1  jonathan 	m0->m_len += pad;
    355  1.1  jonathan 	m->m_pkthdr.len += pad;
    356  1.1  jonathan 
    357  1.1  jonathan 	return retval;
    358  1.1  jonathan }
    359  1.1  jonathan 
    360  1.1  jonathan /*
    361  1.1  jonathan  * Remove hlen data at offset skip in the packet.  This is used by
    362  1.1  jonathan  * the protocols strip protocol headers and associated data (e.g. IV,
    363  1.1  jonathan  * authenticator) on input.
    364  1.1  jonathan  */
    365  1.1  jonathan int
    366  1.1  jonathan m_striphdr(struct mbuf *m, int skip, int hlen)
    367  1.1  jonathan {
    368  1.1  jonathan 	struct mbuf *m1;
    369  1.1  jonathan 	int roff;
    370  1.1  jonathan 
    371  1.1  jonathan 	/* Find beginning of header */
    372  1.1  jonathan 	m1 = m_getptr(m, skip, &roff);
    373  1.1  jonathan 	if (m1 == NULL)
    374  1.1  jonathan 		return (EINVAL);
    375  1.1  jonathan 
    376  1.1  jonathan 	/* Remove the header and associated data from the mbuf. */
    377  1.1  jonathan 	if (roff == 0) {
    378  1.1  jonathan 		/* The header was at the beginning of the mbuf */
    379  1.1  jonathan 		newipsecstat.ips_input_front++;
    380  1.1  jonathan 		m_adj(m1, hlen);
    381  1.1  jonathan 		if ((m1->m_flags & M_PKTHDR) == 0)
    382  1.1  jonathan 			m->m_pkthdr.len -= hlen;
    383  1.1  jonathan 	} else if (roff + hlen >= m1->m_len) {
    384  1.1  jonathan 		struct mbuf *mo;
    385  1.1  jonathan 
    386  1.1  jonathan 		/*
    387  1.1  jonathan 		 * Part or all of the header is at the end of this mbuf,
    388  1.1  jonathan 		 * so first let's remove the remainder of the header from
    389  1.1  jonathan 		 * the beginning of the remainder of the mbuf chain, if any.
    390  1.1  jonathan 		 */
    391  1.1  jonathan 		newipsecstat.ips_input_end++;
    392  1.1  jonathan 		if (roff + hlen > m1->m_len) {
    393  1.1  jonathan 			/* Adjust the next mbuf by the remainder */
    394  1.1  jonathan 			m_adj(m1->m_next, roff + hlen - m1->m_len);
    395  1.1  jonathan 
    396  1.1  jonathan 			/* The second mbuf is guaranteed not to have a pkthdr... */
    397  1.1  jonathan 			m->m_pkthdr.len -= (roff + hlen - m1->m_len);
    398  1.1  jonathan 		}
    399  1.1  jonathan 
    400  1.1  jonathan 		/* Now, let's unlink the mbuf chain for a second...*/
    401  1.1  jonathan 		mo = m1->m_next;
    402  1.1  jonathan 		m1->m_next = NULL;
    403  1.1  jonathan 
    404  1.1  jonathan 		/* ...and trim the end of the first part of the chain...sick */
    405  1.1  jonathan 		m_adj(m1, -(m1->m_len - roff));
    406  1.1  jonathan 		if ((m1->m_flags & M_PKTHDR) == 0)
    407  1.1  jonathan 			m->m_pkthdr.len -= (m1->m_len - roff);
    408  1.1  jonathan 
    409  1.1  jonathan 		/* Finally, let's relink */
    410  1.1  jonathan 		m1->m_next = mo;
    411  1.1  jonathan 	} else {
    412  1.1  jonathan 		/*
    413  1.1  jonathan 		 * The header lies in the "middle" of the mbuf; copy
    414  1.1  jonathan 		 * the remainder of the mbuf down over the header.
    415  1.1  jonathan 		 */
    416  1.1  jonathan 		newipsecstat.ips_input_middle++;
    417  1.2  jonathan 		ovbcopy(mtod(m1, u_char *) + roff + hlen,
    418  1.1  jonathan 		      mtod(m1, u_char *) + roff,
    419  1.1  jonathan 		      m1->m_len - (roff + hlen));
    420  1.1  jonathan 		m1->m_len -= hlen;
    421  1.1  jonathan 		m->m_pkthdr.len -= hlen;
    422  1.1  jonathan 	}
    423  1.1  jonathan 	return (0);
    424  1.1  jonathan }
    425  1.1  jonathan 
    426  1.1  jonathan /*
    427  1.1  jonathan  * Diagnostic routine to check mbuf alignment as required by the
    428  1.1  jonathan  * crypto device drivers (that use DMA).
    429  1.1  jonathan  */
    430  1.1  jonathan void
    431  1.1  jonathan m_checkalignment(const char* where, struct mbuf *m0, int off, int len)
    432  1.1  jonathan {
    433  1.1  jonathan 	int roff;
    434  1.1  jonathan 	struct mbuf *m = m_getptr(m0, off, &roff);
    435  1.1  jonathan 	caddr_t addr;
    436  1.1  jonathan 
    437  1.1  jonathan 	if (m == NULL)
    438  1.1  jonathan 		return;
    439  1.1  jonathan 	printf("%s (off %u len %u): ", where, off, len);
    440  1.1  jonathan 	addr = mtod(m, caddr_t) + roff;
    441  1.1  jonathan 	do {
    442  1.1  jonathan 		int mlen;
    443  1.1  jonathan 
    444  1.1  jonathan 		if (((uintptr_t) addr) & 3) {
    445  1.1  jonathan 			printf("addr misaligned %p,", addr);
    446  1.1  jonathan 			break;
    447  1.1  jonathan 		}
    448  1.1  jonathan 		mlen = m->m_len;
    449  1.1  jonathan 		if (mlen > len)
    450  1.1  jonathan 			mlen = len;
    451  1.1  jonathan 		len -= mlen;
    452  1.1  jonathan 		if (len && (mlen & 3)) {
    453  1.1  jonathan 			printf("len mismatch %u,", mlen);
    454  1.1  jonathan 			break;
    455  1.1  jonathan 		}
    456  1.1  jonathan 		m = m->m_next;
    457  1.1  jonathan 		addr = m ? mtod(m, caddr_t) : NULL;
    458  1.1  jonathan 	} while (m && len > 0);
    459  1.1  jonathan 	for (m = m0; m; m = m->m_next)
    460  1.1  jonathan 		printf(" [%p:%u]", mtod(m, caddr_t), m->m_len);
    461  1.1  jonathan 	printf("\n");
    462  1.1  jonathan }
    463