blob: 01039d2b16955ad459c4e14362b940ef794beed1 [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>
Daniel Borkmannb0138402014-01-15 16:25:36 +010091#include <linux/percpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#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
Daniel Borkmann184f4892013-04-16 01:57:46 +0000161union tpacket_uhdr {
162 struct tpacket_hdr *h1;
163 struct tpacket2_hdr *h2;
164 struct tpacket3_hdr *h3;
165 void *raw;
166};
167
chetan lokef6fb8f102011-08-19 10:18:16 +0000168static int packet_set_ring(struct sock *sk, union tpacket_req_u *req_u,
Johann Baudy69e3c752009-05-18 22:11:22 -0700169 int closing, int tx_ring);
170
chetan lokef6fb8f102011-08-19 10:18:16 +0000171#define V3_ALIGNMENT (8)
172
chetan lokebc59ba32011-08-25 10:43:30 +0000173#define BLK_HDR_LEN (ALIGN(sizeof(struct tpacket_block_desc), V3_ALIGNMENT))
chetan lokef6fb8f102011-08-19 10:18:16 +0000174
175#define BLK_PLUS_PRIV(sz_of_priv) \
176 (BLK_HDR_LEN + ALIGN((sz_of_priv), V3_ALIGNMENT))
177
chetan lokef6fb8f102011-08-19 10:18:16 +0000178#define PGV_FROM_VMALLOC 1
Johann Baudy69e3c752009-05-18 22:11:22 -0700179
chetan lokef6fb8f102011-08-19 10:18:16 +0000180#define BLOCK_STATUS(x) ((x)->hdr.bh1.block_status)
181#define BLOCK_NUM_PKTS(x) ((x)->hdr.bh1.num_pkts)
182#define BLOCK_O2FP(x) ((x)->hdr.bh1.offset_to_first_pkt)
183#define BLOCK_LEN(x) ((x)->hdr.bh1.blk_len)
184#define BLOCK_SNUM(x) ((x)->hdr.bh1.seq_num)
185#define BLOCK_O2PRIV(x) ((x)->offset_to_priv)
186#define BLOCK_PRIV(x) ((void *)((char *)(x) + BLOCK_O2PRIV(x)))
187
Johann Baudy69e3c752009-05-18 22:11:22 -0700188struct packet_sock;
189static int tpacket_snd(struct packet_sock *po, struct msghdr *msg);
Willem de Bruijn77f65eb2013-03-19 10:18:11 +0000190static int tpacket_rcv(struct sk_buff *skb, struct net_device *dev,
191 struct packet_type *pt, struct net_device *orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
chetan lokef6fb8f102011-08-19 10:18:16 +0000193static void *packet_previous_frame(struct packet_sock *po,
194 struct packet_ring_buffer *rb,
195 int status);
196static void packet_increment_head(struct packet_ring_buffer *buff);
chetan lokebc59ba32011-08-25 10:43:30 +0000197static int prb_curr_blk_in_use(struct tpacket_kbdq_core *,
198 struct tpacket_block_desc *);
199static void *prb_dispatch_next_block(struct tpacket_kbdq_core *,
chetan lokef6fb8f102011-08-19 10:18:16 +0000200 struct packet_sock *);
chetan lokebc59ba32011-08-25 10:43:30 +0000201static void prb_retire_current_block(struct tpacket_kbdq_core *,
chetan lokef6fb8f102011-08-19 10:18:16 +0000202 struct packet_sock *, unsigned int status);
chetan lokebc59ba32011-08-25 10:43:30 +0000203static int prb_queue_frozen(struct tpacket_kbdq_core *);
204static void prb_open_block(struct tpacket_kbdq_core *,
205 struct tpacket_block_desc *);
chetan lokef6fb8f102011-08-19 10:18:16 +0000206static void prb_retire_rx_blk_timer_expired(unsigned long);
chetan lokebc59ba32011-08-25 10:43:30 +0000207static void _prb_refresh_rx_retire_blk_timer(struct tpacket_kbdq_core *);
208static void prb_init_blk_timer(struct packet_sock *,
209 struct tpacket_kbdq_core *,
210 void (*func) (unsigned long));
211static void prb_fill_rxhash(struct tpacket_kbdq_core *, struct tpacket3_hdr *);
212static void prb_clear_rxhash(struct tpacket_kbdq_core *,
213 struct tpacket3_hdr *);
214static void prb_fill_vlan_info(struct tpacket_kbdq_core *,
215 struct tpacket3_hdr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216static void packet_flush_mclist(struct sock *sk);
217
Herbert Xuffbc6112007-02-04 23:33:10 -0800218struct packet_skb_cb {
219 unsigned int origlen;
220 union {
221 struct sockaddr_pkt pkt;
222 struct sockaddr_ll ll;
223 } sa;
224};
225
226#define PACKET_SKB_CB(__skb) ((struct packet_skb_cb *)((__skb)->cb))
Herbert Xu8dc41942007-02-04 23:31:32 -0800227
chetan lokebc59ba32011-08-25 10:43:30 +0000228#define GET_PBDQC_FROM_RB(x) ((struct tpacket_kbdq_core *)(&(x)->prb_bdqc))
chetan lokef6fb8f102011-08-19 10:18:16 +0000229#define GET_PBLOCK_DESC(x, bid) \
chetan lokebc59ba32011-08-25 10:43:30 +0000230 ((struct tpacket_block_desc *)((x)->pkbdq[(bid)].buffer))
chetan lokef6fb8f102011-08-19 10:18:16 +0000231#define GET_CURR_PBLOCK_DESC_FROM_CORE(x) \
chetan lokebc59ba32011-08-25 10:43:30 +0000232 ((struct tpacket_block_desc *)((x)->pkbdq[(x)->kactive_blk_num].buffer))
chetan lokef6fb8f102011-08-19 10:18:16 +0000233#define GET_NEXT_PRB_BLK_NUM(x) \
234 (((x)->kactive_blk_num < ((x)->knum_blocks-1)) ? \
235 ((x)->kactive_blk_num+1) : 0)
236
David S. Millerdc99f602011-07-05 01:45:05 -0700237static void __fanout_unlink(struct sock *sk, struct packet_sock *po);
238static void __fanout_link(struct sock *sk, struct packet_sock *po);
239
Daniel Borkmannd346a3f2013-12-06 11:36:17 +0100240static int packet_direct_xmit(struct sk_buff *skb)
241{
242 struct net_device *dev = skb->dev;
243 const struct net_device_ops *ops = dev->netdev_ops;
244 netdev_features_t features;
245 struct netdev_queue *txq;
Daniel Borkmann43279502014-03-27 16:38:30 +0100246 int ret = NETDEV_TX_BUSY;
Daniel Borkmannd346a3f2013-12-06 11:36:17 +0100247 u16 queue_map;
Daniel Borkmannd346a3f2013-12-06 11:36:17 +0100248
249 if (unlikely(!netif_running(dev) ||
Daniel Borkmann43279502014-03-27 16:38:30 +0100250 !netif_carrier_ok(dev)))
251 goto drop;
Daniel Borkmannd346a3f2013-12-06 11:36:17 +0100252
253 features = netif_skb_features(skb);
254 if (skb_needs_linearize(skb, features) &&
Daniel Borkmann43279502014-03-27 16:38:30 +0100255 __skb_linearize(skb))
256 goto drop;
Daniel Borkmannd346a3f2013-12-06 11:36:17 +0100257
258 queue_map = skb_get_queue_mapping(skb);
259 txq = netdev_get_tx_queue(dev, queue_map);
260
Daniel Borkmann43279502014-03-27 16:38:30 +0100261 local_bh_disable();
Daniel Borkmannd346a3f2013-12-06 11:36:17 +0100262
Daniel Borkmann43279502014-03-27 16:38:30 +0100263 HARD_TX_LOCK(dev, txq, smp_processor_id());
264 if (!netif_xmit_frozen_or_stopped(txq)) {
265 ret = ops->ndo_start_xmit(skb, dev);
266 if (ret == NETDEV_TX_OK)
267 txq_trans_update(txq);
268 }
269 HARD_TX_UNLOCK(dev, txq);
270
271 local_bh_enable();
272
273 if (!dev_xmit_complete(ret))
Daniel Borkmannd346a3f2013-12-06 11:36:17 +0100274 kfree_skb(skb);
Daniel Borkmann43279502014-03-27 16:38:30 +0100275
Daniel Borkmannd346a3f2013-12-06 11:36:17 +0100276 return ret;
Daniel Borkmann43279502014-03-27 16:38:30 +0100277drop:
278 kfree_skb(skb);
279 return NET_XMIT_DROP;
Daniel Borkmannd346a3f2013-12-06 11:36:17 +0100280}
281
Daniel Borkmann66e56cd2013-12-06 11:36:15 +0100282static struct net_device *packet_cached_dev_get(struct packet_sock *po)
283{
284 struct net_device *dev;
285
286 rcu_read_lock();
287 dev = rcu_dereference(po->cached_dev);
288 if (likely(dev))
289 dev_hold(dev);
290 rcu_read_unlock();
291
292 return dev;
293}
294
295static void packet_cached_dev_assign(struct packet_sock *po,
296 struct net_device *dev)
297{
298 rcu_assign_pointer(po->cached_dev, dev);
299}
300
301static void packet_cached_dev_reset(struct packet_sock *po)
302{
303 RCU_INIT_POINTER(po->cached_dev, NULL);
304}
305
Daniel Borkmannd346a3f2013-12-06 11:36:17 +0100306static bool packet_use_direct_xmit(const struct packet_sock *po)
307{
308 return po->xmit == packet_direct_xmit;
309}
310
Daniel Borkmann0fd5d572014-02-16 15:55:22 +0100311static u16 __packet_pick_tx_queue(struct net_device *dev, struct sk_buff *skb)
Daniel Borkmannd346a3f2013-12-06 11:36:17 +0100312{
Li Zhong1cbac012013-12-12 22:39:55 +0100313 return (u16) raw_smp_processor_id() % dev->real_num_tx_queues;
Daniel Borkmannd346a3f2013-12-06 11:36:17 +0100314}
315
Daniel Borkmann0fd5d572014-02-16 15:55:22 +0100316static void packet_pick_tx_queue(struct net_device *dev, struct sk_buff *skb)
317{
318 const struct net_device_ops *ops = dev->netdev_ops;
319 u16 queue_index;
320
321 if (ops->ndo_select_queue) {
322 queue_index = ops->ndo_select_queue(dev, skb, NULL,
323 __packet_pick_tx_queue);
324 queue_index = netdev_cap_txqueue(dev, queue_index);
325 } else {
326 queue_index = __packet_pick_tx_queue(dev, skb);
327 }
328
329 skb_set_queue_mapping(skb, queue_index);
330}
331
David S. Millerce06b032011-07-04 01:44:29 -0700332/* register_prot_hook must be invoked with the po->bind_lock held,
333 * or from a context in which asynchronous accesses to the packet
334 * socket is not possible (packet_create()).
335 */
336static void register_prot_hook(struct sock *sk)
337{
338 struct packet_sock *po = pkt_sk(sk);
Daniel Borkmanne40526c2013-11-21 16:50:58 +0100339
David S. Millerce06b032011-07-04 01:44:29 -0700340 if (!po->running) {
Daniel Borkmann66e56cd2013-12-06 11:36:15 +0100341 if (po->fanout)
David S. Millerdc99f602011-07-05 01:45:05 -0700342 __fanout_link(sk, po);
Daniel Borkmann66e56cd2013-12-06 11:36:15 +0100343 else
David S. Millerdc99f602011-07-05 01:45:05 -0700344 dev_add_pack(&po->prot_hook);
Daniel Borkmanne40526c2013-11-21 16:50:58 +0100345
David S. Millerce06b032011-07-04 01:44:29 -0700346 sock_hold(sk);
347 po->running = 1;
348 }
349}
350
351/* {,__}unregister_prot_hook() must be invoked with the po->bind_lock
352 * held. If the sync parameter is true, we will temporarily drop
353 * the po->bind_lock and do a synchronize_net to make sure no
354 * asynchronous packet processing paths still refer to the elements
355 * of po->prot_hook. If the sync parameter is false, it is the
356 * callers responsibility to take care of this.
357 */
358static void __unregister_prot_hook(struct sock *sk, bool sync)
359{
360 struct packet_sock *po = pkt_sk(sk);
361
362 po->running = 0;
Daniel Borkmann66e56cd2013-12-06 11:36:15 +0100363
364 if (po->fanout)
David S. Millerdc99f602011-07-05 01:45:05 -0700365 __fanout_unlink(sk, po);
Daniel Borkmann66e56cd2013-12-06 11:36:15 +0100366 else
David S. Millerdc99f602011-07-05 01:45:05 -0700367 __dev_remove_pack(&po->prot_hook);
Daniel Borkmanne40526c2013-11-21 16:50:58 +0100368
David S. Millerce06b032011-07-04 01:44:29 -0700369 __sock_put(sk);
370
371 if (sync) {
372 spin_unlock(&po->bind_lock);
373 synchronize_net();
374 spin_lock(&po->bind_lock);
375 }
376}
377
378static void unregister_prot_hook(struct sock *sk, bool sync)
379{
380 struct packet_sock *po = pkt_sk(sk);
381
382 if (po->running)
383 __unregister_prot_hook(sk, sync);
384}
385
Changli Gaof6dafa92010-12-07 04:26:16 +0000386static inline __pure struct page *pgv_to_page(void *addr)
Changli Gao0af55bb2010-12-01 02:52:20 +0000387{
388 if (is_vmalloc_addr(addr))
389 return vmalloc_to_page(addr);
390 return virt_to_page(addr);
391}
392
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700393static void __packet_set_status(struct packet_sock *po, void *frame, int status)
394{
Daniel Borkmann184f4892013-04-16 01:57:46 +0000395 union tpacket_uhdr h;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700396
397 h.raw = frame;
398 switch (po->tp_version) {
399 case TPACKET_V1:
400 h.h1->tp_status = status;
Changli Gao0af55bb2010-12-01 02:52:20 +0000401 flush_dcache_page(pgv_to_page(&h.h1->tp_status));
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700402 break;
403 case TPACKET_V2:
404 h.h2->tp_status = status;
Changli Gao0af55bb2010-12-01 02:52:20 +0000405 flush_dcache_page(pgv_to_page(&h.h2->tp_status));
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700406 break;
chetan lokef6fb8f102011-08-19 10:18:16 +0000407 case TPACKET_V3:
Johann Baudy69e3c752009-05-18 22:11:22 -0700408 default:
chetan lokef6fb8f102011-08-19 10:18:16 +0000409 WARN(1, "TPACKET version not supported.\n");
Johann Baudy69e3c752009-05-18 22:11:22 -0700410 BUG();
411 }
412
413 smp_wmb();
414}
415
416static int __packet_get_status(struct packet_sock *po, void *frame)
417{
Daniel Borkmann184f4892013-04-16 01:57:46 +0000418 union tpacket_uhdr h;
Johann Baudy69e3c752009-05-18 22:11:22 -0700419
420 smp_rmb();
421
422 h.raw = frame;
423 switch (po->tp_version) {
424 case TPACKET_V1:
Changli Gao0af55bb2010-12-01 02:52:20 +0000425 flush_dcache_page(pgv_to_page(&h.h1->tp_status));
Johann Baudy69e3c752009-05-18 22:11:22 -0700426 return h.h1->tp_status;
427 case TPACKET_V2:
Changli Gao0af55bb2010-12-01 02:52:20 +0000428 flush_dcache_page(pgv_to_page(&h.h2->tp_status));
Johann Baudy69e3c752009-05-18 22:11:22 -0700429 return h.h2->tp_status;
chetan lokef6fb8f102011-08-19 10:18:16 +0000430 case TPACKET_V3:
Johann Baudy69e3c752009-05-18 22:11:22 -0700431 default:
chetan lokef6fb8f102011-08-19 10:18:16 +0000432 WARN(1, "TPACKET version not supported.\n");
Johann Baudy69e3c752009-05-18 22:11:22 -0700433 BUG();
434 return 0;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
Johann Baudy69e3c752009-05-18 22:11:22 -0700437
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +0000438static __u32 tpacket_get_timestamp(struct sk_buff *skb, struct timespec *ts,
439 unsigned int flags)
Daniel Borkmann7a513842013-04-23 00:39:29 +0000440{
441 struct skb_shared_hwtstamps *shhwtstamps = skb_hwtstamps(skb);
442
443 if (shhwtstamps) {
444 if ((flags & SOF_TIMESTAMPING_SYS_HARDWARE) &&
445 ktime_to_timespec_cond(shhwtstamps->syststamp, ts))
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +0000446 return TP_STATUS_TS_SYS_HARDWARE;
Daniel Borkmann7a513842013-04-23 00:39:29 +0000447 if ((flags & SOF_TIMESTAMPING_RAW_HARDWARE) &&
448 ktime_to_timespec_cond(shhwtstamps->hwtstamp, ts))
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +0000449 return TP_STATUS_TS_RAW_HARDWARE;
Daniel Borkmann7a513842013-04-23 00:39:29 +0000450 }
451
452 if (ktime_to_timespec_cond(skb->tstamp, ts))
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +0000453 return TP_STATUS_TS_SOFTWARE;
Daniel Borkmann7a513842013-04-23 00:39:29 +0000454
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +0000455 return 0;
Daniel Borkmann7a513842013-04-23 00:39:29 +0000456}
457
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +0000458static __u32 __packet_set_timestamp(struct packet_sock *po, void *frame,
459 struct sk_buff *skb)
Willem de Bruijn2e313962013-04-23 00:39:28 +0000460{
461 union tpacket_uhdr h;
462 struct timespec ts;
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +0000463 __u32 ts_status;
Willem de Bruijn2e313962013-04-23 00:39:28 +0000464
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +0000465 if (!(ts_status = tpacket_get_timestamp(skb, &ts, po->tp_tstamp)))
466 return 0;
Willem de Bruijn2e313962013-04-23 00:39:28 +0000467
468 h.raw = frame;
469 switch (po->tp_version) {
470 case TPACKET_V1:
471 h.h1->tp_sec = ts.tv_sec;
472 h.h1->tp_usec = ts.tv_nsec / NSEC_PER_USEC;
473 break;
474 case TPACKET_V2:
475 h.h2->tp_sec = ts.tv_sec;
476 h.h2->tp_nsec = ts.tv_nsec;
477 break;
478 case TPACKET_V3:
479 default:
480 WARN(1, "TPACKET version not supported.\n");
481 BUG();
482 }
483
484 /* one flush is safe, as both fields always lie on the same cacheline */
485 flush_dcache_page(pgv_to_page(&h.h1->tp_sec));
486 smp_wmb();
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +0000487
488 return ts_status;
Willem de Bruijn2e313962013-04-23 00:39:28 +0000489}
490
Johann Baudy69e3c752009-05-18 22:11:22 -0700491static void *packet_lookup_frame(struct packet_sock *po,
492 struct packet_ring_buffer *rb,
493 unsigned int position,
494 int status)
495{
496 unsigned int pg_vec_pos, frame_offset;
Daniel Borkmann184f4892013-04-16 01:57:46 +0000497 union tpacket_uhdr h;
Johann Baudy69e3c752009-05-18 22:11:22 -0700498
499 pg_vec_pos = position / rb->frames_per_block;
500 frame_offset = position % rb->frames_per_block;
501
Neil Horman0e3125c2010-11-16 10:26:47 -0800502 h.raw = rb->pg_vec[pg_vec_pos].buffer +
503 (frame_offset * rb->frame_size);
Johann Baudy69e3c752009-05-18 22:11:22 -0700504
505 if (status != __packet_get_status(po, h.raw))
506 return NULL;
507
508 return h.raw;
509}
510
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000511static void *packet_current_frame(struct packet_sock *po,
Johann Baudy69e3c752009-05-18 22:11:22 -0700512 struct packet_ring_buffer *rb,
513 int status)
514{
515 return packet_lookup_frame(po, rb, rb->head, status);
516}
517
chetan lokebc59ba32011-08-25 10:43:30 +0000518static void prb_del_retire_blk_timer(struct tpacket_kbdq_core *pkc)
chetan lokef6fb8f102011-08-19 10:18:16 +0000519{
520 del_timer_sync(&pkc->retire_blk_timer);
521}
522
523static void prb_shutdown_retire_blk_timer(struct packet_sock *po,
524 int tx_ring,
525 struct sk_buff_head *rb_queue)
526{
chetan lokebc59ba32011-08-25 10:43:30 +0000527 struct tpacket_kbdq_core *pkc;
chetan lokef6fb8f102011-08-19 10:18:16 +0000528
Duan Jiong22781a52013-12-06 13:29:36 +0800529 pkc = tx_ring ? GET_PBDQC_FROM_RB(&po->tx_ring) :
530 GET_PBDQC_FROM_RB(&po->rx_ring);
chetan lokef6fb8f102011-08-19 10:18:16 +0000531
Veaceslav Falicoec6f8092013-11-29 09:53:23 +0100532 spin_lock_bh(&rb_queue->lock);
chetan lokef6fb8f102011-08-19 10:18:16 +0000533 pkc->delete_blk_timer = 1;
Veaceslav Falicoec6f8092013-11-29 09:53:23 +0100534 spin_unlock_bh(&rb_queue->lock);
chetan lokef6fb8f102011-08-19 10:18:16 +0000535
536 prb_del_retire_blk_timer(pkc);
537}
538
539static void prb_init_blk_timer(struct packet_sock *po,
chetan lokebc59ba32011-08-25 10:43:30 +0000540 struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000541 void (*func) (unsigned long))
542{
543 init_timer(&pkc->retire_blk_timer);
544 pkc->retire_blk_timer.data = (long)po;
545 pkc->retire_blk_timer.function = func;
546 pkc->retire_blk_timer.expires = jiffies;
547}
548
549static void prb_setup_retire_blk_timer(struct packet_sock *po, int tx_ring)
550{
chetan lokebc59ba32011-08-25 10:43:30 +0000551 struct tpacket_kbdq_core *pkc;
chetan lokef6fb8f102011-08-19 10:18:16 +0000552
553 if (tx_ring)
554 BUG();
555
Duan Jiong22781a52013-12-06 13:29:36 +0800556 pkc = tx_ring ? GET_PBDQC_FROM_RB(&po->tx_ring) :
557 GET_PBDQC_FROM_RB(&po->rx_ring);
chetan lokef6fb8f102011-08-19 10:18:16 +0000558 prb_init_blk_timer(po, pkc, prb_retire_rx_blk_timer_expired);
559}
560
561static int prb_calc_retire_blk_tmo(struct packet_sock *po,
562 int blk_size_in_bytes)
563{
564 struct net_device *dev;
565 unsigned int mbits = 0, msec = 0, div = 0, tmo = 0;
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000566 struct ethtool_cmd ecmd;
567 int err;
parav.pandit@emulex.come440cf22012-06-27 03:56:12 +0000568 u32 speed;
chetan lokef6fb8f102011-08-19 10:18:16 +0000569
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000570 rtnl_lock();
571 dev = __dev_get_by_index(sock_net(&po->sk), po->ifindex);
572 if (unlikely(!dev)) {
573 rtnl_unlock();
chetan lokef6fb8f102011-08-19 10:18:16 +0000574 return DEFAULT_PRB_RETIRE_TOV;
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000575 }
576 err = __ethtool_get_settings(dev, &ecmd);
parav.pandit@emulex.come440cf22012-06-27 03:56:12 +0000577 speed = ethtool_cmd_speed(&ecmd);
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000578 rtnl_unlock();
579 if (!err) {
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000580 /*
581 * If the link speed is so slow you don't really
582 * need to worry about perf anyways
583 */
parav.pandit@emulex.come440cf22012-06-27 03:56:12 +0000584 if (speed < SPEED_1000 || speed == SPEED_UNKNOWN) {
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000585 return DEFAULT_PRB_RETIRE_TOV;
parav.pandit@emulex.come440cf22012-06-27 03:56:12 +0000586 } else {
587 msec = 1;
588 div = speed / 1000;
chetan lokef6fb8f102011-08-19 10:18:16 +0000589 }
590 }
591
592 mbits = (blk_size_in_bytes * 8) / (1024 * 1024);
593
594 if (div)
595 mbits /= div;
596
597 tmo = mbits * msec;
598
599 if (div)
600 return tmo+1;
601 return tmo;
602}
603
chetan lokebc59ba32011-08-25 10:43:30 +0000604static void prb_init_ft_ops(struct tpacket_kbdq_core *p1,
chetan lokef6fb8f102011-08-19 10:18:16 +0000605 union tpacket_req_u *req_u)
606{
607 p1->feature_req_word = req_u->req3.tp_feature_req_word;
608}
609
610static void init_prb_bdqc(struct packet_sock *po,
611 struct packet_ring_buffer *rb,
612 struct pgv *pg_vec,
613 union tpacket_req_u *req_u, int tx_ring)
614{
Duan Jiong22781a52013-12-06 13:29:36 +0800615 struct tpacket_kbdq_core *p1 = GET_PBDQC_FROM_RB(rb);
chetan lokebc59ba32011-08-25 10:43:30 +0000616 struct tpacket_block_desc *pbd;
chetan lokef6fb8f102011-08-19 10:18:16 +0000617
618 memset(p1, 0x0, sizeof(*p1));
619
620 p1->knxt_seq_num = 1;
621 p1->pkbdq = pg_vec;
chetan lokebc59ba32011-08-25 10:43:30 +0000622 pbd = (struct tpacket_block_desc *)pg_vec[0].buffer;
Joe Perchese3192692012-06-03 17:41:40 +0000623 p1->pkblk_start = pg_vec[0].buffer;
chetan lokef6fb8f102011-08-19 10:18:16 +0000624 p1->kblk_size = req_u->req3.tp_block_size;
625 p1->knum_blocks = req_u->req3.tp_block_nr;
626 p1->hdrlen = po->tp_hdrlen;
627 p1->version = po->tp_version;
628 p1->last_kactive_blk_num = 0;
Daniel Borkmannee80fbf2013-04-19 06:12:29 +0000629 po->stats.stats3.tp_freeze_q_cnt = 0;
chetan lokef6fb8f102011-08-19 10:18:16 +0000630 if (req_u->req3.tp_retire_blk_tov)
631 p1->retire_blk_tov = req_u->req3.tp_retire_blk_tov;
632 else
633 p1->retire_blk_tov = prb_calc_retire_blk_tmo(po,
634 req_u->req3.tp_block_size);
635 p1->tov_in_jiffies = msecs_to_jiffies(p1->retire_blk_tov);
636 p1->blk_sizeof_priv = req_u->req3.tp_sizeof_priv;
637
638 prb_init_ft_ops(p1, req_u);
639 prb_setup_retire_blk_timer(po, tx_ring);
640 prb_open_block(p1, pbd);
641}
642
643/* Do NOT update the last_blk_num first.
644 * Assumes sk_buff_head lock is held.
645 */
chetan lokebc59ba32011-08-25 10:43:30 +0000646static void _prb_refresh_rx_retire_blk_timer(struct tpacket_kbdq_core *pkc)
chetan lokef6fb8f102011-08-19 10:18:16 +0000647{
648 mod_timer(&pkc->retire_blk_timer,
649 jiffies + pkc->tov_in_jiffies);
650 pkc->last_kactive_blk_num = pkc->kactive_blk_num;
651}
652
653/*
654 * Timer logic:
655 * 1) We refresh the timer only when we open a block.
656 * By doing this we don't waste cycles refreshing the timer
657 * on packet-by-packet basis.
658 *
659 * With a 1MB block-size, on a 1Gbps line, it will take
660 * i) ~8 ms to fill a block + ii) memcpy etc.
661 * In this cut we are not accounting for the memcpy time.
662 *
663 * So, if the user sets the 'tmo' to 10ms then the timer
664 * will never fire while the block is still getting filled
665 * (which is what we want). However, the user could choose
666 * to close a block early and that's fine.
667 *
668 * But when the timer does fire, we check whether or not to refresh it.
669 * Since the tmo granularity is in msecs, it is not too expensive
670 * to refresh the timer, lets say every '8' msecs.
671 * Either the user can set the 'tmo' or we can derive it based on
672 * a) line-speed and b) block-size.
673 * prb_calc_retire_blk_tmo() calculates the tmo.
674 *
675 */
676static void prb_retire_rx_blk_timer_expired(unsigned long data)
677{
678 struct packet_sock *po = (struct packet_sock *)data;
Duan Jiong22781a52013-12-06 13:29:36 +0800679 struct tpacket_kbdq_core *pkc = GET_PBDQC_FROM_RB(&po->rx_ring);
chetan lokef6fb8f102011-08-19 10:18:16 +0000680 unsigned int frozen;
chetan lokebc59ba32011-08-25 10:43:30 +0000681 struct tpacket_block_desc *pbd;
chetan lokef6fb8f102011-08-19 10:18:16 +0000682
683 spin_lock(&po->sk.sk_receive_queue.lock);
684
685 frozen = prb_queue_frozen(pkc);
686 pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
687
688 if (unlikely(pkc->delete_blk_timer))
689 goto out;
690
691 /* We only need to plug the race when the block is partially filled.
692 * tpacket_rcv:
693 * lock(); increment BLOCK_NUM_PKTS; unlock()
694 * copy_bits() is in progress ...
695 * timer fires on other cpu:
696 * we can't retire the current block because copy_bits
697 * is in progress.
698 *
699 */
700 if (BLOCK_NUM_PKTS(pbd)) {
701 while (atomic_read(&pkc->blk_fill_in_prog)) {
702 /* Waiting for skb_copy_bits to finish... */
703 cpu_relax();
704 }
705 }
706
707 if (pkc->last_kactive_blk_num == pkc->kactive_blk_num) {
708 if (!frozen) {
709 prb_retire_current_block(pkc, po, TP_STATUS_BLK_TMO);
710 if (!prb_dispatch_next_block(pkc, po))
711 goto refresh_timer;
712 else
713 goto out;
714 } else {
715 /* Case 1. Queue was frozen because user-space was
716 * lagging behind.
717 */
718 if (prb_curr_blk_in_use(pkc, pbd)) {
719 /*
720 * Ok, user-space is still behind.
721 * So just refresh the timer.
722 */
723 goto refresh_timer;
724 } else {
725 /* Case 2. queue was frozen,user-space caught up,
726 * now the link went idle && the timer fired.
727 * We don't have a block to close.So we open this
728 * block and restart the timer.
729 * opening a block thaws the queue,restarts timer
730 * Thawing/timer-refresh is a side effect.
731 */
732 prb_open_block(pkc, pbd);
733 goto out;
734 }
735 }
736 }
737
738refresh_timer:
739 _prb_refresh_rx_retire_blk_timer(pkc);
740
741out:
742 spin_unlock(&po->sk.sk_receive_queue.lock);
743}
744
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000745static void prb_flush_block(struct tpacket_kbdq_core *pkc1,
chetan lokebc59ba32011-08-25 10:43:30 +0000746 struct tpacket_block_desc *pbd1, __u32 status)
chetan lokef6fb8f102011-08-19 10:18:16 +0000747{
748 /* Flush everything minus the block header */
749
750#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
751 u8 *start, *end;
752
753 start = (u8 *)pbd1;
754
755 /* Skip the block header(we know header WILL fit in 4K) */
756 start += PAGE_SIZE;
757
758 end = (u8 *)PAGE_ALIGN((unsigned long)pkc1->pkblk_end);
759 for (; start < end; start += PAGE_SIZE)
760 flush_dcache_page(pgv_to_page(start));
761
762 smp_wmb();
763#endif
764
765 /* Now update the block status. */
766
767 BLOCK_STATUS(pbd1) = status;
768
769 /* Flush the block header */
770
771#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
772 start = (u8 *)pbd1;
773 flush_dcache_page(pgv_to_page(start));
774
775 smp_wmb();
776#endif
777}
778
779/*
780 * Side effect:
781 *
782 * 1) flush the block
783 * 2) Increment active_blk_num
784 *
785 * Note:We DONT refresh the timer on purpose.
786 * Because almost always the next block will be opened.
787 */
chetan lokebc59ba32011-08-25 10:43:30 +0000788static void prb_close_block(struct tpacket_kbdq_core *pkc1,
789 struct tpacket_block_desc *pbd1,
chetan lokef6fb8f102011-08-19 10:18:16 +0000790 struct packet_sock *po, unsigned int stat)
791{
792 __u32 status = TP_STATUS_USER | stat;
793
794 struct tpacket3_hdr *last_pkt;
chetan lokebc59ba32011-08-25 10:43:30 +0000795 struct tpacket_hdr_v1 *h1 = &pbd1->hdr.bh1;
chetan lokef6fb8f102011-08-19 10:18:16 +0000796
Daniel Borkmannee80fbf2013-04-19 06:12:29 +0000797 if (po->stats.stats3.tp_drops)
chetan lokef6fb8f102011-08-19 10:18:16 +0000798 status |= TP_STATUS_LOSING;
799
800 last_pkt = (struct tpacket3_hdr *)pkc1->prev;
801 last_pkt->tp_next_offset = 0;
802
803 /* Get the ts of the last pkt */
804 if (BLOCK_NUM_PKTS(pbd1)) {
805 h1->ts_last_pkt.ts_sec = last_pkt->tp_sec;
806 h1->ts_last_pkt.ts_nsec = last_pkt->tp_nsec;
807 } else {
808 /* Ok, we tmo'd - so get the current time */
809 struct timespec ts;
810 getnstimeofday(&ts);
811 h1->ts_last_pkt.ts_sec = ts.tv_sec;
812 h1->ts_last_pkt.ts_nsec = ts.tv_nsec;
813 }
814
815 smp_wmb();
816
817 /* Flush the block */
818 prb_flush_block(pkc1, pbd1, status);
819
820 pkc1->kactive_blk_num = GET_NEXT_PRB_BLK_NUM(pkc1);
821}
822
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000823static void prb_thaw_queue(struct tpacket_kbdq_core *pkc)
chetan lokef6fb8f102011-08-19 10:18:16 +0000824{
825 pkc->reset_pending_on_curr_blk = 0;
826}
827
828/*
829 * Side effect of opening a block:
830 *
831 * 1) prb_queue is thawed.
832 * 2) retire_blk_timer is refreshed.
833 *
834 */
chetan lokebc59ba32011-08-25 10:43:30 +0000835static void prb_open_block(struct tpacket_kbdq_core *pkc1,
836 struct tpacket_block_desc *pbd1)
chetan lokef6fb8f102011-08-19 10:18:16 +0000837{
838 struct timespec ts;
chetan lokebc59ba32011-08-25 10:43:30 +0000839 struct tpacket_hdr_v1 *h1 = &pbd1->hdr.bh1;
chetan lokef6fb8f102011-08-19 10:18:16 +0000840
841 smp_rmb();
842
Daniel Borkmann8da30562013-05-03 02:57:00 +0000843 /* We could have just memset this but we will lose the
844 * flexibility of making the priv area sticky
845 */
chetan lokef6fb8f102011-08-19 10:18:16 +0000846
Daniel Borkmann8da30562013-05-03 02:57:00 +0000847 BLOCK_SNUM(pbd1) = pkc1->knxt_seq_num++;
848 BLOCK_NUM_PKTS(pbd1) = 0;
849 BLOCK_LEN(pbd1) = BLK_PLUS_PRIV(pkc1->blk_sizeof_priv);
chetan lokef6fb8f102011-08-19 10:18:16 +0000850
Daniel Borkmann8da30562013-05-03 02:57:00 +0000851 getnstimeofday(&ts);
chetan lokef6fb8f102011-08-19 10:18:16 +0000852
Daniel Borkmann8da30562013-05-03 02:57:00 +0000853 h1->ts_first_pkt.ts_sec = ts.tv_sec;
854 h1->ts_first_pkt.ts_nsec = ts.tv_nsec;
chetan lokef6fb8f102011-08-19 10:18:16 +0000855
Daniel Borkmann8da30562013-05-03 02:57:00 +0000856 pkc1->pkblk_start = (char *)pbd1;
857 pkc1->nxt_offset = pkc1->pkblk_start + BLK_PLUS_PRIV(pkc1->blk_sizeof_priv);
858
859 BLOCK_O2FP(pbd1) = (__u32)BLK_PLUS_PRIV(pkc1->blk_sizeof_priv);
860 BLOCK_O2PRIV(pbd1) = BLK_HDR_LEN;
861
862 pbd1->version = pkc1->version;
863 pkc1->prev = pkc1->nxt_offset;
864 pkc1->pkblk_end = pkc1->pkblk_start + pkc1->kblk_size;
865
866 prb_thaw_queue(pkc1);
867 _prb_refresh_rx_retire_blk_timer(pkc1);
868
869 smp_wmb();
chetan lokef6fb8f102011-08-19 10:18:16 +0000870}
871
872/*
873 * Queue freeze logic:
874 * 1) Assume tp_block_nr = 8 blocks.
875 * 2) At time 't0', user opens Rx ring.
876 * 3) Some time past 't0', kernel starts filling blocks starting from 0 .. 7
877 * 4) user-space is either sleeping or processing block '0'.
878 * 5) tpacket_rcv is currently filling block '7', since there is no space left,
879 * it will close block-7,loop around and try to fill block '0'.
880 * call-flow:
881 * __packet_lookup_frame_in_block
882 * prb_retire_current_block()
883 * prb_dispatch_next_block()
884 * |->(BLOCK_STATUS == USER) evaluates to true
885 * 5.1) Since block-0 is currently in-use, we just freeze the queue.
886 * 6) Now there are two cases:
887 * 6.1) Link goes idle right after the queue is frozen.
888 * But remember, the last open_block() refreshed the timer.
889 * When this timer expires,it will refresh itself so that we can
890 * re-open block-0 in near future.
891 * 6.2) Link is busy and keeps on receiving packets. This is a simple
892 * case and __packet_lookup_frame_in_block will check if block-0
893 * is free and can now be re-used.
894 */
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000895static void prb_freeze_queue(struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000896 struct packet_sock *po)
897{
898 pkc->reset_pending_on_curr_blk = 1;
Daniel Borkmannee80fbf2013-04-19 06:12:29 +0000899 po->stats.stats3.tp_freeze_q_cnt++;
chetan lokef6fb8f102011-08-19 10:18:16 +0000900}
901
902#define TOTAL_PKT_LEN_INCL_ALIGN(length) (ALIGN((length), V3_ALIGNMENT))
903
904/*
905 * If the next block is free then we will dispatch it
906 * and return a good offset.
907 * Else, we will freeze the queue.
908 * So, caller must check the return value.
909 */
chetan lokebc59ba32011-08-25 10:43:30 +0000910static void *prb_dispatch_next_block(struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000911 struct packet_sock *po)
912{
chetan lokebc59ba32011-08-25 10:43:30 +0000913 struct tpacket_block_desc *pbd;
chetan lokef6fb8f102011-08-19 10:18:16 +0000914
915 smp_rmb();
916
917 /* 1. Get current block num */
918 pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
919
920 /* 2. If this block is currently in_use then freeze the queue */
921 if (TP_STATUS_USER & BLOCK_STATUS(pbd)) {
922 prb_freeze_queue(pkc, po);
923 return NULL;
924 }
925
926 /*
927 * 3.
928 * open this block and return the offset where the first packet
929 * needs to get stored.
930 */
931 prb_open_block(pkc, pbd);
932 return (void *)pkc->nxt_offset;
933}
934
chetan lokebc59ba32011-08-25 10:43:30 +0000935static void prb_retire_current_block(struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000936 struct packet_sock *po, unsigned int status)
937{
chetan lokebc59ba32011-08-25 10:43:30 +0000938 struct tpacket_block_desc *pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
chetan lokef6fb8f102011-08-19 10:18:16 +0000939
940 /* retire/close the current block */
941 if (likely(TP_STATUS_KERNEL == BLOCK_STATUS(pbd))) {
942 /*
943 * Plug the case where copy_bits() is in progress on
944 * cpu-0 and tpacket_rcv() got invoked on cpu-1, didn't
945 * have space to copy the pkt in the current block and
946 * called prb_retire_current_block()
947 *
948 * We don't need to worry about the TMO case because
949 * the timer-handler already handled this case.
950 */
951 if (!(status & TP_STATUS_BLK_TMO)) {
952 while (atomic_read(&pkc->blk_fill_in_prog)) {
953 /* Waiting for skb_copy_bits to finish... */
954 cpu_relax();
955 }
956 }
957 prb_close_block(pkc, pbd, po, status);
958 return;
959 }
chetan lokef6fb8f102011-08-19 10:18:16 +0000960}
961
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000962static int prb_curr_blk_in_use(struct tpacket_kbdq_core *pkc,
chetan lokebc59ba32011-08-25 10:43:30 +0000963 struct tpacket_block_desc *pbd)
chetan lokef6fb8f102011-08-19 10:18:16 +0000964{
965 return TP_STATUS_USER & BLOCK_STATUS(pbd);
966}
967
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000968static int prb_queue_frozen(struct tpacket_kbdq_core *pkc)
chetan lokef6fb8f102011-08-19 10:18:16 +0000969{
970 return pkc->reset_pending_on_curr_blk;
971}
972
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000973static void prb_clear_blk_fill_status(struct packet_ring_buffer *rb)
chetan lokef6fb8f102011-08-19 10:18:16 +0000974{
chetan lokebc59ba32011-08-25 10:43:30 +0000975 struct tpacket_kbdq_core *pkc = GET_PBDQC_FROM_RB(rb);
chetan lokef6fb8f102011-08-19 10:18:16 +0000976 atomic_dec(&pkc->blk_fill_in_prog);
977}
978
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000979static void prb_fill_rxhash(struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000980 struct tpacket3_hdr *ppd)
981{
Tom Herbert3958afa1b2013-12-15 22:12:06 -0800982 ppd->hv1.tp_rxhash = skb_get_hash(pkc->skb);
chetan lokef6fb8f102011-08-19 10:18:16 +0000983}
984
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000985static void prb_clear_rxhash(struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000986 struct tpacket3_hdr *ppd)
987{
988 ppd->hv1.tp_rxhash = 0;
989}
990
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000991static void prb_fill_vlan_info(struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000992 struct tpacket3_hdr *ppd)
993{
994 if (vlan_tx_tag_present(pkc->skb)) {
995 ppd->hv1.tp_vlan_tci = vlan_tx_tag_get(pkc->skb);
Atzm Watanabea0cdfcf2013-12-17 22:53:40 +0900996 ppd->hv1.tp_vlan_tpid = ntohs(pkc->skb->vlan_proto);
997 ppd->tp_status = TP_STATUS_VLAN_VALID | TP_STATUS_VLAN_TPID_VALID;
chetan lokef6fb8f102011-08-19 10:18:16 +0000998 } else {
danborkmann@iogearbox.net9e670302012-08-20 03:34:03 +0000999 ppd->hv1.tp_vlan_tci = 0;
Atzm Watanabea0cdfcf2013-12-17 22:53:40 +09001000 ppd->hv1.tp_vlan_tpid = 0;
danborkmann@iogearbox.net9e670302012-08-20 03:34:03 +00001001 ppd->tp_status = TP_STATUS_AVAILABLE;
chetan lokef6fb8f102011-08-19 10:18:16 +00001002 }
1003}
1004
chetan lokebc59ba32011-08-25 10:43:30 +00001005static void prb_run_all_ft_ops(struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +00001006 struct tpacket3_hdr *ppd)
1007{
Atzm Watanabea0cdfcf2013-12-17 22:53:40 +09001008 ppd->hv1.tp_padding = 0;
chetan lokef6fb8f102011-08-19 10:18:16 +00001009 prb_fill_vlan_info(pkc, ppd);
1010
1011 if (pkc->feature_req_word & TP_FT_REQ_FILL_RXHASH)
1012 prb_fill_rxhash(pkc, ppd);
1013 else
1014 prb_clear_rxhash(pkc, ppd);
1015}
1016
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001017static void prb_fill_curr_block(char *curr,
chetan lokebc59ba32011-08-25 10:43:30 +00001018 struct tpacket_kbdq_core *pkc,
1019 struct tpacket_block_desc *pbd,
chetan lokef6fb8f102011-08-19 10:18:16 +00001020 unsigned int len)
1021{
1022 struct tpacket3_hdr *ppd;
1023
1024 ppd = (struct tpacket3_hdr *)curr;
1025 ppd->tp_next_offset = TOTAL_PKT_LEN_INCL_ALIGN(len);
1026 pkc->prev = curr;
1027 pkc->nxt_offset += TOTAL_PKT_LEN_INCL_ALIGN(len);
1028 BLOCK_LEN(pbd) += TOTAL_PKT_LEN_INCL_ALIGN(len);
1029 BLOCK_NUM_PKTS(pbd) += 1;
1030 atomic_inc(&pkc->blk_fill_in_prog);
1031 prb_run_all_ft_ops(pkc, ppd);
1032}
1033
1034/* Assumes caller has the sk->rx_queue.lock */
1035static void *__packet_lookup_frame_in_block(struct packet_sock *po,
1036 struct sk_buff *skb,
1037 int status,
1038 unsigned int len
1039 )
1040{
chetan lokebc59ba32011-08-25 10:43:30 +00001041 struct tpacket_kbdq_core *pkc;
1042 struct tpacket_block_desc *pbd;
chetan lokef6fb8f102011-08-19 10:18:16 +00001043 char *curr, *end;
1044
Joe Perchese3192692012-06-03 17:41:40 +00001045 pkc = GET_PBDQC_FROM_RB(&po->rx_ring);
chetan lokef6fb8f102011-08-19 10:18:16 +00001046 pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
1047
1048 /* Queue is frozen when user space is lagging behind */
1049 if (prb_queue_frozen(pkc)) {
1050 /*
1051 * Check if that last block which caused the queue to freeze,
1052 * is still in_use by user-space.
1053 */
1054 if (prb_curr_blk_in_use(pkc, pbd)) {
1055 /* Can't record this packet */
1056 return NULL;
1057 } else {
1058 /*
1059 * Ok, the block was released by user-space.
1060 * Now let's open that block.
1061 * opening a block also thaws the queue.
1062 * Thawing is a side effect.
1063 */
1064 prb_open_block(pkc, pbd);
1065 }
1066 }
1067
1068 smp_mb();
1069 curr = pkc->nxt_offset;
1070 pkc->skb = skb;
Joe Perchese3192692012-06-03 17:41:40 +00001071 end = (char *)pbd + pkc->kblk_size;
chetan lokef6fb8f102011-08-19 10:18:16 +00001072
1073 /* first try the current block */
1074 if (curr+TOTAL_PKT_LEN_INCL_ALIGN(len) < end) {
1075 prb_fill_curr_block(curr, pkc, pbd, len);
1076 return (void *)curr;
1077 }
1078
1079 /* Ok, close the current block */
1080 prb_retire_current_block(pkc, po, 0);
1081
1082 /* Now, try to dispatch the next block */
1083 curr = (char *)prb_dispatch_next_block(pkc, po);
1084 if (curr) {
1085 pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
1086 prb_fill_curr_block(curr, pkc, pbd, len);
1087 return (void *)curr;
1088 }
1089
1090 /*
1091 * No free blocks are available.user_space hasn't caught up yet.
1092 * Queue was just frozen and now this packet will get dropped.
1093 */
1094 return NULL;
1095}
1096
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001097static void *packet_current_rx_frame(struct packet_sock *po,
chetan lokef6fb8f102011-08-19 10:18:16 +00001098 struct sk_buff *skb,
1099 int status, unsigned int len)
1100{
1101 char *curr = NULL;
1102 switch (po->tp_version) {
1103 case TPACKET_V1:
1104 case TPACKET_V2:
1105 curr = packet_lookup_frame(po, &po->rx_ring,
1106 po->rx_ring.head, status);
1107 return curr;
1108 case TPACKET_V3:
1109 return __packet_lookup_frame_in_block(po, skb, status, len);
1110 default:
1111 WARN(1, "TPACKET version not supported\n");
1112 BUG();
Ying Xue99aa3472012-08-06 16:27:10 +00001113 return NULL;
chetan lokef6fb8f102011-08-19 10:18:16 +00001114 }
1115}
1116
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001117static void *prb_lookup_block(struct packet_sock *po,
chetan lokef6fb8f102011-08-19 10:18:16 +00001118 struct packet_ring_buffer *rb,
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001119 unsigned int idx,
chetan lokef6fb8f102011-08-19 10:18:16 +00001120 int status)
1121{
chetan lokebc59ba32011-08-25 10:43:30 +00001122 struct tpacket_kbdq_core *pkc = GET_PBDQC_FROM_RB(rb);
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001123 struct tpacket_block_desc *pbd = GET_PBLOCK_DESC(pkc, idx);
chetan lokef6fb8f102011-08-19 10:18:16 +00001124
1125 if (status != BLOCK_STATUS(pbd))
1126 return NULL;
1127 return pbd;
1128}
1129
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001130static int prb_previous_blk_num(struct packet_ring_buffer *rb)
chetan lokef6fb8f102011-08-19 10:18:16 +00001131{
1132 unsigned int prev;
1133 if (rb->prb_bdqc.kactive_blk_num)
1134 prev = rb->prb_bdqc.kactive_blk_num-1;
1135 else
1136 prev = rb->prb_bdqc.knum_blocks-1;
1137 return prev;
1138}
1139
1140/* Assumes caller has held the rx_queue.lock */
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001141static void *__prb_previous_block(struct packet_sock *po,
chetan lokef6fb8f102011-08-19 10:18:16 +00001142 struct packet_ring_buffer *rb,
1143 int status)
1144{
1145 unsigned int previous = prb_previous_blk_num(rb);
1146 return prb_lookup_block(po, rb, previous, status);
1147}
1148
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001149static void *packet_previous_rx_frame(struct packet_sock *po,
chetan lokef6fb8f102011-08-19 10:18:16 +00001150 struct packet_ring_buffer *rb,
1151 int status)
1152{
1153 if (po->tp_version <= TPACKET_V2)
1154 return packet_previous_frame(po, rb, status);
1155
1156 return __prb_previous_block(po, rb, status);
1157}
1158
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001159static void packet_increment_rx_head(struct packet_sock *po,
chetan lokef6fb8f102011-08-19 10:18:16 +00001160 struct packet_ring_buffer *rb)
1161{
1162 switch (po->tp_version) {
1163 case TPACKET_V1:
1164 case TPACKET_V2:
1165 return packet_increment_head(rb);
1166 case TPACKET_V3:
1167 default:
1168 WARN(1, "TPACKET version not supported.\n");
1169 BUG();
1170 return;
1171 }
1172}
1173
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001174static void *packet_previous_frame(struct packet_sock *po,
Johann Baudy69e3c752009-05-18 22:11:22 -07001175 struct packet_ring_buffer *rb,
1176 int status)
1177{
1178 unsigned int previous = rb->head ? rb->head - 1 : rb->frame_max;
1179 return packet_lookup_frame(po, rb, previous, status);
1180}
1181
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001182static void packet_increment_head(struct packet_ring_buffer *buff)
Johann Baudy69e3c752009-05-18 22:11:22 -07001183{
1184 buff->head = buff->head != buff->frame_max ? buff->head+1 : 0;
1185}
1186
Daniel Borkmannb0138402014-01-15 16:25:36 +01001187static void packet_inc_pending(struct packet_ring_buffer *rb)
1188{
1189 this_cpu_inc(*rb->pending_refcnt);
1190}
1191
1192static void packet_dec_pending(struct packet_ring_buffer *rb)
1193{
1194 this_cpu_dec(*rb->pending_refcnt);
1195}
1196
1197static unsigned int packet_read_pending(const struct packet_ring_buffer *rb)
1198{
1199 unsigned int refcnt = 0;
1200 int cpu;
1201
1202 /* We don't use pending refcount in rx_ring. */
1203 if (rb->pending_refcnt == NULL)
1204 return 0;
1205
1206 for_each_possible_cpu(cpu)
1207 refcnt += *per_cpu_ptr(rb->pending_refcnt, cpu);
1208
1209 return refcnt;
1210}
1211
1212static int packet_alloc_pending(struct packet_sock *po)
1213{
1214 po->rx_ring.pending_refcnt = NULL;
1215
1216 po->tx_ring.pending_refcnt = alloc_percpu(unsigned int);
1217 if (unlikely(po->tx_ring.pending_refcnt == NULL))
1218 return -ENOBUFS;
1219
1220 return 0;
1221}
1222
1223static void packet_free_pending(struct packet_sock *po)
1224{
1225 free_percpu(po->tx_ring.pending_refcnt);
1226}
1227
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001228static bool packet_rcv_has_room(struct packet_sock *po, struct sk_buff *skb)
1229{
1230 struct sock *sk = &po->sk;
1231 bool has_room;
1232
1233 if (po->prot_hook.func != tpacket_rcv)
1234 return (atomic_read(&sk->sk_rmem_alloc) + skb->truesize)
1235 <= sk->sk_rcvbuf;
1236
1237 spin_lock(&sk->sk_receive_queue.lock);
1238 if (po->tp_version == TPACKET_V3)
1239 has_room = prb_lookup_block(po, &po->rx_ring,
1240 po->rx_ring.prb_bdqc.kactive_blk_num,
1241 TP_STATUS_KERNEL);
1242 else
1243 has_room = packet_lookup_frame(po, &po->rx_ring,
1244 po->rx_ring.head,
1245 TP_STATUS_KERNEL);
1246 spin_unlock(&sk->sk_receive_queue.lock);
1247
1248 return has_room;
1249}
1250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251static void packet_sock_destruct(struct sock *sk)
1252{
Richard Cochraned85b562010-04-07 22:41:28 +00001253 skb_queue_purge(&sk->sk_error_queue);
1254
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001255 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
1256 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 if (!sock_flag(sk, SOCK_DEAD)) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001259 pr_err("Attempt to release alive packet socket: %p\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 return;
1261 }
1262
Pavel Emelyanov17ab56a2007-11-10 21:38:48 -08001263 sk_refcnt_debug_dec(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264}
1265
David S. Millerdc99f602011-07-05 01:45:05 -07001266static int fanout_rr_next(struct packet_fanout *f, unsigned int num)
1267{
1268 int x = atomic_read(&f->rr_cur) + 1;
1269
1270 if (x >= num)
1271 x = 0;
1272
1273 return x;
1274}
1275
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001276static unsigned int fanout_demux_hash(struct packet_fanout *f,
1277 struct sk_buff *skb,
1278 unsigned int num)
David S. Millerdc99f602011-07-05 01:45:05 -07001279{
Tom Herbert61b905d2014-03-24 15:34:47 -07001280 return reciprocal_scale(skb_get_hash(skb), num);
David S. Millerdc99f602011-07-05 01:45:05 -07001281}
1282
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001283static unsigned int fanout_demux_lb(struct packet_fanout *f,
1284 struct sk_buff *skb,
1285 unsigned int num)
David S. Millerdc99f602011-07-05 01:45:05 -07001286{
1287 int cur, old;
1288
1289 cur = atomic_read(&f->rr_cur);
1290 while ((old = atomic_cmpxchg(&f->rr_cur, cur,
1291 fanout_rr_next(f, num))) != cur)
1292 cur = old;
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001293 return cur;
David S. Millerdc99f602011-07-05 01:45:05 -07001294}
1295
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001296static unsigned int fanout_demux_cpu(struct packet_fanout *f,
1297 struct sk_buff *skb,
1298 unsigned int num)
David S. Miller95ec3eb2011-07-06 01:56:38 -07001299{
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001300 return smp_processor_id() % num;
1301}
David S. Miller95ec3eb2011-07-06 01:56:38 -07001302
Daniel Borkmann5df0ddf2013-08-28 22:13:09 +02001303static unsigned int fanout_demux_rnd(struct packet_fanout *f,
1304 struct sk_buff *skb,
1305 unsigned int num)
1306{
Daniel Borkmannf337db62014-01-22 02:29:39 +01001307 return prandom_u32_max(num);
Daniel Borkmann5df0ddf2013-08-28 22:13:09 +02001308}
1309
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001310static unsigned int fanout_demux_rollover(struct packet_fanout *f,
1311 struct sk_buff *skb,
1312 unsigned int idx, unsigned int skip,
1313 unsigned int num)
1314{
1315 unsigned int i, j;
1316
1317 i = j = min_t(int, f->next[idx], num - 1);
1318 do {
1319 if (i != skip && packet_rcv_has_room(pkt_sk(f->arr[i]), skb)) {
1320 if (i != j)
1321 f->next[idx] = i;
1322 return i;
1323 }
1324 if (++i == num)
1325 i = 0;
1326 } while (i != j);
1327
1328 return idx;
1329}
1330
Neil Horman2d360972014-01-22 16:01:44 -05001331static unsigned int fanout_demux_qm(struct packet_fanout *f,
1332 struct sk_buff *skb,
1333 unsigned int num)
1334{
1335 return skb_get_queue_mapping(skb) % num;
1336}
1337
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001338static bool fanout_has_flag(struct packet_fanout *f, u16 flag)
1339{
1340 return f->flags & (flag >> 8);
David S. Miller95ec3eb2011-07-06 01:56:38 -07001341}
1342
David S. Miller95ec3eb2011-07-06 01:56:38 -07001343static int packet_rcv_fanout(struct sk_buff *skb, struct net_device *dev,
1344 struct packet_type *pt, struct net_device *orig_dev)
David S. Millerdc99f602011-07-05 01:45:05 -07001345{
1346 struct packet_fanout *f = pt->af_packet_priv;
1347 unsigned int num = f->num_members;
1348 struct packet_sock *po;
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001349 unsigned int idx;
David S. Millerdc99f602011-07-05 01:45:05 -07001350
1351 if (!net_eq(dev_net(dev), read_pnet(&f->net)) ||
1352 !num) {
1353 kfree_skb(skb);
1354 return 0;
1355 }
1356
David S. Miller95ec3eb2011-07-06 01:56:38 -07001357 switch (f->type) {
1358 case PACKET_FANOUT_HASH:
1359 default:
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001360 if (fanout_has_flag(f, PACKET_FANOUT_FLAG_DEFRAG)) {
Eric Dumazetbc416d92011-10-06 10:28:31 +00001361 skb = ip_check_defrag(skb, IP_DEFRAG_AF_PACKET);
David S. Miller95ec3eb2011-07-06 01:56:38 -07001362 if (!skb)
1363 return 0;
1364 }
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001365 idx = fanout_demux_hash(f, skb, num);
David S. Miller95ec3eb2011-07-06 01:56:38 -07001366 break;
1367 case PACKET_FANOUT_LB:
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001368 idx = fanout_demux_lb(f, skb, num);
David S. Miller95ec3eb2011-07-06 01:56:38 -07001369 break;
1370 case PACKET_FANOUT_CPU:
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001371 idx = fanout_demux_cpu(f, skb, num);
1372 break;
Daniel Borkmann5df0ddf2013-08-28 22:13:09 +02001373 case PACKET_FANOUT_RND:
1374 idx = fanout_demux_rnd(f, skb, num);
1375 break;
Neil Horman2d360972014-01-22 16:01:44 -05001376 case PACKET_FANOUT_QM:
1377 idx = fanout_demux_qm(f, skb, num);
1378 break;
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001379 case PACKET_FANOUT_ROLLOVER:
1380 idx = fanout_demux_rollover(f, skb, 0, (unsigned int) -1, num);
David S. Miller95ec3eb2011-07-06 01:56:38 -07001381 break;
David S. Miller7736d332011-07-05 01:43:20 -07001382 }
1383
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001384 po = pkt_sk(f->arr[idx]);
1385 if (fanout_has_flag(f, PACKET_FANOUT_FLAG_ROLLOVER) &&
1386 unlikely(!packet_rcv_has_room(po, skb))) {
1387 idx = fanout_demux_rollover(f, skb, idx, idx, num);
1388 po = pkt_sk(f->arr[idx]);
1389 }
David S. Millerdc99f602011-07-05 01:45:05 -07001390
1391 return po->prot_hook.func(skb, dev, &po->prot_hook, orig_dev);
1392}
1393
Pavel Emelyanovfff33212012-08-16 05:36:48 +00001394DEFINE_MUTEX(fanout_mutex);
1395EXPORT_SYMBOL_GPL(fanout_mutex);
David S. Millerdc99f602011-07-05 01:45:05 -07001396static LIST_HEAD(fanout_list);
1397
1398static void __fanout_link(struct sock *sk, struct packet_sock *po)
1399{
1400 struct packet_fanout *f = po->fanout;
1401
1402 spin_lock(&f->lock);
1403 f->arr[f->num_members] = sk;
1404 smp_wmb();
1405 f->num_members++;
1406 spin_unlock(&f->lock);
1407}
1408
1409static void __fanout_unlink(struct sock *sk, struct packet_sock *po)
1410{
1411 struct packet_fanout *f = po->fanout;
1412 int i;
1413
1414 spin_lock(&f->lock);
1415 for (i = 0; i < f->num_members; i++) {
1416 if (f->arr[i] == sk)
1417 break;
1418 }
1419 BUG_ON(i >= f->num_members);
1420 f->arr[i] = f->arr[f->num_members - 1];
1421 f->num_members--;
1422 spin_unlock(&f->lock);
1423}
1424
Weilong Chend4dd8ae2013-12-23 11:31:38 +08001425static bool match_fanout_group(struct packet_type *ptype, struct sock *sk)
Eric Leblondc0de08d2012-08-16 22:02:58 +00001426{
Weilong Chend4dd8ae2013-12-23 11:31:38 +08001427 if (ptype->af_packet_priv == (void *)((struct packet_sock *)sk)->fanout)
Eric Leblondc0de08d2012-08-16 22:02:58 +00001428 return true;
1429
1430 return false;
1431}
1432
David S. Miller7736d332011-07-05 01:43:20 -07001433static int fanout_add(struct sock *sk, u16 id, u16 type_flags)
David S. Millerdc99f602011-07-05 01:45:05 -07001434{
1435 struct packet_sock *po = pkt_sk(sk);
1436 struct packet_fanout *f, *match;
David S. Miller7736d332011-07-05 01:43:20 -07001437 u8 type = type_flags & 0xff;
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001438 u8 flags = type_flags >> 8;
David S. Millerdc99f602011-07-05 01:45:05 -07001439 int err;
1440
1441 switch (type) {
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001442 case PACKET_FANOUT_ROLLOVER:
1443 if (type_flags & PACKET_FANOUT_FLAG_ROLLOVER)
1444 return -EINVAL;
David S. Millerdc99f602011-07-05 01:45:05 -07001445 case PACKET_FANOUT_HASH:
1446 case PACKET_FANOUT_LB:
David S. Miller95ec3eb2011-07-06 01:56:38 -07001447 case PACKET_FANOUT_CPU:
Daniel Borkmann5df0ddf2013-08-28 22:13:09 +02001448 case PACKET_FANOUT_RND:
Neil Horman2d360972014-01-22 16:01:44 -05001449 case PACKET_FANOUT_QM:
David S. Millerdc99f602011-07-05 01:45:05 -07001450 break;
1451 default:
1452 return -EINVAL;
1453 }
1454
1455 if (!po->running)
1456 return -EINVAL;
1457
1458 if (po->fanout)
1459 return -EALREADY;
1460
1461 mutex_lock(&fanout_mutex);
1462 match = NULL;
1463 list_for_each_entry(f, &fanout_list, list) {
1464 if (f->id == id &&
1465 read_pnet(&f->net) == sock_net(sk)) {
1466 match = f;
1467 break;
1468 }
1469 }
Eric Dumazetafe62c62011-07-07 06:41:29 -07001470 err = -EINVAL;
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001471 if (match && match->flags != flags)
Eric Dumazetafe62c62011-07-07 06:41:29 -07001472 goto out;
David S. Millerdc99f602011-07-05 01:45:05 -07001473 if (!match) {
Eric Dumazetafe62c62011-07-07 06:41:29 -07001474 err = -ENOMEM;
David S. Millerdc99f602011-07-05 01:45:05 -07001475 match = kzalloc(sizeof(*match), GFP_KERNEL);
Eric Dumazetafe62c62011-07-07 06:41:29 -07001476 if (!match)
1477 goto out;
1478 write_pnet(&match->net, sock_net(sk));
1479 match->id = id;
1480 match->type = type;
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001481 match->flags = flags;
Eric Dumazetafe62c62011-07-07 06:41:29 -07001482 atomic_set(&match->rr_cur, 0);
1483 INIT_LIST_HEAD(&match->list);
1484 spin_lock_init(&match->lock);
1485 atomic_set(&match->sk_ref, 0);
1486 match->prot_hook.type = po->prot_hook.type;
1487 match->prot_hook.dev = po->prot_hook.dev;
1488 match->prot_hook.func = packet_rcv_fanout;
1489 match->prot_hook.af_packet_priv = match;
Eric Leblondc0de08d2012-08-16 22:02:58 +00001490 match->prot_hook.id_match = match_fanout_group;
Eric Dumazetafe62c62011-07-07 06:41:29 -07001491 dev_add_pack(&match->prot_hook);
1492 list_add(&match->list, &fanout_list);
1493 }
1494 err = -EINVAL;
1495 if (match->type == type &&
1496 match->prot_hook.type == po->prot_hook.type &&
1497 match->prot_hook.dev == po->prot_hook.dev) {
1498 err = -ENOSPC;
1499 if (atomic_read(&match->sk_ref) < PACKET_FANOUT_MAX) {
1500 __dev_remove_pack(&po->prot_hook);
1501 po->fanout = match;
1502 atomic_inc(&match->sk_ref);
1503 __fanout_link(sk, po);
1504 err = 0;
David S. Millerdc99f602011-07-05 01:45:05 -07001505 }
1506 }
Eric Dumazetafe62c62011-07-07 06:41:29 -07001507out:
David S. Millerdc99f602011-07-05 01:45:05 -07001508 mutex_unlock(&fanout_mutex);
1509 return err;
1510}
1511
1512static void fanout_release(struct sock *sk)
1513{
1514 struct packet_sock *po = pkt_sk(sk);
1515 struct packet_fanout *f;
1516
1517 f = po->fanout;
1518 if (!f)
1519 return;
1520
Pavel Emelyanovfff33212012-08-16 05:36:48 +00001521 mutex_lock(&fanout_mutex);
David S. Millerdc99f602011-07-05 01:45:05 -07001522 po->fanout = NULL;
1523
David S. Millerdc99f602011-07-05 01:45:05 -07001524 if (atomic_dec_and_test(&f->sk_ref)) {
1525 list_del(&f->list);
1526 dev_remove_pack(&f->prot_hook);
1527 kfree(f);
1528 }
1529 mutex_unlock(&fanout_mutex);
1530}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08001532static const struct proto_ops packet_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08001534static const struct proto_ops packet_ops_spkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001536static int packet_rcv_spkt(struct sk_buff *skb, struct net_device *dev,
1537 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
1539 struct sock *sk;
1540 struct sockaddr_pkt *spkt;
1541
1542 /*
1543 * When we registered the protocol we saved the socket in the data
1544 * field for just this event.
1545 */
1546
1547 sk = pt->af_packet_priv;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 /*
1550 * Yank back the headers [hope the device set this
1551 * right or kerboom...]
1552 *
1553 * Incoming packets have ll header pulled,
1554 * push it back.
1555 *
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001556 * For outgoing ones skb->data == skb_mac_header(skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 * so that this procedure is noop.
1558 */
1559
1560 if (skb->pkt_type == PACKET_LOOPBACK)
1561 goto out;
1562
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001563 if (!net_eq(dev_net(dev), sock_net(sk)))
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08001564 goto out;
1565
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001566 skb = skb_share_check(skb, GFP_ATOMIC);
1567 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 goto oom;
1569
1570 /* drop any routing info */
Eric Dumazetadf30902009-06-02 05:19:30 +00001571 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Phil Oester84531c22005-07-12 11:57:52 -07001573 /* drop conntrack reference */
1574 nf_reset(skb);
1575
Herbert Xuffbc6112007-02-04 23:33:10 -08001576 spkt = &PACKET_SKB_CB(skb)->sa.pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001578 skb_push(skb, skb->data - skb_mac_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
1580 /*
1581 * The SOCK_PACKET socket receives _all_ frames.
1582 */
1583
1584 spkt->spkt_family = dev->type;
1585 strlcpy(spkt->spkt_device, dev->name, sizeof(spkt->spkt_device));
1586 spkt->spkt_protocol = skb->protocol;
1587
1588 /*
1589 * Charge the memory to the socket. This is done specifically
1590 * to prevent sockets using all the memory up.
1591 */
1592
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001593 if (sock_queue_rcv_skb(sk, skb) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 return 0;
1595
1596out:
1597 kfree_skb(skb);
1598oom:
1599 return 0;
1600}
1601
1602
1603/*
1604 * Output a raw packet to a device layer. This bypasses all the other
1605 * protocol layers and you must therefore supply it with a complete frame
1606 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608static int packet_sendmsg_spkt(struct kiocb *iocb, struct socket *sock,
1609 struct msghdr *msg, size_t len)
1610{
1611 struct sock *sk = sock->sk;
Steffen Hurrle342dfc32014-01-17 22:53:15 +01001612 DECLARE_SOCKADDR(struct sockaddr_pkt *, saddr, msg->msg_name);
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001613 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 struct net_device *dev;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001615 __be16 proto = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 int err;
Ben Greear3bdc0eb2012-02-11 15:39:30 +00001617 int extra_len = 0;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001620 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 */
1622
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001623 if (saddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 if (msg->msg_namelen < sizeof(struct sockaddr))
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001625 return -EINVAL;
1626 if (msg->msg_namelen == sizeof(struct sockaddr_pkt))
1627 proto = saddr->spkt_protocol;
1628 } else
1629 return -ENOTCONN; /* SOCK_PACKET must be sent giving an address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
1631 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001632 * Find the device first to size check it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 */
1634
danborkmann@iogearbox.netde74e922012-06-10 08:59:28 +00001635 saddr->spkt_device[sizeof(saddr->spkt_device) - 1] = 0;
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001636retry:
Eric Dumazet654d1f82009-11-02 10:43:32 +01001637 rcu_read_lock();
1638 dev = dev_get_by_name_rcu(sock_net(sk), saddr->spkt_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 err = -ENODEV;
1640 if (dev == NULL)
1641 goto out_unlock;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001642
David S. Millerd5e76b02007-01-25 19:30:36 -08001643 err = -ENETDOWN;
1644 if (!(dev->flags & IFF_UP))
1645 goto out_unlock;
1646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 /*
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001648 * You may not queue a frame bigger than the mtu. This is the lowest level
1649 * raw protocol and you must do your own fragmentation at this level.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001651
Ben Greear3bdc0eb2012-02-11 15:39:30 +00001652 if (unlikely(sock_flag(sk, SOCK_NOFCS))) {
1653 if (!netif_supports_nofcs(dev)) {
1654 err = -EPROTONOSUPPORT;
1655 goto out_unlock;
1656 }
1657 extra_len = 4; /* We're doing our own CRC */
1658 }
1659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 err = -EMSGSIZE;
Ben Greear3bdc0eb2012-02-11 15:39:30 +00001661 if (len > dev->mtu + dev->hard_header_len + VLAN_HLEN + extra_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 goto out_unlock;
1663
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001664 if (!skb) {
1665 size_t reserved = LL_RESERVED_SPACE(dev);
Herbert Xu4ce40912011-11-18 02:20:05 +00001666 int tlen = dev->needed_tailroom;
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001667 unsigned int hhlen = dev->header_ops ? dev->hard_header_len : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001669 rcu_read_unlock();
Herbert Xu4ce40912011-11-18 02:20:05 +00001670 skb = sock_wmalloc(sk, len + reserved + tlen, 0, GFP_KERNEL);
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001671 if (skb == NULL)
1672 return -ENOBUFS;
1673 /* FIXME: Save some space for broken drivers that write a hard
1674 * header at transmission time by themselves. PPP is the notable
1675 * one here. This should really be fixed at the driver level.
1676 */
1677 skb_reserve(skb, reserved);
1678 skb_reset_network_header(skb);
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001679
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001680 /* Try to align data part correctly */
1681 if (hhlen) {
1682 skb->data -= hhlen;
1683 skb->tail -= hhlen;
1684 if (len < hhlen)
1685 skb_reset_network_header(skb);
1686 }
1687 err = memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len);
1688 if (err)
1689 goto out_free;
1690 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 }
1692
Ben Greear3bdc0eb2012-02-11 15:39:30 +00001693 if (len > (dev->mtu + dev->hard_header_len + extra_len)) {
Ben Greear57f89bf2011-02-11 09:35:18 +00001694 /* Earlier code assumed this would be a VLAN pkt,
1695 * double-check this now that we have the actual
1696 * packet in hand.
1697 */
1698 struct ethhdr *ehdr;
1699 skb_reset_mac_header(skb);
1700 ehdr = eth_hdr(skb);
1701 if (ehdr->h_proto != htons(ETH_P_8021Q)) {
1702 err = -EMSGSIZE;
1703 goto out_unlock;
1704 }
1705 }
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001706
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 skb->protocol = proto;
1708 skb->dev = dev;
1709 skb->priority = sk->sk_priority;
Eric Dumazet2d37a182009-10-01 19:14:46 +00001710 skb->mark = sk->sk_mark;
Daniel Borkmannbf84a012013-04-14 08:08:13 +00001711
1712 sock_tx_timestamp(sk, &skb_shinfo(skb)->tx_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
Ben Greear3bdc0eb2012-02-11 15:39:30 +00001714 if (unlikely(extra_len == 4))
1715 skb->no_fcs = 1;
1716
Jason Wang40893fd2013-03-26 23:11:22 +00001717 skb_probe_transport_header(skb, 0);
Jason Wangc1aad272013-03-25 20:19:57 +00001718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 dev_queue_xmit(skb);
Eric Dumazet654d1f82009-11-02 10:43:32 +01001720 rcu_read_unlock();
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001721 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723out_unlock:
Eric Dumazet654d1f82009-11-02 10:43:32 +01001724 rcu_read_unlock();
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001725out_free:
1726 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 return err;
1728}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001730static unsigned int run_filter(const struct sk_buff *skb,
Eric Dumazet62ab0812010-12-06 20:50:09 +00001731 const struct sock *sk,
David S. Millerdbcb5852007-01-24 15:21:02 -08001732 unsigned int res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733{
1734 struct sk_filter *filter;
1735
Eric Dumazet80f8f102011-01-18 07:46:52 +00001736 rcu_read_lock();
1737 filter = rcu_dereference(sk->sk_filter);
David S. Millerdbcb5852007-01-24 15:21:02 -08001738 if (filter != NULL)
Eric Dumazet0a148422011-04-20 09:27:32 +00001739 res = SK_RUN_FILTER(filter, skb);
Eric Dumazet80f8f102011-01-18 07:46:52 +00001740 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
David S. Millerdbcb5852007-01-24 15:21:02 -08001742 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743}
1744
1745/*
Eric Dumazet62ab0812010-12-06 20:50:09 +00001746 * This function makes lazy skb cloning in hope that most of packets
1747 * are discarded by BPF.
1748 *
1749 * Note tricky part: we DO mangle shared skb! skb->data, skb->len
1750 * and skb->cb are mangled. It works because (and until) packets
1751 * falling here are owned by current CPU. Output packets are cloned
1752 * by dev_queue_xmit_nit(), input packets are processed by net_bh
1753 * sequencially, so that if we return skb to original state on exit,
1754 * we will not harm anyone.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 */
1756
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001757static int packet_rcv(struct sk_buff *skb, struct net_device *dev,
1758 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759{
1760 struct sock *sk;
1761 struct sockaddr_ll *sll;
1762 struct packet_sock *po;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001763 u8 *skb_head = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 int skb_len = skb->len;
David S. Millerdbcb5852007-01-24 15:21:02 -08001765 unsigned int snaplen, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
1767 if (skb->pkt_type == PACKET_LOOPBACK)
1768 goto drop;
1769
1770 sk = pt->af_packet_priv;
1771 po = pkt_sk(sk);
1772
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001773 if (!net_eq(dev_net(dev), sock_net(sk)))
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08001774 goto drop;
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 skb->dev = dev;
1777
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -07001778 if (dev->header_ops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 /* The device has an explicit notion of ll header,
Eric Dumazet62ab0812010-12-06 20:50:09 +00001780 * exported to higher levels.
1781 *
1782 * Otherwise, the device hides details of its frame
1783 * structure, so that corresponding packet head is
1784 * never delivered to user.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 */
1786 if (sk->sk_type != SOCK_DGRAM)
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001787 skb_push(skb, skb->data - skb_mac_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 else if (skb->pkt_type == PACKET_OUTGOING) {
1789 /* Special case: outgoing packets have ll header at head */
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001790 skb_pull(skb, skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 }
1792 }
1793
1794 snaplen = skb->len;
1795
David S. Millerdbcb5852007-01-24 15:21:02 -08001796 res = run_filter(skb, sk, snaplen);
1797 if (!res)
Dmitry Mishinfda9ef52006-08-31 15:28:39 -07001798 goto drop_n_restore;
David S. Millerdbcb5852007-01-24 15:21:02 -08001799 if (snaplen > res)
1800 snaplen = res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Eric Dumazet0fd7bac2011-12-21 07:11:44 +00001802 if (atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 goto drop_n_acct;
1804
1805 if (skb_shared(skb)) {
1806 struct sk_buff *nskb = skb_clone(skb, GFP_ATOMIC);
1807 if (nskb == NULL)
1808 goto drop_n_acct;
1809
1810 if (skb_head != skb->data) {
1811 skb->data = skb_head;
1812 skb->len = skb_len;
1813 }
Eric Dumazetabc4e4f2012-04-19 02:24:42 +00001814 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 skb = nskb;
1816 }
1817
Herbert Xuffbc6112007-02-04 23:33:10 -08001818 BUILD_BUG_ON(sizeof(*PACKET_SKB_CB(skb)) + MAX_ADDR_LEN - 8 >
1819 sizeof(skb->cb));
1820
1821 sll = &PACKET_SKB_CB(skb)->sa.ll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 sll->sll_family = AF_PACKET;
1823 sll->sll_hatype = dev->type;
1824 sll->sll_protocol = skb->protocol;
1825 sll->sll_pkttype = skb->pkt_type;
Peter P Waskiewicz Jr8032b462007-11-10 22:03:25 -08001826 if (unlikely(po->origdev))
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07001827 sll->sll_ifindex = orig_dev->ifindex;
1828 else
1829 sll->sll_ifindex = dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Stephen Hemmingerb95cce32007-09-26 22:13:38 -07001831 sll->sll_halen = dev_parse_header(skb, sll->sll_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Herbert Xuffbc6112007-02-04 23:33:10 -08001833 PACKET_SKB_CB(skb)->origlen = skb->len;
Herbert Xu8dc41942007-02-04 23:31:32 -08001834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 if (pskb_trim(skb, snaplen))
1836 goto drop_n_acct;
1837
1838 skb_set_owner_r(skb, sk);
1839 skb->dev = NULL;
Eric Dumazetadf30902009-06-02 05:19:30 +00001840 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Phil Oester84531c22005-07-12 11:57:52 -07001842 /* drop conntrack reference */
1843 nf_reset(skb);
1844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 spin_lock(&sk->sk_receive_queue.lock);
Daniel Borkmannee80fbf2013-04-19 06:12:29 +00001846 po->stats.stats1.tp_packets++;
Neil Horman3b885782009-10-12 13:26:31 -07001847 skb->dropcount = atomic_read(&sk->sk_drops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 __skb_queue_tail(&sk->sk_receive_queue, skb);
1849 spin_unlock(&sk->sk_receive_queue.lock);
1850 sk->sk_data_ready(sk, skb->len);
1851 return 0;
1852
1853drop_n_acct:
Willem de Bruijn7091fbd2011-09-30 10:38:28 +00001854 spin_lock(&sk->sk_receive_queue.lock);
Daniel Borkmannee80fbf2013-04-19 06:12:29 +00001855 po->stats.stats1.tp_drops++;
Willem de Bruijn7091fbd2011-09-30 10:38:28 +00001856 atomic_inc(&sk->sk_drops);
1857 spin_unlock(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
1859drop_n_restore:
1860 if (skb_head != skb->data && skb_shared(skb)) {
1861 skb->data = skb_head;
1862 skb->len = skb_len;
1863 }
1864drop:
Neil Hormanead2ceb2009-03-11 09:49:55 +00001865 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 return 0;
1867}
1868
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001869static int tpacket_rcv(struct sk_buff *skb, struct net_device *dev,
1870 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871{
1872 struct sock *sk;
1873 struct packet_sock *po;
1874 struct sockaddr_ll *sll;
Daniel Borkmann184f4892013-04-16 01:57:46 +00001875 union tpacket_uhdr h;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001876 u8 *skb_head = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 int skb_len = skb->len;
David S. Millerdbcb5852007-01-24 15:21:02 -08001878 unsigned int snaplen, res;
chetan lokef6fb8f102011-08-19 10:18:16 +00001879 unsigned long status = TP_STATUS_USER;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001880 unsigned short macoff, netoff, hdrlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 struct sk_buff *copy_skb = NULL;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001882 struct timespec ts;
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +00001883 __u32 ts_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Atzm Watanabe51846352013-12-17 22:53:32 +09001885 /* struct tpacket{2,3}_hdr is aligned to a multiple of TPACKET_ALIGNMENT.
1886 * We may add members to them until current aligned size without forcing
1887 * userspace to call getsockopt(..., PACKET_HDRLEN, ...).
1888 */
1889 BUILD_BUG_ON(TPACKET_ALIGN(sizeof(*h.h2)) != 32);
1890 BUILD_BUG_ON(TPACKET_ALIGN(sizeof(*h.h3)) != 48);
1891
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 if (skb->pkt_type == PACKET_LOOPBACK)
1893 goto drop;
1894
1895 sk = pt->af_packet_priv;
1896 po = pkt_sk(sk);
1897
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001898 if (!net_eq(dev_net(dev), sock_net(sk)))
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08001899 goto drop;
1900
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -07001901 if (dev->header_ops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 if (sk->sk_type != SOCK_DGRAM)
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001903 skb_push(skb, skb->data - skb_mac_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 else if (skb->pkt_type == PACKET_OUTGOING) {
1905 /* Special case: outgoing packets have ll header at head */
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001906 skb_pull(skb, skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 }
1908 }
1909
Herbert Xu8dc41942007-02-04 23:31:32 -08001910 if (skb->ip_summed == CHECKSUM_PARTIAL)
1911 status |= TP_STATUS_CSUMNOTREADY;
1912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 snaplen = skb->len;
1914
David S. Millerdbcb5852007-01-24 15:21:02 -08001915 res = run_filter(skb, sk, snaplen);
1916 if (!res)
Dmitry Mishinfda9ef52006-08-31 15:28:39 -07001917 goto drop_n_restore;
David S. Millerdbcb5852007-01-24 15:21:02 -08001918 if (snaplen > res)
1919 snaplen = res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
1921 if (sk->sk_type == SOCK_DGRAM) {
Patrick McHardy8913336a2008-07-18 18:05:19 -07001922 macoff = netoff = TPACKET_ALIGN(po->tp_hdrlen) + 16 +
1923 po->tp_reserve;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 } else {
Eric Dumazet95c96172012-04-15 05:58:06 +00001925 unsigned int maclen = skb_network_offset(skb);
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001926 netoff = TPACKET_ALIGN(po->tp_hdrlen +
Patrick McHardy8913336a2008-07-18 18:05:19 -07001927 (maclen < 16 ? 16 : maclen)) +
1928 po->tp_reserve;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 macoff = netoff - maclen;
1930 }
chetan lokef6fb8f102011-08-19 10:18:16 +00001931 if (po->tp_version <= TPACKET_V2) {
1932 if (macoff + snaplen > po->rx_ring.frame_size) {
1933 if (po->copy_thresh &&
Eric Dumazet0fd7bac2011-12-21 07:11:44 +00001934 atomic_read(&sk->sk_rmem_alloc) < sk->sk_rcvbuf) {
chetan lokef6fb8f102011-08-19 10:18:16 +00001935 if (skb_shared(skb)) {
1936 copy_skb = skb_clone(skb, GFP_ATOMIC);
1937 } else {
1938 copy_skb = skb_get(skb);
1939 skb_head = skb->data;
1940 }
1941 if (copy_skb)
1942 skb_set_owner_r(copy_skb, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 }
chetan lokef6fb8f102011-08-19 10:18:16 +00001944 snaplen = po->rx_ring.frame_size - macoff;
1945 if ((int)snaplen < 0)
1946 snaplen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 spin_lock(&sk->sk_receive_queue.lock);
chetan lokef6fb8f102011-08-19 10:18:16 +00001950 h.raw = packet_current_rx_frame(po, skb,
1951 TP_STATUS_KERNEL, (macoff+snaplen));
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001952 if (!h.raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 goto ring_is_full;
chetan lokef6fb8f102011-08-19 10:18:16 +00001954 if (po->tp_version <= TPACKET_V2) {
1955 packet_increment_rx_head(po, &po->rx_ring);
1956 /*
1957 * LOSING will be reported till you read the stats,
1958 * because it's COR - Clear On Read.
1959 * Anyways, moving it for V1/V2 only as V3 doesn't need this
1960 * at packet level.
1961 */
Daniel Borkmannee80fbf2013-04-19 06:12:29 +00001962 if (po->stats.stats1.tp_drops)
chetan lokef6fb8f102011-08-19 10:18:16 +00001963 status |= TP_STATUS_LOSING;
1964 }
Daniel Borkmannee80fbf2013-04-19 06:12:29 +00001965 po->stats.stats1.tp_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 if (copy_skb) {
1967 status |= TP_STATUS_COPY;
1968 __skb_queue_tail(&sk->sk_receive_queue, copy_skb);
1969 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 spin_unlock(&sk->sk_receive_queue.lock);
1971
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001972 skb_copy_bits(skb, 0, h.raw + macoff, snaplen);
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +00001973
1974 if (!(ts_status = tpacket_get_timestamp(skb, &ts, po->tp_tstamp)))
Daniel Borkmann7a513842013-04-23 00:39:29 +00001975 getnstimeofday(&ts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +00001977 status |= ts_status;
1978
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001979 switch (po->tp_version) {
1980 case TPACKET_V1:
1981 h.h1->tp_len = skb->len;
1982 h.h1->tp_snaplen = snaplen;
1983 h.h1->tp_mac = macoff;
1984 h.h1->tp_net = netoff;
Daniel Borkmann4b457bd2013-04-16 01:29:11 +00001985 h.h1->tp_sec = ts.tv_sec;
1986 h.h1->tp_usec = ts.tv_nsec / NSEC_PER_USEC;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001987 hdrlen = sizeof(*h.h1);
1988 break;
1989 case TPACKET_V2:
1990 h.h2->tp_len = skb->len;
1991 h.h2->tp_snaplen = snaplen;
1992 h.h2->tp_mac = macoff;
1993 h.h2->tp_net = netoff;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001994 h.h2->tp_sec = ts.tv_sec;
1995 h.h2->tp_nsec = ts.tv_nsec;
Ben Greeara3bcc232011-06-01 06:49:10 +00001996 if (vlan_tx_tag_present(skb)) {
1997 h.h2->tp_vlan_tci = vlan_tx_tag_get(skb);
Atzm Watanabea0cdfcf2013-12-17 22:53:40 +09001998 h.h2->tp_vlan_tpid = ntohs(skb->vlan_proto);
1999 status |= TP_STATUS_VLAN_VALID | TP_STATUS_VLAN_TPID_VALID;
Ben Greeara3bcc232011-06-01 06:49:10 +00002000 } else {
2001 h.h2->tp_vlan_tci = 0;
Atzm Watanabea0cdfcf2013-12-17 22:53:40 +09002002 h.h2->tp_vlan_tpid = 0;
Ben Greeara3bcc232011-06-01 06:49:10 +00002003 }
Atzm Watanabee4d26f42013-12-17 22:53:36 +09002004 memset(h.h2->tp_padding, 0, sizeof(h.h2->tp_padding));
Patrick McHardybbd6ef82008-07-14 22:50:15 -07002005 hdrlen = sizeof(*h.h2);
2006 break;
chetan lokef6fb8f102011-08-19 10:18:16 +00002007 case TPACKET_V3:
2008 /* tp_nxt_offset,vlan are already populated above.
2009 * So DONT clear those fields here
2010 */
2011 h.h3->tp_status |= status;
2012 h.h3->tp_len = skb->len;
2013 h.h3->tp_snaplen = snaplen;
2014 h.h3->tp_mac = macoff;
2015 h.h3->tp_net = netoff;
chetan lokef6fb8f102011-08-19 10:18:16 +00002016 h.h3->tp_sec = ts.tv_sec;
2017 h.h3->tp_nsec = ts.tv_nsec;
Atzm Watanabee4d26f42013-12-17 22:53:36 +09002018 memset(h.h3->tp_padding, 0, sizeof(h.h3->tp_padding));
chetan lokef6fb8f102011-08-19 10:18:16 +00002019 hdrlen = sizeof(*h.h3);
2020 break;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07002021 default:
2022 BUG();
2023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
Patrick McHardybbd6ef82008-07-14 22:50:15 -07002025 sll = h.raw + TPACKET_ALIGN(hdrlen);
Stephen Hemmingerb95cce32007-09-26 22:13:38 -07002026 sll->sll_halen = dev_parse_header(skb, sll->sll_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 sll->sll_family = AF_PACKET;
2028 sll->sll_hatype = dev->type;
2029 sll->sll_protocol = skb->protocol;
2030 sll->sll_pkttype = skb->pkt_type;
Peter P Waskiewicz Jr8032b462007-11-10 22:03:25 -08002031 if (unlikely(po->origdev))
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07002032 sll->sll_ifindex = orig_dev->ifindex;
2033 else
2034 sll->sll_ifindex = dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
Ralf Baechlee16aa202006-12-07 00:11:33 -08002036 smp_mb();
Daniel Borkmannf0d4eb22014-01-19 11:46:53 +01002037
Changli Gaof6dafa92010-12-07 04:26:16 +00002038#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
Daniel Borkmannf0d4eb22014-01-19 11:46:53 +01002039 if (po->tp_version <= TPACKET_V2) {
Changli Gao0af55bb2010-12-01 02:52:20 +00002040 u8 *start, *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Daniel Borkmannf0d4eb22014-01-19 11:46:53 +01002042 end = (u8 *) PAGE_ALIGN((unsigned long) h.raw +
2043 macoff + snaplen);
2044
2045 for (start = h.raw; start < end; start += PAGE_SIZE)
2046 flush_dcache_page(pgv_to_page(start));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 }
Daniel Borkmannf0d4eb22014-01-19 11:46:53 +01002048 smp_wmb();
Changli Gaof6dafa92010-12-07 04:26:16 +00002049#endif
Daniel Borkmannf0d4eb22014-01-19 11:46:53 +01002050
chetan lokef6fb8f102011-08-19 10:18:16 +00002051 if (po->tp_version <= TPACKET_V2)
2052 __packet_set_status(po, h.raw, status);
2053 else
2054 prb_clear_blk_fill_status(&po->rx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
2056 sk->sk_data_ready(sk, 0);
2057
2058drop_n_restore:
2059 if (skb_head != skb->data && skb_shared(skb)) {
2060 skb->data = skb_head;
2061 skb->len = skb_len;
2062 }
2063drop:
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002064 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 return 0;
2066
2067ring_is_full:
Daniel Borkmannee80fbf2013-04-19 06:12:29 +00002068 po->stats.stats1.tp_drops++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 spin_unlock(&sk->sk_receive_queue.lock);
2070
2071 sk->sk_data_ready(sk, 0);
Wei Yongjunacb5d752009-02-25 00:36:42 +00002072 kfree_skb(copy_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 goto drop_n_restore;
2074}
2075
Johann Baudy69e3c752009-05-18 22:11:22 -07002076static void tpacket_destruct_skb(struct sk_buff *skb)
2077{
2078 struct packet_sock *po = pkt_sk(skb->sk);
Johann Baudy69e3c752009-05-18 22:11:22 -07002079
Johann Baudy69e3c752009-05-18 22:11:22 -07002080 if (likely(po->tx_ring.pg_vec)) {
Daniel Borkmannf0d4eb22014-01-19 11:46:53 +01002081 void *ph;
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +00002082 __u32 ts;
2083
Johann Baudy69e3c752009-05-18 22:11:22 -07002084 ph = skb_shinfo(skb)->destructor_arg;
Daniel Borkmannb0138402014-01-15 16:25:36 +01002085 packet_dec_pending(&po->tx_ring);
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +00002086
2087 ts = __packet_set_timestamp(po, ph, skb);
2088 __packet_set_status(po, ph, TP_STATUS_AVAILABLE | ts);
Johann Baudy69e3c752009-05-18 22:11:22 -07002089 }
2090
2091 sock_wfree(skb);
2092}
2093
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002094static int tpacket_fill_skb(struct packet_sock *po, struct sk_buff *skb,
2095 void *frame, struct net_device *dev, int size_max,
Herbert Xuae641942011-11-18 02:20:04 +00002096 __be16 proto, unsigned char *addr, int hlen)
Johann Baudy69e3c752009-05-18 22:11:22 -07002097{
Daniel Borkmann184f4892013-04-16 01:57:46 +00002098 union tpacket_uhdr ph;
David S. Miller09effa62013-08-07 17:11:00 -07002099 int to_write, offset, len, tp_len, nr_frags, len_max;
Johann Baudy69e3c752009-05-18 22:11:22 -07002100 struct socket *sock = po->sk.sk_socket;
2101 struct page *page;
2102 void *data;
2103 int err;
2104
2105 ph.raw = frame;
2106
2107 skb->protocol = proto;
2108 skb->dev = dev;
2109 skb->priority = po->sk.sk_priority;
Eric Dumazet2d37a182009-10-01 19:14:46 +00002110 skb->mark = po->sk.sk_mark;
Willem de Bruijn2e313962013-04-23 00:39:28 +00002111 sock_tx_timestamp(&po->sk, &skb_shinfo(skb)->tx_flags);
Johann Baudy69e3c752009-05-18 22:11:22 -07002112 skb_shinfo(skb)->destructor_arg = ph.raw;
2113
2114 switch (po->tp_version) {
2115 case TPACKET_V2:
2116 tp_len = ph.h2->tp_len;
2117 break;
2118 default:
2119 tp_len = ph.h1->tp_len;
2120 break;
2121 }
David S. Miller09effa62013-08-07 17:11:00 -07002122 if (unlikely(tp_len > size_max)) {
2123 pr_err("packet size is too long (%d > %d)\n", tp_len, size_max);
2124 return -EMSGSIZE;
2125 }
Johann Baudy69e3c752009-05-18 22:11:22 -07002126
Herbert Xuae641942011-11-18 02:20:04 +00002127 skb_reserve(skb, hlen);
Johann Baudy69e3c752009-05-18 22:11:22 -07002128 skb_reset_network_header(skb);
Jason Wangc1aad272013-03-25 20:19:57 +00002129
Daniel Borkmannd346a3f2013-12-06 11:36:17 +01002130 if (!packet_use_direct_xmit(po))
2131 skb_probe_transport_header(skb, 0);
2132 if (unlikely(po->tp_tx_has_off)) {
Paul Chavent5920cd3a2012-11-06 23:10:47 +00002133 int off_min, off_max, off;
2134 off_min = po->tp_hdrlen - sizeof(struct sockaddr_ll);
2135 off_max = po->tx_ring.frame_size - tp_len;
2136 if (sock->type == SOCK_DGRAM) {
2137 switch (po->tp_version) {
2138 case TPACKET_V2:
2139 off = ph.h2->tp_net;
2140 break;
2141 default:
2142 off = ph.h1->tp_net;
2143 break;
2144 }
2145 } else {
2146 switch (po->tp_version) {
2147 case TPACKET_V2:
2148 off = ph.h2->tp_mac;
2149 break;
2150 default:
2151 off = ph.h1->tp_mac;
2152 break;
2153 }
2154 }
2155 if (unlikely((off < off_min) || (off_max < off)))
2156 return -EINVAL;
2157 data = ph.raw + off;
2158 } else {
2159 data = ph.raw + po->tp_hdrlen - sizeof(struct sockaddr_ll);
2160 }
Johann Baudy69e3c752009-05-18 22:11:22 -07002161 to_write = tp_len;
2162
2163 if (sock->type == SOCK_DGRAM) {
2164 err = dev_hard_header(skb, dev, ntohs(proto), addr,
2165 NULL, tp_len);
2166 if (unlikely(err < 0))
2167 return -EINVAL;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002168 } else if (dev->hard_header_len) {
Johann Baudy69e3c752009-05-18 22:11:22 -07002169 /* net device doesn't like empty head */
2170 if (unlikely(tp_len <= dev->hard_header_len)) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002171 pr_err("packet size is too short (%d < %d)\n",
2172 tp_len, dev->hard_header_len);
Johann Baudy69e3c752009-05-18 22:11:22 -07002173 return -EINVAL;
2174 }
2175
2176 skb_push(skb, dev->hard_header_len);
2177 err = skb_store_bits(skb, 0, data,
2178 dev->hard_header_len);
2179 if (unlikely(err))
2180 return err;
2181
2182 data += dev->hard_header_len;
2183 to_write -= dev->hard_header_len;
2184 }
2185
Johann Baudy69e3c752009-05-18 22:11:22 -07002186 offset = offset_in_page(data);
2187 len_max = PAGE_SIZE - offset;
2188 len = ((to_write > len_max) ? len_max : to_write);
2189
2190 skb->data_len = to_write;
2191 skb->len += to_write;
2192 skb->truesize += to_write;
2193 atomic_add(to_write, &po->sk.sk_wmem_alloc);
2194
2195 while (likely(to_write)) {
2196 nr_frags = skb_shinfo(skb)->nr_frags;
2197
2198 if (unlikely(nr_frags >= MAX_SKB_FRAGS)) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002199 pr_err("Packet exceed the number of skb frags(%lu)\n",
2200 MAX_SKB_FRAGS);
Johann Baudy69e3c752009-05-18 22:11:22 -07002201 return -EFAULT;
2202 }
2203
Changli Gao0af55bb2010-12-01 02:52:20 +00002204 page = pgv_to_page(data);
2205 data += len;
Johann Baudy69e3c752009-05-18 22:11:22 -07002206 flush_dcache_page(page);
2207 get_page(page);
Changli Gao0af55bb2010-12-01 02:52:20 +00002208 skb_fill_page_desc(skb, nr_frags, page, offset, len);
Johann Baudy69e3c752009-05-18 22:11:22 -07002209 to_write -= len;
2210 offset = 0;
2211 len_max = PAGE_SIZE;
2212 len = ((to_write > len_max) ? len_max : to_write);
2213 }
2214
2215 return tp_len;
2216}
2217
2218static int tpacket_snd(struct packet_sock *po, struct msghdr *msg)
2219{
Johann Baudy69e3c752009-05-18 22:11:22 -07002220 struct sk_buff *skb;
2221 struct net_device *dev;
2222 __be16 proto;
David S. Miller09effa62013-08-07 17:11:00 -07002223 int err, reserve = 0;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002224 void *ph;
Steffen Hurrle342dfc32014-01-17 22:53:15 +01002225 DECLARE_SOCKADDR(struct sockaddr_ll *, saddr, msg->msg_name);
Daniel Borkmann87a2fd22014-01-15 16:25:35 +01002226 bool need_wait = !(msg->msg_flags & MSG_DONTWAIT);
Johann Baudy69e3c752009-05-18 22:11:22 -07002227 int tp_len, size_max;
2228 unsigned char *addr;
2229 int len_sum = 0;
danborkmann@iogearbox.net9e670302012-08-20 03:34:03 +00002230 int status = TP_STATUS_AVAILABLE;
Herbert Xuae641942011-11-18 02:20:04 +00002231 int hlen, tlen;
Johann Baudy69e3c752009-05-18 22:11:22 -07002232
Johann Baudy69e3c752009-05-18 22:11:22 -07002233 mutex_lock(&po->pg_vec_lock);
2234
Daniel Borkmann66e56cd2013-12-06 11:36:15 +01002235 if (likely(saddr == NULL)) {
Daniel Borkmanne40526c2013-11-21 16:50:58 +01002236 dev = packet_cached_dev_get(po);
Johann Baudy69e3c752009-05-18 22:11:22 -07002237 proto = po->num;
2238 addr = NULL;
2239 } else {
2240 err = -EINVAL;
2241 if (msg->msg_namelen < sizeof(struct sockaddr_ll))
2242 goto out;
2243 if (msg->msg_namelen < (saddr->sll_halen
2244 + offsetof(struct sockaddr_ll,
2245 sll_addr)))
2246 goto out;
Johann Baudy69e3c752009-05-18 22:11:22 -07002247 proto = saddr->sll_protocol;
2248 addr = saddr->sll_addr;
Ben Greear827d9782011-06-01 07:18:53 +00002249 dev = dev_get_by_index(sock_net(&po->sk), saddr->sll_ifindex);
Johann Baudy69e3c752009-05-18 22:11:22 -07002250 }
2251
Johann Baudy69e3c752009-05-18 22:11:22 -07002252 err = -ENXIO;
2253 if (unlikely(dev == NULL))
2254 goto out;
Johann Baudy69e3c752009-05-18 22:11:22 -07002255 err = -ENETDOWN;
2256 if (unlikely(!(dev->flags & IFF_UP)))
2257 goto out_put;
2258
Daniel Borkmann52f14542014-02-28 02:22:06 +01002259 reserve = dev->hard_header_len + VLAN_HLEN;
Johann Baudy69e3c752009-05-18 22:11:22 -07002260 size_max = po->tx_ring.frame_size
Gabor Gombasb5dd8842009-10-29 03:19:11 -07002261 - (po->tp_hdrlen - sizeof(struct sockaddr_ll));
Johann Baudy69e3c752009-05-18 22:11:22 -07002262
David S. Miller09effa62013-08-07 17:11:00 -07002263 if (size_max > dev->mtu + reserve)
2264 size_max = dev->mtu + reserve;
2265
Johann Baudy69e3c752009-05-18 22:11:22 -07002266 do {
2267 ph = packet_current_frame(po, &po->tx_ring,
Daniel Borkmann87a2fd22014-01-15 16:25:35 +01002268 TP_STATUS_SEND_REQUEST);
Johann Baudy69e3c752009-05-18 22:11:22 -07002269 if (unlikely(ph == NULL)) {
Daniel Borkmann87a2fd22014-01-15 16:25:35 +01002270 if (need_wait && need_resched())
2271 schedule();
Johann Baudy69e3c752009-05-18 22:11:22 -07002272 continue;
2273 }
2274
2275 status = TP_STATUS_SEND_REQUEST;
Herbert Xuae641942011-11-18 02:20:04 +00002276 hlen = LL_RESERVED_SPACE(dev);
2277 tlen = dev->needed_tailroom;
Johann Baudy69e3c752009-05-18 22:11:22 -07002278 skb = sock_alloc_send_skb(&po->sk,
Herbert Xuae641942011-11-18 02:20:04 +00002279 hlen + tlen + sizeof(struct sockaddr_ll),
Johann Baudy69e3c752009-05-18 22:11:22 -07002280 0, &err);
2281
2282 if (unlikely(skb == NULL))
2283 goto out_status;
2284
2285 tp_len = tpacket_fill_skb(po, skb, ph, dev, size_max, proto,
Daniel Borkmann52f14542014-02-28 02:22:06 +01002286 addr, hlen);
2287 if (tp_len > dev->mtu + dev->hard_header_len) {
2288 struct ethhdr *ehdr;
2289 /* Earlier code assumed this would be a VLAN pkt,
2290 * double-check this now that we have the actual
2291 * packet in hand.
2292 */
Johann Baudy69e3c752009-05-18 22:11:22 -07002293
Daniel Borkmann52f14542014-02-28 02:22:06 +01002294 skb_reset_mac_header(skb);
2295 ehdr = eth_hdr(skb);
2296 if (ehdr->h_proto != htons(ETH_P_8021Q))
2297 tp_len = -EMSGSIZE;
2298 }
Johann Baudy69e3c752009-05-18 22:11:22 -07002299 if (unlikely(tp_len < 0)) {
2300 if (po->tp_loss) {
2301 __packet_set_status(po, ph,
2302 TP_STATUS_AVAILABLE);
2303 packet_increment_head(&po->tx_ring);
2304 kfree_skb(skb);
2305 continue;
2306 } else {
2307 status = TP_STATUS_WRONG_FORMAT;
2308 err = tp_len;
2309 goto out_status;
2310 }
2311 }
2312
Daniel Borkmann0fd5d572014-02-16 15:55:22 +01002313 packet_pick_tx_queue(dev, skb);
2314
Johann Baudy69e3c752009-05-18 22:11:22 -07002315 skb->destructor = tpacket_destruct_skb;
2316 __packet_set_status(po, ph, TP_STATUS_SENDING);
Daniel Borkmannb0138402014-01-15 16:25:36 +01002317 packet_inc_pending(&po->tx_ring);
Johann Baudy69e3c752009-05-18 22:11:22 -07002318
2319 status = TP_STATUS_SEND_REQUEST;
Daniel Borkmannd346a3f2013-12-06 11:36:17 +01002320 err = po->xmit(skb);
Jarek Poplawskieb70df12010-01-10 22:04:19 +00002321 if (unlikely(err > 0)) {
2322 err = net_xmit_errno(err);
2323 if (err && __packet_get_status(po, ph) ==
2324 TP_STATUS_AVAILABLE) {
2325 /* skb was destructed already */
2326 skb = NULL;
2327 goto out_status;
2328 }
2329 /*
2330 * skb was dropped but not destructed yet;
2331 * let's treat it like congestion or err < 0
2332 */
2333 err = 0;
2334 }
Johann Baudy69e3c752009-05-18 22:11:22 -07002335 packet_increment_head(&po->tx_ring);
2336 len_sum += tp_len;
Daniel Borkmannb0138402014-01-15 16:25:36 +01002337 } while (likely((ph != NULL) ||
2338 /* Note: packet_read_pending() might be slow if we have
2339 * to call it as it's per_cpu variable, but in fast-path
2340 * we already short-circuit the loop with the first
2341 * condition, and luckily don't have to go that path
2342 * anyway.
2343 */
2344 (need_wait && packet_read_pending(&po->tx_ring))));
Johann Baudy69e3c752009-05-18 22:11:22 -07002345
2346 err = len_sum;
2347 goto out_put;
2348
Johann Baudy69e3c752009-05-18 22:11:22 -07002349out_status:
2350 __packet_set_status(po, ph, status);
2351 kfree_skb(skb);
2352out_put:
Daniel Borkmanne40526c2013-11-21 16:50:58 +01002353 dev_put(dev);
Johann Baudy69e3c752009-05-18 22:11:22 -07002354out:
2355 mutex_unlock(&po->pg_vec_lock);
2356 return err;
2357}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
Olof Johanssoneea49cc92011-11-02 11:00:49 +00002359static struct sk_buff *packet_alloc_skb(struct sock *sk, size_t prepad,
2360 size_t reserve, size_t len,
2361 size_t linear, int noblock,
2362 int *err)
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002363{
2364 struct sk_buff *skb;
2365
2366 /* Under a page? Don't bother with paged skb. */
2367 if (prepad + len < PAGE_SIZE || !linear)
2368 linear = len;
2369
2370 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
Eric Dumazet28d64272013-08-08 14:38:47 -07002371 err, 0);
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002372 if (!skb)
2373 return NULL;
2374
2375 skb_reserve(skb, reserve);
2376 skb_put(skb, linear);
2377 skb->data_len = len - linear;
2378 skb->len += len - linear;
2379
2380 return skb;
2381}
2382
Daniel Borkmannd346a3f2013-12-06 11:36:17 +01002383static int packet_snd(struct socket *sock, struct msghdr *msg, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384{
2385 struct sock *sk = sock->sk;
Steffen Hurrle342dfc32014-01-17 22:53:15 +01002386 DECLARE_SOCKADDR(struct sockaddr_ll *, saddr, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 struct sk_buff *skb;
2388 struct net_device *dev;
Al Viro0e11c912006-11-08 00:26:29 -08002389 __be16 proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 unsigned char *addr;
Ben Greear827d9782011-06-01 07:18:53 +00002391 int err, reserve = 0;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002392 struct virtio_net_hdr vnet_hdr = { 0 };
2393 int offset = 0;
2394 int vnet_hdr_len;
2395 struct packet_sock *po = pkt_sk(sk);
2396 unsigned short gso_type = 0;
Herbert Xuae641942011-11-18 02:20:04 +00002397 int hlen, tlen;
Ben Greear3bdc0eb2012-02-11 15:39:30 +00002398 int extra_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
2400 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002401 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002403
Daniel Borkmann66e56cd2013-12-06 11:36:15 +01002404 if (likely(saddr == NULL)) {
Daniel Borkmanne40526c2013-11-21 16:50:58 +01002405 dev = packet_cached_dev_get(po);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 proto = po->num;
2407 addr = NULL;
2408 } else {
2409 err = -EINVAL;
2410 if (msg->msg_namelen < sizeof(struct sockaddr_ll))
2411 goto out;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07002412 if (msg->msg_namelen < (saddr->sll_halen + offsetof(struct sockaddr_ll, sll_addr)))
2413 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 proto = saddr->sll_protocol;
2415 addr = saddr->sll_addr;
Ben Greear827d9782011-06-01 07:18:53 +00002416 dev = dev_get_by_index(sock_net(sk), saddr->sll_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 }
2418
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 err = -ENXIO;
Daniel Borkmanne40526c2013-11-21 16:50:58 +01002420 if (unlikely(dev == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 goto out_unlock;
Daniel Borkmanne40526c2013-11-21 16:50:58 +01002422 err = -ENETDOWN;
2423 if (unlikely(!(dev->flags & IFF_UP)))
2424 goto out_unlock;
2425
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 if (sock->type == SOCK_RAW)
2427 reserve = dev->hard_header_len;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002428 if (po->has_vnet_hdr) {
2429 vnet_hdr_len = sizeof(vnet_hdr);
2430
2431 err = -EINVAL;
2432 if (len < vnet_hdr_len)
2433 goto out_unlock;
2434
2435 len -= vnet_hdr_len;
2436
2437 err = memcpy_fromiovec((void *)&vnet_hdr, msg->msg_iov,
2438 vnet_hdr_len);
2439 if (err < 0)
2440 goto out_unlock;
2441
2442 if ((vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
2443 (vnet_hdr.csum_start + vnet_hdr.csum_offset + 2 >
2444 vnet_hdr.hdr_len))
2445 vnet_hdr.hdr_len = vnet_hdr.csum_start +
2446 vnet_hdr.csum_offset + 2;
2447
2448 err = -EINVAL;
2449 if (vnet_hdr.hdr_len > len)
2450 goto out_unlock;
2451
2452 if (vnet_hdr.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
2453 switch (vnet_hdr.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
2454 case VIRTIO_NET_HDR_GSO_TCPV4:
2455 gso_type = SKB_GSO_TCPV4;
2456 break;
2457 case VIRTIO_NET_HDR_GSO_TCPV6:
2458 gso_type = SKB_GSO_TCPV6;
2459 break;
2460 case VIRTIO_NET_HDR_GSO_UDP:
2461 gso_type = SKB_GSO_UDP;
2462 break;
2463 default:
2464 goto out_unlock;
2465 }
2466
2467 if (vnet_hdr.gso_type & VIRTIO_NET_HDR_GSO_ECN)
2468 gso_type |= SKB_GSO_TCP_ECN;
2469
2470 if (vnet_hdr.gso_size == 0)
2471 goto out_unlock;
2472
2473 }
2474 }
2475
Ben Greear3bdc0eb2012-02-11 15:39:30 +00002476 if (unlikely(sock_flag(sk, SOCK_NOFCS))) {
2477 if (!netif_supports_nofcs(dev)) {
2478 err = -EPROTONOSUPPORT;
2479 goto out_unlock;
2480 }
2481 extra_len = 4; /* We're doing our own CRC */
2482 }
2483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 err = -EMSGSIZE;
Ben Greear3bdc0eb2012-02-11 15:39:30 +00002485 if (!gso_type && (len > dev->mtu + reserve + VLAN_HLEN + extra_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 goto out_unlock;
2487
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002488 err = -ENOBUFS;
Herbert Xuae641942011-11-18 02:20:04 +00002489 hlen = LL_RESERVED_SPACE(dev);
2490 tlen = dev->needed_tailroom;
2491 skb = packet_alloc_skb(sk, hlen + tlen, hlen, len, vnet_hdr.hdr_len,
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002492 msg->msg_flags & MSG_DONTWAIT, &err);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002493 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 goto out_unlock;
2495
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002496 skb_set_network_header(skb, reserve);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
Stephen Hemminger0c4e8582007-10-09 01:36:32 -07002498 err = -EINVAL;
2499 if (sock->type == SOCK_DGRAM &&
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002500 (offset = dev_hard_header(skb, dev, ntohs(proto), addr, NULL, len)) < 0)
Stephen Hemminger0c4e8582007-10-09 01:36:32 -07002501 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502
2503 /* Returns -EFAULT on error */
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002504 err = skb_copy_datagram_from_iovec(skb, offset, msg->msg_iov, 0, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 if (err)
2506 goto out_free;
Daniel Borkmannbf84a012013-04-14 08:08:13 +00002507
2508 sock_tx_timestamp(sk, &skb_shinfo(skb)->tx_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
Ben Greear3bdc0eb2012-02-11 15:39:30 +00002510 if (!gso_type && (len > dev->mtu + reserve + extra_len)) {
David S. Miller09effa62013-08-07 17:11:00 -07002511 /* Earlier code assumed this would be a VLAN pkt,
2512 * double-check this now that we have the actual
2513 * packet in hand.
2514 */
2515 struct ethhdr *ehdr;
2516 skb_reset_mac_header(skb);
2517 ehdr = eth_hdr(skb);
2518 if (ehdr->h_proto != htons(ETH_P_8021Q)) {
2519 err = -EMSGSIZE;
2520 goto out_free;
2521 }
Ben Greear57f89bf2011-02-11 09:35:18 +00002522 }
2523
David S. Miller09effa62013-08-07 17:11:00 -07002524 skb->protocol = proto;
2525 skb->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 skb->priority = sk->sk_priority;
Eric Dumazet2d37a182009-10-01 19:14:46 +00002527 skb->mark = sk->sk_mark;
Daniel Borkmann0fd5d572014-02-16 15:55:22 +01002528
2529 packet_pick_tx_queue(dev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002531 if (po->has_vnet_hdr) {
2532 if (vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
2533 if (!skb_partial_csum_set(skb, vnet_hdr.csum_start,
2534 vnet_hdr.csum_offset)) {
2535 err = -EINVAL;
2536 goto out_free;
2537 }
2538 }
2539
2540 skb_shinfo(skb)->gso_size = vnet_hdr.gso_size;
2541 skb_shinfo(skb)->gso_type = gso_type;
2542
2543 /* Header must be checked, and gso_segs computed. */
2544 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
2545 skb_shinfo(skb)->gso_segs = 0;
2546
2547 len += vnet_hdr_len;
2548 }
2549
Daniel Borkmannd346a3f2013-12-06 11:36:17 +01002550 if (!packet_use_direct_xmit(po))
2551 skb_probe_transport_header(skb, reserve);
Ben Greear3bdc0eb2012-02-11 15:39:30 +00002552 if (unlikely(extra_len == 4))
2553 skb->no_fcs = 1;
2554
Daniel Borkmannd346a3f2013-12-06 11:36:17 +01002555 err = po->xmit(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 if (err > 0 && (err = net_xmit_errno(err)) != 0)
2557 goto out_unlock;
2558
Daniel Borkmanne40526c2013-11-21 16:50:58 +01002559 dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002561 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562
2563out_free:
2564 kfree_skb(skb);
2565out_unlock:
Daniel Borkmanne40526c2013-11-21 16:50:58 +01002566 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 dev_put(dev);
2568out:
2569 return err;
2570}
2571
Johann Baudy69e3c752009-05-18 22:11:22 -07002572static int packet_sendmsg(struct kiocb *iocb, struct socket *sock,
2573 struct msghdr *msg, size_t len)
2574{
Johann Baudy69e3c752009-05-18 22:11:22 -07002575 struct sock *sk = sock->sk;
2576 struct packet_sock *po = pkt_sk(sk);
Daniel Borkmannd346a3f2013-12-06 11:36:17 +01002577
Johann Baudy69e3c752009-05-18 22:11:22 -07002578 if (po->tx_ring.pg_vec)
2579 return tpacket_snd(po, msg);
2580 else
Johann Baudy69e3c752009-05-18 22:11:22 -07002581 return packet_snd(sock, msg, len);
2582}
2583
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584/*
2585 * Close a PACKET socket. This is fairly simple. We immediately go
2586 * to 'closed' state and remove our protocol entry in the device list.
2587 */
2588
2589static int packet_release(struct socket *sock)
2590{
2591 struct sock *sk = sock->sk;
2592 struct packet_sock *po;
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08002593 struct net *net;
chetan lokef6fb8f102011-08-19 10:18:16 +00002594 union tpacket_req_u req_u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595
2596 if (!sk)
2597 return 0;
2598
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002599 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 po = pkt_sk(sk);
2601
Pavel Emelyanov0fa7fa92012-08-21 01:06:47 +00002602 mutex_lock(&net->packet.sklist_lock);
stephen hemminger808f5112010-02-22 07:57:18 +00002603 sk_del_node_init_rcu(sk);
Pavel Emelyanov0fa7fa92012-08-21 01:06:47 +00002604 mutex_unlock(&net->packet.sklist_lock);
2605
2606 preempt_disable();
Eric Dumazet920de802008-11-24 00:09:29 -08002607 sock_prot_inuse_add(net, sk->sk_prot, -1);
Pavel Emelyanov0fa7fa92012-08-21 01:06:47 +00002608 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
stephen hemminger808f5112010-02-22 07:57:18 +00002610 spin_lock(&po->bind_lock);
David S. Millerce06b032011-07-04 01:44:29 -07002611 unregister_prot_hook(sk, false);
Daniel Borkmann66e56cd2013-12-06 11:36:15 +01002612 packet_cached_dev_reset(po);
2613
Ben Greear160ff182011-06-01 07:18:52 +00002614 if (po->prot_hook.dev) {
2615 dev_put(po->prot_hook.dev);
2616 po->prot_hook.dev = NULL;
2617 }
stephen hemminger808f5112010-02-22 07:57:18 +00002618 spin_unlock(&po->bind_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 packet_flush_mclist(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621
Phil Sutter9665d5d2013-02-01 07:21:41 +00002622 if (po->rx_ring.pg_vec) {
2623 memset(&req_u, 0, sizeof(req_u));
chetan lokef6fb8f102011-08-19 10:18:16 +00002624 packet_set_ring(sk, &req_u, 1, 0);
Phil Sutter9665d5d2013-02-01 07:21:41 +00002625 }
Johann Baudy69e3c752009-05-18 22:11:22 -07002626
Phil Sutter9665d5d2013-02-01 07:21:41 +00002627 if (po->tx_ring.pg_vec) {
2628 memset(&req_u, 0, sizeof(req_u));
chetan lokef6fb8f102011-08-19 10:18:16 +00002629 packet_set_ring(sk, &req_u, 1, 1);
Phil Sutter9665d5d2013-02-01 07:21:41 +00002630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631
David S. Millerdc99f602011-07-05 01:45:05 -07002632 fanout_release(sk);
2633
stephen hemminger808f5112010-02-22 07:57:18 +00002634 synchronize_net();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 /*
2636 * Now the socket is dead. No more input will appear.
2637 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 sock_orphan(sk);
2639 sock->sk = NULL;
2640
2641 /* Purge queues */
2642
2643 skb_queue_purge(&sk->sk_receive_queue);
Daniel Borkmannb0138402014-01-15 16:25:36 +01002644 packet_free_pending(po);
Pavel Emelyanov17ab56a2007-11-10 21:38:48 -08002645 sk_refcnt_debug_release(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646
2647 sock_put(sk);
2648 return 0;
2649}
2650
2651/*
2652 * Attach a packet hook.
2653 */
2654
Daniel Borkmann902fefb2014-01-15 16:25:34 +01002655static int packet_do_bind(struct sock *sk, struct net_device *dev, __be16 proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656{
2657 struct packet_sock *po = pkt_sk(sk);
Daniel Borkmann902fefb2014-01-15 16:25:34 +01002658 const struct net_device *dev_curr;
2659 __be16 proto_curr;
2660 bool need_rehook;
David S. Millerdc99f602011-07-05 01:45:05 -07002661
Wei Yongjunaef950b2011-12-27 22:32:41 -05002662 if (po->fanout) {
2663 if (dev)
2664 dev_put(dev);
2665
David S. Millerdc99f602011-07-05 01:45:05 -07002666 return -EINVAL;
Wei Yongjunaef950b2011-12-27 22:32:41 -05002667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668
2669 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 spin_lock(&po->bind_lock);
Daniel Borkmann66e56cd2013-12-06 11:36:15 +01002671
Daniel Borkmann902fefb2014-01-15 16:25:34 +01002672 proto_curr = po->prot_hook.type;
2673 dev_curr = po->prot_hook.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
Daniel Borkmann902fefb2014-01-15 16:25:34 +01002675 need_rehook = proto_curr != proto || dev_curr != dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
Daniel Borkmann902fefb2014-01-15 16:25:34 +01002677 if (need_rehook) {
2678 unregister_prot_hook(sk, true);
Daniel Borkmann66e56cd2013-12-06 11:36:15 +01002679
Daniel Borkmann902fefb2014-01-15 16:25:34 +01002680 po->num = proto;
2681 po->prot_hook.type = proto;
2682
2683 if (po->prot_hook.dev)
2684 dev_put(po->prot_hook.dev);
2685
2686 po->prot_hook.dev = dev;
2687
2688 po->ifindex = dev ? dev->ifindex : 0;
2689 packet_cached_dev_assign(po, dev);
2690 }
2691
2692 if (proto == 0 || !need_rehook)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 goto out_unlock;
2694
Urs Thuermannbe85d4a2007-11-12 21:05:20 -08002695 if (!dev || (dev->flags & IFF_UP)) {
David S. Millerce06b032011-07-04 01:44:29 -07002696 register_prot_hook(sk);
Urs Thuermannbe85d4a2007-11-12 21:05:20 -08002697 } else {
2698 sk->sk_err = ENETDOWN;
2699 if (!sock_flag(sk, SOCK_DEAD))
2700 sk->sk_error_report(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 }
2702
2703out_unlock:
2704 spin_unlock(&po->bind_lock);
2705 release_sock(sk);
2706 return 0;
2707}
2708
2709/*
2710 * Bind a packet socket to a device
2711 */
2712
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002713static int packet_bind_spkt(struct socket *sock, struct sockaddr *uaddr,
2714 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715{
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002716 struct sock *sk = sock->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 char name[15];
2718 struct net_device *dev;
2719 int err = -ENODEV;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002720
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 /*
2722 * Check legality
2723 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002724
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08002725 if (addr_len != sizeof(struct sockaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 return -EINVAL;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002727 strlcpy(name, uaddr->sa_data, sizeof(name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002729 dev = dev_get_by_name(sock_net(sk), name);
Ben Greear160ff182011-06-01 07:18:52 +00002730 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 err = packet_do_bind(sk, dev, pkt_sk(sk)->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 return err;
2733}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734
2735static int packet_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
2736{
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002737 struct sockaddr_ll *sll = (struct sockaddr_ll *)uaddr;
2738 struct sock *sk = sock->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 struct net_device *dev = NULL;
2740 int err;
2741
2742
2743 /*
2744 * Check legality
2745 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002746
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 if (addr_len < sizeof(struct sockaddr_ll))
2748 return -EINVAL;
2749 if (sll->sll_family != AF_PACKET)
2750 return -EINVAL;
2751
2752 if (sll->sll_ifindex) {
2753 err = -ENODEV;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002754 dev = dev_get_by_index(sock_net(sk), sll->sll_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 if (dev == NULL)
2756 goto out;
2757 }
2758 err = packet_do_bind(sk, dev, sll->sll_protocol ? : pkt_sk(sk)->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759
2760out:
2761 return err;
2762}
2763
2764static struct proto packet_proto = {
2765 .name = "PACKET",
2766 .owner = THIS_MODULE,
2767 .obj_size = sizeof(struct packet_sock),
2768};
2769
2770/*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002771 * Create a packet of type SOCK_PACKET.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 */
2773
Eric Paris3f378b62009-11-05 22:18:14 -08002774static int packet_create(struct net *net, struct socket *sock, int protocol,
2775 int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776{
2777 struct sock *sk;
2778 struct packet_sock *po;
Al Viro0e11c912006-11-08 00:26:29 -08002779 __be16 proto = (__force __be16)protocol; /* weird, but documented */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 int err;
2781
Eric W. Biedermandf008c92012-11-16 03:03:07 +00002782 if (!ns_capable(net->user_ns, CAP_NET_RAW))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 return -EPERM;
David S. Millerbe020972007-05-29 13:16:31 -07002784 if (sock->type != SOCK_DGRAM && sock->type != SOCK_RAW &&
2785 sock->type != SOCK_PACKET)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 return -ESOCKTNOSUPPORT;
2787
2788 sock->state = SS_UNCONNECTED;
2789
2790 err = -ENOBUFS;
Pavel Emelyanov6257ff22007-11-01 00:39:31 -07002791 sk = sk_alloc(net, PF_PACKET, GFP_KERNEL, &packet_proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 if (sk == NULL)
2793 goto out;
2794
2795 sock->ops = &packet_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 if (sock->type == SOCK_PACKET)
2797 sock->ops = &packet_ops_spkt;
David S. Millerbe020972007-05-29 13:16:31 -07002798
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 sock_init_data(sock, sk);
2800
2801 po = pkt_sk(sk);
2802 sk->sk_family = PF_PACKET;
Al Viro0e11c912006-11-08 00:26:29 -08002803 po->num = proto;
Daniel Borkmannd346a3f2013-12-06 11:36:17 +01002804 po->xmit = dev_queue_xmit;
Daniel Borkmann66e56cd2013-12-06 11:36:15 +01002805
Daniel Borkmannb0138402014-01-15 16:25:36 +01002806 err = packet_alloc_pending(po);
2807 if (err)
2808 goto out2;
2809
Daniel Borkmann66e56cd2013-12-06 11:36:15 +01002810 packet_cached_dev_reset(po);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811
2812 sk->sk_destruct = packet_sock_destruct;
Pavel Emelyanov17ab56a2007-11-10 21:38:48 -08002813 sk_refcnt_debug_inc(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814
2815 /*
2816 * Attach a protocol block
2817 */
2818
2819 spin_lock_init(&po->bind_lock);
Herbert Xu905db442009-01-30 14:12:06 -08002820 mutex_init(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 po->prot_hook.func = packet_rcv;
David S. Millerbe020972007-05-29 13:16:31 -07002822
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 if (sock->type == SOCK_PACKET)
2824 po->prot_hook.func = packet_rcv_spkt;
David S. Millerbe020972007-05-29 13:16:31 -07002825
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 po->prot_hook.af_packet_priv = sk;
2827
Al Viro0e11c912006-11-08 00:26:29 -08002828 if (proto) {
2829 po->prot_hook.type = proto;
David S. Millerce06b032011-07-04 01:44:29 -07002830 register_prot_hook(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 }
2832
Pavel Emelyanov0fa7fa92012-08-21 01:06:47 +00002833 mutex_lock(&net->packet.sklist_lock);
stephen hemminger808f5112010-02-22 07:57:18 +00002834 sk_add_node_rcu(sk, &net->packet.sklist);
Pavel Emelyanov0fa7fa92012-08-21 01:06:47 +00002835 mutex_unlock(&net->packet.sklist_lock);
2836
2837 preempt_disable();
Eric Dumazet36804532008-11-19 14:25:35 -08002838 sock_prot_inuse_add(net, &packet_proto, 1);
Pavel Emelyanov0fa7fa92012-08-21 01:06:47 +00002839 preempt_enable();
stephen hemminger808f5112010-02-22 07:57:18 +00002840
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002841 return 0;
Daniel Borkmannb0138402014-01-15 16:25:36 +01002842out2:
2843 sk_free(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844out:
2845 return err;
2846}
2847
2848/*
2849 * Pull a packet from our receive queue and hand it to the user.
2850 * If necessary we block.
2851 */
2852
2853static int packet_recvmsg(struct kiocb *iocb, struct socket *sock,
2854 struct msghdr *msg, size_t len, int flags)
2855{
2856 struct sock *sk = sock->sk;
2857 struct sk_buff *skb;
2858 int copied, err;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002859 int vnet_hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860
2861 err = -EINVAL;
Richard Cochraned85b562010-04-07 22:41:28 +00002862 if (flags & ~(MSG_PEEK|MSG_DONTWAIT|MSG_TRUNC|MSG_CMSG_COMPAT|MSG_ERRQUEUE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 goto out;
2864
2865#if 0
2866 /* What error should we return now? EUNATTACH? */
2867 if (pkt_sk(sk)->ifindex < 0)
2868 return -ENODEV;
2869#endif
2870
Richard Cochraned85b562010-04-07 22:41:28 +00002871 if (flags & MSG_ERRQUEUE) {
Richard Cochrancb820f82013-07-19 19:40:09 +02002872 err = sock_recv_errqueue(sk, msg, len,
2873 SOL_PACKET, PACKET_TX_TIMESTAMP);
Richard Cochraned85b562010-04-07 22:41:28 +00002874 goto out;
2875 }
2876
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 * Call the generic datagram receiver. This handles all sorts
2879 * of horrible races and re-entrancy so we can forget about it
2880 * in the protocol layers.
2881 *
2882 * Now it will return ENETDOWN, if device have just gone down,
2883 * but then it will block.
2884 */
2885
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002886 skb = skb_recv_datagram(sk, flags, flags & MSG_DONTWAIT, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887
2888 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002889 * An error occurred so return it. Because skb_recv_datagram()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 * handles the blocking we don't see and worry about blocking
2891 * retries.
2892 */
2893
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08002894 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 goto out;
2896
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002897 if (pkt_sk(sk)->has_vnet_hdr) {
2898 struct virtio_net_hdr vnet_hdr = { 0 };
2899
2900 err = -EINVAL;
2901 vnet_hdr_len = sizeof(vnet_hdr);
Mariusz Kozlowski1f18b712010-11-08 11:58:45 +00002902 if (len < vnet_hdr_len)
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002903 goto out_free;
2904
Mariusz Kozlowski1f18b712010-11-08 11:58:45 +00002905 len -= vnet_hdr_len;
2906
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002907 if (skb_is_gso(skb)) {
2908 struct skb_shared_info *sinfo = skb_shinfo(skb);
2909
2910 /* This is a hint as to how much should be linear. */
2911 vnet_hdr.hdr_len = skb_headlen(skb);
2912 vnet_hdr.gso_size = sinfo->gso_size;
2913 if (sinfo->gso_type & SKB_GSO_TCPV4)
2914 vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
2915 else if (sinfo->gso_type & SKB_GSO_TCPV6)
2916 vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
2917 else if (sinfo->gso_type & SKB_GSO_UDP)
2918 vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_UDP;
2919 else if (sinfo->gso_type & SKB_GSO_FCOE)
2920 goto out_free;
2921 else
2922 BUG();
2923 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
2924 vnet_hdr.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
2925 } else
2926 vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_NONE;
2927
2928 if (skb->ip_summed == CHECKSUM_PARTIAL) {
2929 vnet_hdr.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Michał Mirosław55508d62010-12-14 15:24:08 +00002930 vnet_hdr.csum_start = skb_checksum_start_offset(skb);
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002931 vnet_hdr.csum_offset = skb->csum_offset;
Jason Wang10a8d942011-06-10 00:56:17 +00002932 } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
2933 vnet_hdr.flags = VIRTIO_NET_HDR_F_DATA_VALID;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002934 } /* else everything is zero */
2935
2936 err = memcpy_toiovec(msg->msg_iov, (void *)&vnet_hdr,
2937 vnet_hdr_len);
2938 if (err < 0)
2939 goto out_free;
2940 }
2941
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002942 /* You lose any data beyond the buffer you gave. If it worries
2943 * a user program they can ask the device for its MTU
2944 * anyway.
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07002945 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 copied = skb->len;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002947 if (copied > len) {
2948 copied = len;
2949 msg->msg_flags |= MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 }
2951
2952 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
2953 if (err)
2954 goto out_free;
2955
Neil Horman3b885782009-10-12 13:26:31 -07002956 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002958 if (msg->msg_name) {
2959 /* If the address length field is there to be filled
2960 * in, we fill it in now.
2961 */
2962 if (sock->type == SOCK_PACKET) {
Steffen Hurrle342dfc32014-01-17 22:53:15 +01002963 __sockaddr_check_size(sizeof(struct sockaddr_pkt));
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002964 msg->msg_namelen = sizeof(struct sockaddr_pkt);
2965 } else {
2966 struct sockaddr_ll *sll = &PACKET_SKB_CB(skb)->sa.ll;
2967 msg->msg_namelen = sll->sll_halen +
2968 offsetof(struct sockaddr_ll, sll_addr);
2969 }
Herbert Xuffbc6112007-02-04 23:33:10 -08002970 memcpy(msg->msg_name, &PACKET_SKB_CB(skb)->sa,
2971 msg->msg_namelen);
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973
Herbert Xu8dc41942007-02-04 23:31:32 -08002974 if (pkt_sk(sk)->auxdata) {
Herbert Xuffbc6112007-02-04 23:33:10 -08002975 struct tpacket_auxdata aux;
2976
2977 aux.tp_status = TP_STATUS_USER;
2978 if (skb->ip_summed == CHECKSUM_PARTIAL)
2979 aux.tp_status |= TP_STATUS_CSUMNOTREADY;
2980 aux.tp_len = PACKET_SKB_CB(skb)->origlen;
2981 aux.tp_snaplen = skb->len;
2982 aux.tp_mac = 0;
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03002983 aux.tp_net = skb_network_offset(skb);
Ben Greeara3bcc232011-06-01 06:49:10 +00002984 if (vlan_tx_tag_present(skb)) {
2985 aux.tp_vlan_tci = vlan_tx_tag_get(skb);
Atzm Watanabea0cdfcf2013-12-17 22:53:40 +09002986 aux.tp_vlan_tpid = ntohs(skb->vlan_proto);
2987 aux.tp_status |= TP_STATUS_VLAN_VALID | TP_STATUS_VLAN_TPID_VALID;
Ben Greeara3bcc232011-06-01 06:49:10 +00002988 } else {
2989 aux.tp_vlan_tci = 0;
Atzm Watanabea0cdfcf2013-12-17 22:53:40 +09002990 aux.tp_vlan_tpid = 0;
Ben Greeara3bcc232011-06-01 06:49:10 +00002991 }
Herbert Xuffbc6112007-02-04 23:33:10 -08002992 put_cmsg(msg, SOL_PACKET, PACKET_AUXDATA, sizeof(aux), &aux);
Herbert Xu8dc41942007-02-04 23:31:32 -08002993 }
2994
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 /*
2996 * Free or return the buffer as appropriate. Again this
2997 * hides all the races and re-entrancy issues from us.
2998 */
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002999 err = vnet_hdr_len + ((flags&MSG_TRUNC) ? skb->len : copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
3001out_free:
3002 skb_free_datagram(sk, skb);
3003out:
3004 return err;
3005}
3006
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007static int packet_getname_spkt(struct socket *sock, struct sockaddr *uaddr,
3008 int *uaddr_len, int peer)
3009{
3010 struct net_device *dev;
3011 struct sock *sk = sock->sk;
3012
3013 if (peer)
3014 return -EOPNOTSUPP;
3015
3016 uaddr->sa_family = AF_PACKET;
Daniel Borkmann2dc85bf2013-06-12 16:02:27 +02003017 memset(uaddr->sa_data, 0, sizeof(uaddr->sa_data));
Eric Dumazet654d1f82009-11-02 10:43:32 +01003018 rcu_read_lock();
3019 dev = dev_get_by_index_rcu(sock_net(sk), pkt_sk(sk)->ifindex);
3020 if (dev)
Daniel Borkmann2dc85bf2013-06-12 16:02:27 +02003021 strlcpy(uaddr->sa_data, dev->name, sizeof(uaddr->sa_data));
Eric Dumazet654d1f82009-11-02 10:43:32 +01003022 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 *uaddr_len = sizeof(*uaddr);
3024
3025 return 0;
3026}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
3028static int packet_getname(struct socket *sock, struct sockaddr *uaddr,
3029 int *uaddr_len, int peer)
3030{
3031 struct net_device *dev;
3032 struct sock *sk = sock->sk;
3033 struct packet_sock *po = pkt_sk(sk);
Cyrill Gorcunov13cfa972009-11-08 05:51:19 +00003034 DECLARE_SOCKADDR(struct sockaddr_ll *, sll, uaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
3036 if (peer)
3037 return -EOPNOTSUPP;
3038
3039 sll->sll_family = AF_PACKET;
3040 sll->sll_ifindex = po->ifindex;
3041 sll->sll_protocol = po->num;
Vasiliy Kulikov67286642010-11-10 12:09:10 -08003042 sll->sll_pkttype = 0;
Eric Dumazet654d1f82009-11-02 10:43:32 +01003043 rcu_read_lock();
3044 dev = dev_get_by_index_rcu(sock_net(sk), po->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 if (dev) {
3046 sll->sll_hatype = dev->type;
3047 sll->sll_halen = dev->addr_len;
3048 memcpy(sll->sll_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 } else {
3050 sll->sll_hatype = 0; /* Bad: we have no ARPHRD_UNSPEC */
3051 sll->sll_halen = 0;
3052 }
Eric Dumazet654d1f82009-11-02 10:43:32 +01003053 rcu_read_unlock();
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07003054 *uaddr_len = offsetof(struct sockaddr_ll, sll_addr) + sll->sll_halen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
3056 return 0;
3057}
3058
Wang Chen2aeb0b82008-07-14 20:49:46 -07003059static int packet_dev_mc(struct net_device *dev, struct packet_mclist *i,
3060 int what)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061{
3062 switch (i->type) {
3063 case PACKET_MR_MULTICAST:
Jiri Pirko11625632010-03-02 20:40:01 +00003064 if (i->alen != dev->addr_len)
3065 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 if (what > 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +00003067 return dev_mc_add(dev, i->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 else
Jiri Pirko22bedad32010-04-01 21:22:57 +00003069 return dev_mc_del(dev, i->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 break;
3071 case PACKET_MR_PROMISC:
Wang Chen2aeb0b82008-07-14 20:49:46 -07003072 return dev_set_promiscuity(dev, what);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 break;
3074 case PACKET_MR_ALLMULTI:
Wang Chen2aeb0b82008-07-14 20:49:46 -07003075 return dev_set_allmulti(dev, what);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 break;
Eric W. Biedermand95ed922009-05-19 18:27:17 +00003077 case PACKET_MR_UNICAST:
Jiri Pirko11625632010-03-02 20:40:01 +00003078 if (i->alen != dev->addr_len)
3079 return -EINVAL;
Eric W. Biedermand95ed922009-05-19 18:27:17 +00003080 if (what > 0)
Jiri Pirkoa748ee22010-04-01 21:22:09 +00003081 return dev_uc_add(dev, i->addr);
Eric W. Biedermand95ed922009-05-19 18:27:17 +00003082 else
Jiri Pirkoa748ee22010-04-01 21:22:09 +00003083 return dev_uc_del(dev, i->addr);
Eric W. Biedermand95ed922009-05-19 18:27:17 +00003084 break;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003085 default:
3086 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 }
Wang Chen2aeb0b82008-07-14 20:49:46 -07003088 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089}
3090
3091static void packet_dev_mclist(struct net_device *dev, struct packet_mclist *i, int what)
3092{
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003093 for ( ; i; i = i->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 if (i->ifindex == dev->ifindex)
3095 packet_dev_mc(dev, i, what);
3096 }
3097}
3098
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07003099static int packet_mc_add(struct sock *sk, struct packet_mreq_max *mreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100{
3101 struct packet_sock *po = pkt_sk(sk);
3102 struct packet_mclist *ml, *i;
3103 struct net_device *dev;
3104 int err;
3105
3106 rtnl_lock();
3107
3108 err = -ENODEV;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003109 dev = __dev_get_by_index(sock_net(sk), mreq->mr_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 if (!dev)
3111 goto done;
3112
3113 err = -EINVAL;
Jiri Pirko11625632010-03-02 20:40:01 +00003114 if (mreq->mr_alen > dev->addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 goto done;
3116
3117 err = -ENOBUFS;
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08003118 i = kmalloc(sizeof(*i), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 if (i == NULL)
3120 goto done;
3121
3122 err = 0;
3123 for (ml = po->mclist; ml; ml = ml->next) {
3124 if (ml->ifindex == mreq->mr_ifindex &&
3125 ml->type == mreq->mr_type &&
3126 ml->alen == mreq->mr_alen &&
3127 memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
3128 ml->count++;
3129 /* Free the new element ... */
3130 kfree(i);
3131 goto done;
3132 }
3133 }
3134
3135 i->type = mreq->mr_type;
3136 i->ifindex = mreq->mr_ifindex;
3137 i->alen = mreq->mr_alen;
3138 memcpy(i->addr, mreq->mr_address, i->alen);
3139 i->count = 1;
3140 i->next = po->mclist;
3141 po->mclist = i;
Wang Chen2aeb0b82008-07-14 20:49:46 -07003142 err = packet_dev_mc(dev, i, 1);
3143 if (err) {
3144 po->mclist = i->next;
3145 kfree(i);
3146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147
3148done:
3149 rtnl_unlock();
3150 return err;
3151}
3152
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07003153static int packet_mc_drop(struct sock *sk, struct packet_mreq_max *mreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154{
3155 struct packet_mclist *ml, **mlp;
3156
3157 rtnl_lock();
3158
3159 for (mlp = &pkt_sk(sk)->mclist; (ml = *mlp) != NULL; mlp = &ml->next) {
3160 if (ml->ifindex == mreq->mr_ifindex &&
3161 ml->type == mreq->mr_type &&
3162 ml->alen == mreq->mr_alen &&
3163 memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
3164 if (--ml->count == 0) {
3165 struct net_device *dev;
3166 *mlp = ml->next;
Eric Dumazetad959e72009-10-16 06:38:46 +00003167 dev = __dev_get_by_index(sock_net(sk), ml->ifindex);
3168 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 packet_dev_mc(dev, ml, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 kfree(ml);
3171 }
3172 rtnl_unlock();
3173 return 0;
3174 }
3175 }
3176 rtnl_unlock();
3177 return -EADDRNOTAVAIL;
3178}
3179
3180static void packet_flush_mclist(struct sock *sk)
3181{
3182 struct packet_sock *po = pkt_sk(sk);
3183 struct packet_mclist *ml;
3184
3185 if (!po->mclist)
3186 return;
3187
3188 rtnl_lock();
3189 while ((ml = po->mclist) != NULL) {
3190 struct net_device *dev;
3191
3192 po->mclist = ml->next;
Eric Dumazetad959e72009-10-16 06:38:46 +00003193 dev = __dev_get_by_index(sock_net(sk), ml->ifindex);
3194 if (dev != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 packet_dev_mc(dev, ml, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 kfree(ml);
3197 }
3198 rtnl_unlock();
3199}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200
3201static int
David S. Millerb7058842009-09-30 16:12:20 -07003202packet_setsockopt(struct socket *sock, int level, int optname, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203{
3204 struct sock *sk = sock->sk;
Herbert Xu8dc41942007-02-04 23:31:32 -08003205 struct packet_sock *po = pkt_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 int ret;
3207
3208 if (level != SOL_PACKET)
3209 return -ENOPROTOOPT;
3210
Johann Baudy69e3c752009-05-18 22:11:22 -07003211 switch (optname) {
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003212 case PACKET_ADD_MEMBERSHIP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 case PACKET_DROP_MEMBERSHIP:
3214 {
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07003215 struct packet_mreq_max mreq;
3216 int len = optlen;
3217 memset(&mreq, 0, sizeof(mreq));
3218 if (len < sizeof(struct packet_mreq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 return -EINVAL;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07003220 if (len > sizeof(mreq))
3221 len = sizeof(mreq);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003222 if (copy_from_user(&mreq, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 return -EFAULT;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07003224 if (len < (mreq.mr_alen + offsetof(struct packet_mreq, mr_address)))
3225 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 if (optname == PACKET_ADD_MEMBERSHIP)
3227 ret = packet_mc_add(sk, &mreq);
3228 else
3229 ret = packet_mc_drop(sk, &mreq);
3230 return ret;
3231 }
David S. Millera2efcfa2007-05-29 13:12:50 -07003232
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 case PACKET_RX_RING:
Johann Baudy69e3c752009-05-18 22:11:22 -07003234 case PACKET_TX_RING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 {
chetan lokef6fb8f102011-08-19 10:18:16 +00003236 union tpacket_req_u req_u;
3237 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238
chetan lokef6fb8f102011-08-19 10:18:16 +00003239 switch (po->tp_version) {
3240 case TPACKET_V1:
3241 case TPACKET_V2:
3242 len = sizeof(req_u.req);
3243 break;
3244 case TPACKET_V3:
3245 default:
3246 len = sizeof(req_u.req3);
3247 break;
3248 }
3249 if (optlen < len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 return -EINVAL;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08003251 if (pkt_sk(sk)->has_vnet_hdr)
3252 return -EINVAL;
chetan lokef6fb8f102011-08-19 10:18:16 +00003253 if (copy_from_user(&req_u.req, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 return -EFAULT;
chetan lokef6fb8f102011-08-19 10:18:16 +00003255 return packet_set_ring(sk, &req_u, 0,
3256 optname == PACKET_TX_RING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 }
3258 case PACKET_COPY_THRESH:
3259 {
3260 int val;
3261
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003262 if (optlen != sizeof(val))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 return -EINVAL;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003264 if (copy_from_user(&val, optval, sizeof(val)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 return -EFAULT;
3266
3267 pkt_sk(sk)->copy_thresh = val;
3268 return 0;
3269 }
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003270 case PACKET_VERSION:
3271 {
3272 int val;
3273
3274 if (optlen != sizeof(val))
3275 return -EINVAL;
Johann Baudy69e3c752009-05-18 22:11:22 -07003276 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003277 return -EBUSY;
3278 if (copy_from_user(&val, optval, sizeof(val)))
3279 return -EFAULT;
3280 switch (val) {
3281 case TPACKET_V1:
3282 case TPACKET_V2:
chetan lokef6fb8f102011-08-19 10:18:16 +00003283 case TPACKET_V3:
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003284 po->tp_version = val;
3285 return 0;
3286 default:
3287 return -EINVAL;
3288 }
3289 }
Patrick McHardy8913336a2008-07-18 18:05:19 -07003290 case PACKET_RESERVE:
3291 {
3292 unsigned int val;
3293
3294 if (optlen != sizeof(val))
3295 return -EINVAL;
Johann Baudy69e3c752009-05-18 22:11:22 -07003296 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
Patrick McHardy8913336a2008-07-18 18:05:19 -07003297 return -EBUSY;
3298 if (copy_from_user(&val, optval, sizeof(val)))
3299 return -EFAULT;
3300 po->tp_reserve = val;
3301 return 0;
3302 }
Johann Baudy69e3c752009-05-18 22:11:22 -07003303 case PACKET_LOSS:
3304 {
3305 unsigned int val;
3306
3307 if (optlen != sizeof(val))
3308 return -EINVAL;
3309 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
3310 return -EBUSY;
3311 if (copy_from_user(&val, optval, sizeof(val)))
3312 return -EFAULT;
3313 po->tp_loss = !!val;
3314 return 0;
3315 }
Herbert Xu8dc41942007-02-04 23:31:32 -08003316 case PACKET_AUXDATA:
3317 {
3318 int val;
3319
3320 if (optlen < sizeof(val))
3321 return -EINVAL;
3322 if (copy_from_user(&val, optval, sizeof(val)))
3323 return -EFAULT;
3324
3325 po->auxdata = !!val;
3326 return 0;
3327 }
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07003328 case PACKET_ORIGDEV:
3329 {
3330 int val;
3331
3332 if (optlen < sizeof(val))
3333 return -EINVAL;
3334 if (copy_from_user(&val, optval, sizeof(val)))
3335 return -EFAULT;
3336
3337 po->origdev = !!val;
3338 return 0;
3339 }
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08003340 case PACKET_VNET_HDR:
3341 {
3342 int val;
3343
3344 if (sock->type != SOCK_RAW)
3345 return -EINVAL;
3346 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
3347 return -EBUSY;
3348 if (optlen < sizeof(val))
3349 return -EINVAL;
3350 if (copy_from_user(&val, optval, sizeof(val)))
3351 return -EFAULT;
3352
3353 po->has_vnet_hdr = !!val;
3354 return 0;
3355 }
Scott McMillan614f60f2010-06-02 05:53:56 -07003356 case PACKET_TIMESTAMP:
3357 {
3358 int val;
3359
3360 if (optlen != sizeof(val))
3361 return -EINVAL;
3362 if (copy_from_user(&val, optval, sizeof(val)))
3363 return -EFAULT;
3364
3365 po->tp_tstamp = val;
3366 return 0;
3367 }
David S. Millerdc99f602011-07-05 01:45:05 -07003368 case PACKET_FANOUT:
3369 {
3370 int val;
3371
3372 if (optlen != sizeof(val))
3373 return -EINVAL;
3374 if (copy_from_user(&val, optval, sizeof(val)))
3375 return -EFAULT;
3376
3377 return fanout_add(sk, val & 0xffff, val >> 16);
3378 }
Paul Chavent5920cd3a2012-11-06 23:10:47 +00003379 case PACKET_TX_HAS_OFF:
3380 {
3381 unsigned int val;
3382
3383 if (optlen != sizeof(val))
3384 return -EINVAL;
3385 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
3386 return -EBUSY;
3387 if (copy_from_user(&val, optval, sizeof(val)))
3388 return -EFAULT;
3389 po->tp_tx_has_off = !!val;
3390 return 0;
3391 }
Daniel Borkmannd346a3f2013-12-06 11:36:17 +01003392 case PACKET_QDISC_BYPASS:
3393 {
3394 int val;
3395
3396 if (optlen != sizeof(val))
3397 return -EINVAL;
3398 if (copy_from_user(&val, optval, sizeof(val)))
3399 return -EFAULT;
3400
3401 po->xmit = val ? packet_direct_xmit : dev_queue_xmit;
3402 return 0;
3403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 default:
3405 return -ENOPROTOOPT;
3406 }
3407}
3408
3409static int packet_getsockopt(struct socket *sock, int level, int optname,
3410 char __user *optval, int __user *optlen)
3411{
3412 int len;
Eric Dumazetc06fff62012-04-19 21:56:11 +00003413 int val, lv = sizeof(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 struct sock *sk = sock->sk;
3415 struct packet_sock *po = pkt_sk(sk);
Eric Dumazetc06fff62012-04-19 21:56:11 +00003416 void *data = &val;
Daniel Borkmannee80fbf2013-04-19 06:12:29 +00003417 union tpacket_stats_u st;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418
3419 if (level != SOL_PACKET)
3420 return -ENOPROTOOPT;
3421
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08003422 if (get_user(len, optlen))
3423 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424
3425 if (len < 0)
3426 return -EINVAL;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003427
Johann Baudy69e3c752009-05-18 22:11:22 -07003428 switch (optname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429 case PACKET_STATISTICS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 spin_lock_bh(&sk->sk_receive_queue.lock);
Daniel Borkmannee80fbf2013-04-19 06:12:29 +00003431 memcpy(&st, &po->stats, sizeof(st));
3432 memset(&po->stats, 0, sizeof(po->stats));
3433 spin_unlock_bh(&sk->sk_receive_queue.lock);
3434
chetan lokef6fb8f102011-08-19 10:18:16 +00003435 if (po->tp_version == TPACKET_V3) {
Eric Dumazetc06fff62012-04-19 21:56:11 +00003436 lv = sizeof(struct tpacket_stats_v3);
Willem de Bruijn8bcdeaf2013-08-19 16:40:22 -04003437 st.stats3.tp_packets += st.stats3.tp_drops;
Daniel Borkmannee80fbf2013-04-19 06:12:29 +00003438 data = &st.stats3;
chetan lokef6fb8f102011-08-19 10:18:16 +00003439 } else {
Eric Dumazetc06fff62012-04-19 21:56:11 +00003440 lv = sizeof(struct tpacket_stats);
Willem de Bruijn8bcdeaf2013-08-19 16:40:22 -04003441 st.stats1.tp_packets += st.stats1.tp_drops;
Daniel Borkmannee80fbf2013-04-19 06:12:29 +00003442 data = &st.stats1;
chetan lokef6fb8f102011-08-19 10:18:16 +00003443 }
Daniel Borkmannee80fbf2013-04-19 06:12:29 +00003444
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 break;
Herbert Xu8dc41942007-02-04 23:31:32 -08003446 case PACKET_AUXDATA:
Herbert Xu8dc41942007-02-04 23:31:32 -08003447 val = po->auxdata;
Herbert Xu8dc41942007-02-04 23:31:32 -08003448 break;
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07003449 case PACKET_ORIGDEV:
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07003450 val = po->origdev;
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07003451 break;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08003452 case PACKET_VNET_HDR:
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08003453 val = po->has_vnet_hdr;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08003454 break;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003455 case PACKET_VERSION:
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003456 val = po->tp_version;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003457 break;
3458 case PACKET_HDRLEN:
3459 if (len > sizeof(int))
3460 len = sizeof(int);
3461 if (copy_from_user(&val, optval, len))
3462 return -EFAULT;
3463 switch (val) {
3464 case TPACKET_V1:
3465 val = sizeof(struct tpacket_hdr);
3466 break;
3467 case TPACKET_V2:
3468 val = sizeof(struct tpacket2_hdr);
3469 break;
chetan lokef6fb8f102011-08-19 10:18:16 +00003470 case TPACKET_V3:
3471 val = sizeof(struct tpacket3_hdr);
3472 break;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003473 default:
3474 return -EINVAL;
3475 }
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003476 break;
Patrick McHardy8913336a2008-07-18 18:05:19 -07003477 case PACKET_RESERVE:
Patrick McHardy8913336a2008-07-18 18:05:19 -07003478 val = po->tp_reserve;
Patrick McHardy8913336a2008-07-18 18:05:19 -07003479 break;
Johann Baudy69e3c752009-05-18 22:11:22 -07003480 case PACKET_LOSS:
Johann Baudy69e3c752009-05-18 22:11:22 -07003481 val = po->tp_loss;
Johann Baudy69e3c752009-05-18 22:11:22 -07003482 break;
Scott McMillan614f60f2010-06-02 05:53:56 -07003483 case PACKET_TIMESTAMP:
Scott McMillan614f60f2010-06-02 05:53:56 -07003484 val = po->tp_tstamp;
Scott McMillan614f60f2010-06-02 05:53:56 -07003485 break;
David S. Millerdc99f602011-07-05 01:45:05 -07003486 case PACKET_FANOUT:
David S. Millerdc99f602011-07-05 01:45:05 -07003487 val = (po->fanout ?
3488 ((u32)po->fanout->id |
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00003489 ((u32)po->fanout->type << 16) |
3490 ((u32)po->fanout->flags << 24)) :
David S. Millerdc99f602011-07-05 01:45:05 -07003491 0);
David S. Millerdc99f602011-07-05 01:45:05 -07003492 break;
Paul Chavent5920cd3a2012-11-06 23:10:47 +00003493 case PACKET_TX_HAS_OFF:
3494 val = po->tp_tx_has_off;
3495 break;
Daniel Borkmannd346a3f2013-12-06 11:36:17 +01003496 case PACKET_QDISC_BYPASS:
3497 val = packet_use_direct_xmit(po);
3498 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 default:
3500 return -ENOPROTOOPT;
3501 }
3502
Eric Dumazetc06fff62012-04-19 21:56:11 +00003503 if (len > lv)
3504 len = lv;
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08003505 if (put_user(len, optlen))
3506 return -EFAULT;
Herbert Xu8dc41942007-02-04 23:31:32 -08003507 if (copy_to_user(optval, data, len))
3508 return -EFAULT;
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08003509 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510}
3511
3512
Jiri Pirko351638e2013-05-28 01:30:21 +00003513static int packet_notifier(struct notifier_block *this,
3514 unsigned long msg, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515{
3516 struct sock *sk;
Jiri Pirko351638e2013-05-28 01:30:21 +00003517 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003518 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519
stephen hemminger808f5112010-02-22 07:57:18 +00003520 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003521 sk_for_each_rcu(sk, &net->packet.sklist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 struct packet_sock *po = pkt_sk(sk);
3523
3524 switch (msg) {
3525 case NETDEV_UNREGISTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 if (po->mclist)
3527 packet_dev_mclist(dev, po->mclist, -1);
David S. Millera2efcfa2007-05-29 13:12:50 -07003528 /* fallthrough */
3529
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530 case NETDEV_DOWN:
3531 if (dev->ifindex == po->ifindex) {
3532 spin_lock(&po->bind_lock);
3533 if (po->running) {
David S. Millerce06b032011-07-04 01:44:29 -07003534 __unregister_prot_hook(sk, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 sk->sk_err = ENETDOWN;
3536 if (!sock_flag(sk, SOCK_DEAD))
3537 sk->sk_error_report(sk);
3538 }
3539 if (msg == NETDEV_UNREGISTER) {
Daniel Borkmann66e56cd2013-12-06 11:36:15 +01003540 packet_cached_dev_reset(po);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541 po->ifindex = -1;
Ben Greear160ff182011-06-01 07:18:52 +00003542 if (po->prot_hook.dev)
3543 dev_put(po->prot_hook.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 po->prot_hook.dev = NULL;
3545 }
3546 spin_unlock(&po->bind_lock);
3547 }
3548 break;
3549 case NETDEV_UP:
stephen hemminger808f5112010-02-22 07:57:18 +00003550 if (dev->ifindex == po->ifindex) {
3551 spin_lock(&po->bind_lock);
David S. Millerce06b032011-07-04 01:44:29 -07003552 if (po->num)
3553 register_prot_hook(sk);
stephen hemminger808f5112010-02-22 07:57:18 +00003554 spin_unlock(&po->bind_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 break;
3557 }
3558 }
stephen hemminger808f5112010-02-22 07:57:18 +00003559 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 return NOTIFY_DONE;
3561}
3562
3563
3564static int packet_ioctl(struct socket *sock, unsigned int cmd,
3565 unsigned long arg)
3566{
3567 struct sock *sk = sock->sk;
3568
Johann Baudy69e3c752009-05-18 22:11:22 -07003569 switch (cmd) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003570 case SIOCOUTQ:
3571 {
3572 int amount = sk_wmem_alloc_get(sk);
Eric Dumazet31e6d362009-06-17 19:05:41 -07003573
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003574 return put_user(amount, (int __user *)arg);
3575 }
3576 case SIOCINQ:
3577 {
3578 struct sk_buff *skb;
3579 int amount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003581 spin_lock_bh(&sk->sk_receive_queue.lock);
3582 skb = skb_peek(&sk->sk_receive_queue);
3583 if (skb)
3584 amount = skb->len;
3585 spin_unlock_bh(&sk->sk_receive_queue.lock);
3586 return put_user(amount, (int __user *)arg);
3587 }
3588 case SIOCGSTAMP:
3589 return sock_get_timestamp(sk, (struct timeval __user *)arg);
3590 case SIOCGSTAMPNS:
3591 return sock_get_timestampns(sk, (struct timespec __user *)arg);
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003592
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593#ifdef CONFIG_INET
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003594 case SIOCADDRT:
3595 case SIOCDELRT:
3596 case SIOCDARP:
3597 case SIOCGARP:
3598 case SIOCSARP:
3599 case SIOCGIFADDR:
3600 case SIOCSIFADDR:
3601 case SIOCGIFBRDADDR:
3602 case SIOCSIFBRDADDR:
3603 case SIOCGIFNETMASK:
3604 case SIOCSIFNETMASK:
3605 case SIOCGIFDSTADDR:
3606 case SIOCSIFDSTADDR:
3607 case SIOCSIFFLAGS:
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003608 return inet_dgram_ops.ioctl(sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609#endif
3610
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003611 default:
3612 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 }
3614 return 0;
3615}
3616
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003617static unsigned int packet_poll(struct file *file, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618 poll_table *wait)
3619{
3620 struct sock *sk = sock->sk;
3621 struct packet_sock *po = pkt_sk(sk);
3622 unsigned int mask = datagram_poll(file, sock, wait);
3623
3624 spin_lock_bh(&sk->sk_receive_queue.lock);
Johann Baudy69e3c752009-05-18 22:11:22 -07003625 if (po->rx_ring.pg_vec) {
chetan lokef6fb8f102011-08-19 10:18:16 +00003626 if (!packet_previous_rx_frame(po, &po->rx_ring,
3627 TP_STATUS_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 mask |= POLLIN | POLLRDNORM;
3629 }
3630 spin_unlock_bh(&sk->sk_receive_queue.lock);
Johann Baudy69e3c752009-05-18 22:11:22 -07003631 spin_lock_bh(&sk->sk_write_queue.lock);
3632 if (po->tx_ring.pg_vec) {
3633 if (packet_current_frame(po, &po->tx_ring, TP_STATUS_AVAILABLE))
3634 mask |= POLLOUT | POLLWRNORM;
3635 }
3636 spin_unlock_bh(&sk->sk_write_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 return mask;
3638}
3639
3640
3641/* Dirty? Well, I still did not learn better way to account
3642 * for user mmaps.
3643 */
3644
3645static void packet_mm_open(struct vm_area_struct *vma)
3646{
3647 struct file *file = vma->vm_file;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003648 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003650
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 if (sk)
3652 atomic_inc(&pkt_sk(sk)->mapped);
3653}
3654
3655static void packet_mm_close(struct vm_area_struct *vma)
3656{
3657 struct file *file = vma->vm_file;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003658 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003660
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 if (sk)
3662 atomic_dec(&pkt_sk(sk)->mapped);
3663}
3664
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04003665static const struct vm_operations_struct packet_mmap_ops = {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003666 .open = packet_mm_open,
3667 .close = packet_mm_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668};
3669
Neil Horman0e3125c2010-11-16 10:26:47 -08003670static void free_pg_vec(struct pgv *pg_vec, unsigned int order,
3671 unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672{
3673 int i;
3674
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003675 for (i = 0; i < len; i++) {
Neil Horman0e3125c2010-11-16 10:26:47 -08003676 if (likely(pg_vec[i].buffer)) {
Changli Gaoc56b4d92010-12-01 02:52:57 +00003677 if (is_vmalloc_addr(pg_vec[i].buffer))
Neil Horman0e3125c2010-11-16 10:26:47 -08003678 vfree(pg_vec[i].buffer);
3679 else
3680 free_pages((unsigned long)pg_vec[i].buffer,
3681 order);
3682 pg_vec[i].buffer = NULL;
3683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 }
3685 kfree(pg_vec);
3686}
3687
Olof Johanssoneea49cc92011-11-02 11:00:49 +00003688static char *alloc_one_pg_vec_page(unsigned long order)
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003689{
Daniel Borkmannf0d4eb22014-01-19 11:46:53 +01003690 char *buffer;
Neil Horman0e3125c2010-11-16 10:26:47 -08003691 gfp_t gfp_flags = GFP_KERNEL | __GFP_COMP |
3692 __GFP_ZERO | __GFP_NOWARN | __GFP_NORETRY;
Eric Dumazet719bfea2009-04-15 03:39:52 -07003693
Neil Horman0e3125c2010-11-16 10:26:47 -08003694 buffer = (char *) __get_free_pages(gfp_flags, order);
Neil Horman0e3125c2010-11-16 10:26:47 -08003695 if (buffer)
3696 return buffer;
3697
Daniel Borkmannf0d4eb22014-01-19 11:46:53 +01003698 /* __get_free_pages failed, fall back to vmalloc */
Eric Dumazetbbce5a52010-11-20 07:31:54 +00003699 buffer = vzalloc((1 << order) * PAGE_SIZE);
Neil Horman0e3125c2010-11-16 10:26:47 -08003700 if (buffer)
3701 return buffer;
3702
Daniel Borkmannf0d4eb22014-01-19 11:46:53 +01003703 /* vmalloc failed, lets dig into swap here */
Neil Horman0e3125c2010-11-16 10:26:47 -08003704 gfp_flags &= ~__GFP_NORETRY;
Daniel Borkmannf0d4eb22014-01-19 11:46:53 +01003705 buffer = (char *) __get_free_pages(gfp_flags, order);
Neil Horman0e3125c2010-11-16 10:26:47 -08003706 if (buffer)
3707 return buffer;
3708
Daniel Borkmannf0d4eb22014-01-19 11:46:53 +01003709 /* complete and utter failure */
Neil Horman0e3125c2010-11-16 10:26:47 -08003710 return NULL;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003711}
3712
Neil Horman0e3125c2010-11-16 10:26:47 -08003713static struct pgv *alloc_pg_vec(struct tpacket_req *req, int order)
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003714{
3715 unsigned int block_nr = req->tp_block_nr;
Neil Horman0e3125c2010-11-16 10:26:47 -08003716 struct pgv *pg_vec;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003717 int i;
3718
Neil Horman0e3125c2010-11-16 10:26:47 -08003719 pg_vec = kcalloc(block_nr, sizeof(struct pgv), GFP_KERNEL);
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003720 if (unlikely(!pg_vec))
3721 goto out;
3722
3723 for (i = 0; i < block_nr; i++) {
Changli Gaoc56b4d92010-12-01 02:52:57 +00003724 pg_vec[i].buffer = alloc_one_pg_vec_page(order);
Neil Horman0e3125c2010-11-16 10:26:47 -08003725 if (unlikely(!pg_vec[i].buffer))
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003726 goto out_free_pgvec;
3727 }
3728
3729out:
3730 return pg_vec;
3731
3732out_free_pgvec:
3733 free_pg_vec(pg_vec, order, block_nr);
3734 pg_vec = NULL;
3735 goto out;
3736}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737
chetan lokef6fb8f102011-08-19 10:18:16 +00003738static int packet_set_ring(struct sock *sk, union tpacket_req_u *req_u,
Johann Baudy69e3c752009-05-18 22:11:22 -07003739 int closing, int tx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740{
Neil Horman0e3125c2010-11-16 10:26:47 -08003741 struct pgv *pg_vec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742 struct packet_sock *po = pkt_sk(sk);
Al Viro0e11c912006-11-08 00:26:29 -08003743 int was_running, order = 0;
Johann Baudy69e3c752009-05-18 22:11:22 -07003744 struct packet_ring_buffer *rb;
3745 struct sk_buff_head *rb_queue;
Al Viro0e11c912006-11-08 00:26:29 -08003746 __be16 num;
chetan lokef6fb8f102011-08-19 10:18:16 +00003747 int err = -EINVAL;
3748 /* Added to avoid minimal code churn */
3749 struct tpacket_req *req = &req_u->req;
3750
3751 /* Opening a Tx-ring is NOT supported in TPACKET_V3 */
3752 if (!closing && tx_ring && (po->tp_version > TPACKET_V2)) {
3753 WARN(1, "Tx-ring is not supported.\n");
3754 goto out;
3755 }
Johann Baudy69e3c752009-05-18 22:11:22 -07003756
3757 rb = tx_ring ? &po->tx_ring : &po->rx_ring;
3758 rb_queue = tx_ring ? &sk->sk_write_queue : &sk->sk_receive_queue;
3759
3760 err = -EBUSY;
3761 if (!closing) {
3762 if (atomic_read(&po->mapped))
3763 goto out;
Daniel Borkmannb0138402014-01-15 16:25:36 +01003764 if (packet_read_pending(rb))
Johann Baudy69e3c752009-05-18 22:11:22 -07003765 goto out;
3766 }
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003767
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 if (req->tp_block_nr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769 /* Sanity tests and some calculations */
Johann Baudy69e3c752009-05-18 22:11:22 -07003770 err = -EBUSY;
3771 if (unlikely(rb->pg_vec))
3772 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003774 switch (po->tp_version) {
3775 case TPACKET_V1:
3776 po->tp_hdrlen = TPACKET_HDRLEN;
3777 break;
3778 case TPACKET_V2:
3779 po->tp_hdrlen = TPACKET2_HDRLEN;
3780 break;
chetan lokef6fb8f102011-08-19 10:18:16 +00003781 case TPACKET_V3:
3782 po->tp_hdrlen = TPACKET3_HDRLEN;
3783 break;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003784 }
3785
Johann Baudy69e3c752009-05-18 22:11:22 -07003786 err = -EINVAL;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003787 if (unlikely((int)req->tp_block_size <= 0))
Johann Baudy69e3c752009-05-18 22:11:22 -07003788 goto out;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003789 if (unlikely(req->tp_block_size & (PAGE_SIZE - 1)))
Johann Baudy69e3c752009-05-18 22:11:22 -07003790 goto out;
Patrick McHardy8913336a2008-07-18 18:05:19 -07003791 if (unlikely(req->tp_frame_size < po->tp_hdrlen +
Johann Baudy69e3c752009-05-18 22:11:22 -07003792 po->tp_reserve))
3793 goto out;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003794 if (unlikely(req->tp_frame_size & (TPACKET_ALIGNMENT - 1)))
Johann Baudy69e3c752009-05-18 22:11:22 -07003795 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796
Johann Baudy69e3c752009-05-18 22:11:22 -07003797 rb->frames_per_block = req->tp_block_size/req->tp_frame_size;
3798 if (unlikely(rb->frames_per_block <= 0))
3799 goto out;
3800 if (unlikely((rb->frames_per_block * req->tp_block_nr) !=
3801 req->tp_frame_nr))
3802 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803
3804 err = -ENOMEM;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003805 order = get_order(req->tp_block_size);
3806 pg_vec = alloc_pg_vec(req, order);
3807 if (unlikely(!pg_vec))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808 goto out;
chetan lokef6fb8f102011-08-19 10:18:16 +00003809 switch (po->tp_version) {
3810 case TPACKET_V3:
3811 /* Transmit path is not supported. We checked
3812 * it above but just being paranoid
3813 */
3814 if (!tx_ring)
3815 init_prb_bdqc(po, rb, pg_vec, req_u, tx_ring);
Dan Carpenterd7cf0c32014-02-18 15:20:51 +03003816 break;
chetan lokef6fb8f102011-08-19 10:18:16 +00003817 default:
3818 break;
3819 }
Johann Baudy69e3c752009-05-18 22:11:22 -07003820 }
3821 /* Done */
3822 else {
3823 err = -EINVAL;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003824 if (unlikely(req->tp_frame_nr))
Johann Baudy69e3c752009-05-18 22:11:22 -07003825 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 }
3827
3828 lock_sock(sk);
3829
3830 /* Detach socket from network */
3831 spin_lock(&po->bind_lock);
3832 was_running = po->running;
3833 num = po->num;
3834 if (was_running) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835 po->num = 0;
David S. Millerce06b032011-07-04 01:44:29 -07003836 __unregister_prot_hook(sk, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 }
3838 spin_unlock(&po->bind_lock);
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003839
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840 synchronize_net();
3841
3842 err = -EBUSY;
Herbert Xu905db442009-01-30 14:12:06 -08003843 mutex_lock(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 if (closing || atomic_read(&po->mapped) == 0) {
3845 err = 0;
Johann Baudy69e3c752009-05-18 22:11:22 -07003846 spin_lock_bh(&rb_queue->lock);
Changli Gaoc053fd92010-12-10 16:02:20 -08003847 swap(rb->pg_vec, pg_vec);
Johann Baudy69e3c752009-05-18 22:11:22 -07003848 rb->frame_max = (req->tp_frame_nr - 1);
3849 rb->head = 0;
3850 rb->frame_size = req->tp_frame_size;
3851 spin_unlock_bh(&rb_queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852
Changli Gaoc053fd92010-12-10 16:02:20 -08003853 swap(rb->pg_vec_order, order);
3854 swap(rb->pg_vec_len, req->tp_block_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855
Johann Baudy69e3c752009-05-18 22:11:22 -07003856 rb->pg_vec_pages = req->tp_block_size/PAGE_SIZE;
3857 po->prot_hook.func = (po->rx_ring.pg_vec) ?
3858 tpacket_rcv : packet_rcv;
3859 skb_queue_purge(rb_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 if (atomic_read(&po->mapped))
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003861 pr_err("packet_mmap: vma is busy: %d\n",
3862 atomic_read(&po->mapped));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 }
Herbert Xu905db442009-01-30 14:12:06 -08003864 mutex_unlock(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865
3866 spin_lock(&po->bind_lock);
David S. Millerce06b032011-07-04 01:44:29 -07003867 if (was_running) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868 po->num = num;
David S. Millerce06b032011-07-04 01:44:29 -07003869 register_prot_hook(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870 }
3871 spin_unlock(&po->bind_lock);
chetan lokef6fb8f102011-08-19 10:18:16 +00003872 if (closing && (po->tp_version > TPACKET_V2)) {
3873 /* Because we don't support block-based V3 on tx-ring */
3874 if (!tx_ring)
3875 prb_shutdown_retire_blk_timer(po, tx_ring, rb_queue);
3876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 release_sock(sk);
3878
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879 if (pg_vec)
3880 free_pg_vec(pg_vec, order, req->tp_block_nr);
3881out:
3882 return err;
3883}
3884
Johann Baudy69e3c752009-05-18 22:11:22 -07003885static int packet_mmap(struct file *file, struct socket *sock,
3886 struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887{
3888 struct sock *sk = sock->sk;
3889 struct packet_sock *po = pkt_sk(sk);
Johann Baudy69e3c752009-05-18 22:11:22 -07003890 unsigned long size, expected_size;
3891 struct packet_ring_buffer *rb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 unsigned long start;
3893 int err = -EINVAL;
3894 int i;
3895
3896 if (vma->vm_pgoff)
3897 return -EINVAL;
3898
Herbert Xu905db442009-01-30 14:12:06 -08003899 mutex_lock(&po->pg_vec_lock);
Johann Baudy69e3c752009-05-18 22:11:22 -07003900
3901 expected_size = 0;
3902 for (rb = &po->rx_ring; rb <= &po->tx_ring; rb++) {
3903 if (rb->pg_vec) {
3904 expected_size += rb->pg_vec_len
3905 * rb->pg_vec_pages
3906 * PAGE_SIZE;
3907 }
3908 }
3909
3910 if (expected_size == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 goto out;
Johann Baudy69e3c752009-05-18 22:11:22 -07003912
3913 size = vma->vm_end - vma->vm_start;
3914 if (size != expected_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 goto out;
3916
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 start = vma->vm_start;
Johann Baudy69e3c752009-05-18 22:11:22 -07003918 for (rb = &po->rx_ring; rb <= &po->tx_ring; rb++) {
3919 if (rb->pg_vec == NULL)
3920 continue;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003921
Johann Baudy69e3c752009-05-18 22:11:22 -07003922 for (i = 0; i < rb->pg_vec_len; i++) {
Neil Horman0e3125c2010-11-16 10:26:47 -08003923 struct page *page;
3924 void *kaddr = rb->pg_vec[i].buffer;
Johann Baudy69e3c752009-05-18 22:11:22 -07003925 int pg_num;
3926
Changli Gaoc56b4d92010-12-01 02:52:57 +00003927 for (pg_num = 0; pg_num < rb->pg_vec_pages; pg_num++) {
3928 page = pgv_to_page(kaddr);
Johann Baudy69e3c752009-05-18 22:11:22 -07003929 err = vm_insert_page(vma, start, page);
3930 if (unlikely(err))
3931 goto out;
3932 start += PAGE_SIZE;
Neil Horman0e3125c2010-11-16 10:26:47 -08003933 kaddr += PAGE_SIZE;
Johann Baudy69e3c752009-05-18 22:11:22 -07003934 }
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003935 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 }
Johann Baudy69e3c752009-05-18 22:11:22 -07003937
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003938 atomic_inc(&po->mapped);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939 vma->vm_ops = &packet_mmap_ops;
3940 err = 0;
3941
3942out:
Herbert Xu905db442009-01-30 14:12:06 -08003943 mutex_unlock(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 return err;
3945}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08003947static const struct proto_ops packet_ops_spkt = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 .family = PF_PACKET,
3949 .owner = THIS_MODULE,
3950 .release = packet_release,
3951 .bind = packet_bind_spkt,
3952 .connect = sock_no_connect,
3953 .socketpair = sock_no_socketpair,
3954 .accept = sock_no_accept,
3955 .getname = packet_getname_spkt,
3956 .poll = datagram_poll,
3957 .ioctl = packet_ioctl,
3958 .listen = sock_no_listen,
3959 .shutdown = sock_no_shutdown,
3960 .setsockopt = sock_no_setsockopt,
3961 .getsockopt = sock_no_getsockopt,
3962 .sendmsg = packet_sendmsg_spkt,
3963 .recvmsg = packet_recvmsg,
3964 .mmap = sock_no_mmap,
3965 .sendpage = sock_no_sendpage,
3966};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08003968static const struct proto_ops packet_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 .family = PF_PACKET,
3970 .owner = THIS_MODULE,
3971 .release = packet_release,
3972 .bind = packet_bind,
3973 .connect = sock_no_connect,
3974 .socketpair = sock_no_socketpair,
3975 .accept = sock_no_accept,
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003976 .getname = packet_getname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 .poll = packet_poll,
3978 .ioctl = packet_ioctl,
3979 .listen = sock_no_listen,
3980 .shutdown = sock_no_shutdown,
3981 .setsockopt = packet_setsockopt,
3982 .getsockopt = packet_getsockopt,
3983 .sendmsg = packet_sendmsg,
3984 .recvmsg = packet_recvmsg,
3985 .mmap = packet_mmap,
3986 .sendpage = sock_no_sendpage,
3987};
3988
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00003989static const struct net_proto_family packet_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990 .family = PF_PACKET,
3991 .create = packet_create,
3992 .owner = THIS_MODULE,
3993};
3994
3995static struct notifier_block packet_netdev_notifier = {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003996 .notifier_call = packet_notifier,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997};
3998
3999#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000
4001static void *packet_seq_start(struct seq_file *seq, loff_t *pos)
stephen hemminger808f5112010-02-22 07:57:18 +00004002 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003{
Denis V. Luneve372c412007-11-19 22:31:54 -08004004 struct net *net = seq_file_net(seq);
stephen hemminger808f5112010-02-22 07:57:18 +00004005
4006 rcu_read_lock();
4007 return seq_hlist_start_head_rcu(&net->packet.sklist, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008}
4009
4010static void *packet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
4011{
Herbert Xu1bf40952007-12-16 14:04:02 -08004012 struct net *net = seq_file_net(seq);
stephen hemminger808f5112010-02-22 07:57:18 +00004013 return seq_hlist_next_rcu(v, &net->packet.sklist, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014}
4015
4016static void packet_seq_stop(struct seq_file *seq, void *v)
stephen hemminger808f5112010-02-22 07:57:18 +00004017 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018{
stephen hemminger808f5112010-02-22 07:57:18 +00004019 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020}
4021
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09004022static int packet_seq_show(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023{
4024 if (v == SEQ_START_TOKEN)
4025 seq_puts(seq, "sk RefCnt Type Proto Iface R Rmem User Inode\n");
4026 else {
Li Zefanb7ceabd2010-02-08 23:19:29 +00004027 struct sock *s = sk_entry(v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028 const struct packet_sock *po = pkt_sk(s);
4029
4030 seq_printf(seq,
Dan Rosenberg71338aa2011-05-23 12:17:35 +00004031 "%pK %-6d %-4d %04x %-5d %1d %-6u %-6u %-6lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 s,
4033 atomic_read(&s->sk_refcnt),
4034 s->sk_type,
4035 ntohs(po->num),
4036 po->ifindex,
4037 po->running,
4038 atomic_read(&s->sk_rmem_alloc),
Eric W. Biedermana7cb5a42012-05-24 01:10:10 -06004039 from_kuid_munged(seq_user_ns(seq), sock_i_uid(s)),
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00004040 sock_i_ino(s));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 }
4042
4043 return 0;
4044}
4045
Philippe De Muyter56b3d972007-07-10 23:07:31 -07004046static const struct seq_operations packet_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 .start = packet_seq_start,
4048 .next = packet_seq_next,
4049 .stop = packet_seq_stop,
4050 .show = packet_seq_show,
4051};
4052
4053static int packet_seq_open(struct inode *inode, struct file *file)
4054{
Denis V. Luneve372c412007-11-19 22:31:54 -08004055 return seq_open_net(inode, file, &packet_seq_ops,
4056 sizeof(struct seq_net_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057}
4058
Arjan van de Venda7071d2007-02-12 00:55:36 -08004059static const struct file_operations packet_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 .owner = THIS_MODULE,
4061 .open = packet_seq_open,
4062 .read = seq_read,
4063 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08004064 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065};
4066
4067#endif
4068
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004069static int __net_init packet_net_init(struct net *net)
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08004070{
Pavel Emelyanov0fa7fa92012-08-21 01:06:47 +00004071 mutex_init(&net->packet.sklist_lock);
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08004072 INIT_HLIST_HEAD(&net->packet.sklist);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08004073
Gao fengd4beaa62013-02-18 01:34:54 +00004074 if (!proc_create("packet", 0, net->proc_net, &packet_seq_fops))
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08004075 return -ENOMEM;
4076
4077 return 0;
4078}
4079
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004080static void __net_exit packet_net_exit(struct net *net)
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08004081{
Gao fengece31ff2013-02-18 01:34:56 +00004082 remove_proc_entry("packet", net->proc_net);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08004083}
4084
4085static struct pernet_operations packet_net_ops = {
4086 .init = packet_net_init,
4087 .exit = packet_net_exit,
4088};
4089
4090
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091static void __exit packet_exit(void)
4092{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 unregister_netdevice_notifier(&packet_netdev_notifier);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08004094 unregister_pernet_subsys(&packet_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095 sock_unregister(PF_PACKET);
4096 proto_unregister(&packet_proto);
4097}
4098
4099static int __init packet_init(void)
4100{
4101 int rc = proto_register(&packet_proto, 0);
4102
4103 if (rc != 0)
4104 goto out;
4105
4106 sock_register(&packet_family_ops);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08004107 register_pernet_subsys(&packet_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 register_netdevice_notifier(&packet_netdev_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109out:
4110 return rc;
4111}
4112
4113module_init(packet_init);
4114module_exit(packet_exit);
4115MODULE_LICENSE("GPL");
4116MODULE_ALIAS_NETPROTO(PF_PACKET);