blob: bd0d14c97d412c7276504bc29d3977be93f3b067 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * PACKET - implements raw packet sockets.
7 *
Jesper Juhl02c30a82005-05-05 16:16:16 -07008 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
10 * Alan Cox, <gw4pts@gw4pts.ampr.org>
11 *
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +090012 * Fixes:
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * Alan Cox : verify_area() now used correctly
14 * Alan Cox : new skbuff lists, look ma no backlogs!
15 * Alan Cox : tidied skbuff lists.
16 * Alan Cox : Now uses generic datagram routines I
17 * added. Also fixed the peek/read crash
18 * from all old Linux datagram code.
19 * Alan Cox : Uses the improved datagram code.
20 * Alan Cox : Added NULL's for socket options.
21 * Alan Cox : Re-commented the code.
22 * Alan Cox : Use new kernel side addressing
23 * Rob Janssen : Correct MTU usage.
24 * Dave Platt : Counter leaks caused by incorrect
25 * interrupt locking and some slightly
26 * dubious gcc output. Can you read
27 * compiler: it said _VOLATILE_
28 * Richard Kooijman : Timestamp fixes.
29 * Alan Cox : New buffers. Use sk->mac.raw.
30 * Alan Cox : sendmsg/recvmsg support.
31 * Alan Cox : Protocol setting support
32 * Alexey Kuznetsov : Untied from IPv4 stack.
33 * Cyrus Durgin : Fixed kerneld for kmod.
34 * Michal Ostrowski : Module initialization cleanup.
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +090035 * Ulises Alonso : Frame number limit removal and
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 * packet_set_ring memory leak.
Eric W. Biederman0fb375f2005-09-21 00:11:37 -070037 * Eric Biederman : Allow for > 8 byte hardware addresses.
38 * The convention is that longer addresses
39 * will simply extend the hardware address
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +090040 * byte arrays at the end of sockaddr_ll
Eric W. Biederman0fb375f2005-09-21 00:11:37 -070041 * and packet_mreq.
Johann Baudy69e3c752009-05-18 22:11:22 -070042 * Johann Baudy : Added TX RING.
chetan lokef6fb8f102011-08-19 10:18:16 +000043 * Chetan Loke : Implemented TPACKET_V3 block abstraction
44 * layer.
45 * Copyright (C) 2011, <lokec@ccs.neu.edu>
46 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 *
48 * This program is free software; you can redistribute it and/or
49 * modify it under the terms of the GNU General Public License
50 * as published by the Free Software Foundation; either version
51 * 2 of the License, or (at your option) any later version.
52 *
53 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +090054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <linux/mm.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080057#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <linux/fcntl.h>
59#include <linux/socket.h>
60#include <linux/in.h>
61#include <linux/inet.h>
62#include <linux/netdevice.h>
63#include <linux/if_packet.h>
64#include <linux/wireless.h>
Herbert Xuffbc6112007-02-04 23:33:10 -080065#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <linux/kmod.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090067#include <linux/slab.h>
Neil Horman0e3125c2010-11-16 10:26:47 -080068#include <linux/vmalloc.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020069#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#include <net/ip.h>
71#include <net/protocol.h>
72#include <linux/skbuff.h>
73#include <net/sock.h>
74#include <linux/errno.h>
75#include <linux/timer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <asm/uaccess.h>
77#include <asm/ioctls.h>
78#include <asm/page.h>
Al Viroa1f8e7f72006-10-19 16:08:53 -040079#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#include <asm/io.h>
81#include <linux/proc_fs.h>
82#include <linux/seq_file.h>
83#include <linux/poll.h>
84#include <linux/module.h>
85#include <linux/init.h>
Herbert Xu905db442009-01-30 14:12:06 -080086#include <linux/mutex.h>
Eric Dumazet05423b22009-10-26 18:40:35 -070087#include <linux/if_vlan.h>
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -080088#include <linux/virtio_net.h>
Richard Cochraned85b562010-04-07 22:41:28 +000089#include <linux/errqueue.h>
Scott McMillan614f60f2010-06-02 05:53:56 -070090#include <linux/net_tstamp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92#ifdef CONFIG_INET
93#include <net/inet_common.h>
94#endif
95
Pavel Emelyanov2787b042012-08-13 05:49:39 +000096#include "internal.h"
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 Assumptions:
100 - if device has no dev->hard_header routine, it adds and removes ll header
101 inside itself. In this case ll header is invisible outside of device,
102 but higher levels still should reserve dev->hard_header_len.
103 Some devices are enough clever to reallocate skb, when header
104 will not fit to reserved space (tunnel), another ones are silly
105 (PPP).
106 - packet socket receives packets with pulled ll header,
107 so that SOCK_RAW should push it back.
108
109On receive:
110-----------
111
112Incoming, dev->hard_header!=NULL
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700113 mac_header -> ll header
114 data -> data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116Outgoing, dev->hard_header!=NULL
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700117 mac_header -> ll header
118 data -> ll header
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120Incoming, dev->hard_header==NULL
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700121 mac_header -> UNKNOWN position. It is very likely, that it points to ll
122 header. PPP makes it, that is wrong, because introduce
YOSHIFUJI Hideakidb0c58f2007-07-19 10:44:35 +0900123 assymetry between rx and tx paths.
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700124 data -> data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126Outgoing, dev->hard_header==NULL
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700127 mac_header -> data. ll header is still not built!
128 data -> data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130Resume
131 If dev->hard_header==NULL we are unlikely to restore sensible ll header.
132
133
134On transmit:
135------------
136
137dev->hard_header != NULL
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700138 mac_header -> ll header
139 data -> ll header
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141dev->hard_header == NULL (ll header is added by device, we cannot control it)
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700142 mac_header -> data
143 data -> data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 We should set nh.raw on output to correct posistion,
146 packet classifier depends on it.
147 */
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/* Private packet socket structures. */
150
Eric W. Biederman0fb375f2005-09-21 00:11:37 -0700151/* identical to struct packet_mreq except it has
152 * a longer address field.
153 */
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000154struct packet_mreq_max {
Eric W. Biederman0fb375f2005-09-21 00:11:37 -0700155 int mr_ifindex;
156 unsigned short mr_type;
157 unsigned short mr_alen;
158 unsigned char mr_address[MAX_ADDR_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159};
David S. Millera2efcfa2007-05-29 13:12:50 -0700160
chetan lokef6fb8f102011-08-19 10:18:16 +0000161static int packet_set_ring(struct sock *sk, union tpacket_req_u *req_u,
Johann Baudy69e3c752009-05-18 22:11:22 -0700162 int closing, int tx_ring);
163
chetan lokef6fb8f102011-08-19 10:18:16 +0000164
165#define V3_ALIGNMENT (8)
166
chetan lokebc59ba32011-08-25 10:43:30 +0000167#define BLK_HDR_LEN (ALIGN(sizeof(struct tpacket_block_desc), V3_ALIGNMENT))
chetan lokef6fb8f102011-08-19 10:18:16 +0000168
169#define BLK_PLUS_PRIV(sz_of_priv) \
170 (BLK_HDR_LEN + ALIGN((sz_of_priv), V3_ALIGNMENT))
171
chetan lokef6fb8f102011-08-19 10:18:16 +0000172#define PGV_FROM_VMALLOC 1
Johann Baudy69e3c752009-05-18 22:11:22 -0700173
chetan lokef6fb8f102011-08-19 10:18:16 +0000174#define BLOCK_STATUS(x) ((x)->hdr.bh1.block_status)
175#define BLOCK_NUM_PKTS(x) ((x)->hdr.bh1.num_pkts)
176#define BLOCK_O2FP(x) ((x)->hdr.bh1.offset_to_first_pkt)
177#define BLOCK_LEN(x) ((x)->hdr.bh1.blk_len)
178#define BLOCK_SNUM(x) ((x)->hdr.bh1.seq_num)
179#define BLOCK_O2PRIV(x) ((x)->offset_to_priv)
180#define BLOCK_PRIV(x) ((void *)((char *)(x) + BLOCK_O2PRIV(x)))
181
Johann Baudy69e3c752009-05-18 22:11:22 -0700182struct packet_sock;
183static int tpacket_snd(struct packet_sock *po, struct msghdr *msg);
Willem de Bruijn77f65eb2013-03-19 10:18:11 +0000184static int tpacket_rcv(struct sk_buff *skb, struct net_device *dev,
185 struct packet_type *pt, struct net_device *orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
chetan lokef6fb8f102011-08-19 10:18:16 +0000187static void *packet_previous_frame(struct packet_sock *po,
188 struct packet_ring_buffer *rb,
189 int status);
190static void packet_increment_head(struct packet_ring_buffer *buff);
chetan lokebc59ba32011-08-25 10:43:30 +0000191static int prb_curr_blk_in_use(struct tpacket_kbdq_core *,
192 struct tpacket_block_desc *);
193static void *prb_dispatch_next_block(struct tpacket_kbdq_core *,
chetan lokef6fb8f102011-08-19 10:18:16 +0000194 struct packet_sock *);
chetan lokebc59ba32011-08-25 10:43:30 +0000195static void prb_retire_current_block(struct tpacket_kbdq_core *,
chetan lokef6fb8f102011-08-19 10:18:16 +0000196 struct packet_sock *, unsigned int status);
chetan lokebc59ba32011-08-25 10:43:30 +0000197static int prb_queue_frozen(struct tpacket_kbdq_core *);
198static void prb_open_block(struct tpacket_kbdq_core *,
199 struct tpacket_block_desc *);
chetan lokef6fb8f102011-08-19 10:18:16 +0000200static void prb_retire_rx_blk_timer_expired(unsigned long);
chetan lokebc59ba32011-08-25 10:43:30 +0000201static void _prb_refresh_rx_retire_blk_timer(struct tpacket_kbdq_core *);
202static void prb_init_blk_timer(struct packet_sock *,
203 struct tpacket_kbdq_core *,
204 void (*func) (unsigned long));
205static void prb_fill_rxhash(struct tpacket_kbdq_core *, struct tpacket3_hdr *);
206static void prb_clear_rxhash(struct tpacket_kbdq_core *,
207 struct tpacket3_hdr *);
208static void prb_fill_vlan_info(struct tpacket_kbdq_core *,
209 struct tpacket3_hdr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210static void packet_flush_mclist(struct sock *sk);
211
Herbert Xuffbc6112007-02-04 23:33:10 -0800212struct packet_skb_cb {
213 unsigned int origlen;
214 union {
215 struct sockaddr_pkt pkt;
216 struct sockaddr_ll ll;
217 } sa;
218};
219
220#define PACKET_SKB_CB(__skb) ((struct packet_skb_cb *)((__skb)->cb))
Herbert Xu8dc41942007-02-04 23:31:32 -0800221
chetan lokebc59ba32011-08-25 10:43:30 +0000222#define GET_PBDQC_FROM_RB(x) ((struct tpacket_kbdq_core *)(&(x)->prb_bdqc))
chetan lokef6fb8f102011-08-19 10:18:16 +0000223#define GET_PBLOCK_DESC(x, bid) \
chetan lokebc59ba32011-08-25 10:43:30 +0000224 ((struct tpacket_block_desc *)((x)->pkbdq[(bid)].buffer))
chetan lokef6fb8f102011-08-19 10:18:16 +0000225#define GET_CURR_PBLOCK_DESC_FROM_CORE(x) \
chetan lokebc59ba32011-08-25 10:43:30 +0000226 ((struct tpacket_block_desc *)((x)->pkbdq[(x)->kactive_blk_num].buffer))
chetan lokef6fb8f102011-08-19 10:18:16 +0000227#define GET_NEXT_PRB_BLK_NUM(x) \
228 (((x)->kactive_blk_num < ((x)->knum_blocks-1)) ? \
229 ((x)->kactive_blk_num+1) : 0)
230
David S. Millerdc99f602011-07-05 01:45:05 -0700231static void __fanout_unlink(struct sock *sk, struct packet_sock *po);
232static void __fanout_link(struct sock *sk, struct packet_sock *po);
233
David S. Millerce06b032011-07-04 01:44:29 -0700234/* register_prot_hook must be invoked with the po->bind_lock held,
235 * or from a context in which asynchronous accesses to the packet
236 * socket is not possible (packet_create()).
237 */
238static void register_prot_hook(struct sock *sk)
239{
240 struct packet_sock *po = pkt_sk(sk);
241 if (!po->running) {
David S. Millerdc99f602011-07-05 01:45:05 -0700242 if (po->fanout)
243 __fanout_link(sk, po);
244 else
245 dev_add_pack(&po->prot_hook);
David S. Millerce06b032011-07-04 01:44:29 -0700246 sock_hold(sk);
247 po->running = 1;
248 }
249}
250
251/* {,__}unregister_prot_hook() must be invoked with the po->bind_lock
252 * held. If the sync parameter is true, we will temporarily drop
253 * the po->bind_lock and do a synchronize_net to make sure no
254 * asynchronous packet processing paths still refer to the elements
255 * of po->prot_hook. If the sync parameter is false, it is the
256 * callers responsibility to take care of this.
257 */
258static void __unregister_prot_hook(struct sock *sk, bool sync)
259{
260 struct packet_sock *po = pkt_sk(sk);
261
262 po->running = 0;
David S. Millerdc99f602011-07-05 01:45:05 -0700263 if (po->fanout)
264 __fanout_unlink(sk, po);
265 else
266 __dev_remove_pack(&po->prot_hook);
David S. Millerce06b032011-07-04 01:44:29 -0700267 __sock_put(sk);
268
269 if (sync) {
270 spin_unlock(&po->bind_lock);
271 synchronize_net();
272 spin_lock(&po->bind_lock);
273 }
274}
275
276static void unregister_prot_hook(struct sock *sk, bool sync)
277{
278 struct packet_sock *po = pkt_sk(sk);
279
280 if (po->running)
281 __unregister_prot_hook(sk, sync);
282}
283
Changli Gaof6dafa92010-12-07 04:26:16 +0000284static inline __pure struct page *pgv_to_page(void *addr)
Changli Gao0af55bb2010-12-01 02:52:20 +0000285{
286 if (is_vmalloc_addr(addr))
287 return vmalloc_to_page(addr);
288 return virt_to_page(addr);
289}
290
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700291static void __packet_set_status(struct packet_sock *po, void *frame, int status)
292{
293 union {
294 struct tpacket_hdr *h1;
295 struct tpacket2_hdr *h2;
296 void *raw;
297 } h;
298
299 h.raw = frame;
300 switch (po->tp_version) {
301 case TPACKET_V1:
302 h.h1->tp_status = status;
Changli Gao0af55bb2010-12-01 02:52:20 +0000303 flush_dcache_page(pgv_to_page(&h.h1->tp_status));
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700304 break;
305 case TPACKET_V2:
306 h.h2->tp_status = status;
Changli Gao0af55bb2010-12-01 02:52:20 +0000307 flush_dcache_page(pgv_to_page(&h.h2->tp_status));
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700308 break;
chetan lokef6fb8f102011-08-19 10:18:16 +0000309 case TPACKET_V3:
Johann Baudy69e3c752009-05-18 22:11:22 -0700310 default:
chetan lokef6fb8f102011-08-19 10:18:16 +0000311 WARN(1, "TPACKET version not supported.\n");
Johann Baudy69e3c752009-05-18 22:11:22 -0700312 BUG();
313 }
314
315 smp_wmb();
316}
317
318static int __packet_get_status(struct packet_sock *po, void *frame)
319{
320 union {
321 struct tpacket_hdr *h1;
322 struct tpacket2_hdr *h2;
323 void *raw;
324 } h;
325
326 smp_rmb();
327
328 h.raw = frame;
329 switch (po->tp_version) {
330 case TPACKET_V1:
Changli Gao0af55bb2010-12-01 02:52:20 +0000331 flush_dcache_page(pgv_to_page(&h.h1->tp_status));
Johann Baudy69e3c752009-05-18 22:11:22 -0700332 return h.h1->tp_status;
333 case TPACKET_V2:
Changli Gao0af55bb2010-12-01 02:52:20 +0000334 flush_dcache_page(pgv_to_page(&h.h2->tp_status));
Johann Baudy69e3c752009-05-18 22:11:22 -0700335 return h.h2->tp_status;
chetan lokef6fb8f102011-08-19 10:18:16 +0000336 case TPACKET_V3:
Johann Baudy69e3c752009-05-18 22:11:22 -0700337 default:
chetan lokef6fb8f102011-08-19 10:18:16 +0000338 WARN(1, "TPACKET version not supported.\n");
Johann Baudy69e3c752009-05-18 22:11:22 -0700339 BUG();
340 return 0;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
Johann Baudy69e3c752009-05-18 22:11:22 -0700343
344static void *packet_lookup_frame(struct packet_sock *po,
345 struct packet_ring_buffer *rb,
346 unsigned int position,
347 int status)
348{
349 unsigned int pg_vec_pos, frame_offset;
350 union {
351 struct tpacket_hdr *h1;
352 struct tpacket2_hdr *h2;
353 void *raw;
354 } h;
355
356 pg_vec_pos = position / rb->frames_per_block;
357 frame_offset = position % rb->frames_per_block;
358
Neil Horman0e3125c2010-11-16 10:26:47 -0800359 h.raw = rb->pg_vec[pg_vec_pos].buffer +
360 (frame_offset * rb->frame_size);
Johann Baudy69e3c752009-05-18 22:11:22 -0700361
362 if (status != __packet_get_status(po, h.raw))
363 return NULL;
364
365 return h.raw;
366}
367
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000368static void *packet_current_frame(struct packet_sock *po,
Johann Baudy69e3c752009-05-18 22:11:22 -0700369 struct packet_ring_buffer *rb,
370 int status)
371{
372 return packet_lookup_frame(po, rb, rb->head, status);
373}
374
chetan lokebc59ba32011-08-25 10:43:30 +0000375static void prb_del_retire_blk_timer(struct tpacket_kbdq_core *pkc)
chetan lokef6fb8f102011-08-19 10:18:16 +0000376{
377 del_timer_sync(&pkc->retire_blk_timer);
378}
379
380static void prb_shutdown_retire_blk_timer(struct packet_sock *po,
381 int tx_ring,
382 struct sk_buff_head *rb_queue)
383{
chetan lokebc59ba32011-08-25 10:43:30 +0000384 struct tpacket_kbdq_core *pkc;
chetan lokef6fb8f102011-08-19 10:18:16 +0000385
386 pkc = tx_ring ? &po->tx_ring.prb_bdqc : &po->rx_ring.prb_bdqc;
387
388 spin_lock(&rb_queue->lock);
389 pkc->delete_blk_timer = 1;
390 spin_unlock(&rb_queue->lock);
391
392 prb_del_retire_blk_timer(pkc);
393}
394
395static void prb_init_blk_timer(struct packet_sock *po,
chetan lokebc59ba32011-08-25 10:43:30 +0000396 struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000397 void (*func) (unsigned long))
398{
399 init_timer(&pkc->retire_blk_timer);
400 pkc->retire_blk_timer.data = (long)po;
401 pkc->retire_blk_timer.function = func;
402 pkc->retire_blk_timer.expires = jiffies;
403}
404
405static void prb_setup_retire_blk_timer(struct packet_sock *po, int tx_ring)
406{
chetan lokebc59ba32011-08-25 10:43:30 +0000407 struct tpacket_kbdq_core *pkc;
chetan lokef6fb8f102011-08-19 10:18:16 +0000408
409 if (tx_ring)
410 BUG();
411
412 pkc = tx_ring ? &po->tx_ring.prb_bdqc : &po->rx_ring.prb_bdqc;
413 prb_init_blk_timer(po, pkc, prb_retire_rx_blk_timer_expired);
414}
415
416static int prb_calc_retire_blk_tmo(struct packet_sock *po,
417 int blk_size_in_bytes)
418{
419 struct net_device *dev;
420 unsigned int mbits = 0, msec = 0, div = 0, tmo = 0;
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000421 struct ethtool_cmd ecmd;
422 int err;
parav.pandit@emulex.come440cf22012-06-27 03:56:12 +0000423 u32 speed;
chetan lokef6fb8f102011-08-19 10:18:16 +0000424
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000425 rtnl_lock();
426 dev = __dev_get_by_index(sock_net(&po->sk), po->ifindex);
427 if (unlikely(!dev)) {
428 rtnl_unlock();
chetan lokef6fb8f102011-08-19 10:18:16 +0000429 return DEFAULT_PRB_RETIRE_TOV;
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000430 }
431 err = __ethtool_get_settings(dev, &ecmd);
parav.pandit@emulex.come440cf22012-06-27 03:56:12 +0000432 speed = ethtool_cmd_speed(&ecmd);
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000433 rtnl_unlock();
434 if (!err) {
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000435 /*
436 * If the link speed is so slow you don't really
437 * need to worry about perf anyways
438 */
parav.pandit@emulex.come440cf22012-06-27 03:56:12 +0000439 if (speed < SPEED_1000 || speed == SPEED_UNKNOWN) {
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000440 return DEFAULT_PRB_RETIRE_TOV;
parav.pandit@emulex.come440cf22012-06-27 03:56:12 +0000441 } else {
442 msec = 1;
443 div = speed / 1000;
chetan lokef6fb8f102011-08-19 10:18:16 +0000444 }
445 }
446
447 mbits = (blk_size_in_bytes * 8) / (1024 * 1024);
448
449 if (div)
450 mbits /= div;
451
452 tmo = mbits * msec;
453
454 if (div)
455 return tmo+1;
456 return tmo;
457}
458
chetan lokebc59ba32011-08-25 10:43:30 +0000459static void prb_init_ft_ops(struct tpacket_kbdq_core *p1,
chetan lokef6fb8f102011-08-19 10:18:16 +0000460 union tpacket_req_u *req_u)
461{
462 p1->feature_req_word = req_u->req3.tp_feature_req_word;
463}
464
465static void init_prb_bdqc(struct packet_sock *po,
466 struct packet_ring_buffer *rb,
467 struct pgv *pg_vec,
468 union tpacket_req_u *req_u, int tx_ring)
469{
chetan lokebc59ba32011-08-25 10:43:30 +0000470 struct tpacket_kbdq_core *p1 = &rb->prb_bdqc;
471 struct tpacket_block_desc *pbd;
chetan lokef6fb8f102011-08-19 10:18:16 +0000472
473 memset(p1, 0x0, sizeof(*p1));
474
475 p1->knxt_seq_num = 1;
476 p1->pkbdq = pg_vec;
chetan lokebc59ba32011-08-25 10:43:30 +0000477 pbd = (struct tpacket_block_desc *)pg_vec[0].buffer;
Joe Perchese3192692012-06-03 17:41:40 +0000478 p1->pkblk_start = pg_vec[0].buffer;
chetan lokef6fb8f102011-08-19 10:18:16 +0000479 p1->kblk_size = req_u->req3.tp_block_size;
480 p1->knum_blocks = req_u->req3.tp_block_nr;
481 p1->hdrlen = po->tp_hdrlen;
482 p1->version = po->tp_version;
483 p1->last_kactive_blk_num = 0;
484 po->stats_u.stats3.tp_freeze_q_cnt = 0;
485 if (req_u->req3.tp_retire_blk_tov)
486 p1->retire_blk_tov = req_u->req3.tp_retire_blk_tov;
487 else
488 p1->retire_blk_tov = prb_calc_retire_blk_tmo(po,
489 req_u->req3.tp_block_size);
490 p1->tov_in_jiffies = msecs_to_jiffies(p1->retire_blk_tov);
491 p1->blk_sizeof_priv = req_u->req3.tp_sizeof_priv;
492
493 prb_init_ft_ops(p1, req_u);
494 prb_setup_retire_blk_timer(po, tx_ring);
495 prb_open_block(p1, pbd);
496}
497
498/* Do NOT update the last_blk_num first.
499 * Assumes sk_buff_head lock is held.
500 */
chetan lokebc59ba32011-08-25 10:43:30 +0000501static void _prb_refresh_rx_retire_blk_timer(struct tpacket_kbdq_core *pkc)
chetan lokef6fb8f102011-08-19 10:18:16 +0000502{
503 mod_timer(&pkc->retire_blk_timer,
504 jiffies + pkc->tov_in_jiffies);
505 pkc->last_kactive_blk_num = pkc->kactive_blk_num;
506}
507
508/*
509 * Timer logic:
510 * 1) We refresh the timer only when we open a block.
511 * By doing this we don't waste cycles refreshing the timer
512 * on packet-by-packet basis.
513 *
514 * With a 1MB block-size, on a 1Gbps line, it will take
515 * i) ~8 ms to fill a block + ii) memcpy etc.
516 * In this cut we are not accounting for the memcpy time.
517 *
518 * So, if the user sets the 'tmo' to 10ms then the timer
519 * will never fire while the block is still getting filled
520 * (which is what we want). However, the user could choose
521 * to close a block early and that's fine.
522 *
523 * But when the timer does fire, we check whether or not to refresh it.
524 * Since the tmo granularity is in msecs, it is not too expensive
525 * to refresh the timer, lets say every '8' msecs.
526 * Either the user can set the 'tmo' or we can derive it based on
527 * a) line-speed and b) block-size.
528 * prb_calc_retire_blk_tmo() calculates the tmo.
529 *
530 */
531static void prb_retire_rx_blk_timer_expired(unsigned long data)
532{
533 struct packet_sock *po = (struct packet_sock *)data;
chetan lokebc59ba32011-08-25 10:43:30 +0000534 struct tpacket_kbdq_core *pkc = &po->rx_ring.prb_bdqc;
chetan lokef6fb8f102011-08-19 10:18:16 +0000535 unsigned int frozen;
chetan lokebc59ba32011-08-25 10:43:30 +0000536 struct tpacket_block_desc *pbd;
chetan lokef6fb8f102011-08-19 10:18:16 +0000537
538 spin_lock(&po->sk.sk_receive_queue.lock);
539
540 frozen = prb_queue_frozen(pkc);
541 pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
542
543 if (unlikely(pkc->delete_blk_timer))
544 goto out;
545
546 /* We only need to plug the race when the block is partially filled.
547 * tpacket_rcv:
548 * lock(); increment BLOCK_NUM_PKTS; unlock()
549 * copy_bits() is in progress ...
550 * timer fires on other cpu:
551 * we can't retire the current block because copy_bits
552 * is in progress.
553 *
554 */
555 if (BLOCK_NUM_PKTS(pbd)) {
556 while (atomic_read(&pkc->blk_fill_in_prog)) {
557 /* Waiting for skb_copy_bits to finish... */
558 cpu_relax();
559 }
560 }
561
562 if (pkc->last_kactive_blk_num == pkc->kactive_blk_num) {
563 if (!frozen) {
564 prb_retire_current_block(pkc, po, TP_STATUS_BLK_TMO);
565 if (!prb_dispatch_next_block(pkc, po))
566 goto refresh_timer;
567 else
568 goto out;
569 } else {
570 /* Case 1. Queue was frozen because user-space was
571 * lagging behind.
572 */
573 if (prb_curr_blk_in_use(pkc, pbd)) {
574 /*
575 * Ok, user-space is still behind.
576 * So just refresh the timer.
577 */
578 goto refresh_timer;
579 } else {
580 /* Case 2. queue was frozen,user-space caught up,
581 * now the link went idle && the timer fired.
582 * We don't have a block to close.So we open this
583 * block and restart the timer.
584 * opening a block thaws the queue,restarts timer
585 * Thawing/timer-refresh is a side effect.
586 */
587 prb_open_block(pkc, pbd);
588 goto out;
589 }
590 }
591 }
592
593refresh_timer:
594 _prb_refresh_rx_retire_blk_timer(pkc);
595
596out:
597 spin_unlock(&po->sk.sk_receive_queue.lock);
598}
599
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000600static void prb_flush_block(struct tpacket_kbdq_core *pkc1,
chetan lokebc59ba32011-08-25 10:43:30 +0000601 struct tpacket_block_desc *pbd1, __u32 status)
chetan lokef6fb8f102011-08-19 10:18:16 +0000602{
603 /* Flush everything minus the block header */
604
605#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
606 u8 *start, *end;
607
608 start = (u8 *)pbd1;
609
610 /* Skip the block header(we know header WILL fit in 4K) */
611 start += PAGE_SIZE;
612
613 end = (u8 *)PAGE_ALIGN((unsigned long)pkc1->pkblk_end);
614 for (; start < end; start += PAGE_SIZE)
615 flush_dcache_page(pgv_to_page(start));
616
617 smp_wmb();
618#endif
619
620 /* Now update the block status. */
621
622 BLOCK_STATUS(pbd1) = status;
623
624 /* Flush the block header */
625
626#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
627 start = (u8 *)pbd1;
628 flush_dcache_page(pgv_to_page(start));
629
630 smp_wmb();
631#endif
632}
633
634/*
635 * Side effect:
636 *
637 * 1) flush the block
638 * 2) Increment active_blk_num
639 *
640 * Note:We DONT refresh the timer on purpose.
641 * Because almost always the next block will be opened.
642 */
chetan lokebc59ba32011-08-25 10:43:30 +0000643static void prb_close_block(struct tpacket_kbdq_core *pkc1,
644 struct tpacket_block_desc *pbd1,
chetan lokef6fb8f102011-08-19 10:18:16 +0000645 struct packet_sock *po, unsigned int stat)
646{
647 __u32 status = TP_STATUS_USER | stat;
648
649 struct tpacket3_hdr *last_pkt;
chetan lokebc59ba32011-08-25 10:43:30 +0000650 struct tpacket_hdr_v1 *h1 = &pbd1->hdr.bh1;
chetan lokef6fb8f102011-08-19 10:18:16 +0000651
652 if (po->stats.tp_drops)
653 status |= TP_STATUS_LOSING;
654
655 last_pkt = (struct tpacket3_hdr *)pkc1->prev;
656 last_pkt->tp_next_offset = 0;
657
658 /* Get the ts of the last pkt */
659 if (BLOCK_NUM_PKTS(pbd1)) {
660 h1->ts_last_pkt.ts_sec = last_pkt->tp_sec;
661 h1->ts_last_pkt.ts_nsec = last_pkt->tp_nsec;
662 } else {
663 /* Ok, we tmo'd - so get the current time */
664 struct timespec ts;
665 getnstimeofday(&ts);
666 h1->ts_last_pkt.ts_sec = ts.tv_sec;
667 h1->ts_last_pkt.ts_nsec = ts.tv_nsec;
668 }
669
670 smp_wmb();
671
672 /* Flush the block */
673 prb_flush_block(pkc1, pbd1, status);
674
675 pkc1->kactive_blk_num = GET_NEXT_PRB_BLK_NUM(pkc1);
676}
677
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000678static void prb_thaw_queue(struct tpacket_kbdq_core *pkc)
chetan lokef6fb8f102011-08-19 10:18:16 +0000679{
680 pkc->reset_pending_on_curr_blk = 0;
681}
682
683/*
684 * Side effect of opening a block:
685 *
686 * 1) prb_queue is thawed.
687 * 2) retire_blk_timer is refreshed.
688 *
689 */
chetan lokebc59ba32011-08-25 10:43:30 +0000690static void prb_open_block(struct tpacket_kbdq_core *pkc1,
691 struct tpacket_block_desc *pbd1)
chetan lokef6fb8f102011-08-19 10:18:16 +0000692{
693 struct timespec ts;
chetan lokebc59ba32011-08-25 10:43:30 +0000694 struct tpacket_hdr_v1 *h1 = &pbd1->hdr.bh1;
chetan lokef6fb8f102011-08-19 10:18:16 +0000695
696 smp_rmb();
697
698 if (likely(TP_STATUS_KERNEL == BLOCK_STATUS(pbd1))) {
699
700 /* We could have just memset this but we will lose the
701 * flexibility of making the priv area sticky
702 */
703 BLOCK_SNUM(pbd1) = pkc1->knxt_seq_num++;
704 BLOCK_NUM_PKTS(pbd1) = 0;
705 BLOCK_LEN(pbd1) = BLK_PLUS_PRIV(pkc1->blk_sizeof_priv);
706 getnstimeofday(&ts);
707 h1->ts_first_pkt.ts_sec = ts.tv_sec;
708 h1->ts_first_pkt.ts_nsec = ts.tv_nsec;
709 pkc1->pkblk_start = (char *)pbd1;
Joe Perchese3192692012-06-03 17:41:40 +0000710 pkc1->nxt_offset = pkc1->pkblk_start + BLK_PLUS_PRIV(pkc1->blk_sizeof_priv);
chetan lokef6fb8f102011-08-19 10:18:16 +0000711 BLOCK_O2FP(pbd1) = (__u32)BLK_PLUS_PRIV(pkc1->blk_sizeof_priv);
712 BLOCK_O2PRIV(pbd1) = BLK_HDR_LEN;
713 pbd1->version = pkc1->version;
714 pkc1->prev = pkc1->nxt_offset;
715 pkc1->pkblk_end = pkc1->pkblk_start + pkc1->kblk_size;
716 prb_thaw_queue(pkc1);
717 _prb_refresh_rx_retire_blk_timer(pkc1);
718
719 smp_wmb();
720
721 return;
722 }
723
724 WARN(1, "ERROR block:%p is NOT FREE status:%d kactive_blk_num:%d\n",
725 pbd1, BLOCK_STATUS(pbd1), pkc1->kactive_blk_num);
726 dump_stack();
727 BUG();
728}
729
730/*
731 * Queue freeze logic:
732 * 1) Assume tp_block_nr = 8 blocks.
733 * 2) At time 't0', user opens Rx ring.
734 * 3) Some time past 't0', kernel starts filling blocks starting from 0 .. 7
735 * 4) user-space is either sleeping or processing block '0'.
736 * 5) tpacket_rcv is currently filling block '7', since there is no space left,
737 * it will close block-7,loop around and try to fill block '0'.
738 * call-flow:
739 * __packet_lookup_frame_in_block
740 * prb_retire_current_block()
741 * prb_dispatch_next_block()
742 * |->(BLOCK_STATUS == USER) evaluates to true
743 * 5.1) Since block-0 is currently in-use, we just freeze the queue.
744 * 6) Now there are two cases:
745 * 6.1) Link goes idle right after the queue is frozen.
746 * But remember, the last open_block() refreshed the timer.
747 * When this timer expires,it will refresh itself so that we can
748 * re-open block-0 in near future.
749 * 6.2) Link is busy and keeps on receiving packets. This is a simple
750 * case and __packet_lookup_frame_in_block will check if block-0
751 * is free and can now be re-used.
752 */
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000753static void prb_freeze_queue(struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000754 struct packet_sock *po)
755{
756 pkc->reset_pending_on_curr_blk = 1;
757 po->stats_u.stats3.tp_freeze_q_cnt++;
758}
759
760#define TOTAL_PKT_LEN_INCL_ALIGN(length) (ALIGN((length), V3_ALIGNMENT))
761
762/*
763 * If the next block is free then we will dispatch it
764 * and return a good offset.
765 * Else, we will freeze the queue.
766 * So, caller must check the return value.
767 */
chetan lokebc59ba32011-08-25 10:43:30 +0000768static void *prb_dispatch_next_block(struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000769 struct packet_sock *po)
770{
chetan lokebc59ba32011-08-25 10:43:30 +0000771 struct tpacket_block_desc *pbd;
chetan lokef6fb8f102011-08-19 10:18:16 +0000772
773 smp_rmb();
774
775 /* 1. Get current block num */
776 pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
777
778 /* 2. If this block is currently in_use then freeze the queue */
779 if (TP_STATUS_USER & BLOCK_STATUS(pbd)) {
780 prb_freeze_queue(pkc, po);
781 return NULL;
782 }
783
784 /*
785 * 3.
786 * open this block and return the offset where the first packet
787 * needs to get stored.
788 */
789 prb_open_block(pkc, pbd);
790 return (void *)pkc->nxt_offset;
791}
792
chetan lokebc59ba32011-08-25 10:43:30 +0000793static void prb_retire_current_block(struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000794 struct packet_sock *po, unsigned int status)
795{
chetan lokebc59ba32011-08-25 10:43:30 +0000796 struct tpacket_block_desc *pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
chetan lokef6fb8f102011-08-19 10:18:16 +0000797
798 /* retire/close the current block */
799 if (likely(TP_STATUS_KERNEL == BLOCK_STATUS(pbd))) {
800 /*
801 * Plug the case where copy_bits() is in progress on
802 * cpu-0 and tpacket_rcv() got invoked on cpu-1, didn't
803 * have space to copy the pkt in the current block and
804 * called prb_retire_current_block()
805 *
806 * We don't need to worry about the TMO case because
807 * the timer-handler already handled this case.
808 */
809 if (!(status & TP_STATUS_BLK_TMO)) {
810 while (atomic_read(&pkc->blk_fill_in_prog)) {
811 /* Waiting for skb_copy_bits to finish... */
812 cpu_relax();
813 }
814 }
815 prb_close_block(pkc, pbd, po, status);
816 return;
817 }
818
819 WARN(1, "ERROR-pbd[%d]:%p\n", pkc->kactive_blk_num, pbd);
820 dump_stack();
821 BUG();
822}
823
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000824static int prb_curr_blk_in_use(struct tpacket_kbdq_core *pkc,
chetan lokebc59ba32011-08-25 10:43:30 +0000825 struct tpacket_block_desc *pbd)
chetan lokef6fb8f102011-08-19 10:18:16 +0000826{
827 return TP_STATUS_USER & BLOCK_STATUS(pbd);
828}
829
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000830static int prb_queue_frozen(struct tpacket_kbdq_core *pkc)
chetan lokef6fb8f102011-08-19 10:18:16 +0000831{
832 return pkc->reset_pending_on_curr_blk;
833}
834
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000835static void prb_clear_blk_fill_status(struct packet_ring_buffer *rb)
chetan lokef6fb8f102011-08-19 10:18:16 +0000836{
chetan lokebc59ba32011-08-25 10:43:30 +0000837 struct tpacket_kbdq_core *pkc = GET_PBDQC_FROM_RB(rb);
chetan lokef6fb8f102011-08-19 10:18:16 +0000838 atomic_dec(&pkc->blk_fill_in_prog);
839}
840
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000841static void prb_fill_rxhash(struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000842 struct tpacket3_hdr *ppd)
843{
844 ppd->hv1.tp_rxhash = skb_get_rxhash(pkc->skb);
845}
846
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000847static void prb_clear_rxhash(struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000848 struct tpacket3_hdr *ppd)
849{
850 ppd->hv1.tp_rxhash = 0;
851}
852
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000853static void prb_fill_vlan_info(struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000854 struct tpacket3_hdr *ppd)
855{
856 if (vlan_tx_tag_present(pkc->skb)) {
857 ppd->hv1.tp_vlan_tci = vlan_tx_tag_get(pkc->skb);
858 ppd->tp_status = TP_STATUS_VLAN_VALID;
859 } else {
danborkmann@iogearbox.net9e670302012-08-20 03:34:03 +0000860 ppd->hv1.tp_vlan_tci = 0;
861 ppd->tp_status = TP_STATUS_AVAILABLE;
chetan lokef6fb8f102011-08-19 10:18:16 +0000862 }
863}
864
chetan lokebc59ba32011-08-25 10:43:30 +0000865static void prb_run_all_ft_ops(struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000866 struct tpacket3_hdr *ppd)
867{
868 prb_fill_vlan_info(pkc, ppd);
869
870 if (pkc->feature_req_word & TP_FT_REQ_FILL_RXHASH)
871 prb_fill_rxhash(pkc, ppd);
872 else
873 prb_clear_rxhash(pkc, ppd);
874}
875
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000876static void prb_fill_curr_block(char *curr,
chetan lokebc59ba32011-08-25 10:43:30 +0000877 struct tpacket_kbdq_core *pkc,
878 struct tpacket_block_desc *pbd,
chetan lokef6fb8f102011-08-19 10:18:16 +0000879 unsigned int len)
880{
881 struct tpacket3_hdr *ppd;
882
883 ppd = (struct tpacket3_hdr *)curr;
884 ppd->tp_next_offset = TOTAL_PKT_LEN_INCL_ALIGN(len);
885 pkc->prev = curr;
886 pkc->nxt_offset += TOTAL_PKT_LEN_INCL_ALIGN(len);
887 BLOCK_LEN(pbd) += TOTAL_PKT_LEN_INCL_ALIGN(len);
888 BLOCK_NUM_PKTS(pbd) += 1;
889 atomic_inc(&pkc->blk_fill_in_prog);
890 prb_run_all_ft_ops(pkc, ppd);
891}
892
893/* Assumes caller has the sk->rx_queue.lock */
894static void *__packet_lookup_frame_in_block(struct packet_sock *po,
895 struct sk_buff *skb,
896 int status,
897 unsigned int len
898 )
899{
chetan lokebc59ba32011-08-25 10:43:30 +0000900 struct tpacket_kbdq_core *pkc;
901 struct tpacket_block_desc *pbd;
chetan lokef6fb8f102011-08-19 10:18:16 +0000902 char *curr, *end;
903
Joe Perchese3192692012-06-03 17:41:40 +0000904 pkc = GET_PBDQC_FROM_RB(&po->rx_ring);
chetan lokef6fb8f102011-08-19 10:18:16 +0000905 pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
906
907 /* Queue is frozen when user space is lagging behind */
908 if (prb_queue_frozen(pkc)) {
909 /*
910 * Check if that last block which caused the queue to freeze,
911 * is still in_use by user-space.
912 */
913 if (prb_curr_blk_in_use(pkc, pbd)) {
914 /* Can't record this packet */
915 return NULL;
916 } else {
917 /*
918 * Ok, the block was released by user-space.
919 * Now let's open that block.
920 * opening a block also thaws the queue.
921 * Thawing is a side effect.
922 */
923 prb_open_block(pkc, pbd);
924 }
925 }
926
927 smp_mb();
928 curr = pkc->nxt_offset;
929 pkc->skb = skb;
Joe Perchese3192692012-06-03 17:41:40 +0000930 end = (char *)pbd + pkc->kblk_size;
chetan lokef6fb8f102011-08-19 10:18:16 +0000931
932 /* first try the current block */
933 if (curr+TOTAL_PKT_LEN_INCL_ALIGN(len) < end) {
934 prb_fill_curr_block(curr, pkc, pbd, len);
935 return (void *)curr;
936 }
937
938 /* Ok, close the current block */
939 prb_retire_current_block(pkc, po, 0);
940
941 /* Now, try to dispatch the next block */
942 curr = (char *)prb_dispatch_next_block(pkc, po);
943 if (curr) {
944 pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
945 prb_fill_curr_block(curr, pkc, pbd, len);
946 return (void *)curr;
947 }
948
949 /*
950 * No free blocks are available.user_space hasn't caught up yet.
951 * Queue was just frozen and now this packet will get dropped.
952 */
953 return NULL;
954}
955
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000956static void *packet_current_rx_frame(struct packet_sock *po,
chetan lokef6fb8f102011-08-19 10:18:16 +0000957 struct sk_buff *skb,
958 int status, unsigned int len)
959{
960 char *curr = NULL;
961 switch (po->tp_version) {
962 case TPACKET_V1:
963 case TPACKET_V2:
964 curr = packet_lookup_frame(po, &po->rx_ring,
965 po->rx_ring.head, status);
966 return curr;
967 case TPACKET_V3:
968 return __packet_lookup_frame_in_block(po, skb, status, len);
969 default:
970 WARN(1, "TPACKET version not supported\n");
971 BUG();
Ying Xue99aa3472012-08-06 16:27:10 +0000972 return NULL;
chetan lokef6fb8f102011-08-19 10:18:16 +0000973 }
974}
975
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000976static void *prb_lookup_block(struct packet_sock *po,
chetan lokef6fb8f102011-08-19 10:18:16 +0000977 struct packet_ring_buffer *rb,
Willem de Bruijn77f65eb2013-03-19 10:18:11 +0000978 unsigned int idx,
chetan lokef6fb8f102011-08-19 10:18:16 +0000979 int status)
980{
chetan lokebc59ba32011-08-25 10:43:30 +0000981 struct tpacket_kbdq_core *pkc = GET_PBDQC_FROM_RB(rb);
Willem de Bruijn77f65eb2013-03-19 10:18:11 +0000982 struct tpacket_block_desc *pbd = GET_PBLOCK_DESC(pkc, idx);
chetan lokef6fb8f102011-08-19 10:18:16 +0000983
984 if (status != BLOCK_STATUS(pbd))
985 return NULL;
986 return pbd;
987}
988
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000989static int prb_previous_blk_num(struct packet_ring_buffer *rb)
chetan lokef6fb8f102011-08-19 10:18:16 +0000990{
991 unsigned int prev;
992 if (rb->prb_bdqc.kactive_blk_num)
993 prev = rb->prb_bdqc.kactive_blk_num-1;
994 else
995 prev = rb->prb_bdqc.knum_blocks-1;
996 return prev;
997}
998
999/* Assumes caller has held the rx_queue.lock */
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001000static void *__prb_previous_block(struct packet_sock *po,
chetan lokef6fb8f102011-08-19 10:18:16 +00001001 struct packet_ring_buffer *rb,
1002 int status)
1003{
1004 unsigned int previous = prb_previous_blk_num(rb);
1005 return prb_lookup_block(po, rb, previous, status);
1006}
1007
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001008static void *packet_previous_rx_frame(struct packet_sock *po,
chetan lokef6fb8f102011-08-19 10:18:16 +00001009 struct packet_ring_buffer *rb,
1010 int status)
1011{
1012 if (po->tp_version <= TPACKET_V2)
1013 return packet_previous_frame(po, rb, status);
1014
1015 return __prb_previous_block(po, rb, status);
1016}
1017
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001018static void packet_increment_rx_head(struct packet_sock *po,
chetan lokef6fb8f102011-08-19 10:18:16 +00001019 struct packet_ring_buffer *rb)
1020{
1021 switch (po->tp_version) {
1022 case TPACKET_V1:
1023 case TPACKET_V2:
1024 return packet_increment_head(rb);
1025 case TPACKET_V3:
1026 default:
1027 WARN(1, "TPACKET version not supported.\n");
1028 BUG();
1029 return;
1030 }
1031}
1032
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001033static void *packet_previous_frame(struct packet_sock *po,
Johann Baudy69e3c752009-05-18 22:11:22 -07001034 struct packet_ring_buffer *rb,
1035 int status)
1036{
1037 unsigned int previous = rb->head ? rb->head - 1 : rb->frame_max;
1038 return packet_lookup_frame(po, rb, previous, status);
1039}
1040
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001041static void packet_increment_head(struct packet_ring_buffer *buff)
Johann Baudy69e3c752009-05-18 22:11:22 -07001042{
1043 buff->head = buff->head != buff->frame_max ? buff->head+1 : 0;
1044}
1045
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001046static bool packet_rcv_has_room(struct packet_sock *po, struct sk_buff *skb)
1047{
1048 struct sock *sk = &po->sk;
1049 bool has_room;
1050
1051 if (po->prot_hook.func != tpacket_rcv)
1052 return (atomic_read(&sk->sk_rmem_alloc) + skb->truesize)
1053 <= sk->sk_rcvbuf;
1054
1055 spin_lock(&sk->sk_receive_queue.lock);
1056 if (po->tp_version == TPACKET_V3)
1057 has_room = prb_lookup_block(po, &po->rx_ring,
1058 po->rx_ring.prb_bdqc.kactive_blk_num,
1059 TP_STATUS_KERNEL);
1060 else
1061 has_room = packet_lookup_frame(po, &po->rx_ring,
1062 po->rx_ring.head,
1063 TP_STATUS_KERNEL);
1064 spin_unlock(&sk->sk_receive_queue.lock);
1065
1066 return has_room;
1067}
1068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069static void packet_sock_destruct(struct sock *sk)
1070{
Richard Cochraned85b562010-04-07 22:41:28 +00001071 skb_queue_purge(&sk->sk_error_queue);
1072
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001073 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
1074 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 if (!sock_flag(sk, SOCK_DEAD)) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001077 pr_err("Attempt to release alive packet socket: %p\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 return;
1079 }
1080
Pavel Emelyanov17ab56a2007-11-10 21:38:48 -08001081 sk_refcnt_debug_dec(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082}
1083
David S. Millerdc99f602011-07-05 01:45:05 -07001084static int fanout_rr_next(struct packet_fanout *f, unsigned int num)
1085{
1086 int x = atomic_read(&f->rr_cur) + 1;
1087
1088 if (x >= num)
1089 x = 0;
1090
1091 return x;
1092}
1093
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001094static unsigned int fanout_demux_hash(struct packet_fanout *f,
1095 struct sk_buff *skb,
1096 unsigned int num)
David S. Millerdc99f602011-07-05 01:45:05 -07001097{
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001098 return (((u64)skb->rxhash) * num) >> 32;
David S. Millerdc99f602011-07-05 01:45:05 -07001099}
1100
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001101static unsigned int fanout_demux_lb(struct packet_fanout *f,
1102 struct sk_buff *skb,
1103 unsigned int num)
David S. Millerdc99f602011-07-05 01:45:05 -07001104{
1105 int cur, old;
1106
1107 cur = atomic_read(&f->rr_cur);
1108 while ((old = atomic_cmpxchg(&f->rr_cur, cur,
1109 fanout_rr_next(f, num))) != cur)
1110 cur = old;
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001111 return cur;
David S. Millerdc99f602011-07-05 01:45:05 -07001112}
1113
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001114static unsigned int fanout_demux_cpu(struct packet_fanout *f,
1115 struct sk_buff *skb,
1116 unsigned int num)
David S. Miller95ec3eb2011-07-06 01:56:38 -07001117{
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001118 return smp_processor_id() % num;
1119}
David S. Miller95ec3eb2011-07-06 01:56:38 -07001120
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001121static unsigned int fanout_demux_rollover(struct packet_fanout *f,
1122 struct sk_buff *skb,
1123 unsigned int idx, unsigned int skip,
1124 unsigned int num)
1125{
1126 unsigned int i, j;
1127
1128 i = j = min_t(int, f->next[idx], num - 1);
1129 do {
1130 if (i != skip && packet_rcv_has_room(pkt_sk(f->arr[i]), skb)) {
1131 if (i != j)
1132 f->next[idx] = i;
1133 return i;
1134 }
1135 if (++i == num)
1136 i = 0;
1137 } while (i != j);
1138
1139 return idx;
1140}
1141
1142static bool fanout_has_flag(struct packet_fanout *f, u16 flag)
1143{
1144 return f->flags & (flag >> 8);
David S. Miller95ec3eb2011-07-06 01:56:38 -07001145}
1146
David S. Miller95ec3eb2011-07-06 01:56:38 -07001147static int packet_rcv_fanout(struct sk_buff *skb, struct net_device *dev,
1148 struct packet_type *pt, struct net_device *orig_dev)
David S. Millerdc99f602011-07-05 01:45:05 -07001149{
1150 struct packet_fanout *f = pt->af_packet_priv;
1151 unsigned int num = f->num_members;
1152 struct packet_sock *po;
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001153 unsigned int idx;
David S. Millerdc99f602011-07-05 01:45:05 -07001154
1155 if (!net_eq(dev_net(dev), read_pnet(&f->net)) ||
1156 !num) {
1157 kfree_skb(skb);
1158 return 0;
1159 }
1160
David S. Miller95ec3eb2011-07-06 01:56:38 -07001161 switch (f->type) {
1162 case PACKET_FANOUT_HASH:
1163 default:
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001164 if (fanout_has_flag(f, PACKET_FANOUT_FLAG_DEFRAG)) {
Eric Dumazetbc416d92011-10-06 10:28:31 +00001165 skb = ip_check_defrag(skb, IP_DEFRAG_AF_PACKET);
David S. Miller95ec3eb2011-07-06 01:56:38 -07001166 if (!skb)
1167 return 0;
1168 }
1169 skb_get_rxhash(skb);
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001170 idx = fanout_demux_hash(f, skb, num);
David S. Miller95ec3eb2011-07-06 01:56:38 -07001171 break;
1172 case PACKET_FANOUT_LB:
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001173 idx = fanout_demux_lb(f, skb, num);
David S. Miller95ec3eb2011-07-06 01:56:38 -07001174 break;
1175 case PACKET_FANOUT_CPU:
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001176 idx = fanout_demux_cpu(f, skb, num);
1177 break;
1178 case PACKET_FANOUT_ROLLOVER:
1179 idx = fanout_demux_rollover(f, skb, 0, (unsigned int) -1, num);
David S. Miller95ec3eb2011-07-06 01:56:38 -07001180 break;
David S. Miller7736d332011-07-05 01:43:20 -07001181 }
1182
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001183 po = pkt_sk(f->arr[idx]);
1184 if (fanout_has_flag(f, PACKET_FANOUT_FLAG_ROLLOVER) &&
1185 unlikely(!packet_rcv_has_room(po, skb))) {
1186 idx = fanout_demux_rollover(f, skb, idx, idx, num);
1187 po = pkt_sk(f->arr[idx]);
1188 }
David S. Millerdc99f602011-07-05 01:45:05 -07001189
1190 return po->prot_hook.func(skb, dev, &po->prot_hook, orig_dev);
1191}
1192
Pavel Emelyanovfff33212012-08-16 05:36:48 +00001193DEFINE_MUTEX(fanout_mutex);
1194EXPORT_SYMBOL_GPL(fanout_mutex);
David S. Millerdc99f602011-07-05 01:45:05 -07001195static LIST_HEAD(fanout_list);
1196
1197static void __fanout_link(struct sock *sk, struct packet_sock *po)
1198{
1199 struct packet_fanout *f = po->fanout;
1200
1201 spin_lock(&f->lock);
1202 f->arr[f->num_members] = sk;
1203 smp_wmb();
1204 f->num_members++;
1205 spin_unlock(&f->lock);
1206}
1207
1208static void __fanout_unlink(struct sock *sk, struct packet_sock *po)
1209{
1210 struct packet_fanout *f = po->fanout;
1211 int i;
1212
1213 spin_lock(&f->lock);
1214 for (i = 0; i < f->num_members; i++) {
1215 if (f->arr[i] == sk)
1216 break;
1217 }
1218 BUG_ON(i >= f->num_members);
1219 f->arr[i] = f->arr[f->num_members - 1];
1220 f->num_members--;
1221 spin_unlock(&f->lock);
1222}
1223
Fengguang Wua0dfb262012-08-23 19:51:21 +08001224static bool match_fanout_group(struct packet_type *ptype, struct sock * sk)
Eric Leblondc0de08d2012-08-16 22:02:58 +00001225{
1226 if (ptype->af_packet_priv == (void*)((struct packet_sock *)sk)->fanout)
1227 return true;
1228
1229 return false;
1230}
1231
David S. Miller7736d332011-07-05 01:43:20 -07001232static int fanout_add(struct sock *sk, u16 id, u16 type_flags)
David S. Millerdc99f602011-07-05 01:45:05 -07001233{
1234 struct packet_sock *po = pkt_sk(sk);
1235 struct packet_fanout *f, *match;
David S. Miller7736d332011-07-05 01:43:20 -07001236 u8 type = type_flags & 0xff;
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001237 u8 flags = type_flags >> 8;
David S. Millerdc99f602011-07-05 01:45:05 -07001238 int err;
1239
1240 switch (type) {
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001241 case PACKET_FANOUT_ROLLOVER:
1242 if (type_flags & PACKET_FANOUT_FLAG_ROLLOVER)
1243 return -EINVAL;
David S. Millerdc99f602011-07-05 01:45:05 -07001244 case PACKET_FANOUT_HASH:
1245 case PACKET_FANOUT_LB:
David S. Miller95ec3eb2011-07-06 01:56:38 -07001246 case PACKET_FANOUT_CPU:
David S. Millerdc99f602011-07-05 01:45:05 -07001247 break;
1248 default:
1249 return -EINVAL;
1250 }
1251
1252 if (!po->running)
1253 return -EINVAL;
1254
1255 if (po->fanout)
1256 return -EALREADY;
1257
1258 mutex_lock(&fanout_mutex);
1259 match = NULL;
1260 list_for_each_entry(f, &fanout_list, list) {
1261 if (f->id == id &&
1262 read_pnet(&f->net) == sock_net(sk)) {
1263 match = f;
1264 break;
1265 }
1266 }
Eric Dumazetafe62c62011-07-07 06:41:29 -07001267 err = -EINVAL;
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001268 if (match && match->flags != flags)
Eric Dumazetafe62c62011-07-07 06:41:29 -07001269 goto out;
David S. Millerdc99f602011-07-05 01:45:05 -07001270 if (!match) {
Eric Dumazetafe62c62011-07-07 06:41:29 -07001271 err = -ENOMEM;
David S. Millerdc99f602011-07-05 01:45:05 -07001272 match = kzalloc(sizeof(*match), GFP_KERNEL);
Eric Dumazetafe62c62011-07-07 06:41:29 -07001273 if (!match)
1274 goto out;
1275 write_pnet(&match->net, sock_net(sk));
1276 match->id = id;
1277 match->type = type;
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001278 match->flags = flags;
Eric Dumazetafe62c62011-07-07 06:41:29 -07001279 atomic_set(&match->rr_cur, 0);
1280 INIT_LIST_HEAD(&match->list);
1281 spin_lock_init(&match->lock);
1282 atomic_set(&match->sk_ref, 0);
1283 match->prot_hook.type = po->prot_hook.type;
1284 match->prot_hook.dev = po->prot_hook.dev;
1285 match->prot_hook.func = packet_rcv_fanout;
1286 match->prot_hook.af_packet_priv = match;
Eric Leblondc0de08d2012-08-16 22:02:58 +00001287 match->prot_hook.id_match = match_fanout_group;
Eric Dumazetafe62c62011-07-07 06:41:29 -07001288 dev_add_pack(&match->prot_hook);
1289 list_add(&match->list, &fanout_list);
1290 }
1291 err = -EINVAL;
1292 if (match->type == type &&
1293 match->prot_hook.type == po->prot_hook.type &&
1294 match->prot_hook.dev == po->prot_hook.dev) {
1295 err = -ENOSPC;
1296 if (atomic_read(&match->sk_ref) < PACKET_FANOUT_MAX) {
1297 __dev_remove_pack(&po->prot_hook);
1298 po->fanout = match;
1299 atomic_inc(&match->sk_ref);
1300 __fanout_link(sk, po);
1301 err = 0;
David S. Millerdc99f602011-07-05 01:45:05 -07001302 }
1303 }
Eric Dumazetafe62c62011-07-07 06:41:29 -07001304out:
David S. Millerdc99f602011-07-05 01:45:05 -07001305 mutex_unlock(&fanout_mutex);
1306 return err;
1307}
1308
1309static void fanout_release(struct sock *sk)
1310{
1311 struct packet_sock *po = pkt_sk(sk);
1312 struct packet_fanout *f;
1313
1314 f = po->fanout;
1315 if (!f)
1316 return;
1317
Pavel Emelyanovfff33212012-08-16 05:36:48 +00001318 mutex_lock(&fanout_mutex);
David S. Millerdc99f602011-07-05 01:45:05 -07001319 po->fanout = NULL;
1320
David S. Millerdc99f602011-07-05 01:45:05 -07001321 if (atomic_dec_and_test(&f->sk_ref)) {
1322 list_del(&f->list);
1323 dev_remove_pack(&f->prot_hook);
1324 kfree(f);
1325 }
1326 mutex_unlock(&fanout_mutex);
1327}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08001329static const struct proto_ops packet_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08001331static const struct proto_ops packet_ops_spkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001333static int packet_rcv_spkt(struct sk_buff *skb, struct net_device *dev,
1334 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335{
1336 struct sock *sk;
1337 struct sockaddr_pkt *spkt;
1338
1339 /*
1340 * When we registered the protocol we saved the socket in the data
1341 * field for just this event.
1342 */
1343
1344 sk = pt->af_packet_priv;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 /*
1347 * Yank back the headers [hope the device set this
1348 * right or kerboom...]
1349 *
1350 * Incoming packets have ll header pulled,
1351 * push it back.
1352 *
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001353 * For outgoing ones skb->data == skb_mac_header(skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 * so that this procedure is noop.
1355 */
1356
1357 if (skb->pkt_type == PACKET_LOOPBACK)
1358 goto out;
1359
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001360 if (!net_eq(dev_net(dev), sock_net(sk)))
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08001361 goto out;
1362
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001363 skb = skb_share_check(skb, GFP_ATOMIC);
1364 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 goto oom;
1366
1367 /* drop any routing info */
Eric Dumazetadf30902009-06-02 05:19:30 +00001368 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Phil Oester84531c22005-07-12 11:57:52 -07001370 /* drop conntrack reference */
1371 nf_reset(skb);
1372
Herbert Xuffbc6112007-02-04 23:33:10 -08001373 spkt = &PACKET_SKB_CB(skb)->sa.pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001375 skb_push(skb, skb->data - skb_mac_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
1377 /*
1378 * The SOCK_PACKET socket receives _all_ frames.
1379 */
1380
1381 spkt->spkt_family = dev->type;
1382 strlcpy(spkt->spkt_device, dev->name, sizeof(spkt->spkt_device));
1383 spkt->spkt_protocol = skb->protocol;
1384
1385 /*
1386 * Charge the memory to the socket. This is done specifically
1387 * to prevent sockets using all the memory up.
1388 */
1389
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001390 if (sock_queue_rcv_skb(sk, skb) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 return 0;
1392
1393out:
1394 kfree_skb(skb);
1395oom:
1396 return 0;
1397}
1398
1399
1400/*
1401 * Output a raw packet to a device layer. This bypasses all the other
1402 * protocol layers and you must therefore supply it with a complete frame
1403 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405static int packet_sendmsg_spkt(struct kiocb *iocb, struct socket *sock,
1406 struct msghdr *msg, size_t len)
1407{
1408 struct sock *sk = sock->sk;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001409 struct sockaddr_pkt *saddr = (struct sockaddr_pkt *)msg->msg_name;
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001410 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 struct net_device *dev;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001412 __be16 proto = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 int err;
Ben Greear3bdc0eb2012-02-11 15:39:30 +00001414 int extra_len = 0;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001417 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 */
1419
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001420 if (saddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 if (msg->msg_namelen < sizeof(struct sockaddr))
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001422 return -EINVAL;
1423 if (msg->msg_namelen == sizeof(struct sockaddr_pkt))
1424 proto = saddr->spkt_protocol;
1425 } else
1426 return -ENOTCONN; /* SOCK_PACKET must be sent giving an address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
1428 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001429 * Find the device first to size check it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 */
1431
danborkmann@iogearbox.netde74e922012-06-10 08:59:28 +00001432 saddr->spkt_device[sizeof(saddr->spkt_device) - 1] = 0;
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001433retry:
Eric Dumazet654d1f82009-11-02 10:43:32 +01001434 rcu_read_lock();
1435 dev = dev_get_by_name_rcu(sock_net(sk), saddr->spkt_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 err = -ENODEV;
1437 if (dev == NULL)
1438 goto out_unlock;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001439
David S. Millerd5e76b02007-01-25 19:30:36 -08001440 err = -ENETDOWN;
1441 if (!(dev->flags & IFF_UP))
1442 goto out_unlock;
1443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 /*
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001445 * You may not queue a frame bigger than the mtu. This is the lowest level
1446 * raw protocol and you must do your own fragmentation at this level.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001448
Ben Greear3bdc0eb2012-02-11 15:39:30 +00001449 if (unlikely(sock_flag(sk, SOCK_NOFCS))) {
1450 if (!netif_supports_nofcs(dev)) {
1451 err = -EPROTONOSUPPORT;
1452 goto out_unlock;
1453 }
1454 extra_len = 4; /* We're doing our own CRC */
1455 }
1456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 err = -EMSGSIZE;
Ben Greear3bdc0eb2012-02-11 15:39:30 +00001458 if (len > dev->mtu + dev->hard_header_len + VLAN_HLEN + extra_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 goto out_unlock;
1460
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001461 if (!skb) {
1462 size_t reserved = LL_RESERVED_SPACE(dev);
Herbert Xu4ce40912011-11-18 02:20:05 +00001463 int tlen = dev->needed_tailroom;
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001464 unsigned int hhlen = dev->header_ops ? dev->hard_header_len : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001466 rcu_read_unlock();
Herbert Xu4ce40912011-11-18 02:20:05 +00001467 skb = sock_wmalloc(sk, len + reserved + tlen, 0, GFP_KERNEL);
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001468 if (skb == NULL)
1469 return -ENOBUFS;
1470 /* FIXME: Save some space for broken drivers that write a hard
1471 * header at transmission time by themselves. PPP is the notable
1472 * one here. This should really be fixed at the driver level.
1473 */
1474 skb_reserve(skb, reserved);
1475 skb_reset_network_header(skb);
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001476
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001477 /* Try to align data part correctly */
1478 if (hhlen) {
1479 skb->data -= hhlen;
1480 skb->tail -= hhlen;
1481 if (len < hhlen)
1482 skb_reset_network_header(skb);
1483 }
1484 err = memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len);
1485 if (err)
1486 goto out_free;
1487 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 }
1489
Ben Greear3bdc0eb2012-02-11 15:39:30 +00001490 if (len > (dev->mtu + dev->hard_header_len + extra_len)) {
Ben Greear57f89bf2011-02-11 09:35:18 +00001491 /* Earlier code assumed this would be a VLAN pkt,
1492 * double-check this now that we have the actual
1493 * packet in hand.
1494 */
1495 struct ethhdr *ehdr;
1496 skb_reset_mac_header(skb);
1497 ehdr = eth_hdr(skb);
1498 if (ehdr->h_proto != htons(ETH_P_8021Q)) {
1499 err = -EMSGSIZE;
1500 goto out_unlock;
1501 }
1502 }
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 skb->protocol = proto;
1505 skb->dev = dev;
1506 skb->priority = sk->sk_priority;
Eric Dumazet2d37a182009-10-01 19:14:46 +00001507 skb->mark = sk->sk_mark;
Oliver Hartkopp2244d072010-08-17 08:59:14 +00001508 err = sock_tx_timestamp(sk, &skb_shinfo(skb)->tx_flags);
Richard Cochraned85b562010-04-07 22:41:28 +00001509 if (err < 0)
1510 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Ben Greear3bdc0eb2012-02-11 15:39:30 +00001512 if (unlikely(extra_len == 4))
1513 skb->no_fcs = 1;
1514
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 dev_queue_xmit(skb);
Eric Dumazet654d1f82009-11-02 10:43:32 +01001516 rcu_read_unlock();
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001517 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519out_unlock:
Eric Dumazet654d1f82009-11-02 10:43:32 +01001520 rcu_read_unlock();
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001521out_free:
1522 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 return err;
1524}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001526static unsigned int run_filter(const struct sk_buff *skb,
Eric Dumazet62ab0812010-12-06 20:50:09 +00001527 const struct sock *sk,
David S. Millerdbcb5852007-01-24 15:21:02 -08001528 unsigned int res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529{
1530 struct sk_filter *filter;
1531
Eric Dumazet80f8f102011-01-18 07:46:52 +00001532 rcu_read_lock();
1533 filter = rcu_dereference(sk->sk_filter);
David S. Millerdbcb5852007-01-24 15:21:02 -08001534 if (filter != NULL)
Eric Dumazet0a148422011-04-20 09:27:32 +00001535 res = SK_RUN_FILTER(filter, skb);
Eric Dumazet80f8f102011-01-18 07:46:52 +00001536 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
David S. Millerdbcb5852007-01-24 15:21:02 -08001538 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539}
1540
1541/*
Eric Dumazet62ab0812010-12-06 20:50:09 +00001542 * This function makes lazy skb cloning in hope that most of packets
1543 * are discarded by BPF.
1544 *
1545 * Note tricky part: we DO mangle shared skb! skb->data, skb->len
1546 * and skb->cb are mangled. It works because (and until) packets
1547 * falling here are owned by current CPU. Output packets are cloned
1548 * by dev_queue_xmit_nit(), input packets are processed by net_bh
1549 * sequencially, so that if we return skb to original state on exit,
1550 * we will not harm anyone.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 */
1552
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001553static int packet_rcv(struct sk_buff *skb, struct net_device *dev,
1554 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555{
1556 struct sock *sk;
1557 struct sockaddr_ll *sll;
1558 struct packet_sock *po;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001559 u8 *skb_head = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 int skb_len = skb->len;
David S. Millerdbcb5852007-01-24 15:21:02 -08001561 unsigned int snaplen, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
1563 if (skb->pkt_type == PACKET_LOOPBACK)
1564 goto drop;
1565
1566 sk = pt->af_packet_priv;
1567 po = pkt_sk(sk);
1568
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001569 if (!net_eq(dev_net(dev), sock_net(sk)))
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08001570 goto drop;
1571
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 skb->dev = dev;
1573
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -07001574 if (dev->header_ops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 /* The device has an explicit notion of ll header,
Eric Dumazet62ab0812010-12-06 20:50:09 +00001576 * exported to higher levels.
1577 *
1578 * Otherwise, the device hides details of its frame
1579 * structure, so that corresponding packet head is
1580 * never delivered to user.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 */
1582 if (sk->sk_type != SOCK_DGRAM)
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001583 skb_push(skb, skb->data - skb_mac_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 else if (skb->pkt_type == PACKET_OUTGOING) {
1585 /* Special case: outgoing packets have ll header at head */
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001586 skb_pull(skb, skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 }
1588 }
1589
1590 snaplen = skb->len;
1591
David S. Millerdbcb5852007-01-24 15:21:02 -08001592 res = run_filter(skb, sk, snaplen);
1593 if (!res)
Dmitry Mishinfda9ef52006-08-31 15:28:39 -07001594 goto drop_n_restore;
David S. Millerdbcb5852007-01-24 15:21:02 -08001595 if (snaplen > res)
1596 snaplen = res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Eric Dumazet0fd7bac2011-12-21 07:11:44 +00001598 if (atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 goto drop_n_acct;
1600
1601 if (skb_shared(skb)) {
1602 struct sk_buff *nskb = skb_clone(skb, GFP_ATOMIC);
1603 if (nskb == NULL)
1604 goto drop_n_acct;
1605
1606 if (skb_head != skb->data) {
1607 skb->data = skb_head;
1608 skb->len = skb_len;
1609 }
Eric Dumazetabc4e4f2012-04-19 02:24:42 +00001610 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 skb = nskb;
1612 }
1613
Herbert Xuffbc6112007-02-04 23:33:10 -08001614 BUILD_BUG_ON(sizeof(*PACKET_SKB_CB(skb)) + MAX_ADDR_LEN - 8 >
1615 sizeof(skb->cb));
1616
1617 sll = &PACKET_SKB_CB(skb)->sa.ll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 sll->sll_family = AF_PACKET;
1619 sll->sll_hatype = dev->type;
1620 sll->sll_protocol = skb->protocol;
1621 sll->sll_pkttype = skb->pkt_type;
Peter P Waskiewicz Jr8032b462007-11-10 22:03:25 -08001622 if (unlikely(po->origdev))
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07001623 sll->sll_ifindex = orig_dev->ifindex;
1624 else
1625 sll->sll_ifindex = dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Stephen Hemmingerb95cce32007-09-26 22:13:38 -07001627 sll->sll_halen = dev_parse_header(skb, sll->sll_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Herbert Xuffbc6112007-02-04 23:33:10 -08001629 PACKET_SKB_CB(skb)->origlen = skb->len;
Herbert Xu8dc41942007-02-04 23:31:32 -08001630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 if (pskb_trim(skb, snaplen))
1632 goto drop_n_acct;
1633
1634 skb_set_owner_r(skb, sk);
1635 skb->dev = NULL;
Eric Dumazetadf30902009-06-02 05:19:30 +00001636 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
Phil Oester84531c22005-07-12 11:57:52 -07001638 /* drop conntrack reference */
1639 nf_reset(skb);
1640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 spin_lock(&sk->sk_receive_queue.lock);
1642 po->stats.tp_packets++;
Neil Horman3b885782009-10-12 13:26:31 -07001643 skb->dropcount = atomic_read(&sk->sk_drops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 __skb_queue_tail(&sk->sk_receive_queue, skb);
1645 spin_unlock(&sk->sk_receive_queue.lock);
1646 sk->sk_data_ready(sk, skb->len);
1647 return 0;
1648
1649drop_n_acct:
Willem de Bruijn7091fbd2011-09-30 10:38:28 +00001650 spin_lock(&sk->sk_receive_queue.lock);
1651 po->stats.tp_drops++;
1652 atomic_inc(&sk->sk_drops);
1653 spin_unlock(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
1655drop_n_restore:
1656 if (skb_head != skb->data && skb_shared(skb)) {
1657 skb->data = skb_head;
1658 skb->len = skb_len;
1659 }
1660drop:
Neil Hormanead2ceb2009-03-11 09:49:55 +00001661 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 return 0;
1663}
1664
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001665static int tpacket_rcv(struct sk_buff *skb, struct net_device *dev,
1666 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667{
1668 struct sock *sk;
1669 struct packet_sock *po;
1670 struct sockaddr_ll *sll;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001671 union {
1672 struct tpacket_hdr *h1;
1673 struct tpacket2_hdr *h2;
chetan lokef6fb8f102011-08-19 10:18:16 +00001674 struct tpacket3_hdr *h3;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001675 void *raw;
1676 } h;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001677 u8 *skb_head = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 int skb_len = skb->len;
David S. Millerdbcb5852007-01-24 15:21:02 -08001679 unsigned int snaplen, res;
chetan lokef6fb8f102011-08-19 10:18:16 +00001680 unsigned long status = TP_STATUS_USER;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001681 unsigned short macoff, netoff, hdrlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 struct sk_buff *copy_skb = NULL;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -07001683 struct timeval tv;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001684 struct timespec ts;
Scott McMillan614f60f2010-06-02 05:53:56 -07001685 struct skb_shared_hwtstamps *shhwtstamps = skb_hwtstamps(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
1687 if (skb->pkt_type == PACKET_LOOPBACK)
1688 goto drop;
1689
1690 sk = pt->af_packet_priv;
1691 po = pkt_sk(sk);
1692
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001693 if (!net_eq(dev_net(dev), sock_net(sk)))
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08001694 goto drop;
1695
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -07001696 if (dev->header_ops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 if (sk->sk_type != SOCK_DGRAM)
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001698 skb_push(skb, skb->data - skb_mac_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 else if (skb->pkt_type == PACKET_OUTGOING) {
1700 /* Special case: outgoing packets have ll header at head */
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001701 skb_pull(skb, skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 }
1703 }
1704
Herbert Xu8dc41942007-02-04 23:31:32 -08001705 if (skb->ip_summed == CHECKSUM_PARTIAL)
1706 status |= TP_STATUS_CSUMNOTREADY;
1707
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 snaplen = skb->len;
1709
David S. Millerdbcb5852007-01-24 15:21:02 -08001710 res = run_filter(skb, sk, snaplen);
1711 if (!res)
Dmitry Mishinfda9ef52006-08-31 15:28:39 -07001712 goto drop_n_restore;
David S. Millerdbcb5852007-01-24 15:21:02 -08001713 if (snaplen > res)
1714 snaplen = res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
1716 if (sk->sk_type == SOCK_DGRAM) {
Patrick McHardy8913336a2008-07-18 18:05:19 -07001717 macoff = netoff = TPACKET_ALIGN(po->tp_hdrlen) + 16 +
1718 po->tp_reserve;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 } else {
Eric Dumazet95c96172012-04-15 05:58:06 +00001720 unsigned int maclen = skb_network_offset(skb);
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001721 netoff = TPACKET_ALIGN(po->tp_hdrlen +
Patrick McHardy8913336a2008-07-18 18:05:19 -07001722 (maclen < 16 ? 16 : maclen)) +
1723 po->tp_reserve;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 macoff = netoff - maclen;
1725 }
chetan lokef6fb8f102011-08-19 10:18:16 +00001726 if (po->tp_version <= TPACKET_V2) {
1727 if (macoff + snaplen > po->rx_ring.frame_size) {
1728 if (po->copy_thresh &&
Eric Dumazet0fd7bac2011-12-21 07:11:44 +00001729 atomic_read(&sk->sk_rmem_alloc) < sk->sk_rcvbuf) {
chetan lokef6fb8f102011-08-19 10:18:16 +00001730 if (skb_shared(skb)) {
1731 copy_skb = skb_clone(skb, GFP_ATOMIC);
1732 } else {
1733 copy_skb = skb_get(skb);
1734 skb_head = skb->data;
1735 }
1736 if (copy_skb)
1737 skb_set_owner_r(copy_skb, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 }
chetan lokef6fb8f102011-08-19 10:18:16 +00001739 snaplen = po->rx_ring.frame_size - macoff;
1740 if ((int)snaplen < 0)
1741 snaplen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 spin_lock(&sk->sk_receive_queue.lock);
chetan lokef6fb8f102011-08-19 10:18:16 +00001745 h.raw = packet_current_rx_frame(po, skb,
1746 TP_STATUS_KERNEL, (macoff+snaplen));
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001747 if (!h.raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 goto ring_is_full;
chetan lokef6fb8f102011-08-19 10:18:16 +00001749 if (po->tp_version <= TPACKET_V2) {
1750 packet_increment_rx_head(po, &po->rx_ring);
1751 /*
1752 * LOSING will be reported till you read the stats,
1753 * because it's COR - Clear On Read.
1754 * Anyways, moving it for V1/V2 only as V3 doesn't need this
1755 * at packet level.
1756 */
1757 if (po->stats.tp_drops)
1758 status |= TP_STATUS_LOSING;
1759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 po->stats.tp_packets++;
1761 if (copy_skb) {
1762 status |= TP_STATUS_COPY;
1763 __skb_queue_tail(&sk->sk_receive_queue, copy_skb);
1764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 spin_unlock(&sk->sk_receive_queue.lock);
1766
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001767 skb_copy_bits(skb, 0, h.raw + macoff, snaplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001769 switch (po->tp_version) {
1770 case TPACKET_V1:
1771 h.h1->tp_len = skb->len;
1772 h.h1->tp_snaplen = snaplen;
1773 h.h1->tp_mac = macoff;
1774 h.h1->tp_net = netoff;
Scott McMillan614f60f2010-06-02 05:53:56 -07001775 if ((po->tp_tstamp & SOF_TIMESTAMPING_SYS_HARDWARE)
1776 && shhwtstamps->syststamp.tv64)
1777 tv = ktime_to_timeval(shhwtstamps->syststamp);
1778 else if ((po->tp_tstamp & SOF_TIMESTAMPING_RAW_HARDWARE)
1779 && shhwtstamps->hwtstamp.tv64)
1780 tv = ktime_to_timeval(shhwtstamps->hwtstamp);
1781 else if (skb->tstamp.tv64)
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001782 tv = ktime_to_timeval(skb->tstamp);
1783 else
1784 do_gettimeofday(&tv);
1785 h.h1->tp_sec = tv.tv_sec;
1786 h.h1->tp_usec = tv.tv_usec;
1787 hdrlen = sizeof(*h.h1);
1788 break;
1789 case TPACKET_V2:
1790 h.h2->tp_len = skb->len;
1791 h.h2->tp_snaplen = snaplen;
1792 h.h2->tp_mac = macoff;
1793 h.h2->tp_net = netoff;
Scott McMillan614f60f2010-06-02 05:53:56 -07001794 if ((po->tp_tstamp & SOF_TIMESTAMPING_SYS_HARDWARE)
1795 && shhwtstamps->syststamp.tv64)
1796 ts = ktime_to_timespec(shhwtstamps->syststamp);
1797 else if ((po->tp_tstamp & SOF_TIMESTAMPING_RAW_HARDWARE)
1798 && shhwtstamps->hwtstamp.tv64)
1799 ts = ktime_to_timespec(shhwtstamps->hwtstamp);
1800 else if (skb->tstamp.tv64)
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001801 ts = ktime_to_timespec(skb->tstamp);
1802 else
1803 getnstimeofday(&ts);
1804 h.h2->tp_sec = ts.tv_sec;
1805 h.h2->tp_nsec = ts.tv_nsec;
Ben Greeara3bcc232011-06-01 06:49:10 +00001806 if (vlan_tx_tag_present(skb)) {
1807 h.h2->tp_vlan_tci = vlan_tx_tag_get(skb);
1808 status |= TP_STATUS_VLAN_VALID;
1809 } else {
1810 h.h2->tp_vlan_tci = 0;
1811 }
Eric Dumazet13fcb7b2011-06-06 22:42:06 -07001812 h.h2->tp_padding = 0;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001813 hdrlen = sizeof(*h.h2);
1814 break;
chetan lokef6fb8f102011-08-19 10:18:16 +00001815 case TPACKET_V3:
1816 /* tp_nxt_offset,vlan are already populated above.
1817 * So DONT clear those fields here
1818 */
1819 h.h3->tp_status |= status;
1820 h.h3->tp_len = skb->len;
1821 h.h3->tp_snaplen = snaplen;
1822 h.h3->tp_mac = macoff;
1823 h.h3->tp_net = netoff;
1824 if ((po->tp_tstamp & SOF_TIMESTAMPING_SYS_HARDWARE)
1825 && shhwtstamps->syststamp.tv64)
1826 ts = ktime_to_timespec(shhwtstamps->syststamp);
1827 else if ((po->tp_tstamp & SOF_TIMESTAMPING_RAW_HARDWARE)
1828 && shhwtstamps->hwtstamp.tv64)
1829 ts = ktime_to_timespec(shhwtstamps->hwtstamp);
1830 else if (skb->tstamp.tv64)
1831 ts = ktime_to_timespec(skb->tstamp);
1832 else
1833 getnstimeofday(&ts);
1834 h.h3->tp_sec = ts.tv_sec;
1835 h.h3->tp_nsec = ts.tv_nsec;
1836 hdrlen = sizeof(*h.h3);
1837 break;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001838 default:
1839 BUG();
1840 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001842 sll = h.raw + TPACKET_ALIGN(hdrlen);
Stephen Hemmingerb95cce32007-09-26 22:13:38 -07001843 sll->sll_halen = dev_parse_header(skb, sll->sll_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 sll->sll_family = AF_PACKET;
1845 sll->sll_hatype = dev->type;
1846 sll->sll_protocol = skb->protocol;
1847 sll->sll_pkttype = skb->pkt_type;
Peter P Waskiewicz Jr8032b462007-11-10 22:03:25 -08001848 if (unlikely(po->origdev))
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07001849 sll->sll_ifindex = orig_dev->ifindex;
1850 else
1851 sll->sll_ifindex = dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
Ralf Baechlee16aa202006-12-07 00:11:33 -08001853 smp_mb();
Changli Gaof6dafa92010-12-07 04:26:16 +00001854#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 {
Changli Gao0af55bb2010-12-01 02:52:20 +00001856 u8 *start, *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
chetan lokef6fb8f102011-08-19 10:18:16 +00001858 if (po->tp_version <= TPACKET_V2) {
1859 end = (u8 *)PAGE_ALIGN((unsigned long)h.raw
1860 + macoff + snaplen);
1861 for (start = h.raw; start < end; start += PAGE_SIZE)
1862 flush_dcache_page(pgv_to_page(start));
1863 }
Chetan Lokecc9f01b2011-07-14 08:36:33 -07001864 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 }
Changli Gaof6dafa92010-12-07 04:26:16 +00001866#endif
chetan lokef6fb8f102011-08-19 10:18:16 +00001867 if (po->tp_version <= TPACKET_V2)
1868 __packet_set_status(po, h.raw, status);
1869 else
1870 prb_clear_blk_fill_status(&po->rx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
1872 sk->sk_data_ready(sk, 0);
1873
1874drop_n_restore:
1875 if (skb_head != skb->data && skb_shared(skb)) {
1876 skb->data = skb_head;
1877 skb->len = skb_len;
1878 }
1879drop:
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001880 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 return 0;
1882
1883ring_is_full:
1884 po->stats.tp_drops++;
1885 spin_unlock(&sk->sk_receive_queue.lock);
1886
1887 sk->sk_data_ready(sk, 0);
Wei Yongjunacb5d752009-02-25 00:36:42 +00001888 kfree_skb(copy_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 goto drop_n_restore;
1890}
1891
Johann Baudy69e3c752009-05-18 22:11:22 -07001892static void tpacket_destruct_skb(struct sk_buff *skb)
1893{
1894 struct packet_sock *po = pkt_sk(skb->sk);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001895 void *ph;
Johann Baudy69e3c752009-05-18 22:11:22 -07001896
Johann Baudy69e3c752009-05-18 22:11:22 -07001897 if (likely(po->tx_ring.pg_vec)) {
1898 ph = skb_shinfo(skb)->destructor_arg;
Johann Baudy69e3c752009-05-18 22:11:22 -07001899 BUG_ON(atomic_read(&po->tx_ring.pending) == 0);
1900 atomic_dec(&po->tx_ring.pending);
1901 __packet_set_status(po, ph, TP_STATUS_AVAILABLE);
1902 }
1903
1904 sock_wfree(skb);
1905}
1906
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001907static int tpacket_fill_skb(struct packet_sock *po, struct sk_buff *skb,
1908 void *frame, struct net_device *dev, int size_max,
Herbert Xuae641942011-11-18 02:20:04 +00001909 __be16 proto, unsigned char *addr, int hlen)
Johann Baudy69e3c752009-05-18 22:11:22 -07001910{
1911 union {
1912 struct tpacket_hdr *h1;
1913 struct tpacket2_hdr *h2;
1914 void *raw;
1915 } ph;
1916 int to_write, offset, len, tp_len, nr_frags, len_max;
1917 struct socket *sock = po->sk.sk_socket;
1918 struct page *page;
1919 void *data;
1920 int err;
1921
1922 ph.raw = frame;
1923
1924 skb->protocol = proto;
1925 skb->dev = dev;
1926 skb->priority = po->sk.sk_priority;
Eric Dumazet2d37a182009-10-01 19:14:46 +00001927 skb->mark = po->sk.sk_mark;
Johann Baudy69e3c752009-05-18 22:11:22 -07001928 skb_shinfo(skb)->destructor_arg = ph.raw;
1929
1930 switch (po->tp_version) {
1931 case TPACKET_V2:
1932 tp_len = ph.h2->tp_len;
1933 break;
1934 default:
1935 tp_len = ph.h1->tp_len;
1936 break;
1937 }
1938 if (unlikely(tp_len > size_max)) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001939 pr_err("packet size is too long (%d > %d)\n", tp_len, size_max);
Johann Baudy69e3c752009-05-18 22:11:22 -07001940 return -EMSGSIZE;
1941 }
1942
Herbert Xuae641942011-11-18 02:20:04 +00001943 skb_reserve(skb, hlen);
Johann Baudy69e3c752009-05-18 22:11:22 -07001944 skb_reset_network_header(skb);
1945
Paul Chavent5920cd3a2012-11-06 23:10:47 +00001946 if (po->tp_tx_has_off) {
1947 int off_min, off_max, off;
1948 off_min = po->tp_hdrlen - sizeof(struct sockaddr_ll);
1949 off_max = po->tx_ring.frame_size - tp_len;
1950 if (sock->type == SOCK_DGRAM) {
1951 switch (po->tp_version) {
1952 case TPACKET_V2:
1953 off = ph.h2->tp_net;
1954 break;
1955 default:
1956 off = ph.h1->tp_net;
1957 break;
1958 }
1959 } else {
1960 switch (po->tp_version) {
1961 case TPACKET_V2:
1962 off = ph.h2->tp_mac;
1963 break;
1964 default:
1965 off = ph.h1->tp_mac;
1966 break;
1967 }
1968 }
1969 if (unlikely((off < off_min) || (off_max < off)))
1970 return -EINVAL;
1971 data = ph.raw + off;
1972 } else {
1973 data = ph.raw + po->tp_hdrlen - sizeof(struct sockaddr_ll);
1974 }
Johann Baudy69e3c752009-05-18 22:11:22 -07001975 to_write = tp_len;
1976
1977 if (sock->type == SOCK_DGRAM) {
1978 err = dev_hard_header(skb, dev, ntohs(proto), addr,
1979 NULL, tp_len);
1980 if (unlikely(err < 0))
1981 return -EINVAL;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001982 } else if (dev->hard_header_len) {
Johann Baudy69e3c752009-05-18 22:11:22 -07001983 /* net device doesn't like empty head */
1984 if (unlikely(tp_len <= dev->hard_header_len)) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001985 pr_err("packet size is too short (%d < %d)\n",
1986 tp_len, dev->hard_header_len);
Johann Baudy69e3c752009-05-18 22:11:22 -07001987 return -EINVAL;
1988 }
1989
1990 skb_push(skb, dev->hard_header_len);
1991 err = skb_store_bits(skb, 0, data,
1992 dev->hard_header_len);
1993 if (unlikely(err))
1994 return err;
1995
1996 data += dev->hard_header_len;
1997 to_write -= dev->hard_header_len;
1998 }
1999
Johann Baudy69e3c752009-05-18 22:11:22 -07002000 offset = offset_in_page(data);
2001 len_max = PAGE_SIZE - offset;
2002 len = ((to_write > len_max) ? len_max : to_write);
2003
2004 skb->data_len = to_write;
2005 skb->len += to_write;
2006 skb->truesize += to_write;
2007 atomic_add(to_write, &po->sk.sk_wmem_alloc);
2008
2009 while (likely(to_write)) {
2010 nr_frags = skb_shinfo(skb)->nr_frags;
2011
2012 if (unlikely(nr_frags >= MAX_SKB_FRAGS)) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002013 pr_err("Packet exceed the number of skb frags(%lu)\n",
2014 MAX_SKB_FRAGS);
Johann Baudy69e3c752009-05-18 22:11:22 -07002015 return -EFAULT;
2016 }
2017
Changli Gao0af55bb2010-12-01 02:52:20 +00002018 page = pgv_to_page(data);
2019 data += len;
Johann Baudy69e3c752009-05-18 22:11:22 -07002020 flush_dcache_page(page);
2021 get_page(page);
Changli Gao0af55bb2010-12-01 02:52:20 +00002022 skb_fill_page_desc(skb, nr_frags, page, offset, len);
Johann Baudy69e3c752009-05-18 22:11:22 -07002023 to_write -= len;
2024 offset = 0;
2025 len_max = PAGE_SIZE;
2026 len = ((to_write > len_max) ? len_max : to_write);
2027 }
2028
2029 return tp_len;
2030}
2031
2032static int tpacket_snd(struct packet_sock *po, struct msghdr *msg)
2033{
Johann Baudy69e3c752009-05-18 22:11:22 -07002034 struct sk_buff *skb;
2035 struct net_device *dev;
2036 __be16 proto;
Ben Greear827d9782011-06-01 07:18:53 +00002037 bool need_rls_dev = false;
2038 int err, reserve = 0;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002039 void *ph;
2040 struct sockaddr_ll *saddr = (struct sockaddr_ll *)msg->msg_name;
Johann Baudy69e3c752009-05-18 22:11:22 -07002041 int tp_len, size_max;
2042 unsigned char *addr;
2043 int len_sum = 0;
danborkmann@iogearbox.net9e670302012-08-20 03:34:03 +00002044 int status = TP_STATUS_AVAILABLE;
Herbert Xuae641942011-11-18 02:20:04 +00002045 int hlen, tlen;
Johann Baudy69e3c752009-05-18 22:11:22 -07002046
Johann Baudy69e3c752009-05-18 22:11:22 -07002047 mutex_lock(&po->pg_vec_lock);
2048
Johann Baudy69e3c752009-05-18 22:11:22 -07002049 if (saddr == NULL) {
Ben Greear827d9782011-06-01 07:18:53 +00002050 dev = po->prot_hook.dev;
Johann Baudy69e3c752009-05-18 22:11:22 -07002051 proto = po->num;
2052 addr = NULL;
2053 } else {
2054 err = -EINVAL;
2055 if (msg->msg_namelen < sizeof(struct sockaddr_ll))
2056 goto out;
2057 if (msg->msg_namelen < (saddr->sll_halen
2058 + offsetof(struct sockaddr_ll,
2059 sll_addr)))
2060 goto out;
Johann Baudy69e3c752009-05-18 22:11:22 -07002061 proto = saddr->sll_protocol;
2062 addr = saddr->sll_addr;
Ben Greear827d9782011-06-01 07:18:53 +00002063 dev = dev_get_by_index(sock_net(&po->sk), saddr->sll_ifindex);
2064 need_rls_dev = true;
Johann Baudy69e3c752009-05-18 22:11:22 -07002065 }
2066
Johann Baudy69e3c752009-05-18 22:11:22 -07002067 err = -ENXIO;
2068 if (unlikely(dev == NULL))
2069 goto out;
2070
2071 reserve = dev->hard_header_len;
2072
2073 err = -ENETDOWN;
2074 if (unlikely(!(dev->flags & IFF_UP)))
2075 goto out_put;
2076
2077 size_max = po->tx_ring.frame_size
Gabor Gombasb5dd8842009-10-29 03:19:11 -07002078 - (po->tp_hdrlen - sizeof(struct sockaddr_ll));
Johann Baudy69e3c752009-05-18 22:11:22 -07002079
2080 if (size_max > dev->mtu + reserve)
2081 size_max = dev->mtu + reserve;
2082
2083 do {
2084 ph = packet_current_frame(po, &po->tx_ring,
2085 TP_STATUS_SEND_REQUEST);
2086
2087 if (unlikely(ph == NULL)) {
2088 schedule();
2089 continue;
2090 }
2091
2092 status = TP_STATUS_SEND_REQUEST;
Herbert Xuae641942011-11-18 02:20:04 +00002093 hlen = LL_RESERVED_SPACE(dev);
2094 tlen = dev->needed_tailroom;
Johann Baudy69e3c752009-05-18 22:11:22 -07002095 skb = sock_alloc_send_skb(&po->sk,
Herbert Xuae641942011-11-18 02:20:04 +00002096 hlen + tlen + sizeof(struct sockaddr_ll),
Johann Baudy69e3c752009-05-18 22:11:22 -07002097 0, &err);
2098
2099 if (unlikely(skb == NULL))
2100 goto out_status;
2101
2102 tp_len = tpacket_fill_skb(po, skb, ph, dev, size_max, proto,
Herbert Xuae641942011-11-18 02:20:04 +00002103 addr, hlen);
Johann Baudy69e3c752009-05-18 22:11:22 -07002104
2105 if (unlikely(tp_len < 0)) {
2106 if (po->tp_loss) {
2107 __packet_set_status(po, ph,
2108 TP_STATUS_AVAILABLE);
2109 packet_increment_head(&po->tx_ring);
2110 kfree_skb(skb);
2111 continue;
2112 } else {
2113 status = TP_STATUS_WRONG_FORMAT;
2114 err = tp_len;
2115 goto out_status;
2116 }
2117 }
2118
2119 skb->destructor = tpacket_destruct_skb;
2120 __packet_set_status(po, ph, TP_STATUS_SENDING);
2121 atomic_inc(&po->tx_ring.pending);
2122
2123 status = TP_STATUS_SEND_REQUEST;
2124 err = dev_queue_xmit(skb);
Jarek Poplawskieb70df12010-01-10 22:04:19 +00002125 if (unlikely(err > 0)) {
2126 err = net_xmit_errno(err);
2127 if (err && __packet_get_status(po, ph) ==
2128 TP_STATUS_AVAILABLE) {
2129 /* skb was destructed already */
2130 skb = NULL;
2131 goto out_status;
2132 }
2133 /*
2134 * skb was dropped but not destructed yet;
2135 * let's treat it like congestion or err < 0
2136 */
2137 err = 0;
2138 }
Johann Baudy69e3c752009-05-18 22:11:22 -07002139 packet_increment_head(&po->tx_ring);
2140 len_sum += tp_len;
Joe Perchesf64f9e72009-11-29 16:55:45 -08002141 } while (likely((ph != NULL) ||
2142 ((!(msg->msg_flags & MSG_DONTWAIT)) &&
2143 (atomic_read(&po->tx_ring.pending))))
2144 );
Johann Baudy69e3c752009-05-18 22:11:22 -07002145
2146 err = len_sum;
2147 goto out_put;
2148
Johann Baudy69e3c752009-05-18 22:11:22 -07002149out_status:
2150 __packet_set_status(po, ph, status);
2151 kfree_skb(skb);
2152out_put:
Ben Greear827d9782011-06-01 07:18:53 +00002153 if (need_rls_dev)
2154 dev_put(dev);
Johann Baudy69e3c752009-05-18 22:11:22 -07002155out:
2156 mutex_unlock(&po->pg_vec_lock);
2157 return err;
2158}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
Olof Johanssoneea49cc92011-11-02 11:00:49 +00002160static struct sk_buff *packet_alloc_skb(struct sock *sk, size_t prepad,
2161 size_t reserve, size_t len,
2162 size_t linear, int noblock,
2163 int *err)
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002164{
2165 struct sk_buff *skb;
2166
2167 /* Under a page? Don't bother with paged skb. */
2168 if (prepad + len < PAGE_SIZE || !linear)
2169 linear = len;
2170
2171 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
2172 err);
2173 if (!skb)
2174 return NULL;
2175
2176 skb_reserve(skb, reserve);
2177 skb_put(skb, linear);
2178 skb->data_len = len - linear;
2179 skb->len += len - linear;
2180
2181 return skb;
2182}
2183
Johann Baudy69e3c752009-05-18 22:11:22 -07002184static int packet_snd(struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 struct msghdr *msg, size_t len)
2186{
2187 struct sock *sk = sock->sk;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002188 struct sockaddr_ll *saddr = (struct sockaddr_ll *)msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 struct sk_buff *skb;
2190 struct net_device *dev;
Al Viro0e11c912006-11-08 00:26:29 -08002191 __be16 proto;
Ben Greear827d9782011-06-01 07:18:53 +00002192 bool need_rls_dev = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 unsigned char *addr;
Ben Greear827d9782011-06-01 07:18:53 +00002194 int err, reserve = 0;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002195 struct virtio_net_hdr vnet_hdr = { 0 };
2196 int offset = 0;
2197 int vnet_hdr_len;
2198 struct packet_sock *po = pkt_sk(sk);
2199 unsigned short gso_type = 0;
Herbert Xuae641942011-11-18 02:20:04 +00002200 int hlen, tlen;
Ben Greear3bdc0eb2012-02-11 15:39:30 +00002201 int extra_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
2203 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002204 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002206
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 if (saddr == NULL) {
Ben Greear827d9782011-06-01 07:18:53 +00002208 dev = po->prot_hook.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 proto = po->num;
2210 addr = NULL;
2211 } else {
2212 err = -EINVAL;
2213 if (msg->msg_namelen < sizeof(struct sockaddr_ll))
2214 goto out;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07002215 if (msg->msg_namelen < (saddr->sll_halen + offsetof(struct sockaddr_ll, sll_addr)))
2216 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 proto = saddr->sll_protocol;
2218 addr = saddr->sll_addr;
Ben Greear827d9782011-06-01 07:18:53 +00002219 dev = dev_get_by_index(sock_net(sk), saddr->sll_ifindex);
2220 need_rls_dev = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 }
2222
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 err = -ENXIO;
2224 if (dev == NULL)
2225 goto out_unlock;
2226 if (sock->type == SOCK_RAW)
2227 reserve = dev->hard_header_len;
2228
David S. Millerd5e76b02007-01-25 19:30:36 -08002229 err = -ENETDOWN;
2230 if (!(dev->flags & IFF_UP))
2231 goto out_unlock;
2232
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002233 if (po->has_vnet_hdr) {
2234 vnet_hdr_len = sizeof(vnet_hdr);
2235
2236 err = -EINVAL;
2237 if (len < vnet_hdr_len)
2238 goto out_unlock;
2239
2240 len -= vnet_hdr_len;
2241
2242 err = memcpy_fromiovec((void *)&vnet_hdr, msg->msg_iov,
2243 vnet_hdr_len);
2244 if (err < 0)
2245 goto out_unlock;
2246
2247 if ((vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
2248 (vnet_hdr.csum_start + vnet_hdr.csum_offset + 2 >
2249 vnet_hdr.hdr_len))
2250 vnet_hdr.hdr_len = vnet_hdr.csum_start +
2251 vnet_hdr.csum_offset + 2;
2252
2253 err = -EINVAL;
2254 if (vnet_hdr.hdr_len > len)
2255 goto out_unlock;
2256
2257 if (vnet_hdr.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
2258 switch (vnet_hdr.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
2259 case VIRTIO_NET_HDR_GSO_TCPV4:
2260 gso_type = SKB_GSO_TCPV4;
2261 break;
2262 case VIRTIO_NET_HDR_GSO_TCPV6:
2263 gso_type = SKB_GSO_TCPV6;
2264 break;
2265 case VIRTIO_NET_HDR_GSO_UDP:
2266 gso_type = SKB_GSO_UDP;
2267 break;
2268 default:
2269 goto out_unlock;
2270 }
2271
2272 if (vnet_hdr.gso_type & VIRTIO_NET_HDR_GSO_ECN)
2273 gso_type |= SKB_GSO_TCP_ECN;
2274
2275 if (vnet_hdr.gso_size == 0)
2276 goto out_unlock;
2277
2278 }
2279 }
2280
Ben Greear3bdc0eb2012-02-11 15:39:30 +00002281 if (unlikely(sock_flag(sk, SOCK_NOFCS))) {
2282 if (!netif_supports_nofcs(dev)) {
2283 err = -EPROTONOSUPPORT;
2284 goto out_unlock;
2285 }
2286 extra_len = 4; /* We're doing our own CRC */
2287 }
2288
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 err = -EMSGSIZE;
Ben Greear3bdc0eb2012-02-11 15:39:30 +00002290 if (!gso_type && (len > dev->mtu + reserve + VLAN_HLEN + extra_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 goto out_unlock;
2292
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002293 err = -ENOBUFS;
Herbert Xuae641942011-11-18 02:20:04 +00002294 hlen = LL_RESERVED_SPACE(dev);
2295 tlen = dev->needed_tailroom;
2296 skb = packet_alloc_skb(sk, hlen + tlen, hlen, len, vnet_hdr.hdr_len,
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002297 msg->msg_flags & MSG_DONTWAIT, &err);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002298 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 goto out_unlock;
2300
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002301 skb_set_network_header(skb, reserve);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
Stephen Hemminger0c4e8582007-10-09 01:36:32 -07002303 err = -EINVAL;
2304 if (sock->type == SOCK_DGRAM &&
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002305 (offset = dev_hard_header(skb, dev, ntohs(proto), addr, NULL, len)) < 0)
Stephen Hemminger0c4e8582007-10-09 01:36:32 -07002306 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
2308 /* Returns -EFAULT on error */
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002309 err = skb_copy_datagram_from_iovec(skb, offset, msg->msg_iov, 0, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 if (err)
2311 goto out_free;
Oliver Hartkopp2244d072010-08-17 08:59:14 +00002312 err = sock_tx_timestamp(sk, &skb_shinfo(skb)->tx_flags);
Richard Cochraned85b562010-04-07 22:41:28 +00002313 if (err < 0)
2314 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Ben Greear3bdc0eb2012-02-11 15:39:30 +00002316 if (!gso_type && (len > dev->mtu + reserve + extra_len)) {
Ben Greear57f89bf2011-02-11 09:35:18 +00002317 /* Earlier code assumed this would be a VLAN pkt,
2318 * double-check this now that we have the actual
2319 * packet in hand.
2320 */
2321 struct ethhdr *ehdr;
2322 skb_reset_mac_header(skb);
2323 ehdr = eth_hdr(skb);
2324 if (ehdr->h_proto != htons(ETH_P_8021Q)) {
2325 err = -EMSGSIZE;
2326 goto out_free;
2327 }
2328 }
2329
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 skb->protocol = proto;
2331 skb->dev = dev;
2332 skb->priority = sk->sk_priority;
Eric Dumazet2d37a182009-10-01 19:14:46 +00002333 skb->mark = sk->sk_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002335 if (po->has_vnet_hdr) {
2336 if (vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
2337 if (!skb_partial_csum_set(skb, vnet_hdr.csum_start,
2338 vnet_hdr.csum_offset)) {
2339 err = -EINVAL;
2340 goto out_free;
2341 }
2342 }
2343
2344 skb_shinfo(skb)->gso_size = vnet_hdr.gso_size;
2345 skb_shinfo(skb)->gso_type = gso_type;
2346
2347 /* Header must be checked, and gso_segs computed. */
2348 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
2349 skb_shinfo(skb)->gso_segs = 0;
2350
2351 len += vnet_hdr_len;
2352 }
2353
Ben Greear3bdc0eb2012-02-11 15:39:30 +00002354 if (unlikely(extra_len == 4))
2355 skb->no_fcs = 1;
2356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 /*
2358 * Now send it
2359 */
2360
2361 err = dev_queue_xmit(skb);
2362 if (err > 0 && (err = net_xmit_errno(err)) != 0)
2363 goto out_unlock;
2364
Ben Greear827d9782011-06-01 07:18:53 +00002365 if (need_rls_dev)
2366 dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002368 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
2370out_free:
2371 kfree_skb(skb);
2372out_unlock:
Ben Greear827d9782011-06-01 07:18:53 +00002373 if (dev && need_rls_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 dev_put(dev);
2375out:
2376 return err;
2377}
2378
Johann Baudy69e3c752009-05-18 22:11:22 -07002379static int packet_sendmsg(struct kiocb *iocb, struct socket *sock,
2380 struct msghdr *msg, size_t len)
2381{
Johann Baudy69e3c752009-05-18 22:11:22 -07002382 struct sock *sk = sock->sk;
2383 struct packet_sock *po = pkt_sk(sk);
2384 if (po->tx_ring.pg_vec)
2385 return tpacket_snd(po, msg);
2386 else
Johann Baudy69e3c752009-05-18 22:11:22 -07002387 return packet_snd(sock, msg, len);
2388}
2389
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390/*
2391 * Close a PACKET socket. This is fairly simple. We immediately go
2392 * to 'closed' state and remove our protocol entry in the device list.
2393 */
2394
2395static int packet_release(struct socket *sock)
2396{
2397 struct sock *sk = sock->sk;
2398 struct packet_sock *po;
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08002399 struct net *net;
chetan lokef6fb8f102011-08-19 10:18:16 +00002400 union tpacket_req_u req_u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
2402 if (!sk)
2403 return 0;
2404
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002405 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 po = pkt_sk(sk);
2407
Pavel Emelyanov0fa7fa92012-08-21 01:06:47 +00002408 mutex_lock(&net->packet.sklist_lock);
stephen hemminger808f5112010-02-22 07:57:18 +00002409 sk_del_node_init_rcu(sk);
Pavel Emelyanov0fa7fa92012-08-21 01:06:47 +00002410 mutex_unlock(&net->packet.sklist_lock);
2411
2412 preempt_disable();
Eric Dumazet920de802008-11-24 00:09:29 -08002413 sock_prot_inuse_add(net, sk->sk_prot, -1);
Pavel Emelyanov0fa7fa92012-08-21 01:06:47 +00002414 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
stephen hemminger808f5112010-02-22 07:57:18 +00002416 spin_lock(&po->bind_lock);
David S. Millerce06b032011-07-04 01:44:29 -07002417 unregister_prot_hook(sk, false);
Ben Greear160ff182011-06-01 07:18:52 +00002418 if (po->prot_hook.dev) {
2419 dev_put(po->prot_hook.dev);
2420 po->prot_hook.dev = NULL;
2421 }
stephen hemminger808f5112010-02-22 07:57:18 +00002422 spin_unlock(&po->bind_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 packet_flush_mclist(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
Phil Sutter9665d5d2013-02-01 07:21:41 +00002426 if (po->rx_ring.pg_vec) {
2427 memset(&req_u, 0, sizeof(req_u));
chetan lokef6fb8f102011-08-19 10:18:16 +00002428 packet_set_ring(sk, &req_u, 1, 0);
Phil Sutter9665d5d2013-02-01 07:21:41 +00002429 }
Johann Baudy69e3c752009-05-18 22:11:22 -07002430
Phil Sutter9665d5d2013-02-01 07:21:41 +00002431 if (po->tx_ring.pg_vec) {
2432 memset(&req_u, 0, sizeof(req_u));
chetan lokef6fb8f102011-08-19 10:18:16 +00002433 packet_set_ring(sk, &req_u, 1, 1);
Phil Sutter9665d5d2013-02-01 07:21:41 +00002434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
David S. Millerdc99f602011-07-05 01:45:05 -07002436 fanout_release(sk);
2437
stephen hemminger808f5112010-02-22 07:57:18 +00002438 synchronize_net();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 /*
2440 * Now the socket is dead. No more input will appear.
2441 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 sock_orphan(sk);
2443 sock->sk = NULL;
2444
2445 /* Purge queues */
2446
2447 skb_queue_purge(&sk->sk_receive_queue);
Pavel Emelyanov17ab56a2007-11-10 21:38:48 -08002448 sk_refcnt_debug_release(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
2450 sock_put(sk);
2451 return 0;
2452}
2453
2454/*
2455 * Attach a packet hook.
2456 */
2457
Al Viro0e11c912006-11-08 00:26:29 -08002458static int packet_do_bind(struct sock *sk, struct net_device *dev, __be16 protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459{
2460 struct packet_sock *po = pkt_sk(sk);
David S. Millerdc99f602011-07-05 01:45:05 -07002461
Wei Yongjunaef950b2011-12-27 22:32:41 -05002462 if (po->fanout) {
2463 if (dev)
2464 dev_put(dev);
2465
David S. Millerdc99f602011-07-05 01:45:05 -07002466 return -EINVAL;
Wei Yongjunaef950b2011-12-27 22:32:41 -05002467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468
2469 lock_sock(sk);
2470
2471 spin_lock(&po->bind_lock);
David S. Millerce06b032011-07-04 01:44:29 -07002472 unregister_prot_hook(sk, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 po->num = protocol;
2474 po->prot_hook.type = protocol;
Ben Greear160ff182011-06-01 07:18:52 +00002475 if (po->prot_hook.dev)
2476 dev_put(po->prot_hook.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 po->prot_hook.dev = dev;
2478
2479 po->ifindex = dev ? dev->ifindex : 0;
2480
2481 if (protocol == 0)
2482 goto out_unlock;
2483
Urs Thuermannbe85d4a2007-11-12 21:05:20 -08002484 if (!dev || (dev->flags & IFF_UP)) {
David S. Millerce06b032011-07-04 01:44:29 -07002485 register_prot_hook(sk);
Urs Thuermannbe85d4a2007-11-12 21:05:20 -08002486 } else {
2487 sk->sk_err = ENETDOWN;
2488 if (!sock_flag(sk, SOCK_DEAD))
2489 sk->sk_error_report(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 }
2491
2492out_unlock:
2493 spin_unlock(&po->bind_lock);
2494 release_sock(sk);
2495 return 0;
2496}
2497
2498/*
2499 * Bind a packet socket to a device
2500 */
2501
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002502static int packet_bind_spkt(struct socket *sock, struct sockaddr *uaddr,
2503 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504{
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002505 struct sock *sk = sock->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 char name[15];
2507 struct net_device *dev;
2508 int err = -ENODEV;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002509
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 /*
2511 * Check legality
2512 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002513
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08002514 if (addr_len != sizeof(struct sockaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 return -EINVAL;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002516 strlcpy(name, uaddr->sa_data, sizeof(name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002518 dev = dev_get_by_name(sock_net(sk), name);
Ben Greear160ff182011-06-01 07:18:52 +00002519 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 err = packet_do_bind(sk, dev, pkt_sk(sk)->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 return err;
2522}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
2524static int packet_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
2525{
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002526 struct sockaddr_ll *sll = (struct sockaddr_ll *)uaddr;
2527 struct sock *sk = sock->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 struct net_device *dev = NULL;
2529 int err;
2530
2531
2532 /*
2533 * Check legality
2534 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002535
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 if (addr_len < sizeof(struct sockaddr_ll))
2537 return -EINVAL;
2538 if (sll->sll_family != AF_PACKET)
2539 return -EINVAL;
2540
2541 if (sll->sll_ifindex) {
2542 err = -ENODEV;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002543 dev = dev_get_by_index(sock_net(sk), sll->sll_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 if (dev == NULL)
2545 goto out;
2546 }
2547 err = packet_do_bind(sk, dev, sll->sll_protocol ? : pkt_sk(sk)->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548
2549out:
2550 return err;
2551}
2552
2553static struct proto packet_proto = {
2554 .name = "PACKET",
2555 .owner = THIS_MODULE,
2556 .obj_size = sizeof(struct packet_sock),
2557};
2558
2559/*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002560 * Create a packet of type SOCK_PACKET.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 */
2562
Eric Paris3f378b62009-11-05 22:18:14 -08002563static int packet_create(struct net *net, struct socket *sock, int protocol,
2564 int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565{
2566 struct sock *sk;
2567 struct packet_sock *po;
Al Viro0e11c912006-11-08 00:26:29 -08002568 __be16 proto = (__force __be16)protocol; /* weird, but documented */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 int err;
2570
Eric W. Biedermandf008c92012-11-16 03:03:07 +00002571 if (!ns_capable(net->user_ns, CAP_NET_RAW))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 return -EPERM;
David S. Millerbe020972007-05-29 13:16:31 -07002573 if (sock->type != SOCK_DGRAM && sock->type != SOCK_RAW &&
2574 sock->type != SOCK_PACKET)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 return -ESOCKTNOSUPPORT;
2576
2577 sock->state = SS_UNCONNECTED;
2578
2579 err = -ENOBUFS;
Pavel Emelyanov6257ff22007-11-01 00:39:31 -07002580 sk = sk_alloc(net, PF_PACKET, GFP_KERNEL, &packet_proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 if (sk == NULL)
2582 goto out;
2583
2584 sock->ops = &packet_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 if (sock->type == SOCK_PACKET)
2586 sock->ops = &packet_ops_spkt;
David S. Millerbe020972007-05-29 13:16:31 -07002587
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 sock_init_data(sock, sk);
2589
2590 po = pkt_sk(sk);
2591 sk->sk_family = PF_PACKET;
Al Viro0e11c912006-11-08 00:26:29 -08002592 po->num = proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593
2594 sk->sk_destruct = packet_sock_destruct;
Pavel Emelyanov17ab56a2007-11-10 21:38:48 -08002595 sk_refcnt_debug_inc(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596
2597 /*
2598 * Attach a protocol block
2599 */
2600
2601 spin_lock_init(&po->bind_lock);
Herbert Xu905db442009-01-30 14:12:06 -08002602 mutex_init(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 po->prot_hook.func = packet_rcv;
David S. Millerbe020972007-05-29 13:16:31 -07002604
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 if (sock->type == SOCK_PACKET)
2606 po->prot_hook.func = packet_rcv_spkt;
David S. Millerbe020972007-05-29 13:16:31 -07002607
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 po->prot_hook.af_packet_priv = sk;
2609
Al Viro0e11c912006-11-08 00:26:29 -08002610 if (proto) {
2611 po->prot_hook.type = proto;
David S. Millerce06b032011-07-04 01:44:29 -07002612 register_prot_hook(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 }
2614
Pavel Emelyanov0fa7fa92012-08-21 01:06:47 +00002615 mutex_lock(&net->packet.sklist_lock);
stephen hemminger808f5112010-02-22 07:57:18 +00002616 sk_add_node_rcu(sk, &net->packet.sklist);
Pavel Emelyanov0fa7fa92012-08-21 01:06:47 +00002617 mutex_unlock(&net->packet.sklist_lock);
2618
2619 preempt_disable();
Eric Dumazet36804532008-11-19 14:25:35 -08002620 sock_prot_inuse_add(net, &packet_proto, 1);
Pavel Emelyanov0fa7fa92012-08-21 01:06:47 +00002621 preempt_enable();
stephen hemminger808f5112010-02-22 07:57:18 +00002622
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002623 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624out:
2625 return err;
2626}
2627
Richard Cochraned85b562010-04-07 22:41:28 +00002628static int packet_recv_error(struct sock *sk, struct msghdr *msg, int len)
2629{
2630 struct sock_exterr_skb *serr;
2631 struct sk_buff *skb, *skb2;
2632 int copied, err;
2633
2634 err = -EAGAIN;
2635 skb = skb_dequeue(&sk->sk_error_queue);
2636 if (skb == NULL)
2637 goto out;
2638
2639 copied = skb->len;
2640 if (copied > len) {
2641 msg->msg_flags |= MSG_TRUNC;
2642 copied = len;
2643 }
2644 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
2645 if (err)
2646 goto out_free_skb;
2647
2648 sock_recv_timestamp(msg, sk, skb);
2649
2650 serr = SKB_EXT_ERR(skb);
2651 put_cmsg(msg, SOL_PACKET, PACKET_TX_TIMESTAMP,
2652 sizeof(serr->ee), &serr->ee);
2653
2654 msg->msg_flags |= MSG_ERRQUEUE;
2655 err = copied;
2656
2657 /* Reset and regenerate socket error */
2658 spin_lock_bh(&sk->sk_error_queue.lock);
2659 sk->sk_err = 0;
2660 if ((skb2 = skb_peek(&sk->sk_error_queue)) != NULL) {
2661 sk->sk_err = SKB_EXT_ERR(skb2)->ee.ee_errno;
2662 spin_unlock_bh(&sk->sk_error_queue.lock);
2663 sk->sk_error_report(sk);
2664 } else
2665 spin_unlock_bh(&sk->sk_error_queue.lock);
2666
2667out_free_skb:
2668 kfree_skb(skb);
2669out:
2670 return err;
2671}
2672
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673/*
2674 * Pull a packet from our receive queue and hand it to the user.
2675 * If necessary we block.
2676 */
2677
2678static int packet_recvmsg(struct kiocb *iocb, struct socket *sock,
2679 struct msghdr *msg, size_t len, int flags)
2680{
2681 struct sock *sk = sock->sk;
2682 struct sk_buff *skb;
2683 int copied, err;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07002684 struct sockaddr_ll *sll;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002685 int vnet_hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686
2687 err = -EINVAL;
Richard Cochraned85b562010-04-07 22:41:28 +00002688 if (flags & ~(MSG_PEEK|MSG_DONTWAIT|MSG_TRUNC|MSG_CMSG_COMPAT|MSG_ERRQUEUE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 goto out;
2690
2691#if 0
2692 /* What error should we return now? EUNATTACH? */
2693 if (pkt_sk(sk)->ifindex < 0)
2694 return -ENODEV;
2695#endif
2696
Richard Cochraned85b562010-04-07 22:41:28 +00002697 if (flags & MSG_ERRQUEUE) {
2698 err = packet_recv_error(sk, msg, len);
2699 goto out;
2700 }
2701
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 * Call the generic datagram receiver. This handles all sorts
2704 * of horrible races and re-entrancy so we can forget about it
2705 * in the protocol layers.
2706 *
2707 * Now it will return ENETDOWN, if device have just gone down,
2708 * but then it will block.
2709 */
2710
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002711 skb = skb_recv_datagram(sk, flags, flags & MSG_DONTWAIT, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
2713 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002714 * An error occurred so return it. Because skb_recv_datagram()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 * handles the blocking we don't see and worry about blocking
2716 * retries.
2717 */
2718
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08002719 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 goto out;
2721
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002722 if (pkt_sk(sk)->has_vnet_hdr) {
2723 struct virtio_net_hdr vnet_hdr = { 0 };
2724
2725 err = -EINVAL;
2726 vnet_hdr_len = sizeof(vnet_hdr);
Mariusz Kozlowski1f18b712010-11-08 11:58:45 +00002727 if (len < vnet_hdr_len)
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002728 goto out_free;
2729
Mariusz Kozlowski1f18b712010-11-08 11:58:45 +00002730 len -= vnet_hdr_len;
2731
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002732 if (skb_is_gso(skb)) {
2733 struct skb_shared_info *sinfo = skb_shinfo(skb);
2734
2735 /* This is a hint as to how much should be linear. */
2736 vnet_hdr.hdr_len = skb_headlen(skb);
2737 vnet_hdr.gso_size = sinfo->gso_size;
2738 if (sinfo->gso_type & SKB_GSO_TCPV4)
2739 vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
2740 else if (sinfo->gso_type & SKB_GSO_TCPV6)
2741 vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
2742 else if (sinfo->gso_type & SKB_GSO_UDP)
2743 vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_UDP;
2744 else if (sinfo->gso_type & SKB_GSO_FCOE)
2745 goto out_free;
2746 else
2747 BUG();
2748 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
2749 vnet_hdr.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
2750 } else
2751 vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_NONE;
2752
2753 if (skb->ip_summed == CHECKSUM_PARTIAL) {
2754 vnet_hdr.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Michał Mirosław55508d62010-12-14 15:24:08 +00002755 vnet_hdr.csum_start = skb_checksum_start_offset(skb);
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002756 vnet_hdr.csum_offset = skb->csum_offset;
Jason Wang10a8d942011-06-10 00:56:17 +00002757 } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
2758 vnet_hdr.flags = VIRTIO_NET_HDR_F_DATA_VALID;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002759 } /* else everything is zero */
2760
2761 err = memcpy_toiovec(msg->msg_iov, (void *)&vnet_hdr,
2762 vnet_hdr_len);
2763 if (err < 0)
2764 goto out_free;
2765 }
2766
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 /*
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07002768 * If the address length field is there to be filled in, we fill
2769 * it in now.
2770 */
2771
Herbert Xuffbc6112007-02-04 23:33:10 -08002772 sll = &PACKET_SKB_CB(skb)->sa.ll;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07002773 if (sock->type == SOCK_PACKET)
2774 msg->msg_namelen = sizeof(struct sockaddr_pkt);
2775 else
2776 msg->msg_namelen = sll->sll_halen + offsetof(struct sockaddr_ll, sll_addr);
2777
2778 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 * You lose any data beyond the buffer you gave. If it worries a
2780 * user program they can ask the device for its MTU anyway.
2781 */
2782
2783 copied = skb->len;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002784 if (copied > len) {
2785 copied = len;
2786 msg->msg_flags |= MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 }
2788
2789 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
2790 if (err)
2791 goto out_free;
2792
Neil Horman3b885782009-10-12 13:26:31 -07002793 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794
2795 if (msg->msg_name)
Herbert Xuffbc6112007-02-04 23:33:10 -08002796 memcpy(msg->msg_name, &PACKET_SKB_CB(skb)->sa,
2797 msg->msg_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798
Herbert Xu8dc41942007-02-04 23:31:32 -08002799 if (pkt_sk(sk)->auxdata) {
Herbert Xuffbc6112007-02-04 23:33:10 -08002800 struct tpacket_auxdata aux;
2801
2802 aux.tp_status = TP_STATUS_USER;
2803 if (skb->ip_summed == CHECKSUM_PARTIAL)
2804 aux.tp_status |= TP_STATUS_CSUMNOTREADY;
2805 aux.tp_len = PACKET_SKB_CB(skb)->origlen;
2806 aux.tp_snaplen = skb->len;
2807 aux.tp_mac = 0;
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03002808 aux.tp_net = skb_network_offset(skb);
Ben Greeara3bcc232011-06-01 06:49:10 +00002809 if (vlan_tx_tag_present(skb)) {
2810 aux.tp_vlan_tci = vlan_tx_tag_get(skb);
2811 aux.tp_status |= TP_STATUS_VLAN_VALID;
2812 } else {
2813 aux.tp_vlan_tci = 0;
2814 }
Eric Dumazet13fcb7b2011-06-06 22:42:06 -07002815 aux.tp_padding = 0;
Herbert Xuffbc6112007-02-04 23:33:10 -08002816 put_cmsg(msg, SOL_PACKET, PACKET_AUXDATA, sizeof(aux), &aux);
Herbert Xu8dc41942007-02-04 23:31:32 -08002817 }
2818
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 /*
2820 * Free or return the buffer as appropriate. Again this
2821 * hides all the races and re-entrancy issues from us.
2822 */
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002823 err = vnet_hdr_len + ((flags&MSG_TRUNC) ? skb->len : copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824
2825out_free:
2826 skb_free_datagram(sk, skb);
2827out:
2828 return err;
2829}
2830
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831static int packet_getname_spkt(struct socket *sock, struct sockaddr *uaddr,
2832 int *uaddr_len, int peer)
2833{
2834 struct net_device *dev;
2835 struct sock *sk = sock->sk;
2836
2837 if (peer)
2838 return -EOPNOTSUPP;
2839
2840 uaddr->sa_family = AF_PACKET;
Eric Dumazet654d1f82009-11-02 10:43:32 +01002841 rcu_read_lock();
2842 dev = dev_get_by_index_rcu(sock_net(sk), pkt_sk(sk)->ifindex);
2843 if (dev)
Vasiliy Kulikov67286642010-11-10 12:09:10 -08002844 strncpy(uaddr->sa_data, dev->name, 14);
Eric Dumazet654d1f82009-11-02 10:43:32 +01002845 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 memset(uaddr->sa_data, 0, 14);
Eric Dumazet654d1f82009-11-02 10:43:32 +01002847 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 *uaddr_len = sizeof(*uaddr);
2849
2850 return 0;
2851}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852
2853static int packet_getname(struct socket *sock, struct sockaddr *uaddr,
2854 int *uaddr_len, int peer)
2855{
2856 struct net_device *dev;
2857 struct sock *sk = sock->sk;
2858 struct packet_sock *po = pkt_sk(sk);
Cyrill Gorcunov13cfa97b2009-11-08 05:51:19 +00002859 DECLARE_SOCKADDR(struct sockaddr_ll *, sll, uaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860
2861 if (peer)
2862 return -EOPNOTSUPP;
2863
2864 sll->sll_family = AF_PACKET;
2865 sll->sll_ifindex = po->ifindex;
2866 sll->sll_protocol = po->num;
Vasiliy Kulikov67286642010-11-10 12:09:10 -08002867 sll->sll_pkttype = 0;
Eric Dumazet654d1f82009-11-02 10:43:32 +01002868 rcu_read_lock();
2869 dev = dev_get_by_index_rcu(sock_net(sk), po->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 if (dev) {
2871 sll->sll_hatype = dev->type;
2872 sll->sll_halen = dev->addr_len;
2873 memcpy(sll->sll_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 } else {
2875 sll->sll_hatype = 0; /* Bad: we have no ARPHRD_UNSPEC */
2876 sll->sll_halen = 0;
2877 }
Eric Dumazet654d1f82009-11-02 10:43:32 +01002878 rcu_read_unlock();
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07002879 *uaddr_len = offsetof(struct sockaddr_ll, sll_addr) + sll->sll_halen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
2881 return 0;
2882}
2883
Wang Chen2aeb0b82008-07-14 20:49:46 -07002884static int packet_dev_mc(struct net_device *dev, struct packet_mclist *i,
2885 int what)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886{
2887 switch (i->type) {
2888 case PACKET_MR_MULTICAST:
Jiri Pirko11625632010-03-02 20:40:01 +00002889 if (i->alen != dev->addr_len)
2890 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 if (what > 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +00002892 return dev_mc_add(dev, i->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 else
Jiri Pirko22bedad32010-04-01 21:22:57 +00002894 return dev_mc_del(dev, i->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 break;
2896 case PACKET_MR_PROMISC:
Wang Chen2aeb0b82008-07-14 20:49:46 -07002897 return dev_set_promiscuity(dev, what);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 break;
2899 case PACKET_MR_ALLMULTI:
Wang Chen2aeb0b82008-07-14 20:49:46 -07002900 return dev_set_allmulti(dev, what);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 break;
Eric W. Biedermand95ed922009-05-19 18:27:17 +00002902 case PACKET_MR_UNICAST:
Jiri Pirko11625632010-03-02 20:40:01 +00002903 if (i->alen != dev->addr_len)
2904 return -EINVAL;
Eric W. Biedermand95ed922009-05-19 18:27:17 +00002905 if (what > 0)
Jiri Pirkoa748ee22010-04-01 21:22:09 +00002906 return dev_uc_add(dev, i->addr);
Eric W. Biedermand95ed922009-05-19 18:27:17 +00002907 else
Jiri Pirkoa748ee22010-04-01 21:22:09 +00002908 return dev_uc_del(dev, i->addr);
Eric W. Biedermand95ed922009-05-19 18:27:17 +00002909 break;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002910 default:
2911 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 }
Wang Chen2aeb0b82008-07-14 20:49:46 -07002913 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914}
2915
2916static void packet_dev_mclist(struct net_device *dev, struct packet_mclist *i, int what)
2917{
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002918 for ( ; i; i = i->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 if (i->ifindex == dev->ifindex)
2920 packet_dev_mc(dev, i, what);
2921 }
2922}
2923
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07002924static int packet_mc_add(struct sock *sk, struct packet_mreq_max *mreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925{
2926 struct packet_sock *po = pkt_sk(sk);
2927 struct packet_mclist *ml, *i;
2928 struct net_device *dev;
2929 int err;
2930
2931 rtnl_lock();
2932
2933 err = -ENODEV;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002934 dev = __dev_get_by_index(sock_net(sk), mreq->mr_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 if (!dev)
2936 goto done;
2937
2938 err = -EINVAL;
Jiri Pirko11625632010-03-02 20:40:01 +00002939 if (mreq->mr_alen > dev->addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 goto done;
2941
2942 err = -ENOBUFS;
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08002943 i = kmalloc(sizeof(*i), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 if (i == NULL)
2945 goto done;
2946
2947 err = 0;
2948 for (ml = po->mclist; ml; ml = ml->next) {
2949 if (ml->ifindex == mreq->mr_ifindex &&
2950 ml->type == mreq->mr_type &&
2951 ml->alen == mreq->mr_alen &&
2952 memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
2953 ml->count++;
2954 /* Free the new element ... */
2955 kfree(i);
2956 goto done;
2957 }
2958 }
2959
2960 i->type = mreq->mr_type;
2961 i->ifindex = mreq->mr_ifindex;
2962 i->alen = mreq->mr_alen;
2963 memcpy(i->addr, mreq->mr_address, i->alen);
2964 i->count = 1;
2965 i->next = po->mclist;
2966 po->mclist = i;
Wang Chen2aeb0b82008-07-14 20:49:46 -07002967 err = packet_dev_mc(dev, i, 1);
2968 if (err) {
2969 po->mclist = i->next;
2970 kfree(i);
2971 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972
2973done:
2974 rtnl_unlock();
2975 return err;
2976}
2977
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07002978static int packet_mc_drop(struct sock *sk, struct packet_mreq_max *mreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979{
2980 struct packet_mclist *ml, **mlp;
2981
2982 rtnl_lock();
2983
2984 for (mlp = &pkt_sk(sk)->mclist; (ml = *mlp) != NULL; mlp = &ml->next) {
2985 if (ml->ifindex == mreq->mr_ifindex &&
2986 ml->type == mreq->mr_type &&
2987 ml->alen == mreq->mr_alen &&
2988 memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
2989 if (--ml->count == 0) {
2990 struct net_device *dev;
2991 *mlp = ml->next;
Eric Dumazetad959e72009-10-16 06:38:46 +00002992 dev = __dev_get_by_index(sock_net(sk), ml->ifindex);
2993 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 packet_dev_mc(dev, ml, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 kfree(ml);
2996 }
2997 rtnl_unlock();
2998 return 0;
2999 }
3000 }
3001 rtnl_unlock();
3002 return -EADDRNOTAVAIL;
3003}
3004
3005static void packet_flush_mclist(struct sock *sk)
3006{
3007 struct packet_sock *po = pkt_sk(sk);
3008 struct packet_mclist *ml;
3009
3010 if (!po->mclist)
3011 return;
3012
3013 rtnl_lock();
3014 while ((ml = po->mclist) != NULL) {
3015 struct net_device *dev;
3016
3017 po->mclist = ml->next;
Eric Dumazetad959e72009-10-16 06:38:46 +00003018 dev = __dev_get_by_index(sock_net(sk), ml->ifindex);
3019 if (dev != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 packet_dev_mc(dev, ml, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 kfree(ml);
3022 }
3023 rtnl_unlock();
3024}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025
3026static int
David S. Millerb7058842009-09-30 16:12:20 -07003027packet_setsockopt(struct socket *sock, int level, int optname, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028{
3029 struct sock *sk = sock->sk;
Herbert Xu8dc41942007-02-04 23:31:32 -08003030 struct packet_sock *po = pkt_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 int ret;
3032
3033 if (level != SOL_PACKET)
3034 return -ENOPROTOOPT;
3035
Johann Baudy69e3c752009-05-18 22:11:22 -07003036 switch (optname) {
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003037 case PACKET_ADD_MEMBERSHIP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 case PACKET_DROP_MEMBERSHIP:
3039 {
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07003040 struct packet_mreq_max mreq;
3041 int len = optlen;
3042 memset(&mreq, 0, sizeof(mreq));
3043 if (len < sizeof(struct packet_mreq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 return -EINVAL;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07003045 if (len > sizeof(mreq))
3046 len = sizeof(mreq);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003047 if (copy_from_user(&mreq, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 return -EFAULT;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07003049 if (len < (mreq.mr_alen + offsetof(struct packet_mreq, mr_address)))
3050 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 if (optname == PACKET_ADD_MEMBERSHIP)
3052 ret = packet_mc_add(sk, &mreq);
3053 else
3054 ret = packet_mc_drop(sk, &mreq);
3055 return ret;
3056 }
David S. Millera2efcfa2007-05-29 13:12:50 -07003057
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 case PACKET_RX_RING:
Johann Baudy69e3c752009-05-18 22:11:22 -07003059 case PACKET_TX_RING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 {
chetan lokef6fb8f102011-08-19 10:18:16 +00003061 union tpacket_req_u req_u;
3062 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063
chetan lokef6fb8f102011-08-19 10:18:16 +00003064 switch (po->tp_version) {
3065 case TPACKET_V1:
3066 case TPACKET_V2:
3067 len = sizeof(req_u.req);
3068 break;
3069 case TPACKET_V3:
3070 default:
3071 len = sizeof(req_u.req3);
3072 break;
3073 }
3074 if (optlen < len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 return -EINVAL;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08003076 if (pkt_sk(sk)->has_vnet_hdr)
3077 return -EINVAL;
chetan lokef6fb8f102011-08-19 10:18:16 +00003078 if (copy_from_user(&req_u.req, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 return -EFAULT;
chetan lokef6fb8f102011-08-19 10:18:16 +00003080 return packet_set_ring(sk, &req_u, 0,
3081 optname == PACKET_TX_RING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 }
3083 case PACKET_COPY_THRESH:
3084 {
3085 int val;
3086
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003087 if (optlen != sizeof(val))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 return -EINVAL;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003089 if (copy_from_user(&val, optval, sizeof(val)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 return -EFAULT;
3091
3092 pkt_sk(sk)->copy_thresh = val;
3093 return 0;
3094 }
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003095 case PACKET_VERSION:
3096 {
3097 int val;
3098
3099 if (optlen != sizeof(val))
3100 return -EINVAL;
Johann Baudy69e3c752009-05-18 22:11:22 -07003101 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003102 return -EBUSY;
3103 if (copy_from_user(&val, optval, sizeof(val)))
3104 return -EFAULT;
3105 switch (val) {
3106 case TPACKET_V1:
3107 case TPACKET_V2:
chetan lokef6fb8f102011-08-19 10:18:16 +00003108 case TPACKET_V3:
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003109 po->tp_version = val;
3110 return 0;
3111 default:
3112 return -EINVAL;
3113 }
3114 }
Patrick McHardy8913336a2008-07-18 18:05:19 -07003115 case PACKET_RESERVE:
3116 {
3117 unsigned int val;
3118
3119 if (optlen != sizeof(val))
3120 return -EINVAL;
Johann Baudy69e3c752009-05-18 22:11:22 -07003121 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
Patrick McHardy8913336a2008-07-18 18:05:19 -07003122 return -EBUSY;
3123 if (copy_from_user(&val, optval, sizeof(val)))
3124 return -EFAULT;
3125 po->tp_reserve = val;
3126 return 0;
3127 }
Johann Baudy69e3c752009-05-18 22:11:22 -07003128 case PACKET_LOSS:
3129 {
3130 unsigned int val;
3131
3132 if (optlen != sizeof(val))
3133 return -EINVAL;
3134 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
3135 return -EBUSY;
3136 if (copy_from_user(&val, optval, sizeof(val)))
3137 return -EFAULT;
3138 po->tp_loss = !!val;
3139 return 0;
3140 }
Herbert Xu8dc41942007-02-04 23:31:32 -08003141 case PACKET_AUXDATA:
3142 {
3143 int val;
3144
3145 if (optlen < sizeof(val))
3146 return -EINVAL;
3147 if (copy_from_user(&val, optval, sizeof(val)))
3148 return -EFAULT;
3149
3150 po->auxdata = !!val;
3151 return 0;
3152 }
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07003153 case PACKET_ORIGDEV:
3154 {
3155 int val;
3156
3157 if (optlen < sizeof(val))
3158 return -EINVAL;
3159 if (copy_from_user(&val, optval, sizeof(val)))
3160 return -EFAULT;
3161
3162 po->origdev = !!val;
3163 return 0;
3164 }
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08003165 case PACKET_VNET_HDR:
3166 {
3167 int val;
3168
3169 if (sock->type != SOCK_RAW)
3170 return -EINVAL;
3171 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
3172 return -EBUSY;
3173 if (optlen < sizeof(val))
3174 return -EINVAL;
3175 if (copy_from_user(&val, optval, sizeof(val)))
3176 return -EFAULT;
3177
3178 po->has_vnet_hdr = !!val;
3179 return 0;
3180 }
Scott McMillan614f60f2010-06-02 05:53:56 -07003181 case PACKET_TIMESTAMP:
3182 {
3183 int val;
3184
3185 if (optlen != sizeof(val))
3186 return -EINVAL;
3187 if (copy_from_user(&val, optval, sizeof(val)))
3188 return -EFAULT;
3189
3190 po->tp_tstamp = val;
3191 return 0;
3192 }
David S. Millerdc99f602011-07-05 01:45:05 -07003193 case PACKET_FANOUT:
3194 {
3195 int val;
3196
3197 if (optlen != sizeof(val))
3198 return -EINVAL;
3199 if (copy_from_user(&val, optval, sizeof(val)))
3200 return -EFAULT;
3201
3202 return fanout_add(sk, val & 0xffff, val >> 16);
3203 }
Paul Chavent5920cd3a2012-11-06 23:10:47 +00003204 case PACKET_TX_HAS_OFF:
3205 {
3206 unsigned int val;
3207
3208 if (optlen != sizeof(val))
3209 return -EINVAL;
3210 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
3211 return -EBUSY;
3212 if (copy_from_user(&val, optval, sizeof(val)))
3213 return -EFAULT;
3214 po->tp_tx_has_off = !!val;
3215 return 0;
3216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 default:
3218 return -ENOPROTOOPT;
3219 }
3220}
3221
3222static int packet_getsockopt(struct socket *sock, int level, int optname,
3223 char __user *optval, int __user *optlen)
3224{
3225 int len;
Eric Dumazetc06fff62012-04-19 21:56:11 +00003226 int val, lv = sizeof(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 struct sock *sk = sock->sk;
3228 struct packet_sock *po = pkt_sk(sk);
Eric Dumazetc06fff62012-04-19 21:56:11 +00003229 void *data = &val;
Herbert Xu8dc41942007-02-04 23:31:32 -08003230 struct tpacket_stats st;
chetan lokef6fb8f102011-08-19 10:18:16 +00003231 union tpacket_stats_u st_u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232
3233 if (level != SOL_PACKET)
3234 return -ENOPROTOOPT;
3235
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08003236 if (get_user(len, optlen))
3237 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238
3239 if (len < 0)
3240 return -EINVAL;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003241
Johann Baudy69e3c752009-05-18 22:11:22 -07003242 switch (optname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 case PACKET_STATISTICS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 spin_lock_bh(&sk->sk_receive_queue.lock);
chetan lokef6fb8f102011-08-19 10:18:16 +00003245 if (po->tp_version == TPACKET_V3) {
Eric Dumazetc06fff62012-04-19 21:56:11 +00003246 lv = sizeof(struct tpacket_stats_v3);
chetan lokef6fb8f102011-08-19 10:18:16 +00003247 memcpy(&st_u.stats3, &po->stats,
Eric Dumazetc06fff62012-04-19 21:56:11 +00003248 sizeof(struct tpacket_stats));
chetan lokef6fb8f102011-08-19 10:18:16 +00003249 st_u.stats3.tp_freeze_q_cnt =
Eric Dumazetc06fff62012-04-19 21:56:11 +00003250 po->stats_u.stats3.tp_freeze_q_cnt;
chetan lokef6fb8f102011-08-19 10:18:16 +00003251 st_u.stats3.tp_packets += po->stats.tp_drops;
3252 data = &st_u.stats3;
3253 } else {
Eric Dumazetc06fff62012-04-19 21:56:11 +00003254 lv = sizeof(struct tpacket_stats);
chetan lokef6fb8f102011-08-19 10:18:16 +00003255 st = po->stats;
3256 st.tp_packets += st.tp_drops;
3257 data = &st;
3258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 memset(&po->stats, 0, sizeof(st));
3260 spin_unlock_bh(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 break;
Herbert Xu8dc41942007-02-04 23:31:32 -08003262 case PACKET_AUXDATA:
Herbert Xu8dc41942007-02-04 23:31:32 -08003263 val = po->auxdata;
Herbert Xu8dc41942007-02-04 23:31:32 -08003264 break;
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07003265 case PACKET_ORIGDEV:
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07003266 val = po->origdev;
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07003267 break;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08003268 case PACKET_VNET_HDR:
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08003269 val = po->has_vnet_hdr;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08003270 break;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003271 case PACKET_VERSION:
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003272 val = po->tp_version;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003273 break;
3274 case PACKET_HDRLEN:
3275 if (len > sizeof(int))
3276 len = sizeof(int);
3277 if (copy_from_user(&val, optval, len))
3278 return -EFAULT;
3279 switch (val) {
3280 case TPACKET_V1:
3281 val = sizeof(struct tpacket_hdr);
3282 break;
3283 case TPACKET_V2:
3284 val = sizeof(struct tpacket2_hdr);
3285 break;
chetan lokef6fb8f102011-08-19 10:18:16 +00003286 case TPACKET_V3:
3287 val = sizeof(struct tpacket3_hdr);
3288 break;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003289 default:
3290 return -EINVAL;
3291 }
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003292 break;
Patrick McHardy8913336a2008-07-18 18:05:19 -07003293 case PACKET_RESERVE:
Patrick McHardy8913336a2008-07-18 18:05:19 -07003294 val = po->tp_reserve;
Patrick McHardy8913336a2008-07-18 18:05:19 -07003295 break;
Johann Baudy69e3c752009-05-18 22:11:22 -07003296 case PACKET_LOSS:
Johann Baudy69e3c752009-05-18 22:11:22 -07003297 val = po->tp_loss;
Johann Baudy69e3c752009-05-18 22:11:22 -07003298 break;
Scott McMillan614f60f2010-06-02 05:53:56 -07003299 case PACKET_TIMESTAMP:
Scott McMillan614f60f2010-06-02 05:53:56 -07003300 val = po->tp_tstamp;
Scott McMillan614f60f2010-06-02 05:53:56 -07003301 break;
David S. Millerdc99f602011-07-05 01:45:05 -07003302 case PACKET_FANOUT:
David S. Millerdc99f602011-07-05 01:45:05 -07003303 val = (po->fanout ?
3304 ((u32)po->fanout->id |
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00003305 ((u32)po->fanout->type << 16) |
3306 ((u32)po->fanout->flags << 24)) :
David S. Millerdc99f602011-07-05 01:45:05 -07003307 0);
David S. Millerdc99f602011-07-05 01:45:05 -07003308 break;
Paul Chavent5920cd3a2012-11-06 23:10:47 +00003309 case PACKET_TX_HAS_OFF:
3310 val = po->tp_tx_has_off;
3311 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 default:
3313 return -ENOPROTOOPT;
3314 }
3315
Eric Dumazetc06fff62012-04-19 21:56:11 +00003316 if (len > lv)
3317 len = lv;
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08003318 if (put_user(len, optlen))
3319 return -EFAULT;
Herbert Xu8dc41942007-02-04 23:31:32 -08003320 if (copy_to_user(optval, data, len))
3321 return -EFAULT;
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08003322 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323}
3324
3325
3326static int packet_notifier(struct notifier_block *this, unsigned long msg, void *data)
3327{
3328 struct sock *sk;
Jason Lunzad930652007-02-20 23:19:54 -08003329 struct net_device *dev = data;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003330 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
stephen hemminger808f5112010-02-22 07:57:18 +00003332 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003333 sk_for_each_rcu(sk, &net->packet.sklist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334 struct packet_sock *po = pkt_sk(sk);
3335
3336 switch (msg) {
3337 case NETDEV_UNREGISTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 if (po->mclist)
3339 packet_dev_mclist(dev, po->mclist, -1);
David S. Millera2efcfa2007-05-29 13:12:50 -07003340 /* fallthrough */
3341
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 case NETDEV_DOWN:
3343 if (dev->ifindex == po->ifindex) {
3344 spin_lock(&po->bind_lock);
3345 if (po->running) {
David S. Millerce06b032011-07-04 01:44:29 -07003346 __unregister_prot_hook(sk, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 sk->sk_err = ENETDOWN;
3348 if (!sock_flag(sk, SOCK_DEAD))
3349 sk->sk_error_report(sk);
3350 }
3351 if (msg == NETDEV_UNREGISTER) {
3352 po->ifindex = -1;
Ben Greear160ff182011-06-01 07:18:52 +00003353 if (po->prot_hook.dev)
3354 dev_put(po->prot_hook.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 po->prot_hook.dev = NULL;
3356 }
3357 spin_unlock(&po->bind_lock);
3358 }
3359 break;
3360 case NETDEV_UP:
stephen hemminger808f5112010-02-22 07:57:18 +00003361 if (dev->ifindex == po->ifindex) {
3362 spin_lock(&po->bind_lock);
David S. Millerce06b032011-07-04 01:44:29 -07003363 if (po->num)
3364 register_prot_hook(sk);
stephen hemminger808f5112010-02-22 07:57:18 +00003365 spin_unlock(&po->bind_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 break;
3368 }
3369 }
stephen hemminger808f5112010-02-22 07:57:18 +00003370 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371 return NOTIFY_DONE;
3372}
3373
3374
3375static int packet_ioctl(struct socket *sock, unsigned int cmd,
3376 unsigned long arg)
3377{
3378 struct sock *sk = sock->sk;
3379
Johann Baudy69e3c752009-05-18 22:11:22 -07003380 switch (cmd) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003381 case SIOCOUTQ:
3382 {
3383 int amount = sk_wmem_alloc_get(sk);
Eric Dumazet31e6d362009-06-17 19:05:41 -07003384
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003385 return put_user(amount, (int __user *)arg);
3386 }
3387 case SIOCINQ:
3388 {
3389 struct sk_buff *skb;
3390 int amount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003392 spin_lock_bh(&sk->sk_receive_queue.lock);
3393 skb = skb_peek(&sk->sk_receive_queue);
3394 if (skb)
3395 amount = skb->len;
3396 spin_unlock_bh(&sk->sk_receive_queue.lock);
3397 return put_user(amount, (int __user *)arg);
3398 }
3399 case SIOCGSTAMP:
3400 return sock_get_timestamp(sk, (struct timeval __user *)arg);
3401 case SIOCGSTAMPNS:
3402 return sock_get_timestampns(sk, (struct timespec __user *)arg);
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003403
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404#ifdef CONFIG_INET
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003405 case SIOCADDRT:
3406 case SIOCDELRT:
3407 case SIOCDARP:
3408 case SIOCGARP:
3409 case SIOCSARP:
3410 case SIOCGIFADDR:
3411 case SIOCSIFADDR:
3412 case SIOCGIFBRDADDR:
3413 case SIOCSIFBRDADDR:
3414 case SIOCGIFNETMASK:
3415 case SIOCSIFNETMASK:
3416 case SIOCGIFDSTADDR:
3417 case SIOCSIFDSTADDR:
3418 case SIOCSIFFLAGS:
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003419 return inet_dgram_ops.ioctl(sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420#endif
3421
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003422 default:
3423 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 }
3425 return 0;
3426}
3427
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003428static unsigned int packet_poll(struct file *file, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429 poll_table *wait)
3430{
3431 struct sock *sk = sock->sk;
3432 struct packet_sock *po = pkt_sk(sk);
3433 unsigned int mask = datagram_poll(file, sock, wait);
3434
3435 spin_lock_bh(&sk->sk_receive_queue.lock);
Johann Baudy69e3c752009-05-18 22:11:22 -07003436 if (po->rx_ring.pg_vec) {
chetan lokef6fb8f102011-08-19 10:18:16 +00003437 if (!packet_previous_rx_frame(po, &po->rx_ring,
3438 TP_STATUS_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 mask |= POLLIN | POLLRDNORM;
3440 }
3441 spin_unlock_bh(&sk->sk_receive_queue.lock);
Johann Baudy69e3c752009-05-18 22:11:22 -07003442 spin_lock_bh(&sk->sk_write_queue.lock);
3443 if (po->tx_ring.pg_vec) {
3444 if (packet_current_frame(po, &po->tx_ring, TP_STATUS_AVAILABLE))
3445 mask |= POLLOUT | POLLWRNORM;
3446 }
3447 spin_unlock_bh(&sk->sk_write_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 return mask;
3449}
3450
3451
3452/* Dirty? Well, I still did not learn better way to account
3453 * for user mmaps.
3454 */
3455
3456static void packet_mm_open(struct vm_area_struct *vma)
3457{
3458 struct file *file = vma->vm_file;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003459 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003461
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 if (sk)
3463 atomic_inc(&pkt_sk(sk)->mapped);
3464}
3465
3466static void packet_mm_close(struct vm_area_struct *vma)
3467{
3468 struct file *file = vma->vm_file;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003469 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003471
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472 if (sk)
3473 atomic_dec(&pkt_sk(sk)->mapped);
3474}
3475
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04003476static const struct vm_operations_struct packet_mmap_ops = {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003477 .open = packet_mm_open,
3478 .close = packet_mm_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479};
3480
Neil Horman0e3125c2010-11-16 10:26:47 -08003481static void free_pg_vec(struct pgv *pg_vec, unsigned int order,
3482 unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483{
3484 int i;
3485
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003486 for (i = 0; i < len; i++) {
Neil Horman0e3125c2010-11-16 10:26:47 -08003487 if (likely(pg_vec[i].buffer)) {
Changli Gaoc56b4d92010-12-01 02:52:57 +00003488 if (is_vmalloc_addr(pg_vec[i].buffer))
Neil Horman0e3125c2010-11-16 10:26:47 -08003489 vfree(pg_vec[i].buffer);
3490 else
3491 free_pages((unsigned long)pg_vec[i].buffer,
3492 order);
3493 pg_vec[i].buffer = NULL;
3494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 }
3496 kfree(pg_vec);
3497}
3498
Olof Johanssoneea49cc92011-11-02 11:00:49 +00003499static char *alloc_one_pg_vec_page(unsigned long order)
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003500{
Neil Horman0e3125c2010-11-16 10:26:47 -08003501 char *buffer = NULL;
3502 gfp_t gfp_flags = GFP_KERNEL | __GFP_COMP |
3503 __GFP_ZERO | __GFP_NOWARN | __GFP_NORETRY;
Eric Dumazet719bfea2009-04-15 03:39:52 -07003504
Neil Horman0e3125c2010-11-16 10:26:47 -08003505 buffer = (char *) __get_free_pages(gfp_flags, order);
3506
3507 if (buffer)
3508 return buffer;
3509
3510 /*
3511 * __get_free_pages failed, fall back to vmalloc
3512 */
Eric Dumazetbbce5a52010-11-20 07:31:54 +00003513 buffer = vzalloc((1 << order) * PAGE_SIZE);
Neil Horman0e3125c2010-11-16 10:26:47 -08003514
3515 if (buffer)
3516 return buffer;
3517
3518 /*
3519 * vmalloc failed, lets dig into swap here
3520 */
Neil Horman0e3125c2010-11-16 10:26:47 -08003521 gfp_flags &= ~__GFP_NORETRY;
3522 buffer = (char *)__get_free_pages(gfp_flags, order);
3523 if (buffer)
3524 return buffer;
3525
3526 /*
3527 * complete and utter failure
3528 */
3529 return NULL;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003530}
3531
Neil Horman0e3125c2010-11-16 10:26:47 -08003532static struct pgv *alloc_pg_vec(struct tpacket_req *req, int order)
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003533{
3534 unsigned int block_nr = req->tp_block_nr;
Neil Horman0e3125c2010-11-16 10:26:47 -08003535 struct pgv *pg_vec;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003536 int i;
3537
Neil Horman0e3125c2010-11-16 10:26:47 -08003538 pg_vec = kcalloc(block_nr, sizeof(struct pgv), GFP_KERNEL);
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003539 if (unlikely(!pg_vec))
3540 goto out;
3541
3542 for (i = 0; i < block_nr; i++) {
Changli Gaoc56b4d92010-12-01 02:52:57 +00003543 pg_vec[i].buffer = alloc_one_pg_vec_page(order);
Neil Horman0e3125c2010-11-16 10:26:47 -08003544 if (unlikely(!pg_vec[i].buffer))
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003545 goto out_free_pgvec;
3546 }
3547
3548out:
3549 return pg_vec;
3550
3551out_free_pgvec:
3552 free_pg_vec(pg_vec, order, block_nr);
3553 pg_vec = NULL;
3554 goto out;
3555}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556
chetan lokef6fb8f102011-08-19 10:18:16 +00003557static int packet_set_ring(struct sock *sk, union tpacket_req_u *req_u,
Johann Baudy69e3c752009-05-18 22:11:22 -07003558 int closing, int tx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559{
Neil Horman0e3125c2010-11-16 10:26:47 -08003560 struct pgv *pg_vec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 struct packet_sock *po = pkt_sk(sk);
Al Viro0e11c912006-11-08 00:26:29 -08003562 int was_running, order = 0;
Johann Baudy69e3c752009-05-18 22:11:22 -07003563 struct packet_ring_buffer *rb;
3564 struct sk_buff_head *rb_queue;
Al Viro0e11c912006-11-08 00:26:29 -08003565 __be16 num;
chetan lokef6fb8f102011-08-19 10:18:16 +00003566 int err = -EINVAL;
3567 /* Added to avoid minimal code churn */
3568 struct tpacket_req *req = &req_u->req;
3569
3570 /* Opening a Tx-ring is NOT supported in TPACKET_V3 */
3571 if (!closing && tx_ring && (po->tp_version > TPACKET_V2)) {
3572 WARN(1, "Tx-ring is not supported.\n");
3573 goto out;
3574 }
Johann Baudy69e3c752009-05-18 22:11:22 -07003575
3576 rb = tx_ring ? &po->tx_ring : &po->rx_ring;
3577 rb_queue = tx_ring ? &sk->sk_write_queue : &sk->sk_receive_queue;
3578
3579 err = -EBUSY;
3580 if (!closing) {
3581 if (atomic_read(&po->mapped))
3582 goto out;
3583 if (atomic_read(&rb->pending))
3584 goto out;
3585 }
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003586
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587 if (req->tp_block_nr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 /* Sanity tests and some calculations */
Johann Baudy69e3c752009-05-18 22:11:22 -07003589 err = -EBUSY;
3590 if (unlikely(rb->pg_vec))
3591 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003593 switch (po->tp_version) {
3594 case TPACKET_V1:
3595 po->tp_hdrlen = TPACKET_HDRLEN;
3596 break;
3597 case TPACKET_V2:
3598 po->tp_hdrlen = TPACKET2_HDRLEN;
3599 break;
chetan lokef6fb8f102011-08-19 10:18:16 +00003600 case TPACKET_V3:
3601 po->tp_hdrlen = TPACKET3_HDRLEN;
3602 break;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003603 }
3604
Johann Baudy69e3c752009-05-18 22:11:22 -07003605 err = -EINVAL;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003606 if (unlikely((int)req->tp_block_size <= 0))
Johann Baudy69e3c752009-05-18 22:11:22 -07003607 goto out;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003608 if (unlikely(req->tp_block_size & (PAGE_SIZE - 1)))
Johann Baudy69e3c752009-05-18 22:11:22 -07003609 goto out;
Patrick McHardy8913336a2008-07-18 18:05:19 -07003610 if (unlikely(req->tp_frame_size < po->tp_hdrlen +
Johann Baudy69e3c752009-05-18 22:11:22 -07003611 po->tp_reserve))
3612 goto out;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003613 if (unlikely(req->tp_frame_size & (TPACKET_ALIGNMENT - 1)))
Johann Baudy69e3c752009-05-18 22:11:22 -07003614 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615
Johann Baudy69e3c752009-05-18 22:11:22 -07003616 rb->frames_per_block = req->tp_block_size/req->tp_frame_size;
3617 if (unlikely(rb->frames_per_block <= 0))
3618 goto out;
3619 if (unlikely((rb->frames_per_block * req->tp_block_nr) !=
3620 req->tp_frame_nr))
3621 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622
3623 err = -ENOMEM;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003624 order = get_order(req->tp_block_size);
3625 pg_vec = alloc_pg_vec(req, order);
3626 if (unlikely(!pg_vec))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 goto out;
chetan lokef6fb8f102011-08-19 10:18:16 +00003628 switch (po->tp_version) {
3629 case TPACKET_V3:
3630 /* Transmit path is not supported. We checked
3631 * it above but just being paranoid
3632 */
3633 if (!tx_ring)
3634 init_prb_bdqc(po, rb, pg_vec, req_u, tx_ring);
3635 break;
3636 default:
3637 break;
3638 }
Johann Baudy69e3c752009-05-18 22:11:22 -07003639 }
3640 /* Done */
3641 else {
3642 err = -EINVAL;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003643 if (unlikely(req->tp_frame_nr))
Johann Baudy69e3c752009-05-18 22:11:22 -07003644 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645 }
3646
3647 lock_sock(sk);
3648
3649 /* Detach socket from network */
3650 spin_lock(&po->bind_lock);
3651 was_running = po->running;
3652 num = po->num;
3653 if (was_running) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 po->num = 0;
David S. Millerce06b032011-07-04 01:44:29 -07003655 __unregister_prot_hook(sk, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656 }
3657 spin_unlock(&po->bind_lock);
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003658
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 synchronize_net();
3660
3661 err = -EBUSY;
Herbert Xu905db442009-01-30 14:12:06 -08003662 mutex_lock(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 if (closing || atomic_read(&po->mapped) == 0) {
3664 err = 0;
Johann Baudy69e3c752009-05-18 22:11:22 -07003665 spin_lock_bh(&rb_queue->lock);
Changli Gaoc053fd92010-12-10 16:02:20 -08003666 swap(rb->pg_vec, pg_vec);
Johann Baudy69e3c752009-05-18 22:11:22 -07003667 rb->frame_max = (req->tp_frame_nr - 1);
3668 rb->head = 0;
3669 rb->frame_size = req->tp_frame_size;
3670 spin_unlock_bh(&rb_queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671
Changli Gaoc053fd92010-12-10 16:02:20 -08003672 swap(rb->pg_vec_order, order);
3673 swap(rb->pg_vec_len, req->tp_block_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674
Johann Baudy69e3c752009-05-18 22:11:22 -07003675 rb->pg_vec_pages = req->tp_block_size/PAGE_SIZE;
3676 po->prot_hook.func = (po->rx_ring.pg_vec) ?
3677 tpacket_rcv : packet_rcv;
3678 skb_queue_purge(rb_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679 if (atomic_read(&po->mapped))
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003680 pr_err("packet_mmap: vma is busy: %d\n",
3681 atomic_read(&po->mapped));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682 }
Herbert Xu905db442009-01-30 14:12:06 -08003683 mutex_unlock(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684
3685 spin_lock(&po->bind_lock);
David S. Millerce06b032011-07-04 01:44:29 -07003686 if (was_running) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 po->num = num;
David S. Millerce06b032011-07-04 01:44:29 -07003688 register_prot_hook(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 }
3690 spin_unlock(&po->bind_lock);
chetan lokef6fb8f102011-08-19 10:18:16 +00003691 if (closing && (po->tp_version > TPACKET_V2)) {
3692 /* Because we don't support block-based V3 on tx-ring */
3693 if (!tx_ring)
3694 prb_shutdown_retire_blk_timer(po, tx_ring, rb_queue);
3695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 release_sock(sk);
3697
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 if (pg_vec)
3699 free_pg_vec(pg_vec, order, req->tp_block_nr);
3700out:
3701 return err;
3702}
3703
Johann Baudy69e3c752009-05-18 22:11:22 -07003704static int packet_mmap(struct file *file, struct socket *sock,
3705 struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706{
3707 struct sock *sk = sock->sk;
3708 struct packet_sock *po = pkt_sk(sk);
Johann Baudy69e3c752009-05-18 22:11:22 -07003709 unsigned long size, expected_size;
3710 struct packet_ring_buffer *rb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711 unsigned long start;
3712 int err = -EINVAL;
3713 int i;
3714
3715 if (vma->vm_pgoff)
3716 return -EINVAL;
3717
Herbert Xu905db442009-01-30 14:12:06 -08003718 mutex_lock(&po->pg_vec_lock);
Johann Baudy69e3c752009-05-18 22:11:22 -07003719
3720 expected_size = 0;
3721 for (rb = &po->rx_ring; rb <= &po->tx_ring; rb++) {
3722 if (rb->pg_vec) {
3723 expected_size += rb->pg_vec_len
3724 * rb->pg_vec_pages
3725 * PAGE_SIZE;
3726 }
3727 }
3728
3729 if (expected_size == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730 goto out;
Johann Baudy69e3c752009-05-18 22:11:22 -07003731
3732 size = vma->vm_end - vma->vm_start;
3733 if (size != expected_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 goto out;
3735
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736 start = vma->vm_start;
Johann Baudy69e3c752009-05-18 22:11:22 -07003737 for (rb = &po->rx_ring; rb <= &po->tx_ring; rb++) {
3738 if (rb->pg_vec == NULL)
3739 continue;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003740
Johann Baudy69e3c752009-05-18 22:11:22 -07003741 for (i = 0; i < rb->pg_vec_len; i++) {
Neil Horman0e3125c2010-11-16 10:26:47 -08003742 struct page *page;
3743 void *kaddr = rb->pg_vec[i].buffer;
Johann Baudy69e3c752009-05-18 22:11:22 -07003744 int pg_num;
3745
Changli Gaoc56b4d92010-12-01 02:52:57 +00003746 for (pg_num = 0; pg_num < rb->pg_vec_pages; pg_num++) {
3747 page = pgv_to_page(kaddr);
Johann Baudy69e3c752009-05-18 22:11:22 -07003748 err = vm_insert_page(vma, start, page);
3749 if (unlikely(err))
3750 goto out;
3751 start += PAGE_SIZE;
Neil Horman0e3125c2010-11-16 10:26:47 -08003752 kaddr += PAGE_SIZE;
Johann Baudy69e3c752009-05-18 22:11:22 -07003753 }
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003754 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755 }
Johann Baudy69e3c752009-05-18 22:11:22 -07003756
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003757 atomic_inc(&po->mapped);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758 vma->vm_ops = &packet_mmap_ops;
3759 err = 0;
3760
3761out:
Herbert Xu905db442009-01-30 14:12:06 -08003762 mutex_unlock(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763 return err;
3764}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08003766static const struct proto_ops packet_ops_spkt = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767 .family = PF_PACKET,
3768 .owner = THIS_MODULE,
3769 .release = packet_release,
3770 .bind = packet_bind_spkt,
3771 .connect = sock_no_connect,
3772 .socketpair = sock_no_socketpair,
3773 .accept = sock_no_accept,
3774 .getname = packet_getname_spkt,
3775 .poll = datagram_poll,
3776 .ioctl = packet_ioctl,
3777 .listen = sock_no_listen,
3778 .shutdown = sock_no_shutdown,
3779 .setsockopt = sock_no_setsockopt,
3780 .getsockopt = sock_no_getsockopt,
3781 .sendmsg = packet_sendmsg_spkt,
3782 .recvmsg = packet_recvmsg,
3783 .mmap = sock_no_mmap,
3784 .sendpage = sock_no_sendpage,
3785};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08003787static const struct proto_ops packet_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788 .family = PF_PACKET,
3789 .owner = THIS_MODULE,
3790 .release = packet_release,
3791 .bind = packet_bind,
3792 .connect = sock_no_connect,
3793 .socketpair = sock_no_socketpair,
3794 .accept = sock_no_accept,
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003795 .getname = packet_getname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796 .poll = packet_poll,
3797 .ioctl = packet_ioctl,
3798 .listen = sock_no_listen,
3799 .shutdown = sock_no_shutdown,
3800 .setsockopt = packet_setsockopt,
3801 .getsockopt = packet_getsockopt,
3802 .sendmsg = packet_sendmsg,
3803 .recvmsg = packet_recvmsg,
3804 .mmap = packet_mmap,
3805 .sendpage = sock_no_sendpage,
3806};
3807
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00003808static const struct net_proto_family packet_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 .family = PF_PACKET,
3810 .create = packet_create,
3811 .owner = THIS_MODULE,
3812};
3813
3814static struct notifier_block packet_netdev_notifier = {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003815 .notifier_call = packet_notifier,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816};
3817
3818#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819
3820static void *packet_seq_start(struct seq_file *seq, loff_t *pos)
stephen hemminger808f5112010-02-22 07:57:18 +00003821 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822{
Denis V. Luneve372c412007-11-19 22:31:54 -08003823 struct net *net = seq_file_net(seq);
stephen hemminger808f5112010-02-22 07:57:18 +00003824
3825 rcu_read_lock();
3826 return seq_hlist_start_head_rcu(&net->packet.sklist, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827}
3828
3829static void *packet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3830{
Herbert Xu1bf40952007-12-16 14:04:02 -08003831 struct net *net = seq_file_net(seq);
stephen hemminger808f5112010-02-22 07:57:18 +00003832 return seq_hlist_next_rcu(v, &net->packet.sklist, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833}
3834
3835static void packet_seq_stop(struct seq_file *seq, void *v)
stephen hemminger808f5112010-02-22 07:57:18 +00003836 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837{
stephen hemminger808f5112010-02-22 07:57:18 +00003838 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839}
3840
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003841static int packet_seq_show(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842{
3843 if (v == SEQ_START_TOKEN)
3844 seq_puts(seq, "sk RefCnt Type Proto Iface R Rmem User Inode\n");
3845 else {
Li Zefanb7ceabd2010-02-08 23:19:29 +00003846 struct sock *s = sk_entry(v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 const struct packet_sock *po = pkt_sk(s);
3848
3849 seq_printf(seq,
Dan Rosenberg71338aa2011-05-23 12:17:35 +00003850 "%pK %-6d %-4d %04x %-5d %1d %-6u %-6u %-6lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 s,
3852 atomic_read(&s->sk_refcnt),
3853 s->sk_type,
3854 ntohs(po->num),
3855 po->ifindex,
3856 po->running,
3857 atomic_read(&s->sk_rmem_alloc),
Eric W. Biedermana7cb5a42012-05-24 01:10:10 -06003858 from_kuid_munged(seq_user_ns(seq), sock_i_uid(s)),
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003859 sock_i_ino(s));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 }
3861
3862 return 0;
3863}
3864
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003865static const struct seq_operations packet_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 .start = packet_seq_start,
3867 .next = packet_seq_next,
3868 .stop = packet_seq_stop,
3869 .show = packet_seq_show,
3870};
3871
3872static int packet_seq_open(struct inode *inode, struct file *file)
3873{
Denis V. Luneve372c412007-11-19 22:31:54 -08003874 return seq_open_net(inode, file, &packet_seq_ops,
3875 sizeof(struct seq_net_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876}
3877
Arjan van de Venda7071d2007-02-12 00:55:36 -08003878static const struct file_operations packet_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879 .owner = THIS_MODULE,
3880 .open = packet_seq_open,
3881 .read = seq_read,
3882 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08003883 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884};
3885
3886#endif
3887
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003888static int __net_init packet_net_init(struct net *net)
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08003889{
Pavel Emelyanov0fa7fa92012-08-21 01:06:47 +00003890 mutex_init(&net->packet.sklist_lock);
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08003891 INIT_HLIST_HEAD(&net->packet.sklist);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08003892
Gao fengd4beaa62013-02-18 01:34:54 +00003893 if (!proc_create("packet", 0, net->proc_net, &packet_seq_fops))
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08003894 return -ENOMEM;
3895
3896 return 0;
3897}
3898
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003899static void __net_exit packet_net_exit(struct net *net)
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08003900{
Gao fengece31ff2013-02-18 01:34:56 +00003901 remove_proc_entry("packet", net->proc_net);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08003902}
3903
3904static struct pernet_operations packet_net_ops = {
3905 .init = packet_net_init,
3906 .exit = packet_net_exit,
3907};
3908
3909
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910static void __exit packet_exit(void)
3911{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 unregister_netdevice_notifier(&packet_netdev_notifier);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08003913 unregister_pernet_subsys(&packet_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 sock_unregister(PF_PACKET);
3915 proto_unregister(&packet_proto);
3916}
3917
3918static int __init packet_init(void)
3919{
3920 int rc = proto_register(&packet_proto, 0);
3921
3922 if (rc != 0)
3923 goto out;
3924
3925 sock_register(&packet_family_ops);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08003926 register_pernet_subsys(&packet_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927 register_netdevice_notifier(&packet_netdev_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928out:
3929 return rc;
3930}
3931
3932module_init(packet_init);
3933module_exit(packet_exit);
3934MODULE_LICENSE("GPL");
3935MODULE_ALIAS_NETPROTO(PF_PACKET);