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