uipc_mbuf.c revision 1.122 1 1.122 ad /* $NetBSD: uipc_mbuf.c,v 1.122 2007/11/07 00:23:24 ad Exp $ */
2 1.42 thorpej
3 1.42 thorpej /*-
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 * 3. All advertising materials mentioning features or use of this software
20 1.42 thorpej * must display the following acknowledgement:
21 1.42 thorpej * This product includes software developed by the NetBSD
22 1.42 thorpej * Foundation, Inc. and its contributors.
23 1.42 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
24 1.42 thorpej * contributors may be used to endorse or promote products derived
25 1.42 thorpej * from this software without specific prior written permission.
26 1.42 thorpej *
27 1.42 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 1.42 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 1.42 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 1.42 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 1.42 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 1.42 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 1.42 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 1.42 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 1.42 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 1.42 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 1.42 thorpej * POSSIBILITY OF SUCH DAMAGE.
38 1.42 thorpej */
39 1.10 cgd
40 1.1 cgd /*
41 1.9 mycroft * Copyright (c) 1982, 1986, 1988, 1991, 1993
42 1.9 mycroft * The Regents of the University of California. All rights reserved.
43 1.1 cgd *
44 1.1 cgd * Redistribution and use in source and binary forms, with or without
45 1.1 cgd * modification, are permitted provided that the following conditions
46 1.1 cgd * are met:
47 1.1 cgd * 1. Redistributions of source code must retain the above copyright
48 1.1 cgd * notice, this list of conditions and the following disclaimer.
49 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
50 1.1 cgd * notice, this list of conditions and the following disclaimer in the
51 1.1 cgd * documentation and/or other materials provided with the distribution.
52 1.70 agc * 3. Neither the name of the University nor the names of its contributors
53 1.1 cgd * may be used to endorse or promote products derived from this software
54 1.1 cgd * without specific prior written permission.
55 1.1 cgd *
56 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
57 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
58 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
59 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
60 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
61 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
62 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
63 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
64 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
65 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
66 1.1 cgd * SUCH DAMAGE.
67 1.1 cgd *
68 1.26 fvdl * @(#)uipc_mbuf.c 8.4 (Berkeley) 2/14/95
69 1.1 cgd */
70 1.56 lukem
71 1.56 lukem #include <sys/cdefs.h>
72 1.122 ad __KERNEL_RCSID(0, "$NetBSD: uipc_mbuf.c,v 1.122 2007/11/07 00:23:24 ad Exp $");
73 1.69 martin
74 1.69 martin #include "opt_mbuftrace.h"
75 1.105 yamt #include "opt_ddb.h"
76 1.24 mrg
77 1.6 mycroft #include <sys/param.h>
78 1.6 mycroft #include <sys/systm.h>
79 1.6 mycroft #include <sys/proc.h>
80 1.6 mycroft #include <sys/malloc.h>
81 1.1 cgd #define MBTYPES
82 1.6 mycroft #include <sys/mbuf.h>
83 1.6 mycroft #include <sys/kernel.h>
84 1.6 mycroft #include <sys/syslog.h>
85 1.6 mycroft #include <sys/domain.h>
86 1.6 mycroft #include <sys/protosw.h>
87 1.28 thorpej #include <sys/pool.h>
88 1.27 matt #include <sys/socket.h>
89 1.55 simonb #include <sys/sysctl.h>
90 1.55 simonb
91 1.27 matt #include <net/if.h>
92 1.14 christos
93 1.65 thorpej #include <uvm/uvm.h>
94 1.23 mrg
95 1.122 ad pool_cache_t mb_cache; /* mbuf cache */
96 1.122 ad pool_cache_t mcl_cache; /* mbuf cluster cache */
97 1.53 thorpej
98 1.18 thorpej struct mbstat mbstat;
99 1.18 thorpej int max_linkhdr;
100 1.18 thorpej int max_protohdr;
101 1.18 thorpej int max_hdr;
102 1.18 thorpej int max_datalen;
103 1.18 thorpej
104 1.65 thorpej static int mb_ctor(void *, void *, int);
105 1.65 thorpej
106 1.103 thorpej static void *mclpool_alloc(struct pool *, int);
107 1.103 thorpej static void mclpool_release(struct pool *, void *);
108 1.58 thorpej
109 1.103 thorpej static struct pool_allocator mclpool_allocator = {
110 1.113 christos .pa_alloc = mclpool_alloc,
111 1.113 christos .pa_free = mclpool_release,
112 1.58 thorpej };
113 1.58 thorpej
114 1.79 junyoung static struct mbuf *m_copym0(struct mbuf *, int, int, int, int);
115 1.85 yamt static struct mbuf *m_split0(struct mbuf *, int, int, int);
116 1.86 yamt static int m_copyback0(struct mbuf **, int, int, const void *, int, int);
117 1.85 yamt
118 1.85 yamt /* flags for m_copyback0 */
119 1.85 yamt #define M_COPYBACK0_COPYBACK 0x0001 /* copyback from cp */
120 1.85 yamt #define M_COPYBACK0_PRESERVE 0x0002 /* preserve original data */
121 1.85 yamt #define M_COPYBACK0_COW 0x0004 /* do copy-on-write */
122 1.85 yamt #define M_COPYBACK0_EXTEND 0x0008 /* extend chain */
123 1.28 thorpej
124 1.103 thorpej static const char mclpool_warnmsg[] =
125 1.42 thorpej "WARNING: mclpool limit reached; increase NMBCLUSTERS";
126 1.63 thorpej
127 1.63 thorpej MALLOC_DEFINE(M_MBUF, "mbuf", "mbuf");
128 1.42 thorpej
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.28 thorpej /*
145 1.68 simonb * Initialize the mbuf allocator.
146 1.28 thorpej */
147 1.4 jtc void
148 1.62 thorpej mbinit(void)
149 1.1 cgd {
150 1.65 thorpej
151 1.65 thorpej KASSERT(sizeof(struct _m_ext) <= MHLEN);
152 1.67 simonb KASSERT(sizeof(struct mbuf) == MSIZE);
153 1.65 thorpej
154 1.111 yamt mclpool_allocator.pa_backingmap = mb_map;
155 1.53 thorpej
156 1.122 ad mb_cache = pool_cache_init(msize, 0, 0, 0, "mbpl",
157 1.122 ad NULL, IPL_VM, mb_ctor, NULL, NULL);
158 1.122 ad KASSERT(mb_cache != NULL);
159 1.122 ad
160 1.122 ad mcl_cache = pool_cache_init(mclbytes, 0, 0, 0, "mclpl",
161 1.122 ad &mclpool_allocator, IPL_VM, NULL, NULL, NULL);
162 1.122 ad KASSERT(mcl_cache != NULL);
163 1.59 thorpej
164 1.122 ad pool_cache_set_drain_hook(mb_cache, m_reclaim, NULL);
165 1.122 ad pool_cache_set_drain_hook(mcl_cache, m_reclaim, NULL);
166 1.37 thorpej
167 1.37 thorpej /*
168 1.39 thorpej * Set the hard limit on the mclpool to the number of
169 1.39 thorpej * mbuf clusters the kernel is to support. Log the limit
170 1.39 thorpej * reached message max once a minute.
171 1.39 thorpej */
172 1.122 ad pool_cache_sethardlimit(mcl_cache, nmbclusters, mclpool_warnmsg, 60);
173 1.42 thorpej
174 1.39 thorpej /*
175 1.42 thorpej * Set a low water mark for both mbufs and clusters. This should
176 1.42 thorpej * help ensure that they can be allocated in a memory starvation
177 1.42 thorpej * situation. This is important for e.g. diskless systems which
178 1.42 thorpej * must allocate mbufs in order for the pagedaemon to clean pages.
179 1.37 thorpej */
180 1.122 ad pool_cache_setlowat(mb_cache, mblowat);
181 1.122 ad pool_cache_setlowat(mcl_cache, mcllowat);
182 1.64 matt
183 1.64 matt #ifdef MBUFTRACE
184 1.64 matt {
185 1.64 matt /*
186 1.64 matt * Attach the unknown mowners.
187 1.64 matt */
188 1.64 matt int i;
189 1.64 matt MOWNER_ATTACH(&revoked_mowner);
190 1.64 matt for (i = sizeof(unknown_mowners)/sizeof(unknown_mowners[0]);
191 1.64 matt i-- > 0; )
192 1.64 matt MOWNER_ATTACH(&unknown_mowners[i]);
193 1.64 matt }
194 1.64 matt #endif
195 1.42 thorpej }
196 1.42 thorpej
197 1.75 atatat /*
198 1.75 atatat * sysctl helper routine for the kern.mbuf subtree. nmbclusters may
199 1.75 atatat * or may not be writable, and mblowat and mcllowat need range
200 1.75 atatat * checking and pool tweaking after being reset.
201 1.75 atatat */
202 1.75 atatat static int
203 1.75 atatat sysctl_kern_mbuf(SYSCTLFN_ARGS)
204 1.42 thorpej {
205 1.42 thorpej int error, newval;
206 1.75 atatat struct sysctlnode node;
207 1.42 thorpej
208 1.75 atatat node = *rnode;
209 1.75 atatat node.sysctl_data = &newval;
210 1.75 atatat switch (rnode->sysctl_num) {
211 1.42 thorpej case MBUF_NMBCLUSTERS:
212 1.76 atatat if (mb_map != NULL) {
213 1.80 atatat node.sysctl_flags &= ~CTLFLAG_READWRITE;
214 1.80 atatat node.sysctl_flags |= CTLFLAG_READONLY;
215 1.75 atatat }
216 1.75 atatat /* FALLTHROUGH */
217 1.42 thorpej case MBUF_MBLOWAT:
218 1.42 thorpej case MBUF_MCLLOWAT:
219 1.75 atatat newval = *(int*)rnode->sysctl_data;
220 1.75 atatat break;
221 1.75 atatat default:
222 1.75 atatat return (EOPNOTSUPP);
223 1.75 atatat }
224 1.75 atatat
225 1.75 atatat error = sysctl_lookup(SYSCTLFN_CALL(&node));
226 1.75 atatat if (error || newp == NULL)
227 1.42 thorpej return (error);
228 1.75 atatat if (newval < 0)
229 1.75 atatat return (EINVAL);
230 1.75 atatat
231 1.75 atatat switch (node.sysctl_num) {
232 1.75 atatat case MBUF_NMBCLUSTERS:
233 1.75 atatat if (newval < nmbclusters)
234 1.75 atatat return (EINVAL);
235 1.75 atatat nmbclusters = newval;
236 1.122 ad pool_cache_sethardlimit(mcl_cache, nmbclusters,
237 1.122 ad mclpool_warnmsg, 60);
238 1.75 atatat break;
239 1.75 atatat case MBUF_MBLOWAT:
240 1.75 atatat mblowat = newval;
241 1.122 ad pool_cache_setlowat(mb_cache, mblowat);
242 1.75 atatat break;
243 1.75 atatat case MBUF_MCLLOWAT:
244 1.76 atatat mcllowat = newval;
245 1.122 ad pool_cache_setlowat(mcl_cache, mcllowat);
246 1.75 atatat break;
247 1.75 atatat }
248 1.75 atatat
249 1.75 atatat return (0);
250 1.75 atatat }
251 1.75 atatat
252 1.64 matt #ifdef MBUFTRACE
253 1.75 atatat static int
254 1.75 atatat sysctl_kern_mbuf_mowners(SYSCTLFN_ARGS)
255 1.75 atatat {
256 1.75 atatat struct mowner *mo;
257 1.75 atatat size_t len = 0;
258 1.75 atatat int error = 0;
259 1.75 atatat
260 1.75 atatat if (namelen != 0)
261 1.75 atatat return (EINVAL);
262 1.75 atatat if (newp != NULL)
263 1.75 atatat return (EPERM);
264 1.75 atatat
265 1.75 atatat LIST_FOREACH(mo, &mowners, mo_link) {
266 1.75 atatat if (oldp != NULL) {
267 1.75 atatat if (*oldlenp - len < sizeof(*mo)) {
268 1.75 atatat error = ENOMEM;
269 1.75 atatat break;
270 1.75 atatat }
271 1.120 yamt error = copyout(mo, (char *)oldp + len, sizeof(*mo));
272 1.75 atatat if (error)
273 1.75 atatat break;
274 1.64 matt }
275 1.75 atatat len += sizeof(*mo);
276 1.75 atatat }
277 1.75 atatat
278 1.75 atatat if (error == 0)
279 1.64 matt *oldlenp = len;
280 1.75 atatat
281 1.75 atatat return (error);
282 1.75 atatat }
283 1.75 atatat #endif /* MBUFTRACE */
284 1.75 atatat
285 1.75 atatat SYSCTL_SETUP(sysctl_kern_mbuf_setup, "sysctl kern.mbuf subtree setup")
286 1.75 atatat {
287 1.75 atatat
288 1.80 atatat sysctl_createv(clog, 0, NULL, NULL,
289 1.80 atatat CTLFLAG_PERMANENT,
290 1.75 atatat CTLTYPE_NODE, "kern", NULL,
291 1.75 atatat NULL, 0, NULL, 0,
292 1.75 atatat CTL_KERN, CTL_EOL);
293 1.80 atatat sysctl_createv(clog, 0, NULL, NULL,
294 1.80 atatat CTLFLAG_PERMANENT,
295 1.82 atatat CTLTYPE_NODE, "mbuf",
296 1.82 atatat SYSCTL_DESCR("mbuf control variables"),
297 1.75 atatat NULL, 0, NULL, 0,
298 1.75 atatat CTL_KERN, KERN_MBUF, CTL_EOL);
299 1.75 atatat
300 1.80 atatat sysctl_createv(clog, 0, NULL, NULL,
301 1.80 atatat CTLFLAG_PERMANENT|CTLFLAG_IMMEDIATE,
302 1.82 atatat CTLTYPE_INT, "msize",
303 1.82 atatat SYSCTL_DESCR("mbuf base size"),
304 1.75 atatat NULL, msize, NULL, 0,
305 1.75 atatat CTL_KERN, KERN_MBUF, MBUF_MSIZE, CTL_EOL);
306 1.80 atatat sysctl_createv(clog, 0, NULL, NULL,
307 1.80 atatat CTLFLAG_PERMANENT|CTLFLAG_IMMEDIATE,
308 1.82 atatat CTLTYPE_INT, "mclbytes",
309 1.82 atatat SYSCTL_DESCR("mbuf cluster size"),
310 1.75 atatat NULL, mclbytes, NULL, 0,
311 1.75 atatat CTL_KERN, KERN_MBUF, MBUF_MCLBYTES, CTL_EOL);
312 1.80 atatat sysctl_createv(clog, 0, NULL, NULL,
313 1.80 atatat CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
314 1.82 atatat CTLTYPE_INT, "nmbclusters",
315 1.82 atatat SYSCTL_DESCR("Limit on the number of mbuf clusters"),
316 1.75 atatat sysctl_kern_mbuf, 0, &nmbclusters, 0,
317 1.75 atatat CTL_KERN, KERN_MBUF, MBUF_NMBCLUSTERS, CTL_EOL);
318 1.80 atatat sysctl_createv(clog, 0, NULL, NULL,
319 1.80 atatat CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
320 1.82 atatat CTLTYPE_INT, "mblowat",
321 1.82 atatat SYSCTL_DESCR("mbuf low water mark"),
322 1.75 atatat sysctl_kern_mbuf, 0, &mblowat, 0,
323 1.75 atatat CTL_KERN, KERN_MBUF, MBUF_MBLOWAT, CTL_EOL);
324 1.80 atatat sysctl_createv(clog, 0, NULL, NULL,
325 1.80 atatat CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
326 1.82 atatat CTLTYPE_INT, "mcllowat",
327 1.82 atatat SYSCTL_DESCR("mbuf cluster low water mark"),
328 1.75 atatat sysctl_kern_mbuf, 0, &mcllowat, 0,
329 1.75 atatat CTL_KERN, KERN_MBUF, MBUF_MCLLOWAT, CTL_EOL);
330 1.80 atatat sysctl_createv(clog, 0, NULL, NULL,
331 1.80 atatat CTLFLAG_PERMANENT,
332 1.82 atatat CTLTYPE_STRUCT, "stats",
333 1.82 atatat SYSCTL_DESCR("mbuf allocation statistics"),
334 1.75 atatat NULL, 0, &mbstat, sizeof(mbstat),
335 1.75 atatat CTL_KERN, KERN_MBUF, MBUF_STATS, CTL_EOL);
336 1.75 atatat #ifdef MBUFTRACE
337 1.80 atatat sysctl_createv(clog, 0, NULL, NULL,
338 1.80 atatat CTLFLAG_PERMANENT,
339 1.82 atatat CTLTYPE_STRUCT, "mowners",
340 1.82 atatat SYSCTL_DESCR("Information about mbuf owners"),
341 1.75 atatat sysctl_kern_mbuf_mowners, 0, NULL, 0,
342 1.75 atatat CTL_KERN, KERN_MBUF, MBUF_MOWNERS, CTL_EOL);
343 1.75 atatat #endif /* MBUFTRACE */
344 1.28 thorpej }
345 1.28 thorpej
346 1.103 thorpej static void *
347 1.116 yamt mclpool_alloc(struct pool *pp, int flags)
348 1.28 thorpej {
349 1.118 thorpej bool waitok = (flags & PR_WAITOK) ? true : false;
350 1.28 thorpej
351 1.93 yamt return ((void *)uvm_km_alloc_poolpage(mb_map, waitok));
352 1.1 cgd }
353 1.1 cgd
354 1.103 thorpej static void
355 1.116 yamt mclpool_release(struct pool *pp, void *v)
356 1.1 cgd {
357 1.1 cgd
358 1.93 yamt uvm_km_free_poolpage(mb_map, (vaddr_t)v);
359 1.65 thorpej }
360 1.65 thorpej
361 1.65 thorpej /*ARGSUSED*/
362 1.65 thorpej static int
363 1.116 yamt mb_ctor(void *arg, void *object, int flags)
364 1.65 thorpej {
365 1.65 thorpej struct mbuf *m = object;
366 1.65 thorpej
367 1.65 thorpej #ifdef POOL_VTOPHYS
368 1.65 thorpej m->m_paddr = POOL_VTOPHYS(m);
369 1.65 thorpej #else
370 1.65 thorpej m->m_paddr = M_PADDR_INVALID;
371 1.65 thorpej #endif
372 1.65 thorpej return (0);
373 1.1 cgd }
374 1.1 cgd
375 1.14 christos void
376 1.116 yamt m_reclaim(void *arg, int flags)
377 1.1 cgd {
378 1.27 matt struct domain *dp;
379 1.81 matt const struct protosw *pr;
380 1.27 matt struct ifnet *ifp;
381 1.122 ad int s;
382 1.1 cgd
383 1.122 ad KERNEL_LOCK(1, NULL);
384 1.122 ad s = splvm();
385 1.91 matt DOMAIN_FOREACH(dp) {
386 1.33 thorpej for (pr = dp->dom_protosw;
387 1.33 thorpej pr < dp->dom_protoswNPROTOSW; pr++)
388 1.33 thorpej if (pr->pr_drain)
389 1.33 thorpej (*pr->pr_drain)();
390 1.91 matt }
391 1.92 matt IFNET_FOREACH(ifp) {
392 1.27 matt if (ifp->if_drain)
393 1.27 matt (*ifp->if_drain)(ifp);
394 1.92 matt }
395 1.1 cgd splx(s);
396 1.1 cgd mbstat.m_drain++;
397 1.122 ad KERNEL_UNLOCK_ONE(NULL);
398 1.1 cgd }
399 1.1 cgd
400 1.1 cgd /*
401 1.1 cgd * Space allocation routines.
402 1.1 cgd * These are also available as macros
403 1.1 cgd * for critical paths.
404 1.1 cgd */
405 1.1 cgd struct mbuf *
406 1.62 thorpej m_get(int nowait, int type)
407 1.1 cgd {
408 1.27 matt struct mbuf *m;
409 1.1 cgd
410 1.5 cgd MGET(m, nowait, type);
411 1.1 cgd return (m);
412 1.1 cgd }
413 1.1 cgd
414 1.1 cgd struct mbuf *
415 1.62 thorpej m_gethdr(int nowait, int type)
416 1.1 cgd {
417 1.27 matt struct mbuf *m;
418 1.1 cgd
419 1.5 cgd MGETHDR(m, nowait, type);
420 1.1 cgd return (m);
421 1.1 cgd }
422 1.1 cgd
423 1.1 cgd struct mbuf *
424 1.62 thorpej m_getclr(int nowait, int type)
425 1.1 cgd {
426 1.27 matt struct mbuf *m;
427 1.1 cgd
428 1.5 cgd MGET(m, nowait, type);
429 1.1 cgd if (m == 0)
430 1.71 simonb return (NULL);
431 1.119 christos memset(mtod(m, void *), 0, MLEN);
432 1.1 cgd return (m);
433 1.1 cgd }
434 1.1 cgd
435 1.64 matt void
436 1.64 matt m_clget(struct mbuf *m, int nowait)
437 1.64 matt {
438 1.71 simonb
439 1.64 matt MCLGET(m, nowait);
440 1.64 matt }
441 1.64 matt
442 1.1 cgd struct mbuf *
443 1.62 thorpej m_free(struct mbuf *m)
444 1.1 cgd {
445 1.27 matt struct mbuf *n;
446 1.1 cgd
447 1.1 cgd MFREE(m, n);
448 1.1 cgd return (n);
449 1.1 cgd }
450 1.1 cgd
451 1.9 mycroft void
452 1.62 thorpej m_freem(struct mbuf *m)
453 1.1 cgd {
454 1.27 matt struct mbuf *n;
455 1.1 cgd
456 1.1 cgd if (m == NULL)
457 1.1 cgd return;
458 1.1 cgd do {
459 1.1 cgd MFREE(m, n);
460 1.18 thorpej m = n;
461 1.18 thorpej } while (m);
462 1.1 cgd }
463 1.1 cgd
464 1.64 matt #ifdef MBUFTRACE
465 1.83 jonathan /*
466 1.83 jonathan * Walk a chain of mbufs, claiming ownership of each mbuf in the chain.
467 1.83 jonathan */
468 1.64 matt void
469 1.83 jonathan m_claimm(struct mbuf *m, struct mowner *mo)
470 1.64 matt {
471 1.71 simonb
472 1.64 matt for (; m != NULL; m = m->m_next)
473 1.64 matt MCLAIM(m, mo);
474 1.64 matt }
475 1.64 matt #endif
476 1.64 matt
477 1.1 cgd /*
478 1.1 cgd * Mbuffer utility routines.
479 1.1 cgd */
480 1.1 cgd
481 1.1 cgd /*
482 1.1 cgd * Lesser-used path for M_PREPEND:
483 1.1 cgd * allocate new mbuf to prepend to chain,
484 1.1 cgd * copy junk along.
485 1.1 cgd */
486 1.1 cgd struct mbuf *
487 1.62 thorpej m_prepend(struct mbuf *m, int len, int how)
488 1.1 cgd {
489 1.1 cgd struct mbuf *mn;
490 1.1 cgd
491 1.9 mycroft MGET(mn, how, m->m_type);
492 1.1 cgd if (mn == (struct mbuf *)NULL) {
493 1.1 cgd m_freem(m);
494 1.1 cgd return ((struct mbuf *)NULL);
495 1.1 cgd }
496 1.1 cgd if (m->m_flags & M_PKTHDR) {
497 1.101 yamt M_MOVE_PKTHDR(mn, m);
498 1.64 matt } else {
499 1.64 matt MCLAIM(mn, m->m_owner);
500 1.1 cgd }
501 1.1 cgd mn->m_next = m;
502 1.1 cgd m = mn;
503 1.1 cgd if (len < MHLEN)
504 1.1 cgd MH_ALIGN(m, len);
505 1.1 cgd m->m_len = len;
506 1.1 cgd return (m);
507 1.1 cgd }
508 1.1 cgd
509 1.1 cgd /*
510 1.1 cgd * Make a copy of an mbuf chain starting "off0" bytes from the beginning,
511 1.1 cgd * continuing for "len" bytes. If len is M_COPYALL, copy to end of mbuf.
512 1.1 cgd * The wait parameter is a choice of M_WAIT/M_DONTWAIT from caller.
513 1.1 cgd */
514 1.1 cgd int MCFail;
515 1.1 cgd
516 1.1 cgd struct mbuf *
517 1.62 thorpej m_copym(struct mbuf *m, int off0, int len, int wait)
518 1.1 cgd {
519 1.71 simonb
520 1.44 itojun return m_copym0(m, off0, len, wait, 0); /* shallow copy on M_EXT */
521 1.44 itojun }
522 1.44 itojun
523 1.44 itojun struct mbuf *
524 1.62 thorpej m_dup(struct mbuf *m, int off0, int len, int wait)
525 1.44 itojun {
526 1.71 simonb
527 1.44 itojun return m_copym0(m, off0, len, wait, 1); /* deep copy */
528 1.44 itojun }
529 1.44 itojun
530 1.44 itojun static struct mbuf *
531 1.62 thorpej m_copym0(struct mbuf *m, int off0, int len, int wait, int deep)
532 1.44 itojun {
533 1.27 matt struct mbuf *n, **np;
534 1.27 matt int off = off0;
535 1.1 cgd struct mbuf *top;
536 1.1 cgd int copyhdr = 0;
537 1.1 cgd
538 1.1 cgd if (off < 0 || len < 0)
539 1.43 thorpej panic("m_copym: off %d, len %d", off, len);
540 1.1 cgd if (off == 0 && m->m_flags & M_PKTHDR)
541 1.1 cgd copyhdr = 1;
542 1.1 cgd while (off > 0) {
543 1.1 cgd if (m == 0)
544 1.90 matt panic("m_copym: m == 0, off %d", off);
545 1.1 cgd if (off < m->m_len)
546 1.1 cgd break;
547 1.1 cgd off -= m->m_len;
548 1.1 cgd m = m->m_next;
549 1.1 cgd }
550 1.1 cgd np = ⊤
551 1.1 cgd top = 0;
552 1.1 cgd while (len > 0) {
553 1.1 cgd if (m == 0) {
554 1.1 cgd if (len != M_COPYALL)
555 1.90 matt panic("m_copym: m == 0, len %d [!COPYALL]",
556 1.90 matt len);
557 1.1 cgd break;
558 1.1 cgd }
559 1.1 cgd MGET(n, wait, m->m_type);
560 1.1 cgd *np = n;
561 1.1 cgd if (n == 0)
562 1.1 cgd goto nospace;
563 1.64 matt MCLAIM(n, m->m_owner);
564 1.1 cgd if (copyhdr) {
565 1.1 cgd M_COPY_PKTHDR(n, m);
566 1.1 cgd if (len == M_COPYALL)
567 1.1 cgd n->m_pkthdr.len -= off0;
568 1.1 cgd else
569 1.1 cgd n->m_pkthdr.len = len;
570 1.1 cgd copyhdr = 0;
571 1.1 cgd }
572 1.9 mycroft n->m_len = min(len, m->m_len - off);
573 1.1 cgd if (m->m_flags & M_EXT) {
574 1.44 itojun if (!deep) {
575 1.44 itojun n->m_data = m->m_data + off;
576 1.44 itojun n->m_ext = m->m_ext;
577 1.44 itojun MCLADDREFERENCE(m, n);
578 1.44 itojun } else {
579 1.48 itojun /*
580 1.50 itojun * we are unsure about the way m was allocated.
581 1.50 itojun * copy into multiple MCLBYTES cluster mbufs.
582 1.48 itojun */
583 1.44 itojun MCLGET(n, wait);
584 1.50 itojun n->m_len = 0;
585 1.50 itojun n->m_len = M_TRAILINGSPACE(n);
586 1.50 itojun n->m_len = min(n->m_len, len);
587 1.50 itojun n->m_len = min(n->m_len, m->m_len - off);
588 1.119 christos memcpy(mtod(n, void *), mtod(m, char *) + off,
589 1.44 itojun (unsigned)n->m_len);
590 1.44 itojun }
591 1.1 cgd } else
592 1.119 christos memcpy(mtod(n, void *), mtod(m, char *) + off,
593 1.1 cgd (unsigned)n->m_len);
594 1.1 cgd if (len != M_COPYALL)
595 1.1 cgd len -= n->m_len;
596 1.50 itojun off += n->m_len;
597 1.50 itojun #ifdef DIAGNOSTIC
598 1.50 itojun if (off > m->m_len)
599 1.50 itojun panic("m_copym0 overrun");
600 1.50 itojun #endif
601 1.50 itojun if (off == m->m_len) {
602 1.50 itojun m = m->m_next;
603 1.50 itojun off = 0;
604 1.50 itojun }
605 1.1 cgd np = &n->m_next;
606 1.1 cgd }
607 1.1 cgd if (top == 0)
608 1.1 cgd MCFail++;
609 1.1 cgd return (top);
610 1.1 cgd nospace:
611 1.1 cgd m_freem(top);
612 1.1 cgd MCFail++;
613 1.71 simonb return (NULL);
614 1.1 cgd }
615 1.1 cgd
616 1.1 cgd /*
617 1.18 thorpej * Copy an entire packet, including header (which must be present).
618 1.18 thorpej * An optimization of the common case `m_copym(m, 0, M_COPYALL, how)'.
619 1.18 thorpej */
620 1.18 thorpej struct mbuf *
621 1.62 thorpej m_copypacket(struct mbuf *m, int how)
622 1.18 thorpej {
623 1.18 thorpej struct mbuf *top, *n, *o;
624 1.18 thorpej
625 1.18 thorpej MGET(n, how, m->m_type);
626 1.18 thorpej top = n;
627 1.18 thorpej if (!n)
628 1.18 thorpej goto nospace;
629 1.18 thorpej
630 1.64 matt MCLAIM(n, m->m_owner);
631 1.18 thorpej M_COPY_PKTHDR(n, m);
632 1.18 thorpej n->m_len = m->m_len;
633 1.18 thorpej if (m->m_flags & M_EXT) {
634 1.18 thorpej n->m_data = m->m_data;
635 1.18 thorpej n->m_ext = m->m_ext;
636 1.18 thorpej MCLADDREFERENCE(m, n);
637 1.18 thorpej } else {
638 1.30 perry memcpy(mtod(n, char *), mtod(m, char *), n->m_len);
639 1.18 thorpej }
640 1.18 thorpej
641 1.18 thorpej m = m->m_next;
642 1.18 thorpej while (m) {
643 1.18 thorpej MGET(o, how, m->m_type);
644 1.18 thorpej if (!o)
645 1.18 thorpej goto nospace;
646 1.18 thorpej
647 1.64 matt MCLAIM(o, m->m_owner);
648 1.18 thorpej n->m_next = o;
649 1.18 thorpej n = n->m_next;
650 1.18 thorpej
651 1.18 thorpej n->m_len = m->m_len;
652 1.18 thorpej if (m->m_flags & M_EXT) {
653 1.18 thorpej n->m_data = m->m_data;
654 1.18 thorpej n->m_ext = m->m_ext;
655 1.18 thorpej MCLADDREFERENCE(m, n);
656 1.18 thorpej } else {
657 1.30 perry memcpy(mtod(n, char *), mtod(m, char *), n->m_len);
658 1.18 thorpej }
659 1.18 thorpej
660 1.18 thorpej m = m->m_next;
661 1.18 thorpej }
662 1.18 thorpej return top;
663 1.18 thorpej nospace:
664 1.18 thorpej m_freem(top);
665 1.18 thorpej MCFail++;
666 1.71 simonb return NULL;
667 1.18 thorpej }
668 1.18 thorpej
669 1.18 thorpej /*
670 1.1 cgd * Copy data from an mbuf chain starting "off" bytes from the beginning,
671 1.1 cgd * continuing for "len" bytes, into the indicated buffer.
672 1.1 cgd */
673 1.14 christos void
674 1.100 martin m_copydata(struct mbuf *m, int off, int len, void *vp)
675 1.1 cgd {
676 1.94 tron unsigned count;
677 1.119 christos void * cp = vp;
678 1.1 cgd
679 1.1 cgd if (off < 0 || len < 0)
680 1.90 matt panic("m_copydata: off %d, len %d", off, len);
681 1.1 cgd while (off > 0) {
682 1.94 tron if (m == NULL)
683 1.94 tron panic("m_copydata: m == NULL, off %d", off);
684 1.1 cgd if (off < m->m_len)
685 1.1 cgd break;
686 1.1 cgd off -= m->m_len;
687 1.1 cgd m = m->m_next;
688 1.1 cgd }
689 1.1 cgd while (len > 0) {
690 1.94 tron if (m == NULL)
691 1.94 tron panic("m_copydata: m == NULL, len %d", len);
692 1.9 mycroft count = min(m->m_len - off, len);
693 1.119 christos memcpy(cp, mtod(m, char *) + off, count);
694 1.1 cgd len -= count;
695 1.119 christos cp = (char *)cp + count;
696 1.1 cgd off = 0;
697 1.1 cgd m = m->m_next;
698 1.1 cgd }
699 1.1 cgd }
700 1.1 cgd
701 1.1 cgd /*
702 1.1 cgd * Concatenate mbuf chain n to m.
703 1.72 itojun * n might be copied into m (when n->m_len is small), therefore data portion of
704 1.72 itojun * n could be copied into an mbuf of different mbuf type.
705 1.1 cgd * Any m_pkthdr is not updated.
706 1.1 cgd */
707 1.14 christos void
708 1.62 thorpej m_cat(struct mbuf *m, struct mbuf *n)
709 1.1 cgd {
710 1.73 yamt
711 1.1 cgd while (m->m_next)
712 1.1 cgd m = m->m_next;
713 1.1 cgd while (n) {
714 1.77 itojun if (M_READONLY(m) || n->m_len > M_TRAILINGSPACE(m)) {
715 1.1 cgd /* just join the two chains */
716 1.1 cgd m->m_next = n;
717 1.1 cgd return;
718 1.1 cgd }
719 1.1 cgd /* splat the data from one into the other */
720 1.119 christos memcpy(mtod(m, char *) + m->m_len, mtod(n, void *),
721 1.1 cgd (u_int)n->m_len);
722 1.1 cgd m->m_len += n->m_len;
723 1.1 cgd n = m_free(n);
724 1.1 cgd }
725 1.1 cgd }
726 1.1 cgd
727 1.11 mycroft void
728 1.62 thorpej m_adj(struct mbuf *mp, int req_len)
729 1.1 cgd {
730 1.27 matt int len = req_len;
731 1.27 matt struct mbuf *m;
732 1.27 matt int count;
733 1.1 cgd
734 1.1 cgd if ((m = mp) == NULL)
735 1.1 cgd return;
736 1.1 cgd if (len >= 0) {
737 1.1 cgd /*
738 1.1 cgd * Trim from head.
739 1.1 cgd */
740 1.1 cgd while (m != NULL && len > 0) {
741 1.1 cgd if (m->m_len <= len) {
742 1.1 cgd len -= m->m_len;
743 1.1 cgd m->m_len = 0;
744 1.1 cgd m = m->m_next;
745 1.1 cgd } else {
746 1.1 cgd m->m_len -= len;
747 1.1 cgd m->m_data += len;
748 1.1 cgd len = 0;
749 1.1 cgd }
750 1.1 cgd }
751 1.1 cgd m = mp;
752 1.1 cgd if (mp->m_flags & M_PKTHDR)
753 1.1 cgd m->m_pkthdr.len -= (req_len - len);
754 1.1 cgd } else {
755 1.1 cgd /*
756 1.1 cgd * Trim from tail. Scan the mbuf chain,
757 1.1 cgd * calculating its length and finding the last mbuf.
758 1.1 cgd * If the adjustment only affects this mbuf, then just
759 1.1 cgd * adjust and return. Otherwise, rescan and truncate
760 1.1 cgd * after the remaining size.
761 1.1 cgd */
762 1.1 cgd len = -len;
763 1.1 cgd count = 0;
764 1.1 cgd for (;;) {
765 1.1 cgd count += m->m_len;
766 1.1 cgd if (m->m_next == (struct mbuf *)0)
767 1.1 cgd break;
768 1.1 cgd m = m->m_next;
769 1.1 cgd }
770 1.1 cgd if (m->m_len >= len) {
771 1.1 cgd m->m_len -= len;
772 1.8 deraadt if (mp->m_flags & M_PKTHDR)
773 1.8 deraadt mp->m_pkthdr.len -= len;
774 1.1 cgd return;
775 1.1 cgd }
776 1.1 cgd count -= len;
777 1.1 cgd if (count < 0)
778 1.1 cgd count = 0;
779 1.1 cgd /*
780 1.1 cgd * Correct length for chain is "count".
781 1.1 cgd * Find the mbuf with last data, adjust its length,
782 1.1 cgd * and toss data from remaining mbufs on chain.
783 1.1 cgd */
784 1.1 cgd m = mp;
785 1.1 cgd if (m->m_flags & M_PKTHDR)
786 1.1 cgd m->m_pkthdr.len = count;
787 1.1 cgd for (; m; m = m->m_next) {
788 1.1 cgd if (m->m_len >= count) {
789 1.1 cgd m->m_len = count;
790 1.1 cgd break;
791 1.1 cgd }
792 1.1 cgd count -= m->m_len;
793 1.1 cgd }
794 1.110 christos if (m)
795 1.110 christos while (m->m_next)
796 1.110 christos (m = m->m_next)->m_len = 0;
797 1.1 cgd }
798 1.1 cgd }
799 1.1 cgd
800 1.1 cgd /*
801 1.102 skrll * Rearrange an mbuf chain so that len bytes are contiguous
802 1.1 cgd * and in the data area of an mbuf (so that mtod and dtom
803 1.1 cgd * will work for a structure of size len). Returns the resulting
804 1.1 cgd * mbuf chain on success, frees it and returns null on failure.
805 1.1 cgd * If there is room, it will add up to max_protohdr-len extra bytes to the
806 1.1 cgd * contiguous region in an attempt to avoid being called next time.
807 1.1 cgd */
808 1.1 cgd int MPFail;
809 1.1 cgd
810 1.1 cgd struct mbuf *
811 1.62 thorpej m_pullup(struct mbuf *n, int len)
812 1.1 cgd {
813 1.27 matt struct mbuf *m;
814 1.27 matt int count;
815 1.1 cgd int space;
816 1.1 cgd
817 1.1 cgd /*
818 1.1 cgd * If first mbuf has no cluster, and has room for len bytes
819 1.1 cgd * without shifting current data, pullup into it,
820 1.1 cgd * otherwise allocate a new mbuf to prepend to the chain.
821 1.1 cgd */
822 1.1 cgd if ((n->m_flags & M_EXT) == 0 &&
823 1.1 cgd n->m_data + len < &n->m_dat[MLEN] && n->m_next) {
824 1.1 cgd if (n->m_len >= len)
825 1.1 cgd return (n);
826 1.1 cgd m = n;
827 1.1 cgd n = n->m_next;
828 1.1 cgd len -= m->m_len;
829 1.1 cgd } else {
830 1.1 cgd if (len > MHLEN)
831 1.1 cgd goto bad;
832 1.1 cgd MGET(m, M_DONTWAIT, n->m_type);
833 1.1 cgd if (m == 0)
834 1.1 cgd goto bad;
835 1.64 matt MCLAIM(m, n->m_owner);
836 1.1 cgd m->m_len = 0;
837 1.1 cgd if (n->m_flags & M_PKTHDR) {
838 1.101 yamt M_MOVE_PKTHDR(m, n);
839 1.1 cgd }
840 1.1 cgd }
841 1.1 cgd space = &m->m_dat[MLEN] - (m->m_data + m->m_len);
842 1.1 cgd do {
843 1.1 cgd count = min(min(max(len, max_protohdr), space), n->m_len);
844 1.119 christos memcpy(mtod(m, char *) + m->m_len, mtod(n, void *),
845 1.1 cgd (unsigned)count);
846 1.1 cgd len -= count;
847 1.1 cgd m->m_len += count;
848 1.1 cgd n->m_len -= count;
849 1.1 cgd space -= count;
850 1.1 cgd if (n->m_len)
851 1.1 cgd n->m_data += count;
852 1.1 cgd else
853 1.1 cgd n = m_free(n);
854 1.1 cgd } while (len > 0 && n);
855 1.1 cgd if (len > 0) {
856 1.1 cgd (void) m_free(m);
857 1.1 cgd goto bad;
858 1.1 cgd }
859 1.1 cgd m->m_next = n;
860 1.1 cgd return (m);
861 1.1 cgd bad:
862 1.1 cgd m_freem(n);
863 1.1 cgd MPFail++;
864 1.71 simonb return (NULL);
865 1.60 thorpej }
866 1.60 thorpej
867 1.60 thorpej /*
868 1.60 thorpej * Like m_pullup(), except a new mbuf is always allocated, and we allow
869 1.60 thorpej * the amount of empty space before the data in the new mbuf to be specified
870 1.60 thorpej * (in the event that the caller expects to prepend later).
871 1.60 thorpej */
872 1.60 thorpej int MSFail;
873 1.60 thorpej
874 1.60 thorpej struct mbuf *
875 1.60 thorpej m_copyup(struct mbuf *n, int len, int dstoff)
876 1.60 thorpej {
877 1.60 thorpej struct mbuf *m;
878 1.60 thorpej int count, space;
879 1.60 thorpej
880 1.60 thorpej if (len > (MHLEN - dstoff))
881 1.60 thorpej goto bad;
882 1.60 thorpej MGET(m, M_DONTWAIT, n->m_type);
883 1.60 thorpej if (m == NULL)
884 1.60 thorpej goto bad;
885 1.64 matt MCLAIM(m, n->m_owner);
886 1.60 thorpej m->m_len = 0;
887 1.60 thorpej if (n->m_flags & M_PKTHDR) {
888 1.101 yamt M_MOVE_PKTHDR(m, n);
889 1.60 thorpej }
890 1.60 thorpej m->m_data += dstoff;
891 1.60 thorpej space = &m->m_dat[MLEN] - (m->m_data + m->m_len);
892 1.60 thorpej do {
893 1.60 thorpej count = min(min(max(len, max_protohdr), space), n->m_len);
894 1.119 christos memcpy(mtod(m, char *) + m->m_len, mtod(n, void *),
895 1.60 thorpej (unsigned)count);
896 1.60 thorpej len -= count;
897 1.60 thorpej m->m_len += count;
898 1.60 thorpej n->m_len -= count;
899 1.60 thorpej space -= count;
900 1.60 thorpej if (n->m_len)
901 1.60 thorpej n->m_data += count;
902 1.60 thorpej else
903 1.60 thorpej n = m_free(n);
904 1.60 thorpej } while (len > 0 && n);
905 1.60 thorpej if (len > 0) {
906 1.60 thorpej (void) m_free(m);
907 1.60 thorpej goto bad;
908 1.60 thorpej }
909 1.60 thorpej m->m_next = n;
910 1.60 thorpej return (m);
911 1.60 thorpej bad:
912 1.60 thorpej m_freem(n);
913 1.60 thorpej MSFail++;
914 1.60 thorpej return (NULL);
915 1.9 mycroft }
916 1.9 mycroft
917 1.9 mycroft /*
918 1.9 mycroft * Partition an mbuf chain in two pieces, returning the tail --
919 1.9 mycroft * all but the first len0 bytes. In case of failure, it returns NULL and
920 1.9 mycroft * attempts to restore the chain to its original state.
921 1.9 mycroft */
922 1.9 mycroft struct mbuf *
923 1.62 thorpej m_split(struct mbuf *m0, int len0, int wait)
924 1.9 mycroft {
925 1.85 yamt
926 1.87 yamt return m_split0(m0, len0, wait, 1);
927 1.85 yamt }
928 1.85 yamt
929 1.85 yamt static struct mbuf *
930 1.85 yamt m_split0(struct mbuf *m0, int len0, int wait, int copyhdr)
931 1.85 yamt {
932 1.27 matt struct mbuf *m, *n;
933 1.22 thorpej unsigned len = len0, remain, len_save;
934 1.9 mycroft
935 1.9 mycroft for (m = m0; m && len > m->m_len; m = m->m_next)
936 1.9 mycroft len -= m->m_len;
937 1.9 mycroft if (m == 0)
938 1.71 simonb return (NULL);
939 1.9 mycroft remain = m->m_len - len;
940 1.85 yamt if (copyhdr && (m0->m_flags & M_PKTHDR)) {
941 1.9 mycroft MGETHDR(n, wait, m0->m_type);
942 1.9 mycroft if (n == 0)
943 1.71 simonb return (NULL);
944 1.112 pavel MCLAIM(n, m0->m_owner);
945 1.9 mycroft n->m_pkthdr.rcvif = m0->m_pkthdr.rcvif;
946 1.9 mycroft n->m_pkthdr.len = m0->m_pkthdr.len - len0;
947 1.22 thorpej len_save = m0->m_pkthdr.len;
948 1.9 mycroft m0->m_pkthdr.len = len0;
949 1.9 mycroft if (m->m_flags & M_EXT)
950 1.9 mycroft goto extpacket;
951 1.9 mycroft if (remain > MHLEN) {
952 1.9 mycroft /* m can't be the lead packet */
953 1.9 mycroft MH_ALIGN(n, 0);
954 1.9 mycroft n->m_next = m_split(m, len, wait);
955 1.9 mycroft if (n->m_next == 0) {
956 1.9 mycroft (void) m_free(n);
957 1.22 thorpej m0->m_pkthdr.len = len_save;
958 1.71 simonb return (NULL);
959 1.9 mycroft } else
960 1.9 mycroft return (n);
961 1.9 mycroft } else
962 1.9 mycroft MH_ALIGN(n, remain);
963 1.9 mycroft } else if (remain == 0) {
964 1.9 mycroft n = m->m_next;
965 1.9 mycroft m->m_next = 0;
966 1.9 mycroft return (n);
967 1.9 mycroft } else {
968 1.9 mycroft MGET(n, wait, m->m_type);
969 1.9 mycroft if (n == 0)
970 1.71 simonb return (NULL);
971 1.64 matt MCLAIM(n, m->m_owner);
972 1.9 mycroft M_ALIGN(n, remain);
973 1.9 mycroft }
974 1.9 mycroft extpacket:
975 1.9 mycroft if (m->m_flags & M_EXT) {
976 1.9 mycroft n->m_ext = m->m_ext;
977 1.18 thorpej MCLADDREFERENCE(m, n);
978 1.9 mycroft n->m_data = m->m_data + len;
979 1.9 mycroft } else {
980 1.119 christos memcpy(mtod(n, void *), mtod(m, char *) + len, remain);
981 1.9 mycroft }
982 1.9 mycroft n->m_len = remain;
983 1.9 mycroft m->m_len = len;
984 1.9 mycroft n->m_next = m->m_next;
985 1.9 mycroft m->m_next = 0;
986 1.9 mycroft return (n);
987 1.9 mycroft }
988 1.9 mycroft /*
989 1.9 mycroft * Routine to copy from device local memory into mbufs.
990 1.9 mycroft */
991 1.9 mycroft struct mbuf *
992 1.62 thorpej m_devget(char *buf, int totlen, int off0, struct ifnet *ifp,
993 1.62 thorpej void (*copy)(const void *from, void *to, size_t len))
994 1.9 mycroft {
995 1.27 matt struct mbuf *m;
996 1.9 mycroft struct mbuf *top = 0, **mp = ⊤
997 1.27 matt int off = off0, len;
998 1.27 matt char *cp;
999 1.9 mycroft char *epkt;
1000 1.9 mycroft
1001 1.9 mycroft cp = buf;
1002 1.9 mycroft epkt = cp + totlen;
1003 1.9 mycroft if (off) {
1004 1.13 cgd /*
1005 1.13 cgd * If 'off' is non-zero, packet is trailer-encapsulated,
1006 1.13 cgd * so we have to skip the type and length fields.
1007 1.13 cgd */
1008 1.104 perry cp += off + 2 * sizeof(uint16_t);
1009 1.104 perry totlen -= 2 * sizeof(uint16_t);
1010 1.9 mycroft }
1011 1.9 mycroft MGETHDR(m, M_DONTWAIT, MT_DATA);
1012 1.9 mycroft if (m == 0)
1013 1.71 simonb return (NULL);
1014 1.9 mycroft m->m_pkthdr.rcvif = ifp;
1015 1.9 mycroft m->m_pkthdr.len = totlen;
1016 1.9 mycroft m->m_len = MHLEN;
1017 1.9 mycroft
1018 1.9 mycroft while (totlen > 0) {
1019 1.9 mycroft if (top) {
1020 1.9 mycroft MGET(m, M_DONTWAIT, MT_DATA);
1021 1.9 mycroft if (m == 0) {
1022 1.9 mycroft m_freem(top);
1023 1.71 simonb return (NULL);
1024 1.9 mycroft }
1025 1.9 mycroft m->m_len = MLEN;
1026 1.9 mycroft }
1027 1.9 mycroft len = min(totlen, epkt - cp);
1028 1.9 mycroft if (len >= MINCLSIZE) {
1029 1.9 mycroft MCLGET(m, M_DONTWAIT);
1030 1.19 mycroft if ((m->m_flags & M_EXT) == 0) {
1031 1.20 mycroft m_free(m);
1032 1.19 mycroft m_freem(top);
1033 1.71 simonb return (NULL);
1034 1.19 mycroft }
1035 1.19 mycroft m->m_len = len = min(len, MCLBYTES);
1036 1.9 mycroft } else {
1037 1.9 mycroft /*
1038 1.9 mycroft * Place initial small packet/header at end of mbuf.
1039 1.9 mycroft */
1040 1.9 mycroft if (len < m->m_len) {
1041 1.9 mycroft if (top == 0 && len + max_linkhdr <= m->m_len)
1042 1.9 mycroft m->m_data += max_linkhdr;
1043 1.9 mycroft m->m_len = len;
1044 1.9 mycroft } else
1045 1.9 mycroft len = m->m_len;
1046 1.9 mycroft }
1047 1.9 mycroft if (copy)
1048 1.119 christos copy(cp, mtod(m, void *), (size_t)len);
1049 1.9 mycroft else
1050 1.119 christos memcpy(mtod(m, void *), cp, (size_t)len);
1051 1.9 mycroft cp += len;
1052 1.9 mycroft *mp = m;
1053 1.9 mycroft mp = &m->m_next;
1054 1.9 mycroft totlen -= len;
1055 1.9 mycroft if (cp == epkt)
1056 1.9 mycroft cp = buf;
1057 1.9 mycroft }
1058 1.9 mycroft return (top);
1059 1.18 thorpej }
1060 1.18 thorpej
1061 1.18 thorpej /*
1062 1.18 thorpej * Copy data from a buffer back into the indicated mbuf chain,
1063 1.18 thorpej * starting "off" bytes from the beginning, extending the mbuf
1064 1.18 thorpej * chain if necessary.
1065 1.18 thorpej */
1066 1.18 thorpej void
1067 1.86 yamt m_copyback(struct mbuf *m0, int off, int len, const void *cp)
1068 1.18 thorpej {
1069 1.85 yamt #if defined(DEBUG)
1070 1.85 yamt struct mbuf *origm = m0;
1071 1.85 yamt int error;
1072 1.85 yamt #endif /* defined(DEBUG) */
1073 1.85 yamt
1074 1.85 yamt if (m0 == NULL)
1075 1.85 yamt return;
1076 1.85 yamt
1077 1.85 yamt #if defined(DEBUG)
1078 1.85 yamt error =
1079 1.85 yamt #endif /* defined(DEBUG) */
1080 1.85 yamt m_copyback0(&m0, off, len, cp,
1081 1.85 yamt M_COPYBACK0_COPYBACK|M_COPYBACK0_EXTEND, M_DONTWAIT);
1082 1.85 yamt
1083 1.85 yamt #if defined(DEBUG)
1084 1.85 yamt if (error != 0 || (m0 != NULL && origm != m0))
1085 1.85 yamt panic("m_copyback");
1086 1.85 yamt #endif /* defined(DEBUG) */
1087 1.85 yamt }
1088 1.85 yamt
1089 1.85 yamt struct mbuf *
1090 1.86 yamt m_copyback_cow(struct mbuf *m0, int off, int len, const void *cp, int how)
1091 1.85 yamt {
1092 1.85 yamt int error;
1093 1.85 yamt
1094 1.85 yamt /* don't support chain expansion */
1095 1.85 yamt KDASSERT(off + len <= m_length(m0));
1096 1.85 yamt
1097 1.85 yamt error = m_copyback0(&m0, off, len, cp,
1098 1.85 yamt M_COPYBACK0_COPYBACK|M_COPYBACK0_COW, how);
1099 1.85 yamt if (error) {
1100 1.85 yamt /*
1101 1.85 yamt * no way to recover from partial success.
1102 1.85 yamt * just free the chain.
1103 1.85 yamt */
1104 1.85 yamt m_freem(m0);
1105 1.85 yamt return NULL;
1106 1.85 yamt }
1107 1.85 yamt return m0;
1108 1.85 yamt }
1109 1.85 yamt
1110 1.85 yamt /*
1111 1.85 yamt * m_makewritable: ensure the specified range writable.
1112 1.85 yamt */
1113 1.85 yamt int
1114 1.85 yamt m_makewritable(struct mbuf **mp, int off, int len, int how)
1115 1.85 yamt {
1116 1.85 yamt int error;
1117 1.85 yamt #if defined(DEBUG)
1118 1.85 yamt struct mbuf *n;
1119 1.85 yamt int origlen, reslen;
1120 1.85 yamt
1121 1.85 yamt origlen = m_length(*mp);
1122 1.85 yamt #endif /* defined(DEBUG) */
1123 1.85 yamt
1124 1.85 yamt #if 0 /* M_COPYALL is large enough */
1125 1.85 yamt if (len == M_COPYALL)
1126 1.85 yamt len = m_length(*mp) - off; /* XXX */
1127 1.85 yamt #endif
1128 1.85 yamt
1129 1.85 yamt error = m_copyback0(mp, off, len, NULL,
1130 1.85 yamt M_COPYBACK0_PRESERVE|M_COPYBACK0_COW, how);
1131 1.85 yamt
1132 1.85 yamt #if defined(DEBUG)
1133 1.85 yamt reslen = 0;
1134 1.85 yamt for (n = *mp; n; n = n->m_next)
1135 1.85 yamt reslen += n->m_len;
1136 1.85 yamt if (origlen != reslen)
1137 1.85 yamt panic("m_makewritable: length changed");
1138 1.85 yamt if (((*mp)->m_flags & M_PKTHDR) != 0 && reslen != (*mp)->m_pkthdr.len)
1139 1.85 yamt panic("m_makewritable: inconsist");
1140 1.85 yamt #endif /* defined(DEBUG) */
1141 1.85 yamt
1142 1.85 yamt return error;
1143 1.85 yamt }
1144 1.85 yamt
1145 1.85 yamt int
1146 1.86 yamt m_copyback0(struct mbuf **mp0, int off, int len, const void *vp, int flags,
1147 1.86 yamt int how)
1148 1.85 yamt {
1149 1.27 matt int mlen;
1150 1.85 yamt struct mbuf *m, *n;
1151 1.85 yamt struct mbuf **mp;
1152 1.18 thorpej int totlen = 0;
1153 1.86 yamt const char *cp = vp;
1154 1.18 thorpej
1155 1.85 yamt KASSERT(mp0 != NULL);
1156 1.85 yamt KASSERT(*mp0 != NULL);
1157 1.85 yamt KASSERT((flags & M_COPYBACK0_PRESERVE) == 0 || cp == NULL);
1158 1.85 yamt KASSERT((flags & M_COPYBACK0_COPYBACK) == 0 || cp != NULL);
1159 1.85 yamt
1160 1.106 yamt /*
1161 1.106 yamt * we don't bother to update "totlen" in the case of M_COPYBACK0_COW,
1162 1.106 yamt * assuming that M_COPYBACK0_EXTEND and M_COPYBACK0_COW are exclusive.
1163 1.106 yamt */
1164 1.106 yamt
1165 1.106 yamt KASSERT((~flags & (M_COPYBACK0_EXTEND|M_COPYBACK0_COW)) != 0);
1166 1.106 yamt
1167 1.85 yamt mp = mp0;
1168 1.85 yamt m = *mp;
1169 1.18 thorpej while (off > (mlen = m->m_len)) {
1170 1.18 thorpej off -= mlen;
1171 1.18 thorpej totlen += mlen;
1172 1.109 yamt if (m->m_next == NULL) {
1173 1.109 yamt int tspace;
1174 1.109 yamt extend:
1175 1.85 yamt if ((flags & M_COPYBACK0_EXTEND) == 0)
1176 1.85 yamt goto out;
1177 1.109 yamt
1178 1.109 yamt /*
1179 1.109 yamt * try to make some space at the end of "m".
1180 1.109 yamt */
1181 1.109 yamt
1182 1.109 yamt mlen = m->m_len;
1183 1.109 yamt if (off + len >= MINCLSIZE &&
1184 1.109 yamt (m->m_flags & M_EXT) == 0 && m->m_len == 0) {
1185 1.109 yamt MCLGET(m, how);
1186 1.109 yamt }
1187 1.109 yamt tspace = M_TRAILINGSPACE(m);
1188 1.109 yamt if (tspace > 0) {
1189 1.109 yamt tspace = min(tspace, off + len);
1190 1.109 yamt KASSERT(tspace > 0);
1191 1.109 yamt memset(mtod(m, char *) + m->m_len, 0,
1192 1.109 yamt min(off, tspace));
1193 1.109 yamt m->m_len += tspace;
1194 1.109 yamt off += mlen;
1195 1.109 yamt totlen -= mlen;
1196 1.109 yamt continue;
1197 1.109 yamt }
1198 1.109 yamt
1199 1.109 yamt /*
1200 1.109 yamt * need to allocate an mbuf.
1201 1.109 yamt */
1202 1.109 yamt
1203 1.109 yamt if (off + len >= MINCLSIZE) {
1204 1.109 yamt n = m_getcl(how, m->m_type, 0);
1205 1.109 yamt } else {
1206 1.109 yamt n = m_get(how, m->m_type);
1207 1.109 yamt }
1208 1.109 yamt if (n == NULL) {
1209 1.18 thorpej goto out;
1210 1.109 yamt }
1211 1.109 yamt n->m_len = 0;
1212 1.109 yamt n->m_len = min(M_TRAILINGSPACE(n), off + len);
1213 1.109 yamt memset(mtod(n, char *), 0, min(n->m_len, off));
1214 1.18 thorpej m->m_next = n;
1215 1.18 thorpej }
1216 1.85 yamt mp = &m->m_next;
1217 1.18 thorpej m = m->m_next;
1218 1.18 thorpej }
1219 1.18 thorpej while (len > 0) {
1220 1.85 yamt mlen = m->m_len - off;
1221 1.85 yamt if (mlen != 0 && M_READONLY(m)) {
1222 1.85 yamt char *datap;
1223 1.85 yamt int eatlen;
1224 1.85 yamt
1225 1.85 yamt /*
1226 1.85 yamt * this mbuf is read-only.
1227 1.85 yamt * allocate a new writable mbuf and try again.
1228 1.85 yamt */
1229 1.85 yamt
1230 1.85 yamt #if defined(DIAGNOSTIC)
1231 1.85 yamt if ((flags & M_COPYBACK0_COW) == 0)
1232 1.85 yamt panic("m_copyback0: read-only");
1233 1.85 yamt #endif /* defined(DIAGNOSTIC) */
1234 1.85 yamt
1235 1.85 yamt /*
1236 1.85 yamt * if we're going to write into the middle of
1237 1.85 yamt * a mbuf, split it first.
1238 1.85 yamt */
1239 1.85 yamt if (off > 0 && len < mlen) {
1240 1.85 yamt n = m_split0(m, off, how, 0);
1241 1.85 yamt if (n == NULL)
1242 1.85 yamt goto enobufs;
1243 1.85 yamt m->m_next = n;
1244 1.85 yamt mp = &m->m_next;
1245 1.85 yamt m = n;
1246 1.85 yamt off = 0;
1247 1.85 yamt continue;
1248 1.85 yamt }
1249 1.85 yamt
1250 1.85 yamt /*
1251 1.85 yamt * XXX TODO coalesce into the trailingspace of
1252 1.85 yamt * the previous mbuf when possible.
1253 1.85 yamt */
1254 1.85 yamt
1255 1.85 yamt /*
1256 1.85 yamt * allocate a new mbuf. copy packet header if needed.
1257 1.85 yamt */
1258 1.85 yamt MGET(n, how, m->m_type);
1259 1.85 yamt if (n == NULL)
1260 1.85 yamt goto enobufs;
1261 1.85 yamt MCLAIM(n, m->m_owner);
1262 1.85 yamt if (off == 0 && (m->m_flags & M_PKTHDR) != 0) {
1263 1.101 yamt M_MOVE_PKTHDR(n, m);
1264 1.85 yamt n->m_len = MHLEN;
1265 1.85 yamt } else {
1266 1.85 yamt if (len >= MINCLSIZE)
1267 1.85 yamt MCLGET(n, M_DONTWAIT);
1268 1.85 yamt n->m_len =
1269 1.85 yamt (n->m_flags & M_EXT) ? MCLBYTES : MLEN;
1270 1.85 yamt }
1271 1.85 yamt if (n->m_len > len)
1272 1.85 yamt n->m_len = len;
1273 1.85 yamt
1274 1.85 yamt /*
1275 1.85 yamt * free the region which has been overwritten.
1276 1.85 yamt * copying data from old mbufs if requested.
1277 1.85 yamt */
1278 1.85 yamt if (flags & M_COPYBACK0_PRESERVE)
1279 1.85 yamt datap = mtod(n, char *);
1280 1.85 yamt else
1281 1.85 yamt datap = NULL;
1282 1.85 yamt eatlen = n->m_len;
1283 1.85 yamt KDASSERT(off == 0 || eatlen >= mlen);
1284 1.85 yamt if (off > 0) {
1285 1.85 yamt KDASSERT(len >= mlen);
1286 1.85 yamt m->m_len = off;
1287 1.85 yamt m->m_next = n;
1288 1.85 yamt if (datap) {
1289 1.85 yamt m_copydata(m, off, mlen, datap);
1290 1.85 yamt datap += mlen;
1291 1.85 yamt }
1292 1.85 yamt eatlen -= mlen;
1293 1.85 yamt mp = &m->m_next;
1294 1.85 yamt m = m->m_next;
1295 1.85 yamt }
1296 1.85 yamt while (m != NULL && M_READONLY(m) &&
1297 1.85 yamt n->m_type == m->m_type && eatlen > 0) {
1298 1.85 yamt mlen = min(eatlen, m->m_len);
1299 1.85 yamt if (datap) {
1300 1.85 yamt m_copydata(m, 0, mlen, datap);
1301 1.85 yamt datap += mlen;
1302 1.85 yamt }
1303 1.85 yamt m->m_data += mlen;
1304 1.85 yamt m->m_len -= mlen;
1305 1.85 yamt eatlen -= mlen;
1306 1.85 yamt if (m->m_len == 0)
1307 1.85 yamt *mp = m = m_free(m);
1308 1.85 yamt }
1309 1.85 yamt if (eatlen > 0)
1310 1.85 yamt n->m_len -= eatlen;
1311 1.85 yamt n->m_next = m;
1312 1.85 yamt *mp = m = n;
1313 1.85 yamt continue;
1314 1.85 yamt }
1315 1.85 yamt mlen = min(mlen, len);
1316 1.85 yamt if (flags & M_COPYBACK0_COPYBACK) {
1317 1.119 christos memcpy(mtod(m, char *) + off, cp, (unsigned)mlen);
1318 1.85 yamt cp += mlen;
1319 1.85 yamt }
1320 1.18 thorpej len -= mlen;
1321 1.18 thorpej mlen += off;
1322 1.18 thorpej off = 0;
1323 1.18 thorpej totlen += mlen;
1324 1.18 thorpej if (len == 0)
1325 1.18 thorpej break;
1326 1.109 yamt if (m->m_next == NULL) {
1327 1.109 yamt goto extend;
1328 1.18 thorpej }
1329 1.85 yamt mp = &m->m_next;
1330 1.18 thorpej m = m->m_next;
1331 1.18 thorpej }
1332 1.106 yamt out: if (((m = *mp0)->m_flags & M_PKTHDR) && (m->m_pkthdr.len < totlen)) {
1333 1.106 yamt KASSERT((flags & M_COPYBACK0_EXTEND) != 0);
1334 1.18 thorpej m->m_pkthdr.len = totlen;
1335 1.106 yamt }
1336 1.85 yamt
1337 1.85 yamt return 0;
1338 1.85 yamt
1339 1.85 yamt enobufs:
1340 1.85 yamt return ENOBUFS;
1341 1.66 thorpej }
1342 1.66 thorpej
1343 1.101 yamt void
1344 1.101 yamt m_move_pkthdr(struct mbuf *to, struct mbuf *from)
1345 1.101 yamt {
1346 1.101 yamt
1347 1.101 yamt KASSERT((to->m_flags & M_EXT) == 0);
1348 1.101 yamt KASSERT((to->m_flags & M_PKTHDR) == 0 || m_tag_first(to) == NULL);
1349 1.101 yamt KASSERT((from->m_flags & M_PKTHDR) != 0);
1350 1.101 yamt
1351 1.101 yamt to->m_pkthdr = from->m_pkthdr;
1352 1.101 yamt to->m_flags = from->m_flags & M_COPYFLAGS;
1353 1.101 yamt to->m_data = to->m_pktdat;
1354 1.101 yamt
1355 1.101 yamt from->m_flags &= ~M_PKTHDR;
1356 1.101 yamt }
1357 1.101 yamt
1358 1.66 thorpej /*
1359 1.66 thorpej * Apply function f to the data in an mbuf chain starting "off" bytes from the
1360 1.66 thorpej * beginning, continuing for "len" bytes.
1361 1.66 thorpej */
1362 1.66 thorpej int
1363 1.66 thorpej m_apply(struct mbuf *m, int off, int len,
1364 1.119 christos int (*f)(void *, void *, unsigned int), void *arg)
1365 1.66 thorpej {
1366 1.66 thorpej unsigned int count;
1367 1.66 thorpej int rval;
1368 1.66 thorpej
1369 1.66 thorpej KASSERT(len >= 0);
1370 1.66 thorpej KASSERT(off >= 0);
1371 1.66 thorpej
1372 1.66 thorpej while (off > 0) {
1373 1.66 thorpej KASSERT(m != NULL);
1374 1.66 thorpej if (off < m->m_len)
1375 1.66 thorpej break;
1376 1.66 thorpej off -= m->m_len;
1377 1.66 thorpej m = m->m_next;
1378 1.66 thorpej }
1379 1.66 thorpej while (len > 0) {
1380 1.66 thorpej KASSERT(m != NULL);
1381 1.66 thorpej count = min(m->m_len - off, len);
1382 1.66 thorpej
1383 1.119 christos rval = (*f)(arg, mtod(m, char *) + off, count);
1384 1.66 thorpej if (rval)
1385 1.66 thorpej return (rval);
1386 1.66 thorpej
1387 1.66 thorpej len -= count;
1388 1.66 thorpej off = 0;
1389 1.66 thorpej m = m->m_next;
1390 1.66 thorpej }
1391 1.66 thorpej
1392 1.66 thorpej return (0);
1393 1.66 thorpej }
1394 1.66 thorpej
1395 1.66 thorpej /*
1396 1.66 thorpej * Return a pointer to mbuf/offset of location in mbuf chain.
1397 1.66 thorpej */
1398 1.66 thorpej struct mbuf *
1399 1.66 thorpej m_getptr(struct mbuf *m, int loc, int *off)
1400 1.66 thorpej {
1401 1.66 thorpej
1402 1.66 thorpej while (loc >= 0) {
1403 1.66 thorpej /* Normal end of search */
1404 1.66 thorpej if (m->m_len > loc) {
1405 1.66 thorpej *off = loc;
1406 1.66 thorpej return (m);
1407 1.66 thorpej } else {
1408 1.66 thorpej loc -= m->m_len;
1409 1.66 thorpej
1410 1.66 thorpej if (m->m_next == NULL) {
1411 1.66 thorpej if (loc == 0) {
1412 1.66 thorpej /* Point at the end of valid data */
1413 1.66 thorpej *off = m->m_len;
1414 1.66 thorpej return (m);
1415 1.66 thorpej } else
1416 1.66 thorpej return (NULL);
1417 1.66 thorpej } else
1418 1.66 thorpej m = m->m_next;
1419 1.66 thorpej }
1420 1.66 thorpej }
1421 1.66 thorpej
1422 1.66 thorpej return (NULL);
1423 1.1 cgd }
1424 1.105 yamt
1425 1.105 yamt #if defined(DDB)
1426 1.105 yamt void
1427 1.105 yamt m_print(const struct mbuf *m, const char *modif, void (*pr)(const char *, ...))
1428 1.105 yamt {
1429 1.105 yamt char ch;
1430 1.118 thorpej bool opt_c = false;
1431 1.105 yamt char buf[512];
1432 1.105 yamt
1433 1.105 yamt while ((ch = *(modif++)) != '\0') {
1434 1.105 yamt switch (ch) {
1435 1.105 yamt case 'c':
1436 1.118 thorpej opt_c = true;
1437 1.105 yamt break;
1438 1.105 yamt }
1439 1.105 yamt }
1440 1.105 yamt
1441 1.105 yamt nextchain:
1442 1.105 yamt (*pr)("MBUF %p\n", m);
1443 1.105 yamt bitmask_snprintf(m->m_flags, M_FLAGS_BITS, buf, sizeof(buf));
1444 1.105 yamt (*pr)(" data=%p, len=%d, type=%d, flags=0x%s\n",
1445 1.105 yamt m->m_data, m->m_len, m->m_type, buf);
1446 1.105 yamt (*pr)(" owner=%p, next=%p, nextpkt=%p\n", m->m_owner, m->m_next,
1447 1.105 yamt m->m_nextpkt);
1448 1.105 yamt (*pr)(" leadingspace=%u, trailingspace=%u, readonly=%u\n",
1449 1.105 yamt (int)M_LEADINGSPACE(m), (int)M_TRAILINGSPACE(m),
1450 1.105 yamt (int)M_READONLY(m));
1451 1.105 yamt if ((m->m_flags & M_PKTHDR) != 0) {
1452 1.105 yamt bitmask_snprintf(m->m_pkthdr.csum_flags, M_CSUM_BITS, buf,
1453 1.105 yamt sizeof(buf));
1454 1.105 yamt (*pr)(" pktlen=%d, rcvif=%p, csum_flags=0x%s, csum_data=0x%"
1455 1.105 yamt PRIx32 ", segsz=%u\n",
1456 1.105 yamt m->m_pkthdr.len, m->m_pkthdr.rcvif,
1457 1.105 yamt buf, m->m_pkthdr.csum_data, m->m_pkthdr.segsz);
1458 1.105 yamt }
1459 1.105 yamt if ((m->m_flags & M_EXT)) {
1460 1.105 yamt (*pr)(" shared=%u, ext_buf=%p, ext_size=%zd, "
1461 1.105 yamt "ext_free=%p, ext_arg=%p\n",
1462 1.105 yamt (int)MCLISREFERENCED(m),
1463 1.105 yamt m->m_ext.ext_buf, m->m_ext.ext_size,
1464 1.105 yamt m->m_ext.ext_free, m->m_ext.ext_arg);
1465 1.105 yamt }
1466 1.105 yamt if ((~m->m_flags & (M_EXT|M_EXT_PAGES)) == 0) {
1467 1.108 yamt vaddr_t sva = (vaddr_t)m->m_ext.ext_buf;
1468 1.108 yamt vaddr_t eva = sva + m->m_ext.ext_size;
1469 1.108 yamt int n = (round_page(eva) - trunc_page(sva)) >> PAGE_SHIFT;
1470 1.108 yamt int i;
1471 1.105 yamt
1472 1.105 yamt (*pr)(" pages:");
1473 1.108 yamt for (i = 0; i < n; i ++) {
1474 1.108 yamt (*pr)(" %p", m->m_ext.ext_pgs[i]);
1475 1.105 yamt }
1476 1.105 yamt (*pr)("\n");
1477 1.105 yamt }
1478 1.105 yamt
1479 1.105 yamt if (opt_c) {
1480 1.105 yamt m = m->m_next;
1481 1.105 yamt if (m != NULL) {
1482 1.105 yamt goto nextchain;
1483 1.105 yamt }
1484 1.105 yamt }
1485 1.105 yamt }
1486 1.105 yamt #endif /* defined(DDB) */
1487