uipc_mbuf.c revision 1.37 1 1.37 thorpej /* $NetBSD: uipc_mbuf.c,v 1.37 1999/03/23 02:51:27 thorpej Exp $ */
2 1.10 cgd
3 1.1 cgd /*
4 1.9 mycroft * Copyright (c) 1982, 1986, 1988, 1991, 1993
5 1.9 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.1 cgd * 3. All advertising materials mentioning features or use of this software
16 1.1 cgd * must display the following acknowledgement:
17 1.1 cgd * This product includes software developed by the University of
18 1.1 cgd * California, Berkeley and its contributors.
19 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
20 1.1 cgd * may be used to endorse or promote products derived from this software
21 1.1 cgd * without specific prior written permission.
22 1.1 cgd *
23 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 cgd * SUCH DAMAGE.
34 1.1 cgd *
35 1.26 fvdl * @(#)uipc_mbuf.c 8.4 (Berkeley) 2/14/95
36 1.1 cgd */
37 1.24 mrg
38 1.24 mrg #include "opt_uvm.h"
39 1.1 cgd
40 1.6 mycroft #include <sys/param.h>
41 1.6 mycroft #include <sys/systm.h>
42 1.6 mycroft #include <sys/proc.h>
43 1.6 mycroft #include <sys/malloc.h>
44 1.9 mycroft #include <sys/map.h>
45 1.1 cgd #define MBTYPES
46 1.6 mycroft #include <sys/mbuf.h>
47 1.6 mycroft #include <sys/kernel.h>
48 1.6 mycroft #include <sys/syslog.h>
49 1.6 mycroft #include <sys/domain.h>
50 1.6 mycroft #include <sys/protosw.h>
51 1.28 thorpej #include <sys/pool.h>
52 1.27 matt #include <sys/socket.h>
53 1.27 matt #include <net/if.h>
54 1.6 mycroft
55 1.6 mycroft #include <vm/vm.h>
56 1.14 christos
57 1.23 mrg #if defined(UVM)
58 1.23 mrg #include <uvm/uvm_extern.h>
59 1.23 mrg #endif
60 1.23 mrg
61 1.28 thorpej struct pool mbpool; /* mbuf pool */
62 1.28 thorpej struct pool mclpool; /* mbuf cluster pool */
63 1.28 thorpej
64 1.18 thorpej struct mbstat mbstat;
65 1.18 thorpej int max_linkhdr;
66 1.18 thorpej int max_protohdr;
67 1.18 thorpej int max_hdr;
68 1.18 thorpej int max_datalen;
69 1.18 thorpej
70 1.1 cgd extern vm_map_t mb_map;
71 1.1 cgd
72 1.28 thorpej void *mclpool_alloc __P((unsigned long, int, int));
73 1.28 thorpej void mclpool_release __P((void *, unsigned long, int));
74 1.28 thorpej
75 1.28 thorpej /*
76 1.28 thorpej * Initialize the mbuf allcator. Note, this cannot allocate any
77 1.28 thorpej * memory itself; we are called before mb_map has been allocated.
78 1.28 thorpej */
79 1.4 jtc void
80 1.1 cgd mbinit()
81 1.1 cgd {
82 1.1 cgd
83 1.28 thorpej /* XXX malloc types! */
84 1.28 thorpej pool_init(&mbpool, MSIZE, 0, 0, 0, "mbpl", 0, NULL, NULL, 0);
85 1.28 thorpej pool_init(&mclpool, MCLBYTES, 0, 0, 0, "mclpl", 0, mclpool_alloc,
86 1.28 thorpej mclpool_release, 0);
87 1.37 thorpej
88 1.37 thorpej /*
89 1.37 thorpej * Set the high water mark on the mclpool to the number of
90 1.37 thorpej * mbuf clusters the kernel is to support.
91 1.37 thorpej */
92 1.37 thorpej pool_sethiwat(&mclpool, NMBCLUSTERS);
93 1.28 thorpej }
94 1.28 thorpej
95 1.28 thorpej void *
96 1.28 thorpej mclpool_alloc(sz, flags, mtype)
97 1.28 thorpej unsigned long sz;
98 1.28 thorpej int flags;
99 1.28 thorpej int mtype;
100 1.28 thorpej {
101 1.36 thorpej volatile static struct timeval lastlogged;
102 1.36 thorpej struct timeval curtime, logdiff;
103 1.32 thorpej boolean_t waitok = (flags & PR_WAITOK) ? TRUE : FALSE;
104 1.36 thorpej vaddr_t va;
105 1.36 thorpej int s;
106 1.28 thorpej
107 1.28 thorpej #if defined(UVM)
108 1.36 thorpej va = uvm_km_alloc_poolpage1(mb_map, uvmexp.mb_object, waitok);
109 1.28 thorpej #else
110 1.36 thorpej va = kmem_alloc_poolpage1(mb_map, waitok);
111 1.28 thorpej #endif
112 1.36 thorpej if (va == 0) {
113 1.36 thorpej s = splclock();
114 1.36 thorpej curtime = mono_time;
115 1.36 thorpej splx(s);
116 1.36 thorpej timersub(&curtime, &lastlogged, &logdiff);
117 1.36 thorpej if (logdiff.tv_sec >= 60) {
118 1.36 thorpej lastlogged = curtime;
119 1.36 thorpej log(LOG_ERR, "mb_map full\n");
120 1.36 thorpej }
121 1.36 thorpej /*
122 1.36 thorpej * Don't need to reclaim here; MCLGET(), which calls
123 1.36 thorpej * pool_get(), will reclaim and attempt the allocation
124 1.36 thorpej * again.
125 1.36 thorpej */
126 1.36 thorpej }
127 1.36 thorpej return ((void *)va);
128 1.1 cgd }
129 1.1 cgd
130 1.28 thorpej void
131 1.28 thorpej mclpool_release(v, sz, mtype)
132 1.28 thorpej void *v;
133 1.28 thorpej unsigned long sz;
134 1.28 thorpej int mtype;
135 1.1 cgd {
136 1.1 cgd
137 1.23 mrg #if defined(UVM)
138 1.31 thorpej uvm_km_free_poolpage1(mb_map, (vaddr_t)v);
139 1.23 mrg #else
140 1.31 thorpej kmem_free_poolpage1(mb_map, (vaddr_t)v);
141 1.23 mrg #endif
142 1.1 cgd }
143 1.1 cgd
144 1.1 cgd /*
145 1.1 cgd * When MGET failes, ask protocols to free space when short of memory,
146 1.1 cgd * then re-attempt to allocate an mbuf.
147 1.1 cgd */
148 1.1 cgd struct mbuf *
149 1.1 cgd m_retry(i, t)
150 1.1 cgd int i, t;
151 1.1 cgd {
152 1.27 matt struct mbuf *m;
153 1.1 cgd
154 1.29 thorpej m_reclaim(i);
155 1.1 cgd #define m_retry(i, t) (struct mbuf *)0
156 1.1 cgd MGET(m, i, t);
157 1.1 cgd #undef m_retry
158 1.18 thorpej if (m != NULL)
159 1.18 thorpej mbstat.m_wait++;
160 1.18 thorpej else
161 1.18 thorpej mbstat.m_drops++;
162 1.1 cgd return (m);
163 1.1 cgd }
164 1.1 cgd
165 1.1 cgd /*
166 1.1 cgd * As above; retry an MGETHDR.
167 1.1 cgd */
168 1.1 cgd struct mbuf *
169 1.1 cgd m_retryhdr(i, t)
170 1.1 cgd int i, t;
171 1.1 cgd {
172 1.27 matt struct mbuf *m;
173 1.1 cgd
174 1.29 thorpej m_reclaim(i);
175 1.1 cgd #define m_retryhdr(i, t) (struct mbuf *)0
176 1.1 cgd MGETHDR(m, i, t);
177 1.1 cgd #undef m_retryhdr
178 1.18 thorpej if (m != NULL)
179 1.18 thorpej mbstat.m_wait++;
180 1.18 thorpej else
181 1.18 thorpej mbstat.m_drops++;
182 1.1 cgd return (m);
183 1.1 cgd }
184 1.1 cgd
185 1.14 christos void
186 1.29 thorpej m_reclaim(how)
187 1.29 thorpej int how;
188 1.1 cgd {
189 1.27 matt struct domain *dp;
190 1.27 matt struct protosw *pr;
191 1.27 matt struct ifnet *ifp;
192 1.1 cgd int s = splimp();
193 1.1 cgd
194 1.33 thorpej for (dp = domains; dp; dp = dp->dom_next)
195 1.33 thorpej for (pr = dp->dom_protosw;
196 1.33 thorpej pr < dp->dom_protoswNPROTOSW; pr++)
197 1.33 thorpej if (pr->pr_drain)
198 1.33 thorpej (*pr->pr_drain)();
199 1.27 matt for (ifp = TAILQ_FIRST(&ifnet); ifp; ifp = TAILQ_NEXT(ifp, if_list))
200 1.27 matt if (ifp->if_drain)
201 1.27 matt (*ifp->if_drain)(ifp);
202 1.1 cgd splx(s);
203 1.1 cgd mbstat.m_drain++;
204 1.1 cgd }
205 1.1 cgd
206 1.1 cgd /*
207 1.1 cgd * Space allocation routines.
208 1.1 cgd * These are also available as macros
209 1.1 cgd * for critical paths.
210 1.1 cgd */
211 1.1 cgd struct mbuf *
212 1.5 cgd m_get(nowait, type)
213 1.5 cgd int nowait, type;
214 1.1 cgd {
215 1.27 matt struct mbuf *m;
216 1.1 cgd
217 1.5 cgd MGET(m, nowait, type);
218 1.1 cgd return (m);
219 1.1 cgd }
220 1.1 cgd
221 1.1 cgd struct mbuf *
222 1.5 cgd m_gethdr(nowait, type)
223 1.5 cgd int nowait, type;
224 1.1 cgd {
225 1.27 matt struct mbuf *m;
226 1.1 cgd
227 1.5 cgd MGETHDR(m, nowait, type);
228 1.1 cgd return (m);
229 1.1 cgd }
230 1.1 cgd
231 1.1 cgd struct mbuf *
232 1.5 cgd m_getclr(nowait, type)
233 1.5 cgd int nowait, type;
234 1.1 cgd {
235 1.27 matt struct mbuf *m;
236 1.1 cgd
237 1.5 cgd MGET(m, nowait, type);
238 1.1 cgd if (m == 0)
239 1.1 cgd return (0);
240 1.30 perry memset(mtod(m, caddr_t), 0, MLEN);
241 1.1 cgd return (m);
242 1.1 cgd }
243 1.1 cgd
244 1.1 cgd struct mbuf *
245 1.1 cgd m_free(m)
246 1.1 cgd struct mbuf *m;
247 1.1 cgd {
248 1.27 matt struct mbuf *n;
249 1.1 cgd
250 1.1 cgd MFREE(m, n);
251 1.1 cgd return (n);
252 1.1 cgd }
253 1.1 cgd
254 1.9 mycroft void
255 1.1 cgd m_freem(m)
256 1.27 matt struct mbuf *m;
257 1.1 cgd {
258 1.27 matt struct mbuf *n;
259 1.1 cgd
260 1.1 cgd if (m == NULL)
261 1.1 cgd return;
262 1.1 cgd do {
263 1.1 cgd MFREE(m, n);
264 1.18 thorpej m = n;
265 1.18 thorpej } while (m);
266 1.1 cgd }
267 1.1 cgd
268 1.1 cgd /*
269 1.1 cgd * Mbuffer utility routines.
270 1.1 cgd */
271 1.1 cgd
272 1.1 cgd /*
273 1.1 cgd * Lesser-used path for M_PREPEND:
274 1.1 cgd * allocate new mbuf to prepend to chain,
275 1.1 cgd * copy junk along.
276 1.1 cgd */
277 1.1 cgd struct mbuf *
278 1.9 mycroft m_prepend(m, len, how)
279 1.27 matt struct mbuf *m;
280 1.9 mycroft int len, how;
281 1.1 cgd {
282 1.1 cgd struct mbuf *mn;
283 1.1 cgd
284 1.9 mycroft MGET(mn, how, m->m_type);
285 1.1 cgd if (mn == (struct mbuf *)NULL) {
286 1.1 cgd m_freem(m);
287 1.1 cgd return ((struct mbuf *)NULL);
288 1.1 cgd }
289 1.1 cgd if (m->m_flags & M_PKTHDR) {
290 1.1 cgd M_COPY_PKTHDR(mn, m);
291 1.1 cgd m->m_flags &= ~M_PKTHDR;
292 1.1 cgd }
293 1.1 cgd mn->m_next = m;
294 1.1 cgd m = mn;
295 1.1 cgd if (len < MHLEN)
296 1.1 cgd MH_ALIGN(m, len);
297 1.1 cgd m->m_len = len;
298 1.1 cgd return (m);
299 1.1 cgd }
300 1.1 cgd
301 1.1 cgd /*
302 1.1 cgd * Make a copy of an mbuf chain starting "off0" bytes from the beginning,
303 1.1 cgd * continuing for "len" bytes. If len is M_COPYALL, copy to end of mbuf.
304 1.1 cgd * The wait parameter is a choice of M_WAIT/M_DONTWAIT from caller.
305 1.1 cgd */
306 1.1 cgd int MCFail;
307 1.1 cgd
308 1.1 cgd struct mbuf *
309 1.1 cgd m_copym(m, off0, len, wait)
310 1.27 matt struct mbuf *m;
311 1.1 cgd int off0, wait;
312 1.27 matt int len;
313 1.1 cgd {
314 1.27 matt struct mbuf *n, **np;
315 1.27 matt int off = off0;
316 1.1 cgd struct mbuf *top;
317 1.1 cgd int copyhdr = 0;
318 1.1 cgd
319 1.1 cgd if (off < 0 || len < 0)
320 1.1 cgd panic("m_copym");
321 1.1 cgd if (off == 0 && m->m_flags & M_PKTHDR)
322 1.1 cgd copyhdr = 1;
323 1.1 cgd while (off > 0) {
324 1.1 cgd if (m == 0)
325 1.1 cgd panic("m_copym");
326 1.1 cgd if (off < m->m_len)
327 1.1 cgd break;
328 1.1 cgd off -= m->m_len;
329 1.1 cgd m = m->m_next;
330 1.1 cgd }
331 1.1 cgd np = ⊤
332 1.1 cgd top = 0;
333 1.1 cgd while (len > 0) {
334 1.1 cgd if (m == 0) {
335 1.1 cgd if (len != M_COPYALL)
336 1.1 cgd panic("m_copym");
337 1.1 cgd break;
338 1.1 cgd }
339 1.1 cgd MGET(n, wait, m->m_type);
340 1.1 cgd *np = n;
341 1.1 cgd if (n == 0)
342 1.1 cgd goto nospace;
343 1.1 cgd if (copyhdr) {
344 1.1 cgd M_COPY_PKTHDR(n, m);
345 1.1 cgd if (len == M_COPYALL)
346 1.1 cgd n->m_pkthdr.len -= off0;
347 1.1 cgd else
348 1.1 cgd n->m_pkthdr.len = len;
349 1.1 cgd copyhdr = 0;
350 1.1 cgd }
351 1.9 mycroft n->m_len = min(len, m->m_len - off);
352 1.1 cgd if (m->m_flags & M_EXT) {
353 1.1 cgd n->m_data = m->m_data + off;
354 1.1 cgd n->m_ext = m->m_ext;
355 1.18 thorpej MCLADDREFERENCE(m, n);
356 1.1 cgd } else
357 1.30 perry memcpy(mtod(n, caddr_t), mtod(m, caddr_t)+off,
358 1.1 cgd (unsigned)n->m_len);
359 1.1 cgd if (len != M_COPYALL)
360 1.1 cgd len -= n->m_len;
361 1.1 cgd off = 0;
362 1.1 cgd m = m->m_next;
363 1.1 cgd np = &n->m_next;
364 1.1 cgd }
365 1.1 cgd if (top == 0)
366 1.1 cgd MCFail++;
367 1.1 cgd return (top);
368 1.1 cgd nospace:
369 1.1 cgd m_freem(top);
370 1.1 cgd MCFail++;
371 1.1 cgd return (0);
372 1.1 cgd }
373 1.1 cgd
374 1.1 cgd /*
375 1.18 thorpej * Copy an entire packet, including header (which must be present).
376 1.18 thorpej * An optimization of the common case `m_copym(m, 0, M_COPYALL, how)'.
377 1.18 thorpej */
378 1.18 thorpej struct mbuf *
379 1.18 thorpej m_copypacket(m, how)
380 1.18 thorpej struct mbuf *m;
381 1.18 thorpej int how;
382 1.18 thorpej {
383 1.18 thorpej struct mbuf *top, *n, *o;
384 1.18 thorpej
385 1.18 thorpej MGET(n, how, m->m_type);
386 1.18 thorpej top = n;
387 1.18 thorpej if (!n)
388 1.18 thorpej goto nospace;
389 1.18 thorpej
390 1.18 thorpej M_COPY_PKTHDR(n, m);
391 1.18 thorpej n->m_len = m->m_len;
392 1.18 thorpej if (m->m_flags & M_EXT) {
393 1.18 thorpej n->m_data = m->m_data;
394 1.18 thorpej n->m_ext = m->m_ext;
395 1.18 thorpej MCLADDREFERENCE(m, n);
396 1.18 thorpej } else {
397 1.30 perry memcpy(mtod(n, char *), mtod(m, char *), n->m_len);
398 1.18 thorpej }
399 1.18 thorpej
400 1.18 thorpej m = m->m_next;
401 1.18 thorpej while (m) {
402 1.18 thorpej MGET(o, how, m->m_type);
403 1.18 thorpej if (!o)
404 1.18 thorpej goto nospace;
405 1.18 thorpej
406 1.18 thorpej n->m_next = o;
407 1.18 thorpej n = n->m_next;
408 1.18 thorpej
409 1.18 thorpej n->m_len = m->m_len;
410 1.18 thorpej if (m->m_flags & M_EXT) {
411 1.18 thorpej n->m_data = m->m_data;
412 1.18 thorpej n->m_ext = m->m_ext;
413 1.18 thorpej MCLADDREFERENCE(m, n);
414 1.18 thorpej } else {
415 1.30 perry memcpy(mtod(n, char *), mtod(m, char *), n->m_len);
416 1.18 thorpej }
417 1.18 thorpej
418 1.18 thorpej m = m->m_next;
419 1.18 thorpej }
420 1.18 thorpej return top;
421 1.18 thorpej nospace:
422 1.18 thorpej m_freem(top);
423 1.18 thorpej MCFail++;
424 1.18 thorpej return 0;
425 1.18 thorpej }
426 1.18 thorpej
427 1.18 thorpej /*
428 1.1 cgd * Copy data from an mbuf chain starting "off" bytes from the beginning,
429 1.1 cgd * continuing for "len" bytes, into the indicated buffer.
430 1.1 cgd */
431 1.14 christos void
432 1.1 cgd m_copydata(m, off, len, cp)
433 1.27 matt struct mbuf *m;
434 1.27 matt int off;
435 1.27 matt int len;
436 1.1 cgd caddr_t cp;
437 1.1 cgd {
438 1.27 matt unsigned count;
439 1.1 cgd
440 1.1 cgd if (off < 0 || len < 0)
441 1.1 cgd panic("m_copydata");
442 1.1 cgd while (off > 0) {
443 1.1 cgd if (m == 0)
444 1.1 cgd panic("m_copydata");
445 1.1 cgd if (off < m->m_len)
446 1.1 cgd break;
447 1.1 cgd off -= m->m_len;
448 1.1 cgd m = m->m_next;
449 1.1 cgd }
450 1.1 cgd while (len > 0) {
451 1.1 cgd if (m == 0)
452 1.1 cgd panic("m_copydata");
453 1.9 mycroft count = min(m->m_len - off, len);
454 1.30 perry memcpy(cp, mtod(m, caddr_t) + off, count);
455 1.1 cgd len -= count;
456 1.1 cgd cp += count;
457 1.1 cgd off = 0;
458 1.1 cgd m = m->m_next;
459 1.1 cgd }
460 1.1 cgd }
461 1.1 cgd
462 1.1 cgd /*
463 1.1 cgd * Concatenate mbuf chain n to m.
464 1.1 cgd * Both chains must be of the same type (e.g. MT_DATA).
465 1.1 cgd * Any m_pkthdr is not updated.
466 1.1 cgd */
467 1.14 christos void
468 1.1 cgd m_cat(m, n)
469 1.27 matt struct mbuf *m, *n;
470 1.1 cgd {
471 1.1 cgd while (m->m_next)
472 1.1 cgd m = m->m_next;
473 1.1 cgd while (n) {
474 1.1 cgd if (m->m_flags & M_EXT ||
475 1.1 cgd m->m_data + m->m_len + n->m_len >= &m->m_dat[MLEN]) {
476 1.1 cgd /* just join the two chains */
477 1.1 cgd m->m_next = n;
478 1.1 cgd return;
479 1.1 cgd }
480 1.1 cgd /* splat the data from one into the other */
481 1.30 perry memcpy(mtod(m, caddr_t) + m->m_len, mtod(n, caddr_t),
482 1.1 cgd (u_int)n->m_len);
483 1.1 cgd m->m_len += n->m_len;
484 1.1 cgd n = m_free(n);
485 1.1 cgd }
486 1.1 cgd }
487 1.1 cgd
488 1.11 mycroft void
489 1.1 cgd m_adj(mp, req_len)
490 1.1 cgd struct mbuf *mp;
491 1.8 deraadt int req_len;
492 1.1 cgd {
493 1.27 matt int len = req_len;
494 1.27 matt struct mbuf *m;
495 1.27 matt int count;
496 1.1 cgd
497 1.1 cgd if ((m = mp) == NULL)
498 1.1 cgd return;
499 1.1 cgd if (len >= 0) {
500 1.1 cgd /*
501 1.1 cgd * Trim from head.
502 1.1 cgd */
503 1.1 cgd while (m != NULL && len > 0) {
504 1.1 cgd if (m->m_len <= len) {
505 1.1 cgd len -= m->m_len;
506 1.1 cgd m->m_len = 0;
507 1.1 cgd m = m->m_next;
508 1.1 cgd } else {
509 1.1 cgd m->m_len -= len;
510 1.1 cgd m->m_data += len;
511 1.1 cgd len = 0;
512 1.1 cgd }
513 1.1 cgd }
514 1.1 cgd m = mp;
515 1.1 cgd if (mp->m_flags & M_PKTHDR)
516 1.1 cgd m->m_pkthdr.len -= (req_len - len);
517 1.1 cgd } else {
518 1.1 cgd /*
519 1.1 cgd * Trim from tail. Scan the mbuf chain,
520 1.1 cgd * calculating its length and finding the last mbuf.
521 1.1 cgd * If the adjustment only affects this mbuf, then just
522 1.1 cgd * adjust and return. Otherwise, rescan and truncate
523 1.1 cgd * after the remaining size.
524 1.1 cgd */
525 1.1 cgd len = -len;
526 1.1 cgd count = 0;
527 1.1 cgd for (;;) {
528 1.1 cgd count += m->m_len;
529 1.1 cgd if (m->m_next == (struct mbuf *)0)
530 1.1 cgd break;
531 1.1 cgd m = m->m_next;
532 1.1 cgd }
533 1.1 cgd if (m->m_len >= len) {
534 1.1 cgd m->m_len -= len;
535 1.8 deraadt if (mp->m_flags & M_PKTHDR)
536 1.8 deraadt mp->m_pkthdr.len -= len;
537 1.1 cgd return;
538 1.1 cgd }
539 1.1 cgd count -= len;
540 1.1 cgd if (count < 0)
541 1.1 cgd count = 0;
542 1.1 cgd /*
543 1.1 cgd * Correct length for chain is "count".
544 1.1 cgd * Find the mbuf with last data, adjust its length,
545 1.1 cgd * and toss data from remaining mbufs on chain.
546 1.1 cgd */
547 1.1 cgd m = mp;
548 1.1 cgd if (m->m_flags & M_PKTHDR)
549 1.1 cgd m->m_pkthdr.len = count;
550 1.1 cgd for (; m; m = m->m_next) {
551 1.1 cgd if (m->m_len >= count) {
552 1.1 cgd m->m_len = count;
553 1.1 cgd break;
554 1.1 cgd }
555 1.1 cgd count -= m->m_len;
556 1.1 cgd }
557 1.18 thorpej while (m->m_next)
558 1.18 thorpej (m = m->m_next) ->m_len = 0;
559 1.1 cgd }
560 1.1 cgd }
561 1.1 cgd
562 1.1 cgd /*
563 1.1 cgd * Rearange an mbuf chain so that len bytes are contiguous
564 1.1 cgd * and in the data area of an mbuf (so that mtod and dtom
565 1.1 cgd * will work for a structure of size len). Returns the resulting
566 1.1 cgd * mbuf chain on success, frees it and returns null on failure.
567 1.1 cgd * If there is room, it will add up to max_protohdr-len extra bytes to the
568 1.1 cgd * contiguous region in an attempt to avoid being called next time.
569 1.1 cgd */
570 1.1 cgd int MPFail;
571 1.1 cgd
572 1.1 cgd struct mbuf *
573 1.1 cgd m_pullup(n, len)
574 1.27 matt struct mbuf *n;
575 1.1 cgd int len;
576 1.1 cgd {
577 1.27 matt struct mbuf *m;
578 1.27 matt int count;
579 1.1 cgd int space;
580 1.1 cgd
581 1.1 cgd /*
582 1.1 cgd * If first mbuf has no cluster, and has room for len bytes
583 1.1 cgd * without shifting current data, pullup into it,
584 1.1 cgd * otherwise allocate a new mbuf to prepend to the chain.
585 1.1 cgd */
586 1.1 cgd if ((n->m_flags & M_EXT) == 0 &&
587 1.1 cgd n->m_data + len < &n->m_dat[MLEN] && n->m_next) {
588 1.1 cgd if (n->m_len >= len)
589 1.1 cgd return (n);
590 1.1 cgd m = n;
591 1.1 cgd n = n->m_next;
592 1.1 cgd len -= m->m_len;
593 1.1 cgd } else {
594 1.1 cgd if (len > MHLEN)
595 1.1 cgd goto bad;
596 1.1 cgd MGET(m, M_DONTWAIT, n->m_type);
597 1.1 cgd if (m == 0)
598 1.1 cgd goto bad;
599 1.1 cgd m->m_len = 0;
600 1.1 cgd if (n->m_flags & M_PKTHDR) {
601 1.1 cgd M_COPY_PKTHDR(m, n);
602 1.1 cgd n->m_flags &= ~M_PKTHDR;
603 1.1 cgd }
604 1.1 cgd }
605 1.1 cgd space = &m->m_dat[MLEN] - (m->m_data + m->m_len);
606 1.1 cgd do {
607 1.1 cgd count = min(min(max(len, max_protohdr), space), n->m_len);
608 1.30 perry memcpy(mtod(m, caddr_t) + m->m_len, mtod(n, caddr_t),
609 1.1 cgd (unsigned)count);
610 1.1 cgd len -= count;
611 1.1 cgd m->m_len += count;
612 1.1 cgd n->m_len -= count;
613 1.1 cgd space -= count;
614 1.1 cgd if (n->m_len)
615 1.1 cgd n->m_data += count;
616 1.1 cgd else
617 1.1 cgd n = m_free(n);
618 1.1 cgd } while (len > 0 && n);
619 1.1 cgd if (len > 0) {
620 1.1 cgd (void) m_free(m);
621 1.1 cgd goto bad;
622 1.1 cgd }
623 1.1 cgd m->m_next = n;
624 1.1 cgd return (m);
625 1.1 cgd bad:
626 1.1 cgd m_freem(n);
627 1.1 cgd MPFail++;
628 1.1 cgd return (0);
629 1.9 mycroft }
630 1.9 mycroft
631 1.9 mycroft /*
632 1.9 mycroft * Partition an mbuf chain in two pieces, returning the tail --
633 1.9 mycroft * all but the first len0 bytes. In case of failure, it returns NULL and
634 1.9 mycroft * attempts to restore the chain to its original state.
635 1.9 mycroft */
636 1.9 mycroft struct mbuf *
637 1.9 mycroft m_split(m0, len0, wait)
638 1.27 matt struct mbuf *m0;
639 1.9 mycroft int len0, wait;
640 1.9 mycroft {
641 1.27 matt struct mbuf *m, *n;
642 1.22 thorpej unsigned len = len0, remain, len_save;
643 1.9 mycroft
644 1.9 mycroft for (m = m0; m && len > m->m_len; m = m->m_next)
645 1.9 mycroft len -= m->m_len;
646 1.9 mycroft if (m == 0)
647 1.9 mycroft return (0);
648 1.9 mycroft remain = m->m_len - len;
649 1.9 mycroft if (m0->m_flags & M_PKTHDR) {
650 1.9 mycroft MGETHDR(n, wait, m0->m_type);
651 1.9 mycroft if (n == 0)
652 1.9 mycroft return (0);
653 1.9 mycroft n->m_pkthdr.rcvif = m0->m_pkthdr.rcvif;
654 1.9 mycroft n->m_pkthdr.len = m0->m_pkthdr.len - len0;
655 1.22 thorpej len_save = m0->m_pkthdr.len;
656 1.9 mycroft m0->m_pkthdr.len = len0;
657 1.9 mycroft if (m->m_flags & M_EXT)
658 1.9 mycroft goto extpacket;
659 1.9 mycroft if (remain > MHLEN) {
660 1.9 mycroft /* m can't be the lead packet */
661 1.9 mycroft MH_ALIGN(n, 0);
662 1.9 mycroft n->m_next = m_split(m, len, wait);
663 1.9 mycroft if (n->m_next == 0) {
664 1.9 mycroft (void) m_free(n);
665 1.22 thorpej m0->m_pkthdr.len = len_save;
666 1.9 mycroft return (0);
667 1.9 mycroft } else
668 1.9 mycroft return (n);
669 1.9 mycroft } else
670 1.9 mycroft MH_ALIGN(n, remain);
671 1.9 mycroft } else if (remain == 0) {
672 1.9 mycroft n = m->m_next;
673 1.9 mycroft m->m_next = 0;
674 1.9 mycroft return (n);
675 1.9 mycroft } else {
676 1.9 mycroft MGET(n, wait, m->m_type);
677 1.9 mycroft if (n == 0)
678 1.9 mycroft return (0);
679 1.9 mycroft M_ALIGN(n, remain);
680 1.9 mycroft }
681 1.9 mycroft extpacket:
682 1.9 mycroft if (m->m_flags & M_EXT) {
683 1.9 mycroft n->m_ext = m->m_ext;
684 1.18 thorpej MCLADDREFERENCE(m, n);
685 1.9 mycroft n->m_data = m->m_data + len;
686 1.9 mycroft } else {
687 1.30 perry memcpy(mtod(n, caddr_t), mtod(m, caddr_t) + len, remain);
688 1.9 mycroft }
689 1.9 mycroft n->m_len = remain;
690 1.9 mycroft m->m_len = len;
691 1.9 mycroft n->m_next = m->m_next;
692 1.9 mycroft m->m_next = 0;
693 1.9 mycroft return (n);
694 1.9 mycroft }
695 1.9 mycroft /*
696 1.9 mycroft * Routine to copy from device local memory into mbufs.
697 1.9 mycroft */
698 1.9 mycroft struct mbuf *
699 1.9 mycroft m_devget(buf, totlen, off0, ifp, copy)
700 1.9 mycroft char *buf;
701 1.9 mycroft int totlen, off0;
702 1.9 mycroft struct ifnet *ifp;
703 1.18 thorpej void (*copy) __P((const void *from, void *to, size_t len));
704 1.9 mycroft {
705 1.27 matt struct mbuf *m;
706 1.9 mycroft struct mbuf *top = 0, **mp = ⊤
707 1.27 matt int off = off0, len;
708 1.27 matt char *cp;
709 1.9 mycroft char *epkt;
710 1.9 mycroft
711 1.9 mycroft cp = buf;
712 1.9 mycroft epkt = cp + totlen;
713 1.9 mycroft if (off) {
714 1.13 cgd /*
715 1.13 cgd * If 'off' is non-zero, packet is trailer-encapsulated,
716 1.13 cgd * so we have to skip the type and length fields.
717 1.13 cgd */
718 1.13 cgd cp += off + 2 * sizeof(u_int16_t);
719 1.13 cgd totlen -= 2 * sizeof(u_int16_t);
720 1.9 mycroft }
721 1.9 mycroft MGETHDR(m, M_DONTWAIT, MT_DATA);
722 1.9 mycroft if (m == 0)
723 1.9 mycroft return (0);
724 1.9 mycroft m->m_pkthdr.rcvif = ifp;
725 1.9 mycroft m->m_pkthdr.len = totlen;
726 1.9 mycroft m->m_len = MHLEN;
727 1.9 mycroft
728 1.9 mycroft while (totlen > 0) {
729 1.9 mycroft if (top) {
730 1.9 mycroft MGET(m, M_DONTWAIT, MT_DATA);
731 1.9 mycroft if (m == 0) {
732 1.9 mycroft m_freem(top);
733 1.9 mycroft return (0);
734 1.9 mycroft }
735 1.9 mycroft m->m_len = MLEN;
736 1.9 mycroft }
737 1.9 mycroft len = min(totlen, epkt - cp);
738 1.9 mycroft if (len >= MINCLSIZE) {
739 1.9 mycroft MCLGET(m, M_DONTWAIT);
740 1.19 mycroft if ((m->m_flags & M_EXT) == 0) {
741 1.20 mycroft m_free(m);
742 1.19 mycroft m_freem(top);
743 1.19 mycroft return (0);
744 1.19 mycroft }
745 1.19 mycroft m->m_len = len = min(len, MCLBYTES);
746 1.9 mycroft } else {
747 1.9 mycroft /*
748 1.9 mycroft * Place initial small packet/header at end of mbuf.
749 1.9 mycroft */
750 1.9 mycroft if (len < m->m_len) {
751 1.9 mycroft if (top == 0 && len + max_linkhdr <= m->m_len)
752 1.9 mycroft m->m_data += max_linkhdr;
753 1.9 mycroft m->m_len = len;
754 1.9 mycroft } else
755 1.9 mycroft len = m->m_len;
756 1.9 mycroft }
757 1.9 mycroft if (copy)
758 1.14 christos copy(cp, mtod(m, caddr_t), (size_t)len);
759 1.9 mycroft else
760 1.30 perry memcpy(mtod(m, caddr_t), cp, (size_t)len);
761 1.9 mycroft cp += len;
762 1.9 mycroft *mp = m;
763 1.9 mycroft mp = &m->m_next;
764 1.9 mycroft totlen -= len;
765 1.9 mycroft if (cp == epkt)
766 1.9 mycroft cp = buf;
767 1.9 mycroft }
768 1.9 mycroft return (top);
769 1.18 thorpej }
770 1.18 thorpej
771 1.18 thorpej /*
772 1.18 thorpej * Copy data from a buffer back into the indicated mbuf chain,
773 1.18 thorpej * starting "off" bytes from the beginning, extending the mbuf
774 1.18 thorpej * chain if necessary.
775 1.18 thorpej */
776 1.18 thorpej void
777 1.18 thorpej m_copyback(m0, off, len, cp)
778 1.18 thorpej struct mbuf *m0;
779 1.27 matt int off;
780 1.27 matt int len;
781 1.18 thorpej caddr_t cp;
782 1.18 thorpej {
783 1.27 matt int mlen;
784 1.27 matt struct mbuf *m = m0, *n;
785 1.18 thorpej int totlen = 0;
786 1.18 thorpej
787 1.18 thorpej if (m0 == 0)
788 1.18 thorpej return;
789 1.18 thorpej while (off > (mlen = m->m_len)) {
790 1.18 thorpej off -= mlen;
791 1.18 thorpej totlen += mlen;
792 1.18 thorpej if (m->m_next == 0) {
793 1.18 thorpej n = m_getclr(M_DONTWAIT, m->m_type);
794 1.18 thorpej if (n == 0)
795 1.18 thorpej goto out;
796 1.18 thorpej n->m_len = min(MLEN, len + off);
797 1.18 thorpej m->m_next = n;
798 1.18 thorpej }
799 1.18 thorpej m = m->m_next;
800 1.18 thorpej }
801 1.18 thorpej while (len > 0) {
802 1.18 thorpej mlen = min (m->m_len - off, len);
803 1.30 perry memcpy(mtod(m, caddr_t) + off, cp, (unsigned)mlen);
804 1.18 thorpej cp += mlen;
805 1.18 thorpej len -= mlen;
806 1.18 thorpej mlen += off;
807 1.18 thorpej off = 0;
808 1.18 thorpej totlen += mlen;
809 1.18 thorpej if (len == 0)
810 1.18 thorpej break;
811 1.18 thorpej if (m->m_next == 0) {
812 1.18 thorpej n = m_get(M_DONTWAIT, m->m_type);
813 1.18 thorpej if (n == 0)
814 1.18 thorpej break;
815 1.18 thorpej n->m_len = min(MLEN, len);
816 1.18 thorpej m->m_next = n;
817 1.18 thorpej }
818 1.18 thorpej m = m->m_next;
819 1.18 thorpej }
820 1.18 thorpej out: if (((m = m0)->m_flags & M_PKTHDR) && (m->m_pkthdr.len < totlen))
821 1.18 thorpej m->m_pkthdr.len = totlen;
822 1.1 cgd }
823