Home | History | Annotate | Line # | Download | only in kern
uipc_mbuf.c revision 1.254
      1  1.253  riastrad 
      2  1.254  riastrad /*	$NetBSD: uipc_mbuf.c,v 1.254 2024/12/06 18:44:00 riastradh Exp $	*/
      3   1.42   thorpej 
      4  1.177      maxv /*
      5  1.227      maxv  * Copyright (c) 1999, 2001, 2018 The NetBSD Foundation, Inc.
      6   1.42   thorpej  * All rights reserved.
      7   1.42   thorpej  *
      8   1.42   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      9   1.42   thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
     10  1.227      maxv  * NASA Ames Research Center, and Maxime Villard.
     11   1.42   thorpej  *
     12   1.42   thorpej  * Redistribution and use in source and binary forms, with or without
     13   1.42   thorpej  * modification, are permitted provided that the following conditions
     14   1.42   thorpej  * are met:
     15   1.42   thorpej  * 1. Redistributions of source code must retain the above copyright
     16   1.42   thorpej  *    notice, this list of conditions and the following disclaimer.
     17   1.42   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     18   1.42   thorpej  *    notice, this list of conditions and the following disclaimer in the
     19   1.42   thorpej  *    documentation and/or other materials provided with the distribution.
     20   1.42   thorpej  *
     21   1.42   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     22   1.42   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     23   1.42   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     24   1.42   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     25   1.42   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     26   1.42   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     27   1.42   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     28   1.42   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     29   1.42   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     30   1.42   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     31   1.42   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     32   1.42   thorpej  */
     33   1.10       cgd 
     34    1.1       cgd /*
     35    1.9   mycroft  * Copyright (c) 1982, 1986, 1988, 1991, 1993
     36    1.9   mycroft  *	The Regents of the University of California.  All rights reserved.
     37    1.1       cgd  *
     38    1.1       cgd  * Redistribution and use in source and binary forms, with or without
     39    1.1       cgd  * modification, are permitted provided that the following conditions
     40    1.1       cgd  * are met:
     41    1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     42    1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     43    1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     44    1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     45    1.1       cgd  *    documentation and/or other materials provided with the distribution.
     46   1.70       agc  * 3. Neither the name of the University nor the names of its contributors
     47    1.1       cgd  *    may be used to endorse or promote products derived from this software
     48    1.1       cgd  *    without specific prior written permission.
     49    1.1       cgd  *
     50    1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     51    1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     52    1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     53    1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     54    1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     55    1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     56    1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     57    1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     58    1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     59    1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     60    1.1       cgd  * SUCH DAMAGE.
     61    1.1       cgd  *
     62   1.26      fvdl  *	@(#)uipc_mbuf.c	8.4 (Berkeley) 2/14/95
     63    1.1       cgd  */
     64   1.56     lukem 
     65   1.56     lukem #include <sys/cdefs.h>
     66  1.254  riastrad __KERNEL_RCSID(0, "$NetBSD: uipc_mbuf.c,v 1.254 2024/12/06 18:44:00 riastradh Exp $");
     67   1.69    martin 
     68  1.163     pooka #ifdef _KERNEL_OPT
     69  1.253  riastrad #include "ether.h"
     70  1.253  riastrad #include "opt_ddb.h"
     71   1.69    martin #include "opt_mbuftrace.h"
     72  1.133     joerg #include "opt_nmbclusters.h"
     73  1.163     pooka #endif
     74   1.24       mrg 
     75    1.6   mycroft #include <sys/param.h>
     76  1.253  riastrad #include <sys/types.h>
     77  1.253  riastrad 
     78  1.125      yamt #include <sys/atomic.h>
     79  1.124      yamt #include <sys/cpu.h>
     80  1.253  riastrad #include <sys/domain.h>
     81  1.253  riastrad #include <sys/kernel.h>
     82    1.6   mycroft #include <sys/mbuf.h>
     83  1.124      yamt #include <sys/percpu.h>
     84   1.28   thorpej #include <sys/pool.h>
     85  1.253  riastrad #include <sys/proc.h>
     86  1.253  riastrad #include <sys/protosw.h>
     87  1.254  riastrad #include <sys/sdt.h>
     88   1.27      matt #include <sys/socket.h>
     89   1.55    simonb #include <sys/sysctl.h>
     90  1.253  riastrad #include <sys/syslog.h>
     91  1.253  riastrad #include <sys/systm.h>
     92   1.55    simonb 
     93   1.27      matt #include <net/if.h>
     94   1.14  christos 
     95  1.122        ad pool_cache_t mb_cache;	/* mbuf cache */
     96  1.218      maxv static pool_cache_t mcl_cache;	/* mbuf cluster cache */
     97   1.53   thorpej 
     98   1.18   thorpej struct mbstat mbstat;
     99  1.199      maxv int max_linkhdr;
    100  1.199      maxv int max_protohdr;
    101  1.199      maxv int max_hdr;
    102  1.199      maxv int max_datalen;
    103   1.18   thorpej 
    104  1.203      maxv static void mb_drain(void *, int);
    105   1.65   thorpej static int mb_ctor(void *, void *, int);
    106   1.65   thorpej 
    107  1.199      maxv static void sysctl_kern_mbuf_setup(void);
    108  1.129     pooka 
    109  1.129     pooka static struct sysctllog *mbuf_sysctllog;
    110  1.129     pooka 
    111  1.195      maxv static struct mbuf *m_copy_internal(struct mbuf *, int, int, int, bool);
    112  1.195      maxv static struct mbuf *m_split_internal(struct mbuf *, int, int, bool);
    113  1.196      maxv static int m_copyback_internal(struct mbuf **, int, int, const void *,
    114  1.196      maxv     int, int);
    115   1.85      yamt 
    116  1.196      maxv /* Flags for m_copyback_internal. */
    117  1.196      maxv #define	CB_COPYBACK	0x0001	/* copyback from cp */
    118  1.196      maxv #define	CB_PRESERVE	0x0002	/* preserve original data */
    119  1.196      maxv #define	CB_COW		0x0004	/* do copy-on-write */
    120  1.196      maxv #define	CB_EXTEND	0x0008	/* extend chain */
    121   1.28   thorpej 
    122  1.103   thorpej static const char mclpool_warnmsg[] =
    123  1.133     joerg     "WARNING: mclpool limit reached; increase kern.mbuf.nmbclusters";
    124   1.63   thorpej 
    125   1.63   thorpej MALLOC_DEFINE(M_MBUF, "mbuf", "mbuf");
    126   1.42   thorpej 
    127  1.124      yamt static percpu_t *mbstat_percpu;
    128  1.124      yamt 
    129   1.64      matt #ifdef MBUFTRACE
    130   1.64      matt struct mownerhead mowners = LIST_HEAD_INITIALIZER(mowners);
    131   1.64      matt struct mowner unknown_mowners[] = {
    132  1.114    dogcow 	MOWNER_INIT("unknown", "free"),
    133  1.114    dogcow 	MOWNER_INIT("unknown", "data"),
    134  1.114    dogcow 	MOWNER_INIT("unknown", "header"),
    135  1.114    dogcow 	MOWNER_INIT("unknown", "soname"),
    136  1.114    dogcow 	MOWNER_INIT("unknown", "soopts"),
    137  1.114    dogcow 	MOWNER_INIT("unknown", "ftable"),
    138  1.114    dogcow 	MOWNER_INIT("unknown", "control"),
    139  1.114    dogcow 	MOWNER_INIT("unknown", "oobdata"),
    140   1.64      matt };
    141  1.114    dogcow struct mowner revoked_mowner = MOWNER_INIT("revoked", "");
    142   1.64      matt #endif
    143   1.64      matt 
    144  1.125      yamt #define	MEXT_ISEMBEDDED(m) ((m)->m_ext_ref == (m))
    145  1.125      yamt 
    146  1.125      yamt #define	MCLADDREFERENCE(o, n)						\
    147  1.125      yamt do {									\
    148  1.125      yamt 	KASSERT(((o)->m_flags & M_EXT) != 0);				\
    149  1.125      yamt 	KASSERT(((n)->m_flags & M_EXT) == 0);				\
    150  1.125      yamt 	KASSERT((o)->m_ext.ext_refcnt >= 1);				\
    151  1.125      yamt 	(n)->m_flags |= ((o)->m_flags & M_EXTCOPYFLAGS);		\
    152  1.125      yamt 	atomic_inc_uint(&(o)->m_ext.ext_refcnt);			\
    153  1.125      yamt 	(n)->m_ext_ref = (o)->m_ext_ref;				\
    154  1.125      yamt 	mowner_ref((n), (n)->m_flags);					\
    155  1.125      yamt } while (/* CONSTCOND */ 0)
    156  1.125      yamt 
    157  1.133     joerg static int
    158  1.133     joerg nmbclusters_limit(void)
    159  1.133     joerg {
    160  1.136     pooka #if defined(PMAP_MAP_POOLPAGE)
    161  1.147      para 	/* direct mapping, doesn't use space in kmem_arena */
    162  1.133     joerg 	vsize_t max_size = physmem / 4;
    163  1.133     joerg #else
    164  1.145      para 	vsize_t max_size = MIN(physmem / 4, nkmempages / 4);
    165  1.133     joerg #endif
    166  1.133     joerg 
    167  1.133     joerg 	max_size = max_size * PAGE_SIZE / MCLBYTES;
    168  1.133     joerg #ifdef NMBCLUSTERS_MAX
    169  1.133     joerg 	max_size = MIN(max_size, NMBCLUSTERS_MAX);
    170  1.133     joerg #endif
    171  1.133     joerg 
    172  1.133     joerg 	return max_size;
    173  1.133     joerg }
    174  1.133     joerg 
    175   1.28   thorpej /*
    176   1.68    simonb  * Initialize the mbuf allocator.
    177   1.28   thorpej  */
    178    1.4       jtc void
    179   1.62   thorpej mbinit(void)
    180    1.1       cgd {
    181   1.65   thorpej 
    182  1.128      matt 	CTASSERT(sizeof(struct _m_ext) <= MHLEN);
    183  1.128      matt 	CTASSERT(sizeof(struct mbuf) == MSIZE);
    184   1.65   thorpej 
    185  1.129     pooka 	sysctl_kern_mbuf_setup();
    186  1.129     pooka 
    187  1.122        ad 	mb_cache = pool_cache_init(msize, 0, 0, 0, "mbpl",
    188  1.122        ad 	    NULL, IPL_VM, mb_ctor, NULL, NULL);
    189  1.122        ad 	KASSERT(mb_cache != NULL);
    190  1.122        ad 
    191  1.235       tnn 	mcl_cache = pool_cache_init(mclbytes, COHERENCY_UNIT, 0, 0, "mclpl",
    192  1.235       tnn 	    NULL, IPL_VM, NULL, NULL, NULL);
    193  1.122        ad 	KASSERT(mcl_cache != NULL);
    194   1.59   thorpej 
    195  1.203      maxv 	pool_cache_set_drain_hook(mb_cache, mb_drain, NULL);
    196  1.203      maxv 	pool_cache_set_drain_hook(mcl_cache, mb_drain, NULL);
    197   1.37   thorpej 
    198   1.37   thorpej 	/*
    199  1.133     joerg 	 * Set an arbitrary default limit on the number of mbuf clusters.
    200  1.133     joerg 	 */
    201  1.133     joerg #ifdef NMBCLUSTERS
    202  1.244   msaitoh 	nmbclusters = MIN(NMBCLUSTERS, nmbclusters_limit());
    203  1.133     joerg #else
    204  1.133     joerg 	nmbclusters = MAX(1024,
    205  1.133     joerg 	    (vsize_t)physmem * PAGE_SIZE / MCLBYTES / 16);
    206  1.133     joerg 	nmbclusters = MIN(nmbclusters, nmbclusters_limit());
    207  1.133     joerg #endif
    208  1.133     joerg 
    209  1.133     joerg 	/*
    210   1.39   thorpej 	 * Set the hard limit on the mclpool to the number of
    211   1.39   thorpej 	 * mbuf clusters the kernel is to support.  Log the limit
    212   1.39   thorpej 	 * reached message max once a minute.
    213   1.39   thorpej 	 */
    214  1.122        ad 	pool_cache_sethardlimit(mcl_cache, nmbclusters, mclpool_warnmsg, 60);
    215   1.42   thorpej 
    216  1.124      yamt 	mbstat_percpu = percpu_alloc(sizeof(struct mbstat_cpu));
    217  1.124      yamt 
    218   1.39   thorpej 	/*
    219   1.42   thorpej 	 * Set a low water mark for both mbufs and clusters.  This should
    220   1.42   thorpej 	 * help ensure that they can be allocated in a memory starvation
    221   1.42   thorpej 	 * situation.  This is important for e.g. diskless systems which
    222   1.42   thorpej 	 * must allocate mbufs in order for the pagedaemon to clean pages.
    223   1.37   thorpej 	 */
    224  1.122        ad 	pool_cache_setlowat(mb_cache, mblowat);
    225  1.122        ad 	pool_cache_setlowat(mcl_cache, mcllowat);
    226   1.64      matt 
    227   1.64      matt #ifdef MBUFTRACE
    228   1.64      matt 	{
    229   1.64      matt 		/*
    230   1.64      matt 		 * Attach the unknown mowners.
    231   1.64      matt 		 */
    232   1.64      matt 		int i;
    233   1.64      matt 		MOWNER_ATTACH(&revoked_mowner);
    234   1.64      matt 		for (i = sizeof(unknown_mowners)/sizeof(unknown_mowners[0]);
    235   1.64      matt 		     i-- > 0; )
    236   1.64      matt 			MOWNER_ATTACH(&unknown_mowners[i]);
    237   1.64      matt 	}
    238   1.64      matt #endif
    239   1.42   thorpej }
    240   1.42   thorpej 
    241  1.203      maxv static void
    242  1.203      maxv mb_drain(void *arg, int flags)
    243  1.203      maxv {
    244  1.203      maxv 	struct domain *dp;
    245  1.203      maxv 	const struct protosw *pr;
    246  1.203      maxv 	struct ifnet *ifp;
    247  1.203      maxv 	int s;
    248  1.203      maxv 
    249  1.203      maxv 	KERNEL_LOCK(1, NULL);
    250  1.203      maxv 	s = splvm();
    251  1.203      maxv 	DOMAIN_FOREACH(dp) {
    252  1.203      maxv 		for (pr = dp->dom_protosw;
    253  1.203      maxv 		     pr < dp->dom_protoswNPROTOSW; pr++)
    254  1.203      maxv 			if (pr->pr_drain)
    255  1.203      maxv 				(*pr->pr_drain)();
    256  1.203      maxv 	}
    257  1.203      maxv 	/* XXX we cannot use psref in H/W interrupt */
    258  1.203      maxv 	if (!cpu_intr_p()) {
    259  1.203      maxv 		int bound = curlwp_bind();
    260  1.203      maxv 		IFNET_READER_FOREACH(ifp) {
    261  1.203      maxv 			struct psref psref;
    262  1.203      maxv 
    263  1.203      maxv 			if_acquire(ifp, &psref);
    264  1.203      maxv 
    265  1.203      maxv 			if (ifp->if_drain)
    266  1.203      maxv 				(*ifp->if_drain)(ifp);
    267  1.203      maxv 
    268  1.203      maxv 			if_release(ifp, &psref);
    269  1.203      maxv 		}
    270  1.203      maxv 		curlwp_bindx(bound);
    271  1.203      maxv 	}
    272  1.203      maxv 	splx(s);
    273  1.203      maxv 	mbstat.m_drain++;
    274  1.203      maxv 	KERNEL_UNLOCK_ONE(NULL);
    275  1.203      maxv }
    276  1.203      maxv 
    277   1.75    atatat /*
    278  1.133     joerg  * sysctl helper routine for the kern.mbuf subtree.
    279  1.133     joerg  * nmbclusters, mblowat and mcllowat need range
    280   1.75    atatat  * checking and pool tweaking after being reset.
    281   1.75    atatat  */
    282   1.75    atatat static int
    283   1.75    atatat sysctl_kern_mbuf(SYSCTLFN_ARGS)
    284   1.42   thorpej {
    285   1.42   thorpej 	int error, newval;
    286   1.75    atatat 	struct sysctlnode node;
    287   1.42   thorpej 
    288   1.75    atatat 	node = *rnode;
    289   1.75    atatat 	node.sysctl_data = &newval;
    290   1.75    atatat 	switch (rnode->sysctl_num) {
    291   1.42   thorpej 	case MBUF_NMBCLUSTERS:
    292   1.42   thorpej 	case MBUF_MBLOWAT:
    293   1.42   thorpej 	case MBUF_MCLLOWAT:
    294   1.75    atatat 		newval = *(int*)rnode->sysctl_data;
    295   1.75    atatat 		break;
    296  1.247   msaitoh 	case MBUF_NMBCLUSTERS_LIMIT:
    297  1.247   msaitoh 		newval = nmbclusters_limit();
    298  1.247   msaitoh 		break;
    299   1.75    atatat 	default:
    300  1.254  riastrad 		return SET_ERROR(EOPNOTSUPP);
    301   1.75    atatat 	}
    302   1.75    atatat 
    303   1.75    atatat 	error = sysctl_lookup(SYSCTLFN_CALL(&node));
    304   1.75    atatat 	if (error || newp == NULL)
    305  1.199      maxv 		return error;
    306   1.75    atatat 	if (newval < 0)
    307  1.254  riastrad 		return SET_ERROR(EINVAL);
    308   1.75    atatat 
    309   1.75    atatat 	switch (node.sysctl_num) {
    310   1.75    atatat 	case MBUF_NMBCLUSTERS:
    311   1.75    atatat 		if (newval < nmbclusters)
    312  1.254  riastrad 			return SET_ERROR(EINVAL);
    313  1.133     joerg 		if (newval > nmbclusters_limit())
    314  1.254  riastrad 			return SET_ERROR(EINVAL);
    315   1.75    atatat 		nmbclusters = newval;
    316  1.122        ad 		pool_cache_sethardlimit(mcl_cache, nmbclusters,
    317  1.122        ad 		    mclpool_warnmsg, 60);
    318   1.75    atatat 		break;
    319   1.75    atatat 	case MBUF_MBLOWAT:
    320   1.75    atatat 		mblowat = newval;
    321  1.122        ad 		pool_cache_setlowat(mb_cache, mblowat);
    322   1.75    atatat 		break;
    323   1.75    atatat 	case MBUF_MCLLOWAT:
    324   1.76    atatat 		mcllowat = newval;
    325  1.122        ad 		pool_cache_setlowat(mcl_cache, mcllowat);
    326   1.75    atatat 		break;
    327   1.75    atatat 	}
    328   1.75    atatat 
    329  1.199      maxv 	return 0;
    330   1.75    atatat }
    331   1.75    atatat 
    332   1.64      matt #ifdef MBUFTRACE
    333  1.124      yamt static void
    334  1.220   msaitoh mowner_convert_to_user_cb(void *v1, void *v2, struct cpu_info *ci)
    335  1.124      yamt {
    336  1.124      yamt 	struct mowner_counter *mc = v1;
    337  1.124      yamt 	struct mowner_user *mo_user = v2;
    338  1.124      yamt 	int i;
    339  1.124      yamt 
    340  1.124      yamt 	for (i = 0; i < MOWNER_COUNTER_NCOUNTERS; i++) {
    341  1.124      yamt 		mo_user->mo_counter[i] += mc->mc_counter[i];
    342  1.124      yamt 	}
    343  1.124      yamt }
    344  1.124      yamt 
    345  1.124      yamt static void
    346  1.124      yamt mowner_convert_to_user(struct mowner *mo, struct mowner_user *mo_user)
    347  1.124      yamt {
    348  1.124      yamt 
    349  1.124      yamt 	memset(mo_user, 0, sizeof(*mo_user));
    350  1.128      matt 	CTASSERT(sizeof(mo_user->mo_name) == sizeof(mo->mo_name));
    351  1.128      matt 	CTASSERT(sizeof(mo_user->mo_descr) == sizeof(mo->mo_descr));
    352  1.124      yamt 	memcpy(mo_user->mo_name, mo->mo_name, sizeof(mo->mo_name));
    353  1.124      yamt 	memcpy(mo_user->mo_descr, mo->mo_descr, sizeof(mo->mo_descr));
    354  1.220   msaitoh 	percpu_foreach(mo->mo_counters, mowner_convert_to_user_cb, mo_user);
    355  1.124      yamt }
    356  1.124      yamt 
    357   1.75    atatat static int
    358   1.75    atatat sysctl_kern_mbuf_mowners(SYSCTLFN_ARGS)
    359   1.75    atatat {
    360   1.75    atatat 	struct mowner *mo;
    361   1.75    atatat 	size_t len = 0;
    362   1.75    atatat 	int error = 0;
    363   1.75    atatat 
    364   1.75    atatat 	if (namelen != 0)
    365  1.254  riastrad 		return SET_ERROR(EINVAL);
    366   1.75    atatat 	if (newp != NULL)
    367  1.254  riastrad 		return SET_ERROR(EPERM);
    368   1.75    atatat 
    369   1.75    atatat 	LIST_FOREACH(mo, &mowners, mo_link) {
    370  1.124      yamt 		struct mowner_user mo_user;
    371  1.124      yamt 
    372  1.124      yamt 		mowner_convert_to_user(mo, &mo_user);
    373  1.124      yamt 
    374   1.75    atatat 		if (oldp != NULL) {
    375  1.124      yamt 			if (*oldlenp - len < sizeof(mo_user)) {
    376  1.254  riastrad 				error = SET_ERROR(ENOMEM);
    377   1.75    atatat 				break;
    378   1.75    atatat 			}
    379  1.124      yamt 			error = copyout(&mo_user, (char *)oldp + len,
    380  1.124      yamt 			    sizeof(mo_user));
    381   1.75    atatat 			if (error)
    382   1.75    atatat 				break;
    383   1.64      matt 		}
    384  1.124      yamt 		len += sizeof(mo_user);
    385   1.75    atatat 	}
    386   1.75    atatat 
    387   1.75    atatat 	if (error == 0)
    388   1.64      matt 		*oldlenp = len;
    389   1.75    atatat 
    390  1.199      maxv 	return error;
    391   1.75    atatat }
    392   1.75    atatat #endif /* MBUFTRACE */
    393   1.75    atatat 
    394  1.205      maxv void
    395  1.205      maxv mbstat_type_add(int type, int diff)
    396  1.205      maxv {
    397  1.205      maxv 	struct mbstat_cpu *mb;
    398  1.205      maxv 	int s;
    399  1.205      maxv 
    400  1.205      maxv 	s = splvm();
    401  1.205      maxv 	mb = percpu_getref(mbstat_percpu);
    402  1.205      maxv 	mb->m_mtypes[type] += diff;
    403  1.205      maxv 	percpu_putref(mbstat_percpu);
    404  1.205      maxv 	splx(s);
    405  1.205      maxv }
    406  1.205      maxv 
    407  1.124      yamt static void
    408  1.234  jmcneill mbstat_convert_to_user_cb(void *v1, void *v2, struct cpu_info *ci)
    409  1.124      yamt {
    410  1.124      yamt 	struct mbstat_cpu *mbsc = v1;
    411  1.124      yamt 	struct mbstat *mbs = v2;
    412  1.124      yamt 	int i;
    413  1.124      yamt 
    414  1.124      yamt 	for (i = 0; i < __arraycount(mbs->m_mtypes); i++) {
    415  1.124      yamt 		mbs->m_mtypes[i] += mbsc->m_mtypes[i];
    416  1.124      yamt 	}
    417  1.124      yamt }
    418  1.124      yamt 
    419  1.124      yamt static void
    420  1.124      yamt mbstat_convert_to_user(struct mbstat *mbs)
    421  1.124      yamt {
    422  1.124      yamt 
    423  1.124      yamt 	memset(mbs, 0, sizeof(*mbs));
    424  1.124      yamt 	mbs->m_drain = mbstat.m_drain;
    425  1.234  jmcneill 	percpu_foreach(mbstat_percpu, mbstat_convert_to_user_cb, mbs);
    426  1.124      yamt }
    427  1.124      yamt 
    428  1.124      yamt static int
    429  1.124      yamt sysctl_kern_mbuf_stats(SYSCTLFN_ARGS)
    430  1.124      yamt {
    431  1.124      yamt 	struct sysctlnode node;
    432  1.124      yamt 	struct mbstat mbs;
    433  1.124      yamt 
    434  1.124      yamt 	mbstat_convert_to_user(&mbs);
    435  1.124      yamt 	node = *rnode;
    436  1.124      yamt 	node.sysctl_data = &mbs;
    437  1.124      yamt 	node.sysctl_size = sizeof(mbs);
    438  1.124      yamt 	return sysctl_lookup(SYSCTLFN_CALL(&node));
    439  1.124      yamt }
    440  1.124      yamt 
    441  1.129     pooka static void
    442  1.131    cegger sysctl_kern_mbuf_setup(void)
    443   1.75    atatat {
    444   1.75    atatat 
    445  1.129     pooka 	KASSERT(mbuf_sysctllog == NULL);
    446  1.129     pooka 	sysctl_createv(&mbuf_sysctllog, 0, NULL, NULL,
    447   1.80    atatat 		       CTLFLAG_PERMANENT,
    448   1.82    atatat 		       CTLTYPE_NODE, "mbuf",
    449   1.82    atatat 		       SYSCTL_DESCR("mbuf control variables"),
    450   1.75    atatat 		       NULL, 0, NULL, 0,
    451   1.75    atatat 		       CTL_KERN, KERN_MBUF, CTL_EOL);
    452   1.75    atatat 
    453  1.129     pooka 	sysctl_createv(&mbuf_sysctllog, 0, NULL, NULL,
    454   1.80    atatat 		       CTLFLAG_PERMANENT|CTLFLAG_IMMEDIATE,
    455   1.82    atatat 		       CTLTYPE_INT, "msize",
    456   1.82    atatat 		       SYSCTL_DESCR("mbuf base size"),
    457   1.75    atatat 		       NULL, msize, NULL, 0,
    458   1.75    atatat 		       CTL_KERN, KERN_MBUF, MBUF_MSIZE, CTL_EOL);
    459  1.129     pooka 	sysctl_createv(&mbuf_sysctllog, 0, NULL, NULL,
    460   1.80    atatat 		       CTLFLAG_PERMANENT|CTLFLAG_IMMEDIATE,
    461   1.82    atatat 		       CTLTYPE_INT, "mclbytes",
    462   1.82    atatat 		       SYSCTL_DESCR("mbuf cluster size"),
    463   1.75    atatat 		       NULL, mclbytes, NULL, 0,
    464   1.75    atatat 		       CTL_KERN, KERN_MBUF, MBUF_MCLBYTES, CTL_EOL);
    465  1.129     pooka 	sysctl_createv(&mbuf_sysctllog, 0, NULL, NULL,
    466   1.80    atatat 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    467   1.82    atatat 		       CTLTYPE_INT, "nmbclusters",
    468   1.82    atatat 		       SYSCTL_DESCR("Limit on the number of mbuf clusters"),
    469   1.75    atatat 		       sysctl_kern_mbuf, 0, &nmbclusters, 0,
    470   1.75    atatat 		       CTL_KERN, KERN_MBUF, MBUF_NMBCLUSTERS, CTL_EOL);
    471  1.129     pooka 	sysctl_createv(&mbuf_sysctllog, 0, NULL, NULL,
    472   1.80    atatat 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    473   1.82    atatat 		       CTLTYPE_INT, "mblowat",
    474   1.82    atatat 		       SYSCTL_DESCR("mbuf low water mark"),
    475   1.75    atatat 		       sysctl_kern_mbuf, 0, &mblowat, 0,
    476   1.75    atatat 		       CTL_KERN, KERN_MBUF, MBUF_MBLOWAT, CTL_EOL);
    477  1.129     pooka 	sysctl_createv(&mbuf_sysctllog, 0, NULL, NULL,
    478   1.80    atatat 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
    479   1.82    atatat 		       CTLTYPE_INT, "mcllowat",
    480   1.82    atatat 		       SYSCTL_DESCR("mbuf cluster low water mark"),
    481   1.75    atatat 		       sysctl_kern_mbuf, 0, &mcllowat, 0,
    482   1.75    atatat 		       CTL_KERN, KERN_MBUF, MBUF_MCLLOWAT, CTL_EOL);
    483  1.129     pooka 	sysctl_createv(&mbuf_sysctllog, 0, NULL, NULL,
    484   1.80    atatat 		       CTLFLAG_PERMANENT,
    485   1.82    atatat 		       CTLTYPE_STRUCT, "stats",
    486   1.82    atatat 		       SYSCTL_DESCR("mbuf allocation statistics"),
    487  1.124      yamt 		       sysctl_kern_mbuf_stats, 0, NULL, 0,
    488   1.75    atatat 		       CTL_KERN, KERN_MBUF, MBUF_STATS, CTL_EOL);
    489   1.75    atatat #ifdef MBUFTRACE
    490  1.129     pooka 	sysctl_createv(&mbuf_sysctllog, 0, NULL, NULL,
    491   1.80    atatat 		       CTLFLAG_PERMANENT,
    492   1.82    atatat 		       CTLTYPE_STRUCT, "mowners",
    493   1.82    atatat 		       SYSCTL_DESCR("Information about mbuf owners"),
    494   1.75    atatat 		       sysctl_kern_mbuf_mowners, 0, NULL, 0,
    495   1.75    atatat 		       CTL_KERN, KERN_MBUF, MBUF_MOWNERS, CTL_EOL);
    496  1.199      maxv #endif
    497  1.247   msaitoh 	sysctl_createv(&mbuf_sysctllog, 0, NULL, NULL,
    498  1.247   msaitoh 		       CTLFLAG_PERMANENT|CTLFLAG_READONLY,
    499  1.247   msaitoh 		       CTLTYPE_INT, "nmbclusters_limit",
    500  1.247   msaitoh 		       SYSCTL_DESCR("Limit of nmbclusters"),
    501  1.247   msaitoh 		       sysctl_kern_mbuf, 0, NULL, 0,
    502  1.247   msaitoh 		       CTL_KERN, KERN_MBUF, MBUF_NMBCLUSTERS_LIMIT, CTL_EOL);
    503   1.28   thorpej }
    504   1.28   thorpej 
    505   1.65   thorpej static int
    506  1.116      yamt mb_ctor(void *arg, void *object, int flags)
    507   1.65   thorpej {
    508   1.65   thorpej 	struct mbuf *m = object;
    509   1.65   thorpej 
    510   1.65   thorpej #ifdef POOL_VTOPHYS
    511   1.65   thorpej 	m->m_paddr = POOL_VTOPHYS(m);
    512   1.65   thorpej #else
    513   1.65   thorpej 	m->m_paddr = M_PADDR_INVALID;
    514   1.65   thorpej #endif
    515  1.199      maxv 	return 0;
    516    1.1       cgd }
    517    1.1       cgd 
    518  1.150  christos /*
    519  1.150  christos  * Add mbuf to the end of a chain
    520  1.150  christos  */
    521  1.150  christos struct mbuf *
    522  1.179      maxv m_add(struct mbuf *c, struct mbuf *m)
    523  1.179      maxv {
    524  1.150  christos 	struct mbuf *n;
    525  1.150  christos 
    526  1.150  christos 	if (c == NULL)
    527  1.150  christos 		return m;
    528  1.150  christos 
    529  1.150  christos 	for (n = c; n->m_next != NULL; n = n->m_next)
    530  1.150  christos 		continue;
    531  1.150  christos 	n->m_next = m;
    532  1.150  christos 	return c;
    533  1.150  christos }
    534  1.150  christos 
    535    1.1       cgd struct mbuf *
    536  1.212      maxv m_get(int how, int type)
    537    1.1       cgd {
    538   1.27      matt 	struct mbuf *m;
    539    1.1       cgd 
    540  1.142    dyoung 	KASSERT(type != MT_FREE);
    541  1.142    dyoung 
    542  1.124      yamt 	m = pool_cache_get(mb_cache,
    543  1.212      maxv 	    how == M_WAIT ? PR_WAITOK|PR_LIMITFAIL : PR_NOWAIT);
    544  1.124      yamt 	if (m == NULL)
    545  1.124      yamt 		return NULL;
    546  1.249  riastrad 	KASSERTMSG(((vaddr_t)m->m_dat & PAGE_MASK) + MLEN <= PAGE_SIZE,
    547  1.250     skrll 	    "m=%p m->m_dat=%p"
    548  1.249  riastrad 	    " MLEN=%u PAGE_MASK=0x%x PAGE_SIZE=%u",
    549  1.249  riastrad 	    m, m->m_dat,
    550  1.249  riastrad 	    (unsigned)MLEN, (unsigned)PAGE_MASK, (unsigned)PAGE_SIZE);
    551  1.124      yamt 
    552  1.124      yamt 	mbstat_type_add(type, 1);
    553  1.164  knakahar 
    554  1.184      maxv 	mowner_init(m, type);
    555  1.184      maxv 	m->m_ext_ref = m; /* default */
    556  1.184      maxv 	m->m_type = type;
    557  1.184      maxv 	m->m_len = 0;
    558  1.184      maxv 	m->m_next = NULL;
    559  1.184      maxv 	m->m_nextpkt = NULL; /* default */
    560  1.184      maxv 	m->m_data = m->m_dat;
    561  1.184      maxv 	m->m_flags = 0; /* default */
    562  1.124      yamt 
    563  1.124      yamt 	return m;
    564    1.1       cgd }
    565    1.1       cgd 
    566    1.1       cgd struct mbuf *
    567  1.212      maxv m_gethdr(int how, int type)
    568    1.1       cgd {
    569   1.27      matt 	struct mbuf *m;
    570    1.1       cgd 
    571  1.212      maxv 	m = m_get(how, type);
    572  1.124      yamt 	if (m == NULL)
    573  1.124      yamt 		return NULL;
    574  1.124      yamt 
    575  1.184      maxv 	m->m_data = m->m_pktdat;
    576  1.184      maxv 	m->m_flags = M_PKTHDR;
    577  1.184      maxv 
    578  1.184      maxv 	m_reset_rcvif(m);
    579  1.184      maxv 	m->m_pkthdr.len = 0;
    580  1.184      maxv 	m->m_pkthdr.csum_flags = 0;
    581  1.184      maxv 	m->m_pkthdr.csum_data = 0;
    582  1.231  knakahar 	m->m_pkthdr.segsz = 0;
    583  1.231  knakahar 	m->m_pkthdr.ether_vtag = 0;
    584  1.232  knakahar 	m->m_pkthdr.pkthdr_flags = 0;
    585  1.184      maxv 	SLIST_INIT(&m->m_pkthdr.tags);
    586  1.184      maxv 
    587  1.184      maxv 	m->m_pkthdr.pattr_class = NULL;
    588  1.184      maxv 	m->m_pkthdr.pattr_af = AF_UNSPEC;
    589  1.184      maxv 	m->m_pkthdr.pattr_hdr = NULL;
    590  1.124      yamt 
    591  1.124      yamt 	return m;
    592    1.1       cgd }
    593    1.1       cgd 
    594  1.251  riastrad struct mbuf *
    595  1.251  riastrad m_get_n(int how, int type, size_t alignbytes, size_t nbytes)
    596  1.251  riastrad {
    597  1.251  riastrad 	struct mbuf *m;
    598  1.251  riastrad 
    599  1.251  riastrad 	if (alignbytes > MCLBYTES || nbytes > MCLBYTES - alignbytes)
    600  1.251  riastrad 		return NULL;
    601  1.251  riastrad 	if ((m = m_get(how, type)) == NULL)
    602  1.251  riastrad 		return NULL;
    603  1.251  riastrad 	if (nbytes + alignbytes > MLEN) {
    604  1.251  riastrad 		m_clget(m, how);
    605  1.251  riastrad 		if ((m->m_flags & M_EXT) == 0) {
    606  1.251  riastrad 			m_free(m);
    607  1.251  riastrad 			return NULL;
    608  1.251  riastrad 		}
    609  1.251  riastrad 	}
    610  1.251  riastrad 	m->m_len = alignbytes + nbytes;
    611  1.251  riastrad 	m_adj(m, alignbytes);
    612  1.251  riastrad 
    613  1.251  riastrad 	return m;
    614  1.251  riastrad }
    615  1.251  riastrad 
    616  1.251  riastrad struct mbuf *
    617  1.251  riastrad m_gethdr_n(int how, int type, size_t alignbytes, size_t nbytes)
    618  1.251  riastrad {
    619  1.251  riastrad 	struct mbuf *m;
    620  1.251  riastrad 
    621  1.251  riastrad 	if (nbytes > MCLBYTES || nbytes > MCLBYTES - alignbytes)
    622  1.251  riastrad 		return NULL;
    623  1.251  riastrad 	if ((m = m_gethdr(how, type)) == NULL)
    624  1.251  riastrad 		return NULL;
    625  1.251  riastrad 	if (alignbytes + nbytes > MHLEN) {
    626  1.251  riastrad 		m_clget(m, how);
    627  1.251  riastrad 		if ((m->m_flags & M_EXT) == 0) {
    628  1.251  riastrad 			m_free(m);
    629  1.251  riastrad 			return NULL;
    630  1.251  riastrad 		}
    631  1.251  riastrad 	}
    632  1.251  riastrad 	m->m_len = m->m_pkthdr.len = alignbytes + nbytes;
    633  1.251  riastrad 	m_adj(m, alignbytes);
    634  1.251  riastrad 
    635  1.251  riastrad 	return m;
    636  1.251  riastrad }
    637  1.251  riastrad 
    638   1.64      matt void
    639  1.212      maxv m_clget(struct mbuf *m, int how)
    640   1.64      matt {
    641  1.206      maxv 	m->m_ext_storage.ext_buf = (char *)pool_cache_get_paddr(mcl_cache,
    642  1.212      maxv 	    how == M_WAIT ? (PR_WAITOK|PR_LIMITFAIL) : PR_NOWAIT,
    643  1.206      maxv 	    &m->m_ext_storage.ext_paddr);
    644   1.71    simonb 
    645  1.206      maxv 	if (m->m_ext_storage.ext_buf == NULL)
    646  1.206      maxv 		return;
    647  1.206      maxv 
    648  1.249  riastrad 	KASSERTMSG((((vaddr_t)m->m_ext_storage.ext_buf & PAGE_MASK) + mclbytes
    649  1.249  riastrad 		<= PAGE_SIZE),
    650  1.250     skrll 	    "m=%p m->m_ext_storage.ext_buf=%p"
    651  1.249  riastrad 	    " mclbytes=%u PAGE_MASK=0x%x PAGE_SIZE=%u",
    652  1.249  riastrad 	    m, m->m_dat,
    653  1.249  riastrad 	    (unsigned)mclbytes, (unsigned)PAGE_MASK, (unsigned)PAGE_SIZE);
    654  1.239  jdolecek 
    655  1.206      maxv 	MCLINITREFERENCE(m);
    656  1.206      maxv 	m->m_data = m->m_ext.ext_buf;
    657  1.206      maxv 	m->m_flags = (m->m_flags & ~M_EXTCOPYFLAGS) |
    658  1.206      maxv 	    M_EXT|M_EXT_CLUSTER|M_EXT_RW;
    659  1.206      maxv 	m->m_ext.ext_size = MCLBYTES;
    660  1.206      maxv 	m->m_ext.ext_free = NULL;
    661  1.207      maxv 	m->m_ext.ext_arg = NULL;
    662  1.206      maxv 	/* ext_paddr initialized above */
    663  1.206      maxv 
    664  1.206      maxv 	mowner_ref(m, M_EXT|M_EXT_CLUSTER);
    665   1.64      matt }
    666   1.64      matt 
    667  1.221      maxv struct mbuf *
    668  1.221      maxv m_getcl(int how, int type, int flags)
    669  1.221      maxv {
    670  1.221      maxv 	struct mbuf *mp;
    671  1.221      maxv 
    672  1.221      maxv 	if ((flags & M_PKTHDR) != 0)
    673  1.221      maxv 		mp = m_gethdr(how, type);
    674  1.221      maxv 	else
    675  1.221      maxv 		mp = m_get(how, type);
    676  1.221      maxv 
    677  1.221      maxv 	if (mp == NULL)
    678  1.221      maxv 		return NULL;
    679  1.221      maxv 
    680  1.221      maxv 	MCLGET(mp, how);
    681  1.221      maxv 	if ((mp->m_flags & M_EXT) != 0)
    682  1.221      maxv 		return mp;
    683  1.221      maxv 
    684  1.221      maxv 	m_free(mp);
    685  1.221      maxv 	return NULL;
    686  1.221      maxv }
    687  1.221      maxv 
    688    1.1       cgd /*
    689  1.194      maxv  * Utility function for M_PREPEND. Do *NOT* use it directly.
    690    1.1       cgd  */
    691    1.1       cgd struct mbuf *
    692   1.62   thorpej m_prepend(struct mbuf *m, int len, int how)
    693    1.1       cgd {
    694    1.1       cgd 	struct mbuf *mn;
    695    1.1       cgd 
    696  1.180      maxv 	if (__predict_false(len > MHLEN)) {
    697  1.180      maxv 		panic("%s: len > MHLEN", __func__);
    698  1.180      maxv 	}
    699  1.180      maxv 
    700  1.156  christos 	KASSERT(len != M_COPYALL);
    701  1.153  christos 	mn = m_get(how, m->m_type);
    702  1.143    plunky 	if (mn == NULL) {
    703    1.1       cgd 		m_freem(m);
    704  1.179      maxv 		return NULL;
    705    1.1       cgd 	}
    706  1.178      maxv 
    707    1.1       cgd 	if (m->m_flags & M_PKTHDR) {
    708  1.226      maxv 		m_move_pkthdr(mn, m);
    709   1.64      matt 	} else {
    710   1.64      matt 		MCLAIM(mn, m->m_owner);
    711    1.1       cgd 	}
    712    1.1       cgd 	mn->m_next = m;
    713    1.1       cgd 	m = mn;
    714  1.178      maxv 
    715  1.178      maxv 	if (m->m_flags & M_PKTHDR) {
    716  1.178      maxv 		if (len < MHLEN)
    717  1.229      maxv 			m_align(m, len);
    718  1.178      maxv 	} else {
    719  1.178      maxv 		if (len < MLEN)
    720  1.229      maxv 			m_align(m, len);
    721  1.178      maxv 	}
    722  1.178      maxv 
    723    1.1       cgd 	m->m_len = len;
    724  1.179      maxv 	return m;
    725    1.1       cgd }
    726    1.1       cgd 
    727    1.1       cgd struct mbuf *
    728  1.195      maxv m_copym(struct mbuf *m, int off, int len, int wait)
    729    1.1       cgd {
    730  1.195      maxv 	/* Shallow copy on M_EXT. */
    731  1.195      maxv 	return m_copy_internal(m, off, len, wait, false);
    732   1.44    itojun }
    733   1.44    itojun 
    734   1.44    itojun struct mbuf *
    735  1.195      maxv m_dup(struct mbuf *m, int off, int len, int wait)
    736   1.44    itojun {
    737  1.195      maxv 	/* Deep copy. */
    738  1.195      maxv 	return m_copy_internal(m, off, len, wait, true);
    739   1.44    itojun }
    740   1.44    itojun 
    741  1.154  christos static inline int
    742  1.179      maxv m_copylen(int len, int copylen)
    743  1.179      maxv {
    744  1.219  riastrad 	return (len == M_COPYALL) ? copylen : uimin(len, copylen);
    745  1.154  christos }
    746  1.154  christos 
    747   1.44    itojun static struct mbuf *
    748  1.195      maxv m_copy_internal(struct mbuf *m, int off0, int len, int wait, bool deep)
    749   1.44    itojun {
    750  1.249  riastrad 	struct mbuf *m0 __diagused = m;
    751  1.249  riastrad 	int len0 __diagused = len;
    752   1.27      matt 	struct mbuf *n, **np;
    753   1.27      matt 	int off = off0;
    754    1.1       cgd 	struct mbuf *top;
    755    1.1       cgd 	int copyhdr = 0;
    756    1.1       cgd 
    757  1.154  christos 	if (off < 0 || (len != M_COPYALL && len < 0))
    758  1.196      maxv 		panic("%s: off %d, len %d", __func__, off, len);
    759    1.1       cgd 	if (off == 0 && m->m_flags & M_PKTHDR)
    760    1.1       cgd 		copyhdr = 1;
    761    1.1       cgd 	while (off > 0) {
    762  1.179      maxv 		if (m == NULL)
    763  1.199      maxv 			panic("%s: m == NULL, off %d", __func__, off);
    764    1.1       cgd 		if (off < m->m_len)
    765    1.1       cgd 			break;
    766    1.1       cgd 		off -= m->m_len;
    767    1.1       cgd 		m = m->m_next;
    768    1.1       cgd 	}
    769  1.179      maxv 
    770    1.1       cgd 	np = &top;
    771  1.179      maxv 	top = NULL;
    772  1.155     skrll 	while (len == M_COPYALL || len > 0) {
    773  1.179      maxv 		if (m == NULL) {
    774    1.1       cgd 			if (len != M_COPYALL)
    775  1.196      maxv 				panic("%s: m == NULL, len %d [!COPYALL]",
    776  1.196      maxv 				    __func__, len);
    777    1.1       cgd 			break;
    778    1.1       cgd 		}
    779  1.179      maxv 
    780  1.153  christos 		n = m_get(wait, m->m_type);
    781    1.1       cgd 		*np = n;
    782  1.179      maxv 		if (n == NULL)
    783    1.1       cgd 			goto nospace;
    784   1.64      matt 		MCLAIM(n, m->m_owner);
    785  1.179      maxv 
    786    1.1       cgd 		if (copyhdr) {
    787  1.228      maxv 			m_copy_pkthdr(n, m);
    788    1.1       cgd 			if (len == M_COPYALL)
    789    1.1       cgd 				n->m_pkthdr.len -= off0;
    790    1.1       cgd 			else
    791    1.1       cgd 				n->m_pkthdr.len = len;
    792    1.1       cgd 			copyhdr = 0;
    793    1.1       cgd 		}
    794  1.154  christos 		n->m_len = m_copylen(len, m->m_len - off);
    795  1.179      maxv 
    796    1.1       cgd 		if (m->m_flags & M_EXT) {
    797   1.44    itojun 			if (!deep) {
    798   1.44    itojun 				n->m_data = m->m_data + off;
    799   1.44    itojun 				MCLADDREFERENCE(m, n);
    800   1.44    itojun 			} else {
    801   1.48    itojun 				/*
    802  1.181      maxv 				 * We don't care if MCLGET fails. n->m_len is
    803  1.181      maxv 				 * recomputed and handles that.
    804   1.48    itojun 				 */
    805   1.44    itojun 				MCLGET(n, wait);
    806  1.161   mlelstv 				n->m_len = 0;
    807   1.50    itojun 				n->m_len = M_TRAILINGSPACE(n);
    808  1.154  christos 				n->m_len = m_copylen(len, n->m_len);
    809  1.219  riastrad 				n->m_len = uimin(n->m_len, m->m_len - off);
    810  1.119  christos 				memcpy(mtod(n, void *), mtod(m, char *) + off,
    811   1.44    itojun 				    (unsigned)n->m_len);
    812   1.44    itojun 			}
    813  1.179      maxv 		} else {
    814  1.119  christos 			memcpy(mtod(n, void *), mtod(m, char *) + off,
    815    1.1       cgd 			    (unsigned)n->m_len);
    816  1.179      maxv 		}
    817  1.179      maxv 
    818    1.1       cgd 		if (len != M_COPYALL)
    819    1.1       cgd 			len -= n->m_len;
    820   1.50    itojun 		off += n->m_len;
    821  1.199      maxv 
    822  1.249  riastrad 		KASSERTMSG(off <= m->m_len,
    823  1.249  riastrad 		    "m=%p m->m_len=%d off=%d len=%d m0=%p off0=%d len0=%d",
    824  1.249  riastrad 		    m, m->m_len, off, len, m0, off0, len0);
    825  1.199      maxv 
    826   1.50    itojun 		if (off == m->m_len) {
    827   1.50    itojun 			m = m->m_next;
    828   1.50    itojun 			off = 0;
    829   1.50    itojun 		}
    830    1.1       cgd 		np = &n->m_next;
    831    1.1       cgd 	}
    832  1.179      maxv 
    833  1.179      maxv 	return top;
    834  1.179      maxv 
    835    1.1       cgd nospace:
    836    1.1       cgd 	m_freem(top);
    837  1.179      maxv 	return NULL;
    838    1.1       cgd }
    839    1.1       cgd 
    840    1.1       cgd /*
    841   1.18   thorpej  * Copy an entire packet, including header (which must be present).
    842  1.181      maxv  * An optimization of the common case 'm_copym(m, 0, M_COPYALL, how)'.
    843   1.18   thorpej  */
    844   1.18   thorpej struct mbuf *
    845   1.62   thorpej m_copypacket(struct mbuf *m, int how)
    846   1.18   thorpej {
    847   1.18   thorpej 	struct mbuf *top, *n, *o;
    848   1.18   thorpej 
    849  1.198      maxv 	if (__predict_false((m->m_flags & M_PKTHDR) == 0)) {
    850  1.198      maxv 		panic("%s: no header (m = %p)", __func__, m);
    851  1.198      maxv 	}
    852  1.198      maxv 
    853  1.153  christos 	n = m_get(how, m->m_type);
    854   1.18   thorpej 	top = n;
    855   1.18   thorpej 	if (!n)
    856   1.18   thorpej 		goto nospace;
    857   1.18   thorpej 
    858   1.64      matt 	MCLAIM(n, m->m_owner);
    859  1.228      maxv 	m_copy_pkthdr(n, m);
    860   1.18   thorpej 	n->m_len = m->m_len;
    861   1.18   thorpej 	if (m->m_flags & M_EXT) {
    862   1.18   thorpej 		n->m_data = m->m_data;
    863   1.18   thorpej 		MCLADDREFERENCE(m, n);
    864   1.18   thorpej 	} else {
    865   1.30     perry 		memcpy(mtod(n, char *), mtod(m, char *), n->m_len);
    866   1.18   thorpej 	}
    867   1.18   thorpej 
    868   1.18   thorpej 	m = m->m_next;
    869   1.18   thorpej 	while (m) {
    870  1.153  christos 		o = m_get(how, m->m_type);
    871   1.18   thorpej 		if (!o)
    872   1.18   thorpej 			goto nospace;
    873   1.18   thorpej 
    874   1.64      matt 		MCLAIM(o, m->m_owner);
    875   1.18   thorpej 		n->m_next = o;
    876   1.18   thorpej 		n = n->m_next;
    877   1.18   thorpej 
    878   1.18   thorpej 		n->m_len = m->m_len;
    879   1.18   thorpej 		if (m->m_flags & M_EXT) {
    880   1.18   thorpej 			n->m_data = m->m_data;
    881   1.18   thorpej 			MCLADDREFERENCE(m, n);
    882   1.18   thorpej 		} else {
    883   1.30     perry 			memcpy(mtod(n, char *), mtod(m, char *), n->m_len);
    884   1.18   thorpej 		}
    885   1.18   thorpej 
    886   1.18   thorpej 		m = m->m_next;
    887   1.18   thorpej 	}
    888   1.18   thorpej 	return top;
    889  1.181      maxv 
    890   1.18   thorpej nospace:
    891   1.18   thorpej 	m_freem(top);
    892   1.71    simonb 	return NULL;
    893   1.18   thorpej }
    894   1.18   thorpej 
    895   1.14  christos void
    896  1.200      maxv m_copydata(struct mbuf *m, int off, int len, void *cp)
    897    1.1       cgd {
    898  1.200      maxv 	unsigned int count;
    899  1.179      maxv 	struct mbuf *m0 = m;
    900  1.179      maxv 	int len0 = len;
    901  1.179      maxv 	int off0 = off;
    902  1.200      maxv 	void *cp0 = cp;
    903    1.1       cgd 
    904  1.156  christos 	KASSERT(len != M_COPYALL);
    905    1.1       cgd 	if (off < 0 || len < 0)
    906   1.90      matt 		panic("m_copydata: off %d, len %d", off, len);
    907    1.1       cgd 	while (off > 0) {
    908   1.94      tron 		if (m == NULL)
    909  1.151      matt 			panic("m_copydata(%p,%d,%d,%p): m=NULL, off=%d (%d)",
    910  1.200      maxv 			    m0, len0, off0, cp0, off, off0 - off);
    911    1.1       cgd 		if (off < m->m_len)
    912    1.1       cgd 			break;
    913    1.1       cgd 		off -= m->m_len;
    914    1.1       cgd 		m = m->m_next;
    915    1.1       cgd 	}
    916    1.1       cgd 	while (len > 0) {
    917   1.94      tron 		if (m == NULL)
    918  1.151      matt 			panic("m_copydata(%p,%d,%d,%p): "
    919  1.151      matt 			    "m=NULL, off=%d (%d), len=%d (%d)",
    920  1.200      maxv 			    m0, len0, off0, cp0,
    921  1.151      matt 			    off, off0 - off, len, len0 - len);
    922  1.219  riastrad 		count = uimin(m->m_len - off, len);
    923  1.119  christos 		memcpy(cp, mtod(m, char *) + off, count);
    924    1.1       cgd 		len -= count;
    925  1.119  christos 		cp = (char *)cp + count;
    926    1.1       cgd 		off = 0;
    927    1.1       cgd 		m = m->m_next;
    928    1.1       cgd 	}
    929    1.1       cgd }
    930    1.1       cgd 
    931    1.1       cgd /*
    932    1.1       cgd  * Concatenate mbuf chain n to m.
    933   1.72    itojun  * n might be copied into m (when n->m_len is small), therefore data portion of
    934   1.72    itojun  * n could be copied into an mbuf of different mbuf type.
    935    1.1       cgd  * Any m_pkthdr is not updated.
    936    1.1       cgd  */
    937   1.14  christos void
    938   1.62   thorpej m_cat(struct mbuf *m, struct mbuf *n)
    939    1.1       cgd {
    940   1.73      yamt 
    941    1.1       cgd 	while (m->m_next)
    942    1.1       cgd 		m = m->m_next;
    943    1.1       cgd 	while (n) {
    944   1.77    itojun 		if (M_READONLY(m) || n->m_len > M_TRAILINGSPACE(m)) {
    945    1.1       cgd 			/* just join the two chains */
    946    1.1       cgd 			m->m_next = n;
    947    1.1       cgd 			return;
    948    1.1       cgd 		}
    949    1.1       cgd 		/* splat the data from one into the other */
    950  1.119  christos 		memcpy(mtod(m, char *) + m->m_len, mtod(n, void *),
    951    1.1       cgd 		    (u_int)n->m_len);
    952    1.1       cgd 		m->m_len += n->m_len;
    953    1.1       cgd 		n = m_free(n);
    954    1.1       cgd 	}
    955    1.1       cgd }
    956    1.1       cgd 
    957   1.11   mycroft void
    958   1.62   thorpej m_adj(struct mbuf *mp, int req_len)
    959    1.1       cgd {
    960   1.27      matt 	int len = req_len;
    961   1.27      matt 	struct mbuf *m;
    962   1.27      matt 	int count;
    963    1.1       cgd 
    964    1.1       cgd 	if ((m = mp) == NULL)
    965    1.1       cgd 		return;
    966    1.1       cgd 	if (len >= 0) {
    967    1.1       cgd 		/*
    968    1.1       cgd 		 * Trim from head.
    969    1.1       cgd 		 */
    970    1.1       cgd 		while (m != NULL && len > 0) {
    971    1.1       cgd 			if (m->m_len <= len) {
    972    1.1       cgd 				len -= m->m_len;
    973    1.1       cgd 				m->m_len = 0;
    974    1.1       cgd 				m = m->m_next;
    975    1.1       cgd 			} else {
    976    1.1       cgd 				m->m_len -= len;
    977    1.1       cgd 				m->m_data += len;
    978    1.1       cgd 				len = 0;
    979    1.1       cgd 			}
    980    1.1       cgd 		}
    981    1.1       cgd 		if (mp->m_flags & M_PKTHDR)
    982  1.181      maxv 			mp->m_pkthdr.len -= (req_len - len);
    983    1.1       cgd 	} else {
    984    1.1       cgd 		/*
    985    1.1       cgd 		 * Trim from tail.  Scan the mbuf chain,
    986    1.1       cgd 		 * calculating its length and finding the last mbuf.
    987    1.1       cgd 		 * If the adjustment only affects this mbuf, then just
    988    1.1       cgd 		 * adjust and return.  Otherwise, rescan and truncate
    989    1.1       cgd 		 * after the remaining size.
    990    1.1       cgd 		 */
    991    1.1       cgd 		len = -len;
    992    1.1       cgd 		count = 0;
    993    1.1       cgd 		for (;;) {
    994    1.1       cgd 			count += m->m_len;
    995  1.181      maxv 			if (m->m_next == NULL)
    996    1.1       cgd 				break;
    997    1.1       cgd 			m = m->m_next;
    998    1.1       cgd 		}
    999    1.1       cgd 		if (m->m_len >= len) {
   1000    1.1       cgd 			m->m_len -= len;
   1001    1.8   deraadt 			if (mp->m_flags & M_PKTHDR)
   1002    1.8   deraadt 				mp->m_pkthdr.len -= len;
   1003    1.1       cgd 			return;
   1004    1.1       cgd 		}
   1005  1.181      maxv 
   1006    1.1       cgd 		count -= len;
   1007    1.1       cgd 		if (count < 0)
   1008    1.1       cgd 			count = 0;
   1009  1.181      maxv 
   1010    1.1       cgd 		/*
   1011    1.1       cgd 		 * Correct length for chain is "count".
   1012    1.1       cgd 		 * Find the mbuf with last data, adjust its length,
   1013    1.1       cgd 		 * and toss data from remaining mbufs on chain.
   1014    1.1       cgd 		 */
   1015    1.1       cgd 		m = mp;
   1016    1.1       cgd 		if (m->m_flags & M_PKTHDR)
   1017    1.1       cgd 			m->m_pkthdr.len = count;
   1018    1.1       cgd 		for (; m; m = m->m_next) {
   1019    1.1       cgd 			if (m->m_len >= count) {
   1020    1.1       cgd 				m->m_len = count;
   1021    1.1       cgd 				break;
   1022    1.1       cgd 			}
   1023    1.1       cgd 			count -= m->m_len;
   1024    1.1       cgd 		}
   1025  1.181      maxv 		if (m) {
   1026  1.110  christos 			while (m->m_next)
   1027  1.110  christos 				(m = m->m_next)->m_len = 0;
   1028  1.181      maxv 		}
   1029    1.1       cgd 	}
   1030    1.1       cgd }
   1031    1.1       cgd 
   1032    1.1       cgd /*
   1033  1.148     rmind  * m_ensure_contig: rearrange an mbuf chain that given length of bytes
   1034  1.148     rmind  * would be contiguous and in the data area of an mbuf (therefore, mtod()
   1035  1.148     rmind  * would work for a structure of given length).
   1036  1.148     rmind  *
   1037  1.148     rmind  * => On success, returns true and the resulting mbuf chain; false otherwise.
   1038  1.148     rmind  * => The mbuf chain may change, but is always preserved valid.
   1039    1.1       cgd  */
   1040  1.148     rmind bool
   1041  1.148     rmind m_ensure_contig(struct mbuf **m0, int len)
   1042    1.1       cgd {
   1043  1.148     rmind 	struct mbuf *n = *m0, *m;
   1044  1.148     rmind 	size_t count, space;
   1045    1.1       cgd 
   1046  1.156  christos 	KASSERT(len != M_COPYALL);
   1047    1.1       cgd 	/*
   1048    1.1       cgd 	 * If first mbuf has no cluster, and has room for len bytes
   1049    1.1       cgd 	 * without shifting current data, pullup into it,
   1050    1.1       cgd 	 * otherwise allocate a new mbuf to prepend to the chain.
   1051    1.1       cgd 	 */
   1052    1.1       cgd 	if ((n->m_flags & M_EXT) == 0 &&
   1053    1.1       cgd 	    n->m_data + len < &n->m_dat[MLEN] && n->m_next) {
   1054  1.148     rmind 		if (n->m_len >= len) {
   1055  1.148     rmind 			return true;
   1056  1.148     rmind 		}
   1057    1.1       cgd 		m = n;
   1058    1.1       cgd 		n = n->m_next;
   1059    1.1       cgd 		len -= m->m_len;
   1060    1.1       cgd 	} else {
   1061  1.148     rmind 		if (len > MHLEN) {
   1062  1.148     rmind 			return false;
   1063  1.148     rmind 		}
   1064  1.153  christos 		m = m_get(M_DONTWAIT, n->m_type);
   1065  1.148     rmind 		if (m == NULL) {
   1066  1.148     rmind 			return false;
   1067  1.148     rmind 		}
   1068   1.64      matt 		MCLAIM(m, n->m_owner);
   1069    1.1       cgd 		if (n->m_flags & M_PKTHDR) {
   1070  1.226      maxv 			m_move_pkthdr(m, n);
   1071    1.1       cgd 		}
   1072    1.1       cgd 	}
   1073    1.1       cgd 	space = &m->m_dat[MLEN] - (m->m_data + m->m_len);
   1074    1.1       cgd 	do {
   1075  1.148     rmind 		count = MIN(MIN(MAX(len, max_protohdr), space), n->m_len);
   1076  1.119  christos 		memcpy(mtod(m, char *) + m->m_len, mtod(n, void *),
   1077    1.1       cgd 		  (unsigned)count);
   1078    1.1       cgd 		len -= count;
   1079    1.1       cgd 		m->m_len += count;
   1080    1.1       cgd 		n->m_len -= count;
   1081    1.1       cgd 		space -= count;
   1082    1.1       cgd 		if (n->m_len)
   1083    1.1       cgd 			n->m_data += count;
   1084    1.1       cgd 		else
   1085    1.1       cgd 			n = m_free(n);
   1086    1.1       cgd 	} while (len > 0 && n);
   1087  1.148     rmind 
   1088  1.148     rmind 	m->m_next = n;
   1089  1.148     rmind 	*m0 = m;
   1090  1.148     rmind 
   1091  1.148     rmind 	return len <= 0;
   1092  1.148     rmind }
   1093  1.148     rmind 
   1094  1.148     rmind /*
   1095  1.148     rmind  * m_pullup: same as m_ensure_contig(), but destroys mbuf chain on error.
   1096  1.148     rmind  */
   1097  1.148     rmind struct mbuf *
   1098  1.148     rmind m_pullup(struct mbuf *n, int len)
   1099  1.148     rmind {
   1100  1.148     rmind 	struct mbuf *m = n;
   1101  1.148     rmind 
   1102  1.156  christos 	KASSERT(len != M_COPYALL);
   1103  1.148     rmind 	if (!m_ensure_contig(&m, len)) {
   1104  1.148     rmind 		KASSERT(m != NULL);
   1105  1.148     rmind 		m_freem(m);
   1106  1.148     rmind 		m = NULL;
   1107    1.1       cgd 	}
   1108  1.148     rmind 	return m;
   1109   1.60   thorpej }
   1110   1.60   thorpej 
   1111   1.60   thorpej /*
   1112  1.221      maxv  * ensure that [off, off + len) is contiguous on the mbuf chain "m".
   1113  1.221      maxv  * packet chain before "off" is kept untouched.
   1114  1.221      maxv  * if offp == NULL, the target will start at <retval, 0> on resulting chain.
   1115  1.221      maxv  * if offp != NULL, the target will start at <retval, *offp> on resulting chain.
   1116  1.221      maxv  *
   1117  1.221      maxv  * on error return (NULL return value), original "m" will be freed.
   1118  1.221      maxv  *
   1119  1.221      maxv  * XXX M_TRAILINGSPACE/M_LEADINGSPACE on shared cluster (sharedcluster)
   1120  1.221      maxv  */
   1121  1.221      maxv struct mbuf *
   1122  1.221      maxv m_pulldown(struct mbuf *m, int off, int len, int *offp)
   1123  1.221      maxv {
   1124  1.221      maxv 	struct mbuf *n, *o;
   1125  1.221      maxv 	int hlen, tlen, olen;
   1126  1.221      maxv 	int sharedcluster;
   1127  1.221      maxv 
   1128  1.221      maxv 	/* Check invalid arguments. */
   1129  1.221      maxv 	if (m == NULL)
   1130  1.221      maxv 		panic("%s: m == NULL", __func__);
   1131  1.221      maxv 	if (len > MCLBYTES) {
   1132  1.221      maxv 		m_freem(m);
   1133  1.221      maxv 		return NULL;
   1134  1.221      maxv 	}
   1135  1.221      maxv 
   1136  1.221      maxv 	n = m;
   1137  1.221      maxv 	while (n != NULL && off > 0) {
   1138  1.221      maxv 		if (n->m_len > off)
   1139  1.221      maxv 			break;
   1140  1.221      maxv 		off -= n->m_len;
   1141  1.221      maxv 		n = n->m_next;
   1142  1.221      maxv 	}
   1143  1.221      maxv 	/* Be sure to point non-empty mbuf. */
   1144  1.221      maxv 	while (n != NULL && n->m_len == 0)
   1145  1.221      maxv 		n = n->m_next;
   1146  1.221      maxv 	if (!n) {
   1147  1.221      maxv 		m_freem(m);
   1148  1.221      maxv 		return NULL;	/* mbuf chain too short */
   1149  1.221      maxv 	}
   1150  1.221      maxv 
   1151  1.221      maxv 	sharedcluster = M_READONLY(n);
   1152  1.221      maxv 
   1153  1.221      maxv 	/*
   1154  1.221      maxv 	 * The target data is on <n, off>. If we got enough data on the mbuf
   1155  1.221      maxv 	 * "n", we're done.
   1156  1.221      maxv 	 */
   1157  1.221      maxv #ifdef __NO_STRICT_ALIGNMENT
   1158  1.221      maxv 	if ((off == 0 || offp) && len <= n->m_len - off && !sharedcluster)
   1159  1.221      maxv #else
   1160  1.221      maxv 	if ((off == 0 || offp) && len <= n->m_len - off && !sharedcluster &&
   1161  1.221      maxv 	    ALIGNED_POINTER((mtod(n, char *) + off), uint32_t))
   1162  1.221      maxv #endif
   1163  1.221      maxv 		goto ok;
   1164  1.221      maxv 
   1165  1.221      maxv 	/*
   1166  1.221      maxv 	 * When (len <= n->m_len - off) and (off != 0), it is a special case.
   1167  1.221      maxv 	 * Len bytes from <n, off> sit in single mbuf, but the caller does
   1168  1.221      maxv 	 * not like the starting position (off).
   1169  1.221      maxv 	 *
   1170  1.221      maxv 	 * Chop the current mbuf into two pieces, set off to 0.
   1171  1.221      maxv 	 */
   1172  1.221      maxv 	if (len <= n->m_len - off) {
   1173  1.221      maxv 		struct mbuf *mlast;
   1174  1.221      maxv 
   1175  1.221      maxv 		o = m_dup(n, off, n->m_len - off, M_DONTWAIT);
   1176  1.221      maxv 		if (o == NULL) {
   1177  1.221      maxv 			m_freem(m);
   1178  1.221      maxv 			return NULL;	/* ENOBUFS */
   1179  1.221      maxv 		}
   1180  1.249  riastrad 		KASSERTMSG(o->m_len >= len, "o=%p o->m_len=%d len=%d",
   1181  1.249  riastrad 		    o, o->m_len, len);
   1182  1.221      maxv 		for (mlast = o; mlast->m_next != NULL; mlast = mlast->m_next)
   1183  1.221      maxv 			;
   1184  1.221      maxv 		n->m_len = off;
   1185  1.221      maxv 		mlast->m_next = n->m_next;
   1186  1.221      maxv 		n->m_next = o;
   1187  1.221      maxv 		n = o;
   1188  1.221      maxv 		off = 0;
   1189  1.221      maxv 		goto ok;
   1190  1.221      maxv 	}
   1191  1.221      maxv 
   1192  1.221      maxv 	/*
   1193  1.221      maxv 	 * We need to take hlen from <n, off> and tlen from <n->m_next, 0>,
   1194  1.221      maxv 	 * and construct contiguous mbuf with m_len == len.
   1195  1.221      maxv 	 *
   1196  1.221      maxv 	 * Note that hlen + tlen == len, and tlen > 0.
   1197  1.221      maxv 	 */
   1198  1.221      maxv 	hlen = n->m_len - off;
   1199  1.221      maxv 	tlen = len - hlen;
   1200  1.221      maxv 
   1201  1.221      maxv 	/*
   1202  1.221      maxv 	 * Ensure that we have enough trailing data on mbuf chain. If not,
   1203  1.221      maxv 	 * we can do nothing about the chain.
   1204  1.221      maxv 	 */
   1205  1.221      maxv 	olen = 0;
   1206  1.221      maxv 	for (o = n->m_next; o != NULL; o = o->m_next)
   1207  1.221      maxv 		olen += o->m_len;
   1208  1.221      maxv 	if (hlen + olen < len) {
   1209  1.221      maxv 		m_freem(m);
   1210  1.221      maxv 		return NULL;	/* mbuf chain too short */
   1211  1.221      maxv 	}
   1212  1.221      maxv 
   1213  1.221      maxv 	/*
   1214  1.221      maxv 	 * Easy cases first. We need to use m_copydata() to get data from
   1215  1.221      maxv 	 * <n->m_next, 0>.
   1216  1.221      maxv 	 */
   1217  1.221      maxv 	if ((off == 0 || offp) && M_TRAILINGSPACE(n) >= tlen &&
   1218  1.221      maxv 	    !sharedcluster) {
   1219  1.221      maxv 		m_copydata(n->m_next, 0, tlen, mtod(n, char *) + n->m_len);
   1220  1.221      maxv 		n->m_len += tlen;
   1221  1.221      maxv 		m_adj(n->m_next, tlen);
   1222  1.221      maxv 		goto ok;
   1223  1.221      maxv 	}
   1224  1.221      maxv 	if ((off == 0 || offp) && M_LEADINGSPACE(n->m_next) >= hlen &&
   1225  1.221      maxv #ifndef __NO_STRICT_ALIGNMENT
   1226  1.221      maxv 	    ALIGNED_POINTER((n->m_next->m_data - hlen), uint32_t) &&
   1227  1.221      maxv #endif
   1228  1.221      maxv 	    !sharedcluster && n->m_next->m_len >= tlen) {
   1229  1.221      maxv 		n->m_next->m_data -= hlen;
   1230  1.221      maxv 		n->m_next->m_len += hlen;
   1231  1.221      maxv 		memcpy(mtod(n->m_next, void *), mtod(n, char *) + off, hlen);
   1232  1.221      maxv 		n->m_len -= hlen;
   1233  1.221      maxv 		n = n->m_next;
   1234  1.221      maxv 		off = 0;
   1235  1.221      maxv 		goto ok;
   1236  1.221      maxv 	}
   1237  1.221      maxv 
   1238  1.221      maxv 	/*
   1239  1.221      maxv 	 * Now, we need to do the hard way. Don't copy as there's no room
   1240  1.221      maxv 	 * on both ends.
   1241  1.221      maxv 	 */
   1242  1.221      maxv 	o = m_get(M_DONTWAIT, m->m_type);
   1243  1.221      maxv 	if (o && len > MLEN) {
   1244  1.221      maxv 		MCLGET(o, M_DONTWAIT);
   1245  1.221      maxv 		if ((o->m_flags & M_EXT) == 0) {
   1246  1.221      maxv 			m_free(o);
   1247  1.221      maxv 			o = NULL;
   1248  1.221      maxv 		}
   1249  1.221      maxv 	}
   1250  1.221      maxv 	if (!o) {
   1251  1.221      maxv 		m_freem(m);
   1252  1.221      maxv 		return NULL;	/* ENOBUFS */
   1253  1.221      maxv 	}
   1254  1.221      maxv 	/* get hlen from <n, off> into <o, 0> */
   1255  1.221      maxv 	o->m_len = hlen;
   1256  1.221      maxv 	memcpy(mtod(o, void *), mtod(n, char *) + off, hlen);
   1257  1.221      maxv 	n->m_len -= hlen;
   1258  1.221      maxv 	/* get tlen from <n->m_next, 0> into <o, hlen> */
   1259  1.221      maxv 	m_copydata(n->m_next, 0, tlen, mtod(o, char *) + o->m_len);
   1260  1.221      maxv 	o->m_len += tlen;
   1261  1.221      maxv 	m_adj(n->m_next, tlen);
   1262  1.221      maxv 	o->m_next = n->m_next;
   1263  1.221      maxv 	n->m_next = o;
   1264  1.221      maxv 	n = o;
   1265  1.221      maxv 	off = 0;
   1266  1.221      maxv 
   1267  1.221      maxv ok:
   1268  1.221      maxv 	if (offp)
   1269  1.221      maxv 		*offp = off;
   1270  1.221      maxv 	return n;
   1271  1.221      maxv }
   1272  1.221      maxv 
   1273  1.221      maxv /*
   1274   1.60   thorpej  * Like m_pullup(), except a new mbuf is always allocated, and we allow
   1275   1.60   thorpej  * the amount of empty space before the data in the new mbuf to be specified
   1276   1.60   thorpej  * (in the event that the caller expects to prepend later).
   1277   1.60   thorpej  */
   1278   1.60   thorpej struct mbuf *
   1279   1.60   thorpej m_copyup(struct mbuf *n, int len, int dstoff)
   1280   1.60   thorpej {
   1281   1.60   thorpej 	struct mbuf *m;
   1282   1.60   thorpej 	int count, space;
   1283   1.60   thorpej 
   1284  1.156  christos 	KASSERT(len != M_COPYALL);
   1285  1.193      maxv 	if (len > ((int)MHLEN - dstoff))
   1286   1.60   thorpej 		goto bad;
   1287  1.153  christos 	m = m_get(M_DONTWAIT, n->m_type);
   1288   1.60   thorpej 	if (m == NULL)
   1289   1.60   thorpej 		goto bad;
   1290   1.64      matt 	MCLAIM(m, n->m_owner);
   1291   1.60   thorpej 	if (n->m_flags & M_PKTHDR) {
   1292  1.226      maxv 		m_move_pkthdr(m, n);
   1293   1.60   thorpej 	}
   1294   1.60   thorpej 	m->m_data += dstoff;
   1295   1.60   thorpej 	space = &m->m_dat[MLEN] - (m->m_data + m->m_len);
   1296   1.60   thorpej 	do {
   1297  1.219  riastrad 		count = uimin(uimin(uimax(len, max_protohdr), space), n->m_len);
   1298  1.119  christos 		memcpy(mtod(m, char *) + m->m_len, mtod(n, void *),
   1299   1.60   thorpej 		    (unsigned)count);
   1300   1.60   thorpej 		len -= count;
   1301   1.60   thorpej 		m->m_len += count;
   1302   1.60   thorpej 		n->m_len -= count;
   1303   1.60   thorpej 		space -= count;
   1304   1.60   thorpej 		if (n->m_len)
   1305   1.60   thorpej 			n->m_data += count;
   1306   1.60   thorpej 		else
   1307   1.60   thorpej 			n = m_free(n);
   1308   1.60   thorpej 	} while (len > 0 && n);
   1309   1.60   thorpej 	if (len > 0) {
   1310   1.60   thorpej 		(void) m_free(m);
   1311   1.60   thorpej 		goto bad;
   1312   1.60   thorpej 	}
   1313   1.60   thorpej 	m->m_next = n;
   1314  1.199      maxv 	return m;
   1315   1.60   thorpej  bad:
   1316   1.60   thorpej 	m_freem(n);
   1317  1.199      maxv 	return NULL;
   1318    1.9   mycroft }
   1319    1.9   mycroft 
   1320    1.9   mycroft struct mbuf *
   1321  1.195      maxv m_split(struct mbuf *m0, int len, int wait)
   1322    1.9   mycroft {
   1323  1.195      maxv 	return m_split_internal(m0, len, wait, true);
   1324   1.85      yamt }
   1325   1.85      yamt 
   1326   1.85      yamt static struct mbuf *
   1327  1.195      maxv m_split_internal(struct mbuf *m0, int len0, int wait, bool copyhdr)
   1328   1.85      yamt {
   1329   1.27      matt 	struct mbuf *m, *n;
   1330   1.22   thorpej 	unsigned len = len0, remain, len_save;
   1331    1.9   mycroft 
   1332  1.156  christos 	KASSERT(len0 != M_COPYALL);
   1333    1.9   mycroft 	for (m = m0; m && len > m->m_len; m = m->m_next)
   1334    1.9   mycroft 		len -= m->m_len;
   1335  1.181      maxv 	if (m == NULL)
   1336  1.181      maxv 		return NULL;
   1337  1.181      maxv 
   1338    1.9   mycroft 	remain = m->m_len - len;
   1339   1.85      yamt 	if (copyhdr && (m0->m_flags & M_PKTHDR)) {
   1340  1.153  christos 		n = m_gethdr(wait, m0->m_type);
   1341  1.153  christos 		if (n == NULL)
   1342  1.153  christos 			return NULL;
   1343  1.181      maxv 
   1344  1.112     pavel 		MCLAIM(n, m0->m_owner);
   1345  1.167     ozaki 		m_copy_rcvif(n, m0);
   1346    1.9   mycroft 		n->m_pkthdr.len = m0->m_pkthdr.len - len0;
   1347   1.22   thorpej 		len_save = m0->m_pkthdr.len;
   1348    1.9   mycroft 		m0->m_pkthdr.len = len0;
   1349  1.181      maxv 
   1350  1.252     ozaki 		if ((m->m_flags & M_EXT) == 0 && remain > MHLEN) {
   1351    1.9   mycroft 			/* m can't be the lead packet */
   1352  1.230      maxv 			m_align(n, 0);
   1353  1.132    bouyer 			n->m_len = 0;
   1354    1.9   mycroft 			n->m_next = m_split(m, len, wait);
   1355  1.181      maxv 			if (n->m_next == NULL) {
   1356  1.181      maxv 				(void)m_free(n);
   1357   1.22   thorpej 				m0->m_pkthdr.len = len_save;
   1358  1.181      maxv 				return NULL;
   1359  1.181      maxv 			}
   1360  1.181      maxv 			return n;
   1361  1.181      maxv 		}
   1362    1.9   mycroft 	} else if (remain == 0) {
   1363    1.9   mycroft 		n = m->m_next;
   1364  1.181      maxv 		m->m_next = NULL;
   1365  1.181      maxv 		return n;
   1366    1.9   mycroft 	} else {
   1367  1.153  christos 		n = m_get(wait, m->m_type);
   1368  1.181      maxv 		if (n == NULL)
   1369  1.181      maxv 			return NULL;
   1370   1.64      matt 		MCLAIM(n, m->m_owner);
   1371    1.9   mycroft 	}
   1372  1.181      maxv 
   1373    1.9   mycroft 	if (m->m_flags & M_EXT) {
   1374  1.125      yamt 		n->m_data = m->m_data + len;
   1375   1.18   thorpej 		MCLADDREFERENCE(m, n);
   1376    1.9   mycroft 	} else {
   1377  1.252     ozaki 		m_align(n, remain);
   1378  1.119  christos 		memcpy(mtod(n, void *), mtod(m, char *) + len, remain);
   1379    1.9   mycroft 	}
   1380  1.181      maxv 
   1381    1.9   mycroft 	n->m_len = remain;
   1382    1.9   mycroft 	m->m_len = len;
   1383    1.9   mycroft 	n->m_next = m->m_next;
   1384  1.181      maxv 	m->m_next = NULL;
   1385  1.181      maxv 	return n;
   1386    1.9   mycroft }
   1387  1.181      maxv 
   1388    1.9   mycroft /*
   1389    1.9   mycroft  * Routine to copy from device local memory into mbufs.
   1390    1.9   mycroft  */
   1391    1.9   mycroft struct mbuf *
   1392  1.225      maxv m_devget(char *buf, int totlen, int off, struct ifnet *ifp)
   1393    1.9   mycroft {
   1394   1.27      matt 	struct mbuf *m;
   1395  1.181      maxv 	struct mbuf *top = NULL, **mp = &top;
   1396  1.181      maxv 	char *cp, *epkt;
   1397  1.225      maxv 	int len;
   1398    1.9   mycroft 
   1399    1.9   mycroft 	cp = buf;
   1400    1.9   mycroft 	epkt = cp + totlen;
   1401    1.9   mycroft 	if (off) {
   1402   1.13       cgd 		/*
   1403   1.13       cgd 		 * If 'off' is non-zero, packet is trailer-encapsulated,
   1404   1.13       cgd 		 * so we have to skip the type and length fields.
   1405   1.13       cgd 		 */
   1406  1.104     perry 		cp += off + 2 * sizeof(uint16_t);
   1407  1.104     perry 		totlen -= 2 * sizeof(uint16_t);
   1408    1.9   mycroft 	}
   1409  1.181      maxv 
   1410  1.153  christos 	m = m_gethdr(M_DONTWAIT, MT_DATA);
   1411  1.153  christos 	if (m == NULL)
   1412  1.153  christos 		return NULL;
   1413  1.166     ozaki 	m_set_rcvif(m, ifp);
   1414    1.9   mycroft 	m->m_pkthdr.len = totlen;
   1415    1.9   mycroft 	m->m_len = MHLEN;
   1416    1.9   mycroft 
   1417    1.9   mycroft 	while (totlen > 0) {
   1418    1.9   mycroft 		if (top) {
   1419  1.153  christos 			m = m_get(M_DONTWAIT, MT_DATA);
   1420  1.181      maxv 			if (m == NULL) {
   1421    1.9   mycroft 				m_freem(top);
   1422  1.181      maxv 				return NULL;
   1423    1.9   mycroft 			}
   1424    1.9   mycroft 			m->m_len = MLEN;
   1425    1.9   mycroft 		}
   1426  1.181      maxv 
   1427  1.219  riastrad 		len = uimin(totlen, epkt - cp);
   1428  1.181      maxv 
   1429    1.9   mycroft 		if (len >= MINCLSIZE) {
   1430    1.9   mycroft 			MCLGET(m, M_DONTWAIT);
   1431   1.19   mycroft 			if ((m->m_flags & M_EXT) == 0) {
   1432   1.20   mycroft 				m_free(m);
   1433   1.19   mycroft 				m_freem(top);
   1434  1.181      maxv 				return NULL;
   1435   1.19   mycroft 			}
   1436  1.219  riastrad 			m->m_len = len = uimin(len, MCLBYTES);
   1437    1.9   mycroft 		} else {
   1438    1.9   mycroft 			/*
   1439    1.9   mycroft 			 * Place initial small packet/header at end of mbuf.
   1440    1.9   mycroft 			 */
   1441    1.9   mycroft 			if (len < m->m_len) {
   1442    1.9   mycroft 				if (top == 0 && len + max_linkhdr <= m->m_len)
   1443    1.9   mycroft 					m->m_data += max_linkhdr;
   1444    1.9   mycroft 				m->m_len = len;
   1445    1.9   mycroft 			} else
   1446    1.9   mycroft 				len = m->m_len;
   1447    1.9   mycroft 		}
   1448  1.181      maxv 
   1449  1.225      maxv 		memcpy(mtod(m, void *), cp, (size_t)len);
   1450  1.181      maxv 
   1451    1.9   mycroft 		cp += len;
   1452    1.9   mycroft 		*mp = m;
   1453    1.9   mycroft 		mp = &m->m_next;
   1454    1.9   mycroft 		totlen -= len;
   1455    1.9   mycroft 		if (cp == epkt)
   1456    1.9   mycroft 			cp = buf;
   1457    1.9   mycroft 	}
   1458  1.181      maxv 
   1459  1.181      maxv 	return top;
   1460   1.18   thorpej }
   1461   1.18   thorpej 
   1462   1.18   thorpej /*
   1463   1.18   thorpej  * Copy data from a buffer back into the indicated mbuf chain,
   1464   1.18   thorpej  * starting "off" bytes from the beginning, extending the mbuf
   1465   1.18   thorpej  * chain if necessary.
   1466   1.18   thorpej  */
   1467   1.18   thorpej void
   1468   1.86      yamt m_copyback(struct mbuf *m0, int off, int len, const void *cp)
   1469   1.18   thorpej {
   1470   1.85      yamt #if defined(DEBUG)
   1471   1.85      yamt 	struct mbuf *origm = m0;
   1472   1.85      yamt 	int error;
   1473  1.181      maxv #endif
   1474   1.85      yamt 
   1475   1.85      yamt 	if (m0 == NULL)
   1476   1.85      yamt 		return;
   1477   1.85      yamt 
   1478   1.85      yamt #if defined(DEBUG)
   1479   1.85      yamt 	error =
   1480  1.181      maxv #endif
   1481  1.196      maxv 	m_copyback_internal(&m0, off, len, cp, CB_COPYBACK|CB_EXTEND,
   1482  1.196      maxv 	    M_DONTWAIT);
   1483   1.85      yamt 
   1484   1.85      yamt #if defined(DEBUG)
   1485   1.85      yamt 	if (error != 0 || (m0 != NULL && origm != m0))
   1486   1.85      yamt 		panic("m_copyback");
   1487  1.181      maxv #endif
   1488   1.85      yamt }
   1489   1.85      yamt 
   1490   1.85      yamt struct mbuf *
   1491   1.86      yamt m_copyback_cow(struct mbuf *m0, int off, int len, const void *cp, int how)
   1492   1.85      yamt {
   1493   1.85      yamt 	int error;
   1494   1.85      yamt 
   1495   1.85      yamt 	/* don't support chain expansion */
   1496  1.156  christos 	KASSERT(len != M_COPYALL);
   1497   1.85      yamt 	KDASSERT(off + len <= m_length(m0));
   1498   1.85      yamt 
   1499  1.196      maxv 	error = m_copyback_internal(&m0, off, len, cp, CB_COPYBACK|CB_COW,
   1500  1.196      maxv 	    how);
   1501   1.85      yamt 	if (error) {
   1502   1.85      yamt 		/*
   1503   1.85      yamt 		 * no way to recover from partial success.
   1504   1.85      yamt 		 * just free the chain.
   1505   1.85      yamt 		 */
   1506   1.85      yamt 		m_freem(m0);
   1507   1.85      yamt 		return NULL;
   1508   1.85      yamt 	}
   1509   1.85      yamt 	return m0;
   1510   1.85      yamt }
   1511   1.85      yamt 
   1512   1.85      yamt int
   1513   1.85      yamt m_makewritable(struct mbuf **mp, int off, int len, int how)
   1514   1.85      yamt {
   1515   1.85      yamt 	int error;
   1516   1.85      yamt #if defined(DEBUG)
   1517  1.156  christos 	int origlen = m_length(*mp);
   1518  1.181      maxv #endif
   1519   1.85      yamt 
   1520  1.196      maxv 	error = m_copyback_internal(mp, off, len, NULL, CB_PRESERVE|CB_COW,
   1521  1.196      maxv 	    how);
   1522  1.170  christos 	if (error)
   1523  1.170  christos 		return error;
   1524  1.170  christos 
   1525   1.85      yamt #if defined(DEBUG)
   1526  1.156  christos 	int reslen = 0;
   1527  1.156  christos 	for (struct mbuf *n = *mp; n; n = n->m_next)
   1528   1.85      yamt 		reslen += n->m_len;
   1529   1.85      yamt 	if (origlen != reslen)
   1530   1.85      yamt 		panic("m_makewritable: length changed");
   1531   1.85      yamt 	if (((*mp)->m_flags & M_PKTHDR) != 0 && reslen != (*mp)->m_pkthdr.len)
   1532   1.85      yamt 		panic("m_makewritable: inconsist");
   1533  1.181      maxv #endif
   1534   1.85      yamt 
   1535  1.170  christos 	return 0;
   1536   1.85      yamt }
   1537   1.85      yamt 
   1538  1.196      maxv static int
   1539  1.196      maxv m_copyback_internal(struct mbuf **mp0, int off, int len, const void *vp,
   1540  1.196      maxv     int flags, int how)
   1541   1.85      yamt {
   1542   1.27      matt 	int mlen;
   1543   1.85      yamt 	struct mbuf *m, *n;
   1544   1.85      yamt 	struct mbuf **mp;
   1545   1.18   thorpej 	int totlen = 0;
   1546   1.86      yamt 	const char *cp = vp;
   1547   1.18   thorpej 
   1548   1.85      yamt 	KASSERT(mp0 != NULL);
   1549   1.85      yamt 	KASSERT(*mp0 != NULL);
   1550  1.196      maxv 	KASSERT((flags & CB_PRESERVE) == 0 || cp == NULL);
   1551  1.196      maxv 	KASSERT((flags & CB_COPYBACK) == 0 || cp != NULL);
   1552   1.85      yamt 
   1553  1.156  christos 	if (len == M_COPYALL)
   1554  1.156  christos 		len = m_length(*mp0) - off;
   1555  1.156  christos 
   1556  1.106      yamt 	/*
   1557  1.196      maxv 	 * we don't bother to update "totlen" in the case of CB_COW,
   1558  1.196      maxv 	 * assuming that CB_EXTEND and CB_COW are exclusive.
   1559  1.106      yamt 	 */
   1560  1.106      yamt 
   1561  1.196      maxv 	KASSERT((~flags & (CB_EXTEND|CB_COW)) != 0);
   1562  1.106      yamt 
   1563   1.85      yamt 	mp = mp0;
   1564   1.85      yamt 	m = *mp;
   1565   1.18   thorpej 	while (off > (mlen = m->m_len)) {
   1566   1.18   thorpej 		off -= mlen;
   1567   1.18   thorpej 		totlen += mlen;
   1568  1.109      yamt 		if (m->m_next == NULL) {
   1569  1.109      yamt 			int tspace;
   1570  1.109      yamt extend:
   1571  1.196      maxv 			if ((flags & CB_EXTEND) == 0)
   1572   1.85      yamt 				goto out;
   1573  1.109      yamt 
   1574  1.109      yamt 			/*
   1575  1.109      yamt 			 * try to make some space at the end of "m".
   1576  1.109      yamt 			 */
   1577  1.109      yamt 
   1578  1.109      yamt 			mlen = m->m_len;
   1579  1.109      yamt 			if (off + len >= MINCLSIZE &&
   1580  1.109      yamt 			    (m->m_flags & M_EXT) == 0 && m->m_len == 0) {
   1581  1.109      yamt 				MCLGET(m, how);
   1582  1.109      yamt 			}
   1583  1.109      yamt 			tspace = M_TRAILINGSPACE(m);
   1584  1.109      yamt 			if (tspace > 0) {
   1585  1.219  riastrad 				tspace = uimin(tspace, off + len);
   1586  1.109      yamt 				KASSERT(tspace > 0);
   1587  1.109      yamt 				memset(mtod(m, char *) + m->m_len, 0,
   1588  1.219  riastrad 				    uimin(off, tspace));
   1589  1.109      yamt 				m->m_len += tspace;
   1590  1.109      yamt 				off += mlen;
   1591  1.109      yamt 				totlen -= mlen;
   1592  1.109      yamt 				continue;
   1593  1.109      yamt 			}
   1594  1.109      yamt 
   1595  1.109      yamt 			/*
   1596  1.109      yamt 			 * need to allocate an mbuf.
   1597  1.109      yamt 			 */
   1598  1.109      yamt 
   1599  1.109      yamt 			if (off + len >= MINCLSIZE) {
   1600  1.109      yamt 				n = m_getcl(how, m->m_type, 0);
   1601  1.109      yamt 			} else {
   1602  1.109      yamt 				n = m_get(how, m->m_type);
   1603  1.109      yamt 			}
   1604  1.109      yamt 			if (n == NULL) {
   1605   1.18   thorpej 				goto out;
   1606  1.109      yamt 			}
   1607  1.219  riastrad 			n->m_len = uimin(M_TRAILINGSPACE(n), off + len);
   1608  1.219  riastrad 			memset(mtod(n, char *), 0, uimin(n->m_len, off));
   1609   1.18   thorpej 			m->m_next = n;
   1610   1.18   thorpej 		}
   1611   1.85      yamt 		mp = &m->m_next;
   1612   1.18   thorpej 		m = m->m_next;
   1613   1.18   thorpej 	}
   1614   1.18   thorpej 	while (len > 0) {
   1615   1.85      yamt 		mlen = m->m_len - off;
   1616   1.85      yamt 		if (mlen != 0 && M_READONLY(m)) {
   1617  1.196      maxv 			/*
   1618  1.196      maxv 			 * This mbuf is read-only. Allocate a new writable
   1619  1.196      maxv 			 * mbuf and try again.
   1620  1.196      maxv 			 */
   1621   1.85      yamt 			char *datap;
   1622   1.85      yamt 			int eatlen;
   1623   1.85      yamt 
   1624  1.196      maxv 			KASSERT((flags & CB_COW) != 0);
   1625   1.85      yamt 
   1626   1.85      yamt 			/*
   1627   1.85      yamt 			 * if we're going to write into the middle of
   1628   1.85      yamt 			 * a mbuf, split it first.
   1629   1.85      yamt 			 */
   1630  1.137     seanb 			if (off > 0) {
   1631  1.195      maxv 				n = m_split_internal(m, off, how, false);
   1632   1.85      yamt 				if (n == NULL)
   1633   1.85      yamt 					goto enobufs;
   1634   1.85      yamt 				m->m_next = n;
   1635   1.85      yamt 				mp = &m->m_next;
   1636   1.85      yamt 				m = n;
   1637   1.85      yamt 				off = 0;
   1638   1.85      yamt 				continue;
   1639   1.85      yamt 			}
   1640   1.85      yamt 
   1641   1.85      yamt 			/*
   1642   1.85      yamt 			 * XXX TODO coalesce into the trailingspace of
   1643   1.85      yamt 			 * the previous mbuf when possible.
   1644   1.85      yamt 			 */
   1645   1.85      yamt 
   1646   1.85      yamt 			/*
   1647   1.85      yamt 			 * allocate a new mbuf.  copy packet header if needed.
   1648   1.85      yamt 			 */
   1649  1.153  christos 			n = m_get(how, m->m_type);
   1650   1.85      yamt 			if (n == NULL)
   1651   1.85      yamt 				goto enobufs;
   1652   1.85      yamt 			MCLAIM(n, m->m_owner);
   1653   1.85      yamt 			if (off == 0 && (m->m_flags & M_PKTHDR) != 0) {
   1654  1.226      maxv 				m_move_pkthdr(n, m);
   1655   1.85      yamt 				n->m_len = MHLEN;
   1656   1.85      yamt 			} else {
   1657   1.85      yamt 				if (len >= MINCLSIZE)
   1658   1.85      yamt 					MCLGET(n, M_DONTWAIT);
   1659   1.85      yamt 				n->m_len =
   1660   1.85      yamt 				    (n->m_flags & M_EXT) ? MCLBYTES : MLEN;
   1661   1.85      yamt 			}
   1662   1.85      yamt 			if (n->m_len > len)
   1663   1.85      yamt 				n->m_len = len;
   1664   1.85      yamt 
   1665   1.85      yamt 			/*
   1666   1.85      yamt 			 * free the region which has been overwritten.
   1667   1.85      yamt 			 * copying data from old mbufs if requested.
   1668   1.85      yamt 			 */
   1669  1.196      maxv 			if (flags & CB_PRESERVE)
   1670   1.85      yamt 				datap = mtod(n, char *);
   1671   1.85      yamt 			else
   1672   1.85      yamt 				datap = NULL;
   1673   1.85      yamt 			eatlen = n->m_len;
   1674   1.85      yamt 			while (m != NULL && M_READONLY(m) &&
   1675   1.85      yamt 			    n->m_type == m->m_type && eatlen > 0) {
   1676  1.219  riastrad 				mlen = uimin(eatlen, m->m_len);
   1677   1.85      yamt 				if (datap) {
   1678   1.85      yamt 					m_copydata(m, 0, mlen, datap);
   1679   1.85      yamt 					datap += mlen;
   1680   1.85      yamt 				}
   1681   1.85      yamt 				m->m_data += mlen;
   1682   1.85      yamt 				m->m_len -= mlen;
   1683   1.85      yamt 				eatlen -= mlen;
   1684   1.85      yamt 				if (m->m_len == 0)
   1685   1.85      yamt 					*mp = m = m_free(m);
   1686   1.85      yamt 			}
   1687   1.85      yamt 			if (eatlen > 0)
   1688   1.85      yamt 				n->m_len -= eatlen;
   1689   1.85      yamt 			n->m_next = m;
   1690   1.85      yamt 			*mp = m = n;
   1691   1.85      yamt 			continue;
   1692   1.85      yamt 		}
   1693  1.219  riastrad 		mlen = uimin(mlen, len);
   1694  1.196      maxv 		if (flags & CB_COPYBACK) {
   1695  1.119  christos 			memcpy(mtod(m, char *) + off, cp, (unsigned)mlen);
   1696   1.85      yamt 			cp += mlen;
   1697   1.85      yamt 		}
   1698   1.18   thorpej 		len -= mlen;
   1699   1.18   thorpej 		mlen += off;
   1700   1.18   thorpej 		off = 0;
   1701   1.18   thorpej 		totlen += mlen;
   1702   1.18   thorpej 		if (len == 0)
   1703   1.18   thorpej 			break;
   1704  1.109      yamt 		if (m->m_next == NULL) {
   1705  1.109      yamt 			goto extend;
   1706   1.18   thorpej 		}
   1707   1.85      yamt 		mp = &m->m_next;
   1708   1.18   thorpej 		m = m->m_next;
   1709   1.18   thorpej 	}
   1710  1.199      maxv 
   1711  1.199      maxv out:
   1712  1.199      maxv 	if (((m = *mp0)->m_flags & M_PKTHDR) && (m->m_pkthdr.len < totlen)) {
   1713  1.196      maxv 		KASSERT((flags & CB_EXTEND) != 0);
   1714   1.18   thorpej 		m->m_pkthdr.len = totlen;
   1715  1.106      yamt 	}
   1716   1.85      yamt 
   1717   1.85      yamt 	return 0;
   1718   1.85      yamt 
   1719   1.85      yamt enobufs:
   1720  1.254  riastrad 	return SET_ERROR(ENOBUFS);
   1721   1.66   thorpej }
   1722   1.66   thorpej 
   1723  1.205      maxv /*
   1724  1.211      maxv  * Compress the mbuf chain. Return the new mbuf chain on success, NULL on
   1725  1.211      maxv  * failure. The first mbuf is preserved, and on success the pointer returned
   1726  1.211      maxv  * is the same as the one passed.
   1727  1.205      maxv  */
   1728  1.205      maxv struct mbuf *
   1729  1.212      maxv m_defrag(struct mbuf *m, int how)
   1730  1.205      maxv {
   1731  1.205      maxv 	struct mbuf *m0, *mn, *n;
   1732  1.211      maxv 	int sz;
   1733  1.205      maxv 
   1734  1.212      maxv 	KASSERT((m->m_flags & M_PKTHDR) != 0);
   1735  1.205      maxv 
   1736  1.212      maxv 	if (m->m_next == NULL)
   1737  1.212      maxv 		return m;
   1738  1.211      maxv 
   1739  1.238  jdolecek 	/* Defrag to single mbuf if at all possible */
   1740  1.240  jdolecek 	if ((m->m_flags & M_EXT) == 0 && m->m_pkthdr.len <= MCLBYTES) {
   1741  1.238  jdolecek 		if (m->m_pkthdr.len <= MHLEN) {
   1742  1.238  jdolecek 			if (M_TRAILINGSPACE(m) < (m->m_pkthdr.len - m->m_len)) {
   1743  1.241  jdolecek 				KASSERTMSG(M_LEADINGSPACE(m) +
   1744  1.241  jdolecek 				    M_TRAILINGSPACE(m) >=
   1745  1.241  jdolecek 				    (m->m_pkthdr.len - m->m_len),
   1746  1.241  jdolecek 				    "too small leading %d trailing %d ro? %d"
   1747  1.241  jdolecek 				    " pkthdr.len %d mlen %d",
   1748  1.241  jdolecek 				    (int)M_LEADINGSPACE(m),
   1749  1.241  jdolecek 				    (int)M_TRAILINGSPACE(m),
   1750  1.241  jdolecek 				    M_READONLY(m),
   1751  1.241  jdolecek 				    m->m_pkthdr.len, m->m_len);
   1752  1.241  jdolecek 
   1753  1.238  jdolecek 				memmove(m->m_pktdat, m->m_data, m->m_len);
   1754  1.238  jdolecek 				m->m_data = m->m_pktdat;
   1755  1.241  jdolecek 
   1756  1.241  jdolecek 				KASSERT(M_TRAILINGSPACE(m) >=
   1757  1.241  jdolecek 				    (m->m_pkthdr.len - m->m_len));
   1758  1.238  jdolecek 			}
   1759  1.240  jdolecek 		} else {
   1760  1.240  jdolecek 			/* Must copy data before adding cluster */
   1761  1.240  jdolecek 			m0 = m_get(how, MT_DATA);
   1762  1.240  jdolecek 			if (m0 == NULL)
   1763  1.240  jdolecek 				return NULL;
   1764  1.249  riastrad 			KASSERTMSG(m->m_len <= MHLEN,
   1765  1.249  riastrad 			    "m=%p m->m_len=%d MHLEN=%u",
   1766  1.249  riastrad 			    m, m->m_len, (unsigned)MHLEN);
   1767  1.240  jdolecek 			m_copydata(m, 0, m->m_len, mtod(m0, void *));
   1768  1.238  jdolecek 
   1769  1.238  jdolecek 			MCLGET(m, how);
   1770  1.240  jdolecek 			if ((m->m_flags & M_EXT) == 0) {
   1771  1.240  jdolecek 				m_free(m0);
   1772  1.238  jdolecek 				return NULL;
   1773  1.238  jdolecek 			}
   1774  1.240  jdolecek 			memcpy(m->m_data, mtod(m0, void *), m->m_len);
   1775  1.240  jdolecek 			m_free(m0);
   1776  1.238  jdolecek 		}
   1777  1.249  riastrad 		KASSERTMSG(M_TRAILINGSPACE(m) >= (m->m_pkthdr.len - m->m_len),
   1778  1.249  riastrad 		    "m=%p M_TRAILINGSPACE(m)=%zd m->m_pkthdr.len=%d"
   1779  1.249  riastrad 		    " m->m_len=%d",
   1780  1.249  riastrad 		    m, M_TRAILINGSPACE(m), m->m_pkthdr.len, m->m_len);
   1781  1.240  jdolecek 		m_copydata(m->m_next, 0, m->m_pkthdr.len - m->m_len,
   1782  1.240  jdolecek 			    mtod(m, char *) + m->m_len);
   1783  1.240  jdolecek 		m->m_len = m->m_pkthdr.len;
   1784  1.240  jdolecek 		m_freem(m->m_next);
   1785  1.240  jdolecek 		m->m_next = NULL;
   1786  1.240  jdolecek 		return m;
   1787  1.238  jdolecek 	}
   1788  1.238  jdolecek 
   1789  1.212      maxv 	m0 = m_get(how, MT_DATA);
   1790  1.205      maxv 	if (m0 == NULL)
   1791  1.205      maxv 		return NULL;
   1792  1.205      maxv 	mn = m0;
   1793  1.205      maxv 
   1794  1.212      maxv 	sz = m->m_pkthdr.len - m->m_len;
   1795  1.211      maxv 	KASSERT(sz >= 0);
   1796  1.211      maxv 
   1797  1.205      maxv 	do {
   1798  1.211      maxv 		if (sz > MLEN) {
   1799  1.212      maxv 			MCLGET(mn, how);
   1800  1.205      maxv 			if ((mn->m_flags & M_EXT) == 0) {
   1801  1.205      maxv 				m_freem(m0);
   1802  1.205      maxv 				return NULL;
   1803  1.205      maxv 			}
   1804  1.205      maxv 		}
   1805  1.205      maxv 
   1806  1.205      maxv 		mn->m_len = MIN(sz, MCLBYTES);
   1807  1.205      maxv 
   1808  1.212      maxv 		m_copydata(m, m->m_pkthdr.len - sz, mn->m_len,
   1809  1.205      maxv 		     mtod(mn, void *));
   1810  1.205      maxv 
   1811  1.205      maxv 		sz -= mn->m_len;
   1812  1.205      maxv 
   1813  1.205      maxv 		if (sz > 0) {
   1814  1.205      maxv 			/* need more mbufs */
   1815  1.212      maxv 			n = m_get(how, MT_DATA);
   1816  1.205      maxv 			if (n == NULL) {
   1817  1.205      maxv 				m_freem(m0);
   1818  1.205      maxv 				return NULL;
   1819  1.205      maxv 			}
   1820  1.205      maxv 
   1821  1.205      maxv 			mn->m_next = n;
   1822  1.205      maxv 			mn = n;
   1823  1.205      maxv 		}
   1824  1.205      maxv 	} while (sz > 0);
   1825  1.205      maxv 
   1826  1.212      maxv 	m_freem(m->m_next);
   1827  1.212      maxv 	m->m_next = m0;
   1828  1.205      maxv 
   1829  1.212      maxv 	return m;
   1830  1.205      maxv }
   1831  1.205      maxv 
   1832  1.205      maxv void
   1833  1.213      maxv m_remove_pkthdr(struct mbuf *m)
   1834  1.205      maxv {
   1835  1.205      maxv 	KASSERT(m->m_flags & M_PKTHDR);
   1836  1.205      maxv 
   1837  1.222      maxv 	m_tag_delete_chain(m);
   1838  1.205      maxv 	m->m_flags &= ~M_PKTHDR;
   1839  1.205      maxv 	memset(&m->m_pkthdr, 0, sizeof(m->m_pkthdr));
   1840  1.205      maxv }
   1841  1.205      maxv 
   1842  1.101      yamt void
   1843  1.202      maxv m_copy_pkthdr(struct mbuf *to, struct mbuf *from)
   1844  1.202      maxv {
   1845  1.215      maxv 	KASSERT((to->m_flags & M_EXT) == 0);
   1846  1.222      maxv 	KASSERT((to->m_flags & M_PKTHDR) == 0 ||
   1847  1.222      maxv 	    SLIST_FIRST(&to->m_pkthdr.tags) == NULL);
   1848  1.202      maxv 	KASSERT((from->m_flags & M_PKTHDR) != 0);
   1849  1.202      maxv 
   1850  1.202      maxv 	to->m_pkthdr = from->m_pkthdr;
   1851  1.202      maxv 	to->m_flags = from->m_flags & M_COPYFLAGS;
   1852  1.215      maxv 	to->m_data = to->m_pktdat;
   1853  1.215      maxv 
   1854  1.202      maxv 	SLIST_INIT(&to->m_pkthdr.tags);
   1855  1.202      maxv 	m_tag_copy_chain(to, from);
   1856  1.202      maxv }
   1857  1.202      maxv 
   1858  1.202      maxv void
   1859  1.101      yamt m_move_pkthdr(struct mbuf *to, struct mbuf *from)
   1860  1.101      yamt {
   1861  1.101      yamt 	KASSERT((to->m_flags & M_EXT) == 0);
   1862  1.222      maxv 	KASSERT((to->m_flags & M_PKTHDR) == 0 ||
   1863  1.222      maxv 	    SLIST_FIRST(&to->m_pkthdr.tags) == NULL);
   1864  1.101      yamt 	KASSERT((from->m_flags & M_PKTHDR) != 0);
   1865  1.101      yamt 
   1866  1.101      yamt 	to->m_pkthdr = from->m_pkthdr;
   1867  1.101      yamt 	to->m_flags = from->m_flags & M_COPYFLAGS;
   1868  1.101      yamt 	to->m_data = to->m_pktdat;
   1869  1.101      yamt 
   1870  1.101      yamt 	from->m_flags &= ~M_PKTHDR;
   1871  1.101      yamt }
   1872  1.101      yamt 
   1873   1.66   thorpej /*
   1874  1.227      maxv  * Set the m_data pointer of a newly-allocated mbuf to place an object of the
   1875  1.227      maxv  * specified size at the end of the mbuf, longword aligned.
   1876  1.227      maxv  */
   1877  1.227      maxv void
   1878  1.227      maxv m_align(struct mbuf *m, int len)
   1879  1.227      maxv {
   1880  1.227      maxv 	int buflen, adjust;
   1881  1.227      maxv 
   1882  1.227      maxv 	KASSERT(len != M_COPYALL);
   1883  1.249  riastrad 	KASSERTMSG(M_LEADINGSPACE(m) == 0, "m=%p M_LEADINGSPACE(m)=%zd",
   1884  1.249  riastrad 	    m, M_LEADINGSPACE(m));
   1885  1.227      maxv 
   1886  1.233      maxv 	buflen = M_BUFSIZE(m);
   1887  1.227      maxv 
   1888  1.249  riastrad 	KASSERTMSG(len <= buflen, "m=%p len=%d buflen=%d", m, len, buflen);
   1889  1.227      maxv 	adjust = buflen - len;
   1890  1.227      maxv 	m->m_data += adjust &~ (sizeof(long)-1);
   1891  1.227      maxv }
   1892  1.227      maxv 
   1893  1.227      maxv /*
   1894   1.66   thorpej  * Apply function f to the data in an mbuf chain starting "off" bytes from the
   1895   1.66   thorpej  * beginning, continuing for "len" bytes.
   1896   1.66   thorpej  */
   1897   1.66   thorpej int
   1898   1.66   thorpej m_apply(struct mbuf *m, int off, int len,
   1899  1.119  christos     int (*f)(void *, void *, unsigned int), void *arg)
   1900   1.66   thorpej {
   1901   1.66   thorpej 	unsigned int count;
   1902   1.66   thorpej 	int rval;
   1903   1.66   thorpej 
   1904  1.156  christos 	KASSERT(len != M_COPYALL);
   1905   1.66   thorpej 	KASSERT(len >= 0);
   1906   1.66   thorpej 	KASSERT(off >= 0);
   1907   1.66   thorpej 
   1908   1.66   thorpej 	while (off > 0) {
   1909   1.66   thorpej 		KASSERT(m != NULL);
   1910   1.66   thorpej 		if (off < m->m_len)
   1911   1.66   thorpej 			break;
   1912   1.66   thorpej 		off -= m->m_len;
   1913   1.66   thorpej 		m = m->m_next;
   1914   1.66   thorpej 	}
   1915   1.66   thorpej 	while (len > 0) {
   1916   1.66   thorpej 		KASSERT(m != NULL);
   1917  1.219  riastrad 		count = uimin(m->m_len - off, len);
   1918   1.66   thorpej 
   1919  1.119  christos 		rval = (*f)(arg, mtod(m, char *) + off, count);
   1920   1.66   thorpej 		if (rval)
   1921  1.181      maxv 			return rval;
   1922   1.66   thorpej 
   1923   1.66   thorpej 		len -= count;
   1924   1.66   thorpej 		off = 0;
   1925   1.66   thorpej 		m = m->m_next;
   1926   1.66   thorpej 	}
   1927   1.66   thorpej 
   1928  1.181      maxv 	return 0;
   1929   1.66   thorpej }
   1930   1.66   thorpej 
   1931   1.66   thorpej /*
   1932   1.66   thorpej  * Return a pointer to mbuf/offset of location in mbuf chain.
   1933   1.66   thorpej  */
   1934   1.66   thorpej struct mbuf *
   1935   1.66   thorpej m_getptr(struct mbuf *m, int loc, int *off)
   1936   1.66   thorpej {
   1937   1.66   thorpej 
   1938   1.66   thorpej 	while (loc >= 0) {
   1939   1.66   thorpej 		/* Normal end of search */
   1940   1.66   thorpej 		if (m->m_len > loc) {
   1941  1.177      maxv 			*off = loc;
   1942  1.181      maxv 			return m;
   1943  1.181      maxv 		}
   1944  1.181      maxv 
   1945  1.181      maxv 		loc -= m->m_len;
   1946  1.181      maxv 
   1947  1.181      maxv 		if (m->m_next == NULL) {
   1948  1.181      maxv 			if (loc == 0) {
   1949  1.181      maxv 				/* Point at the end of valid data */
   1950  1.181      maxv 				*off = m->m_len;
   1951  1.181      maxv 				return m;
   1952  1.181      maxv 			}
   1953  1.181      maxv 			return NULL;
   1954   1.66   thorpej 		} else {
   1955  1.181      maxv 			m = m->m_next;
   1956   1.66   thorpej 		}
   1957  1.177      maxv 	}
   1958   1.66   thorpej 
   1959  1.181      maxv 	return NULL;
   1960    1.1       cgd }
   1961  1.105      yamt 
   1962  1.221      maxv /*
   1963  1.221      maxv  * Release a reference to the mbuf external storage.
   1964  1.221      maxv  *
   1965  1.221      maxv  * => free the mbuf m itself as well.
   1966  1.221      maxv  */
   1967  1.221      maxv static void
   1968  1.221      maxv m_ext_free(struct mbuf *m)
   1969  1.221      maxv {
   1970  1.221      maxv 	const bool embedded = MEXT_ISEMBEDDED(m);
   1971  1.221      maxv 	bool dofree = true;
   1972  1.221      maxv 	u_int refcnt;
   1973  1.221      maxv 
   1974  1.221      maxv 	KASSERT((m->m_flags & M_EXT) != 0);
   1975  1.221      maxv 	KASSERT(MEXT_ISEMBEDDED(m->m_ext_ref));
   1976  1.221      maxv 	KASSERT((m->m_ext_ref->m_flags & M_EXT) != 0);
   1977  1.221      maxv 	KASSERT((m->m_flags & M_EXT_CLUSTER) ==
   1978  1.221      maxv 	    (m->m_ext_ref->m_flags & M_EXT_CLUSTER));
   1979  1.221      maxv 
   1980  1.221      maxv 	if (__predict_false(m->m_type == MT_FREE)) {
   1981  1.221      maxv 		panic("mbuf %p already freed", m);
   1982  1.221      maxv 	}
   1983  1.221      maxv 
   1984  1.221      maxv 	if (__predict_true(m->m_ext.ext_refcnt == 1)) {
   1985  1.221      maxv 		refcnt = m->m_ext.ext_refcnt = 0;
   1986  1.221      maxv 	} else {
   1987  1.246  riastrad 		membar_release();
   1988  1.221      maxv 		refcnt = atomic_dec_uint_nv(&m->m_ext.ext_refcnt);
   1989  1.221      maxv 	}
   1990  1.221      maxv 
   1991  1.221      maxv 	if (refcnt > 0) {
   1992  1.221      maxv 		if (embedded) {
   1993  1.221      maxv 			/*
   1994  1.221      maxv 			 * other mbuf's m_ext_ref still points to us.
   1995  1.221      maxv 			 */
   1996  1.221      maxv 			dofree = false;
   1997  1.221      maxv 		} else {
   1998  1.221      maxv 			m->m_ext_ref = m;
   1999  1.221      maxv 		}
   2000  1.221      maxv 	} else {
   2001  1.221      maxv 		/*
   2002  1.221      maxv 		 * dropping the last reference
   2003  1.221      maxv 		 */
   2004  1.246  riastrad 		membar_acquire();
   2005  1.221      maxv 		if (!embedded) {
   2006  1.221      maxv 			m->m_ext.ext_refcnt++; /* XXX */
   2007  1.221      maxv 			m_ext_free(m->m_ext_ref);
   2008  1.221      maxv 			m->m_ext_ref = m;
   2009  1.221      maxv 		} else if ((m->m_flags & M_EXT_CLUSTER) != 0) {
   2010  1.221      maxv 			pool_cache_put_paddr(mcl_cache,
   2011  1.221      maxv 			    m->m_ext.ext_buf, m->m_ext.ext_paddr);
   2012  1.221      maxv 		} else if (m->m_ext.ext_free) {
   2013  1.221      maxv 			(*m->m_ext.ext_free)(m,
   2014  1.221      maxv 			    m->m_ext.ext_buf, m->m_ext.ext_size,
   2015  1.221      maxv 			    m->m_ext.ext_arg);
   2016  1.221      maxv 			/*
   2017  1.221      maxv 			 * 'm' is already freed by the ext_free callback.
   2018  1.221      maxv 			 */
   2019  1.221      maxv 			dofree = false;
   2020  1.221      maxv 		} else {
   2021  1.221      maxv 			free(m->m_ext.ext_buf, 0);
   2022  1.221      maxv 		}
   2023  1.221      maxv 	}
   2024  1.221      maxv 
   2025  1.221      maxv 	if (dofree) {
   2026  1.221      maxv 		m->m_type = MT_FREE;
   2027  1.221      maxv 		m->m_data = NULL;
   2028  1.221      maxv 		pool_cache_put(mb_cache, m);
   2029  1.221      maxv 	}
   2030  1.221      maxv }
   2031  1.221      maxv 
   2032  1.221      maxv /*
   2033  1.221      maxv  * Free a single mbuf and associated external storage. Return the
   2034  1.221      maxv  * successor, if any.
   2035  1.221      maxv  */
   2036  1.221      maxv struct mbuf *
   2037  1.221      maxv m_free(struct mbuf *m)
   2038  1.221      maxv {
   2039  1.221      maxv 	struct mbuf *n;
   2040  1.221      maxv 
   2041  1.221      maxv 	mowner_revoke(m, 1, m->m_flags);
   2042  1.221      maxv 	mbstat_type_add(m->m_type, -1);
   2043  1.221      maxv 
   2044  1.221      maxv 	if (m->m_flags & M_PKTHDR)
   2045  1.222      maxv 		m_tag_delete_chain(m);
   2046  1.221      maxv 
   2047  1.221      maxv 	n = m->m_next;
   2048  1.221      maxv 
   2049  1.221      maxv 	if (m->m_flags & M_EXT) {
   2050  1.221      maxv 		m_ext_free(m);
   2051  1.221      maxv 	} else {
   2052  1.221      maxv 		if (__predict_false(m->m_type == MT_FREE)) {
   2053  1.221      maxv 			panic("mbuf %p already freed", m);
   2054  1.221      maxv 		}
   2055  1.221      maxv 		m->m_type = MT_FREE;
   2056  1.221      maxv 		m->m_data = NULL;
   2057  1.221      maxv 		pool_cache_put(mb_cache, m);
   2058  1.221      maxv 	}
   2059  1.221      maxv 
   2060  1.221      maxv 	return n;
   2061  1.221      maxv }
   2062  1.221      maxv 
   2063  1.221      maxv void
   2064  1.221      maxv m_freem(struct mbuf *m)
   2065  1.221      maxv {
   2066  1.221      maxv 	if (m == NULL)
   2067  1.221      maxv 		return;
   2068  1.221      maxv 	do {
   2069  1.221      maxv 		m = m_free(m);
   2070  1.221      maxv 	} while (m);
   2071  1.221      maxv }
   2072  1.221      maxv 
   2073  1.105      yamt #if defined(DDB)
   2074  1.105      yamt void
   2075  1.105      yamt m_print(const struct mbuf *m, const char *modif, void (*pr)(const char *, ...))
   2076  1.105      yamt {
   2077  1.105      yamt 	char ch;
   2078  1.118   thorpej 	bool opt_c = false;
   2079  1.216   msaitoh 	bool opt_d = false;
   2080  1.217   msaitoh #if NETHER > 0
   2081  1.216   msaitoh 	bool opt_v = false;
   2082  1.217   msaitoh 	const struct mbuf *m0 = NULL;
   2083  1.217   msaitoh #endif
   2084  1.216   msaitoh 	int no = 0;
   2085  1.105      yamt 	char buf[512];
   2086  1.105      yamt 
   2087  1.105      yamt 	while ((ch = *(modif++)) != '\0') {
   2088  1.105      yamt 		switch (ch) {
   2089  1.105      yamt 		case 'c':
   2090  1.118   thorpej 			opt_c = true;
   2091  1.105      yamt 			break;
   2092  1.216   msaitoh 		case 'd':
   2093  1.216   msaitoh 			opt_d = true;
   2094  1.216   msaitoh 			break;
   2095  1.217   msaitoh #if NETHER > 0
   2096  1.216   msaitoh 		case 'v':
   2097  1.216   msaitoh 			opt_v = true;
   2098  1.216   msaitoh 			m0 = m;
   2099  1.216   msaitoh 			break;
   2100  1.217   msaitoh #endif
   2101  1.217   msaitoh 		default:
   2102  1.217   msaitoh 			break;
   2103  1.105      yamt 		}
   2104  1.105      yamt 	}
   2105  1.105      yamt 
   2106  1.105      yamt nextchain:
   2107  1.216   msaitoh 	(*pr)("MBUF(%d) %p\n", no, m);
   2108  1.130  christos 	snprintb(buf, sizeof(buf), M_FLAGS_BITS, (u_int)m->m_flags);
   2109  1.138    cegger 	(*pr)("  data=%p, len=%d, type=%d, flags=%s\n",
   2110  1.105      yamt 	    m->m_data, m->m_len, m->m_type, buf);
   2111  1.216   msaitoh 	if (opt_d) {
   2112  1.216   msaitoh 		int i;
   2113  1.216   msaitoh 		unsigned char *p = m->m_data;
   2114  1.216   msaitoh 
   2115  1.216   msaitoh 		(*pr)("  data:");
   2116  1.216   msaitoh 
   2117  1.216   msaitoh 		for (i = 0; i < m->m_len; i++) {
   2118  1.216   msaitoh 			if (i % 16 == 0)
   2119  1.216   msaitoh 				(*pr)("\n");
   2120  1.216   msaitoh 			(*pr)(" %02x", p[i]);
   2121  1.216   msaitoh 		}
   2122  1.216   msaitoh 
   2123  1.216   msaitoh 		(*pr)("\n");
   2124  1.216   msaitoh 	}
   2125  1.105      yamt 	(*pr)("  owner=%p, next=%p, nextpkt=%p\n", m->m_owner, m->m_next,
   2126  1.105      yamt 	    m->m_nextpkt);
   2127  1.105      yamt 	(*pr)("  leadingspace=%u, trailingspace=%u, readonly=%u\n",
   2128  1.105      yamt 	    (int)M_LEADINGSPACE(m), (int)M_TRAILINGSPACE(m),
   2129  1.105      yamt 	    (int)M_READONLY(m));
   2130  1.105      yamt 	if ((m->m_flags & M_PKTHDR) != 0) {
   2131  1.130  christos 		snprintb(buf, sizeof(buf), M_CSUM_BITS, m->m_pkthdr.csum_flags);
   2132  1.172   msaitoh 		(*pr)("  pktlen=%d, rcvif=%p, csum_flags=%s, csum_data=0x%"
   2133  1.105      yamt 		    PRIx32 ", segsz=%u\n",
   2134  1.167     ozaki 		    m->m_pkthdr.len, m_get_rcvif_NOMPSAFE(m),
   2135  1.105      yamt 		    buf, m->m_pkthdr.csum_data, m->m_pkthdr.segsz);
   2136  1.105      yamt 	}
   2137  1.105      yamt 	if ((m->m_flags & M_EXT)) {
   2138  1.125      yamt 		(*pr)("  ext_refcnt=%u, ext_buf=%p, ext_size=%zd, "
   2139  1.105      yamt 		    "ext_free=%p, ext_arg=%p\n",
   2140  1.125      yamt 		    m->m_ext.ext_refcnt,
   2141  1.105      yamt 		    m->m_ext.ext_buf, m->m_ext.ext_size,
   2142  1.105      yamt 		    m->m_ext.ext_free, m->m_ext.ext_arg);
   2143  1.105      yamt 	}
   2144  1.105      yamt 	if ((~m->m_flags & (M_EXT|M_EXT_PAGES)) == 0) {
   2145  1.108      yamt 		vaddr_t sva = (vaddr_t)m->m_ext.ext_buf;
   2146  1.108      yamt 		vaddr_t eva = sva + m->m_ext.ext_size;
   2147  1.108      yamt 		int n = (round_page(eva) - trunc_page(sva)) >> PAGE_SHIFT;
   2148  1.108      yamt 		int i;
   2149  1.105      yamt 
   2150  1.105      yamt 		(*pr)("  pages:");
   2151  1.108      yamt 		for (i = 0; i < n; i ++) {
   2152  1.108      yamt 			(*pr)(" %p", m->m_ext.ext_pgs[i]);
   2153  1.105      yamt 		}
   2154  1.105      yamt 		(*pr)("\n");
   2155  1.105      yamt 	}
   2156  1.105      yamt 
   2157  1.105      yamt 	if (opt_c) {
   2158  1.105      yamt 		m = m->m_next;
   2159  1.105      yamt 		if (m != NULL) {
   2160  1.216   msaitoh 			no++;
   2161  1.105      yamt 			goto nextchain;
   2162  1.105      yamt 		}
   2163  1.105      yamt 	}
   2164  1.216   msaitoh 
   2165  1.217   msaitoh #if NETHER > 0
   2166  1.217   msaitoh 	if (opt_v && m0)
   2167  1.216   msaitoh 		m_examine(m0, AF_ETHER, modif, pr);
   2168  1.217   msaitoh #endif
   2169  1.105      yamt }
   2170  1.105      yamt #endif /* defined(DDB) */
   2171  1.124      yamt 
   2172  1.124      yamt #if defined(MBUFTRACE)
   2173  1.124      yamt void
   2174  1.237   thorpej mowner_init_owner(struct mowner *mo, const char *name, const char *descr)
   2175  1.237   thorpej {
   2176  1.237   thorpej 	memset(mo, 0, sizeof(*mo));
   2177  1.237   thorpej 	strlcpy(mo->mo_name, name, sizeof(mo->mo_name));
   2178  1.237   thorpej 	strlcpy(mo->mo_descr, descr, sizeof(mo->mo_descr));
   2179  1.237   thorpej }
   2180  1.237   thorpej 
   2181  1.237   thorpej void
   2182  1.124      yamt mowner_attach(struct mowner *mo)
   2183  1.124      yamt {
   2184  1.124      yamt 
   2185  1.124      yamt 	KASSERT(mo->mo_counters == NULL);
   2186  1.124      yamt 	mo->mo_counters = percpu_alloc(sizeof(struct mowner_counter));
   2187  1.124      yamt 
   2188  1.124      yamt 	/* XXX lock */
   2189  1.124      yamt 	LIST_INSERT_HEAD(&mowners, mo, mo_link);
   2190  1.124      yamt }
   2191  1.124      yamt 
   2192  1.124      yamt void
   2193  1.124      yamt mowner_detach(struct mowner *mo)
   2194  1.124      yamt {
   2195  1.124      yamt 
   2196  1.124      yamt 	KASSERT(mo->mo_counters != NULL);
   2197  1.124      yamt 
   2198  1.124      yamt 	/* XXX lock */
   2199  1.124      yamt 	LIST_REMOVE(mo, mo_link);
   2200  1.124      yamt 
   2201  1.124      yamt 	percpu_free(mo->mo_counters, sizeof(struct mowner_counter));
   2202  1.124      yamt 	mo->mo_counters = NULL;
   2203  1.124      yamt }
   2204  1.124      yamt 
   2205  1.124      yamt void
   2206  1.124      yamt mowner_init(struct mbuf *m, int type)
   2207  1.124      yamt {
   2208  1.124      yamt 	struct mowner_counter *mc;
   2209  1.124      yamt 	struct mowner *mo;
   2210  1.124      yamt 	int s;
   2211  1.124      yamt 
   2212  1.124      yamt 	m->m_owner = mo = &unknown_mowners[type];
   2213  1.124      yamt 	s = splvm();
   2214  1.126   thorpej 	mc = percpu_getref(mo->mo_counters);
   2215  1.124      yamt 	mc->mc_counter[MOWNER_COUNTER_CLAIMS]++;
   2216  1.126   thorpej 	percpu_putref(mo->mo_counters);
   2217  1.124      yamt 	splx(s);
   2218  1.124      yamt }
   2219  1.124      yamt 
   2220  1.124      yamt void
   2221  1.124      yamt mowner_ref(struct mbuf *m, int flags)
   2222  1.124      yamt {
   2223  1.124      yamt 	struct mowner *mo = m->m_owner;
   2224  1.124      yamt 	struct mowner_counter *mc;
   2225  1.124      yamt 	int s;
   2226  1.124      yamt 
   2227  1.124      yamt 	s = splvm();
   2228  1.126   thorpej 	mc = percpu_getref(mo->mo_counters);
   2229  1.124      yamt 	if ((flags & M_EXT) != 0)
   2230  1.124      yamt 		mc->mc_counter[MOWNER_COUNTER_EXT_CLAIMS]++;
   2231  1.204      maxv 	if ((flags & M_EXT_CLUSTER) != 0)
   2232  1.124      yamt 		mc->mc_counter[MOWNER_COUNTER_CLUSTER_CLAIMS]++;
   2233  1.126   thorpej 	percpu_putref(mo->mo_counters);
   2234  1.124      yamt 	splx(s);
   2235  1.124      yamt }
   2236  1.124      yamt 
   2237  1.124      yamt void
   2238  1.124      yamt mowner_revoke(struct mbuf *m, bool all, int flags)
   2239  1.124      yamt {
   2240  1.124      yamt 	struct mowner *mo = m->m_owner;
   2241  1.124      yamt 	struct mowner_counter *mc;
   2242  1.124      yamt 	int s;
   2243  1.124      yamt 
   2244  1.124      yamt 	s = splvm();
   2245  1.126   thorpej 	mc = percpu_getref(mo->mo_counters);
   2246  1.124      yamt 	if ((flags & M_EXT) != 0)
   2247  1.124      yamt 		mc->mc_counter[MOWNER_COUNTER_EXT_RELEASES]++;
   2248  1.204      maxv 	if ((flags & M_EXT_CLUSTER) != 0)
   2249  1.124      yamt 		mc->mc_counter[MOWNER_COUNTER_CLUSTER_RELEASES]++;
   2250  1.124      yamt 	if (all)
   2251  1.124      yamt 		mc->mc_counter[MOWNER_COUNTER_RELEASES]++;
   2252  1.126   thorpej 	percpu_putref(mo->mo_counters);
   2253  1.124      yamt 	splx(s);
   2254  1.124      yamt 	if (all)
   2255  1.124      yamt 		m->m_owner = &revoked_mowner;
   2256  1.124      yamt }
   2257  1.124      yamt 
   2258  1.124      yamt static void
   2259  1.124      yamt mowner_claim(struct mbuf *m, struct mowner *mo)
   2260  1.124      yamt {
   2261  1.124      yamt 	struct mowner_counter *mc;
   2262  1.124      yamt 	int flags = m->m_flags;
   2263  1.124      yamt 	int s;
   2264  1.124      yamt 
   2265  1.124      yamt 	s = splvm();
   2266  1.126   thorpej 	mc = percpu_getref(mo->mo_counters);
   2267  1.124      yamt 	mc->mc_counter[MOWNER_COUNTER_CLAIMS]++;
   2268  1.124      yamt 	if ((flags & M_EXT) != 0)
   2269  1.124      yamt 		mc->mc_counter[MOWNER_COUNTER_EXT_CLAIMS]++;
   2270  1.204      maxv 	if ((flags & M_EXT_CLUSTER) != 0)
   2271  1.124      yamt 		mc->mc_counter[MOWNER_COUNTER_CLUSTER_CLAIMS]++;
   2272  1.126   thorpej 	percpu_putref(mo->mo_counters);
   2273  1.124      yamt 	splx(s);
   2274  1.124      yamt 	m->m_owner = mo;
   2275  1.124      yamt }
   2276  1.124      yamt 
   2277  1.124      yamt void
   2278  1.124      yamt m_claim(struct mbuf *m, struct mowner *mo)
   2279  1.124      yamt {
   2280  1.124      yamt 
   2281  1.124      yamt 	if (m->m_owner == mo || mo == NULL)
   2282  1.124      yamt 		return;
   2283  1.124      yamt 
   2284  1.124      yamt 	mowner_revoke(m, true, m->m_flags);
   2285  1.124      yamt 	mowner_claim(m, mo);
   2286  1.124      yamt }
   2287  1.205      maxv 
   2288  1.205      maxv void
   2289  1.205      maxv m_claimm(struct mbuf *m, struct mowner *mo)
   2290  1.205      maxv {
   2291  1.205      maxv 
   2292  1.205      maxv 	for (; m != NULL; m = m->m_next)
   2293  1.205      maxv 		m_claim(m, mo);
   2294  1.205      maxv }
   2295  1.124      yamt #endif /* defined(MBUFTRACE) */
   2296  1.169  christos 
   2297  1.188      maxv #ifdef DIAGNOSTIC
   2298  1.188      maxv /*
   2299  1.188      maxv  * Verify that the mbuf chain is not malformed. Used only for diagnostic.
   2300  1.188      maxv  * Panics on error.
   2301  1.188      maxv  */
   2302  1.188      maxv void
   2303  1.188      maxv m_verify_packet(struct mbuf *m)
   2304  1.188      maxv {
   2305  1.188      maxv 	struct mbuf *n = m;
   2306  1.188      maxv 	char *low, *high, *dat;
   2307  1.188      maxv 	int totlen = 0, len;
   2308  1.188      maxv 
   2309  1.188      maxv 	if (__predict_false((m->m_flags & M_PKTHDR) == 0)) {
   2310  1.188      maxv 		panic("%s: mbuf doesn't have M_PKTHDR", __func__);
   2311  1.188      maxv 	}
   2312  1.188      maxv 
   2313  1.188      maxv 	while (n != NULL) {
   2314  1.188      maxv 		if (__predict_false(n->m_type == MT_FREE)) {
   2315  1.188      maxv 			panic("%s: mbuf already freed (n = %p)", __func__, n);
   2316  1.188      maxv 		}
   2317  1.191      maxv #if 0
   2318  1.191      maxv 		/*
   2319  1.191      maxv 		 * This ought to be a rule of the mbuf API. Unfortunately,
   2320  1.191      maxv 		 * many places don't respect that rule.
   2321  1.191      maxv 		 */
   2322  1.188      maxv 		if (__predict_false((n != m) && (n->m_flags & M_PKTHDR) != 0)) {
   2323  1.188      maxv 			panic("%s: M_PKTHDR set on secondary mbuf", __func__);
   2324  1.188      maxv 		}
   2325  1.189      maxv #endif
   2326  1.188      maxv 		if (__predict_false(n->m_nextpkt != NULL)) {
   2327  1.188      maxv 			panic("%s: m_nextpkt not null (m_nextpkt = %p)",
   2328  1.188      maxv 			    __func__, n->m_nextpkt);
   2329  1.188      maxv 		}
   2330  1.188      maxv 
   2331  1.188      maxv 		dat = n->m_data;
   2332  1.188      maxv 		len = n->m_len;
   2333  1.236      maxv 		if (__predict_false(len < 0)) {
   2334  1.188      maxv 			panic("%s: incorrect length (len = %d)", __func__, len);
   2335  1.188      maxv 		}
   2336  1.233      maxv 
   2337  1.233      maxv 		low = M_BUFADDR(n);
   2338  1.233      maxv 		high = low + M_BUFSIZE(n);
   2339  1.188      maxv 		if (__predict_false((dat < low) || (dat + len > high))) {
   2340  1.188      maxv 			panic("%s: m_data not in packet"
   2341  1.188      maxv 			    "(dat = %p, len = %d, low = %p, high = %p)",
   2342  1.188      maxv 			    __func__, dat, len, low, high);
   2343  1.188      maxv 		}
   2344  1.188      maxv 
   2345  1.188      maxv 		totlen += len;
   2346  1.188      maxv 		n = n->m_next;
   2347  1.188      maxv 	}
   2348  1.188      maxv 
   2349  1.188      maxv 	if (__predict_false(totlen != m->m_pkthdr.len)) {
   2350  1.188      maxv 		panic("%s: inconsistent mbuf length (%d != %d)", __func__,
   2351  1.188      maxv 		    totlen, m->m_pkthdr.len);
   2352  1.188      maxv 	}
   2353  1.188      maxv }
   2354  1.188      maxv #endif
   2355  1.188      maxv 
   2356  1.221      maxv struct m_tag *
   2357  1.221      maxv m_tag_get(int type, int len, int wait)
   2358  1.221      maxv {
   2359  1.221      maxv 	struct m_tag *t;
   2360  1.221      maxv 
   2361  1.221      maxv 	if (len < 0)
   2362  1.221      maxv 		return NULL;
   2363  1.221      maxv 	t = malloc(len + sizeof(struct m_tag), M_PACKET_TAGS, wait);
   2364  1.221      maxv 	if (t == NULL)
   2365  1.221      maxv 		return NULL;
   2366  1.221      maxv 	t->m_tag_id = type;
   2367  1.221      maxv 	t->m_tag_len = len;
   2368  1.221      maxv 	return t;
   2369  1.221      maxv }
   2370  1.221      maxv 
   2371  1.221      maxv void
   2372  1.221      maxv m_tag_free(struct m_tag *t)
   2373  1.221      maxv {
   2374  1.221      maxv 	free(t, M_PACKET_TAGS);
   2375  1.221      maxv }
   2376  1.221      maxv 
   2377  1.221      maxv void
   2378  1.221      maxv m_tag_prepend(struct mbuf *m, struct m_tag *t)
   2379  1.221      maxv {
   2380  1.224      maxv 	KASSERT((m->m_flags & M_PKTHDR) != 0);
   2381  1.221      maxv 	SLIST_INSERT_HEAD(&m->m_pkthdr.tags, t, m_tag_link);
   2382  1.221      maxv }
   2383  1.221      maxv 
   2384  1.221      maxv void
   2385  1.221      maxv m_tag_unlink(struct mbuf *m, struct m_tag *t)
   2386  1.221      maxv {
   2387  1.224      maxv 	KASSERT((m->m_flags & M_PKTHDR) != 0);
   2388  1.221      maxv 	SLIST_REMOVE(&m->m_pkthdr.tags, t, m_tag, m_tag_link);
   2389  1.221      maxv }
   2390  1.221      maxv 
   2391  1.221      maxv void
   2392  1.221      maxv m_tag_delete(struct mbuf *m, struct m_tag *t)
   2393  1.221      maxv {
   2394  1.221      maxv 	m_tag_unlink(m, t);
   2395  1.221      maxv 	m_tag_free(t);
   2396  1.221      maxv }
   2397  1.221      maxv 
   2398  1.221      maxv void
   2399  1.222      maxv m_tag_delete_chain(struct mbuf *m)
   2400  1.221      maxv {
   2401  1.221      maxv 	struct m_tag *p, *q;
   2402  1.221      maxv 
   2403  1.224      maxv 	KASSERT((m->m_flags & M_PKTHDR) != 0);
   2404  1.224      maxv 
   2405  1.222      maxv 	p = SLIST_FIRST(&m->m_pkthdr.tags);
   2406  1.221      maxv 	if (p == NULL)
   2407  1.221      maxv 		return;
   2408  1.221      maxv 	while ((q = SLIST_NEXT(p, m_tag_link)) != NULL)
   2409  1.221      maxv 		m_tag_delete(m, q);
   2410  1.221      maxv 	m_tag_delete(m, p);
   2411  1.221      maxv }
   2412  1.221      maxv 
   2413  1.221      maxv struct m_tag *
   2414  1.223      maxv m_tag_find(const struct mbuf *m, int type)
   2415  1.221      maxv {
   2416  1.221      maxv 	struct m_tag *p;
   2417  1.186      maxv 
   2418  1.224      maxv 	KASSERT((m->m_flags & M_PKTHDR) != 0);
   2419  1.224      maxv 
   2420  1.223      maxv 	p = SLIST_FIRST(&m->m_pkthdr.tags);
   2421  1.221      maxv 	while (p != NULL) {
   2422  1.221      maxv 		if (p->m_tag_id == type)
   2423  1.221      maxv 			return p;
   2424  1.221      maxv 		p = SLIST_NEXT(p, m_tag_link);
   2425  1.186      maxv 	}
   2426  1.221      maxv 	return NULL;
   2427  1.221      maxv }
   2428  1.186      maxv 
   2429  1.221      maxv struct m_tag *
   2430  1.221      maxv m_tag_copy(struct m_tag *t)
   2431  1.221      maxv {
   2432  1.221      maxv 	struct m_tag *p;
   2433  1.186      maxv 
   2434  1.221      maxv 	p = m_tag_get(t->m_tag_id, t->m_tag_len, M_NOWAIT);
   2435  1.221      maxv 	if (p == NULL)
   2436  1.221      maxv 		return NULL;
   2437  1.221      maxv 	memcpy(p + 1, t + 1, t->m_tag_len);
   2438  1.221      maxv 	return p;
   2439  1.186      maxv }
   2440  1.186      maxv 
   2441  1.186      maxv /*
   2442  1.221      maxv  * Copy two tag chains. The destination mbuf (to) loses any attached
   2443  1.221      maxv  * tags even if the operation fails. This should not be a problem, as
   2444  1.221      maxv  * m_tag_copy_chain() is typically called with a newly-allocated
   2445  1.221      maxv  * destination mbuf.
   2446  1.175      maxv  */
   2447  1.221      maxv int
   2448  1.221      maxv m_tag_copy_chain(struct mbuf *to, struct mbuf *from)
   2449  1.169  christos {
   2450  1.221      maxv 	struct m_tag *p, *t, *tprev = NULL;
   2451  1.169  christos 
   2452  1.224      maxv 	KASSERT((from->m_flags & M_PKTHDR) != 0);
   2453  1.224      maxv 
   2454  1.222      maxv 	m_tag_delete_chain(to);
   2455  1.221      maxv 	SLIST_FOREACH(p, &from->m_pkthdr.tags, m_tag_link) {
   2456  1.221      maxv 		t = m_tag_copy(p);
   2457  1.221      maxv 		if (t == NULL) {
   2458  1.222      maxv 			m_tag_delete_chain(to);
   2459  1.221      maxv 			return 0;
   2460  1.175      maxv 		}
   2461  1.221      maxv 		if (tprev == NULL)
   2462  1.221      maxv 			SLIST_INSERT_HEAD(&to->m_pkthdr.tags, t, m_tag_link);
   2463  1.221      maxv 		else
   2464  1.221      maxv 			SLIST_INSERT_AFTER(tprev, t, m_tag_link);
   2465  1.221      maxv 		tprev = t;
   2466  1.175      maxv 	}
   2467  1.221      maxv 	return 1;
   2468  1.221      maxv }
   2469