Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml
[linux-block.git] / net / core / skbuff.c
CommitLineData
1da177e4
LT
1/*
2 * Routines having to do with the 'struct sk_buff' memory handlers.
3 *
113aa838 4 * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk>
1da177e4
LT
5 * Florian La Roche <rzsfl@rz.uni-sb.de>
6 *
1da177e4
LT
7 * Fixes:
8 * Alan Cox : Fixed the worst of the load
9 * balancer bugs.
10 * Dave Platt : Interrupt stacking fix.
11 * Richard Kooijman : Timestamp fixes.
12 * Alan Cox : Changed buffer format.
13 * Alan Cox : destructor hook for AF_UNIX etc.
14 * Linus Torvalds : Better skb_clone.
15 * Alan Cox : Added skb_copy.
16 * Alan Cox : Added all the changed routines Linus
17 * only put in the headers
18 * Ray VanTassle : Fixed --skb->lock in free
19 * Alan Cox : skb_copy copy arp field
20 * Andi Kleen : slabified it.
21 * Robert Olsson : Removed skb_head_pool
22 *
23 * NOTE:
24 * The __skb_ routines should be called with interrupts
25 * disabled, or you better be *real* sure that the operation is atomic
26 * with respect to whatever list is being frobbed (e.g. via lock_sock()
27 * or via disabling bottom half handlers, etc).
28 *
29 * This program is free software; you can redistribute it and/or
30 * modify it under the terms of the GNU General Public License
31 * as published by the Free Software Foundation; either version
32 * 2 of the License, or (at your option) any later version.
33 */
34
35/*
36 * The functions in this file will not compile correctly with gcc 2.4.x
37 */
38
e005d193
JP
39#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
40
1da177e4
LT
41#include <linux/module.h>
42#include <linux/types.h>
43#include <linux/kernel.h>
fe55f6d5 44#include <linux/kmemcheck.h>
1da177e4
LT
45#include <linux/mm.h>
46#include <linux/interrupt.h>
47#include <linux/in.h>
48#include <linux/inet.h>
49#include <linux/slab.h>
50#include <linux/netdevice.h>
51#ifdef CONFIG_NET_CLS_ACT
52#include <net/pkt_sched.h>
53#endif
54#include <linux/string.h>
55#include <linux/skbuff.h>
9c55e01c 56#include <linux/splice.h>
1da177e4
LT
57#include <linux/cache.h>
58#include <linux/rtnetlink.h>
59#include <linux/init.h>
716ea3a7 60#include <linux/scatterlist.h>
ac45f602 61#include <linux/errqueue.h>
268bb0ce 62#include <linux/prefetch.h>
1da177e4
LT
63
64#include <net/protocol.h>
65#include <net/dst.h>
66#include <net/sock.h>
67#include <net/checksum.h>
ed1f50c3 68#include <net/ip6_checksum.h>
1da177e4
LT
69#include <net/xfrm.h>
70
71#include <asm/uaccess.h>
ad8d75ff 72#include <trace/events/skb.h>
51c56b00 73#include <linux/highmem.h>
a1f8e7f7 74
d7e8883c 75struct kmem_cache *skbuff_head_cache __read_mostly;
e18b890b 76static struct kmem_cache *skbuff_fclone_cache __read_mostly;
1da177e4 77
1da177e4 78/**
f05de73b
JS
79 * skb_panic - private function for out-of-line support
80 * @skb: buffer
81 * @sz: size
82 * @addr: address
99d5851e 83 * @msg: skb_over_panic or skb_under_panic
1da177e4 84 *
f05de73b
JS
85 * Out-of-line support for skb_put() and skb_push().
86 * Called via the wrapper skb_over_panic() or skb_under_panic().
87 * Keep out of line to prevent kernel bloat.
88 * __builtin_return_address is not used because it is not always reliable.
1da177e4 89 */
f05de73b 90static void skb_panic(struct sk_buff *skb, unsigned int sz, void *addr,
99d5851e 91 const char msg[])
1da177e4 92{
e005d193 93 pr_emerg("%s: text:%p len:%d put:%d head:%p data:%p tail:%#lx end:%#lx dev:%s\n",
99d5851e 94 msg, addr, skb->len, sz, skb->head, skb->data,
e005d193
JP
95 (unsigned long)skb->tail, (unsigned long)skb->end,
96 skb->dev ? skb->dev->name : "<NULL>");
1da177e4
LT
97 BUG();
98}
99
f05de73b 100static void skb_over_panic(struct sk_buff *skb, unsigned int sz, void *addr)
1da177e4 101{
f05de73b 102 skb_panic(skb, sz, addr, __func__);
1da177e4
LT
103}
104
f05de73b
JS
105static void skb_under_panic(struct sk_buff *skb, unsigned int sz, void *addr)
106{
107 skb_panic(skb, sz, addr, __func__);
108}
c93bdd0e
MG
109
110/*
111 * kmalloc_reserve is a wrapper around kmalloc_node_track_caller that tells
112 * the caller if emergency pfmemalloc reserves are being used. If it is and
113 * the socket is later found to be SOCK_MEMALLOC then PFMEMALLOC reserves
114 * may be used. Otherwise, the packet data may be discarded until enough
115 * memory is free
116 */
117#define kmalloc_reserve(size, gfp, node, pfmemalloc) \
118 __kmalloc_reserve(size, gfp, node, _RET_IP_, pfmemalloc)
61c5e88a 119
120static void *__kmalloc_reserve(size_t size, gfp_t flags, int node,
121 unsigned long ip, bool *pfmemalloc)
c93bdd0e
MG
122{
123 void *obj;
124 bool ret_pfmemalloc = false;
125
126 /*
127 * Try a regular allocation, when that fails and we're not entitled
128 * to the reserves, fail.
129 */
130 obj = kmalloc_node_track_caller(size,
131 flags | __GFP_NOMEMALLOC | __GFP_NOWARN,
132 node);
133 if (obj || !(gfp_pfmemalloc_allowed(flags)))
134 goto out;
135
136 /* Try again but now we are using pfmemalloc reserves */
137 ret_pfmemalloc = true;
138 obj = kmalloc_node_track_caller(size, flags, node);
139
140out:
141 if (pfmemalloc)
142 *pfmemalloc = ret_pfmemalloc;
143
144 return obj;
145}
146
1da177e4
LT
147/* Allocate a new skbuff. We do this ourselves so we can fill in a few
148 * 'private' fields and also do memory statistics to find all the
149 * [BEEP] leaks.
150 *
151 */
152
0ebd0ac5
PM
153struct sk_buff *__alloc_skb_head(gfp_t gfp_mask, int node)
154{
155 struct sk_buff *skb;
156
157 /* Get the HEAD */
158 skb = kmem_cache_alloc_node(skbuff_head_cache,
159 gfp_mask & ~__GFP_DMA, node);
160 if (!skb)
161 goto out;
162
163 /*
164 * Only clear those fields we need to clear, not those that we will
165 * actually initialise below. Hence, don't put any more fields after
166 * the tail pointer in struct sk_buff!
167 */
168 memset(skb, 0, offsetof(struct sk_buff, tail));
5e71d9d7 169 skb->head = NULL;
0ebd0ac5
PM
170 skb->truesize = sizeof(struct sk_buff);
171 atomic_set(&skb->users, 1);
172
35d04610 173 skb->mac_header = (typeof(skb->mac_header))~0U;
0ebd0ac5
PM
174out:
175 return skb;
176}
177
1da177e4 178/**
d179cd12 179 * __alloc_skb - allocate a network buffer
1da177e4
LT
180 * @size: size to allocate
181 * @gfp_mask: allocation mask
c93bdd0e
MG
182 * @flags: If SKB_ALLOC_FCLONE is set, allocate from fclone cache
183 * instead of head cache and allocate a cloned (child) skb.
184 * If SKB_ALLOC_RX is set, __GFP_MEMALLOC will be used for
185 * allocations in case the data is required for writeback
b30973f8 186 * @node: numa node to allocate memory on
1da177e4
LT
187 *
188 * Allocate a new &sk_buff. The returned buffer has no headroom and a
94b6042c
BH
189 * tail room of at least size bytes. The object has a reference count
190 * of one. The return is the buffer. On a failure the return is %NULL.
1da177e4
LT
191 *
192 * Buffers may only be allocated from interrupts using a @gfp_mask of
193 * %GFP_ATOMIC.
194 */
dd0fc66f 195struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
c93bdd0e 196 int flags, int node)
1da177e4 197{
e18b890b 198 struct kmem_cache *cache;
4947d3ef 199 struct skb_shared_info *shinfo;
1da177e4
LT
200 struct sk_buff *skb;
201 u8 *data;
c93bdd0e 202 bool pfmemalloc;
1da177e4 203
c93bdd0e
MG
204 cache = (flags & SKB_ALLOC_FCLONE)
205 ? skbuff_fclone_cache : skbuff_head_cache;
206
207 if (sk_memalloc_socks() && (flags & SKB_ALLOC_RX))
208 gfp_mask |= __GFP_MEMALLOC;
8798b3fb 209
1da177e4 210 /* Get the HEAD */
b30973f8 211 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
1da177e4
LT
212 if (!skb)
213 goto out;
ec7d2f2c 214 prefetchw(skb);
1da177e4 215
87fb4b7b
ED
216 /* We do our best to align skb_shared_info on a separate cache
217 * line. It usually works because kmalloc(X > SMP_CACHE_BYTES) gives
218 * aligned memory blocks, unless SLUB/SLAB debug is enabled.
219 * Both skb->head and skb_shared_info are cache line aligned.
220 */
bc417e30 221 size = SKB_DATA_ALIGN(size);
87fb4b7b 222 size += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
c93bdd0e 223 data = kmalloc_reserve(size, gfp_mask, node, &pfmemalloc);
1da177e4
LT
224 if (!data)
225 goto nodata;
87fb4b7b
ED
226 /* kmalloc(size) might give us more room than requested.
227 * Put skb_shared_info exactly at the end of allocated zone,
228 * to allow max possible filling before reallocation.
229 */
230 size = SKB_WITH_OVERHEAD(ksize(data));
ec7d2f2c 231 prefetchw(data + size);
1da177e4 232
ca0605a7 233 /*
c8005785
JB
234 * Only clear those fields we need to clear, not those that we will
235 * actually initialise below. Hence, don't put any more fields after
236 * the tail pointer in struct sk_buff!
ca0605a7
ACM
237 */
238 memset(skb, 0, offsetof(struct sk_buff, tail));
87fb4b7b
ED
239 /* Account for allocated memory : skb + skb->head */
240 skb->truesize = SKB_TRUESIZE(size);
c93bdd0e 241 skb->pfmemalloc = pfmemalloc;
1da177e4
LT
242 atomic_set(&skb->users, 1);
243 skb->head = data;
244 skb->data = data;
27a884dc 245 skb_reset_tail_pointer(skb);
4305b541 246 skb->end = skb->tail + size;
35d04610
CW
247 skb->mac_header = (typeof(skb->mac_header))~0U;
248 skb->transport_header = (typeof(skb->transport_header))~0U;
19633e12 249
4947d3ef
BL
250 /* make sure we initialize shinfo sequentially */
251 shinfo = skb_shinfo(skb);
ec7d2f2c 252 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
4947d3ef 253 atomic_set(&shinfo->dataref, 1);
c2aa3665 254 kmemcheck_annotate_variable(shinfo->destructor_arg);
4947d3ef 255
c93bdd0e 256 if (flags & SKB_ALLOC_FCLONE) {
d179cd12
DM
257 struct sk_buff *child = skb + 1;
258 atomic_t *fclone_ref = (atomic_t *) (child + 1);
1da177e4 259
fe55f6d5
VN
260 kmemcheck_annotate_bitfield(child, flags1);
261 kmemcheck_annotate_bitfield(child, flags2);
d179cd12
DM
262 skb->fclone = SKB_FCLONE_ORIG;
263 atomic_set(fclone_ref, 1);
264
265 child->fclone = SKB_FCLONE_UNAVAILABLE;
c93bdd0e 266 child->pfmemalloc = pfmemalloc;
d179cd12 267 }
1da177e4
LT
268out:
269 return skb;
270nodata:
8798b3fb 271 kmem_cache_free(cache, skb);
1da177e4
LT
272 skb = NULL;
273 goto out;
1da177e4 274}
b4ac530f 275EXPORT_SYMBOL(__alloc_skb);
1da177e4 276
b2b5ce9d
ED
277/**
278 * build_skb - build a network buffer
279 * @data: data buffer provided by caller
d3836f21 280 * @frag_size: size of fragment, or 0 if head was kmalloced
b2b5ce9d
ED
281 *
282 * Allocate a new &sk_buff. Caller provides space holding head and
deceb4c0
FF
283 * skb_shared_info. @data must have been allocated by kmalloc() only if
284 * @frag_size is 0, otherwise data should come from the page allocator.
b2b5ce9d
ED
285 * The return is the new skb buffer.
286 * On a failure the return is %NULL, and @data is not freed.
287 * Notes :
288 * Before IO, driver allocates only data buffer where NIC put incoming frame
289 * Driver should add room at head (NET_SKB_PAD) and
290 * MUST add room at tail (SKB_DATA_ALIGN(skb_shared_info))
291 * After IO, driver calls build_skb(), to allocate sk_buff and populate it
292 * before giving packet to stack.
293 * RX rings only contains data buffers, not full skbs.
294 */
d3836f21 295struct sk_buff *build_skb(void *data, unsigned int frag_size)
b2b5ce9d
ED
296{
297 struct skb_shared_info *shinfo;
298 struct sk_buff *skb;
d3836f21 299 unsigned int size = frag_size ? : ksize(data);
b2b5ce9d
ED
300
301 skb = kmem_cache_alloc(skbuff_head_cache, GFP_ATOMIC);
302 if (!skb)
303 return NULL;
304
d3836f21 305 size -= SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
b2b5ce9d
ED
306
307 memset(skb, 0, offsetof(struct sk_buff, tail));
308 skb->truesize = SKB_TRUESIZE(size);
d3836f21 309 skb->head_frag = frag_size != 0;
b2b5ce9d
ED
310 atomic_set(&skb->users, 1);
311 skb->head = data;
312 skb->data = data;
313 skb_reset_tail_pointer(skb);
314 skb->end = skb->tail + size;
35d04610
CW
315 skb->mac_header = (typeof(skb->mac_header))~0U;
316 skb->transport_header = (typeof(skb->transport_header))~0U;
b2b5ce9d
ED
317
318 /* make sure we initialize shinfo sequentially */
319 shinfo = skb_shinfo(skb);
320 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
321 atomic_set(&shinfo->dataref, 1);
322 kmemcheck_annotate_variable(shinfo->destructor_arg);
323
324 return skb;
325}
326EXPORT_SYMBOL(build_skb);
327
a1c7fff7 328struct netdev_alloc_cache {
69b08f62
ED
329 struct page_frag frag;
330 /* we maintain a pagecount bias, so that we dont dirty cache line
331 * containing page->_count every time we allocate a fragment.
332 */
333 unsigned int pagecnt_bias;
a1c7fff7
ED
334};
335static DEFINE_PER_CPU(struct netdev_alloc_cache, netdev_alloc_cache);
336
c93bdd0e 337static void *__netdev_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
6f532612
ED
338{
339 struct netdev_alloc_cache *nc;
340 void *data = NULL;
69b08f62 341 int order;
6f532612
ED
342 unsigned long flags;
343
344 local_irq_save(flags);
345 nc = &__get_cpu_var(netdev_alloc_cache);
69b08f62 346 if (unlikely(!nc->frag.page)) {
6f532612 347refill:
69b08f62
ED
348 for (order = NETDEV_FRAG_PAGE_MAX_ORDER; ;) {
349 gfp_t gfp = gfp_mask;
350
351 if (order)
352 gfp |= __GFP_COMP | __GFP_NOWARN;
353 nc->frag.page = alloc_pages(gfp, order);
354 if (likely(nc->frag.page))
355 break;
356 if (--order < 0)
357 goto end;
358 }
359 nc->frag.size = PAGE_SIZE << order;
540eb7bf 360recycle:
69b08f62
ED
361 atomic_set(&nc->frag.page->_count, NETDEV_PAGECNT_MAX_BIAS);
362 nc->pagecnt_bias = NETDEV_PAGECNT_MAX_BIAS;
363 nc->frag.offset = 0;
6f532612 364 }
540eb7bf 365
69b08f62 366 if (nc->frag.offset + fragsz > nc->frag.size) {
540eb7bf 367 /* avoid unnecessary locked operations if possible */
69b08f62
ED
368 if ((atomic_read(&nc->frag.page->_count) == nc->pagecnt_bias) ||
369 atomic_sub_and_test(nc->pagecnt_bias, &nc->frag.page->_count))
540eb7bf
AD
370 goto recycle;
371 goto refill;
6f532612 372 }
540eb7bf 373
69b08f62
ED
374 data = page_address(nc->frag.page) + nc->frag.offset;
375 nc->frag.offset += fragsz;
540eb7bf
AD
376 nc->pagecnt_bias--;
377end:
6f532612
ED
378 local_irq_restore(flags);
379 return data;
380}
c93bdd0e
MG
381
382/**
383 * netdev_alloc_frag - allocate a page fragment
384 * @fragsz: fragment size
385 *
386 * Allocates a frag from a page for receive buffer.
387 * Uses GFP_ATOMIC allocations.
388 */
389void *netdev_alloc_frag(unsigned int fragsz)
390{
391 return __netdev_alloc_frag(fragsz, GFP_ATOMIC | __GFP_COLD);
392}
6f532612
ED
393EXPORT_SYMBOL(netdev_alloc_frag);
394
8af27456
CH
395/**
396 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
397 * @dev: network device to receive on
398 * @length: length to allocate
399 * @gfp_mask: get_free_pages mask, passed to alloc_skb
400 *
401 * Allocate a new &sk_buff and assign it a usage count of one. The
402 * buffer has unspecified headroom built in. Users should allocate
403 * the headroom they think they need without accounting for the
404 * built in space. The built in space is used for optimisations.
405 *
406 * %NULL is returned if there is no free memory.
407 */
408struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
6f532612 409 unsigned int length, gfp_t gfp_mask)
8af27456 410{
6f532612 411 struct sk_buff *skb = NULL;
a1c7fff7
ED
412 unsigned int fragsz = SKB_DATA_ALIGN(length + NET_SKB_PAD) +
413 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
414
310e158c 415 if (fragsz <= PAGE_SIZE && !(gfp_mask & (__GFP_WAIT | GFP_DMA))) {
c93bdd0e
MG
416 void *data;
417
418 if (sk_memalloc_socks())
419 gfp_mask |= __GFP_MEMALLOC;
420
421 data = __netdev_alloc_frag(fragsz, gfp_mask);
a1c7fff7 422
6f532612
ED
423 if (likely(data)) {
424 skb = build_skb(data, fragsz);
425 if (unlikely(!skb))
426 put_page(virt_to_head_page(data));
a1c7fff7 427 }
a1c7fff7 428 } else {
c93bdd0e
MG
429 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask,
430 SKB_ALLOC_RX, NUMA_NO_NODE);
a1c7fff7 431 }
7b2e497a 432 if (likely(skb)) {
8af27456 433 skb_reserve(skb, NET_SKB_PAD);
7b2e497a
CH
434 skb->dev = dev;
435 }
8af27456
CH
436 return skb;
437}
b4ac530f 438EXPORT_SYMBOL(__netdev_alloc_skb);
1da177e4 439
654bed16 440void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
50269e19 441 int size, unsigned int truesize)
654bed16
PZ
442{
443 skb_fill_page_desc(skb, i, page, off, size);
444 skb->len += size;
445 skb->data_len += size;
50269e19 446 skb->truesize += truesize;
654bed16
PZ
447}
448EXPORT_SYMBOL(skb_add_rx_frag);
449
f8e617e1
JW
450void skb_coalesce_rx_frag(struct sk_buff *skb, int i, int size,
451 unsigned int truesize)
452{
453 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
454
455 skb_frag_size_add(frag, size);
456 skb->len += size;
457 skb->data_len += size;
458 skb->truesize += truesize;
459}
460EXPORT_SYMBOL(skb_coalesce_rx_frag);
461
27b437c8 462static void skb_drop_list(struct sk_buff **listp)
1da177e4 463{
bd8a7036 464 kfree_skb_list(*listp);
27b437c8 465 *listp = NULL;
1da177e4
LT
466}
467
27b437c8
HX
468static inline void skb_drop_fraglist(struct sk_buff *skb)
469{
470 skb_drop_list(&skb_shinfo(skb)->frag_list);
471}
472
1da177e4
LT
473static void skb_clone_fraglist(struct sk_buff *skb)
474{
475 struct sk_buff *list;
476
fbb398a8 477 skb_walk_frags(skb, list)
1da177e4
LT
478 skb_get(list);
479}
480
d3836f21
ED
481static void skb_free_head(struct sk_buff *skb)
482{
483 if (skb->head_frag)
484 put_page(virt_to_head_page(skb->head));
485 else
486 kfree(skb->head);
487}
488
5bba1712 489static void skb_release_data(struct sk_buff *skb)
1da177e4
LT
490{
491 if (!skb->cloned ||
492 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
493 &skb_shinfo(skb)->dataref)) {
494 if (skb_shinfo(skb)->nr_frags) {
495 int i;
496 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
ea2ab693 497 skb_frag_unref(skb, i);
1da177e4
LT
498 }
499
a6686f2f
SM
500 /*
501 * If skb buf is from userspace, we need to notify the caller
502 * the lower device DMA has done;
503 */
504 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
505 struct ubuf_info *uarg;
506
507 uarg = skb_shinfo(skb)->destructor_arg;
508 if (uarg->callback)
e19d6763 509 uarg->callback(uarg, true);
a6686f2f
SM
510 }
511
21dc3301 512 if (skb_has_frag_list(skb))
1da177e4
LT
513 skb_drop_fraglist(skb);
514
d3836f21 515 skb_free_head(skb);
1da177e4
LT
516 }
517}
518
519/*
520 * Free an skbuff by memory without cleaning the state.
521 */
2d4baff8 522static void kfree_skbmem(struct sk_buff *skb)
1da177e4 523{
d179cd12
DM
524 struct sk_buff *other;
525 atomic_t *fclone_ref;
526
d179cd12
DM
527 switch (skb->fclone) {
528 case SKB_FCLONE_UNAVAILABLE:
529 kmem_cache_free(skbuff_head_cache, skb);
530 break;
531
532 case SKB_FCLONE_ORIG:
533 fclone_ref = (atomic_t *) (skb + 2);
534 if (atomic_dec_and_test(fclone_ref))
535 kmem_cache_free(skbuff_fclone_cache, skb);
536 break;
537
538 case SKB_FCLONE_CLONE:
539 fclone_ref = (atomic_t *) (skb + 1);
540 other = skb - 1;
541
542 /* The clone portion is available for
543 * fast-cloning again.
544 */
545 skb->fclone = SKB_FCLONE_UNAVAILABLE;
546
547 if (atomic_dec_and_test(fclone_ref))
548 kmem_cache_free(skbuff_fclone_cache, other);
549 break;
3ff50b79 550 }
1da177e4
LT
551}
552
04a4bb55 553static void skb_release_head_state(struct sk_buff *skb)
1da177e4 554{
adf30907 555 skb_dst_drop(skb);
1da177e4
LT
556#ifdef CONFIG_XFRM
557 secpath_put(skb->sp);
558#endif
9c2b3328
SH
559 if (skb->destructor) {
560 WARN_ON(in_irq());
1da177e4
LT
561 skb->destructor(skb);
562 }
a3bf7ae9 563#if IS_ENABLED(CONFIG_NF_CONNTRACK)
5f79e0f9 564 nf_conntrack_put(skb->nfct);
2fc72c7b 565#endif
1da177e4
LT
566#ifdef CONFIG_BRIDGE_NETFILTER
567 nf_bridge_put(skb->nf_bridge);
568#endif
1da177e4
LT
569/* XXX: IS this still necessary? - JHS */
570#ifdef CONFIG_NET_SCHED
571 skb->tc_index = 0;
572#ifdef CONFIG_NET_CLS_ACT
573 skb->tc_verd = 0;
1da177e4
LT
574#endif
575#endif
04a4bb55
LB
576}
577
578/* Free everything but the sk_buff shell. */
579static void skb_release_all(struct sk_buff *skb)
580{
581 skb_release_head_state(skb);
5e71d9d7 582 if (likely(skb->head))
0ebd0ac5 583 skb_release_data(skb);
2d4baff8
HX
584}
585
586/**
587 * __kfree_skb - private function
588 * @skb: buffer
589 *
590 * Free an sk_buff. Release anything attached to the buffer.
591 * Clean the state. This is an internal helper function. Users should
592 * always call kfree_skb
593 */
1da177e4 594
2d4baff8
HX
595void __kfree_skb(struct sk_buff *skb)
596{
597 skb_release_all(skb);
1da177e4
LT
598 kfree_skbmem(skb);
599}
b4ac530f 600EXPORT_SYMBOL(__kfree_skb);
1da177e4 601