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