Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Routines having to do with the 'struct sk_buff' memory handlers. |
| 3 | * |
Alan Cox | 113aa83 | 2008-10-13 19:01:08 -0700 | [diff] [blame] | 4 | * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Florian La Roche <rzsfl@rz.uni-sb.de> |
| 6 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Joe Perches | e005d19 | 2012-05-16 19:58:40 +0000 | [diff] [blame] | 39 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <linux/module.h> |
| 42 | #include <linux/types.h> |
| 43 | #include <linux/kernel.h> |
Vegard Nossum | fe55f6d | 2008-08-30 12:16:35 +0200 | [diff] [blame] | 44 | #include <linux/kmemcheck.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 56 | #include <linux/splice.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #include <linux/cache.h> |
| 58 | #include <linux/rtnetlink.h> |
| 59 | #include <linux/init.h> |
David Howells | 716ea3a | 2007-04-02 20:19:53 -0700 | [diff] [blame] | 60 | #include <linux/scatterlist.h> |
Patrick Ohly | ac45f60 | 2009-02-12 05:03:37 +0000 | [diff] [blame] | 61 | #include <linux/errqueue.h> |
Linus Torvalds | 268bb0c | 2011-05-20 12:50:29 -0700 | [diff] [blame] | 62 | #include <linux/prefetch.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
| 64 | #include <net/protocol.h> |
| 65 | #include <net/dst.h> |
| 66 | #include <net/sock.h> |
| 67 | #include <net/checksum.h> |
| 68 | #include <net/xfrm.h> |
| 69 | |
| 70 | #include <asm/uaccess.h> |
Steven Rostedt | ad8d75f | 2009-04-14 19:39:12 -0400 | [diff] [blame] | 71 | #include <trace/events/skb.h> |
Eric Dumazet | 51c56b0 | 2012-04-05 11:35:15 +0200 | [diff] [blame] | 72 | #include <linux/highmem.h> |
Al Viro | a1f8e7f7 | 2006-10-19 16:08:53 -0400 | [diff] [blame] | 73 | |
Eric Dumazet | d7e8883 | 2012-04-30 08:10:34 +0000 | [diff] [blame] | 74 | struct kmem_cache *skbuff_head_cache __read_mostly; |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 75 | static struct kmem_cache *skbuff_fclone_cache __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 77 | static void sock_pipe_buf_release(struct pipe_inode_info *pipe, |
| 78 | struct pipe_buffer *buf) |
| 79 | { |
Jarek Poplawski | 8b9d372 | 2009-01-19 17:03:56 -0800 | [diff] [blame] | 80 | put_page(buf->page); |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | static void sock_pipe_buf_get(struct pipe_inode_info *pipe, |
| 84 | struct pipe_buffer *buf) |
| 85 | { |
Jarek Poplawski | 8b9d372 | 2009-01-19 17:03:56 -0800 | [diff] [blame] | 86 | get_page(buf->page); |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | static int sock_pipe_buf_steal(struct pipe_inode_info *pipe, |
| 90 | struct pipe_buffer *buf) |
| 91 | { |
| 92 | return 1; |
| 93 | } |
| 94 | |
| 95 | |
| 96 | /* Pipe buffer operations for a socket. */ |
Alexey Dobriyan | 28dfef8 | 2009-12-15 16:46:48 -0800 | [diff] [blame] | 97 | static const struct pipe_buf_operations sock_pipe_buf_ops = { |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 98 | .can_merge = 0, |
| 99 | .map = generic_pipe_buf_map, |
| 100 | .unmap = generic_pipe_buf_unmap, |
| 101 | .confirm = generic_pipe_buf_confirm, |
| 102 | .release = sock_pipe_buf_release, |
| 103 | .steal = sock_pipe_buf_steal, |
| 104 | .get = sock_pipe_buf_get, |
| 105 | }; |
| 106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | /** |
Jean Sacren | f05de73 | 2013-02-11 13:30:38 +0000 | [diff] [blame] | 108 | * skb_panic - private function for out-of-line support |
| 109 | * @skb: buffer |
| 110 | * @sz: size |
| 111 | * @addr: address |
James Hogan | 99d5851 | 2013-02-13 11:20:27 +0000 | [diff] [blame] | 112 | * @msg: skb_over_panic or skb_under_panic |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | * |
Jean Sacren | f05de73 | 2013-02-11 13:30:38 +0000 | [diff] [blame] | 114 | * Out-of-line support for skb_put() and skb_push(). |
| 115 | * Called via the wrapper skb_over_panic() or skb_under_panic(). |
| 116 | * Keep out of line to prevent kernel bloat. |
| 117 | * __builtin_return_address is not used because it is not always reliable. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | */ |
Jean Sacren | f05de73 | 2013-02-11 13:30:38 +0000 | [diff] [blame] | 119 | static void skb_panic(struct sk_buff *skb, unsigned int sz, void *addr, |
James Hogan | 99d5851 | 2013-02-13 11:20:27 +0000 | [diff] [blame] | 120 | const char msg[]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | { |
Joe Perches | e005d19 | 2012-05-16 19:58:40 +0000 | [diff] [blame] | 122 | pr_emerg("%s: text:%p len:%d put:%d head:%p data:%p tail:%#lx end:%#lx dev:%s\n", |
James Hogan | 99d5851 | 2013-02-13 11:20:27 +0000 | [diff] [blame] | 123 | msg, addr, skb->len, sz, skb->head, skb->data, |
Joe Perches | e005d19 | 2012-05-16 19:58:40 +0000 | [diff] [blame] | 124 | (unsigned long)skb->tail, (unsigned long)skb->end, |
| 125 | skb->dev ? skb->dev->name : "<NULL>"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | BUG(); |
| 127 | } |
| 128 | |
Jean Sacren | f05de73 | 2013-02-11 13:30:38 +0000 | [diff] [blame] | 129 | static void skb_over_panic(struct sk_buff *skb, unsigned int sz, void *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | { |
Jean Sacren | f05de73 | 2013-02-11 13:30:38 +0000 | [diff] [blame] | 131 | skb_panic(skb, sz, addr, __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | } |
| 133 | |
Jean Sacren | f05de73 | 2013-02-11 13:30:38 +0000 | [diff] [blame] | 134 | static void skb_under_panic(struct sk_buff *skb, unsigned int sz, void *addr) |
| 135 | { |
| 136 | skb_panic(skb, sz, addr, __func__); |
| 137 | } |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 138 | |
| 139 | /* |
| 140 | * kmalloc_reserve is a wrapper around kmalloc_node_track_caller that tells |
| 141 | * the caller if emergency pfmemalloc reserves are being used. If it is and |
| 142 | * the socket is later found to be SOCK_MEMALLOC then PFMEMALLOC reserves |
| 143 | * may be used. Otherwise, the packet data may be discarded until enough |
| 144 | * memory is free |
| 145 | */ |
| 146 | #define kmalloc_reserve(size, gfp, node, pfmemalloc) \ |
| 147 | __kmalloc_reserve(size, gfp, node, _RET_IP_, pfmemalloc) |
stephen hemminger | 61c5e88 | 2012-12-28 18:24:28 +0000 | [diff] [blame] | 148 | |
| 149 | static void *__kmalloc_reserve(size_t size, gfp_t flags, int node, |
| 150 | unsigned long ip, bool *pfmemalloc) |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 151 | { |
| 152 | void *obj; |
| 153 | bool ret_pfmemalloc = false; |
| 154 | |
| 155 | /* |
| 156 | * Try a regular allocation, when that fails and we're not entitled |
| 157 | * to the reserves, fail. |
| 158 | */ |
| 159 | obj = kmalloc_node_track_caller(size, |
| 160 | flags | __GFP_NOMEMALLOC | __GFP_NOWARN, |
| 161 | node); |
| 162 | if (obj || !(gfp_pfmemalloc_allowed(flags))) |
| 163 | goto out; |
| 164 | |
| 165 | /* Try again but now we are using pfmemalloc reserves */ |
| 166 | ret_pfmemalloc = true; |
| 167 | obj = kmalloc_node_track_caller(size, flags, node); |
| 168 | |
| 169 | out: |
| 170 | if (pfmemalloc) |
| 171 | *pfmemalloc = ret_pfmemalloc; |
| 172 | |
| 173 | return obj; |
| 174 | } |
| 175 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | /* Allocate a new skbuff. We do this ourselves so we can fill in a few |
| 177 | * 'private' fields and also do memory statistics to find all the |
| 178 | * [BEEP] leaks. |
| 179 | * |
| 180 | */ |
| 181 | |
| 182 | /** |
David S. Miller | d179cd1 | 2005-08-17 14:57:30 -0700 | [diff] [blame] | 183 | * __alloc_skb - allocate a network buffer |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | * @size: size to allocate |
| 185 | * @gfp_mask: allocation mask |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 186 | * @flags: If SKB_ALLOC_FCLONE is set, allocate from fclone cache |
| 187 | * instead of head cache and allocate a cloned (child) skb. |
| 188 | * If SKB_ALLOC_RX is set, __GFP_MEMALLOC will be used for |
| 189 | * allocations in case the data is required for writeback |
Christoph Hellwig | b30973f | 2006-12-06 20:32:36 -0800 | [diff] [blame] | 190 | * @node: numa node to allocate memory on |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | * |
| 192 | * Allocate a new &sk_buff. The returned buffer has no headroom and a |
Ben Hutchings | 94b6042 | 2012-06-06 15:23:37 +0000 | [diff] [blame] | 193 | * tail room of at least size bytes. The object has a reference count |
| 194 | * of one. The return is the buffer. On a failure the return is %NULL. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | * |
| 196 | * Buffers may only be allocated from interrupts using a @gfp_mask of |
| 197 | * %GFP_ATOMIC. |
| 198 | */ |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 199 | struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask, |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 200 | int flags, int node) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | { |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 202 | struct kmem_cache *cache; |
Benjamin LaHaise | 4947d3e | 2006-01-03 14:06:50 -0800 | [diff] [blame] | 203 | struct skb_shared_info *shinfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | struct sk_buff *skb; |
| 205 | u8 *data; |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 206 | bool pfmemalloc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 208 | cache = (flags & SKB_ALLOC_FCLONE) |
| 209 | ? skbuff_fclone_cache : skbuff_head_cache; |
| 210 | |
| 211 | if (sk_memalloc_socks() && (flags & SKB_ALLOC_RX)) |
| 212 | gfp_mask |= __GFP_MEMALLOC; |
Herbert Xu | 8798b3f | 2006-01-23 16:32:45 -0800 | [diff] [blame] | 213 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | /* Get the HEAD */ |
Christoph Hellwig | b30973f | 2006-12-06 20:32:36 -0800 | [diff] [blame] | 215 | skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | if (!skb) |
| 217 | goto out; |
Eric Dumazet | ec7d2f2 | 2010-05-05 01:07:37 -0700 | [diff] [blame] | 218 | prefetchw(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | |
Eric Dumazet | 87fb4b7 | 2011-10-13 07:28:54 +0000 | [diff] [blame] | 220 | /* We do our best to align skb_shared_info on a separate cache |
| 221 | * line. It usually works because kmalloc(X > SMP_CACHE_BYTES) gives |
| 222 | * aligned memory blocks, unless SLUB/SLAB debug is enabled. |
| 223 | * Both skb->head and skb_shared_info are cache line aligned. |
| 224 | */ |
Tony Lindgren | bc417e3 | 2011-11-02 13:40:28 +0000 | [diff] [blame] | 225 | size = SKB_DATA_ALIGN(size); |
Eric Dumazet | 87fb4b7 | 2011-10-13 07:28:54 +0000 | [diff] [blame] | 226 | size += SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 227 | data = kmalloc_reserve(size, gfp_mask, node, &pfmemalloc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | if (!data) |
| 229 | goto nodata; |
Eric Dumazet | 87fb4b7 | 2011-10-13 07:28:54 +0000 | [diff] [blame] | 230 | /* kmalloc(size) might give us more room than requested. |
| 231 | * Put skb_shared_info exactly at the end of allocated zone, |
| 232 | * to allow max possible filling before reallocation. |
| 233 | */ |
| 234 | size = SKB_WITH_OVERHEAD(ksize(data)); |
Eric Dumazet | ec7d2f2 | 2010-05-05 01:07:37 -0700 | [diff] [blame] | 235 | prefetchw(data + size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
Arnaldo Carvalho de Melo | ca0605a | 2007-03-19 10:48:59 -0300 | [diff] [blame] | 237 | /* |
Johannes Berg | c800578 | 2008-05-03 20:56:42 -0700 | [diff] [blame] | 238 | * Only clear those fields we need to clear, not those that we will |
| 239 | * actually initialise below. Hence, don't put any more fields after |
| 240 | * the tail pointer in struct sk_buff! |
Arnaldo Carvalho de Melo | ca0605a | 2007-03-19 10:48:59 -0300 | [diff] [blame] | 241 | */ |
| 242 | memset(skb, 0, offsetof(struct sk_buff, tail)); |
Eric Dumazet | 87fb4b7 | 2011-10-13 07:28:54 +0000 | [diff] [blame] | 243 | /* Account for allocated memory : skb + skb->head */ |
| 244 | skb->truesize = SKB_TRUESIZE(size); |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 245 | skb->pfmemalloc = pfmemalloc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | atomic_set(&skb->users, 1); |
| 247 | skb->head = data; |
| 248 | skb->data = data; |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 249 | skb_reset_tail_pointer(skb); |
Arnaldo Carvalho de Melo | 4305b54 | 2007-04-19 20:43:29 -0700 | [diff] [blame] | 250 | skb->end = skb->tail + size; |
Stephen Hemminger | 19633e1 | 2009-06-17 05:23:27 +0000 | [diff] [blame] | 251 | #ifdef NET_SKBUFF_DATA_USES_OFFSET |
| 252 | skb->mac_header = ~0U; |
Eric Dumazet | fda55ec | 2013-01-07 09:28:21 +0000 | [diff] [blame] | 253 | skb->transport_header = ~0U; |
Stephen Hemminger | 19633e1 | 2009-06-17 05:23:27 +0000 | [diff] [blame] | 254 | #endif |
| 255 | |
Benjamin LaHaise | 4947d3e | 2006-01-03 14:06:50 -0800 | [diff] [blame] | 256 | /* make sure we initialize shinfo sequentially */ |
| 257 | shinfo = skb_shinfo(skb); |
Eric Dumazet | ec7d2f2 | 2010-05-05 01:07:37 -0700 | [diff] [blame] | 258 | memset(shinfo, 0, offsetof(struct skb_shared_info, dataref)); |
Benjamin LaHaise | 4947d3e | 2006-01-03 14:06:50 -0800 | [diff] [blame] | 259 | atomic_set(&shinfo->dataref, 1); |
Eric Dumazet | c2aa366 | 2011-01-25 23:18:38 +0000 | [diff] [blame] | 260 | kmemcheck_annotate_variable(shinfo->destructor_arg); |
Benjamin LaHaise | 4947d3e | 2006-01-03 14:06:50 -0800 | [diff] [blame] | 261 | |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 262 | if (flags & SKB_ALLOC_FCLONE) { |
David S. Miller | d179cd1 | 2005-08-17 14:57:30 -0700 | [diff] [blame] | 263 | struct sk_buff *child = skb + 1; |
| 264 | atomic_t *fclone_ref = (atomic_t *) (child + 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | |
Vegard Nossum | fe55f6d | 2008-08-30 12:16:35 +0200 | [diff] [blame] | 266 | kmemcheck_annotate_bitfield(child, flags1); |
| 267 | kmemcheck_annotate_bitfield(child, flags2); |
David S. Miller | d179cd1 | 2005-08-17 14:57:30 -0700 | [diff] [blame] | 268 | skb->fclone = SKB_FCLONE_ORIG; |
| 269 | atomic_set(fclone_ref, 1); |
| 270 | |
| 271 | child->fclone = SKB_FCLONE_UNAVAILABLE; |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 272 | child->pfmemalloc = pfmemalloc; |
David S. Miller | d179cd1 | 2005-08-17 14:57:30 -0700 | [diff] [blame] | 273 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | out: |
| 275 | return skb; |
| 276 | nodata: |
Herbert Xu | 8798b3f | 2006-01-23 16:32:45 -0800 | [diff] [blame] | 277 | kmem_cache_free(cache, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | skb = NULL; |
| 279 | goto out; |
| 280 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 281 | EXPORT_SYMBOL(__alloc_skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | |
| 283 | /** |
Eric Dumazet | b2b5ce9 | 2011-11-14 06:03:34 +0000 | [diff] [blame] | 284 | * build_skb - build a network buffer |
| 285 | * @data: data buffer provided by caller |
Eric Dumazet | d3836f2 | 2012-04-27 00:33:38 +0000 | [diff] [blame] | 286 | * @frag_size: size of fragment, or 0 if head was kmalloced |
Eric Dumazet | b2b5ce9 | 2011-11-14 06:03:34 +0000 | [diff] [blame] | 287 | * |
| 288 | * Allocate a new &sk_buff. Caller provides space holding head and |
| 289 | * skb_shared_info. @data must have been allocated by kmalloc() |
| 290 | * The return is the new skb buffer. |
| 291 | * On a failure the return is %NULL, and @data is not freed. |
| 292 | * Notes : |
| 293 | * Before IO, driver allocates only data buffer where NIC put incoming frame |
| 294 | * Driver should add room at head (NET_SKB_PAD) and |
| 295 | * MUST add room at tail (SKB_DATA_ALIGN(skb_shared_info)) |
| 296 | * After IO, driver calls build_skb(), to allocate sk_buff and populate it |
| 297 | * before giving packet to stack. |
| 298 | * RX rings only contains data buffers, not full skbs. |
| 299 | */ |
Eric Dumazet | d3836f2 | 2012-04-27 00:33:38 +0000 | [diff] [blame] | 300 | struct sk_buff *build_skb(void *data, unsigned int frag_size) |
Eric Dumazet | b2b5ce9 | 2011-11-14 06:03:34 +0000 | [diff] [blame] | 301 | { |
| 302 | struct skb_shared_info *shinfo; |
| 303 | struct sk_buff *skb; |
Eric Dumazet | d3836f2 | 2012-04-27 00:33:38 +0000 | [diff] [blame] | 304 | unsigned int size = frag_size ? : ksize(data); |
Eric Dumazet | b2b5ce9 | 2011-11-14 06:03:34 +0000 | [diff] [blame] | 305 | |
| 306 | skb = kmem_cache_alloc(skbuff_head_cache, GFP_ATOMIC); |
| 307 | if (!skb) |
| 308 | return NULL; |
| 309 | |
Eric Dumazet | d3836f2 | 2012-04-27 00:33:38 +0000 | [diff] [blame] | 310 | size -= SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); |
Eric Dumazet | b2b5ce9 | 2011-11-14 06:03:34 +0000 | [diff] [blame] | 311 | |
| 312 | memset(skb, 0, offsetof(struct sk_buff, tail)); |
| 313 | skb->truesize = SKB_TRUESIZE(size); |
Eric Dumazet | d3836f2 | 2012-04-27 00:33:38 +0000 | [diff] [blame] | 314 | skb->head_frag = frag_size != 0; |
Eric Dumazet | b2b5ce9 | 2011-11-14 06:03:34 +0000 | [diff] [blame] | 315 | atomic_set(&skb->users, 1); |
| 316 | skb->head = data; |
| 317 | skb->data = data; |
| 318 | skb_reset_tail_pointer(skb); |
| 319 | skb->end = skb->tail + size; |
| 320 | #ifdef NET_SKBUFF_DATA_USES_OFFSET |
| 321 | skb->mac_header = ~0U; |
Eric Dumazet | fda55ec | 2013-01-07 09:28:21 +0000 | [diff] [blame] | 322 | skb->transport_header = ~0U; |
Eric Dumazet | b2b5ce9 | 2011-11-14 06:03:34 +0000 | [diff] [blame] | 323 | #endif |
| 324 | |
| 325 | /* make sure we initialize shinfo sequentially */ |
| 326 | shinfo = skb_shinfo(skb); |
| 327 | memset(shinfo, 0, offsetof(struct skb_shared_info, dataref)); |
| 328 | atomic_set(&shinfo->dataref, 1); |
| 329 | kmemcheck_annotate_variable(shinfo->destructor_arg); |
| 330 | |
| 331 | return skb; |
| 332 | } |
| 333 | EXPORT_SYMBOL(build_skb); |
| 334 | |
Eric Dumazet | a1c7fff | 2012-05-17 07:34:16 +0000 | [diff] [blame] | 335 | struct netdev_alloc_cache { |
Eric Dumazet | 69b08f6 | 2012-09-26 06:46:57 +0000 | [diff] [blame] | 336 | struct page_frag frag; |
| 337 | /* we maintain a pagecount bias, so that we dont dirty cache line |
| 338 | * containing page->_count every time we allocate a fragment. |
| 339 | */ |
| 340 | unsigned int pagecnt_bias; |
Eric Dumazet | a1c7fff | 2012-05-17 07:34:16 +0000 | [diff] [blame] | 341 | }; |
| 342 | static DEFINE_PER_CPU(struct netdev_alloc_cache, netdev_alloc_cache); |
| 343 | |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 344 | static void *__netdev_alloc_frag(unsigned int fragsz, gfp_t gfp_mask) |
Eric Dumazet | 6f53261 | 2012-05-18 05:12:12 +0000 | [diff] [blame] | 345 | { |
| 346 | struct netdev_alloc_cache *nc; |
| 347 | void *data = NULL; |
Eric Dumazet | 69b08f6 | 2012-09-26 06:46:57 +0000 | [diff] [blame] | 348 | int order; |
Eric Dumazet | 6f53261 | 2012-05-18 05:12:12 +0000 | [diff] [blame] | 349 | unsigned long flags; |
| 350 | |
| 351 | local_irq_save(flags); |
| 352 | nc = &__get_cpu_var(netdev_alloc_cache); |
Eric Dumazet | 69b08f6 | 2012-09-26 06:46:57 +0000 | [diff] [blame] | 353 | if (unlikely(!nc->frag.page)) { |
Eric Dumazet | 6f53261 | 2012-05-18 05:12:12 +0000 | [diff] [blame] | 354 | refill: |
Eric Dumazet | 69b08f6 | 2012-09-26 06:46:57 +0000 | [diff] [blame] | 355 | for (order = NETDEV_FRAG_PAGE_MAX_ORDER; ;) { |
| 356 | gfp_t gfp = gfp_mask; |
| 357 | |
| 358 | if (order) |
| 359 | gfp |= __GFP_COMP | __GFP_NOWARN; |
| 360 | nc->frag.page = alloc_pages(gfp, order); |
| 361 | if (likely(nc->frag.page)) |
| 362 | break; |
| 363 | if (--order < 0) |
| 364 | goto end; |
| 365 | } |
| 366 | nc->frag.size = PAGE_SIZE << order; |
Alexander Duyck | 540eb7b | 2012-07-12 14:23:50 +0000 | [diff] [blame] | 367 | recycle: |
Eric Dumazet | 69b08f6 | 2012-09-26 06:46:57 +0000 | [diff] [blame] | 368 | atomic_set(&nc->frag.page->_count, NETDEV_PAGECNT_MAX_BIAS); |
| 369 | nc->pagecnt_bias = NETDEV_PAGECNT_MAX_BIAS; |
| 370 | nc->frag.offset = 0; |
Eric Dumazet | 6f53261 | 2012-05-18 05:12:12 +0000 | [diff] [blame] | 371 | } |
Alexander Duyck | 540eb7b | 2012-07-12 14:23:50 +0000 | [diff] [blame] | 372 | |
Eric Dumazet | 69b08f6 | 2012-09-26 06:46:57 +0000 | [diff] [blame] | 373 | if (nc->frag.offset + fragsz > nc->frag.size) { |
Alexander Duyck | 540eb7b | 2012-07-12 14:23:50 +0000 | [diff] [blame] | 374 | /* avoid unnecessary locked operations if possible */ |
Eric Dumazet | 69b08f6 | 2012-09-26 06:46:57 +0000 | [diff] [blame] | 375 | if ((atomic_read(&nc->frag.page->_count) == nc->pagecnt_bias) || |
| 376 | atomic_sub_and_test(nc->pagecnt_bias, &nc->frag.page->_count)) |
Alexander Duyck | 540eb7b | 2012-07-12 14:23:50 +0000 | [diff] [blame] | 377 | goto recycle; |
| 378 | goto refill; |
Eric Dumazet | 6f53261 | 2012-05-18 05:12:12 +0000 | [diff] [blame] | 379 | } |
Alexander Duyck | 540eb7b | 2012-07-12 14:23:50 +0000 | [diff] [blame] | 380 | |
Eric Dumazet | 69b08f6 | 2012-09-26 06:46:57 +0000 | [diff] [blame] | 381 | data = page_address(nc->frag.page) + nc->frag.offset; |
| 382 | nc->frag.offset += fragsz; |
Alexander Duyck | 540eb7b | 2012-07-12 14:23:50 +0000 | [diff] [blame] | 383 | nc->pagecnt_bias--; |
| 384 | end: |
Eric Dumazet | 6f53261 | 2012-05-18 05:12:12 +0000 | [diff] [blame] | 385 | local_irq_restore(flags); |
| 386 | return data; |
| 387 | } |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 388 | |
| 389 | /** |
| 390 | * netdev_alloc_frag - allocate a page fragment |
| 391 | * @fragsz: fragment size |
| 392 | * |
| 393 | * Allocates a frag from a page for receive buffer. |
| 394 | * Uses GFP_ATOMIC allocations. |
| 395 | */ |
| 396 | void *netdev_alloc_frag(unsigned int fragsz) |
| 397 | { |
| 398 | return __netdev_alloc_frag(fragsz, GFP_ATOMIC | __GFP_COLD); |
| 399 | } |
Eric Dumazet | 6f53261 | 2012-05-18 05:12:12 +0000 | [diff] [blame] | 400 | EXPORT_SYMBOL(netdev_alloc_frag); |
| 401 | |
| 402 | /** |
Christoph Hellwig | 8af2745 | 2006-07-31 22:35:23 -0700 | [diff] [blame] | 403 | * __netdev_alloc_skb - allocate an skbuff for rx on a specific device |
| 404 | * @dev: network device to receive on |
| 405 | * @length: length to allocate |
| 406 | * @gfp_mask: get_free_pages mask, passed to alloc_skb |
| 407 | * |
| 408 | * Allocate a new &sk_buff and assign it a usage count of one. The |
| 409 | * buffer has unspecified headroom built in. Users should allocate |
| 410 | * the headroom they think they need without accounting for the |
| 411 | * built in space. The built in space is used for optimisations. |
| 412 | * |
| 413 | * %NULL is returned if there is no free memory. |
| 414 | */ |
| 415 | struct sk_buff *__netdev_alloc_skb(struct net_device *dev, |
Eric Dumazet | 6f53261 | 2012-05-18 05:12:12 +0000 | [diff] [blame] | 416 | unsigned int length, gfp_t gfp_mask) |
Christoph Hellwig | 8af2745 | 2006-07-31 22:35:23 -0700 | [diff] [blame] | 417 | { |
Eric Dumazet | 6f53261 | 2012-05-18 05:12:12 +0000 | [diff] [blame] | 418 | struct sk_buff *skb = NULL; |
Eric Dumazet | a1c7fff | 2012-05-17 07:34:16 +0000 | [diff] [blame] | 419 | unsigned int fragsz = SKB_DATA_ALIGN(length + NET_SKB_PAD) + |
| 420 | SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); |
Christoph Hellwig | 8af2745 | 2006-07-31 22:35:23 -0700 | [diff] [blame] | 421 | |
Eric Dumazet | 310e158 | 2012-07-16 13:15:52 +0200 | [diff] [blame] | 422 | if (fragsz <= PAGE_SIZE && !(gfp_mask & (__GFP_WAIT | GFP_DMA))) { |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 423 | void *data; |
| 424 | |
| 425 | if (sk_memalloc_socks()) |
| 426 | gfp_mask |= __GFP_MEMALLOC; |
| 427 | |
| 428 | data = __netdev_alloc_frag(fragsz, gfp_mask); |
Eric Dumazet | a1c7fff | 2012-05-17 07:34:16 +0000 | [diff] [blame] | 429 | |
Eric Dumazet | 6f53261 | 2012-05-18 05:12:12 +0000 | [diff] [blame] | 430 | if (likely(data)) { |
| 431 | skb = build_skb(data, fragsz); |
| 432 | if (unlikely(!skb)) |
| 433 | put_page(virt_to_head_page(data)); |
Eric Dumazet | a1c7fff | 2012-05-17 07:34:16 +0000 | [diff] [blame] | 434 | } |
Eric Dumazet | a1c7fff | 2012-05-17 07:34:16 +0000 | [diff] [blame] | 435 | } else { |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 436 | skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask, |
| 437 | SKB_ALLOC_RX, NUMA_NO_NODE); |
Eric Dumazet | a1c7fff | 2012-05-17 07:34:16 +0000 | [diff] [blame] | 438 | } |
Christoph Hellwig | 7b2e497 | 2006-08-07 16:09:04 -0700 | [diff] [blame] | 439 | if (likely(skb)) { |
Christoph Hellwig | 8af2745 | 2006-07-31 22:35:23 -0700 | [diff] [blame] | 440 | skb_reserve(skb, NET_SKB_PAD); |
Christoph Hellwig | 7b2e497 | 2006-08-07 16:09:04 -0700 | [diff] [blame] | 441 | skb->dev = dev; |
| 442 | } |
Christoph Hellwig | 8af2745 | 2006-07-31 22:35:23 -0700 | [diff] [blame] | 443 | return skb; |
| 444 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 445 | EXPORT_SYMBOL(__netdev_alloc_skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | |
Peter Zijlstra | 654bed1 | 2008-10-07 14:22:33 -0700 | [diff] [blame] | 447 | void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off, |
Eric Dumazet | 50269e1 | 2012-03-23 23:59:33 +0000 | [diff] [blame] | 448 | int size, unsigned int truesize) |
Peter Zijlstra | 654bed1 | 2008-10-07 14:22:33 -0700 | [diff] [blame] | 449 | { |
| 450 | skb_fill_page_desc(skb, i, page, off, size); |
| 451 | skb->len += size; |
| 452 | skb->data_len += size; |
Eric Dumazet | 50269e1 | 2012-03-23 23:59:33 +0000 | [diff] [blame] | 453 | skb->truesize += truesize; |
Peter Zijlstra | 654bed1 | 2008-10-07 14:22:33 -0700 | [diff] [blame] | 454 | } |
| 455 | EXPORT_SYMBOL(skb_add_rx_frag); |
| 456 | |
Herbert Xu | 27b437c | 2006-07-13 19:26:39 -0700 | [diff] [blame] | 457 | static void skb_drop_list(struct sk_buff **listp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | { |
Herbert Xu | 27b437c | 2006-07-13 19:26:39 -0700 | [diff] [blame] | 459 | struct sk_buff *list = *listp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | |
Herbert Xu | 27b437c | 2006-07-13 19:26:39 -0700 | [diff] [blame] | 461 | *listp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | |
| 463 | do { |
| 464 | struct sk_buff *this = list; |
| 465 | list = list->next; |
| 466 | kfree_skb(this); |
| 467 | } while (list); |
| 468 | } |
| 469 | |
Herbert Xu | 27b437c | 2006-07-13 19:26:39 -0700 | [diff] [blame] | 470 | static inline void skb_drop_fraglist(struct sk_buff *skb) |
| 471 | { |
| 472 | skb_drop_list(&skb_shinfo(skb)->frag_list); |
| 473 | } |
| 474 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | static void skb_clone_fraglist(struct sk_buff *skb) |
| 476 | { |
| 477 | struct sk_buff *list; |
| 478 | |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 479 | skb_walk_frags(skb, list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | skb_get(list); |
| 481 | } |
| 482 | |
Eric Dumazet | d3836f2 | 2012-04-27 00:33:38 +0000 | [diff] [blame] | 483 | static void skb_free_head(struct sk_buff *skb) |
| 484 | { |
| 485 | if (skb->head_frag) |
| 486 | put_page(virt_to_head_page(skb->head)); |
| 487 | else |
| 488 | kfree(skb->head); |
| 489 | } |
| 490 | |
Adrian Bunk | 5bba171 | 2006-06-29 13:02:35 -0700 | [diff] [blame] | 491 | static void skb_release_data(struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | { |
| 493 | if (!skb->cloned || |
| 494 | !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1, |
| 495 | &skb_shinfo(skb)->dataref)) { |
| 496 | if (skb_shinfo(skb)->nr_frags) { |
| 497 | int i; |
| 498 | for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) |
Ian Campbell | ea2ab69 | 2011-08-22 23:44:58 +0000 | [diff] [blame] | 499 | skb_frag_unref(skb, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | } |
| 501 | |
Shirley Ma | a6686f2 | 2011-07-06 12:22:12 +0000 | [diff] [blame] | 502 | /* |
| 503 | * If skb buf is from userspace, we need to notify the caller |
| 504 | * the lower device DMA has done; |
| 505 | */ |
| 506 | if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) { |
| 507 | struct ubuf_info *uarg; |
| 508 | |
| 509 | uarg = skb_shinfo(skb)->destructor_arg; |
| 510 | if (uarg->callback) |
Michael S. Tsirkin | e19d676 | 2012-11-01 09:16:22 +0000 | [diff] [blame] | 511 | uarg->callback(uarg, true); |
Shirley Ma | a6686f2 | 2011-07-06 12:22:12 +0000 | [diff] [blame] | 512 | } |
| 513 | |
David S. Miller | 21dc330 | 2010-08-23 00:13:46 -0700 | [diff] [blame] | 514 | if (skb_has_frag_list(skb)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | skb_drop_fraglist(skb); |
| 516 | |
Eric Dumazet | d3836f2 | 2012-04-27 00:33:38 +0000 | [diff] [blame] | 517 | skb_free_head(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | } |
| 519 | } |
| 520 | |
| 521 | /* |
| 522 | * Free an skbuff by memory without cleaning the state. |
| 523 | */ |
Herbert Xu | 2d4baff | 2007-11-26 23:11:19 +0800 | [diff] [blame] | 524 | static void kfree_skbmem(struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | { |
David S. Miller | d179cd1 | 2005-08-17 14:57:30 -0700 | [diff] [blame] | 526 | struct sk_buff *other; |
| 527 | atomic_t *fclone_ref; |
| 528 | |
David S. Miller | d179cd1 | 2005-08-17 14:57:30 -0700 | [diff] [blame] | 529 | switch (skb->fclone) { |
| 530 | case SKB_FCLONE_UNAVAILABLE: |
| 531 | kmem_cache_free(skbuff_head_cache, skb); |
| 532 | break; |
| 533 | |
| 534 | case SKB_FCLONE_ORIG: |
| 535 | fclone_ref = (atomic_t *) (skb + 2); |
| 536 | if (atomic_dec_and_test(fclone_ref)) |
| 537 | kmem_cache_free(skbuff_fclone_cache, skb); |
| 538 | break; |
| 539 | |
| 540 | case SKB_FCLONE_CLONE: |
| 541 | fclone_ref = (atomic_t *) (skb + 1); |
| 542 | other = skb - 1; |
| 543 | |
| 544 | /* The clone portion is available for |
| 545 | * fast-cloning again. |
| 546 | */ |
| 547 | skb->fclone = SKB_FCLONE_UNAVAILABLE; |
| 548 | |
| 549 | if (atomic_dec_and_test(fclone_ref)) |
| 550 | kmem_cache_free(skbuff_fclone_cache, other); |
| 551 | break; |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 552 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | } |
| 554 | |
Lennert Buytenhek | 04a4bb5 | 2008-10-01 02:33:12 -0700 | [diff] [blame] | 555 | static void skb_release_head_state(struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 557 | skb_dst_drop(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | #ifdef CONFIG_XFRM |
| 559 | secpath_put(skb->sp); |
| 560 | #endif |
Stephen Hemminger | 9c2b332 | 2005-04-19 22:39:42 -0700 | [diff] [blame] | 561 | if (skb->destructor) { |
| 562 | WARN_ON(in_irq()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | skb->destructor(skb); |
| 564 | } |
Igor Maravić | a3bf7ae | 2011-12-12 02:58:22 +0000 | [diff] [blame] | 565 | #if IS_ENABLED(CONFIG_NF_CONNTRACK) |
Yasuyuki Kozakai | 5f79e0f | 2007-03-23 11:17:07 -0700 | [diff] [blame] | 566 | nf_conntrack_put(skb->nfct); |
KOVACS Krisztian | 2fc72c7 | 2011-01-12 20:25:08 +0100 | [diff] [blame] | 567 | #endif |
| 568 | #ifdef NET_SKBUFF_NF_DEFRAG_NEEDED |
Yasuyuki Kozakai | 9fb9cbb | 2005-11-09 16:38:16 -0800 | [diff] [blame] | 569 | nf_conntrack_put_reasm(skb->nfct_reasm); |
| 570 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | #ifdef CONFIG_BRIDGE_NETFILTER |
| 572 | nf_bridge_put(skb->nf_bridge); |
| 573 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | /* XXX: IS this still necessary? - JHS */ |
| 575 | #ifdef CONFIG_NET_SCHED |
| 576 | skb->tc_index = 0; |
| 577 | #ifdef CONFIG_NET_CLS_ACT |
| 578 | skb->tc_verd = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | #endif |
| 580 | #endif |
Lennert Buytenhek | 04a4bb5 | 2008-10-01 02:33:12 -0700 | [diff] [blame] | 581 | } |
| 582 | |
| 583 | /* Free everything but the sk_buff shell. */ |
| 584 | static void skb_release_all(struct sk_buff *skb) |
| 585 | { |
| 586 | skb_release_head_state(skb); |
Herbert Xu | 2d4baff | 2007-11-26 23:11:19 +0800 | [diff] [blame] | 587 | skb_release_data(skb); |
| 588 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | |
Herbert Xu | 2d4baff | 2007-11-26 23:11:19 +0800 | [diff] [blame] | 590 | /** |
| 591 | * __kfree_skb - private function |
| 592 | * @skb: buffer |
| 593 | * |
| 594 | * Free an sk_buff. Release anything attached to the buffer. |
| 595 | * Clean the state. This is an internal helper function. Users should |
| 596 | * always call kfree_skb |
| 597 | */ |
| 598 | |
| 599 | void __kfree_skb(struct sk_buff *skb) |
| 600 | { |
| 601 | skb_release_all(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | kfree_skbmem(skb); |
| 603 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 604 | EXPORT_SYMBOL(__kfree_skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | |
| 606 | /** |
Jörn Engel | 231d06a | 2006-03-20 21:28:35 -0800 | [diff] [blame] | 607 | * kfree_skb - free an sk_buff |
| 608 | * @skb: buffer to free |
| 609 | * |
| 610 | * Drop a reference to the buffer and free it if the usage count has |
| 611 | * hit zero. |
| 612 | */ |
| 613 | void kfree_skb(struct sk_buff *skb) |
| 614 | { |
| 615 | if (unlikely(!skb)) |
| 616 | return; |
| 617 | if (likely(atomic_read(&skb->users) == 1)) |
| 618 | smp_rmb(); |
| 619 | else if (likely(!atomic_dec_and_test(&skb->users))) |
| 620 | return; |
Neil Horman | ead2ceb | 2009-03-11 09:49:55 +0000 | [diff] [blame] | 621 | trace_kfree_skb(skb, __builtin_return_address(0)); |
Jörn Engel | 231d06a | 2006-03-20 21:28:35 -0800 | [diff] [blame] | 622 | __kfree_skb(skb); |
| 623 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 624 | EXPORT_SYMBOL(kfree_skb); |
Jörn Engel | 231d06a | 2006-03-20 21:28:35 -0800 | [diff] [blame] | 625 | |
Stephen Hemminger | d1a203e | 2008-11-01 21:01:09 -0700 | [diff] [blame] | 626 | /** |
Michael S. Tsirkin | 2512117 | 2012-11-01 09:16:28 +0000 | [diff] [blame] | 627 | * skb_tx_error - report an sk_buff xmit error |
| 628 | * @skb: buffer that triggered an error |
| 629 | * |
| 630 | * Report xmit error if a device callback is tracking this skb. |
| 631 | * skb must be freed afterwards. |
| 632 | */ |
| 633 | void skb_tx_error(struct sk_buff *skb) |
| 634 | { |
| 635 | if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) { |
| 636 | struct ubuf_info *uarg; |
| 637 | |
| 638 | uarg = skb_shinfo(skb)->destructor_arg; |
| 639 | if (uarg->callback) |
| 640 | uarg->callback(uarg, false); |
| 641 | skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY; |
| 642 | } |
| 643 | } |
| 644 | EXPORT_SYMBOL(skb_tx_error); |
| 645 | |
| 646 | /** |
Neil Horman | ead2ceb | 2009-03-11 09:49:55 +0000 | [diff] [blame] | 647 | * consume_skb - free an skbuff |
| 648 | * @skb: buffer to free |
| 649 | * |
| 650 | * Drop a ref to the buffer and free it if the usage count has hit zero |
| 651 | * Functions identically to kfree_skb, but kfree_skb assumes that the frame |
| 652 | * is being dropped after a failure and notes that |
| 653 | */ |
| 654 | void consume_skb(struct sk_buff *skb) |
| 655 | { |
| 656 | if (unlikely(!skb)) |
| 657 | return; |
| 658 | if (likely(atomic_read(&skb->users) == 1)) |
| 659 | smp_rmb(); |
| 660 | else if (likely(!atomic_dec_and_test(&skb->users))) |
| 661 | return; |
Koki Sanagi | 07dc22e | 2010-08-23 18:46:12 +0900 | [diff] [blame] | 662 | trace_consume_skb(skb); |
Neil Horman | ead2ceb | 2009-03-11 09:49:55 +0000 | [diff] [blame] | 663 | __kfree_skb(skb); |
| 664 | } |
| 665 | EXPORT_SYMBOL(consume_skb); |
| 666 | |
Herbert Xu | dec1881 | 2007-10-14 00:37:30 -0700 | [diff] [blame] | 667 | static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old) |
| 668 | { |
| 669 | new->tstamp = old->tstamp; |
| 670 | new->dev = old->dev; |
| 671 | new->transport_header = old->transport_header; |
| 672 | new->network_header = old->network_header; |
| 673 | new->mac_header = old->mac_header; |
Joseph Gasparakis | 6a674e9 | 2012-12-07 14:14:14 +0000 | [diff] [blame] | 674 | new->inner_transport_header = old->inner_transport_header; |
Pravin B Shelar | 92df9b2 | 2013-02-01 15:18:49 +0000 | [diff] [blame] | 675 | new->inner_network_header = old->inner_network_header; |
Eric Dumazet | 7fee226 | 2010-05-11 23:19:48 +0000 | [diff] [blame] | 676 | skb_dst_copy(new, old); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 677 | new->rxhash = old->rxhash; |
Changli Gao | 6461be3 | 2011-08-19 04:44:18 +0000 | [diff] [blame] | 678 | new->ooo_okay = old->ooo_okay; |
Tom Herbert | bdeab99 | 2011-08-14 19:45:55 +0000 | [diff] [blame] | 679 | new->l4_rxhash = old->l4_rxhash; |
Ben Greear | 3bdc0eb | 2012-02-11 15:39:30 +0000 | [diff] [blame] | 680 | new->no_fcs = old->no_fcs; |
Joseph Gasparakis | 6a674e9 | 2012-12-07 14:14:14 +0000 | [diff] [blame] | 681 | new->encapsulation = old->encapsulation; |
Alexey Dobriyan | def8b4f | 2008-10-28 13:24:06 -0700 | [diff] [blame] | 682 | #ifdef CONFIG_XFRM |
Herbert Xu | dec1881 | 2007-10-14 00:37:30 -0700 | [diff] [blame] | 683 | new->sp = secpath_get(old->sp); |
| 684 | #endif |
| 685 | memcpy(new->cb, old->cb, sizeof(old->cb)); |
Herbert Xu | 9bcb97c | 2009-05-22 22:20:02 +0000 | [diff] [blame] | 686 | new->csum = old->csum; |
Herbert Xu | dec1881 | 2007-10-14 00:37:30 -0700 | [diff] [blame] | 687 | new->local_df = old->local_df; |
| 688 | new->pkt_type = old->pkt_type; |
| 689 | new->ip_summed = old->ip_summed; |
| 690 | skb_copy_queue_mapping(new, old); |
| 691 | new->priority = old->priority; |
Igor Maravić | a3bf7ae | 2011-12-12 02:58:22 +0000 | [diff] [blame] | 692 | #if IS_ENABLED(CONFIG_IP_VS) |
Herbert Xu | dec1881 | 2007-10-14 00:37:30 -0700 | [diff] [blame] | 693 | new->ipvs_property = old->ipvs_property; |
| 694 | #endif |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 695 | new->pfmemalloc = old->pfmemalloc; |
Herbert Xu | dec1881 | 2007-10-14 00:37:30 -0700 | [diff] [blame] | 696 | new->protocol = old->protocol; |
| 697 | new->mark = old->mark; |
Eric Dumazet | 8964be4 | 2009-11-20 15:35:04 -0800 | [diff] [blame] | 698 | new->skb_iif = old->skb_iif; |
Herbert Xu | dec1881 | 2007-10-14 00:37:30 -0700 | [diff] [blame] | 699 | __nf_copy(new, old); |
Igor Maravić | a3bf7ae | 2011-12-12 02:58:22 +0000 | [diff] [blame] | 700 | #if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE) |
Herbert Xu | dec1881 | 2007-10-14 00:37:30 -0700 | [diff] [blame] | 701 | new->nf_trace = old->nf_trace; |
| 702 | #endif |
| 703 | #ifdef CONFIG_NET_SCHED |
| 704 | new->tc_index = old->tc_index; |
| 705 | #ifdef CONFIG_NET_CLS_ACT |
| 706 | new->tc_verd = old->tc_verd; |
| 707 | #endif |
| 708 | #endif |
Patrick McHardy | 6aa895b | 2008-07-14 22:49:06 -0700 | [diff] [blame] | 709 | new->vlan_tci = old->vlan_tci; |
| 710 | |
Herbert Xu | dec1881 | 2007-10-14 00:37:30 -0700 | [diff] [blame] | 711 | skb_copy_secmark(new, old); |
| 712 | } |
| 713 | |
Herbert Xu | 82c49a3 | 2009-05-22 22:11:37 +0000 | [diff] [blame] | 714 | /* |
| 715 | * You should not add any new code to this function. Add it to |
| 716 | * __copy_skb_header above instead. |
| 717 | */ |
Herbert Xu | e0053ec | 2007-10-14 00:37:52 -0700 | [diff] [blame] | 718 | static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | #define C(x) n->x = skb->x |
| 721 | |
| 722 | n->next = n->prev = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | n->sk = NULL; |
Herbert Xu | dec1881 | 2007-10-14 00:37:30 -0700 | [diff] [blame] | 724 | __copy_skb_header(n, skb); |
| 725 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | C(len); |
| 727 | C(data_len); |
Alexey Dobriyan | 3e6b3b2 | 2007-03-16 15:00:46 -0700 | [diff] [blame] | 728 | C(mac_len); |
Patrick McHardy | 334a813 | 2007-06-25 04:35:20 -0700 | [diff] [blame] | 729 | n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len; |
Paul Moore | 02f1c89 | 2008-01-07 21:56:41 -0800 | [diff] [blame] | 730 | n->cloned = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | n->nohdr = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | n->destructor = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | C(tail); |
| 734 | C(end); |
Paul Moore | 02f1c89 | 2008-01-07 21:56:41 -0800 | [diff] [blame] | 735 | C(head); |
Eric Dumazet | d3836f2 | 2012-04-27 00:33:38 +0000 | [diff] [blame] | 736 | C(head_frag); |
Paul Moore | 02f1c89 | 2008-01-07 21:56:41 -0800 | [diff] [blame] | 737 | C(data); |
| 738 | C(truesize); |
| 739 | atomic_set(&n->users, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | |
| 741 | atomic_inc(&(skb_shinfo(skb)->dataref)); |
| 742 | skb->cloned = 1; |
| 743 | |
| 744 | return n; |
Herbert Xu | e0053ec | 2007-10-14 00:37:52 -0700 | [diff] [blame] | 745 | #undef C |
| 746 | } |
| 747 | |
| 748 | /** |
| 749 | * skb_morph - morph one skb into another |
| 750 | * @dst: the skb to receive the contents |
| 751 | * @src: the skb to supply the contents |
| 752 | * |
| 753 | * This is identical to skb_clone except that the target skb is |
| 754 | * supplied by the user. |
| 755 | * |
| 756 | * The target skb is returned upon exit. |
| 757 | */ |
| 758 | struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src) |
| 759 | { |
Herbert Xu | 2d4baff | 2007-11-26 23:11:19 +0800 | [diff] [blame] | 760 | skb_release_all(dst); |
Herbert Xu | e0053ec | 2007-10-14 00:37:52 -0700 | [diff] [blame] | 761 | return __skb_clone(dst, src); |
| 762 | } |
| 763 | EXPORT_SYMBOL_GPL(skb_morph); |
| 764 | |
Ben Hutchings | 2c53040 | 2012-07-10 10:55:09 +0000 | [diff] [blame] | 765 | /** |
| 766 | * skb_copy_ubufs - copy userspace skb frags buffers to kernel |
Michael S. Tsirkin | 48c8301 | 2011-08-31 08:03:29 +0000 | [diff] [blame] | 767 | * @skb: the skb to modify |
| 768 | * @gfp_mask: allocation priority |
| 769 | * |
| 770 | * This must be called on SKBTX_DEV_ZEROCOPY skb. |
| 771 | * It will copy all frags into kernel and drop the reference |
| 772 | * to userspace pages. |
| 773 | * |
| 774 | * If this function is called from an interrupt gfp_mask() must be |
| 775 | * %GFP_ATOMIC. |
| 776 | * |
| 777 | * Returns 0 on success or a negative error code on failure |
| 778 | * to allocate kernel memory to copy to. |
| 779 | */ |
| 780 | int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask) |
Shirley Ma | a6686f2 | 2011-07-06 12:22:12 +0000 | [diff] [blame] | 781 | { |
| 782 | int i; |
| 783 | int num_frags = skb_shinfo(skb)->nr_frags; |
| 784 | struct page *page, *head = NULL; |
| 785 | struct ubuf_info *uarg = skb_shinfo(skb)->destructor_arg; |
| 786 | |
| 787 | for (i = 0; i < num_frags; i++) { |
| 788 | u8 *vaddr; |
| 789 | skb_frag_t *f = &skb_shinfo(skb)->frags[i]; |
| 790 | |
Krishna Kumar | 02756ed | 2012-07-17 02:05:29 +0000 | [diff] [blame] | 791 | page = alloc_page(gfp_mask); |
Shirley Ma | a6686f2 | 2011-07-06 12:22:12 +0000 | [diff] [blame] | 792 | if (!page) { |
| 793 | while (head) { |
| 794 | struct page *next = (struct page *)head->private; |
| 795 | put_page(head); |
| 796 | head = next; |
| 797 | } |
| 798 | return -ENOMEM; |
| 799 | } |
Eric Dumazet | 51c56b0 | 2012-04-05 11:35:15 +0200 | [diff] [blame] | 800 | vaddr = kmap_atomic(skb_frag_page(f)); |
Shirley Ma | a6686f2 | 2011-07-06 12:22:12 +0000 | [diff] [blame] | 801 | memcpy(page_address(page), |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 802 | vaddr + f->page_offset, skb_frag_size(f)); |
Eric Dumazet | 51c56b0 | 2012-04-05 11:35:15 +0200 | [diff] [blame] | 803 | kunmap_atomic(vaddr); |
Shirley Ma | a6686f2 | 2011-07-06 12:22:12 +0000 | [diff] [blame] | 804 | page->private = (unsigned long)head; |
| 805 | head = page; |
| 806 | } |
| 807 | |
| 808 | /* skb frags release userspace buffers */ |
Krishna Kumar | 02756ed | 2012-07-17 02:05:29 +0000 | [diff] [blame] | 809 | for (i = 0; i < num_frags; i++) |
Ian Campbell | a8605c6 | 2011-10-19 23:01:49 +0000 | [diff] [blame] | 810 | skb_frag_unref(skb, i); |
Shirley Ma | a6686f2 | 2011-07-06 12:22:12 +0000 | [diff] [blame] | 811 | |
Michael S. Tsirkin | e19d676 | 2012-11-01 09:16:22 +0000 | [diff] [blame] | 812 | uarg->callback(uarg, false); |
Shirley Ma | a6686f2 | 2011-07-06 12:22:12 +0000 | [diff] [blame] | 813 | |
| 814 | /* skb frags point to kernel buffers */ |
Krishna Kumar | 02756ed | 2012-07-17 02:05:29 +0000 | [diff] [blame] | 815 | for (i = num_frags - 1; i >= 0; i--) { |
| 816 | __skb_fill_page_desc(skb, i, head, 0, |
| 817 | skb_shinfo(skb)->frags[i].size); |
Shirley Ma | a6686f2 | 2011-07-06 12:22:12 +0000 | [diff] [blame] | 818 | head = (struct page *)head->private; |
| 819 | } |
Michael S. Tsirkin | 48c8301 | 2011-08-31 08:03:29 +0000 | [diff] [blame] | 820 | |
| 821 | skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY; |
Shirley Ma | a6686f2 | 2011-07-06 12:22:12 +0000 | [diff] [blame] | 822 | return 0; |
| 823 | } |
Michael S. Tsirkin | dcc0fb7 | 2012-07-20 09:23:20 +0000 | [diff] [blame] | 824 | EXPORT_SYMBOL_GPL(skb_copy_ubufs); |
Shirley Ma | a6686f2 | 2011-07-06 12:22:12 +0000 | [diff] [blame] | 825 | |
Herbert Xu | e0053ec | 2007-10-14 00:37:52 -0700 | [diff] [blame] | 826 | /** |
| 827 | * skb_clone - duplicate an sk_buff |
| 828 | * @skb: buffer to clone |
| 829 | * @gfp_mask: allocation priority |
| 830 | * |
| 831 | * Duplicate an &sk_buff. The new one is not owned by a socket. Both |
| 832 | * copies share the same packet data but not structure. The new |
| 833 | * buffer has a reference count of 1. If the allocation fails the |
| 834 | * function returns %NULL otherwise the new buffer is returned. |
| 835 | * |
| 836 | * If this function is called from an interrupt gfp_mask() must be |
| 837 | * %GFP_ATOMIC. |
| 838 | */ |
| 839 | |
| 840 | struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask) |
| 841 | { |
| 842 | struct sk_buff *n; |
| 843 | |
Michael S. Tsirkin | 70008aa | 2012-07-20 09:23:10 +0000 | [diff] [blame] | 844 | if (skb_orphan_frags(skb, gfp_mask)) |
| 845 | return NULL; |
Shirley Ma | a6686f2 | 2011-07-06 12:22:12 +0000 | [diff] [blame] | 846 | |
Herbert Xu | e0053ec | 2007-10-14 00:37:52 -0700 | [diff] [blame] | 847 | n = skb + 1; |
| 848 | if (skb->fclone == SKB_FCLONE_ORIG && |
| 849 | n->fclone == SKB_FCLONE_UNAVAILABLE) { |
| 850 | atomic_t *fclone_ref = (atomic_t *) (n + 1); |
| 851 | n->fclone = SKB_FCLONE_CLONE; |
| 852 | atomic_inc(fclone_ref); |
| 853 | } else { |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 854 | if (skb_pfmemalloc(skb)) |
| 855 | gfp_mask |= __GFP_MEMALLOC; |
| 856 | |
Herbert Xu | e0053ec | 2007-10-14 00:37:52 -0700 | [diff] [blame] | 857 | n = kmem_cache_alloc(skbuff_head_cache, gfp_mask); |
| 858 | if (!n) |
| 859 | return NULL; |
Vegard Nossum | fe55f6d | 2008-08-30 12:16:35 +0200 | [diff] [blame] | 860 | |
| 861 | kmemcheck_annotate_bitfield(n, flags1); |
| 862 | kmemcheck_annotate_bitfield(n, flags2); |
Herbert Xu | e0053ec | 2007-10-14 00:37:52 -0700 | [diff] [blame] | 863 | n->fclone = SKB_FCLONE_UNAVAILABLE; |
| 864 | } |
| 865 | |
| 866 | return __skb_clone(n, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 868 | EXPORT_SYMBOL(skb_clone); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | |
| 870 | static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old) |
| 871 | { |
Arnaldo Carvalho de Melo | 2e07fa9 | 2007-04-10 21:22:35 -0700 | [diff] [blame] | 872 | #ifndef NET_SKBUFF_DATA_USES_OFFSET |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | /* |
| 874 | * Shift between the two data areas in bytes |
| 875 | */ |
| 876 | unsigned long offset = new->data - old->data; |
Arnaldo Carvalho de Melo | 2e07fa9 | 2007-04-10 21:22:35 -0700 | [diff] [blame] | 877 | #endif |
Herbert Xu | dec1881 | 2007-10-14 00:37:30 -0700 | [diff] [blame] | 878 | |
| 879 | __copy_skb_header(new, old); |
| 880 | |
Arnaldo Carvalho de Melo | 2e07fa9 | 2007-04-10 21:22:35 -0700 | [diff] [blame] | 881 | #ifndef NET_SKBUFF_DATA_USES_OFFSET |
| 882 | /* {transport,network,mac}_header are relative to skb->head */ |
| 883 | new->transport_header += offset; |
| 884 | new->network_header += offset; |
Stephen Hemminger | 603a8bb | 2009-06-17 12:17:34 +0000 | [diff] [blame] | 885 | if (skb_mac_header_was_set(new)) |
| 886 | new->mac_header += offset; |
Joseph Gasparakis | 6a674e9 | 2012-12-07 14:14:14 +0000 | [diff] [blame] | 887 | new->inner_transport_header += offset; |
| 888 | new->inner_network_header += offset; |
Arnaldo Carvalho de Melo | 2e07fa9 | 2007-04-10 21:22:35 -0700 | [diff] [blame] | 889 | #endif |
Herbert Xu | 7967168 | 2006-06-22 02:40:14 -0700 | [diff] [blame] | 890 | skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size; |
| 891 | skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs; |
| 892 | skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | } |
| 894 | |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 895 | static inline int skb_alloc_rx_flag(const struct sk_buff *skb) |
| 896 | { |
| 897 | if (skb_pfmemalloc(skb)) |
| 898 | return SKB_ALLOC_RX; |
| 899 | return 0; |
| 900 | } |
| 901 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | /** |
| 903 | * skb_copy - create private copy of an sk_buff |
| 904 | * @skb: buffer to copy |
| 905 | * @gfp_mask: allocation priority |
| 906 | * |
| 907 | * Make a copy of both an &sk_buff and its data. This is used when the |
| 908 | * caller wishes to modify the data and needs a private copy of the |
| 909 | * data to alter. Returns %NULL on failure or the pointer to the buffer |
| 910 | * on success. The returned buffer has a reference count of 1. |
| 911 | * |
| 912 | * As by-product this function converts non-linear &sk_buff to linear |
| 913 | * one, so that &sk_buff becomes completely private and caller is allowed |
| 914 | * to modify all the data of returned buffer. This means that this |
| 915 | * function is not recommended for use in circumstances when only |
| 916 | * header is going to be modified. Use pskb_copy() instead. |
| 917 | */ |
| 918 | |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 919 | struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | { |
Eric Dumazet | 6602ceb | 2010-09-01 05:25:10 +0000 | [diff] [blame] | 921 | int headerlen = skb_headroom(skb); |
Alexander Duyck | ec47ea8 | 2012-05-04 14:26:56 +0000 | [diff] [blame] | 922 | unsigned int size = skb_end_offset(skb) + skb->data_len; |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 923 | struct sk_buff *n = __alloc_skb(size, gfp_mask, |
| 924 | skb_alloc_rx_flag(skb), NUMA_NO_NODE); |
Eric Dumazet | 6602ceb | 2010-09-01 05:25:10 +0000 | [diff] [blame] | 925 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | if (!n) |
| 927 | return NULL; |
| 928 | |
| 929 | /* Set the data pointer */ |
| 930 | skb_reserve(n, headerlen); |
| 931 | /* Set the tail pointer and length */ |
| 932 | skb_put(n, skb->len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | |
| 934 | if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len)) |
| 935 | BUG(); |
| 936 | |
| 937 | copy_skb_header(n, skb); |
| 938 | return n; |
| 939 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 940 | EXPORT_SYMBOL(skb_copy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | |
| 942 | /** |
Eric Dumazet | 117632e | 2011-12-03 21:39:53 +0000 | [diff] [blame] | 943 | * __pskb_copy - create copy of an sk_buff with private head. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | * @skb: buffer to copy |
Eric Dumazet | 117632e | 2011-12-03 21:39:53 +0000 | [diff] [blame] | 945 | * @headroom: headroom of new skb |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | * @gfp_mask: allocation priority |
| 947 | * |
| 948 | * Make a copy of both an &sk_buff and part of its data, located |
| 949 | * in header. Fragmented data remain shared. This is used when |
| 950 | * the caller wishes to modify only header of &sk_buff and needs |
| 951 | * private copy of the header to alter. Returns %NULL on failure |
| 952 | * or the pointer to the buffer on success. |
| 953 | * The returned buffer has a reference count of 1. |
| 954 | */ |
| 955 | |
Eric Dumazet | 117632e | 2011-12-03 21:39:53 +0000 | [diff] [blame] | 956 | struct sk_buff *__pskb_copy(struct sk_buff *skb, int headroom, gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | { |
Eric Dumazet | 117632e | 2011-12-03 21:39:53 +0000 | [diff] [blame] | 958 | unsigned int size = skb_headlen(skb) + headroom; |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 959 | struct sk_buff *n = __alloc_skb(size, gfp_mask, |
| 960 | skb_alloc_rx_flag(skb), NUMA_NO_NODE); |
Eric Dumazet | 6602ceb | 2010-09-01 05:25:10 +0000 | [diff] [blame] | 961 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | if (!n) |
| 963 | goto out; |
| 964 | |
| 965 | /* Set the data pointer */ |
Eric Dumazet | 117632e | 2011-12-03 21:39:53 +0000 | [diff] [blame] | 966 | skb_reserve(n, headroom); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | /* Set the tail pointer and length */ |
| 968 | skb_put(n, skb_headlen(skb)); |
| 969 | /* Copy the bytes */ |
Arnaldo Carvalho de Melo | d626f62 | 2007-03-27 18:55:52 -0300 | [diff] [blame] | 970 | skb_copy_from_linear_data(skb, n->data, n->len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | |
Herbert Xu | 25f484a | 2006-11-07 14:57:15 -0800 | [diff] [blame] | 972 | n->truesize += skb->data_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | n->data_len = skb->data_len; |
| 974 | n->len = skb->len; |
| 975 | |
| 976 | if (skb_shinfo(skb)->nr_frags) { |
| 977 | int i; |
| 978 | |
Michael S. Tsirkin | 70008aa | 2012-07-20 09:23:10 +0000 | [diff] [blame] | 979 | if (skb_orphan_frags(skb, gfp_mask)) { |
| 980 | kfree_skb(n); |
| 981 | n = NULL; |
| 982 | goto out; |
Shirley Ma | a6686f2 | 2011-07-06 12:22:12 +0000 | [diff] [blame] | 983 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) { |
| 985 | skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i]; |
Ian Campbell | ea2ab69 | 2011-08-22 23:44:58 +0000 | [diff] [blame] | 986 | skb_frag_ref(skb, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | } |
| 988 | skb_shinfo(n)->nr_frags = i; |
| 989 | } |
| 990 | |
David S. Miller | 21dc330 | 2010-08-23 00:13:46 -0700 | [diff] [blame] | 991 | if (skb_has_frag_list(skb)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list; |
| 993 | skb_clone_fraglist(n); |
| 994 | } |
| 995 | |
| 996 | copy_skb_header(n, skb); |
| 997 | out: |
| 998 | return n; |
| 999 | } |
Eric Dumazet | 117632e | 2011-12-03 21:39:53 +0000 | [diff] [blame] | 1000 | EXPORT_SYMBOL(__pskb_copy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | |
| 1002 | /** |
| 1003 | * pskb_expand_head - reallocate header of &sk_buff |
| 1004 | * @skb: buffer to reallocate |
| 1005 | * @nhead: room to add at head |
| 1006 | * @ntail: room to add at tail |
| 1007 | * @gfp_mask: allocation priority |
| 1008 | * |
| 1009 | * Expands (or creates identical copy, if &nhead and &ntail are zero) |
| 1010 | * header of skb. &sk_buff itself is not changed. &sk_buff MUST have |
| 1011 | * reference count of 1. Returns zero in the case of success or error, |
| 1012 | * if expansion failed. In the last case, &sk_buff is not changed. |
| 1013 | * |
| 1014 | * All the pointers pointing into skb header may change and must be |
| 1015 | * reloaded after call to this function. |
| 1016 | */ |
| 1017 | |
Victor Fusco | 86a76ca | 2005-07-08 14:57:47 -0700 | [diff] [blame] | 1018 | int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail, |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 1019 | gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | { |
| 1021 | int i; |
| 1022 | u8 *data; |
Alexander Duyck | ec47ea8 | 2012-05-04 14:26:56 +0000 | [diff] [blame] | 1023 | int size = nhead + skb_end_offset(skb) + ntail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | long off; |
| 1025 | |
Herbert Xu | 4edd87a | 2008-10-01 07:09:38 -0700 | [diff] [blame] | 1026 | BUG_ON(nhead < 0); |
| 1027 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | if (skb_shared(skb)) |
| 1029 | BUG(); |
| 1030 | |
| 1031 | size = SKB_DATA_ALIGN(size); |
| 1032 | |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 1033 | if (skb_pfmemalloc(skb)) |
| 1034 | gfp_mask |= __GFP_MEMALLOC; |
| 1035 | data = kmalloc_reserve(size + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)), |
| 1036 | gfp_mask, NUMA_NO_NODE, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | if (!data) |
| 1038 | goto nodata; |
Eric Dumazet | 87151b8 | 2012-04-10 20:08:39 +0000 | [diff] [blame] | 1039 | size = SKB_WITH_OVERHEAD(ksize(data)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | |
| 1041 | /* Copy only real data... and, alas, header. This should be |
Eric Dumazet | 6602ceb | 2010-09-01 05:25:10 +0000 | [diff] [blame] | 1042 | * optimized for the cases when header is void. |
| 1043 | */ |
| 1044 | memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head); |
| 1045 | |
| 1046 | memcpy((struct skb_shared_info *)(data + size), |
| 1047 | skb_shinfo(skb), |
Eric Dumazet | fed6638 | 2010-07-22 19:09:08 +0000 | [diff] [blame] | 1048 | offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | |
Alexander Duyck | 3e24591 | 2012-05-04 14:26:51 +0000 | [diff] [blame] | 1050 | /* |
| 1051 | * if shinfo is shared we must drop the old head gracefully, but if it |
| 1052 | * is not we can just drop the old head and let the existing refcount |
| 1053 | * be since all we did is relocate the values |
| 1054 | */ |
| 1055 | if (skb_cloned(skb)) { |
Shirley Ma | a6686f2 | 2011-07-06 12:22:12 +0000 | [diff] [blame] | 1056 | /* copy this zero copy skb frags */ |
Michael S. Tsirkin | 70008aa | 2012-07-20 09:23:10 +0000 | [diff] [blame] | 1057 | if (skb_orphan_frags(skb, gfp_mask)) |
| 1058 | goto nofrags; |
Eric Dumazet | 1fd6304 | 2010-09-02 23:09:32 +0000 | [diff] [blame] | 1059 | for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) |
Ian Campbell | ea2ab69 | 2011-08-22 23:44:58 +0000 | [diff] [blame] | 1060 | skb_frag_ref(skb, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | |
Eric Dumazet | 1fd6304 | 2010-09-02 23:09:32 +0000 | [diff] [blame] | 1062 | if (skb_has_frag_list(skb)) |
| 1063 | skb_clone_fraglist(skb); |
| 1064 | |
| 1065 | skb_release_data(skb); |
Alexander Duyck | 3e24591 | 2012-05-04 14:26:51 +0000 | [diff] [blame] | 1066 | } else { |
| 1067 | skb_free_head(skb); |
Eric Dumazet | 1fd6304 | 2010-09-02 23:09:32 +0000 | [diff] [blame] | 1068 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | off = (data + nhead) - skb->head; |
| 1070 | |
| 1071 | skb->head = data; |
Eric Dumazet | d3836f2 | 2012-04-27 00:33:38 +0000 | [diff] [blame] | 1072 | skb->head_frag = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | skb->data += off; |
Arnaldo Carvalho de Melo | 4305b54 | 2007-04-19 20:43:29 -0700 | [diff] [blame] | 1074 | #ifdef NET_SKBUFF_DATA_USES_OFFSET |
| 1075 | skb->end = size; |
Patrick McHardy | 56eb888 | 2007-04-09 11:45:04 -0700 | [diff] [blame] | 1076 | off = nhead; |
Arnaldo Carvalho de Melo | 4305b54 | 2007-04-19 20:43:29 -0700 | [diff] [blame] | 1077 | #else |
| 1078 | skb->end = skb->head + size; |
Patrick McHardy | 56eb888 | 2007-04-09 11:45:04 -0700 | [diff] [blame] | 1079 | #endif |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 1080 | /* {transport,network,mac}_header and tail are relative to skb->head */ |
| 1081 | skb->tail += off; |
Arnaldo Carvalho de Melo | b0e380b | 2007-04-10 21:21:55 -0700 | [diff] [blame] | 1082 | skb->transport_header += off; |
| 1083 | skb->network_header += off; |
Stephen Hemminger | 603a8bb | 2009-06-17 12:17:34 +0000 | [diff] [blame] | 1084 | if (skb_mac_header_was_set(skb)) |
| 1085 | skb->mac_header += off; |
Joseph Gasparakis | 6a674e9 | 2012-12-07 14:14:14 +0000 | [diff] [blame] | 1086 | skb->inner_transport_header += off; |
| 1087 | skb->inner_network_header += off; |
Andrea Shepard | 00c5a98 | 2010-07-22 09:12:35 +0000 | [diff] [blame] | 1088 | /* Only adjust this if it actually is csum_start rather than csum */ |
| 1089 | if (skb->ip_summed == CHECKSUM_PARTIAL) |
| 1090 | skb->csum_start += nhead; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | skb->cloned = 0; |
Patrick McHardy | 334a813 | 2007-06-25 04:35:20 -0700 | [diff] [blame] | 1092 | skb->hdr_len = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | skb->nohdr = 0; |
| 1094 | atomic_set(&skb_shinfo(skb)->dataref, 1); |
| 1095 | return 0; |
| 1096 | |
Shirley Ma | a6686f2 | 2011-07-06 12:22:12 +0000 | [diff] [blame] | 1097 | nofrags: |
| 1098 | kfree(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | nodata: |
| 1100 | return -ENOMEM; |
| 1101 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 1102 | EXPORT_SYMBOL(pskb_expand_head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | |
| 1104 | /* Make private copy of skb with writable head and some headroom */ |
| 1105 | |
| 1106 | struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom) |
| 1107 | { |
| 1108 | struct sk_buff *skb2; |
| 1109 | int delta = headroom - skb_headroom(skb); |
| 1110 | |
| 1111 | if (delta <= 0) |
| 1112 | skb2 = pskb_copy(skb, GFP_ATOMIC); |
| 1113 | else { |
| 1114 | skb2 = skb_clone(skb, GFP_ATOMIC); |
| 1115 | if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0, |
| 1116 | GFP_ATOMIC)) { |
| 1117 | kfree_skb(skb2); |
| 1118 | skb2 = NULL; |
| 1119 | } |
| 1120 | } |
| 1121 | return skb2; |
| 1122 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 1123 | EXPORT_SYMBOL(skb_realloc_headroom); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | |
| 1125 | /** |
| 1126 | * skb_copy_expand - copy and expand sk_buff |
| 1127 | * @skb: buffer to copy |
| 1128 | * @newheadroom: new free bytes at head |
| 1129 | * @newtailroom: new free bytes at tail |
| 1130 | * @gfp_mask: allocation priority |
| 1131 | * |
| 1132 | * Make a copy of both an &sk_buff and its data and while doing so |
| 1133 | * allocate additional space. |
| 1134 | * |
| 1135 | * This is used when the caller wishes to modify the data and needs a |
| 1136 | * private copy of the data to alter as well as more space for new fields. |
| 1137 | * Returns %NULL on failure or the pointer to the buffer |
| 1138 | * on success. The returned buffer has a reference count of 1. |
| 1139 | * |
| 1140 | * You must pass %GFP_ATOMIC as the allocation priority if this function |
| 1141 | * is called from an interrupt. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | */ |
| 1143 | struct sk_buff *skb_copy_expand(const struct sk_buff *skb, |
Victor Fusco | 86a76ca | 2005-07-08 14:57:47 -0700 | [diff] [blame] | 1144 | int newheadroom, int newtailroom, |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 1145 | gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | { |
| 1147 | /* |
| 1148 | * Allocate the copy buffer |
| 1149 | */ |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 1150 | struct sk_buff *n = __alloc_skb(newheadroom + skb->len + newtailroom, |
| 1151 | gfp_mask, skb_alloc_rx_flag(skb), |
| 1152 | NUMA_NO_NODE); |
Patrick McHardy | efd1e8d | 2007-04-10 18:30:09 -0700 | [diff] [blame] | 1153 | int oldheadroom = skb_headroom(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | int head_copy_len, head_copy_off; |
Herbert Xu | 5288605 | 2007-09-16 16:32:11 -0700 | [diff] [blame] | 1155 | int off; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | |
| 1157 | if (!n) |
| 1158 | return NULL; |
| 1159 | |
| 1160 | skb_reserve(n, newheadroom); |
| 1161 | |
| 1162 | /* Set the tail pointer and length */ |
| 1163 | skb_put(n, skb->len); |
| 1164 | |
Patrick McHardy | efd1e8d | 2007-04-10 18:30:09 -0700 | [diff] [blame] | 1165 | head_copy_len = oldheadroom; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1166 | head_copy_off = 0; |
| 1167 | if (newheadroom <= head_copy_len) |
| 1168 | head_copy_len = newheadroom; |
| 1169 | else |
| 1170 | head_copy_off = newheadroom - head_copy_len; |
| 1171 | |
| 1172 | /* Copy the linear header and data. */ |
| 1173 | if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off, |
| 1174 | skb->len + head_copy_len)) |
| 1175 | BUG(); |
| 1176 | |
| 1177 | copy_skb_header(n, skb); |
| 1178 | |
Patrick McHardy | efd1e8d | 2007-04-10 18:30:09 -0700 | [diff] [blame] | 1179 | off = newheadroom - oldheadroom; |
David S. Miller | be2b6e6 | 2010-07-22 13:27:09 -0700 | [diff] [blame] | 1180 | if (n->ip_summed == CHECKSUM_PARTIAL) |
| 1181 | n->csum_start += off; |
Herbert Xu | 5288605 | 2007-09-16 16:32:11 -0700 | [diff] [blame] | 1182 | #ifdef NET_SKBUFF_DATA_USES_OFFSET |
Patrick McHardy | efd1e8d | 2007-04-10 18:30:09 -0700 | [diff] [blame] | 1183 | n->transport_header += off; |
| 1184 | n->network_header += off; |
Stephen Hemminger | 603a8bb | 2009-06-17 12:17:34 +0000 | [diff] [blame] | 1185 | if (skb_mac_header_was_set(skb)) |
| 1186 | n->mac_header += off; |
Joseph Gasparakis | 6a674e9 | 2012-12-07 14:14:14 +0000 | [diff] [blame] | 1187 | n->inner_transport_header += off; |
| 1188 | n->inner_network_header += off; |
Herbert Xu | 5288605 | 2007-09-16 16:32:11 -0700 | [diff] [blame] | 1189 | #endif |
Patrick McHardy | efd1e8d | 2007-04-10 18:30:09 -0700 | [diff] [blame] | 1190 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | return n; |
| 1192 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 1193 | EXPORT_SYMBOL(skb_copy_expand); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | |
| 1195 | /** |
| 1196 | * skb_pad - zero pad the tail of an skb |
| 1197 | * @skb: buffer to pad |
| 1198 | * @pad: space to pad |
| 1199 | * |
| 1200 | * Ensure that a buffer is followed by a padding area that is zero |
| 1201 | * filled. Used by network drivers which may DMA or transfer data |
| 1202 | * beyond the buffer end onto the wire. |
| 1203 | * |
Herbert Xu | 5b057c6 | 2006-06-23 02:06:41 -0700 | [diff] [blame] | 1204 | * May return error in out of memory cases. The skb is freed on error. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | */ |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 1206 | |
Herbert Xu | 5b057c6 | 2006-06-23 02:06:41 -0700 | [diff] [blame] | 1207 | int skb_pad(struct sk_buff *skb, int pad) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | { |
Herbert Xu | 5b057c6 | 2006-06-23 02:06:41 -0700 | [diff] [blame] | 1209 | int err; |
| 1210 | int ntail; |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 1211 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | /* If the skbuff is non linear tailroom is always zero.. */ |
Herbert Xu | 5b057c6 | 2006-06-23 02:06:41 -0700 | [diff] [blame] | 1213 | if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1214 | memset(skb->data+skb->len, 0, pad); |
Herbert Xu | 5b057c6 | 2006-06-23 02:06:41 -0700 | [diff] [blame] | 1215 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | } |
Herbert Xu | 5b057c6 | 2006-06-23 02:06:41 -0700 | [diff] [blame] | 1217 | |
Arnaldo Carvalho de Melo | 4305b54 | 2007-04-19 20:43:29 -0700 | [diff] [blame] | 1218 | ntail = skb->data_len + pad - (skb->end - skb->tail); |
Herbert Xu | 5b057c6 | 2006-06-23 02:06:41 -0700 | [diff] [blame] | 1219 | if (likely(skb_cloned(skb) || ntail > 0)) { |
| 1220 | err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC); |
| 1221 | if (unlikely(err)) |
| 1222 | goto free_skb; |
| 1223 | } |
| 1224 | |
| 1225 | /* FIXME: The use of this function with non-linear skb's really needs |
| 1226 | * to be audited. |
| 1227 | */ |
| 1228 | err = skb_linearize(skb); |
| 1229 | if (unlikely(err)) |
| 1230 | goto free_skb; |
| 1231 | |
| 1232 | memset(skb->data + skb->len, 0, pad); |
| 1233 | return 0; |
| 1234 | |
| 1235 | free_skb: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1236 | kfree_skb(skb); |
Herbert Xu | 5b057c6 | 2006-06-23 02:06:41 -0700 | [diff] [blame] | 1237 | return err; |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 1238 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 1239 | EXPORT_SYMBOL(skb_pad); |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 1240 | |
Ilpo Järvinen | 0dde3e1 | 2008-03-27 17:43:41 -0700 | [diff] [blame] | 1241 | /** |
| 1242 | * skb_put - add data to a buffer |
| 1243 | * @skb: buffer to use |
| 1244 | * @len: amount of data to add |
| 1245 | * |
| 1246 | * This function extends the used data area of the buffer. If this would |
| 1247 | * exceed the total buffer size the kernel will panic. A pointer to the |
| 1248 | * first byte of the extra data is returned. |
| 1249 | */ |
| 1250 | unsigned char *skb_put(struct sk_buff *skb, unsigned int len) |
| 1251 | { |
| 1252 | unsigned char *tmp = skb_tail_pointer(skb); |
| 1253 | SKB_LINEAR_ASSERT(skb); |
| 1254 | skb->tail += len; |
| 1255 | skb->len += len; |
| 1256 | if (unlikely(skb->tail > skb->end)) |
| 1257 | skb_over_panic(skb, len, __builtin_return_address(0)); |
| 1258 | return tmp; |
| 1259 | } |
| 1260 | EXPORT_SYMBOL(skb_put); |
| 1261 | |
Ilpo Järvinen | 6be8ac2 | 2008-03-27 17:47:24 -0700 | [diff] [blame] | 1262 | /** |
Ilpo Järvinen | c2aa270 | 2008-03-27 17:52:40 -0700 | [diff] [blame] | 1263 | * skb_push - add data to the start of a buffer |
| 1264 | * @skb: buffer to use |
| 1265 | * @len: amount of data to add |
| 1266 | * |
| 1267 | * This function extends the used data area of the buffer at the buffer |
| 1268 | * start. If this would exceed the total buffer headroom the kernel will |
| 1269 | * panic. A pointer to the first byte of the extra data is returned. |
| 1270 | */ |
| 1271 | unsigned char *skb_push(struct sk_buff *skb, unsigned int len) |
| 1272 | { |
| 1273 | skb->data -= len; |
| 1274 | skb->len += len; |
| 1275 | if (unlikely(skb->data<skb->head)) |
| 1276 | skb_under_panic(skb, len, __builtin_return_address(0)); |
| 1277 | return skb->data; |
| 1278 | } |
| 1279 | EXPORT_SYMBOL(skb_push); |
| 1280 | |
| 1281 | /** |
Ilpo Järvinen | 6be8ac2 | 2008-03-27 17:47:24 -0700 | [diff] [blame] | 1282 | * skb_pull - remove data from the start of a buffer |
| 1283 | * @skb: buffer to use |
| 1284 | * @len: amount of data to remove |
| 1285 | * |
| 1286 | * This function removes data from the start of a buffer, returning |
| 1287 | * the memory to the headroom. A pointer to the next data in the buffer |
| 1288 | * is returned. Once the data has been pulled future pushes will overwrite |
| 1289 | * the old data. |
| 1290 | */ |
| 1291 | unsigned char *skb_pull(struct sk_buff *skb, unsigned int len) |
| 1292 | { |
David S. Miller | 47d2964 | 2010-05-02 02:21:44 -0700 | [diff] [blame] | 1293 | return skb_pull_inline(skb, len); |
Ilpo Järvinen | 6be8ac2 | 2008-03-27 17:47:24 -0700 | [diff] [blame] | 1294 | } |
| 1295 | EXPORT_SYMBOL(skb_pull); |
| 1296 | |
Ilpo Järvinen | 419ae74 | 2008-03-27 17:54:01 -0700 | [diff] [blame] | 1297 | /** |
| 1298 | * skb_trim - remove end from a buffer |
| 1299 | * @skb: buffer to alter |
| 1300 | * @len: new length |
| 1301 | * |
| 1302 | * Cut the length of a buffer down by removing data from the tail. If |
| 1303 | * the buffer is already under the length specified it is not modified. |
| 1304 | * The skb must be linear. |
| 1305 | */ |
| 1306 | void skb_trim(struct sk_buff *skb, unsigned int len) |
| 1307 | { |
| 1308 | if (skb->len > len) |
| 1309 | __skb_trim(skb, len); |
| 1310 | } |
| 1311 | EXPORT_SYMBOL(skb_trim); |
| 1312 | |
Herbert Xu | 3cc0e87 | 2006-06-09 16:13:38 -0700 | [diff] [blame] | 1313 | /* Trims skb to length len. It can change skb pointers. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | */ |
| 1315 | |
Herbert Xu | 3cc0e87 | 2006-06-09 16:13:38 -0700 | [diff] [blame] | 1316 | int ___pskb_trim(struct sk_buff *skb, unsigned int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | { |
Herbert Xu | 27b437c | 2006-07-13 19:26:39 -0700 | [diff] [blame] | 1318 | struct sk_buff **fragp; |
| 1319 | struct sk_buff *frag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | int offset = skb_headlen(skb); |
| 1321 | int nfrags = skb_shinfo(skb)->nr_frags; |
| 1322 | int i; |
Herbert Xu | 27b437c | 2006-07-13 19:26:39 -0700 | [diff] [blame] | 1323 | int err; |
| 1324 | |
| 1325 | if (skb_cloned(skb) && |
| 1326 | unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC)))) |
| 1327 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | |
Herbert Xu | f4d26fb | 2006-07-30 20:20:28 -0700 | [diff] [blame] | 1329 | i = 0; |
| 1330 | if (offset >= len) |
| 1331 | goto drop_pages; |
| 1332 | |
| 1333 | for (; i < nfrags; i++) { |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 1334 | int end = offset + skb_frag_size(&skb_shinfo(skb)->frags[i]); |
Herbert Xu | 27b437c | 2006-07-13 19:26:39 -0700 | [diff] [blame] | 1335 | |
| 1336 | if (end < len) { |
| 1337 | offset = end; |
| 1338 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | } |
Herbert Xu | 27b437c | 2006-07-13 19:26:39 -0700 | [diff] [blame] | 1340 | |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 1341 | skb_frag_size_set(&skb_shinfo(skb)->frags[i++], len - offset); |
Herbert Xu | 27b437c | 2006-07-13 19:26:39 -0700 | [diff] [blame] | 1342 | |
Herbert Xu | f4d26fb | 2006-07-30 20:20:28 -0700 | [diff] [blame] | 1343 | drop_pages: |
Herbert Xu | 27b437c | 2006-07-13 19:26:39 -0700 | [diff] [blame] | 1344 | skb_shinfo(skb)->nr_frags = i; |
| 1345 | |
| 1346 | for (; i < nfrags; i++) |
Ian Campbell | ea2ab69 | 2011-08-22 23:44:58 +0000 | [diff] [blame] | 1347 | skb_frag_unref(skb, i); |
Herbert Xu | 27b437c | 2006-07-13 19:26:39 -0700 | [diff] [blame] | 1348 | |
David S. Miller | 21dc330 | 2010-08-23 00:13:46 -0700 | [diff] [blame] | 1349 | if (skb_has_frag_list(skb)) |
Herbert Xu | 27b437c | 2006-07-13 19:26:39 -0700 | [diff] [blame] | 1350 | skb_drop_fraglist(skb); |
Herbert Xu | f4d26fb | 2006-07-30 20:20:28 -0700 | [diff] [blame] | 1351 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | } |
| 1353 | |
Herbert Xu | 27b437c | 2006-07-13 19:26:39 -0700 | [diff] [blame] | 1354 | for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp); |
| 1355 | fragp = &frag->next) { |
| 1356 | int end = offset + frag->len; |
| 1357 | |
| 1358 | if (skb_shared(frag)) { |
| 1359 | struct sk_buff *nfrag; |
| 1360 | |
| 1361 | nfrag = skb_clone(frag, GFP_ATOMIC); |
| 1362 | if (unlikely(!nfrag)) |
| 1363 | return -ENOMEM; |
| 1364 | |
| 1365 | nfrag->next = frag->next; |
Eric Dumazet | 85bb2a6 | 2012-04-19 02:24:53 +0000 | [diff] [blame] | 1366 | consume_skb(frag); |
Herbert Xu | 27b437c | 2006-07-13 19:26:39 -0700 | [diff] [blame] | 1367 | frag = nfrag; |
| 1368 | *fragp = frag; |
| 1369 | } |
| 1370 | |
| 1371 | if (end < len) { |
| 1372 | offset = end; |
| 1373 | continue; |
| 1374 | } |
| 1375 | |
| 1376 | if (end > len && |
| 1377 | unlikely((err = pskb_trim(frag, len - offset)))) |
| 1378 | return err; |
| 1379 | |
| 1380 | if (frag->next) |
| 1381 | skb_drop_list(&frag->next); |
| 1382 | break; |
| 1383 | } |
| 1384 | |
Herbert Xu | f4d26fb | 2006-07-30 20:20:28 -0700 | [diff] [blame] | 1385 | done: |
Herbert Xu | 27b437c | 2006-07-13 19:26:39 -0700 | [diff] [blame] | 1386 | if (len > skb_headlen(skb)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | skb->data_len -= skb->len - len; |
| 1388 | skb->len = len; |
| 1389 | } else { |
Herbert Xu | 27b437c | 2006-07-13 19:26:39 -0700 | [diff] [blame] | 1390 | skb->len = len; |
| 1391 | skb->data_len = 0; |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 1392 | skb_set_tail_pointer(skb, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1393 | } |
| 1394 | |
| 1395 | return 0; |
| 1396 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 1397 | EXPORT_SYMBOL(___pskb_trim); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | |
| 1399 | /** |
| 1400 | * __pskb_pull_tail - advance tail of skb header |
| 1401 | * @skb: buffer to reallocate |
| 1402 | * @delta: number of bytes to advance tail |
| 1403 | * |
| 1404 | * The function makes a sense only on a fragmented &sk_buff, |
| 1405 | * it expands header moving its tail forward and copying necessary |
| 1406 | * data from fragmented part. |
| 1407 | * |
| 1408 | * &sk_buff MUST have reference count of 1. |
| 1409 | * |
| 1410 | * Returns %NULL (and &sk_buff does not change) if pull failed |
| 1411 | * or value of new tail of skb in the case of success. |
| 1412 | * |
| 1413 | * All the pointers pointing into skb header may change and must be |
| 1414 | * reloaded after call to this function. |
| 1415 | */ |
| 1416 | |
| 1417 | /* Moves tail of skb head forward, copying data from fragmented part, |
| 1418 | * when it is necessary. |
| 1419 | * 1. It may fail due to malloc failure. |
| 1420 | * 2. It may change skb pointers. |
| 1421 | * |
| 1422 | * It is pretty complicated. Luckily, it is called only in exceptional cases. |
| 1423 | */ |
| 1424 | unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta) |
| 1425 | { |
| 1426 | /* If skb has not enough free space at tail, get new one |
| 1427 | * plus 128 bytes for future expansions. If we have enough |
| 1428 | * room at tail, reallocate without expansion only if skb is cloned. |
| 1429 | */ |
Arnaldo Carvalho de Melo | 4305b54 | 2007-04-19 20:43:29 -0700 | [diff] [blame] | 1430 | int i, k, eat = (skb->tail + delta) - skb->end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1431 | |
| 1432 | if (eat > 0 || skb_cloned(skb)) { |
| 1433 | if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0, |
| 1434 | GFP_ATOMIC)) |
| 1435 | return NULL; |
| 1436 | } |
| 1437 | |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 1438 | if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | BUG(); |
| 1440 | |
| 1441 | /* Optimization: no fragments, no reasons to preestimate |
| 1442 | * size of pulled pages. Superb. |
| 1443 | */ |
David S. Miller | 21dc330 | 2010-08-23 00:13:46 -0700 | [diff] [blame] | 1444 | if (!skb_has_frag_list(skb)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1445 | goto pull_pages; |
| 1446 | |
| 1447 | /* Estimate size of pulled pages. */ |
| 1448 | eat = delta; |
| 1449 | for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) { |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 1450 | int size = skb_frag_size(&skb_shinfo(skb)->frags[i]); |
| 1451 | |
| 1452 | if (size >= eat) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1453 | goto pull_pages; |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 1454 | eat -= size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1455 | } |
| 1456 | |
| 1457 | /* If we need update frag list, we are in troubles. |
| 1458 | * Certainly, it possible to add an offset to skb data, |
| 1459 | * but taking into account that pulling is expected to |
| 1460 | * be very rare operation, it is worth to fight against |
| 1461 | * further bloating skb head and crucify ourselves here instead. |
| 1462 | * Pure masohism, indeed. 8)8) |
| 1463 | */ |
| 1464 | if (eat) { |
| 1465 | struct sk_buff *list = skb_shinfo(skb)->frag_list; |
| 1466 | struct sk_buff *clone = NULL; |
| 1467 | struct sk_buff *insp = NULL; |
| 1468 | |
| 1469 | do { |
Kris Katterjohn | 09a6266 | 2006-01-08 22:24:28 -0800 | [diff] [blame] | 1470 | BUG_ON(!list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1471 | |
| 1472 | if (list->len <= eat) { |
| 1473 | /* Eaten as whole. */ |
| 1474 | eat -= list->len; |
| 1475 | list = list->next; |
| 1476 | insp = list; |
| 1477 | } else { |
| 1478 | /* Eaten partially. */ |
| 1479 | |
| 1480 | if (skb_shared(list)) { |
| 1481 | /* Sucks! We need to fork list. :-( */ |
| 1482 | clone = skb_clone(list, GFP_ATOMIC); |
| 1483 | if (!clone) |
| 1484 | return NULL; |
| 1485 | insp = list->next; |
| 1486 | list = clone; |
| 1487 | } else { |
| 1488 | /* This may be pulled without |
| 1489 | * problems. */ |
| 1490 | insp = list; |
| 1491 | } |
| 1492 | if (!pskb_pull(list, eat)) { |
Wei Yongjun | f3fbbe0 | 2009-02-25 00:37:32 +0000 | [diff] [blame] | 1493 | kfree_skb(clone); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | return NULL; |
| 1495 | } |
| 1496 | break; |
| 1497 | } |
| 1498 | } while (eat); |
| 1499 | |
| 1500 | /* Free pulled out fragments. */ |
| 1501 | while ((list = skb_shinfo(skb)->frag_list) != insp) { |
| 1502 | skb_shinfo(skb)->frag_list = list->next; |
| 1503 | kfree_skb(list); |
| 1504 | } |
| 1505 | /* And insert new clone at head. */ |
| 1506 | if (clone) { |
| 1507 | clone->next = list; |
| 1508 | skb_shinfo(skb)->frag_list = clone; |
| 1509 | } |
| 1510 | } |
| 1511 | /* Success! Now we may commit changes to skb data. */ |
| 1512 | |
| 1513 | pull_pages: |
| 1514 | eat = delta; |
| 1515 | k = 0; |
| 1516 | for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) { |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 1517 | int size = skb_frag_size(&skb_shinfo(skb)->frags[i]); |
| 1518 | |
| 1519 | if (size <= eat) { |
Ian Campbell | ea2ab69 | 2011-08-22 23:44:58 +0000 | [diff] [blame] | 1520 | skb_frag_unref(skb, i); |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 1521 | eat -= size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1522 | } else { |
| 1523 | skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i]; |
| 1524 | if (eat) { |
| 1525 | skb_shinfo(skb)->frags[k].page_offset += eat; |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 1526 | skb_frag_size_sub(&skb_shinfo(skb)->frags[k], eat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1527 | eat = 0; |
| 1528 | } |
| 1529 | k++; |
| 1530 | } |
| 1531 | } |
| 1532 | skb_shinfo(skb)->nr_frags = k; |
| 1533 | |
| 1534 | skb->tail += delta; |
| 1535 | skb->data_len -= delta; |
| 1536 | |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 1537 | return skb_tail_pointer(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 1539 | EXPORT_SYMBOL(__pskb_pull_tail); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | |
Eric Dumazet | 22019b1 | 2011-07-29 18:37:31 +0000 | [diff] [blame] | 1541 | /** |
| 1542 | * skb_copy_bits - copy bits from skb to kernel buffer |
| 1543 | * @skb: source skb |
| 1544 | * @offset: offset in source |
| 1545 | * @to: destination buffer |
| 1546 | * @len: number of bytes to copy |
| 1547 | * |
| 1548 | * Copy the specified number of bytes from the source skb to the |
| 1549 | * destination buffer. |
| 1550 | * |
| 1551 | * CAUTION ! : |
| 1552 | * If its prototype is ever changed, |
| 1553 | * check arch/{*}/net/{*}.S files, |
| 1554 | * since it is called from BPF assembly code. |
| 1555 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1556 | int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len) |
| 1557 | { |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 1558 | int start = skb_headlen(skb); |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 1559 | struct sk_buff *frag_iter; |
| 1560 | int i, copy; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1561 | |
| 1562 | if (offset > (int)skb->len - len) |
| 1563 | goto fault; |
| 1564 | |
| 1565 | /* Copy header. */ |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 1566 | if ((copy = start - offset) > 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1567 | if (copy > len) |
| 1568 | copy = len; |
Arnaldo Carvalho de Melo | d626f62 | 2007-03-27 18:55:52 -0300 | [diff] [blame] | 1569 | skb_copy_from_linear_data_offset(skb, offset, to, copy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1570 | if ((len -= copy) == 0) |
| 1571 | return 0; |
| 1572 | offset += copy; |
| 1573 | to += copy; |
| 1574 | } |
| 1575 | |
| 1576 | for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) { |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 1577 | int end; |
Eric Dumazet | 51c56b0 | 2012-04-05 11:35:15 +0200 | [diff] [blame] | 1578 | skb_frag_t *f = &skb_shinfo(skb)->frags[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1579 | |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 1580 | WARN_ON(start > offset + len); |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 1581 | |
Eric Dumazet | 51c56b0 | 2012-04-05 11:35:15 +0200 | [diff] [blame] | 1582 | end = start + skb_frag_size(f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1583 | if ((copy = end - offset) > 0) { |
| 1584 | u8 *vaddr; |
| 1585 | |
| 1586 | if (copy > len) |
| 1587 | copy = len; |
| 1588 | |
Eric Dumazet | 51c56b0 | 2012-04-05 11:35:15 +0200 | [diff] [blame] | 1589 | vaddr = kmap_atomic(skb_frag_page(f)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1590 | memcpy(to, |
Eric Dumazet | 51c56b0 | 2012-04-05 11:35:15 +0200 | [diff] [blame] | 1591 | vaddr + f->page_offset + offset - start, |
| 1592 | copy); |
| 1593 | kunmap_atomic(vaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1594 | |
| 1595 | if ((len -= copy) == 0) |
| 1596 | return 0; |
| 1597 | offset += copy; |
| 1598 | to += copy; |
| 1599 | } |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 1600 | start = end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1601 | } |
| 1602 | |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 1603 | skb_walk_frags(skb, frag_iter) { |
| 1604 | int end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 1606 | WARN_ON(start > offset + len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1607 | |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 1608 | end = start + frag_iter->len; |
| 1609 | if ((copy = end - offset) > 0) { |
| 1610 | if (copy > len) |
| 1611 | copy = len; |
| 1612 | if (skb_copy_bits(frag_iter, offset - start, to, copy)) |
| 1613 | goto fault; |
| 1614 | if ((len -= copy) == 0) |
| 1615 | return 0; |
| 1616 | offset += copy; |
| 1617 | to += copy; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1618 | } |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 1619 | start = end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1620 | } |
Shirley Ma | a6686f2 | 2011-07-06 12:22:12 +0000 | [diff] [blame] | 1621 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1622 | if (!len) |
| 1623 | return 0; |
| 1624 | |
| 1625 | fault: |
| 1626 | return -EFAULT; |
| 1627 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 1628 | EXPORT_SYMBOL(skb_copy_bits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1629 | |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1630 | /* |
| 1631 | * Callback from splice_to_pipe(), if we need to release some pages |
| 1632 | * at the end of the spd in case we error'ed out in filling the pipe. |
| 1633 | */ |
| 1634 | static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i) |
| 1635 | { |
Jarek Poplawski | 8b9d372 | 2009-01-19 17:03:56 -0800 | [diff] [blame] | 1636 | put_page(spd->pages[i]); |
| 1637 | } |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1638 | |
David S. Miller | a108d5f | 2012-04-23 23:06:11 -0400 | [diff] [blame] | 1639 | static struct page *linear_to_page(struct page *page, unsigned int *len, |
| 1640 | unsigned int *offset, |
Eric Dumazet | 18aafc6 | 2013-01-11 14:46:37 +0000 | [diff] [blame] | 1641 | struct sock *sk) |
Jarek Poplawski | 8b9d372 | 2009-01-19 17:03:56 -0800 | [diff] [blame] | 1642 | { |
Eric Dumazet | 5640f76 | 2012-09-23 23:04:42 +0000 | [diff] [blame] | 1643 | struct page_frag *pfrag = sk_page_frag(sk); |
Jarek Poplawski | 8b9d372 | 2009-01-19 17:03:56 -0800 | [diff] [blame] | 1644 | |
Eric Dumazet | 5640f76 | 2012-09-23 23:04:42 +0000 | [diff] [blame] | 1645 | if (!sk_page_frag_refill(sk, pfrag)) |
| 1646 | return NULL; |
Jarek Poplawski | 4fb6699 | 2009-02-01 00:41:42 -0800 | [diff] [blame] | 1647 | |
Eric Dumazet | 5640f76 | 2012-09-23 23:04:42 +0000 | [diff] [blame] | 1648 | *len = min_t(unsigned int, *len, pfrag->size - pfrag->offset); |
Jarek Poplawski | 4fb6699 | 2009-02-01 00:41:42 -0800 | [diff] [blame] | 1649 | |
Eric Dumazet | 5640f76 | 2012-09-23 23:04:42 +0000 | [diff] [blame] | 1650 | memcpy(page_address(pfrag->page) + pfrag->offset, |
| 1651 | page_address(page) + *offset, *len); |
| 1652 | *offset = pfrag->offset; |
| 1653 | pfrag->offset += *len; |
Jarek Poplawski | 4fb6699 | 2009-02-01 00:41:42 -0800 | [diff] [blame] | 1654 | |
Eric Dumazet | 5640f76 | 2012-09-23 23:04:42 +0000 | [diff] [blame] | 1655 | return pfrag->page; |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1656 | } |
| 1657 | |
Eric Dumazet | 41c73a0 | 2012-04-22 12:26:16 +0000 | [diff] [blame] | 1658 | static bool spd_can_coalesce(const struct splice_pipe_desc *spd, |
| 1659 | struct page *page, |
| 1660 | unsigned int offset) |
| 1661 | { |
| 1662 | return spd->nr_pages && |
| 1663 | spd->pages[spd->nr_pages - 1] == page && |
| 1664 | (spd->partial[spd->nr_pages - 1].offset + |
| 1665 | spd->partial[spd->nr_pages - 1].len == offset); |
| 1666 | } |
| 1667 | |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1668 | /* |
| 1669 | * Fill page/offset/length into spd, if it can hold more pages. |
| 1670 | */ |
David S. Miller | a108d5f | 2012-04-23 23:06:11 -0400 | [diff] [blame] | 1671 | static bool spd_fill_page(struct splice_pipe_desc *spd, |
| 1672 | struct pipe_inode_info *pipe, struct page *page, |
| 1673 | unsigned int *len, unsigned int offset, |
Eric Dumazet | 18aafc6 | 2013-01-11 14:46:37 +0000 | [diff] [blame] | 1674 | bool linear, |
David S. Miller | a108d5f | 2012-04-23 23:06:11 -0400 | [diff] [blame] | 1675 | struct sock *sk) |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1676 | { |
Eric Dumazet | 41c73a0 | 2012-04-22 12:26:16 +0000 | [diff] [blame] | 1677 | if (unlikely(spd->nr_pages == MAX_SKB_FRAGS)) |
David S. Miller | a108d5f | 2012-04-23 23:06:11 -0400 | [diff] [blame] | 1678 | return true; |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1679 | |
Jarek Poplawski | 8b9d372 | 2009-01-19 17:03:56 -0800 | [diff] [blame] | 1680 | if (linear) { |
Eric Dumazet | 18aafc6 | 2013-01-11 14:46:37 +0000 | [diff] [blame] | 1681 | page = linear_to_page(page, len, &offset, sk); |
Jarek Poplawski | 8b9d372 | 2009-01-19 17:03:56 -0800 | [diff] [blame] | 1682 | if (!page) |
David S. Miller | a108d5f | 2012-04-23 23:06:11 -0400 | [diff] [blame] | 1683 | return true; |
Eric Dumazet | 41c73a0 | 2012-04-22 12:26:16 +0000 | [diff] [blame] | 1684 | } |
| 1685 | if (spd_can_coalesce(spd, page, offset)) { |
| 1686 | spd->partial[spd->nr_pages - 1].len += *len; |
David S. Miller | a108d5f | 2012-04-23 23:06:11 -0400 | [diff] [blame] | 1687 | return false; |
Eric Dumazet | 41c73a0 | 2012-04-22 12:26:16 +0000 | [diff] [blame] | 1688 | } |
| 1689 | get_page(page); |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1690 | spd->pages[spd->nr_pages] = page; |
Jarek Poplawski | 4fb6699 | 2009-02-01 00:41:42 -0800 | [diff] [blame] | 1691 | spd->partial[spd->nr_pages].len = *len; |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1692 | spd->partial[spd->nr_pages].offset = offset; |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1693 | spd->nr_pages++; |
Jarek Poplawski | 8b9d372 | 2009-01-19 17:03:56 -0800 | [diff] [blame] | 1694 | |
David S. Miller | a108d5f | 2012-04-23 23:06:11 -0400 | [diff] [blame] | 1695 | return false; |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1696 | } |
| 1697 | |
David S. Miller | a108d5f | 2012-04-23 23:06:11 -0400 | [diff] [blame] | 1698 | static bool __splice_segment(struct page *page, unsigned int poff, |
| 1699 | unsigned int plen, unsigned int *off, |
Eric Dumazet | 18aafc6 | 2013-01-11 14:46:37 +0000 | [diff] [blame] | 1700 | unsigned int *len, |
Eric Dumazet | d7ccf7c | 2012-04-23 23:35:04 -0400 | [diff] [blame] | 1701 | struct splice_pipe_desc *spd, bool linear, |
David S. Miller | a108d5f | 2012-04-23 23:06:11 -0400 | [diff] [blame] | 1702 | struct sock *sk, |
| 1703 | struct pipe_inode_info *pipe) |
Octavian Purdila | 2870c43 | 2008-07-15 00:49:11 -0700 | [diff] [blame] | 1704 | { |
| 1705 | if (!*len) |
David S. Miller | a108d5f | 2012-04-23 23:06:11 -0400 | [diff] [blame] | 1706 | return true; |
Octavian Purdila | 2870c43 | 2008-07-15 00:49:11 -0700 | [diff] [blame] | 1707 | |
| 1708 | /* skip this segment if already processed */ |
| 1709 | if (*off >= plen) { |
| 1710 | *off -= plen; |
David S. Miller | a108d5f | 2012-04-23 23:06:11 -0400 | [diff] [blame] | 1711 | return false; |
Octavian Purdila | db43a28 | 2008-06-27 17:27:21 -0700 | [diff] [blame] | 1712 | } |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1713 | |
Octavian Purdila | 2870c43 | 2008-07-15 00:49:11 -0700 | [diff] [blame] | 1714 | /* ignore any bits we already processed */ |
Eric Dumazet | 9ca1b22 | 2013-01-05 21:31:18 +0000 | [diff] [blame] | 1715 | poff += *off; |
| 1716 | plen -= *off; |
| 1717 | *off = 0; |
Octavian Purdila | 2870c43 | 2008-07-15 00:49:11 -0700 | [diff] [blame] | 1718 | |
Eric Dumazet | 18aafc6 | 2013-01-11 14:46:37 +0000 | [diff] [blame] | 1719 | do { |
| 1720 | unsigned int flen = min(*len, plen); |
Octavian Purdila | 2870c43 | 2008-07-15 00:49:11 -0700 | [diff] [blame] | 1721 | |
Eric Dumazet | 18aafc6 | 2013-01-11 14:46:37 +0000 | [diff] [blame] | 1722 | if (spd_fill_page(spd, pipe, page, &flen, poff, |
| 1723 | linear, sk)) |
| 1724 | return true; |
| 1725 | poff += flen; |
| 1726 | plen -= flen; |
| 1727 | *len -= flen; |
| 1728 | } while (*len && plen); |
Octavian Purdila | 2870c43 | 2008-07-15 00:49:11 -0700 | [diff] [blame] | 1729 | |
David S. Miller | a108d5f | 2012-04-23 23:06:11 -0400 | [diff] [blame] | 1730 | return false; |
Octavian Purdila | 2870c43 | 2008-07-15 00:49:11 -0700 | [diff] [blame] | 1731 | } |
| 1732 | |
| 1733 | /* |
David S. Miller | a108d5f | 2012-04-23 23:06:11 -0400 | [diff] [blame] | 1734 | * Map linear and fragment data from the skb to spd. It reports true if the |
Octavian Purdila | 2870c43 | 2008-07-15 00:49:11 -0700 | [diff] [blame] | 1735 | * pipe is full or if we already spliced the requested length. |
| 1736 | */ |
David S. Miller | a108d5f | 2012-04-23 23:06:11 -0400 | [diff] [blame] | 1737 | static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe, |
| 1738 | unsigned int *offset, unsigned int *len, |
| 1739 | struct splice_pipe_desc *spd, struct sock *sk) |
Octavian Purdila | 2870c43 | 2008-07-15 00:49:11 -0700 | [diff] [blame] | 1740 | { |
| 1741 | int seg; |
| 1742 | |
Eric Dumazet | 1d0c0b3 | 2012-04-27 02:10:03 +0000 | [diff] [blame] | 1743 | /* map the linear part : |
Alexander Duyck | 2996d31 | 2012-05-02 18:18:42 +0000 | [diff] [blame] | 1744 | * If skb->head_frag is set, this 'linear' part is backed by a |
| 1745 | * fragment, and if the head is not shared with any clones then |
| 1746 | * we can avoid a copy since we own the head portion of this page. |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1747 | */ |
Octavian Purdila | 2870c43 | 2008-07-15 00:49:11 -0700 | [diff] [blame] | 1748 | if (__splice_segment(virt_to_page(skb->data), |
| 1749 | (unsigned long) skb->data & (PAGE_SIZE - 1), |
| 1750 | skb_headlen(skb), |
Eric Dumazet | 18aafc6 | 2013-01-11 14:46:37 +0000 | [diff] [blame] | 1751 | offset, len, spd, |
Alexander Duyck | 3a7c1ee4 | 2012-05-03 01:09:42 +0000 | [diff] [blame] | 1752 | skb_head_is_locked(skb), |
Eric Dumazet | 1d0c0b3 | 2012-04-27 02:10:03 +0000 | [diff] [blame] | 1753 | sk, pipe)) |
David S. Miller | a108d5f | 2012-04-23 23:06:11 -0400 | [diff] [blame] | 1754 | return true; |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1755 | |
| 1756 | /* |
| 1757 | * then map the fragments |
| 1758 | */ |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1759 | for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) { |
| 1760 | const skb_frag_t *f = &skb_shinfo(skb)->frags[seg]; |
| 1761 | |
Ian Campbell | ea2ab69 | 2011-08-22 23:44:58 +0000 | [diff] [blame] | 1762 | if (__splice_segment(skb_frag_page(f), |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 1763 | f->page_offset, skb_frag_size(f), |
Eric Dumazet | 18aafc6 | 2013-01-11 14:46:37 +0000 | [diff] [blame] | 1764 | offset, len, spd, false, sk, pipe)) |
David S. Miller | a108d5f | 2012-04-23 23:06:11 -0400 | [diff] [blame] | 1765 | return true; |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1766 | } |
| 1767 | |
David S. Miller | a108d5f | 2012-04-23 23:06:11 -0400 | [diff] [blame] | 1768 | return false; |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1769 | } |
| 1770 | |
| 1771 | /* |
| 1772 | * Map data from the skb to a pipe. Should handle both the linear part, |
| 1773 | * the fragments, and the frag list. It does NOT handle frag lists within |
| 1774 | * the frag list, if such a thing exists. We'd probably need to recurse to |
| 1775 | * handle that cleanly. |
| 1776 | */ |
Jarek Poplawski | 8b9d372 | 2009-01-19 17:03:56 -0800 | [diff] [blame] | 1777 | int skb_splice_bits(struct sk_buff *skb, unsigned int offset, |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1778 | struct pipe_inode_info *pipe, unsigned int tlen, |
| 1779 | unsigned int flags) |
| 1780 | { |
Eric Dumazet | 41c73a0 | 2012-04-22 12:26:16 +0000 | [diff] [blame] | 1781 | struct partial_page partial[MAX_SKB_FRAGS]; |
| 1782 | struct page *pages[MAX_SKB_FRAGS]; |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1783 | struct splice_pipe_desc spd = { |
| 1784 | .pages = pages, |
| 1785 | .partial = partial, |
Eric Dumazet | 047fe36 | 2012-06-12 15:24:40 +0200 | [diff] [blame] | 1786 | .nr_pages_max = MAX_SKB_FRAGS, |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1787 | .flags = flags, |
| 1788 | .ops = &sock_pipe_buf_ops, |
| 1789 | .spd_release = sock_spd_release, |
| 1790 | }; |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 1791 | struct sk_buff *frag_iter; |
Jarek Poplawski | 7a67e56 | 2009-04-30 05:41:19 -0700 | [diff] [blame] | 1792 | struct sock *sk = skb->sk; |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 1793 | int ret = 0; |
| 1794 | |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1795 | /* |
| 1796 | * __skb_splice_bits() only fails if the output has no room left, |
| 1797 | * so no point in going over the frag_list for the error case. |
| 1798 | */ |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 1799 | if (__skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk)) |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1800 | goto done; |
| 1801 | else if (!tlen) |
| 1802 | goto done; |
| 1803 | |
| 1804 | /* |
| 1805 | * now see if we have a frag_list to map |
| 1806 | */ |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 1807 | skb_walk_frags(skb, frag_iter) { |
| 1808 | if (!tlen) |
| 1809 | break; |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 1810 | if (__skb_splice_bits(frag_iter, pipe, &offset, &tlen, &spd, sk)) |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 1811 | break; |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1812 | } |
| 1813 | |
| 1814 | done: |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1815 | if (spd.nr_pages) { |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1816 | /* |
| 1817 | * Drop the socket lock, otherwise we have reverse |
| 1818 | * locking dependencies between sk_lock and i_mutex |
| 1819 | * here as compared to sendfile(). We enter here |
| 1820 | * with the socket lock held, and splice_to_pipe() will |
| 1821 | * grab the pipe inode lock. For sendfile() emulation, |
| 1822 | * we call into ->sendpage() with the i_mutex lock held |
| 1823 | * and networking will grab the socket lock. |
| 1824 | */ |
Octavian Purdila | 293ad60 | 2008-06-04 15:45:58 -0700 | [diff] [blame] | 1825 | release_sock(sk); |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1826 | ret = splice_to_pipe(pipe, &spd); |
Octavian Purdila | 293ad60 | 2008-06-04 15:45:58 -0700 | [diff] [blame] | 1827 | lock_sock(sk); |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1828 | } |
| 1829 | |
Jens Axboe | 35f3d14 | 2010-05-20 10:43:18 +0200 | [diff] [blame] | 1830 | return ret; |
Jens Axboe | 9c55e01 | 2007-11-06 23:30:13 -0800 | [diff] [blame] | 1831 | } |
| 1832 | |
Herbert Xu | 357b40a | 2005-04-19 22:30:14 -0700 | [diff] [blame] | 1833 | /** |
| 1834 | * skb_store_bits - store bits from kernel buffer to skb |
| 1835 | * @skb: destination buffer |
| 1836 | * @offset: offset in destination |
| 1837 | * @from: source buffer |
| 1838 | * @len: number of bytes to copy |
| 1839 | * |
| 1840 | * Copy the specified number of bytes from the source buffer to the |
| 1841 | * destination skb. This function handles all the messy bits of |
| 1842 | * traversing fragment lists and such. |
| 1843 | */ |
| 1844 | |
Stephen Hemminger | 0c6fcc8 | 2007-04-20 16:40:01 -0700 | [diff] [blame] | 1845 | int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len) |
Herbert Xu | 357b40a | 2005-04-19 22:30:14 -0700 | [diff] [blame] | 1846 | { |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 1847 | int start = skb_headlen(skb); |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 1848 | struct sk_buff *frag_iter; |
| 1849 | int i, copy; |
Herbert Xu | 357b40a | 2005-04-19 22:30:14 -0700 | [diff] [blame] | 1850 | |
| 1851 | if (offset > (int)skb->len - len) |
| 1852 | goto fault; |
| 1853 | |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 1854 | if ((copy = start - offset) > 0) { |
Herbert Xu | 357b40a | 2005-04-19 22:30:14 -0700 | [diff] [blame] | 1855 | if (copy > len) |
| 1856 | copy = len; |
Arnaldo Carvalho de Melo | 27d7ff4 | 2007-03-31 11:55:19 -0300 | [diff] [blame] | 1857 | skb_copy_to_linear_data_offset(skb, offset, from, copy); |
Herbert Xu | 357b40a | 2005-04-19 22:30:14 -0700 | [diff] [blame] | 1858 | if ((len -= copy) == 0) |
| 1859 | return 0; |
| 1860 | offset += copy; |
| 1861 | from += copy; |
| 1862 | } |
| 1863 | |
| 1864 | for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) { |
| 1865 | skb_frag_t *frag = &skb_shinfo(skb)->frags[i]; |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 1866 | int end; |
Herbert Xu | 357b40a | 2005-04-19 22:30:14 -0700 | [diff] [blame] | 1867 | |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 1868 | WARN_ON(start > offset + len); |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 1869 | |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 1870 | end = start + skb_frag_size(frag); |
Herbert Xu | 357b40a | 2005-04-19 22:30:14 -0700 | [diff] [blame] | 1871 | if ((copy = end - offset) > 0) { |
| 1872 | u8 *vaddr; |
| 1873 | |
| 1874 | if (copy > len) |
| 1875 | copy = len; |
| 1876 | |
Eric Dumazet | 51c56b0 | 2012-04-05 11:35:15 +0200 | [diff] [blame] | 1877 | vaddr = kmap_atomic(skb_frag_page(frag)); |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 1878 | memcpy(vaddr + frag->page_offset + offset - start, |
| 1879 | from, copy); |
Eric Dumazet | 51c56b0 | 2012-04-05 11:35:15 +0200 | [diff] [blame] | 1880 | kunmap_atomic(vaddr); |
Herbert Xu | 357b40a | 2005-04-19 22:30:14 -0700 | [diff] [blame] | 1881 | |
| 1882 | if ((len -= copy) == 0) |
| 1883 | return 0; |
| 1884 | offset += copy; |
| 1885 | from += copy; |
| 1886 | } |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 1887 | start = end; |
Herbert Xu | 357b40a | 2005-04-19 22:30:14 -0700 | [diff] [blame] | 1888 | } |
| 1889 | |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 1890 | skb_walk_frags(skb, frag_iter) { |
| 1891 | int end; |
Herbert Xu | 357b40a | 2005-04-19 22:30:14 -0700 | [diff] [blame] | 1892 | |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 1893 | WARN_ON(start > offset + len); |
Herbert Xu | 357b40a | 2005-04-19 22:30:14 -0700 | [diff] [blame] | 1894 | |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 1895 | end = start + frag_iter->len; |
| 1896 | if ((copy = end - offset) > 0) { |
| 1897 | if (copy > len) |
| 1898 | copy = len; |
| 1899 | if (skb_store_bits(frag_iter, offset - start, |
| 1900 | from, copy)) |
| 1901 | goto fault; |
| 1902 | if ((len -= copy) == 0) |
| 1903 | return 0; |
| 1904 | offset += copy; |
| 1905 | from += copy; |
Herbert Xu | 357b40a | 2005-04-19 22:30:14 -0700 | [diff] [blame] | 1906 | } |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 1907 | start = end; |
Herbert Xu | 357b40a | 2005-04-19 22:30:14 -0700 | [diff] [blame] | 1908 | } |
| 1909 | if (!len) |
| 1910 | return 0; |
| 1911 | |
| 1912 | fault: |
| 1913 | return -EFAULT; |
| 1914 | } |
Herbert Xu | 357b40a | 2005-04-19 22:30:14 -0700 | [diff] [blame] | 1915 | EXPORT_SYMBOL(skb_store_bits); |
| 1916 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1917 | /* Checksum skb data. */ |
| 1918 | |
Al Viro | 2bbbc86 | 2006-11-14 21:37:14 -0800 | [diff] [blame] | 1919 | __wsum skb_checksum(const struct sk_buff *skb, int offset, |
| 1920 | int len, __wsum csum) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1921 | { |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 1922 | int start = skb_headlen(skb); |
| 1923 | int i, copy = start - offset; |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 1924 | struct sk_buff *frag_iter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1925 | int pos = 0; |
| 1926 | |
| 1927 | /* Checksum header. */ |
| 1928 | if (copy > 0) { |
| 1929 | if (copy > len) |
| 1930 | copy = len; |
| 1931 | csum = csum_partial(skb->data + offset, copy, csum); |
| 1932 | if ((len -= copy) == 0) |
| 1933 | return csum; |
| 1934 | offset += copy; |
| 1935 | pos = copy; |
| 1936 | } |
| 1937 | |
| 1938 | for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) { |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 1939 | int end; |
Eric Dumazet | 51c56b0 | 2012-04-05 11:35:15 +0200 | [diff] [blame] | 1940 | skb_frag_t *frag = &skb_shinfo(skb)->frags[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1941 | |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 1942 | WARN_ON(start > offset + len); |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 1943 | |
Eric Dumazet | 51c56b0 | 2012-04-05 11:35:15 +0200 | [diff] [blame] | 1944 | end = start + skb_frag_size(frag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1945 | if ((copy = end - offset) > 0) { |
Al Viro | 44bb936 | 2006-11-14 21:36:14 -0800 | [diff] [blame] | 1946 | __wsum csum2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1947 | u8 *vaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1948 | |
| 1949 | if (copy > len) |
| 1950 | copy = len; |
Eric Dumazet | 51c56b0 | 2012-04-05 11:35:15 +0200 | [diff] [blame] | 1951 | vaddr = kmap_atomic(skb_frag_page(frag)); |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 1952 | csum2 = csum_partial(vaddr + frag->page_offset + |
| 1953 | offset - start, copy, 0); |
Eric Dumazet | 51c56b0 | 2012-04-05 11:35:15 +0200 | [diff] [blame] | 1954 | kunmap_atomic(vaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1955 | csum = csum_block_add(csum, csum2, pos); |
| 1956 | if (!(len -= copy)) |
| 1957 | return csum; |
| 1958 | offset += copy; |
| 1959 | pos += copy; |
| 1960 | } |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 1961 | start = end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1962 | } |
| 1963 | |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 1964 | skb_walk_frags(skb, frag_iter) { |
| 1965 | int end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1966 | |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 1967 | WARN_ON(start > offset + len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1968 | |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 1969 | end = start + frag_iter->len; |
| 1970 | if ((copy = end - offset) > 0) { |
| 1971 | __wsum csum2; |
| 1972 | if (copy > len) |
| 1973 | copy = len; |
| 1974 | csum2 = skb_checksum(frag_iter, offset - start, |
| 1975 | copy, 0); |
| 1976 | csum = csum_block_add(csum, csum2, pos); |
| 1977 | if ((len -= copy) == 0) |
| 1978 | return csum; |
| 1979 | offset += copy; |
| 1980 | pos += copy; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1981 | } |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 1982 | start = end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1983 | } |
Kris Katterjohn | 09a6266 | 2006-01-08 22:24:28 -0800 | [diff] [blame] | 1984 | BUG_ON(len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1985 | |
| 1986 | return csum; |
| 1987 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 1988 | EXPORT_SYMBOL(skb_checksum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1989 | |
| 1990 | /* Both of above in one bottle. */ |
| 1991 | |
Al Viro | 81d7766 | 2006-11-14 21:37:33 -0800 | [diff] [blame] | 1992 | __wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset, |
| 1993 | u8 *to, int len, __wsum csum) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1994 | { |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 1995 | int start = skb_headlen(skb); |
| 1996 | int i, copy = start - offset; |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 1997 | struct sk_buff *frag_iter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1998 | int pos = 0; |
| 1999 | |
| 2000 | /* Copy header. */ |
| 2001 | if (copy > 0) { |
| 2002 | if (copy > len) |
| 2003 | copy = len; |
| 2004 | csum = csum_partial_copy_nocheck(skb->data + offset, to, |
| 2005 | copy, csum); |
| 2006 | if ((len -= copy) == 0) |
| 2007 | return csum; |
| 2008 | offset += copy; |
| 2009 | to += copy; |
| 2010 | pos = copy; |
| 2011 | } |
| 2012 | |
| 2013 | for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) { |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 2014 | int end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2015 | |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 2016 | WARN_ON(start > offset + len); |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 2017 | |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 2018 | end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2019 | if ((copy = end - offset) > 0) { |
Al Viro | 5084205 | 2006-11-14 21:36:34 -0800 | [diff] [blame] | 2020 | __wsum csum2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2021 | u8 *vaddr; |
| 2022 | skb_frag_t *frag = &skb_shinfo(skb)->frags[i]; |
| 2023 | |
| 2024 | if (copy > len) |
| 2025 | copy = len; |
Eric Dumazet | 51c56b0 | 2012-04-05 11:35:15 +0200 | [diff] [blame] | 2026 | vaddr = kmap_atomic(skb_frag_page(frag)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2027 | csum2 = csum_partial_copy_nocheck(vaddr + |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 2028 | frag->page_offset + |
| 2029 | offset - start, to, |
| 2030 | copy, 0); |
Eric Dumazet | 51c56b0 | 2012-04-05 11:35:15 +0200 | [diff] [blame] | 2031 | kunmap_atomic(vaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2032 | csum = csum_block_add(csum, csum2, pos); |
| 2033 | if (!(len -= copy)) |
| 2034 | return csum; |
| 2035 | offset += copy; |
| 2036 | to += copy; |
| 2037 | pos += copy; |
| 2038 | } |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 2039 | start = end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2040 | } |
| 2041 | |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 2042 | skb_walk_frags(skb, frag_iter) { |
| 2043 | __wsum csum2; |
| 2044 | int end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2045 | |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 2046 | WARN_ON(start > offset + len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2047 | |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 2048 | end = start + frag_iter->len; |
| 2049 | if ((copy = end - offset) > 0) { |
| 2050 | if (copy > len) |
| 2051 | copy = len; |
| 2052 | csum2 = skb_copy_and_csum_bits(frag_iter, |
| 2053 | offset - start, |
| 2054 | to, copy, 0); |
| 2055 | csum = csum_block_add(csum, csum2, pos); |
| 2056 | if ((len -= copy) == 0) |
| 2057 | return csum; |
| 2058 | offset += copy; |
| 2059 | to += copy; |
| 2060 | pos += copy; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2061 | } |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 2062 | start = end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2063 | } |
Kris Katterjohn | 09a6266 | 2006-01-08 22:24:28 -0800 | [diff] [blame] | 2064 | BUG_ON(len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2065 | return csum; |
| 2066 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 2067 | EXPORT_SYMBOL(skb_copy_and_csum_bits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2068 | |
| 2069 | void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to) |
| 2070 | { |
Al Viro | d3bc23e | 2006-11-14 21:24:49 -0800 | [diff] [blame] | 2071 | __wsum csum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2072 | long csstart; |
| 2073 | |
Patrick McHardy | 84fa793 | 2006-08-29 16:44:56 -0700 | [diff] [blame] | 2074 | if (skb->ip_summed == CHECKSUM_PARTIAL) |
Michał Mirosław | 55508d6 | 2010-12-14 15:24:08 +0000 | [diff] [blame] | 2075 | csstart = skb_checksum_start_offset(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2076 | else |
| 2077 | csstart = skb_headlen(skb); |
| 2078 | |
Kris Katterjohn | 09a6266 | 2006-01-08 22:24:28 -0800 | [diff] [blame] | 2079 | BUG_ON(csstart > skb_headlen(skb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2080 | |
Arnaldo Carvalho de Melo | d626f62 | 2007-03-27 18:55:52 -0300 | [diff] [blame] | 2081 | skb_copy_from_linear_data(skb, to, csstart); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2082 | |
| 2083 | csum = 0; |
| 2084 | if (csstart != skb->len) |
| 2085 | csum = skb_copy_and_csum_bits(skb, csstart, to + csstart, |
| 2086 | skb->len - csstart, 0); |
| 2087 | |
Patrick McHardy | 84fa793 | 2006-08-29 16:44:56 -0700 | [diff] [blame] | 2088 | if (skb->ip_summed == CHECKSUM_PARTIAL) { |
Al Viro | ff1dcad | 2006-11-20 18:07:29 -0800 | [diff] [blame] | 2089 | long csstuff = csstart + skb->csum_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | |
Al Viro | d3bc23e | 2006-11-14 21:24:49 -0800 | [diff] [blame] | 2091 | *((__sum16 *)(to + csstuff)) = csum_fold(csum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2092 | } |
| 2093 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 2094 | EXPORT_SYMBOL(skb_copy_and_csum_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2095 | |
| 2096 | /** |
| 2097 | * skb_dequeue - remove from the head of the queue |
| 2098 | * @list: list to dequeue from |
| 2099 | * |
| 2100 | * Remove the head of the list. The list lock is taken so the function |
| 2101 | * may be used safely with other locking list functions. The head item is |
| 2102 | * returned or %NULL if the list is empty. |
| 2103 | */ |
| 2104 | |
| 2105 | struct sk_buff *skb_dequeue(struct sk_buff_head *list) |
| 2106 | { |
| 2107 | unsigned long flags; |
| 2108 | struct sk_buff *result; |
| 2109 | |
| 2110 | spin_lock_irqsave(&list->lock, flags); |
| 2111 | result = __skb_dequeue(list); |
| 2112 | spin_unlock_irqrestore(&list->lock, flags); |
| 2113 | return result; |
| 2114 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 2115 | EXPORT_SYMBOL(skb_dequeue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2116 | |
| 2117 | /** |
| 2118 | * skb_dequeue_tail - remove from the tail of the queue |
| 2119 | * @list: list to dequeue from |
| 2120 | * |
| 2121 | * Remove the tail of the list. The list lock is taken so the function |
| 2122 | * may be used safely with other locking list functions. The tail item is |
| 2123 | * returned or %NULL if the list is empty. |
| 2124 | */ |
| 2125 | struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list) |
| 2126 | { |
| 2127 | unsigned long flags; |
| 2128 | struct sk_buff *result; |
| 2129 | |
| 2130 | spin_lock_irqsave(&list->lock, flags); |
| 2131 | result = __skb_dequeue_tail(list); |
| 2132 | spin_unlock_irqrestore(&list->lock, flags); |
| 2133 | return result; |
| 2134 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 2135 | EXPORT_SYMBOL(skb_dequeue_tail); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2136 | |
| 2137 | /** |
| 2138 | * skb_queue_purge - empty a list |
| 2139 | * @list: list to empty |
| 2140 | * |
| 2141 | * Delete all buffers on an &sk_buff list. Each buffer is removed from |
| 2142 | * the list and one reference dropped. This function takes the list |
| 2143 | * lock and is atomic with respect to other list locking functions. |
| 2144 | */ |
| 2145 | void skb_queue_purge(struct sk_buff_head *list) |
| 2146 | { |
| 2147 | struct sk_buff *skb; |
| 2148 | while ((skb = skb_dequeue(list)) != NULL) |
| 2149 | kfree_skb(skb); |
| 2150 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 2151 | EXPORT_SYMBOL(skb_queue_purge); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2152 | |
| 2153 | /** |
| 2154 | * skb_queue_head - queue a buffer at the list head |
| 2155 | * @list: list to use |
| 2156 | * @newsk: buffer to queue |
| 2157 | * |
| 2158 | * Queue a buffer at the start of the list. This function takes the |
| 2159 | * list lock and can be used safely with other locking &sk_buff functions |
| 2160 | * safely. |
| 2161 | * |
| 2162 | * A buffer cannot be placed on two lists at the same time. |
| 2163 | */ |
| 2164 | void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk) |
| 2165 | { |
| 2166 | unsigned long flags; |
| 2167 | |
| 2168 | spin_lock_irqsave(&list->lock, flags); |
| 2169 | __skb_queue_head(list, newsk); |
| 2170 | spin_unlock_irqrestore(&list->lock, flags); |
| 2171 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 2172 | EXPORT_SYMBOL(skb_queue_head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2173 | |
| 2174 | /** |
| 2175 | * skb_queue_tail - queue a buffer at the list tail |
| 2176 | * @list: list to use |
| 2177 | * @newsk: buffer to queue |
| 2178 | * |
| 2179 | * Queue a buffer at the tail of the list. This function takes the |
| 2180 | * list lock and can be used safely with other locking &sk_buff functions |
| 2181 | * safely. |
| 2182 | * |
| 2183 | * A buffer cannot be placed on two lists at the same time. |
| 2184 | */ |
| 2185 | void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk) |
| 2186 | { |
| 2187 | unsigned long flags; |
| 2188 | |
| 2189 | spin_lock_irqsave(&list->lock, flags); |
| 2190 | __skb_queue_tail(list, newsk); |
| 2191 | spin_unlock_irqrestore(&list->lock, flags); |
| 2192 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 2193 | EXPORT_SYMBOL(skb_queue_tail); |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 2194 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2195 | /** |
| 2196 | * skb_unlink - remove a buffer from a list |
| 2197 | * @skb: buffer to remove |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 2198 | * @list: list to use |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2199 | * |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 2200 | * Remove a packet from a list. The list locks are taken and this |
| 2201 | * function is atomic with respect to other list locked calls |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2202 | * |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 2203 | * You must know what list the SKB is on. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2204 | */ |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 2205 | void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2206 | { |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 2207 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2208 | |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 2209 | spin_lock_irqsave(&list->lock, flags); |
| 2210 | __skb_unlink(skb, list); |
| 2211 | spin_unlock_irqrestore(&list->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2212 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 2213 | EXPORT_SYMBOL(skb_unlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2214 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2215 | /** |
| 2216 | * skb_append - append a buffer |
| 2217 | * @old: buffer to insert after |
| 2218 | * @newsk: buffer to insert |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 2219 | * @list: list to use |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2220 | * |
| 2221 | * Place a packet after a given packet in a list. The list locks are taken |
| 2222 | * and this function is atomic with respect to other list locked calls. |
| 2223 | * A buffer cannot be placed on two lists at the same time. |
| 2224 | */ |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 2225 | void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2226 | { |
| 2227 | unsigned long flags; |
| 2228 | |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 2229 | spin_lock_irqsave(&list->lock, flags); |
Gerrit Renker | 7de6c03 | 2008-04-14 00:05:09 -0700 | [diff] [blame] | 2230 | __skb_queue_after(list, old, newsk); |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 2231 | spin_unlock_irqrestore(&list->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2232 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 2233 | EXPORT_SYMBOL(skb_append); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2234 | |
| 2235 | /** |
| 2236 | * skb_insert - insert a buffer |
| 2237 | * @old: buffer to insert before |
| 2238 | * @newsk: buffer to insert |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 2239 | * @list: list to use |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2240 | * |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 2241 | * Place a packet before a given packet in a list. The list locks are |
| 2242 | * taken and this function is atomic with respect to other list locked |
| 2243 | * calls. |
| 2244 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2245 | * A buffer cannot be placed on two lists at the same time. |
| 2246 | */ |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 2247 | void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2248 | { |
| 2249 | unsigned long flags; |
| 2250 | |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 2251 | spin_lock_irqsave(&list->lock, flags); |
| 2252 | __skb_insert(newsk, old->prev, old, list); |
| 2253 | spin_unlock_irqrestore(&list->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2254 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 2255 | EXPORT_SYMBOL(skb_insert); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2256 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2257 | static inline void skb_split_inside_header(struct sk_buff *skb, |
| 2258 | struct sk_buff* skb1, |
| 2259 | const u32 len, const int pos) |
| 2260 | { |
| 2261 | int i; |
| 2262 | |
Arnaldo Carvalho de Melo | d626f62 | 2007-03-27 18:55:52 -0300 | [diff] [blame] | 2263 | skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len), |
| 2264 | pos - len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2265 | /* And move data appendix as is. */ |
| 2266 | for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) |
| 2267 | skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i]; |
| 2268 | |
| 2269 | skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags; |
| 2270 | skb_shinfo(skb)->nr_frags = 0; |
| 2271 | skb1->data_len = skb->data_len; |
| 2272 | skb1->len += skb1->data_len; |
| 2273 | skb->data_len = 0; |
| 2274 | skb->len = len; |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 2275 | skb_set_tail_pointer(skb, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2276 | } |
| 2277 | |
| 2278 | static inline void skb_split_no_header(struct sk_buff *skb, |
| 2279 | struct sk_buff* skb1, |
| 2280 | const u32 len, int pos) |
| 2281 | { |
| 2282 | int i, k = 0; |
| 2283 | const int nfrags = skb_shinfo(skb)->nr_frags; |
| 2284 | |
| 2285 | skb_shinfo(skb)->nr_frags = 0; |
| 2286 | skb1->len = skb1->data_len = skb->len - len; |
| 2287 | skb->len = len; |
| 2288 | skb->data_len = len - pos; |
| 2289 | |
| 2290 | for (i = 0; i < nfrags; i++) { |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 2291 | int size = skb_frag_size(&skb_shinfo(skb)->frags[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2292 | |
| 2293 | if (pos + size > len) { |
| 2294 | skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i]; |
| 2295 | |
| 2296 | if (pos < len) { |
| 2297 | /* Split frag. |
| 2298 | * We have two variants in this case: |
| 2299 | * 1. Move all the frag to the second |
| 2300 | * part, if it is possible. F.e. |
| 2301 | * this approach is mandatory for TUX, |
| 2302 | * where splitting is expensive. |
| 2303 | * 2. Split is accurately. We make this. |
| 2304 | */ |
Ian Campbell | ea2ab69 | 2011-08-22 23:44:58 +0000 | [diff] [blame] | 2305 | skb_frag_ref(skb, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2306 | skb_shinfo(skb1)->frags[0].page_offset += len - pos; |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 2307 | skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos); |
| 2308 | skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2309 | skb_shinfo(skb)->nr_frags++; |
| 2310 | } |
| 2311 | k++; |
| 2312 | } else |
| 2313 | skb_shinfo(skb)->nr_frags++; |
| 2314 | pos += size; |
| 2315 | } |
| 2316 | skb_shinfo(skb1)->nr_frags = k; |
| 2317 | } |
| 2318 | |
| 2319 | /** |
| 2320 | * skb_split - Split fragmented skb to two parts at length len. |
| 2321 | * @skb: the buffer to split |
| 2322 | * @skb1: the buffer to receive the second part |
| 2323 | * @len: new length for skb |
| 2324 | */ |
| 2325 | void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len) |
| 2326 | { |
| 2327 | int pos = skb_headlen(skb); |
| 2328 | |
Amerigo Wang | 68534c6 | 2013-02-19 22:51:30 +0000 | [diff] [blame] | 2329 | skb_shinfo(skb1)->tx_flags = skb_shinfo(skb)->tx_flags & SKBTX_SHARED_FRAG; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2330 | if (len < pos) /* Split line is inside header. */ |
| 2331 | skb_split_inside_header(skb, skb1, len, pos); |
| 2332 | else /* Second chunk has no header, nothing to copy. */ |
| 2333 | skb_split_no_header(skb, skb1, len, pos); |
| 2334 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 2335 | EXPORT_SYMBOL(skb_split); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2336 | |
Ilpo Järvinen | 9f782db | 2008-11-25 13:57:01 -0800 | [diff] [blame] | 2337 | /* Shifting from/to a cloned skb is a no-go. |
| 2338 | * |
| 2339 | * Caller cannot keep skb_shinfo related pointers past calling here! |
| 2340 | */ |
Ilpo Järvinen | 832d11c | 2008-11-24 21:20:15 -0800 | [diff] [blame] | 2341 | static int skb_prepare_for_shift(struct sk_buff *skb) |
| 2342 | { |
Ilpo Järvinen | 0ace285 | 2008-11-24 21:30:21 -0800 | [diff] [blame] | 2343 | return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC); |
Ilpo Järvinen | 832d11c | 2008-11-24 21:20:15 -0800 | [diff] [blame] | 2344 | } |
| 2345 | |
| 2346 | /** |
| 2347 | * skb_shift - Shifts paged data partially from skb to another |
| 2348 | * @tgt: buffer into which tail data gets added |
| 2349 | * @skb: buffer from which the paged data comes from |
| 2350 | * @shiftlen: shift up to this many bytes |
| 2351 | * |
| 2352 | * Attempts to shift up to shiftlen worth of bytes, which may be less than |
Feng King | 20e994a | 2011-11-21 01:47:11 +0000 | [diff] [blame] | 2353 | * the length of the skb, from skb to tgt. Returns number bytes shifted. |
Ilpo Järvinen | 832d11c | 2008-11-24 21:20:15 -0800 | [diff] [blame] | 2354 | * It's up to caller to free skb if everything was shifted. |
| 2355 | * |
| 2356 | * If @tgt runs out of frags, the whole operation is aborted. |
| 2357 | * |
| 2358 | * Skb cannot include anything else but paged data while tgt is allowed |
| 2359 | * to have non-paged data as well. |
| 2360 | * |
| 2361 | * TODO: full sized shift could be optimized but that would need |
| 2362 | * specialized skb free'er to handle frags without up-to-date nr_frags. |
| 2363 | */ |
| 2364 | int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen) |
| 2365 | { |
| 2366 | int from, to, merge, todo; |
| 2367 | struct skb_frag_struct *fragfrom, *fragto; |
| 2368 | |
| 2369 | BUG_ON(shiftlen > skb->len); |
| 2370 | BUG_ON(skb_headlen(skb)); /* Would corrupt stream */ |
| 2371 | |
| 2372 | todo = shiftlen; |
| 2373 | from = 0; |
| 2374 | to = skb_shinfo(tgt)->nr_frags; |
| 2375 | fragfrom = &skb_shinfo(skb)->frags[from]; |
| 2376 | |
| 2377 | /* Actual merge is delayed until the point when we know we can |
| 2378 | * commit all, so that we don't have to undo partial changes |
| 2379 | */ |
| 2380 | if (!to || |
Ian Campbell | ea2ab69 | 2011-08-22 23:44:58 +0000 | [diff] [blame] | 2381 | !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom), |
| 2382 | fragfrom->page_offset)) { |
Ilpo Järvinen | 832d11c | 2008-11-24 21:20:15 -0800 | [diff] [blame] | 2383 | merge = -1; |
| 2384 | } else { |
| 2385 | merge = to - 1; |
| 2386 | |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 2387 | todo -= skb_frag_size(fragfrom); |
Ilpo Järvinen | 832d11c | 2008-11-24 21:20:15 -0800 | [diff] [blame] | 2388 | if (todo < 0) { |
| 2389 | if (skb_prepare_for_shift(skb) || |
| 2390 | skb_prepare_for_shift(tgt)) |
| 2391 | return 0; |
| 2392 | |
Ilpo Järvinen | 9f782db | 2008-11-25 13:57:01 -0800 | [diff] [blame] | 2393 | /* All previous frag pointers might be stale! */ |
| 2394 | fragfrom = &skb_shinfo(skb)->frags[from]; |
Ilpo Järvinen | 832d11c | 2008-11-24 21:20:15 -0800 | [diff] [blame] | 2395 | fragto = &skb_shinfo(tgt)->frags[merge]; |
| 2396 | |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 2397 | skb_frag_size_add(fragto, shiftlen); |
| 2398 | skb_frag_size_sub(fragfrom, shiftlen); |
Ilpo Järvinen | 832d11c | 2008-11-24 21:20:15 -0800 | [diff] [blame] | 2399 | fragfrom->page_offset += shiftlen; |
| 2400 | |
| 2401 | goto onlymerged; |
| 2402 | } |
| 2403 | |
| 2404 | from++; |
| 2405 | } |
| 2406 | |
| 2407 | /* Skip full, not-fitting skb to avoid expensive operations */ |
| 2408 | if ((shiftlen == skb->len) && |
| 2409 | (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to)) |
| 2410 | return 0; |
| 2411 | |
| 2412 | if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt)) |
| 2413 | return 0; |
| 2414 | |
| 2415 | while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) { |
| 2416 | if (to == MAX_SKB_FRAGS) |
| 2417 | return 0; |
| 2418 | |
| 2419 | fragfrom = &skb_shinfo(skb)->frags[from]; |
| 2420 | fragto = &skb_shinfo(tgt)->frags[to]; |
| 2421 | |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 2422 | if (todo >= skb_frag_size(fragfrom)) { |
Ilpo Järvinen | 832d11c | 2008-11-24 21:20:15 -0800 | [diff] [blame] | 2423 | *fragto = *fragfrom; |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 2424 | todo -= skb_frag_size(fragfrom); |
Ilpo Järvinen | 832d11c | 2008-11-24 21:20:15 -0800 | [diff] [blame] | 2425 | from++; |
| 2426 | to++; |
| 2427 | |
| 2428 | } else { |
Ian Campbell | ea2ab69 | 2011-08-22 23:44:58 +0000 | [diff] [blame] | 2429 | __skb_frag_ref(fragfrom); |
Ilpo Järvinen | 832d11c | 2008-11-24 21:20:15 -0800 | [diff] [blame] | 2430 | fragto->page = fragfrom->page; |
| 2431 | fragto->page_offset = fragfrom->page_offset; |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 2432 | skb_frag_size_set(fragto, todo); |
Ilpo Järvinen | 832d11c | 2008-11-24 21:20:15 -0800 | [diff] [blame] | 2433 | |
| 2434 | fragfrom->page_offset += todo; |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 2435 | skb_frag_size_sub(fragfrom, todo); |
Ilpo Järvinen | 832d11c | 2008-11-24 21:20:15 -0800 | [diff] [blame] | 2436 | todo = 0; |
| 2437 | |
| 2438 | to++; |
| 2439 | break; |
| 2440 | } |
| 2441 | } |
| 2442 | |
| 2443 | /* Ready to "commit" this state change to tgt */ |
| 2444 | skb_shinfo(tgt)->nr_frags = to; |
| 2445 | |
| 2446 | if (merge >= 0) { |
| 2447 | fragfrom = &skb_shinfo(skb)->frags[0]; |
| 2448 | fragto = &skb_shinfo(tgt)->frags[merge]; |
| 2449 | |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 2450 | skb_frag_size_add(fragto, skb_frag_size(fragfrom)); |
Ian Campbell | ea2ab69 | 2011-08-22 23:44:58 +0000 | [diff] [blame] | 2451 | __skb_frag_unref(fragfrom); |
Ilpo Järvinen | 832d11c | 2008-11-24 21:20:15 -0800 | [diff] [blame] | 2452 | } |
| 2453 | |
| 2454 | /* Reposition in the original skb */ |
| 2455 | to = 0; |
| 2456 | while (from < skb_shinfo(skb)->nr_frags) |
| 2457 | skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++]; |
| 2458 | skb_shinfo(skb)->nr_frags = to; |
| 2459 | |
| 2460 | BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags); |
| 2461 | |
| 2462 | onlymerged: |
| 2463 | /* Most likely the tgt won't ever need its checksum anymore, skb on |
| 2464 | * the other hand might need it if it needs to be resent |
| 2465 | */ |
| 2466 | tgt->ip_summed = CHECKSUM_PARTIAL; |
| 2467 | skb->ip_summed = CHECKSUM_PARTIAL; |
| 2468 | |
| 2469 | /* Yak, is it really working this way? Some helper please? */ |
| 2470 | skb->len -= shiftlen; |
| 2471 | skb->data_len -= shiftlen; |
| 2472 | skb->truesize -= shiftlen; |
| 2473 | tgt->len += shiftlen; |
| 2474 | tgt->data_len += shiftlen; |
| 2475 | tgt->truesize += shiftlen; |
| 2476 | |
| 2477 | return shiftlen; |
| 2478 | } |
| 2479 | |
Thomas Graf | 677e90e | 2005-06-23 20:59:51 -0700 | [diff] [blame] | 2480 | /** |
| 2481 | * skb_prepare_seq_read - Prepare a sequential read of skb data |
| 2482 | * @skb: the buffer to read |
| 2483 | * @from: lower offset of data to be read |
| 2484 | * @to: upper offset of data to be read |
| 2485 | * @st: state variable |
| 2486 | * |
| 2487 | * Initializes the specified state variable. Must be called before |
| 2488 | * invoking skb_seq_read() for the first time. |
| 2489 | */ |
| 2490 | void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from, |
| 2491 | unsigned int to, struct skb_seq_state *st) |
| 2492 | { |
| 2493 | st->lower_offset = from; |
| 2494 | st->upper_offset = to; |
| 2495 | st->root_skb = st->cur_skb = skb; |
| 2496 | st->frag_idx = st->stepped_offset = 0; |
| 2497 | st->frag_data = NULL; |
| 2498 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 2499 | EXPORT_SYMBOL(skb_prepare_seq_read); |
Thomas Graf | 677e90e | 2005-06-23 20:59:51 -0700 | [diff] [blame] | 2500 | |
| 2501 | /** |
| 2502 | * skb_seq_read - Sequentially read skb data |
| 2503 | * @consumed: number of bytes consumed by the caller so far |
| 2504 | * @data: destination pointer for data to be returned |
| 2505 | * @st: state variable |
| 2506 | * |
| 2507 | * Reads a block of skb data at &consumed relative to the |
| 2508 | * lower offset specified to skb_prepare_seq_read(). Assigns |
| 2509 | * the head of the data block to &data and returns the length |
| 2510 | * of the block or 0 if the end of the skb data or the upper |
| 2511 | * offset has been reached. |
| 2512 | * |
| 2513 | * The caller is not required to consume all of the data |
| 2514 | * returned, i.e. &consumed is typically set to the number |
| 2515 | * of bytes already consumed and the next call to |
| 2516 | * skb_seq_read() will return the remaining part of the block. |
| 2517 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2518 | * Note 1: The size of each block of data returned can be arbitrary, |
Thomas Graf | 677e90e | 2005-06-23 20:59:51 -0700 | [diff] [blame] | 2519 | * this limitation is the cost for zerocopy seqeuental |
| 2520 | * reads of potentially non linear data. |
| 2521 | * |
Randy Dunlap | bc2cda1 | 2008-02-13 15:03:25 -0800 | [diff] [blame] | 2522 | * Note 2: Fragment lists within fragments are not implemented |
Thomas Graf | 677e90e | 2005-06-23 20:59:51 -0700 | [diff] [blame] | 2523 | * at the moment, state->root_skb could be replaced with |
| 2524 | * a stack for this purpose. |
| 2525 | */ |
| 2526 | unsigned int skb_seq_read(unsigned int consumed, const u8 **data, |
| 2527 | struct skb_seq_state *st) |
| 2528 | { |
| 2529 | unsigned int block_limit, abs_offset = consumed + st->lower_offset; |
| 2530 | skb_frag_t *frag; |
| 2531 | |
| 2532 | if (unlikely(abs_offset >= st->upper_offset)) |
| 2533 | return 0; |
| 2534 | |
| 2535 | next_skb: |
Herbert Xu | 95e3b24 | 2009-01-29 16:07:52 -0800 | [diff] [blame] | 2536 | block_limit = skb_headlen(st->cur_skb) + st->stepped_offset; |
Thomas Graf | 677e90e | 2005-06-23 20:59:51 -0700 | [diff] [blame] | 2537 | |
Thomas Chenault | 995b337 | 2009-05-18 21:43:27 -0700 | [diff] [blame] | 2538 | if (abs_offset < block_limit && !st->frag_data) { |
Herbert Xu | 95e3b24 | 2009-01-29 16:07:52 -0800 | [diff] [blame] | 2539 | *data = st->cur_skb->data + (abs_offset - st->stepped_offset); |
Thomas Graf | 677e90e | 2005-06-23 20:59:51 -0700 | [diff] [blame] | 2540 | return block_limit - abs_offset; |
| 2541 | } |
| 2542 | |
| 2543 | if (st->frag_idx == 0 && !st->frag_data) |
| 2544 | st->stepped_offset += skb_headlen(st->cur_skb); |
| 2545 | |
| 2546 | while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) { |
| 2547 | frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx]; |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 2548 | block_limit = skb_frag_size(frag) + st->stepped_offset; |
Thomas Graf | 677e90e | 2005-06-23 20:59:51 -0700 | [diff] [blame] | 2549 | |
| 2550 | if (abs_offset < block_limit) { |
| 2551 | if (!st->frag_data) |
Eric Dumazet | 51c56b0 | 2012-04-05 11:35:15 +0200 | [diff] [blame] | 2552 | st->frag_data = kmap_atomic(skb_frag_page(frag)); |
Thomas Graf | 677e90e | 2005-06-23 20:59:51 -0700 | [diff] [blame] | 2553 | |
| 2554 | *data = (u8 *) st->frag_data + frag->page_offset + |
| 2555 | (abs_offset - st->stepped_offset); |
| 2556 | |
| 2557 | return block_limit - abs_offset; |
| 2558 | } |
| 2559 | |
| 2560 | if (st->frag_data) { |
Eric Dumazet | 51c56b0 | 2012-04-05 11:35:15 +0200 | [diff] [blame] | 2561 | kunmap_atomic(st->frag_data); |
Thomas Graf | 677e90e | 2005-06-23 20:59:51 -0700 | [diff] [blame] | 2562 | st->frag_data = NULL; |
| 2563 | } |
| 2564 | |
| 2565 | st->frag_idx++; |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 2566 | st->stepped_offset += skb_frag_size(frag); |
Thomas Graf | 677e90e | 2005-06-23 20:59:51 -0700 | [diff] [blame] | 2567 | } |
| 2568 | |
Olaf Kirch | 5b5a60d | 2007-06-23 23:11:52 -0700 | [diff] [blame] | 2569 | if (st->frag_data) { |
Eric Dumazet | 51c56b0 | 2012-04-05 11:35:15 +0200 | [diff] [blame] | 2570 | kunmap_atomic(st->frag_data); |
Olaf Kirch | 5b5a60d | 2007-06-23 23:11:52 -0700 | [diff] [blame] | 2571 | st->frag_data = NULL; |
| 2572 | } |
| 2573 | |
David S. Miller | 21dc330 | 2010-08-23 00:13:46 -0700 | [diff] [blame] | 2574 | if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) { |
Shyam Iyer | 71b3346 | 2009-01-29 16:12:42 -0800 | [diff] [blame] | 2575 | st->cur_skb = skb_shinfo(st->root_skb)->frag_list; |
Thomas Graf | 677e90e | 2005-06-23 20:59:51 -0700 | [diff] [blame] | 2576 | st->frag_idx = 0; |
| 2577 | goto next_skb; |
Shyam Iyer | 71b3346 | 2009-01-29 16:12:42 -0800 | [diff] [blame] | 2578 | } else if (st->cur_skb->next) { |
| 2579 | st->cur_skb = st->cur_skb->next; |
Herbert Xu | 95e3b24 | 2009-01-29 16:07:52 -0800 | [diff] [blame] | 2580 | st->frag_idx = 0; |
Thomas Graf | 677e90e | 2005-06-23 20:59:51 -0700 | [diff] [blame] | 2581 | goto next_skb; |
| 2582 | } |
| 2583 | |
| 2584 | return 0; |
| 2585 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 2586 | EXPORT_SYMBOL(skb_seq_read); |
Thomas Graf | 677e90e | 2005-06-23 20:59:51 -0700 | [diff] [blame] | 2587 | |
| 2588 | /** |
| 2589 | * skb_abort_seq_read - Abort a sequential read of skb data |
| 2590 | * @st: state variable |
| 2591 | * |
| 2592 | * Must be called if skb_seq_read() was not called until it |
| 2593 | * returned 0. |
| 2594 | */ |
| 2595 | void skb_abort_seq_read(struct skb_seq_state *st) |
| 2596 | { |
| 2597 | if (st->frag_data) |
Eric Dumazet | 51c56b0 | 2012-04-05 11:35:15 +0200 | [diff] [blame] | 2598 | kunmap_atomic(st->frag_data); |
Thomas Graf | 677e90e | 2005-06-23 20:59:51 -0700 | [diff] [blame] | 2599 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 2600 | EXPORT_SYMBOL(skb_abort_seq_read); |
Thomas Graf | 677e90e | 2005-06-23 20:59:51 -0700 | [diff] [blame] | 2601 | |
Thomas Graf | 3fc7e8a | 2005-06-23 21:00:17 -0700 | [diff] [blame] | 2602 | #define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb)) |
| 2603 | |
| 2604 | static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text, |
| 2605 | struct ts_config *conf, |
| 2606 | struct ts_state *state) |
| 2607 | { |
| 2608 | return skb_seq_read(offset, text, TS_SKB_CB(state)); |
| 2609 | } |
| 2610 | |
| 2611 | static void skb_ts_finish(struct ts_config *conf, struct ts_state *state) |
| 2612 | { |
| 2613 | skb_abort_seq_read(TS_SKB_CB(state)); |
| 2614 | } |
| 2615 | |
| 2616 | /** |
| 2617 | * skb_find_text - Find a text pattern in skb data |
| 2618 | * @skb: the buffer to look in |
| 2619 | * @from: search offset |
| 2620 | * @to: search limit |
| 2621 | * @config: textsearch configuration |
| 2622 | * @state: uninitialized textsearch state variable |
| 2623 | * |
| 2624 | * Finds a pattern in the skb data according to the specified |
| 2625 | * textsearch configuration. Use textsearch_next() to retrieve |
| 2626 | * subsequent occurrences of the pattern. Returns the offset |
| 2627 | * to the first occurrence or UINT_MAX if no match was found. |
| 2628 | */ |
| 2629 | unsigned int skb_find_text(struct sk_buff *skb, unsigned int from, |
| 2630 | unsigned int to, struct ts_config *config, |
| 2631 | struct ts_state *state) |
| 2632 | { |
Phil Oester | f72b948 | 2006-06-26 00:00:57 -0700 | [diff] [blame] | 2633 | unsigned int ret; |
| 2634 | |
Thomas Graf | 3fc7e8a | 2005-06-23 21:00:17 -0700 | [diff] [blame] | 2635 | config->get_next_block = skb_ts_get_next_block; |
| 2636 | config->finish = skb_ts_finish; |
| 2637 | |
| 2638 | skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state)); |
| 2639 | |
Phil Oester | f72b948 | 2006-06-26 00:00:57 -0700 | [diff] [blame] | 2640 | ret = textsearch_find(config, state); |
| 2641 | return (ret <= to - from ? ret : UINT_MAX); |
Thomas Graf | 3fc7e8a | 2005-06-23 21:00:17 -0700 | [diff] [blame] | 2642 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 2643 | EXPORT_SYMBOL(skb_find_text); |
Thomas Graf | 3fc7e8a | 2005-06-23 21:00:17 -0700 | [diff] [blame] | 2644 | |
Ananda Raju | e89e9cf | 2005-10-18 15:46:41 -0700 | [diff] [blame] | 2645 | /** |
Ben Hutchings | 2c53040 | 2012-07-10 10:55:09 +0000 | [diff] [blame] | 2646 | * skb_append_datato_frags - append the user data to a skb |
Ananda Raju | e89e9cf | 2005-10-18 15:46:41 -0700 | [diff] [blame] | 2647 | * @sk: sock structure |
| 2648 | * @skb: skb structure to be appened with user data. |
| 2649 | * @getfrag: call back function to be used for getting the user data |
| 2650 | * @from: pointer to user message iov |
| 2651 | * @length: length of the iov message |
| 2652 | * |
| 2653 | * Description: This procedure append the user data in the fragment part |
| 2654 | * of the skb if any page alloc fails user this procedure returns -ENOMEM |
| 2655 | */ |
| 2656 | int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb, |
Martin Waitz | dab9630 | 2005-12-05 13:40:12 -0800 | [diff] [blame] | 2657 | int (*getfrag)(void *from, char *to, int offset, |
Ananda Raju | e89e9cf | 2005-10-18 15:46:41 -0700 | [diff] [blame] | 2658 | int len, int odd, struct sk_buff *skb), |
| 2659 | void *from, int length) |
| 2660 | { |
Eric Dumazet | b211172 | 2012-12-28 06:06:37 +0000 | [diff] [blame] | 2661 | int frg_cnt = skb_shinfo(skb)->nr_frags; |
| 2662 | int copy; |
Ananda Raju | e89e9cf | 2005-10-18 15:46:41 -0700 | [diff] [blame] | 2663 | int offset = 0; |
| 2664 | int ret; |
Eric Dumazet | b211172 | 2012-12-28 06:06:37 +0000 | [diff] [blame] | 2665 | struct page_frag *pfrag = ¤t->task_frag; |
Ananda Raju | e89e9cf | 2005-10-18 15:46:41 -0700 | [diff] [blame] | 2666 | |
| 2667 | do { |
| 2668 | /* Return error if we don't have space for new frag */ |
Ananda Raju | e89e9cf | 2005-10-18 15:46:41 -0700 | [diff] [blame] | 2669 | if (frg_cnt >= MAX_SKB_FRAGS) |
Eric Dumazet | b211172 | 2012-12-28 06:06:37 +0000 | [diff] [blame] | 2670 | return -EMSGSIZE; |
Ananda Raju | e89e9cf | 2005-10-18 15:46:41 -0700 | [diff] [blame] | 2671 | |
Eric Dumazet | b211172 | 2012-12-28 06:06:37 +0000 | [diff] [blame] | 2672 | if (!sk_page_frag_refill(sk, pfrag)) |
Ananda Raju | e89e9cf | 2005-10-18 15:46:41 -0700 | [diff] [blame] | 2673 | return -ENOMEM; |
| 2674 | |
Ananda Raju | e89e9cf | 2005-10-18 15:46:41 -0700 | [diff] [blame] | 2675 | /* copy the user data to page */ |
Eric Dumazet | b211172 | 2012-12-28 06:06:37 +0000 | [diff] [blame] | 2676 | copy = min_t(int, length, pfrag->size - pfrag->offset); |
Ananda Raju | e89e9cf | 2005-10-18 15:46:41 -0700 | [diff] [blame] | 2677 | |
Eric Dumazet | b211172 | 2012-12-28 06:06:37 +0000 | [diff] [blame] | 2678 | ret = getfrag(from, page_address(pfrag->page) + pfrag->offset, |
| 2679 | offset, copy, 0, skb); |
Ananda Raju | e89e9cf | 2005-10-18 15:46:41 -0700 | [diff] [blame] | 2680 | if (ret < 0) |
| 2681 | return -EFAULT; |
| 2682 | |
| 2683 | /* copy was successful so update the size parameters */ |
Eric Dumazet | b211172 | 2012-12-28 06:06:37 +0000 | [diff] [blame] | 2684 | skb_fill_page_desc(skb, frg_cnt, pfrag->page, pfrag->offset, |
| 2685 | copy); |
| 2686 | frg_cnt++; |
| 2687 | pfrag->offset += copy; |
| 2688 | get_page(pfrag->page); |
| 2689 | |
| 2690 | skb->truesize += copy; |
| 2691 | atomic_add(copy, &sk->sk_wmem_alloc); |
Ananda Raju | e89e9cf | 2005-10-18 15:46:41 -0700 | [diff] [blame] | 2692 | skb->len += copy; |
| 2693 | skb->data_len += copy; |
| 2694 | offset += copy; |
| 2695 | length -= copy; |
| 2696 | |
| 2697 | } while (length > 0); |
| 2698 | |
| 2699 | return 0; |
| 2700 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 2701 | EXPORT_SYMBOL(skb_append_datato_frags); |
Ananda Raju | e89e9cf | 2005-10-18 15:46:41 -0700 | [diff] [blame] | 2702 | |
Herbert Xu | cbb042f9 | 2006-03-20 22:43:56 -0800 | [diff] [blame] | 2703 | /** |
| 2704 | * skb_pull_rcsum - pull skb and update receive checksum |
| 2705 | * @skb: buffer to update |
Herbert Xu | cbb042f9 | 2006-03-20 22:43:56 -0800 | [diff] [blame] | 2706 | * @len: length of data pulled |
| 2707 | * |
| 2708 | * This function performs an skb_pull on the packet and updates |
Urs Thuermann | fee54fa | 2008-02-12 22:03:25 -0800 | [diff] [blame] | 2709 | * the CHECKSUM_COMPLETE checksum. It should be used on |
Patrick McHardy | 84fa793 | 2006-08-29 16:44:56 -0700 | [diff] [blame] | 2710 | * receive path processing instead of skb_pull unless you know |
| 2711 | * that the checksum difference is zero (e.g., a valid IP header) |
| 2712 | * or you are setting ip_summed to CHECKSUM_NONE. |
Herbert Xu | cbb042f9 | 2006-03-20 22:43:56 -0800 | [diff] [blame] | 2713 | */ |
| 2714 | unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len) |
| 2715 | { |
| 2716 | BUG_ON(len > skb->len); |
| 2717 | skb->len -= len; |
| 2718 | BUG_ON(skb->len < skb->data_len); |
| 2719 | skb_postpull_rcsum(skb, skb->data, len); |
| 2720 | return skb->data += len; |
| 2721 | } |
Arnaldo Carvalho de Melo | f94691a | 2006-03-20 22:47:55 -0800 | [diff] [blame] | 2722 | EXPORT_SYMBOL_GPL(skb_pull_rcsum); |
| 2723 | |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2724 | /** |
| 2725 | * skb_segment - Perform protocol segmentation on skb. |
| 2726 | * @skb: buffer to segment |
Herbert Xu | 576a30e | 2006-06-27 13:22:38 -0700 | [diff] [blame] | 2727 | * @features: features for the output path (see dev->features) |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2728 | * |
| 2729 | * This function performs segmentation on the given skb. It returns |
Ben Hutchings | 4c821d7 | 2008-04-13 21:52:48 -0700 | [diff] [blame] | 2730 | * a pointer to the first in a list of new skbs for the segments. |
| 2731 | * In case of error it returns ERR_PTR(err). |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2732 | */ |
Michał Mirosław | c8f44af | 2011-11-15 15:29:55 +0000 | [diff] [blame] | 2733 | struct sk_buff *skb_segment(struct sk_buff *skb, netdev_features_t features) |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2734 | { |
| 2735 | struct sk_buff *segs = NULL; |
| 2736 | struct sk_buff *tail = NULL; |
Herbert Xu | 89319d38 | 2008-12-15 23:26:06 -0800 | [diff] [blame] | 2737 | struct sk_buff *fskb = skb_shinfo(skb)->frag_list; |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2738 | unsigned int mss = skb_shinfo(skb)->gso_size; |
Arnaldo Carvalho de Melo | 98e399f | 2007-03-19 15:33:04 -0700 | [diff] [blame] | 2739 | unsigned int doffset = skb->data - skb_mac_header(skb); |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2740 | unsigned int offset = doffset; |
Pravin B Shelar | 68c3316 | 2013-02-14 14:02:41 +0000 | [diff] [blame] | 2741 | unsigned int tnl_hlen = skb_tnl_header_len(skb); |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2742 | unsigned int headroom; |
| 2743 | unsigned int len; |
Michał Mirosław | 04ed3e7 | 2011-01-24 15:32:47 -0800 | [diff] [blame] | 2744 | int sg = !!(features & NETIF_F_SG); |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2745 | int nfrags = skb_shinfo(skb)->nr_frags; |
| 2746 | int err = -ENOMEM; |
| 2747 | int i = 0; |
| 2748 | int pos; |
| 2749 | |
| 2750 | __skb_push(skb, doffset); |
| 2751 | headroom = skb_headroom(skb); |
| 2752 | pos = skb_headlen(skb); |
| 2753 | |
| 2754 | do { |
| 2755 | struct sk_buff *nskb; |
| 2756 | skb_frag_t *frag; |
Herbert Xu | c8884ed | 2006-10-29 15:59:41 -0800 | [diff] [blame] | 2757 | int hsize; |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2758 | int size; |
| 2759 | |
| 2760 | len = skb->len - offset; |
| 2761 | if (len > mss) |
| 2762 | len = mss; |
| 2763 | |
| 2764 | hsize = skb_headlen(skb) - offset; |
| 2765 | if (hsize < 0) |
| 2766 | hsize = 0; |
Herbert Xu | c8884ed | 2006-10-29 15:59:41 -0800 | [diff] [blame] | 2767 | if (hsize > len || !sg) |
| 2768 | hsize = len; |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2769 | |
Herbert Xu | 89319d38 | 2008-12-15 23:26:06 -0800 | [diff] [blame] | 2770 | if (!hsize && i >= nfrags) { |
| 2771 | BUG_ON(fskb->len != len); |
| 2772 | |
| 2773 | pos += len; |
| 2774 | nskb = skb_clone(fskb, GFP_ATOMIC); |
| 2775 | fskb = fskb->next; |
| 2776 | |
| 2777 | if (unlikely(!nskb)) |
| 2778 | goto err; |
| 2779 | |
Alexander Duyck | ec47ea8 | 2012-05-04 14:26:56 +0000 | [diff] [blame] | 2780 | hsize = skb_end_offset(nskb); |
Herbert Xu | 89319d38 | 2008-12-15 23:26:06 -0800 | [diff] [blame] | 2781 | if (skb_cow_head(nskb, doffset + headroom)) { |
| 2782 | kfree_skb(nskb); |
| 2783 | goto err; |
| 2784 | } |
| 2785 | |
Alexander Duyck | ec47ea8 | 2012-05-04 14:26:56 +0000 | [diff] [blame] | 2786 | nskb->truesize += skb_end_offset(nskb) - hsize; |
Herbert Xu | 89319d38 | 2008-12-15 23:26:06 -0800 | [diff] [blame] | 2787 | skb_release_head_state(nskb); |
| 2788 | __skb_push(nskb, doffset); |
| 2789 | } else { |
Mel Gorman | c93bdd0 | 2012-07-31 16:44:19 -0700 | [diff] [blame] | 2790 | nskb = __alloc_skb(hsize + doffset + headroom, |
| 2791 | GFP_ATOMIC, skb_alloc_rx_flag(skb), |
| 2792 | NUMA_NO_NODE); |
Herbert Xu | 89319d38 | 2008-12-15 23:26:06 -0800 | [diff] [blame] | 2793 | |
| 2794 | if (unlikely(!nskb)) |
| 2795 | goto err; |
| 2796 | |
| 2797 | skb_reserve(nskb, headroom); |
| 2798 | __skb_put(nskb, doffset); |
| 2799 | } |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2800 | |
| 2801 | if (segs) |
| 2802 | tail->next = nskb; |
| 2803 | else |
| 2804 | segs = nskb; |
| 2805 | tail = nskb; |
| 2806 | |
Herbert Xu | 6f85a12 | 2008-08-15 14:55:02 -0700 | [diff] [blame] | 2807 | __copy_skb_header(nskb, skb); |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2808 | nskb->mac_len = skb->mac_len; |
| 2809 | |
Eric Dumazet | 3d3be43 | 2010-09-01 00:50:51 +0000 | [diff] [blame] | 2810 | /* nskb and skb might have different headroom */ |
| 2811 | if (nskb->ip_summed == CHECKSUM_PARTIAL) |
| 2812 | nskb->csum_start += skb_headroom(nskb) - headroom; |
| 2813 | |
Arnaldo Carvalho de Melo | 459a98e | 2007-03-19 15:30:44 -0700 | [diff] [blame] | 2814 | skb_reset_mac_header(nskb); |
Arnaldo Carvalho de Melo | ddc7b8e | 2007-03-15 21:42:27 -0300 | [diff] [blame] | 2815 | skb_set_network_header(nskb, skb->mac_len); |
Arnaldo Carvalho de Melo | b0e380b | 2007-04-10 21:21:55 -0700 | [diff] [blame] | 2816 | nskb->transport_header = (nskb->network_header + |
| 2817 | skb_network_header_len(skb)); |
Pravin B Shelar | 68c3316 | 2013-02-14 14:02:41 +0000 | [diff] [blame] | 2818 | |
| 2819 | skb_copy_from_linear_data_offset(skb, -tnl_hlen, |
| 2820 | nskb->data - tnl_hlen, |
| 2821 | doffset + tnl_hlen); |
Herbert Xu | 89319d38 | 2008-12-15 23:26:06 -0800 | [diff] [blame] | 2822 | |
Herbert Xu | 2f18185 | 2009-03-28 23:39:18 -0700 | [diff] [blame] | 2823 | if (fskb != skb_shinfo(skb)->frag_list) |
Herbert Xu | 89319d38 | 2008-12-15 23:26:06 -0800 | [diff] [blame] | 2824 | continue; |
| 2825 | |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2826 | if (!sg) { |
Herbert Xu | 6f85a12 | 2008-08-15 14:55:02 -0700 | [diff] [blame] | 2827 | nskb->ip_summed = CHECKSUM_NONE; |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2828 | nskb->csum = skb_copy_and_csum_bits(skb, offset, |
| 2829 | skb_put(nskb, len), |
| 2830 | len, 0); |
| 2831 | continue; |
| 2832 | } |
| 2833 | |
| 2834 | frag = skb_shinfo(nskb)->frags; |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2835 | |
Arnaldo Carvalho de Melo | d626f62 | 2007-03-27 18:55:52 -0300 | [diff] [blame] | 2836 | skb_copy_from_linear_data_offset(skb, offset, |
| 2837 | skb_put(nskb, hsize), hsize); |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2838 | |
Pravin B Shelar | c9af6db | 2013-02-11 09:27:41 +0000 | [diff] [blame] | 2839 | skb_shinfo(nskb)->tx_flags = skb_shinfo(skb)->tx_flags & SKBTX_SHARED_FRAG; |
Eric Dumazet | cef401d | 2013-01-25 20:34:37 +0000 | [diff] [blame] | 2840 | |
Herbert Xu | 89319d38 | 2008-12-15 23:26:06 -0800 | [diff] [blame] | 2841 | while (pos < offset + len && i < nfrags) { |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2842 | *frag = skb_shinfo(skb)->frags[i]; |
Ian Campbell | ea2ab69 | 2011-08-22 23:44:58 +0000 | [diff] [blame] | 2843 | __skb_frag_ref(frag); |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 2844 | size = skb_frag_size(frag); |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2845 | |
| 2846 | if (pos < offset) { |
| 2847 | frag->page_offset += offset - pos; |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 2848 | skb_frag_size_sub(frag, offset - pos); |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2849 | } |
| 2850 | |
Herbert Xu | 89319d38 | 2008-12-15 23:26:06 -0800 | [diff] [blame] | 2851 | skb_shinfo(nskb)->nr_frags++; |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2852 | |
| 2853 | if (pos + size <= offset + len) { |
| 2854 | i++; |
| 2855 | pos += size; |
| 2856 | } else { |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 2857 | skb_frag_size_sub(frag, pos + size - (offset + len)); |
Herbert Xu | 89319d38 | 2008-12-15 23:26:06 -0800 | [diff] [blame] | 2858 | goto skip_fraglist; |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2859 | } |
| 2860 | |
| 2861 | frag++; |
| 2862 | } |
| 2863 | |
Herbert Xu | 89319d38 | 2008-12-15 23:26:06 -0800 | [diff] [blame] | 2864 | if (pos < offset + len) { |
| 2865 | struct sk_buff *fskb2 = fskb; |
| 2866 | |
| 2867 | BUG_ON(pos + fskb->len != offset + len); |
| 2868 | |
| 2869 | pos += fskb->len; |
| 2870 | fskb = fskb->next; |
| 2871 | |
| 2872 | if (fskb2->next) { |
| 2873 | fskb2 = skb_clone(fskb2, GFP_ATOMIC); |
| 2874 | if (!fskb2) |
| 2875 | goto err; |
| 2876 | } else |
| 2877 | skb_get(fskb2); |
| 2878 | |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 2879 | SKB_FRAG_ASSERT(nskb); |
Herbert Xu | 89319d38 | 2008-12-15 23:26:06 -0800 | [diff] [blame] | 2880 | skb_shinfo(nskb)->frag_list = fskb2; |
| 2881 | } |
| 2882 | |
| 2883 | skip_fraglist: |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2884 | nskb->data_len = len - hsize; |
| 2885 | nskb->len += nskb->data_len; |
| 2886 | nskb->truesize += nskb->data_len; |
| 2887 | } while ((offset += len) < skb->len); |
| 2888 | |
| 2889 | return segs; |
| 2890 | |
| 2891 | err: |
| 2892 | while ((skb = segs)) { |
| 2893 | segs = skb->next; |
Patrick McHardy | b08d584 | 2007-02-27 09:57:37 -0800 | [diff] [blame] | 2894 | kfree_skb(skb); |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2895 | } |
| 2896 | return ERR_PTR(err); |
| 2897 | } |
Herbert Xu | f4c50d9 | 2006-06-22 03:02:40 -0700 | [diff] [blame] | 2898 | EXPORT_SYMBOL_GPL(skb_segment); |
| 2899 | |
Herbert Xu | 71d93b3 | 2008-12-15 23:42:33 -0800 | [diff] [blame] | 2900 | int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb) |
| 2901 | { |
| 2902 | struct sk_buff *p = *head; |
| 2903 | struct sk_buff *nskb; |
Herbert Xu | 9aaa156 | 2009-05-26 18:50:33 +0000 | [diff] [blame] | 2904 | struct skb_shared_info *skbinfo = skb_shinfo(skb); |
| 2905 | struct skb_shared_info *pinfo = skb_shinfo(p); |
Herbert Xu | 71d93b3 | 2008-12-15 23:42:33 -0800 | [diff] [blame] | 2906 | unsigned int headroom; |
Herbert Xu | 8691173 | 2009-01-29 14:19:50 +0000 | [diff] [blame] | 2907 | unsigned int len = skb_gro_len(skb); |
Herbert Xu | 67147ba | 2009-05-26 18:50:22 +0000 | [diff] [blame] | 2908 | unsigned int offset = skb_gro_offset(skb); |
| 2909 | unsigned int headlen = skb_headlen(skb); |
Eric Dumazet | 715dc1f | 2012-05-02 23:33:21 +0000 | [diff] [blame] | 2910 | unsigned int delta_truesize; |
Herbert Xu | 71d93b3 | 2008-12-15 23:42:33 -0800 | [diff] [blame] | 2911 | |
Herbert Xu | 8691173 | 2009-01-29 14:19:50 +0000 | [diff] [blame] | 2912 | if (p->len + len >= 65536) |
Herbert Xu | 71d93b3 | 2008-12-15 23:42:33 -0800 | [diff] [blame] | 2913 | return -E2BIG; |
| 2914 | |
Herbert Xu | 9aaa156 | 2009-05-26 18:50:33 +0000 | [diff] [blame] | 2915 | if (pinfo->frag_list) |
Herbert Xu | 71d93b3 | 2008-12-15 23:42:33 -0800 | [diff] [blame] | 2916 | goto merge; |
Herbert Xu | 67147ba | 2009-05-26 18:50:22 +0000 | [diff] [blame] | 2917 | else if (headlen <= offset) { |
Herbert Xu | 42da699 | 2009-05-26 18:50:19 +0000 | [diff] [blame] | 2918 | skb_frag_t *frag; |
Herbert Xu | 66e92fc | 2009-05-26 18:50:32 +0000 | [diff] [blame] | 2919 | skb_frag_t *frag2; |
Herbert Xu | 9aaa156 | 2009-05-26 18:50:33 +0000 | [diff] [blame] | 2920 | int i = skbinfo->nr_frags; |
| 2921 | int nr_frags = pinfo->nr_frags + i; |
Herbert Xu | 42da699 | 2009-05-26 18:50:19 +0000 | [diff] [blame] | 2922 | |
Herbert Xu | 66e92fc | 2009-05-26 18:50:32 +0000 | [diff] [blame] | 2923 | offset -= headlen; |
| 2924 | |
| 2925 | if (nr_frags > MAX_SKB_FRAGS) |
Herbert Xu | 81705ad | 2009-01-29 14:19:51 +0000 | [diff] [blame] | 2926 | return -E2BIG; |
| 2927 | |
Herbert Xu | 9aaa156 | 2009-05-26 18:50:33 +0000 | [diff] [blame] | 2928 | pinfo->nr_frags = nr_frags; |
| 2929 | skbinfo->nr_frags = 0; |
Herbert Xu | f557206 | 2009-01-14 20:40:03 -0800 | [diff] [blame] | 2930 | |
Herbert Xu | 9aaa156 | 2009-05-26 18:50:33 +0000 | [diff] [blame] | 2931 | frag = pinfo->frags + nr_frags; |
| 2932 | frag2 = skbinfo->frags + i; |
Herbert Xu | 66e92fc | 2009-05-26 18:50:32 +0000 | [diff] [blame] | 2933 | do { |
| 2934 | *--frag = *--frag2; |
| 2935 | } while (--i); |
| 2936 | |
| 2937 | frag->page_offset += offset; |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 2938 | skb_frag_size_sub(frag, offset); |
Herbert Xu | 66e92fc | 2009-05-26 18:50:32 +0000 | [diff] [blame] | 2939 | |
Eric Dumazet | 715dc1f | 2012-05-02 23:33:21 +0000 | [diff] [blame] | 2940 | /* all fragments truesize : remove (head size + sk_buff) */ |
Alexander Duyck | ec47ea8 | 2012-05-04 14:26:56 +0000 | [diff] [blame] | 2941 | delta_truesize = skb->truesize - |
| 2942 | SKB_TRUESIZE(skb_end_offset(skb)); |
Eric Dumazet | 715dc1f | 2012-05-02 23:33:21 +0000 | [diff] [blame] | 2943 | |
Herbert Xu | f557206 | 2009-01-14 20:40:03 -0800 | [diff] [blame] | 2944 | skb->truesize -= skb->data_len; |
| 2945 | skb->len -= skb->data_len; |
| 2946 | skb->data_len = 0; |
| 2947 | |
Eric Dumazet | 715dc1f | 2012-05-02 23:33:21 +0000 | [diff] [blame] | 2948 | NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE; |
Herbert Xu | 5d38a07 | 2009-01-04 16:13:40 -0800 | [diff] [blame] | 2949 | goto done; |
Eric Dumazet | d7e8883 | 2012-04-30 08:10:34 +0000 | [diff] [blame] | 2950 | } else if (skb->head_frag) { |
| 2951 | int nr_frags = pinfo->nr_frags; |
| 2952 | skb_frag_t *frag = pinfo->frags + nr_frags; |
| 2953 | struct page *page = virt_to_head_page(skb->head); |
| 2954 | unsigned int first_size = headlen - offset; |
| 2955 | unsigned int first_offset; |
| 2956 | |
| 2957 | if (nr_frags + 1 + skbinfo->nr_frags > MAX_SKB_FRAGS) |
| 2958 | return -E2BIG; |
| 2959 | |
| 2960 | first_offset = skb->data - |
| 2961 | (unsigned char *)page_address(page) + |
| 2962 | offset; |
| 2963 | |
| 2964 | pinfo->nr_frags = nr_frags + 1 + skbinfo->nr_frags; |
| 2965 | |
| 2966 | frag->page.p = page; |
| 2967 | frag->page_offset = first_offset; |
| 2968 | skb_frag_size_set(frag, first_size); |
| 2969 | |
| 2970 | memcpy(frag + 1, skbinfo->frags, sizeof(*frag) * skbinfo->nr_frags); |
| 2971 | /* We dont need to clear skbinfo->nr_frags here */ |
| 2972 | |
Eric Dumazet | 715dc1f | 2012-05-02 23:33:21 +0000 | [diff] [blame] | 2973 | delta_truesize = skb->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff)); |
Eric Dumazet | d7e8883 | 2012-04-30 08:10:34 +0000 | [diff] [blame] | 2974 | NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE_STOLEN_HEAD; |
| 2975 | goto done; |
Herbert Xu | 69c0cab | 2009-11-17 05:18:18 -0800 | [diff] [blame] | 2976 | } else if (skb_gro_len(p) != pinfo->gso_size) |
| 2977 | return -E2BIG; |
Herbert Xu | 71d93b3 | 2008-12-15 23:42:33 -0800 | [diff] [blame] | 2978 | |
| 2979 | headroom = skb_headroom(p); |
Eric Dumazet | 3d3be43 | 2010-09-01 00:50:51 +0000 | [diff] [blame] | 2980 | nskb = alloc_skb(headroom + skb_gro_offset(p), GFP_ATOMIC); |
Herbert Xu | 71d93b3 | 2008-12-15 23:42:33 -0800 | [diff] [blame] | 2981 | if (unlikely(!nskb)) |
| 2982 | return -ENOMEM; |
| 2983 | |
| 2984 | __copy_skb_header(nskb, p); |
| 2985 | nskb->mac_len = p->mac_len; |
| 2986 | |
| 2987 | skb_reserve(nskb, headroom); |
Herbert Xu | 8691173 | 2009-01-29 14:19:50 +0000 | [diff] [blame] | 2988 | __skb_put(nskb, skb_gro_offset(p)); |
Herbert Xu | 71d93b3 | 2008-12-15 23:42:33 -0800 | [diff] [blame] | 2989 | |
Herbert Xu | 8691173 | 2009-01-29 14:19:50 +0000 | [diff] [blame] | 2990 | skb_set_mac_header(nskb, skb_mac_header(p) - p->data); |
Herbert Xu | 71d93b3 | 2008-12-15 23:42:33 -0800 | [diff] [blame] | 2991 | skb_set_network_header(nskb, skb_network_offset(p)); |
| 2992 | skb_set_transport_header(nskb, skb_transport_offset(p)); |
| 2993 | |
Herbert Xu | 8691173 | 2009-01-29 14:19:50 +0000 | [diff] [blame] | 2994 | __skb_pull(p, skb_gro_offset(p)); |
| 2995 | memcpy(skb_mac_header(nskb), skb_mac_header(p), |
| 2996 | p->data - skb_mac_header(p)); |
Herbert Xu | 71d93b3 | 2008-12-15 23:42:33 -0800 | [diff] [blame] | 2997 | |
Herbert Xu | 71d93b3 | 2008-12-15 23:42:33 -0800 | [diff] [blame] | 2998 | skb_shinfo(nskb)->frag_list = p; |
Herbert Xu | 9aaa156 | 2009-05-26 18:50:33 +0000 | [diff] [blame] | 2999 | skb_shinfo(nskb)->gso_size = pinfo->gso_size; |
Herbert Xu | 622e0ca | 2010-05-20 23:07:56 -0700 | [diff] [blame] | 3000 | pinfo->gso_size = 0; |
Herbert Xu | 71d93b3 | 2008-12-15 23:42:33 -0800 | [diff] [blame] | 3001 | skb_header_release(p); |
Eric Dumazet | c3c7c25 | 2012-12-06 13:54:59 +0000 | [diff] [blame] | 3002 | NAPI_GRO_CB(nskb)->last = p; |
Herbert Xu | 71d93b3 | 2008-12-15 23:42:33 -0800 | [diff] [blame] | 3003 | |
| 3004 | nskb->data_len += p->len; |
Eric Dumazet | de8261c | 2012-02-13 04:09:20 +0000 | [diff] [blame] | 3005 | nskb->truesize += p->truesize; |
Herbert Xu | 71d93b3 | 2008-12-15 23:42:33 -0800 | [diff] [blame] | 3006 | nskb->len += p->len; |
| 3007 | |
| 3008 | *head = nskb; |
| 3009 | nskb->next = p->next; |
| 3010 | p->next = NULL; |
| 3011 | |
| 3012 | p = nskb; |
| 3013 | |
| 3014 | merge: |
Eric Dumazet | 715dc1f | 2012-05-02 23:33:21 +0000 | [diff] [blame] | 3015 | delta_truesize = skb->truesize; |
Herbert Xu | 67147ba | 2009-05-26 18:50:22 +0000 | [diff] [blame] | 3016 | if (offset > headlen) { |
Michal Schmidt | d1dc7ab | 2011-01-24 12:08:48 +0000 | [diff] [blame] | 3017 | unsigned int eat = offset - headlen; |
| 3018 | |
| 3019 | skbinfo->frags[0].page_offset += eat; |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 3020 | skb_frag_size_sub(&skbinfo->frags[0], eat); |
Michal Schmidt | d1dc7ab | 2011-01-24 12:08:48 +0000 | [diff] [blame] | 3021 | skb->data_len -= eat; |
| 3022 | skb->len -= eat; |
Herbert Xu | 67147ba | 2009-05-26 18:50:22 +0000 | [diff] [blame] | 3023 | offset = headlen; |
Herbert Xu | 5603502 | 2009-02-05 21:26:52 -0800 | [diff] [blame] | 3024 | } |
| 3025 | |
Herbert Xu | 67147ba | 2009-05-26 18:50:22 +0000 | [diff] [blame] | 3026 | __skb_pull(skb, offset); |
Herbert Xu | 5603502 | 2009-02-05 21:26:52 -0800 | [diff] [blame] | 3027 | |
Eric Dumazet | c3c7c25 | 2012-12-06 13:54:59 +0000 | [diff] [blame] | 3028 | NAPI_GRO_CB(p)->last->next = skb; |
| 3029 | NAPI_GRO_CB(p)->last = skb; |
Herbert Xu | 71d93b3 | 2008-12-15 23:42:33 -0800 | [diff] [blame] | 3030 | skb_header_release(skb); |
| 3031 | |
Herbert Xu | 5d38a07 | 2009-01-04 16:13:40 -0800 | [diff] [blame] | 3032 | done: |
| 3033 | NAPI_GRO_CB(p)->count++; |
Herbert Xu | 37fe473 | 2009-01-17 19:48:13 +0000 | [diff] [blame] | 3034 | p->data_len += len; |
Eric Dumazet | 715dc1f | 2012-05-02 23:33:21 +0000 | [diff] [blame] | 3035 | p->truesize += delta_truesize; |
Herbert Xu | 37fe473 | 2009-01-17 19:48:13 +0000 | [diff] [blame] | 3036 | p->len += len; |
Herbert Xu | 71d93b3 | 2008-12-15 23:42:33 -0800 | [diff] [blame] | 3037 | |
| 3038 | NAPI_GRO_CB(skb)->same_flow = 1; |
| 3039 | return 0; |
| 3040 | } |
| 3041 | EXPORT_SYMBOL_GPL(skb_gro_receive); |
| 3042 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3043 | void __init skb_init(void) |
| 3044 | { |
| 3045 | skbuff_head_cache = kmem_cache_create("skbuff_head_cache", |
| 3046 | sizeof(struct sk_buff), |
| 3047 | 0, |
Alexey Dobriyan | e5d679f33 | 2006-08-26 19:25:52 -0700 | [diff] [blame] | 3048 | SLAB_HWCACHE_ALIGN|SLAB_PANIC, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 3049 | NULL); |
David S. Miller | d179cd1 | 2005-08-17 14:57:30 -0700 | [diff] [blame] | 3050 | skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache", |
| 3051 | (2*sizeof(struct sk_buff)) + |
| 3052 | sizeof(atomic_t), |
| 3053 | 0, |
Alexey Dobriyan | e5d679f33 | 2006-08-26 19:25:52 -0700 | [diff] [blame] | 3054 | SLAB_HWCACHE_ALIGN|SLAB_PANIC, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 3055 | NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3056 | } |
| 3057 | |
David Howells | 716ea3a | 2007-04-02 20:19:53 -0700 | [diff] [blame] | 3058 | /** |
| 3059 | * skb_to_sgvec - Fill a scatter-gather list from a socket buffer |
| 3060 | * @skb: Socket buffer containing the buffers to be mapped |
| 3061 | * @sg: The scatter-gather list to map into |
| 3062 | * @offset: The offset into the buffer's contents to start mapping |
| 3063 | * @len: Length of buffer space to be mapped |
| 3064 | * |
| 3065 | * Fill the specified scatter-gather list with mappings/pointers into a |
| 3066 | * region of the buffer space attached to a socket buffer. |
| 3067 | */ |
David S. Miller | 51c739d | 2007-10-30 21:29:29 -0700 | [diff] [blame] | 3068 | static int |
| 3069 | __skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len) |
David Howells | 716ea3a | 2007-04-02 20:19:53 -0700 | [diff] [blame] | 3070 | { |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 3071 | int start = skb_headlen(skb); |
| 3072 | int i, copy = start - offset; |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 3073 | struct sk_buff *frag_iter; |
David Howells | 716ea3a | 2007-04-02 20:19:53 -0700 | [diff] [blame] | 3074 | int elt = 0; |
| 3075 | |
| 3076 | if (copy > 0) { |
| 3077 | if (copy > len) |
| 3078 | copy = len; |
Jens Axboe | 642f149 | 2007-10-24 11:20:47 +0200 | [diff] [blame] | 3079 | sg_set_buf(sg, skb->data + offset, copy); |
David Howells | 716ea3a | 2007-04-02 20:19:53 -0700 | [diff] [blame] | 3080 | elt++; |
| 3081 | if ((len -= copy) == 0) |
| 3082 | return elt; |
| 3083 | offset += copy; |
| 3084 | } |
| 3085 | |
| 3086 | for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) { |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 3087 | int end; |
David Howells | 716ea3a | 2007-04-02 20:19:53 -0700 | [diff] [blame] | 3088 | |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 3089 | WARN_ON(start > offset + len); |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 3090 | |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 3091 | end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]); |
David Howells | 716ea3a | 2007-04-02 20:19:53 -0700 | [diff] [blame] | 3092 | if ((copy = end - offset) > 0) { |
| 3093 | skb_frag_t *frag = &skb_shinfo(skb)->frags[i]; |
| 3094 | |
| 3095 | if (copy > len) |
| 3096 | copy = len; |
Ian Campbell | ea2ab69 | 2011-08-22 23:44:58 +0000 | [diff] [blame] | 3097 | sg_set_page(&sg[elt], skb_frag_page(frag), copy, |
Jens Axboe | 642f149 | 2007-10-24 11:20:47 +0200 | [diff] [blame] | 3098 | frag->page_offset+offset-start); |
David Howells | 716ea3a | 2007-04-02 20:19:53 -0700 | [diff] [blame] | 3099 | elt++; |
| 3100 | if (!(len -= copy)) |
| 3101 | return elt; |
| 3102 | offset += copy; |
| 3103 | } |
David S. Miller | 1a028e5 | 2007-04-27 15:21:23 -0700 | [diff] [blame] | 3104 | start = end; |
David Howells | 716ea3a | 2007-04-02 20:19:53 -0700 | [diff] [blame] | 3105 | } |
| 3106 | |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 3107 | skb_walk_frags(skb, frag_iter) { |
| 3108 | int end; |
David Howells | 716ea3a | 2007-04-02 20:19:53 -0700 | [diff] [blame] | 3109 | |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 3110 | WARN_ON(start > offset + len); |
David Howells | 716ea3a | 2007-04-02 20:19:53 -0700 | [diff] [blame] | 3111 | |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 3112 | end = start + frag_iter->len; |
| 3113 | if ((copy = end - offset) > 0) { |
| 3114 | if (copy > len) |
| 3115 | copy = len; |
| 3116 | elt += __skb_to_sgvec(frag_iter, sg+elt, offset - start, |
| 3117 | copy); |
| 3118 | if ((len -= copy) == 0) |
| 3119 | return elt; |
| 3120 | offset += copy; |
David Howells | 716ea3a | 2007-04-02 20:19:53 -0700 | [diff] [blame] | 3121 | } |
David S. Miller | fbb398a | 2009-06-09 00:18:59 -0700 | [diff] [blame] | 3122 | start = end; |
David Howells | 716ea3a | 2007-04-02 20:19:53 -0700 | [diff] [blame] | 3123 | } |
| 3124 | BUG_ON(len); |
| 3125 | return elt; |
| 3126 | } |
| 3127 | |
David S. Miller | 51c739d | 2007-10-30 21:29:29 -0700 | [diff] [blame] | 3128 | int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len) |
| 3129 | { |
| 3130 | int nsg = __skb_to_sgvec(skb, sg, offset, len); |
| 3131 | |
Jens Axboe | c46f233 | 2007-10-31 12:06:37 +0100 | [diff] [blame] | 3132 | sg_mark_end(&sg[nsg - 1]); |
David S. Miller | 51c739d | 2007-10-30 21:29:29 -0700 | [diff] [blame] | 3133 | |
| 3134 | return nsg; |
| 3135 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 3136 | EXPORT_SYMBOL_GPL(skb_to_sgvec); |
David S. Miller | 51c739d | 2007-10-30 21:29:29 -0700 | [diff] [blame] | 3137 | |
David Howells | 716ea3a | 2007-04-02 20:19:53 -0700 | [diff] [blame] | 3138 | /** |
| 3139 | * skb_cow_data - Check that a socket buffer's data buffers are writable |
| 3140 | * @skb: The socket buffer to check. |
| 3141 | * @tailbits: Amount of trailing space to be added |
| 3142 | * @trailer: Returned pointer to the skb where the @tailbits space begins |
| 3143 | * |
| 3144 | * Make sure that the data buffers attached to a socket buffer are |
| 3145 | * writable. If they are not, private copies are made of the data buffers |
| 3146 | * and the socket buffer is set to use these instead. |
| 3147 | * |
| 3148 | * If @tailbits is given, make sure that there is space to write @tailbits |
| 3149 | * bytes of data beyond current end of socket buffer. @trailer will be |
| 3150 | * set to point to the skb in which this space begins. |
| 3151 | * |
| 3152 | * The number of scatterlist elements required to completely map the |
| 3153 | * COW'd and extended socket buffer will be returned. |
| 3154 | */ |
| 3155 | int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer) |
| 3156 | { |
| 3157 | int copyflag; |
| 3158 | int elt; |
| 3159 | struct sk_buff *skb1, **skb_p; |
| 3160 | |
| 3161 | /* If skb is cloned or its head is paged, reallocate |
| 3162 | * head pulling out all the pages (pages are considered not writable |
| 3163 | * at the moment even if they are anonymous). |
| 3164 | */ |
| 3165 | if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) && |
| 3166 | __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL) |
| 3167 | return -ENOMEM; |
| 3168 | |
| 3169 | /* Easy case. Most of packets will go this way. */ |
David S. Miller | 21dc330 | 2010-08-23 00:13:46 -0700 | [diff] [blame] | 3170 | if (!skb_has_frag_list(skb)) { |
David Howells | 716ea3a | 2007-04-02 20:19:53 -0700 | [diff] [blame] | 3171 | /* A little of trouble, not enough of space for trailer. |
| 3172 | * This should not happen, when stack is tuned to generate |
| 3173 | * good frames. OK, on miss we reallocate and reserve even more |
| 3174 | * space, 128 bytes is fair. */ |
| 3175 | |
| 3176 | if (skb_tailroom(skb) < tailbits && |
| 3177 | pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC)) |
| 3178 | return -ENOMEM; |
| 3179 | |
| 3180 | /* Voila! */ |
| 3181 | *trailer = skb; |
| 3182 | return 1; |
| 3183 | } |
| 3184 | |
| 3185 | /* Misery. We are in troubles, going to mincer fragments... */ |
| 3186 | |
| 3187 | elt = 1; |
| 3188 | skb_p = &skb_shinfo(skb)->frag_list; |
| 3189 | copyflag = 0; |
| 3190 | |
| 3191 | while ((skb1 = *skb_p) != NULL) { |
| 3192 | int ntail = 0; |
| 3193 | |
| 3194 | /* The fragment is partially pulled by someone, |
| 3195 | * this can happen on input. Copy it and everything |
| 3196 | * after it. */ |
| 3197 | |
| 3198 | if (skb_shared(skb1)) |
| 3199 | copyflag = 1; |
| 3200 | |
| 3201 | /* If the skb is the last, worry about trailer. */ |
| 3202 | |
| 3203 | if (skb1->next == NULL && tailbits) { |
| 3204 | if (skb_shinfo(skb1)->nr_frags || |
David S. Miller | 21dc330 | 2010-08-23 00:13:46 -0700 | [diff] [blame] | 3205 | skb_has_frag_list(skb1) || |
David Howells | 716ea3a | 2007-04-02 20:19:53 -0700 | [diff] [blame] | 3206 | skb_tailroom(skb1) < tailbits) |
| 3207 | ntail = tailbits + 128; |
| 3208 | } |
| 3209 | |
| 3210 | if (copyflag || |
| 3211 | skb_cloned(skb1) || |
| 3212 | ntail || |
| 3213 | skb_shinfo(skb1)->nr_frags || |
David S. Miller | 21dc330 | 2010-08-23 00:13:46 -0700 | [diff] [blame] | 3214 | skb_has_frag_list(skb1)) { |
David Howells | 716ea3a | 2007-04-02 20:19:53 -0700 | [diff] [blame] | 3215 | struct sk_buff *skb2; |
| 3216 | |
| 3217 | /* Fuck, we are miserable poor guys... */ |
| 3218 | if (ntail == 0) |
| 3219 | skb2 = skb_copy(skb1, GFP_ATOMIC); |
| 3220 | else |
| 3221 | skb2 = skb_copy_expand(skb1, |
| 3222 | skb_headroom(skb1), |
| 3223 | ntail, |
| 3224 | GFP_ATOMIC); |
| 3225 | if (unlikely(skb2 == NULL)) |
| 3226 | return -ENOMEM; |
| 3227 | |
| 3228 | if (skb1->sk) |
| 3229 | skb_set_owner_w(skb2, skb1->sk); |
| 3230 | |
| 3231 | /* Looking around. Are we still alive? |
| 3232 | * OK, link new skb, drop old one */ |
| 3233 | |
| 3234 | skb2->next = skb1->next; |
| 3235 | *skb_p = skb2; |
| 3236 | kfree_skb(skb1); |
| 3237 | skb1 = skb2; |
| 3238 | } |
| 3239 | elt++; |
| 3240 | *trailer = skb1; |
| 3241 | skb_p = &skb1->next; |
| 3242 | } |
| 3243 | |
| 3244 | return elt; |
| 3245 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 3246 | EXPORT_SYMBOL_GPL(skb_cow_data); |
David Howells | 716ea3a | 2007-04-02 20:19:53 -0700 | [diff] [blame] | 3247 | |
Eric Dumazet | b1faf56 | 2010-05-31 23:44:05 -0700 | [diff] [blame] | 3248 | static void sock_rmem_free(struct sk_buff *skb) |
| 3249 | { |
| 3250 | struct sock *sk = skb->sk; |
| 3251 | |
| 3252 | atomic_sub(skb->truesize, &sk->sk_rmem_alloc); |
| 3253 | } |
| 3254 | |
| 3255 | /* |
| 3256 | * Note: We dont mem charge error packets (no sk_forward_alloc changes) |
| 3257 | */ |
| 3258 | int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb) |
| 3259 | { |
Eric Dumazet | 110c433 | 2012-04-06 10:49:10 +0200 | [diff] [blame] | 3260 | int len = skb->len; |
| 3261 | |
Eric Dumazet | b1faf56 | 2010-05-31 23:44:05 -0700 | [diff] [blame] | 3262 | if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >= |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 3263 | (unsigned int)sk->sk_rcvbuf) |
Eric Dumazet | b1faf56 | 2010-05-31 23:44:05 -0700 | [diff] [blame] | 3264 | return -ENOMEM; |
| 3265 | |
| 3266 | skb_orphan(skb); |
| 3267 | skb->sk = sk; |
| 3268 | skb->destructor = sock_rmem_free; |
| 3269 | atomic_add(skb->truesize, &sk->sk_rmem_alloc); |
| 3270 | |
Eric Dumazet | abb57ea | 2011-05-18 02:21:31 -0400 | [diff] [blame] | 3271 | /* before exiting rcu section, make sure dst is refcounted */ |
| 3272 | skb_dst_force(skb); |
| 3273 | |
Eric Dumazet | b1faf56 | 2010-05-31 23:44:05 -0700 | [diff] [blame] | 3274 | skb_queue_tail(&sk->sk_error_queue, skb); |
| 3275 | if (!sock_flag(sk, SOCK_DEAD)) |
Eric Dumazet | 110c433 | 2012-04-06 10:49:10 +0200 | [diff] [blame] | 3276 | sk->sk_data_ready(sk, len); |
Eric Dumazet | b1faf56 | 2010-05-31 23:44:05 -0700 | [diff] [blame] | 3277 | return 0; |
| 3278 | } |
| 3279 | EXPORT_SYMBOL(sock_queue_err_skb); |
| 3280 | |
Patrick Ohly | ac45f60 | 2009-02-12 05:03:37 +0000 | [diff] [blame] | 3281 | void skb_tstamp_tx(struct sk_buff *orig_skb, |
| 3282 | struct skb_shared_hwtstamps *hwtstamps) |
| 3283 | { |
| 3284 | struct sock *sk = orig_skb->sk; |
| 3285 | struct sock_exterr_skb *serr; |
| 3286 | struct sk_buff *skb; |
| 3287 | int err; |
| 3288 | |
| 3289 | if (!sk) |
| 3290 | return; |
| 3291 | |
| 3292 | skb = skb_clone(orig_skb, GFP_ATOMIC); |
| 3293 | if (!skb) |
| 3294 | return; |
| 3295 | |
| 3296 | if (hwtstamps) { |
| 3297 | *skb_hwtstamps(skb) = |
| 3298 | *hwtstamps; |
| 3299 | } else { |
| 3300 | /* |
| 3301 | * no hardware time stamps available, |
Oliver Hartkopp | 2244d07 | 2010-08-17 08:59:14 +0000 | [diff] [blame] | 3302 | * so keep the shared tx_flags and only |
Patrick Ohly | ac45f60 | 2009-02-12 05:03:37 +0000 | [diff] [blame] | 3303 | * store software time stamp |
| 3304 | */ |
| 3305 | skb->tstamp = ktime_get_real(); |
| 3306 | } |
| 3307 | |
| 3308 | serr = SKB_EXT_ERR(skb); |
| 3309 | memset(serr, 0, sizeof(*serr)); |
| 3310 | serr->ee.ee_errno = ENOMSG; |
| 3311 | serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING; |
Eric Dumazet | 2903037 | 2010-05-29 00:20:48 -0700 | [diff] [blame] | 3312 | |
Patrick Ohly | ac45f60 | 2009-02-12 05:03:37 +0000 | [diff] [blame] | 3313 | err = sock_queue_err_skb(sk, skb); |
Eric Dumazet | 2903037 | 2010-05-29 00:20:48 -0700 | [diff] [blame] | 3314 | |
Patrick Ohly | ac45f60 | 2009-02-12 05:03:37 +0000 | [diff] [blame] | 3315 | if (err) |
| 3316 | kfree_skb(skb); |
| 3317 | } |
| 3318 | EXPORT_SYMBOL_GPL(skb_tstamp_tx); |
| 3319 | |
Johannes Berg | 6e3e939 | 2011-11-09 10:15:42 +0100 | [diff] [blame] | 3320 | void skb_complete_wifi_ack(struct sk_buff *skb, bool acked) |
| 3321 | { |
| 3322 | struct sock *sk = skb->sk; |
| 3323 | struct sock_exterr_skb *serr; |
| 3324 | int err; |
| 3325 | |
| 3326 | skb->wifi_acked_valid = 1; |
| 3327 | skb->wifi_acked = acked; |
| 3328 | |
| 3329 | serr = SKB_EXT_ERR(skb); |
| 3330 | memset(serr, 0, sizeof(*serr)); |
| 3331 | serr->ee.ee_errno = ENOMSG; |
| 3332 | serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS; |
| 3333 | |
| 3334 | err = sock_queue_err_skb(sk, skb); |
| 3335 | if (err) |
| 3336 | kfree_skb(skb); |
| 3337 | } |
| 3338 | EXPORT_SYMBOL_GPL(skb_complete_wifi_ack); |
| 3339 | |
Patrick Ohly | ac45f60 | 2009-02-12 05:03:37 +0000 | [diff] [blame] | 3340 | |
Rusty Russell | f35d9d8 | 2008-02-04 23:49:54 -0500 | [diff] [blame] | 3341 | /** |
| 3342 | * skb_partial_csum_set - set up and verify partial csum values for packet |
| 3343 | * @skb: the skb to set |
| 3344 | * @start: the number of bytes after skb->data to start checksumming. |
| 3345 | * @off: the offset from start to place the checksum. |
| 3346 | * |
| 3347 | * For untrusted partially-checksummed packets, we need to make sure the values |
| 3348 | * for skb->csum_start and skb->csum_offset are valid so we don't oops. |
| 3349 | * |
| 3350 | * This function checks and sets those values and skb->ip_summed: if this |
| 3351 | * returns false you should drop the packet. |
| 3352 | */ |
| 3353 | bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off) |
| 3354 | { |
Herbert Xu | 5ff8dda | 2009-06-04 01:22:01 +0000 | [diff] [blame] | 3355 | if (unlikely(start > skb_headlen(skb)) || |
| 3356 | unlikely((int)start + off > skb_headlen(skb) - 2)) { |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 3357 | net_warn_ratelimited("bad partial csum: csum=%u/%u len=%u\n", |
| 3358 | start, off, skb_headlen(skb)); |
Rusty Russell | f35d9d8 | 2008-02-04 23:49:54 -0500 | [diff] [blame] | 3359 | return false; |
| 3360 | } |
| 3361 | skb->ip_summed = CHECKSUM_PARTIAL; |
| 3362 | skb->csum_start = skb_headroom(skb) + start; |
| 3363 | skb->csum_offset = off; |
| 3364 | return true; |
| 3365 | } |
David S. Miller | b4ac530fc | 2009-02-10 02:09:24 -0800 | [diff] [blame] | 3366 | EXPORT_SYMBOL_GPL(skb_partial_csum_set); |
Rusty Russell | f35d9d8 | 2008-02-04 23:49:54 -0500 | [diff] [blame] | 3367 | |
Ben Hutchings | 4497b07 | 2008-06-19 16:22:28 -0700 | [diff] [blame] | 3368 | void __skb_warn_lro_forwarding(const struct sk_buff *skb) |
| 3369 | { |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 3370 | net_warn_ratelimited("%s: received packets cannot be forwarded while LRO is enabled\n", |
| 3371 | skb->dev->name); |
Ben Hutchings | 4497b07 | 2008-06-19 16:22:28 -0700 | [diff] [blame] | 3372 | } |
Ben Hutchings | 4497b07 | 2008-06-19 16:22:28 -0700 | [diff] [blame] | 3373 | EXPORT_SYMBOL(__skb_warn_lro_forwarding); |
Eric Dumazet | bad43ca | 2012-05-19 03:02:02 +0000 | [diff] [blame] | 3374 | |
| 3375 | void kfree_skb_partial(struct sk_buff *skb, bool head_stolen) |
| 3376 | { |
Eric Dumazet | 3d861f6 | 2012-10-22 09:03:40 +0000 | [diff] [blame] | 3377 | if (head_stolen) { |
| 3378 | skb_release_head_state(skb); |
Eric Dumazet | bad43ca | 2012-05-19 03:02:02 +0000 | [diff] [blame] | 3379 | kmem_cache_free(skbuff_head_cache, skb); |
Eric Dumazet | 3d861f6 | 2012-10-22 09:03:40 +0000 | [diff] [blame] | 3380 | } else { |
Eric Dumazet | bad43ca | 2012-05-19 03:02:02 +0000 | [diff] [blame] | 3381 | __kfree_skb(skb); |
Eric Dumazet | 3d861f6 | 2012-10-22 09:03:40 +0000 | [diff] [blame] | 3382 | } |
Eric Dumazet | bad43ca | 2012-05-19 03:02:02 +0000 | [diff] [blame] | 3383 | } |
| 3384 | EXPORT_SYMBOL(kfree_skb_partial); |
| 3385 | |
| 3386 | /** |
| 3387 | * skb_try_coalesce - try to merge skb to prior one |
| 3388 | * @to: prior buffer |
| 3389 | * @from: buffer to add |
| 3390 | * @fragstolen: pointer to boolean |
Randy Dunlap | c6c4b97 | 2012-06-08 14:01:44 +0000 | [diff] [blame] | 3391 | * @delta_truesize: how much more was allocated than was requested |
Eric Dumazet | bad43ca | 2012-05-19 03:02:02 +0000 | [diff] [blame] | 3392 | */ |
| 3393 | bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from, |
| 3394 | bool *fragstolen, int *delta_truesize) |
| 3395 | { |
| 3396 | int i, delta, len = from->len; |
| 3397 | |
| 3398 | *fragstolen = false; |
| 3399 | |
| 3400 | if (skb_cloned(to)) |
| 3401 | return false; |
| 3402 | |
| 3403 | if (len <= skb_tailroom(to)) { |
| 3404 | BUG_ON(skb_copy_bits(from, 0, skb_put(to, len), len)); |
| 3405 | *delta_truesize = 0; |
| 3406 | return true; |
| 3407 | } |
| 3408 | |
| 3409 | if (skb_has_frag_list(to) || skb_has_frag_list(from)) |
| 3410 | return false; |
| 3411 | |
| 3412 | if (skb_headlen(from) != 0) { |
| 3413 | struct page *page; |
| 3414 | unsigned int offset; |
| 3415 | |
| 3416 | if (skb_shinfo(to)->nr_frags + |
| 3417 | skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS) |
| 3418 | return false; |
| 3419 | |
| 3420 | if (skb_head_is_locked(from)) |
| 3421 | return false; |
| 3422 | |
| 3423 | delta = from->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff)); |
| 3424 | |
| 3425 | page = virt_to_head_page(from->head); |
| 3426 | offset = from->data - (unsigned char *)page_address(page); |
| 3427 | |
| 3428 | skb_fill_page_desc(to, skb_shinfo(to)->nr_frags, |
| 3429 | page, offset, skb_headlen(from)); |
| 3430 | *fragstolen = true; |
| 3431 | } else { |
| 3432 | if (skb_shinfo(to)->nr_frags + |
| 3433 | skb_shinfo(from)->nr_frags > MAX_SKB_FRAGS) |
| 3434 | return false; |
| 3435 | |
Weiping Pan | f4b549a | 2012-09-28 20:15:30 +0000 | [diff] [blame] | 3436 | delta = from->truesize - SKB_TRUESIZE(skb_end_offset(from)); |
Eric Dumazet | bad43ca | 2012-05-19 03:02:02 +0000 | [diff] [blame] | 3437 | } |
| 3438 | |
| 3439 | WARN_ON_ONCE(delta < len); |
| 3440 | |
| 3441 | memcpy(skb_shinfo(to)->frags + skb_shinfo(to)->nr_frags, |
| 3442 | skb_shinfo(from)->frags, |
| 3443 | skb_shinfo(from)->nr_frags * sizeof(skb_frag_t)); |
| 3444 | skb_shinfo(to)->nr_frags += skb_shinfo(from)->nr_frags; |
| 3445 | |
| 3446 | if (!skb_cloned(from)) |
| 3447 | skb_shinfo(from)->nr_frags = 0; |
| 3448 | |
Li RongQing | 8ea853f | 2012-09-18 16:53:21 +0000 | [diff] [blame] | 3449 | /* if the skb is not cloned this does nothing |
| 3450 | * since we set nr_frags to 0. |
| 3451 | */ |
Eric Dumazet | bad43ca | 2012-05-19 03:02:02 +0000 | [diff] [blame] | 3452 | for (i = 0; i < skb_shinfo(from)->nr_frags; i++) |
| 3453 | skb_frag_ref(from, i); |
| 3454 | |
| 3455 | to->truesize += delta; |
| 3456 | to->len += len; |
| 3457 | to->data_len += len; |
| 3458 | |
| 3459 | *delta_truesize = delta; |
| 3460 | return true; |
| 3461 | } |
| 3462 | EXPORT_SYMBOL(skb_try_coalesce); |