]>
git.saurik.com Git - apple/xnu.git/blob - bsd/kern/uipc_mbuf2.c
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
22 /* $NetBSD: uipc_mbuf.c,v 1.40 1999/04/01 00:23:25 thorpej Exp $ */
25 * Copyright (C) 1999 WIDE Project.
26 * All rights reserved.
28 * Redistribution and use in source and binary forms, with or without
29 * modification, are permitted provided that the following conditions
31 * 1. Redistributions of source code must retain the above copyright
32 * notice, this list of conditions and the following disclaimer.
33 * 2. Redistributions in binary form must reproduce the above copyright
34 * notice, this list of conditions and the following disclaimer in the
35 * documentation and/or other materials provided with the distribution.
36 * 3. Neither the name of the project nor the names of its contributors
37 * may be used to endorse or promote products derived from this software
38 * without specific prior written permission.
40 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
54 * Copyright (c) 1982, 1986, 1988, 1991, 1993
55 * The Regents of the University of California. All rights reserved.
57 * Redistribution and use in source and binary forms, with or without
58 * modification, are permitted provided that the following conditions
60 * 1. Redistributions of source code must retain the above copyright
61 * notice, this list of conditions and the following disclaimer.
62 * 2. Redistributions in binary form must reproduce the above copyright
63 * notice, this list of conditions and the following disclaimer in the
64 * documentation and/or other materials provided with the distribution.
65 * 3. All advertising materials mentioning features or use of this software
66 * must display the following acknowledgement:
67 * This product includes software developed by the University of
68 * California, Berkeley and its contributors.
69 * 4. Neither the name of the University nor the names of its contributors
70 * may be used to endorse or promote products derived from this software
71 * without specific prior written permission.
73 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
74 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
75 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
76 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
77 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
78 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
79 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
80 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
81 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
82 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
85 * @(#)uipc_mbuf.c 8.4 (Berkeley) 2/14/95
89 /*#define PULLDOWN_DEBUG*/
92 #if defined(__NetBSD__) || (defined(__FreeBSD__) && __FreeBSD__ >= 3)
97 #include <sys/param.h>
98 #include <sys/systm.h>
100 #include <sys/malloc.h>
101 #include <sys/mbuf.h>
102 #if defined(PULLDOWN_STAT) && defined(INET6)
103 #include <netinet/in.h>
104 #include <netinet/ip6.h>
105 #include <netinet6/ip6_var.h>
109 * ensure that [off, off + len) is contiguous on the mbuf chain "m".
110 * packet chain before "off" is kept untouched.
111 * if offp == NULL, the target will start at <retval, 0> on resulting chain.
112 * if offp != NULL, the target will start at <retval, *offp> on resulting chain.
114 * on error return (NULL return value), original "m" will be freed.
116 * XXX M_TRAILINGSPACE/M_LEADINGSPACE on shared cluster (sharedcluster)
119 m_pulldown(m
, off
, len
, offp
)
125 int hlen
, tlen
, olen
;
127 #if defined(PULLDOWN_STAT) && defined(INET6)
128 static struct mbuf
*prev
= NULL
;
129 int prevlen
= 0, prevmlen
= 0;
132 /* check invalid arguments. */
134 panic("m == NULL in m_pulldown()");
135 if (len
> MCLBYTES
) {
137 return NULL
; /* impossible */
140 #if defined(PULLDOWN_STAT) && defined(INET6)
141 ip6stat
.ip6s_pulldown
++;
144 #if defined(PULLDOWN_STAT) && defined(INET6)
145 /* statistics for m_pullup */
146 ip6stat
.ip6s_pullup
++;
147 if (off
+ len
> MHLEN
)
148 ip6stat
.ip6s_pullup_fail
++;
152 dlen
= (prev
== m
) ? prevlen
: m
->m_len
;
153 mlen
= (prev
== m
) ? prevmlen
: m
->m_len
+ M_TRAILINGSPACE(m
);
155 if (dlen
>= off
+ len
)
156 ip6stat
.ip6s_pullup
--; /* call will not be made! */
157 else if ((m
->m_flags
& M_EXT
) != 0) {
158 ip6stat
.ip6s_pullup_alloc
++;
159 ip6stat
.ip6s_pullup_copy
++;
161 if (mlen
>= off
+ len
)
162 ip6stat
.ip6s_pullup_copy
++;
164 ip6stat
.ip6s_pullup_alloc
++;
165 ip6stat
.ip6s_pullup_copy
++;
173 /* statistics for m_pullup2 */
174 ip6stat
.ip6s_pullup2
++;
175 if (off
+ len
> MCLBYTES
)
176 ip6stat
.ip6s_pullup2_fail
++;
180 dlen
= (prev
== m
) ? prevlen
: m
->m_len
;
181 mlen
= (prev
== m
) ? prevmlen
: m
->m_len
+ M_TRAILINGSPACE(m
);
185 if (dlen
>= off
+ len
)
186 ip6stat
.ip6s_pullup2
--; /* call will not be made! */
187 else if ((m
->m_flags
& M_EXT
) != 0) {
188 ip6stat
.ip6s_pullup2_alloc
++;
189 ip6stat
.ip6s_pullup2_copy
++;
190 prevmlen
= (off
+ len
> MHLEN
) ? MCLBYTES
: MHLEN
;
192 if (mlen
>= off
+ len
)
193 ip6stat
.ip6s_pullup2_copy
++;
195 ip6stat
.ip6s_pullup2_alloc
++;
196 ip6stat
.ip6s_pullup2_copy
++;
197 prevmlen
= (off
+ len
> MHLEN
) ? MCLBYTES
206 #ifdef PULLDOWN_DEBUG
210 for (t
= m
; t
; t
= t
->m_next
)
211 printf(" %d", t
->m_len
);
216 while (n
!= NULL
&& off
> 0) {
222 /* be sure to point non-empty mbuf */
223 while (n
!= NULL
&& n
->m_len
== 0)
227 return NULL
; /* mbuf chain too short */
231 * the target data is on <n, off>.
232 * if we got enough data on the mbuf "n", we're done.
234 if ((off
== 0 || offp
) && len
<= n
->m_len
- off
)
237 #if defined(PULLDOWN_STAT) && defined(INET6)
238 ip6stat
.ip6s_pulldown_copy
++;
242 * when len < n->m_len - off and off != 0, it is a special case.
243 * len bytes from <n, off> sits in single mbuf, but the caller does
244 * not like the starting position (off).
245 * chop the current mbuf into two pieces, set off to 0.
247 if (len
< n
->m_len
- off
) {
248 o
= m_copym(n
, off
, n
->m_len
- off
, M_DONTWAIT
);
251 return NULL
; /* ENOBUFS */
254 o
->m_next
= n
->m_next
;
262 * we need to take hlen from <n, off> and tlen from <n->m_next, 0>,
263 * and construct contiguous mbuf with m_len == len.
264 * note that hlen + tlen == len, and tlen > 0.
266 hlen
= n
->m_len
- off
;
270 * ensure that we have enough trailing data on mbuf chain.
271 * if not, we can do nothing about the chain.
274 for (o
= n
->m_next
; o
!= NULL
; o
= o
->m_next
)
276 if (hlen
+ olen
< len
) {
278 return NULL
; /* mbuf chain too short */
283 * we need to use m_copydata() to get data from <n->m_next, 0>.
285 if ((n
->m_flags
& M_EXT
) == 0)
289 if (n
->m_ext
.ext_func
)
291 if (n
->m_ext
.ext_free
)
295 else if (MCLISREFERENCED(n
))
297 else if (mclrefcnt
[mtocl(n
->m_ext
.ext_buf
)] > 1)
303 if ((off
== 0 || offp
) && M_TRAILINGSPACE(n
) >= tlen
305 m_copydata(n
->m_next
, 0, tlen
, mtod(n
, caddr_t
) + n
->m_len
);
307 m_adj(n
->m_next
, tlen
);
310 if ((off
== 0 || offp
) && M_LEADINGSPACE(n
->m_next
) >= hlen
312 n
->m_next
->m_data
-= hlen
;
313 n
->m_next
->m_len
+= hlen
;
314 bcopy(mtod(n
, caddr_t
) + off
, mtod(n
->m_next
, caddr_t
), hlen
);
322 * now, we need to do the hard way. don't m_copy as there's no room
325 #if defined(PULLDOWN_STAT) && defined(INET6)
326 ip6stat
.ip6s_pulldown_alloc
++;
328 MGET(o
, M_DONTWAIT
, m
->m_type
);
331 return NULL
; /* ENOBUFS */
333 if (len
> MHLEN
) { /* use MHLEN just for safety */
334 MCLGET(o
, M_DONTWAIT
);
335 if ((o
->m_flags
& M_EXT
) == 0) {
338 return NULL
; /* ENOBUFS */
341 /* get hlen from <n, off> into <o, 0> */
343 bcopy(mtod(n
, caddr_t
) + off
, mtod(o
, caddr_t
), hlen
);
345 /* get tlen from <n->m_next, 0> into <o, hlen> */
346 m_copydata(n
->m_next
, 0, tlen
, mtod(o
, caddr_t
) + o
->m_len
);
348 m_adj(n
->m_next
, tlen
);
349 o
->m_next
= n
->m_next
;
355 #ifdef PULLDOWN_DEBUG
359 for (t
= m
; t
; t
= t
->m_next
)
360 printf("%c%d", t
== n
? '*' : ' ', t
->m_len
);
361 printf(" (off=%d)\n", off
);
370 * pkthdr.aux chain manipulation.
371 * we don't allow clusters at this moment.
374 m_aux_add(m
, af
, type
)
381 if ((m
->m_flags
& M_PKTHDR
) == 0)
384 n
= m_aux_find(m
, af
, type
);
388 MGET(n
, M_WAIT
, m
->m_type
);
392 t
= mtod(n
, struct mauxtag
*);
395 n
->m_data
+= sizeof(struct mauxtag
);
397 n
->m_next
= m
->m_pkthdr
.aux
;
403 m_aux_find(m
, af
, type
)
410 if ((m
->m_flags
& M_PKTHDR
) == 0)
413 for (n
= m
->m_pkthdr
.aux
; n
; n
= n
->m_next
) {
414 t
= (struct mauxtag
*)n
->m_dat
;
415 if (t
->af
== af
&& t
->type
== type
)
422 m_aux_delete(m
, victim
)
426 struct mbuf
*n
, *prev
, *next
;
429 if ((m
->m_flags
& M_PKTHDR
) == 0)
435 t
= (struct mauxtag
*)n
->m_dat
;
439 prev
->m_next
= n
->m_next
;
441 m
->m_pkthdr
.aux
= n
->m_next
;