blob: d5495d87f399db7b9e0b3e7c12457832fd1bdf5d [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 Borkmann5df0ddf2013-08-28 22:13:09 +020091#include <linux/reciprocal_div.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;
246 u16 queue_map;
247 int ret;
248
249 if (unlikely(!netif_running(dev) ||
250 !netif_carrier_ok(dev))) {
251 kfree_skb(skb);
252 return NET_XMIT_DROP;
253 }
254
255 features = netif_skb_features(skb);
256 if (skb_needs_linearize(skb, features) &&
257 __skb_linearize(skb)) {
258 kfree_skb(skb);
259 return NET_XMIT_DROP;
260 }
261
262 queue_map = skb_get_queue_mapping(skb);
263 txq = netdev_get_tx_queue(dev, queue_map);
264
265 __netif_tx_lock_bh(txq);
266 if (unlikely(netif_xmit_frozen_or_stopped(txq))) {
267 ret = NETDEV_TX_BUSY;
268 kfree_skb(skb);
269 goto out;
270 }
271
272 ret = ops->ndo_start_xmit(skb, dev);
273 if (likely(dev_xmit_complete(ret)))
274 txq_trans_update(txq);
275 else
276 kfree_skb(skb);
277out:
278 __netif_tx_unlock_bh(txq);
279 return ret;
280}
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
311static u16 packet_pick_tx_queue(struct net_device *dev)
312{
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
David S. Millerce06b032011-07-04 01:44:29 -0700316/* register_prot_hook must be invoked with the po->bind_lock held,
317 * or from a context in which asynchronous accesses to the packet
318 * socket is not possible (packet_create()).
319 */
320static void register_prot_hook(struct sock *sk)
321{
322 struct packet_sock *po = pkt_sk(sk);
Daniel Borkmanne40526c2013-11-21 16:50:58 +0100323
David S. Millerce06b032011-07-04 01:44:29 -0700324 if (!po->running) {
Daniel Borkmann66e56cd2013-12-06 11:36:15 +0100325 if (po->fanout)
David S. Millerdc99f602011-07-05 01:45:05 -0700326 __fanout_link(sk, po);
Daniel Borkmann66e56cd2013-12-06 11:36:15 +0100327 else
David S. Millerdc99f602011-07-05 01:45:05 -0700328 dev_add_pack(&po->prot_hook);
Daniel Borkmanne40526c2013-11-21 16:50:58 +0100329
David S. Millerce06b032011-07-04 01:44:29 -0700330 sock_hold(sk);
331 po->running = 1;
332 }
333}
334
335/* {,__}unregister_prot_hook() must be invoked with the po->bind_lock
336 * held. If the sync parameter is true, we will temporarily drop
337 * the po->bind_lock and do a synchronize_net to make sure no
338 * asynchronous packet processing paths still refer to the elements
339 * of po->prot_hook. If the sync parameter is false, it is the
340 * callers responsibility to take care of this.
341 */
342static void __unregister_prot_hook(struct sock *sk, bool sync)
343{
344 struct packet_sock *po = pkt_sk(sk);
345
346 po->running = 0;
Daniel Borkmann66e56cd2013-12-06 11:36:15 +0100347
348 if (po->fanout)
David S. Millerdc99f602011-07-05 01:45:05 -0700349 __fanout_unlink(sk, po);
Daniel Borkmann66e56cd2013-12-06 11:36:15 +0100350 else
David S. Millerdc99f602011-07-05 01:45:05 -0700351 __dev_remove_pack(&po->prot_hook);
Daniel Borkmanne40526c2013-11-21 16:50:58 +0100352
David S. Millerce06b032011-07-04 01:44:29 -0700353 __sock_put(sk);
354
355 if (sync) {
356 spin_unlock(&po->bind_lock);
357 synchronize_net();
358 spin_lock(&po->bind_lock);
359 }
360}
361
362static void unregister_prot_hook(struct sock *sk, bool sync)
363{
364 struct packet_sock *po = pkt_sk(sk);
365
366 if (po->running)
367 __unregister_prot_hook(sk, sync);
368}
369
Changli Gaof6dafa92010-12-07 04:26:16 +0000370static inline __pure struct page *pgv_to_page(void *addr)
Changli Gao0af55bb2010-12-01 02:52:20 +0000371{
372 if (is_vmalloc_addr(addr))
373 return vmalloc_to_page(addr);
374 return virt_to_page(addr);
375}
376
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700377static void __packet_set_status(struct packet_sock *po, void *frame, int status)
378{
Daniel Borkmann184f4892013-04-16 01:57:46 +0000379 union tpacket_uhdr h;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700380
381 h.raw = frame;
382 switch (po->tp_version) {
383 case TPACKET_V1:
384 h.h1->tp_status = status;
Changli Gao0af55bb2010-12-01 02:52:20 +0000385 flush_dcache_page(pgv_to_page(&h.h1->tp_status));
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700386 break;
387 case TPACKET_V2:
388 h.h2->tp_status = status;
Changli Gao0af55bb2010-12-01 02:52:20 +0000389 flush_dcache_page(pgv_to_page(&h.h2->tp_status));
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700390 break;
chetan lokef6fb8f102011-08-19 10:18:16 +0000391 case TPACKET_V3:
Johann Baudy69e3c752009-05-18 22:11:22 -0700392 default:
chetan lokef6fb8f102011-08-19 10:18:16 +0000393 WARN(1, "TPACKET version not supported.\n");
Johann Baudy69e3c752009-05-18 22:11:22 -0700394 BUG();
395 }
396
397 smp_wmb();
398}
399
400static int __packet_get_status(struct packet_sock *po, void *frame)
401{
Daniel Borkmann184f4892013-04-16 01:57:46 +0000402 union tpacket_uhdr h;
Johann Baudy69e3c752009-05-18 22:11:22 -0700403
404 smp_rmb();
405
406 h.raw = frame;
407 switch (po->tp_version) {
408 case TPACKET_V1:
Changli Gao0af55bb2010-12-01 02:52:20 +0000409 flush_dcache_page(pgv_to_page(&h.h1->tp_status));
Johann Baudy69e3c752009-05-18 22:11:22 -0700410 return h.h1->tp_status;
411 case TPACKET_V2:
Changli Gao0af55bb2010-12-01 02:52:20 +0000412 flush_dcache_page(pgv_to_page(&h.h2->tp_status));
Johann Baudy69e3c752009-05-18 22:11:22 -0700413 return h.h2->tp_status;
chetan lokef6fb8f102011-08-19 10:18:16 +0000414 case TPACKET_V3:
Johann Baudy69e3c752009-05-18 22:11:22 -0700415 default:
chetan lokef6fb8f102011-08-19 10:18:16 +0000416 WARN(1, "TPACKET version not supported.\n");
Johann Baudy69e3c752009-05-18 22:11:22 -0700417 BUG();
418 return 0;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
Johann Baudy69e3c752009-05-18 22:11:22 -0700421
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +0000422static __u32 tpacket_get_timestamp(struct sk_buff *skb, struct timespec *ts,
423 unsigned int flags)
Daniel Borkmann7a513842013-04-23 00:39:29 +0000424{
425 struct skb_shared_hwtstamps *shhwtstamps = skb_hwtstamps(skb);
426
427 if (shhwtstamps) {
428 if ((flags & SOF_TIMESTAMPING_SYS_HARDWARE) &&
429 ktime_to_timespec_cond(shhwtstamps->syststamp, ts))
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +0000430 return TP_STATUS_TS_SYS_HARDWARE;
Daniel Borkmann7a513842013-04-23 00:39:29 +0000431 if ((flags & SOF_TIMESTAMPING_RAW_HARDWARE) &&
432 ktime_to_timespec_cond(shhwtstamps->hwtstamp, ts))
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +0000433 return TP_STATUS_TS_RAW_HARDWARE;
Daniel Borkmann7a513842013-04-23 00:39:29 +0000434 }
435
436 if (ktime_to_timespec_cond(skb->tstamp, ts))
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +0000437 return TP_STATUS_TS_SOFTWARE;
Daniel Borkmann7a513842013-04-23 00:39:29 +0000438
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +0000439 return 0;
Daniel Borkmann7a513842013-04-23 00:39:29 +0000440}
441
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +0000442static __u32 __packet_set_timestamp(struct packet_sock *po, void *frame,
443 struct sk_buff *skb)
Willem de Bruijn2e313962013-04-23 00:39:28 +0000444{
445 union tpacket_uhdr h;
446 struct timespec ts;
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +0000447 __u32 ts_status;
Willem de Bruijn2e313962013-04-23 00:39:28 +0000448
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +0000449 if (!(ts_status = tpacket_get_timestamp(skb, &ts, po->tp_tstamp)))
450 return 0;
Willem de Bruijn2e313962013-04-23 00:39:28 +0000451
452 h.raw = frame;
453 switch (po->tp_version) {
454 case TPACKET_V1:
455 h.h1->tp_sec = ts.tv_sec;
456 h.h1->tp_usec = ts.tv_nsec / NSEC_PER_USEC;
457 break;
458 case TPACKET_V2:
459 h.h2->tp_sec = ts.tv_sec;
460 h.h2->tp_nsec = ts.tv_nsec;
461 break;
462 case TPACKET_V3:
463 default:
464 WARN(1, "TPACKET version not supported.\n");
465 BUG();
466 }
467
468 /* one flush is safe, as both fields always lie on the same cacheline */
469 flush_dcache_page(pgv_to_page(&h.h1->tp_sec));
470 smp_wmb();
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +0000471
472 return ts_status;
Willem de Bruijn2e313962013-04-23 00:39:28 +0000473}
474
Johann Baudy69e3c752009-05-18 22:11:22 -0700475static void *packet_lookup_frame(struct packet_sock *po,
476 struct packet_ring_buffer *rb,
477 unsigned int position,
478 int status)
479{
480 unsigned int pg_vec_pos, frame_offset;
Daniel Borkmann184f4892013-04-16 01:57:46 +0000481 union tpacket_uhdr h;
Johann Baudy69e3c752009-05-18 22:11:22 -0700482
483 pg_vec_pos = position / rb->frames_per_block;
484 frame_offset = position % rb->frames_per_block;
485
Neil Horman0e3125c2010-11-16 10:26:47 -0800486 h.raw = rb->pg_vec[pg_vec_pos].buffer +
487 (frame_offset * rb->frame_size);
Johann Baudy69e3c752009-05-18 22:11:22 -0700488
489 if (status != __packet_get_status(po, h.raw))
490 return NULL;
491
492 return h.raw;
493}
494
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000495static void *packet_current_frame(struct packet_sock *po,
Johann Baudy69e3c752009-05-18 22:11:22 -0700496 struct packet_ring_buffer *rb,
497 int status)
498{
499 return packet_lookup_frame(po, rb, rb->head, status);
500}
501
chetan lokebc59ba32011-08-25 10:43:30 +0000502static void prb_del_retire_blk_timer(struct tpacket_kbdq_core *pkc)
chetan lokef6fb8f102011-08-19 10:18:16 +0000503{
504 del_timer_sync(&pkc->retire_blk_timer);
505}
506
507static void prb_shutdown_retire_blk_timer(struct packet_sock *po,
508 int tx_ring,
509 struct sk_buff_head *rb_queue)
510{
chetan lokebc59ba32011-08-25 10:43:30 +0000511 struct tpacket_kbdq_core *pkc;
chetan lokef6fb8f102011-08-19 10:18:16 +0000512
Duan Jiong22781a52013-12-06 13:29:36 +0800513 pkc = tx_ring ? GET_PBDQC_FROM_RB(&po->tx_ring) :
514 GET_PBDQC_FROM_RB(&po->rx_ring);
chetan lokef6fb8f102011-08-19 10:18:16 +0000515
Veaceslav Falicoec6f8092013-11-29 09:53:23 +0100516 spin_lock_bh(&rb_queue->lock);
chetan lokef6fb8f102011-08-19 10:18:16 +0000517 pkc->delete_blk_timer = 1;
Veaceslav Falicoec6f8092013-11-29 09:53:23 +0100518 spin_unlock_bh(&rb_queue->lock);
chetan lokef6fb8f102011-08-19 10:18:16 +0000519
520 prb_del_retire_blk_timer(pkc);
521}
522
523static void prb_init_blk_timer(struct packet_sock *po,
chetan lokebc59ba32011-08-25 10:43:30 +0000524 struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000525 void (*func) (unsigned long))
526{
527 init_timer(&pkc->retire_blk_timer);
528 pkc->retire_blk_timer.data = (long)po;
529 pkc->retire_blk_timer.function = func;
530 pkc->retire_blk_timer.expires = jiffies;
531}
532
533static void prb_setup_retire_blk_timer(struct packet_sock *po, int tx_ring)
534{
chetan lokebc59ba32011-08-25 10:43:30 +0000535 struct tpacket_kbdq_core *pkc;
chetan lokef6fb8f102011-08-19 10:18:16 +0000536
537 if (tx_ring)
538 BUG();
539
Duan Jiong22781a52013-12-06 13:29:36 +0800540 pkc = tx_ring ? GET_PBDQC_FROM_RB(&po->tx_ring) :
541 GET_PBDQC_FROM_RB(&po->rx_ring);
chetan lokef6fb8f102011-08-19 10:18:16 +0000542 prb_init_blk_timer(po, pkc, prb_retire_rx_blk_timer_expired);
543}
544
545static int prb_calc_retire_blk_tmo(struct packet_sock *po,
546 int blk_size_in_bytes)
547{
548 struct net_device *dev;
549 unsigned int mbits = 0, msec = 0, div = 0, tmo = 0;
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000550 struct ethtool_cmd ecmd;
551 int err;
parav.pandit@emulex.come440cf22012-06-27 03:56:12 +0000552 u32 speed;
chetan lokef6fb8f102011-08-19 10:18:16 +0000553
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000554 rtnl_lock();
555 dev = __dev_get_by_index(sock_net(&po->sk), po->ifindex);
556 if (unlikely(!dev)) {
557 rtnl_unlock();
chetan lokef6fb8f102011-08-19 10:18:16 +0000558 return DEFAULT_PRB_RETIRE_TOV;
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000559 }
560 err = __ethtool_get_settings(dev, &ecmd);
parav.pandit@emulex.come440cf22012-06-27 03:56:12 +0000561 speed = ethtool_cmd_speed(&ecmd);
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000562 rtnl_unlock();
563 if (!err) {
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000564 /*
565 * If the link speed is so slow you don't really
566 * need to worry about perf anyways
567 */
parav.pandit@emulex.come440cf22012-06-27 03:56:12 +0000568 if (speed < SPEED_1000 || speed == SPEED_UNKNOWN) {
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000569 return DEFAULT_PRB_RETIRE_TOV;
parav.pandit@emulex.come440cf22012-06-27 03:56:12 +0000570 } else {
571 msec = 1;
572 div = speed / 1000;
chetan lokef6fb8f102011-08-19 10:18:16 +0000573 }
574 }
575
576 mbits = (blk_size_in_bytes * 8) / (1024 * 1024);
577
578 if (div)
579 mbits /= div;
580
581 tmo = mbits * msec;
582
583 if (div)
584 return tmo+1;
585 return tmo;
586}
587
chetan lokebc59ba32011-08-25 10:43:30 +0000588static void prb_init_ft_ops(struct tpacket_kbdq_core *p1,
chetan lokef6fb8f102011-08-19 10:18:16 +0000589 union tpacket_req_u *req_u)
590{
591 p1->feature_req_word = req_u->req3.tp_feature_req_word;
592}
593
594static void init_prb_bdqc(struct packet_sock *po,
595 struct packet_ring_buffer *rb,
596 struct pgv *pg_vec,
597 union tpacket_req_u *req_u, int tx_ring)
598{
Duan Jiong22781a52013-12-06 13:29:36 +0800599 struct tpacket_kbdq_core *p1 = GET_PBDQC_FROM_RB(rb);
chetan lokebc59ba32011-08-25 10:43:30 +0000600 struct tpacket_block_desc *pbd;
chetan lokef6fb8f102011-08-19 10:18:16 +0000601
602 memset(p1, 0x0, sizeof(*p1));
603
604 p1->knxt_seq_num = 1;
605 p1->pkbdq = pg_vec;
chetan lokebc59ba32011-08-25 10:43:30 +0000606 pbd = (struct tpacket_block_desc *)pg_vec[0].buffer;
Joe Perchese3192692012-06-03 17:41:40 +0000607 p1->pkblk_start = pg_vec[0].buffer;
chetan lokef6fb8f102011-08-19 10:18:16 +0000608 p1->kblk_size = req_u->req3.tp_block_size;
609 p1->knum_blocks = req_u->req3.tp_block_nr;
610 p1->hdrlen = po->tp_hdrlen;
611 p1->version = po->tp_version;
612 p1->last_kactive_blk_num = 0;
Daniel Borkmannee80fbf2013-04-19 06:12:29 +0000613 po->stats.stats3.tp_freeze_q_cnt = 0;
chetan lokef6fb8f102011-08-19 10:18:16 +0000614 if (req_u->req3.tp_retire_blk_tov)
615 p1->retire_blk_tov = req_u->req3.tp_retire_blk_tov;
616 else
617 p1->retire_blk_tov = prb_calc_retire_blk_tmo(po,
618 req_u->req3.tp_block_size);
619 p1->tov_in_jiffies = msecs_to_jiffies(p1->retire_blk_tov);
620 p1->blk_sizeof_priv = req_u->req3.tp_sizeof_priv;
621
622 prb_init_ft_ops(p1, req_u);
623 prb_setup_retire_blk_timer(po, tx_ring);
624 prb_open_block(p1, pbd);
625}
626
627/* Do NOT update the last_blk_num first.
628 * Assumes sk_buff_head lock is held.
629 */
chetan lokebc59ba32011-08-25 10:43:30 +0000630static void _prb_refresh_rx_retire_blk_timer(struct tpacket_kbdq_core *pkc)
chetan lokef6fb8f102011-08-19 10:18:16 +0000631{
632 mod_timer(&pkc->retire_blk_timer,
633 jiffies + pkc->tov_in_jiffies);
634 pkc->last_kactive_blk_num = pkc->kactive_blk_num;
635}
636
637/*
638 * Timer logic:
639 * 1) We refresh the timer only when we open a block.
640 * By doing this we don't waste cycles refreshing the timer
641 * on packet-by-packet basis.
642 *
643 * With a 1MB block-size, on a 1Gbps line, it will take
644 * i) ~8 ms to fill a block + ii) memcpy etc.
645 * In this cut we are not accounting for the memcpy time.
646 *
647 * So, if the user sets the 'tmo' to 10ms then the timer
648 * will never fire while the block is still getting filled
649 * (which is what we want). However, the user could choose
650 * to close a block early and that's fine.
651 *
652 * But when the timer does fire, we check whether or not to refresh it.
653 * Since the tmo granularity is in msecs, it is not too expensive
654 * to refresh the timer, lets say every '8' msecs.
655 * Either the user can set the 'tmo' or we can derive it based on
656 * a) line-speed and b) block-size.
657 * prb_calc_retire_blk_tmo() calculates the tmo.
658 *
659 */
660static void prb_retire_rx_blk_timer_expired(unsigned long data)
661{
662 struct packet_sock *po = (struct packet_sock *)data;
Duan Jiong22781a52013-12-06 13:29:36 +0800663 struct tpacket_kbdq_core *pkc = GET_PBDQC_FROM_RB(&po->rx_ring);
chetan lokef6fb8f102011-08-19 10:18:16 +0000664 unsigned int frozen;
chetan lokebc59ba32011-08-25 10:43:30 +0000665 struct tpacket_block_desc *pbd;
chetan lokef6fb8f102011-08-19 10:18:16 +0000666
667 spin_lock(&po->sk.sk_receive_queue.lock);
668
669 frozen = prb_queue_frozen(pkc);
670 pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
671
672 if (unlikely(pkc->delete_blk_timer))
673 goto out;
674
675 /* We only need to plug the race when the block is partially filled.
676 * tpacket_rcv:
677 * lock(); increment BLOCK_NUM_PKTS; unlock()
678 * copy_bits() is in progress ...
679 * timer fires on other cpu:
680 * we can't retire the current block because copy_bits
681 * is in progress.
682 *
683 */
684 if (BLOCK_NUM_PKTS(pbd)) {
685 while (atomic_read(&pkc->blk_fill_in_prog)) {
686 /* Waiting for skb_copy_bits to finish... */
687 cpu_relax();
688 }
689 }
690
691 if (pkc->last_kactive_blk_num == pkc->kactive_blk_num) {
692 if (!frozen) {
693 prb_retire_current_block(pkc, po, TP_STATUS_BLK_TMO);
694 if (!prb_dispatch_next_block(pkc, po))
695 goto refresh_timer;
696 else
697 goto out;
698 } else {
699 /* Case 1. Queue was frozen because user-space was
700 * lagging behind.
701 */
702 if (prb_curr_blk_in_use(pkc, pbd)) {
703 /*
704 * Ok, user-space is still behind.
705 * So just refresh the timer.
706 */
707 goto refresh_timer;
708 } else {
709 /* Case 2. queue was frozen,user-space caught up,
710 * now the link went idle && the timer fired.
711 * We don't have a block to close.So we open this
712 * block and restart the timer.
713 * opening a block thaws the queue,restarts timer
714 * Thawing/timer-refresh is a side effect.
715 */
716 prb_open_block(pkc, pbd);
717 goto out;
718 }
719 }
720 }
721
722refresh_timer:
723 _prb_refresh_rx_retire_blk_timer(pkc);
724
725out:
726 spin_unlock(&po->sk.sk_receive_queue.lock);
727}
728
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000729static void prb_flush_block(struct tpacket_kbdq_core *pkc1,
chetan lokebc59ba32011-08-25 10:43:30 +0000730 struct tpacket_block_desc *pbd1, __u32 status)
chetan lokef6fb8f102011-08-19 10:18:16 +0000731{
732 /* Flush everything minus the block header */
733
734#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
735 u8 *start, *end;
736
737 start = (u8 *)pbd1;
738
739 /* Skip the block header(we know header WILL fit in 4K) */
740 start += PAGE_SIZE;
741
742 end = (u8 *)PAGE_ALIGN((unsigned long)pkc1->pkblk_end);
743 for (; start < end; start += PAGE_SIZE)
744 flush_dcache_page(pgv_to_page(start));
745
746 smp_wmb();
747#endif
748
749 /* Now update the block status. */
750
751 BLOCK_STATUS(pbd1) = status;
752
753 /* Flush the block header */
754
755#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
756 start = (u8 *)pbd1;
757 flush_dcache_page(pgv_to_page(start));
758
759 smp_wmb();
760#endif
761}
762
763/*
764 * Side effect:
765 *
766 * 1) flush the block
767 * 2) Increment active_blk_num
768 *
769 * Note:We DONT refresh the timer on purpose.
770 * Because almost always the next block will be opened.
771 */
chetan lokebc59ba32011-08-25 10:43:30 +0000772static void prb_close_block(struct tpacket_kbdq_core *pkc1,
773 struct tpacket_block_desc *pbd1,
chetan lokef6fb8f102011-08-19 10:18:16 +0000774 struct packet_sock *po, unsigned int stat)
775{
776 __u32 status = TP_STATUS_USER | stat;
777
778 struct tpacket3_hdr *last_pkt;
chetan lokebc59ba32011-08-25 10:43:30 +0000779 struct tpacket_hdr_v1 *h1 = &pbd1->hdr.bh1;
chetan lokef6fb8f102011-08-19 10:18:16 +0000780
Daniel Borkmannee80fbf2013-04-19 06:12:29 +0000781 if (po->stats.stats3.tp_drops)
chetan lokef6fb8f102011-08-19 10:18:16 +0000782 status |= TP_STATUS_LOSING;
783
784 last_pkt = (struct tpacket3_hdr *)pkc1->prev;
785 last_pkt->tp_next_offset = 0;
786
787 /* Get the ts of the last pkt */
788 if (BLOCK_NUM_PKTS(pbd1)) {
789 h1->ts_last_pkt.ts_sec = last_pkt->tp_sec;
790 h1->ts_last_pkt.ts_nsec = last_pkt->tp_nsec;
791 } else {
792 /* Ok, we tmo'd - so get the current time */
793 struct timespec ts;
794 getnstimeofday(&ts);
795 h1->ts_last_pkt.ts_sec = ts.tv_sec;
796 h1->ts_last_pkt.ts_nsec = ts.tv_nsec;
797 }
798
799 smp_wmb();
800
801 /* Flush the block */
802 prb_flush_block(pkc1, pbd1, status);
803
804 pkc1->kactive_blk_num = GET_NEXT_PRB_BLK_NUM(pkc1);
805}
806
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000807static void prb_thaw_queue(struct tpacket_kbdq_core *pkc)
chetan lokef6fb8f102011-08-19 10:18:16 +0000808{
809 pkc->reset_pending_on_curr_blk = 0;
810}
811
812/*
813 * Side effect of opening a block:
814 *
815 * 1) prb_queue is thawed.
816 * 2) retire_blk_timer is refreshed.
817 *
818 */
chetan lokebc59ba32011-08-25 10:43:30 +0000819static void prb_open_block(struct tpacket_kbdq_core *pkc1,
820 struct tpacket_block_desc *pbd1)
chetan lokef6fb8f102011-08-19 10:18:16 +0000821{
822 struct timespec ts;
chetan lokebc59ba32011-08-25 10:43:30 +0000823 struct tpacket_hdr_v1 *h1 = &pbd1->hdr.bh1;
chetan lokef6fb8f102011-08-19 10:18:16 +0000824
825 smp_rmb();
826
Daniel Borkmann8da30562013-05-03 02:57:00 +0000827 /* We could have just memset this but we will lose the
828 * flexibility of making the priv area sticky
829 */
chetan lokef6fb8f102011-08-19 10:18:16 +0000830
Daniel Borkmann8da30562013-05-03 02:57:00 +0000831 BLOCK_SNUM(pbd1) = pkc1->knxt_seq_num++;
832 BLOCK_NUM_PKTS(pbd1) = 0;
833 BLOCK_LEN(pbd1) = BLK_PLUS_PRIV(pkc1->blk_sizeof_priv);
chetan lokef6fb8f102011-08-19 10:18:16 +0000834
Daniel Borkmann8da30562013-05-03 02:57:00 +0000835 getnstimeofday(&ts);
chetan lokef6fb8f102011-08-19 10:18:16 +0000836
Daniel Borkmann8da30562013-05-03 02:57:00 +0000837 h1->ts_first_pkt.ts_sec = ts.tv_sec;
838 h1->ts_first_pkt.ts_nsec = ts.tv_nsec;
chetan lokef6fb8f102011-08-19 10:18:16 +0000839
Daniel Borkmann8da30562013-05-03 02:57:00 +0000840 pkc1->pkblk_start = (char *)pbd1;
841 pkc1->nxt_offset = pkc1->pkblk_start + BLK_PLUS_PRIV(pkc1->blk_sizeof_priv);
842
843 BLOCK_O2FP(pbd1) = (__u32)BLK_PLUS_PRIV(pkc1->blk_sizeof_priv);
844 BLOCK_O2PRIV(pbd1) = BLK_HDR_LEN;
845
846 pbd1->version = pkc1->version;
847 pkc1->prev = pkc1->nxt_offset;
848 pkc1->pkblk_end = pkc1->pkblk_start + pkc1->kblk_size;
849
850 prb_thaw_queue(pkc1);
851 _prb_refresh_rx_retire_blk_timer(pkc1);
852
853 smp_wmb();
chetan lokef6fb8f102011-08-19 10:18:16 +0000854}
855
856/*
857 * Queue freeze logic:
858 * 1) Assume tp_block_nr = 8 blocks.
859 * 2) At time 't0', user opens Rx ring.
860 * 3) Some time past 't0', kernel starts filling blocks starting from 0 .. 7
861 * 4) user-space is either sleeping or processing block '0'.
862 * 5) tpacket_rcv is currently filling block '7', since there is no space left,
863 * it will close block-7,loop around and try to fill block '0'.
864 * call-flow:
865 * __packet_lookup_frame_in_block
866 * prb_retire_current_block()
867 * prb_dispatch_next_block()
868 * |->(BLOCK_STATUS == USER) evaluates to true
869 * 5.1) Since block-0 is currently in-use, we just freeze the queue.
870 * 6) Now there are two cases:
871 * 6.1) Link goes idle right after the queue is frozen.
872 * But remember, the last open_block() refreshed the timer.
873 * When this timer expires,it will refresh itself so that we can
874 * re-open block-0 in near future.
875 * 6.2) Link is busy and keeps on receiving packets. This is a simple
876 * case and __packet_lookup_frame_in_block will check if block-0
877 * is free and can now be re-used.
878 */
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000879static void prb_freeze_queue(struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000880 struct packet_sock *po)
881{
882 pkc->reset_pending_on_curr_blk = 1;
Daniel Borkmannee80fbf2013-04-19 06:12:29 +0000883 po->stats.stats3.tp_freeze_q_cnt++;
chetan lokef6fb8f102011-08-19 10:18:16 +0000884}
885
886#define TOTAL_PKT_LEN_INCL_ALIGN(length) (ALIGN((length), V3_ALIGNMENT))
887
888/*
889 * If the next block is free then we will dispatch it
890 * and return a good offset.
891 * Else, we will freeze the queue.
892 * So, caller must check the return value.
893 */
chetan lokebc59ba32011-08-25 10:43:30 +0000894static void *prb_dispatch_next_block(struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000895 struct packet_sock *po)
896{
chetan lokebc59ba32011-08-25 10:43:30 +0000897 struct tpacket_block_desc *pbd;
chetan lokef6fb8f102011-08-19 10:18:16 +0000898
899 smp_rmb();
900
901 /* 1. Get current block num */
902 pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
903
904 /* 2. If this block is currently in_use then freeze the queue */
905 if (TP_STATUS_USER & BLOCK_STATUS(pbd)) {
906 prb_freeze_queue(pkc, po);
907 return NULL;
908 }
909
910 /*
911 * 3.
912 * open this block and return the offset where the first packet
913 * needs to get stored.
914 */
915 prb_open_block(pkc, pbd);
916 return (void *)pkc->nxt_offset;
917}
918
chetan lokebc59ba32011-08-25 10:43:30 +0000919static void prb_retire_current_block(struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000920 struct packet_sock *po, unsigned int status)
921{
chetan lokebc59ba32011-08-25 10:43:30 +0000922 struct tpacket_block_desc *pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
chetan lokef6fb8f102011-08-19 10:18:16 +0000923
924 /* retire/close the current block */
925 if (likely(TP_STATUS_KERNEL == BLOCK_STATUS(pbd))) {
926 /*
927 * Plug the case where copy_bits() is in progress on
928 * cpu-0 and tpacket_rcv() got invoked on cpu-1, didn't
929 * have space to copy the pkt in the current block and
930 * called prb_retire_current_block()
931 *
932 * We don't need to worry about the TMO case because
933 * the timer-handler already handled this case.
934 */
935 if (!(status & TP_STATUS_BLK_TMO)) {
936 while (atomic_read(&pkc->blk_fill_in_prog)) {
937 /* Waiting for skb_copy_bits to finish... */
938 cpu_relax();
939 }
940 }
941 prb_close_block(pkc, pbd, po, status);
942 return;
943 }
chetan lokef6fb8f102011-08-19 10:18:16 +0000944}
945
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000946static int prb_curr_blk_in_use(struct tpacket_kbdq_core *pkc,
chetan lokebc59ba32011-08-25 10:43:30 +0000947 struct tpacket_block_desc *pbd)
chetan lokef6fb8f102011-08-19 10:18:16 +0000948{
949 return TP_STATUS_USER & BLOCK_STATUS(pbd);
950}
951
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000952static int prb_queue_frozen(struct tpacket_kbdq_core *pkc)
chetan lokef6fb8f102011-08-19 10:18:16 +0000953{
954 return pkc->reset_pending_on_curr_blk;
955}
956
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000957static void prb_clear_blk_fill_status(struct packet_ring_buffer *rb)
chetan lokef6fb8f102011-08-19 10:18:16 +0000958{
chetan lokebc59ba32011-08-25 10:43:30 +0000959 struct tpacket_kbdq_core *pkc = GET_PBDQC_FROM_RB(rb);
chetan lokef6fb8f102011-08-19 10:18:16 +0000960 atomic_dec(&pkc->blk_fill_in_prog);
961}
962
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000963static void prb_fill_rxhash(struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000964 struct tpacket3_hdr *ppd)
965{
Tom Herbert3958afa1b2013-12-15 22:12:06 -0800966 ppd->hv1.tp_rxhash = skb_get_hash(pkc->skb);
chetan lokef6fb8f102011-08-19 10:18:16 +0000967}
968
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000969static void prb_clear_rxhash(struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000970 struct tpacket3_hdr *ppd)
971{
972 ppd->hv1.tp_rxhash = 0;
973}
974
Olof Johanssoneea49cc92011-11-02 11:00:49 +0000975static void prb_fill_vlan_info(struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000976 struct tpacket3_hdr *ppd)
977{
978 if (vlan_tx_tag_present(pkc->skb)) {
979 ppd->hv1.tp_vlan_tci = vlan_tx_tag_get(pkc->skb);
Atzm Watanabea0cdfcf2013-12-17 22:53:40 +0900980 ppd->hv1.tp_vlan_tpid = ntohs(pkc->skb->vlan_proto);
981 ppd->tp_status = TP_STATUS_VLAN_VALID | TP_STATUS_VLAN_TPID_VALID;
chetan lokef6fb8f102011-08-19 10:18:16 +0000982 } else {
danborkmann@iogearbox.net9e670302012-08-20 03:34:03 +0000983 ppd->hv1.tp_vlan_tci = 0;
Atzm Watanabea0cdfcf2013-12-17 22:53:40 +0900984 ppd->hv1.tp_vlan_tpid = 0;
danborkmann@iogearbox.net9e670302012-08-20 03:34:03 +0000985 ppd->tp_status = TP_STATUS_AVAILABLE;
chetan lokef6fb8f102011-08-19 10:18:16 +0000986 }
987}
988
chetan lokebc59ba32011-08-25 10:43:30 +0000989static void prb_run_all_ft_ops(struct tpacket_kbdq_core *pkc,
chetan lokef6fb8f102011-08-19 10:18:16 +0000990 struct tpacket3_hdr *ppd)
991{
Atzm Watanabea0cdfcf2013-12-17 22:53:40 +0900992 ppd->hv1.tp_padding = 0;
chetan lokef6fb8f102011-08-19 10:18:16 +0000993 prb_fill_vlan_info(pkc, ppd);
994
995 if (pkc->feature_req_word & TP_FT_REQ_FILL_RXHASH)
996 prb_fill_rxhash(pkc, ppd);
997 else
998 prb_clear_rxhash(pkc, ppd);
999}
1000
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001001static void prb_fill_curr_block(char *curr,
chetan lokebc59ba32011-08-25 10:43:30 +00001002 struct tpacket_kbdq_core *pkc,
1003 struct tpacket_block_desc *pbd,
chetan lokef6fb8f102011-08-19 10:18:16 +00001004 unsigned int len)
1005{
1006 struct tpacket3_hdr *ppd;
1007
1008 ppd = (struct tpacket3_hdr *)curr;
1009 ppd->tp_next_offset = TOTAL_PKT_LEN_INCL_ALIGN(len);
1010 pkc->prev = curr;
1011 pkc->nxt_offset += TOTAL_PKT_LEN_INCL_ALIGN(len);
1012 BLOCK_LEN(pbd) += TOTAL_PKT_LEN_INCL_ALIGN(len);
1013 BLOCK_NUM_PKTS(pbd) += 1;
1014 atomic_inc(&pkc->blk_fill_in_prog);
1015 prb_run_all_ft_ops(pkc, ppd);
1016}
1017
1018/* Assumes caller has the sk->rx_queue.lock */
1019static void *__packet_lookup_frame_in_block(struct packet_sock *po,
1020 struct sk_buff *skb,
1021 int status,
1022 unsigned int len
1023 )
1024{
chetan lokebc59ba32011-08-25 10:43:30 +00001025 struct tpacket_kbdq_core *pkc;
1026 struct tpacket_block_desc *pbd;
chetan lokef6fb8f102011-08-19 10:18:16 +00001027 char *curr, *end;
1028
Joe Perchese3192692012-06-03 17:41:40 +00001029 pkc = GET_PBDQC_FROM_RB(&po->rx_ring);
chetan lokef6fb8f102011-08-19 10:18:16 +00001030 pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
1031
1032 /* Queue is frozen when user space is lagging behind */
1033 if (prb_queue_frozen(pkc)) {
1034 /*
1035 * Check if that last block which caused the queue to freeze,
1036 * is still in_use by user-space.
1037 */
1038 if (prb_curr_blk_in_use(pkc, pbd)) {
1039 /* Can't record this packet */
1040 return NULL;
1041 } else {
1042 /*
1043 * Ok, the block was released by user-space.
1044 * Now let's open that block.
1045 * opening a block also thaws the queue.
1046 * Thawing is a side effect.
1047 */
1048 prb_open_block(pkc, pbd);
1049 }
1050 }
1051
1052 smp_mb();
1053 curr = pkc->nxt_offset;
1054 pkc->skb = skb;
Joe Perchese3192692012-06-03 17:41:40 +00001055 end = (char *)pbd + pkc->kblk_size;
chetan lokef6fb8f102011-08-19 10:18:16 +00001056
1057 /* first try the current block */
1058 if (curr+TOTAL_PKT_LEN_INCL_ALIGN(len) < end) {
1059 prb_fill_curr_block(curr, pkc, pbd, len);
1060 return (void *)curr;
1061 }
1062
1063 /* Ok, close the current block */
1064 prb_retire_current_block(pkc, po, 0);
1065
1066 /* Now, try to dispatch the next block */
1067 curr = (char *)prb_dispatch_next_block(pkc, po);
1068 if (curr) {
1069 pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
1070 prb_fill_curr_block(curr, pkc, pbd, len);
1071 return (void *)curr;
1072 }
1073
1074 /*
1075 * No free blocks are available.user_space hasn't caught up yet.
1076 * Queue was just frozen and now this packet will get dropped.
1077 */
1078 return NULL;
1079}
1080
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001081static void *packet_current_rx_frame(struct packet_sock *po,
chetan lokef6fb8f102011-08-19 10:18:16 +00001082 struct sk_buff *skb,
1083 int status, unsigned int len)
1084{
1085 char *curr = NULL;
1086 switch (po->tp_version) {
1087 case TPACKET_V1:
1088 case TPACKET_V2:
1089 curr = packet_lookup_frame(po, &po->rx_ring,
1090 po->rx_ring.head, status);
1091 return curr;
1092 case TPACKET_V3:
1093 return __packet_lookup_frame_in_block(po, skb, status, len);
1094 default:
1095 WARN(1, "TPACKET version not supported\n");
1096 BUG();
Ying Xue99aa3472012-08-06 16:27:10 +00001097 return NULL;
chetan lokef6fb8f102011-08-19 10:18:16 +00001098 }
1099}
1100
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001101static void *prb_lookup_block(struct packet_sock *po,
chetan lokef6fb8f102011-08-19 10:18:16 +00001102 struct packet_ring_buffer *rb,
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001103 unsigned int idx,
chetan lokef6fb8f102011-08-19 10:18:16 +00001104 int status)
1105{
chetan lokebc59ba32011-08-25 10:43:30 +00001106 struct tpacket_kbdq_core *pkc = GET_PBDQC_FROM_RB(rb);
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001107 struct tpacket_block_desc *pbd = GET_PBLOCK_DESC(pkc, idx);
chetan lokef6fb8f102011-08-19 10:18:16 +00001108
1109 if (status != BLOCK_STATUS(pbd))
1110 return NULL;
1111 return pbd;
1112}
1113
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001114static int prb_previous_blk_num(struct packet_ring_buffer *rb)
chetan lokef6fb8f102011-08-19 10:18:16 +00001115{
1116 unsigned int prev;
1117 if (rb->prb_bdqc.kactive_blk_num)
1118 prev = rb->prb_bdqc.kactive_blk_num-1;
1119 else
1120 prev = rb->prb_bdqc.knum_blocks-1;
1121 return prev;
1122}
1123
1124/* Assumes caller has held the rx_queue.lock */
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001125static void *__prb_previous_block(struct packet_sock *po,
chetan lokef6fb8f102011-08-19 10:18:16 +00001126 struct packet_ring_buffer *rb,
1127 int status)
1128{
1129 unsigned int previous = prb_previous_blk_num(rb);
1130 return prb_lookup_block(po, rb, previous, status);
1131}
1132
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001133static void *packet_previous_rx_frame(struct packet_sock *po,
chetan lokef6fb8f102011-08-19 10:18:16 +00001134 struct packet_ring_buffer *rb,
1135 int status)
1136{
1137 if (po->tp_version <= TPACKET_V2)
1138 return packet_previous_frame(po, rb, status);
1139
1140 return __prb_previous_block(po, rb, status);
1141}
1142
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001143static void packet_increment_rx_head(struct packet_sock *po,
chetan lokef6fb8f102011-08-19 10:18:16 +00001144 struct packet_ring_buffer *rb)
1145{
1146 switch (po->tp_version) {
1147 case TPACKET_V1:
1148 case TPACKET_V2:
1149 return packet_increment_head(rb);
1150 case TPACKET_V3:
1151 default:
1152 WARN(1, "TPACKET version not supported.\n");
1153 BUG();
1154 return;
1155 }
1156}
1157
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001158static void *packet_previous_frame(struct packet_sock *po,
Johann Baudy69e3c752009-05-18 22:11:22 -07001159 struct packet_ring_buffer *rb,
1160 int status)
1161{
1162 unsigned int previous = rb->head ? rb->head - 1 : rb->frame_max;
1163 return packet_lookup_frame(po, rb, previous, status);
1164}
1165
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001166static void packet_increment_head(struct packet_ring_buffer *buff)
Johann Baudy69e3c752009-05-18 22:11:22 -07001167{
1168 buff->head = buff->head != buff->frame_max ? buff->head+1 : 0;
1169}
1170
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001171static bool packet_rcv_has_room(struct packet_sock *po, struct sk_buff *skb)
1172{
1173 struct sock *sk = &po->sk;
1174 bool has_room;
1175
1176 if (po->prot_hook.func != tpacket_rcv)
1177 return (atomic_read(&sk->sk_rmem_alloc) + skb->truesize)
1178 <= sk->sk_rcvbuf;
1179
1180 spin_lock(&sk->sk_receive_queue.lock);
1181 if (po->tp_version == TPACKET_V3)
1182 has_room = prb_lookup_block(po, &po->rx_ring,
1183 po->rx_ring.prb_bdqc.kactive_blk_num,
1184 TP_STATUS_KERNEL);
1185 else
1186 has_room = packet_lookup_frame(po, &po->rx_ring,
1187 po->rx_ring.head,
1188 TP_STATUS_KERNEL);
1189 spin_unlock(&sk->sk_receive_queue.lock);
1190
1191 return has_room;
1192}
1193
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194static void packet_sock_destruct(struct sock *sk)
1195{
Richard Cochraned85b562010-04-07 22:41:28 +00001196 skb_queue_purge(&sk->sk_error_queue);
1197
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001198 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
1199 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201 if (!sock_flag(sk, SOCK_DEAD)) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001202 pr_err("Attempt to release alive packet socket: %p\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 return;
1204 }
1205
Pavel Emelyanov17ab56a2007-11-10 21:38:48 -08001206 sk_refcnt_debug_dec(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207}
1208
David S. Millerdc99f602011-07-05 01:45:05 -07001209static int fanout_rr_next(struct packet_fanout *f, unsigned int num)
1210{
1211 int x = atomic_read(&f->rr_cur) + 1;
1212
1213 if (x >= num)
1214 x = 0;
1215
1216 return x;
1217}
1218
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001219static unsigned int fanout_demux_hash(struct packet_fanout *f,
1220 struct sk_buff *skb,
1221 unsigned int num)
David S. Millerdc99f602011-07-05 01:45:05 -07001222{
Daniel Borkmannf55d112e2013-08-28 22:13:10 +02001223 return reciprocal_divide(skb->rxhash, num);
David S. Millerdc99f602011-07-05 01:45:05 -07001224}
1225
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001226static unsigned int fanout_demux_lb(struct packet_fanout *f,
1227 struct sk_buff *skb,
1228 unsigned int num)
David S. Millerdc99f602011-07-05 01:45:05 -07001229{
1230 int cur, old;
1231
1232 cur = atomic_read(&f->rr_cur);
1233 while ((old = atomic_cmpxchg(&f->rr_cur, cur,
1234 fanout_rr_next(f, num))) != cur)
1235 cur = old;
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001236 return cur;
David S. Millerdc99f602011-07-05 01:45:05 -07001237}
1238
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001239static unsigned int fanout_demux_cpu(struct packet_fanout *f,
1240 struct sk_buff *skb,
1241 unsigned int num)
David S. Miller95ec3eb2011-07-06 01:56:38 -07001242{
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001243 return smp_processor_id() % num;
1244}
David S. Miller95ec3eb2011-07-06 01:56:38 -07001245
Daniel Borkmann5df0ddf2013-08-28 22:13:09 +02001246static unsigned int fanout_demux_rnd(struct packet_fanout *f,
1247 struct sk_buff *skb,
1248 unsigned int num)
1249{
1250 return reciprocal_divide(prandom_u32(), num);
1251}
1252
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001253static unsigned int fanout_demux_rollover(struct packet_fanout *f,
1254 struct sk_buff *skb,
1255 unsigned int idx, unsigned int skip,
1256 unsigned int num)
1257{
1258 unsigned int i, j;
1259
1260 i = j = min_t(int, f->next[idx], num - 1);
1261 do {
1262 if (i != skip && packet_rcv_has_room(pkt_sk(f->arr[i]), skb)) {
1263 if (i != j)
1264 f->next[idx] = i;
1265 return i;
1266 }
1267 if (++i == num)
1268 i = 0;
1269 } while (i != j);
1270
1271 return idx;
1272}
1273
1274static bool fanout_has_flag(struct packet_fanout *f, u16 flag)
1275{
1276 return f->flags & (flag >> 8);
David S. Miller95ec3eb2011-07-06 01:56:38 -07001277}
1278
David S. Miller95ec3eb2011-07-06 01:56:38 -07001279static int packet_rcv_fanout(struct sk_buff *skb, struct net_device *dev,
1280 struct packet_type *pt, struct net_device *orig_dev)
David S. Millerdc99f602011-07-05 01:45:05 -07001281{
1282 struct packet_fanout *f = pt->af_packet_priv;
1283 unsigned int num = f->num_members;
1284 struct packet_sock *po;
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001285 unsigned int idx;
David S. Millerdc99f602011-07-05 01:45:05 -07001286
1287 if (!net_eq(dev_net(dev), read_pnet(&f->net)) ||
1288 !num) {
1289 kfree_skb(skb);
1290 return 0;
1291 }
1292
David S. Miller95ec3eb2011-07-06 01:56:38 -07001293 switch (f->type) {
1294 case PACKET_FANOUT_HASH:
1295 default:
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001296 if (fanout_has_flag(f, PACKET_FANOUT_FLAG_DEFRAG)) {
Eric Dumazetbc416d92011-10-06 10:28:31 +00001297 skb = ip_check_defrag(skb, IP_DEFRAG_AF_PACKET);
David S. Miller95ec3eb2011-07-06 01:56:38 -07001298 if (!skb)
1299 return 0;
1300 }
Tom Herbert3958afa1b2013-12-15 22:12:06 -08001301 skb_get_hash(skb);
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001302 idx = fanout_demux_hash(f, skb, num);
David S. Miller95ec3eb2011-07-06 01:56:38 -07001303 break;
1304 case PACKET_FANOUT_LB:
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001305 idx = fanout_demux_lb(f, skb, num);
David S. Miller95ec3eb2011-07-06 01:56:38 -07001306 break;
1307 case PACKET_FANOUT_CPU:
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001308 idx = fanout_demux_cpu(f, skb, num);
1309 break;
Daniel Borkmann5df0ddf2013-08-28 22:13:09 +02001310 case PACKET_FANOUT_RND:
1311 idx = fanout_demux_rnd(f, skb, num);
1312 break;
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001313 case PACKET_FANOUT_ROLLOVER:
1314 idx = fanout_demux_rollover(f, skb, 0, (unsigned int) -1, num);
David S. Miller95ec3eb2011-07-06 01:56:38 -07001315 break;
David S. Miller7736d332011-07-05 01:43:20 -07001316 }
1317
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001318 po = pkt_sk(f->arr[idx]);
1319 if (fanout_has_flag(f, PACKET_FANOUT_FLAG_ROLLOVER) &&
1320 unlikely(!packet_rcv_has_room(po, skb))) {
1321 idx = fanout_demux_rollover(f, skb, idx, idx, num);
1322 po = pkt_sk(f->arr[idx]);
1323 }
David S. Millerdc99f602011-07-05 01:45:05 -07001324
1325 return po->prot_hook.func(skb, dev, &po->prot_hook, orig_dev);
1326}
1327
Pavel Emelyanovfff33212012-08-16 05:36:48 +00001328DEFINE_MUTEX(fanout_mutex);
1329EXPORT_SYMBOL_GPL(fanout_mutex);
David S. Millerdc99f602011-07-05 01:45:05 -07001330static LIST_HEAD(fanout_list);
1331
1332static void __fanout_link(struct sock *sk, struct packet_sock *po)
1333{
1334 struct packet_fanout *f = po->fanout;
1335
1336 spin_lock(&f->lock);
1337 f->arr[f->num_members] = sk;
1338 smp_wmb();
1339 f->num_members++;
1340 spin_unlock(&f->lock);
1341}
1342
1343static void __fanout_unlink(struct sock *sk, struct packet_sock *po)
1344{
1345 struct packet_fanout *f = po->fanout;
1346 int i;
1347
1348 spin_lock(&f->lock);
1349 for (i = 0; i < f->num_members; i++) {
1350 if (f->arr[i] == sk)
1351 break;
1352 }
1353 BUG_ON(i >= f->num_members);
1354 f->arr[i] = f->arr[f->num_members - 1];
1355 f->num_members--;
1356 spin_unlock(&f->lock);
1357}
1358
Weilong Chend4dd8ae2013-12-23 11:31:38 +08001359static bool match_fanout_group(struct packet_type *ptype, struct sock *sk)
Eric Leblondc0de08d2012-08-16 22:02:58 +00001360{
Weilong Chend4dd8ae2013-12-23 11:31:38 +08001361 if (ptype->af_packet_priv == (void *)((struct packet_sock *)sk)->fanout)
Eric Leblondc0de08d2012-08-16 22:02:58 +00001362 return true;
1363
1364 return false;
1365}
1366
David S. Miller7736d332011-07-05 01:43:20 -07001367static int fanout_add(struct sock *sk, u16 id, u16 type_flags)
David S. Millerdc99f602011-07-05 01:45:05 -07001368{
1369 struct packet_sock *po = pkt_sk(sk);
1370 struct packet_fanout *f, *match;
David S. Miller7736d332011-07-05 01:43:20 -07001371 u8 type = type_flags & 0xff;
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001372 u8 flags = type_flags >> 8;
David S. Millerdc99f602011-07-05 01:45:05 -07001373 int err;
1374
1375 switch (type) {
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001376 case PACKET_FANOUT_ROLLOVER:
1377 if (type_flags & PACKET_FANOUT_FLAG_ROLLOVER)
1378 return -EINVAL;
David S. Millerdc99f602011-07-05 01:45:05 -07001379 case PACKET_FANOUT_HASH:
1380 case PACKET_FANOUT_LB:
David S. Miller95ec3eb2011-07-06 01:56:38 -07001381 case PACKET_FANOUT_CPU:
Daniel Borkmann5df0ddf2013-08-28 22:13:09 +02001382 case PACKET_FANOUT_RND:
David S. Millerdc99f602011-07-05 01:45:05 -07001383 break;
1384 default:
1385 return -EINVAL;
1386 }
1387
1388 if (!po->running)
1389 return -EINVAL;
1390
1391 if (po->fanout)
1392 return -EALREADY;
1393
1394 mutex_lock(&fanout_mutex);
1395 match = NULL;
1396 list_for_each_entry(f, &fanout_list, list) {
1397 if (f->id == id &&
1398 read_pnet(&f->net) == sock_net(sk)) {
1399 match = f;
1400 break;
1401 }
1402 }
Eric Dumazetafe62c62011-07-07 06:41:29 -07001403 err = -EINVAL;
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001404 if (match && match->flags != flags)
Eric Dumazetafe62c62011-07-07 06:41:29 -07001405 goto out;
David S. Millerdc99f602011-07-05 01:45:05 -07001406 if (!match) {
Eric Dumazetafe62c62011-07-07 06:41:29 -07001407 err = -ENOMEM;
David S. Millerdc99f602011-07-05 01:45:05 -07001408 match = kzalloc(sizeof(*match), GFP_KERNEL);
Eric Dumazetafe62c62011-07-07 06:41:29 -07001409 if (!match)
1410 goto out;
1411 write_pnet(&match->net, sock_net(sk));
1412 match->id = id;
1413 match->type = type;
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00001414 match->flags = flags;
Eric Dumazetafe62c62011-07-07 06:41:29 -07001415 atomic_set(&match->rr_cur, 0);
1416 INIT_LIST_HEAD(&match->list);
1417 spin_lock_init(&match->lock);
1418 atomic_set(&match->sk_ref, 0);
1419 match->prot_hook.type = po->prot_hook.type;
1420 match->prot_hook.dev = po->prot_hook.dev;
1421 match->prot_hook.func = packet_rcv_fanout;
1422 match->prot_hook.af_packet_priv = match;
Eric Leblondc0de08d2012-08-16 22:02:58 +00001423 match->prot_hook.id_match = match_fanout_group;
Eric Dumazetafe62c62011-07-07 06:41:29 -07001424 dev_add_pack(&match->prot_hook);
1425 list_add(&match->list, &fanout_list);
1426 }
1427 err = -EINVAL;
1428 if (match->type == type &&
1429 match->prot_hook.type == po->prot_hook.type &&
1430 match->prot_hook.dev == po->prot_hook.dev) {
1431 err = -ENOSPC;
1432 if (atomic_read(&match->sk_ref) < PACKET_FANOUT_MAX) {
1433 __dev_remove_pack(&po->prot_hook);
1434 po->fanout = match;
1435 atomic_inc(&match->sk_ref);
1436 __fanout_link(sk, po);
1437 err = 0;
David S. Millerdc99f602011-07-05 01:45:05 -07001438 }
1439 }
Eric Dumazetafe62c62011-07-07 06:41:29 -07001440out:
David S. Millerdc99f602011-07-05 01:45:05 -07001441 mutex_unlock(&fanout_mutex);
1442 return err;
1443}
1444
1445static void fanout_release(struct sock *sk)
1446{
1447 struct packet_sock *po = pkt_sk(sk);
1448 struct packet_fanout *f;
1449
1450 f = po->fanout;
1451 if (!f)
1452 return;
1453
Pavel Emelyanovfff33212012-08-16 05:36:48 +00001454 mutex_lock(&fanout_mutex);
David S. Millerdc99f602011-07-05 01:45:05 -07001455 po->fanout = NULL;
1456
David S. Millerdc99f602011-07-05 01:45:05 -07001457 if (atomic_dec_and_test(&f->sk_ref)) {
1458 list_del(&f->list);
1459 dev_remove_pack(&f->prot_hook);
1460 kfree(f);
1461 }
1462 mutex_unlock(&fanout_mutex);
1463}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08001465static const struct proto_ops packet_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08001467static const struct proto_ops packet_ops_spkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001469static int packet_rcv_spkt(struct sk_buff *skb, struct net_device *dev,
1470 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471{
1472 struct sock *sk;
1473 struct sockaddr_pkt *spkt;
1474
1475 /*
1476 * When we registered the protocol we saved the socket in the data
1477 * field for just this event.
1478 */
1479
1480 sk = pt->af_packet_priv;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 /*
1483 * Yank back the headers [hope the device set this
1484 * right or kerboom...]
1485 *
1486 * Incoming packets have ll header pulled,
1487 * push it back.
1488 *
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001489 * For outgoing ones skb->data == skb_mac_header(skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 * so that this procedure is noop.
1491 */
1492
1493 if (skb->pkt_type == PACKET_LOOPBACK)
1494 goto out;
1495
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001496 if (!net_eq(dev_net(dev), sock_net(sk)))
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08001497 goto out;
1498
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001499 skb = skb_share_check(skb, GFP_ATOMIC);
1500 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 goto oom;
1502
1503 /* drop any routing info */
Eric Dumazetadf30902009-06-02 05:19:30 +00001504 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Phil Oester84531c22005-07-12 11:57:52 -07001506 /* drop conntrack reference */
1507 nf_reset(skb);
1508
Herbert Xuffbc6112007-02-04 23:33:10 -08001509 spkt = &PACKET_SKB_CB(skb)->sa.pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001511 skb_push(skb, skb->data - skb_mac_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
1513 /*
1514 * The SOCK_PACKET socket receives _all_ frames.
1515 */
1516
1517 spkt->spkt_family = dev->type;
1518 strlcpy(spkt->spkt_device, dev->name, sizeof(spkt->spkt_device));
1519 spkt->spkt_protocol = skb->protocol;
1520
1521 /*
1522 * Charge the memory to the socket. This is done specifically
1523 * to prevent sockets using all the memory up.
1524 */
1525
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001526 if (sock_queue_rcv_skb(sk, skb) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 return 0;
1528
1529out:
1530 kfree_skb(skb);
1531oom:
1532 return 0;
1533}
1534
1535
1536/*
1537 * Output a raw packet to a device layer. This bypasses all the other
1538 * protocol layers and you must therefore supply it with a complete frame
1539 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001540
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541static int packet_sendmsg_spkt(struct kiocb *iocb, struct socket *sock,
1542 struct msghdr *msg, size_t len)
1543{
1544 struct sock *sk = sock->sk;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001545 struct sockaddr_pkt *saddr = (struct sockaddr_pkt *)msg->msg_name;
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001546 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 struct net_device *dev;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001548 __be16 proto = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 int err;
Ben Greear3bdc0eb2012-02-11 15:39:30 +00001550 int extra_len = 0;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001553 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 */
1555
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001556 if (saddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 if (msg->msg_namelen < sizeof(struct sockaddr))
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001558 return -EINVAL;
1559 if (msg->msg_namelen == sizeof(struct sockaddr_pkt))
1560 proto = saddr->spkt_protocol;
1561 } else
1562 return -ENOTCONN; /* SOCK_PACKET must be sent giving an address */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
1564 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001565 * Find the device first to size check it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 */
1567
danborkmann@iogearbox.netde74e922012-06-10 08:59:28 +00001568 saddr->spkt_device[sizeof(saddr->spkt_device) - 1] = 0;
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001569retry:
Eric Dumazet654d1f82009-11-02 10:43:32 +01001570 rcu_read_lock();
1571 dev = dev_get_by_name_rcu(sock_net(sk), saddr->spkt_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 err = -ENODEV;
1573 if (dev == NULL)
1574 goto out_unlock;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001575
David S. Millerd5e76b02007-01-25 19:30:36 -08001576 err = -ENETDOWN;
1577 if (!(dev->flags & IFF_UP))
1578 goto out_unlock;
1579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 /*
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001581 * You may not queue a frame bigger than the mtu. This is the lowest level
1582 * raw protocol and you must do your own fragmentation at this level.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001584
Ben Greear3bdc0eb2012-02-11 15:39:30 +00001585 if (unlikely(sock_flag(sk, SOCK_NOFCS))) {
1586 if (!netif_supports_nofcs(dev)) {
1587 err = -EPROTONOSUPPORT;
1588 goto out_unlock;
1589 }
1590 extra_len = 4; /* We're doing our own CRC */
1591 }
1592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 err = -EMSGSIZE;
Ben Greear3bdc0eb2012-02-11 15:39:30 +00001594 if (len > dev->mtu + dev->hard_header_len + VLAN_HLEN + extra_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 goto out_unlock;
1596
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001597 if (!skb) {
1598 size_t reserved = LL_RESERVED_SPACE(dev);
Herbert Xu4ce40912011-11-18 02:20:05 +00001599 int tlen = dev->needed_tailroom;
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001600 unsigned int hhlen = dev->header_ops ? dev->hard_header_len : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001602 rcu_read_unlock();
Herbert Xu4ce40912011-11-18 02:20:05 +00001603 skb = sock_wmalloc(sk, len + reserved + tlen, 0, GFP_KERNEL);
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001604 if (skb == NULL)
1605 return -ENOBUFS;
1606 /* FIXME: Save some space for broken drivers that write a hard
1607 * header at transmission time by themselves. PPP is the notable
1608 * one here. This should really be fixed at the driver level.
1609 */
1610 skb_reserve(skb, reserved);
1611 skb_reset_network_header(skb);
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001612
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001613 /* Try to align data part correctly */
1614 if (hhlen) {
1615 skb->data -= hhlen;
1616 skb->tail -= hhlen;
1617 if (len < hhlen)
1618 skb_reset_network_header(skb);
1619 }
1620 err = memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len);
1621 if (err)
1622 goto out_free;
1623 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 }
1625
Ben Greear3bdc0eb2012-02-11 15:39:30 +00001626 if (len > (dev->mtu + dev->hard_header_len + extra_len)) {
Ben Greear57f89bf2011-02-11 09:35:18 +00001627 /* Earlier code assumed this would be a VLAN pkt,
1628 * double-check this now that we have the actual
1629 * packet in hand.
1630 */
1631 struct ethhdr *ehdr;
1632 skb_reset_mac_header(skb);
1633 ehdr = eth_hdr(skb);
1634 if (ehdr->h_proto != htons(ETH_P_8021Q)) {
1635 err = -EMSGSIZE;
1636 goto out_unlock;
1637 }
1638 }
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 skb->protocol = proto;
1641 skb->dev = dev;
1642 skb->priority = sk->sk_priority;
Eric Dumazet2d37a182009-10-01 19:14:46 +00001643 skb->mark = sk->sk_mark;
Daniel Borkmannbf84a012013-04-14 08:08:13 +00001644
1645 sock_tx_timestamp(sk, &skb_shinfo(skb)->tx_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Ben Greear3bdc0eb2012-02-11 15:39:30 +00001647 if (unlikely(extra_len == 4))
1648 skb->no_fcs = 1;
1649
Jason Wang40893fd2013-03-26 23:11:22 +00001650 skb_probe_transport_header(skb, 0);
Jason Wangc1aad272013-03-25 20:19:57 +00001651
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 dev_queue_xmit(skb);
Eric Dumazet654d1f82009-11-02 10:43:32 +01001653 rcu_read_unlock();
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001654 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656out_unlock:
Eric Dumazet654d1f82009-11-02 10:43:32 +01001657 rcu_read_unlock();
Eric Dumazet1a35ca82009-12-15 05:47:03 +00001658out_free:
1659 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 return err;
1661}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Olof Johanssoneea49cc92011-11-02 11:00:49 +00001663static unsigned int run_filter(const struct sk_buff *skb,
Eric Dumazet62ab0812010-12-06 20:50:09 +00001664 const struct sock *sk,
David S. Millerdbcb5852007-01-24 15:21:02 -08001665 unsigned int res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666{
1667 struct sk_filter *filter;
1668
Eric Dumazet80f8f102011-01-18 07:46:52 +00001669 rcu_read_lock();
1670 filter = rcu_dereference(sk->sk_filter);
David S. Millerdbcb5852007-01-24 15:21:02 -08001671 if (filter != NULL)
Eric Dumazet0a148422011-04-20 09:27:32 +00001672 res = SK_RUN_FILTER(filter, skb);
Eric Dumazet80f8f102011-01-18 07:46:52 +00001673 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
David S. Millerdbcb5852007-01-24 15:21:02 -08001675 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676}
1677
1678/*
Eric Dumazet62ab0812010-12-06 20:50:09 +00001679 * This function makes lazy skb cloning in hope that most of packets
1680 * are discarded by BPF.
1681 *
1682 * Note tricky part: we DO mangle shared skb! skb->data, skb->len
1683 * and skb->cb are mangled. It works because (and until) packets
1684 * falling here are owned by current CPU. Output packets are cloned
1685 * by dev_queue_xmit_nit(), input packets are processed by net_bh
1686 * sequencially, so that if we return skb to original state on exit,
1687 * we will not harm anyone.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 */
1689
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001690static int packet_rcv(struct sk_buff *skb, struct net_device *dev,
1691 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692{
1693 struct sock *sk;
1694 struct sockaddr_ll *sll;
1695 struct packet_sock *po;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001696 u8 *skb_head = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 int skb_len = skb->len;
David S. Millerdbcb5852007-01-24 15:21:02 -08001698 unsigned int snaplen, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
1700 if (skb->pkt_type == PACKET_LOOPBACK)
1701 goto drop;
1702
1703 sk = pt->af_packet_priv;
1704 po = pkt_sk(sk);
1705
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001706 if (!net_eq(dev_net(dev), sock_net(sk)))
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08001707 goto drop;
1708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 skb->dev = dev;
1710
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -07001711 if (dev->header_ops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 /* The device has an explicit notion of ll header,
Eric Dumazet62ab0812010-12-06 20:50:09 +00001713 * exported to higher levels.
1714 *
1715 * Otherwise, the device hides details of its frame
1716 * structure, so that corresponding packet head is
1717 * never delivered to user.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 */
1719 if (sk->sk_type != SOCK_DGRAM)
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001720 skb_push(skb, skb->data - skb_mac_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 else if (skb->pkt_type == PACKET_OUTGOING) {
1722 /* Special case: outgoing packets have ll header at head */
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001723 skb_pull(skb, skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 }
1725 }
1726
1727 snaplen = skb->len;
1728
David S. Millerdbcb5852007-01-24 15:21:02 -08001729 res = run_filter(skb, sk, snaplen);
1730 if (!res)
Dmitry Mishinfda9ef52006-08-31 15:28:39 -07001731 goto drop_n_restore;
David S. Millerdbcb5852007-01-24 15:21:02 -08001732 if (snaplen > res)
1733 snaplen = res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Eric Dumazet0fd7bac2011-12-21 07:11:44 +00001735 if (atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 goto drop_n_acct;
1737
1738 if (skb_shared(skb)) {
1739 struct sk_buff *nskb = skb_clone(skb, GFP_ATOMIC);
1740 if (nskb == NULL)
1741 goto drop_n_acct;
1742
1743 if (skb_head != skb->data) {
1744 skb->data = skb_head;
1745 skb->len = skb_len;
1746 }
Eric Dumazetabc4e4f2012-04-19 02:24:42 +00001747 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 skb = nskb;
1749 }
1750
Herbert Xuffbc6112007-02-04 23:33:10 -08001751 BUILD_BUG_ON(sizeof(*PACKET_SKB_CB(skb)) + MAX_ADDR_LEN - 8 >
1752 sizeof(skb->cb));
1753
1754 sll = &PACKET_SKB_CB(skb)->sa.ll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 sll->sll_family = AF_PACKET;
1756 sll->sll_hatype = dev->type;
1757 sll->sll_protocol = skb->protocol;
1758 sll->sll_pkttype = skb->pkt_type;
Peter P Waskiewicz Jr8032b462007-11-10 22:03:25 -08001759 if (unlikely(po->origdev))
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07001760 sll->sll_ifindex = orig_dev->ifindex;
1761 else
1762 sll->sll_ifindex = dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Stephen Hemmingerb95cce32007-09-26 22:13:38 -07001764 sll->sll_halen = dev_parse_header(skb, sll->sll_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Herbert Xuffbc6112007-02-04 23:33:10 -08001766 PACKET_SKB_CB(skb)->origlen = skb->len;
Herbert Xu8dc41942007-02-04 23:31:32 -08001767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 if (pskb_trim(skb, snaplen))
1769 goto drop_n_acct;
1770
1771 skb_set_owner_r(skb, sk);
1772 skb->dev = NULL;
Eric Dumazetadf30902009-06-02 05:19:30 +00001773 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
Phil Oester84531c22005-07-12 11:57:52 -07001775 /* drop conntrack reference */
1776 nf_reset(skb);
1777
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 spin_lock(&sk->sk_receive_queue.lock);
Daniel Borkmannee80fbf2013-04-19 06:12:29 +00001779 po->stats.stats1.tp_packets++;
Neil Horman3b885782009-10-12 13:26:31 -07001780 skb->dropcount = atomic_read(&sk->sk_drops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 __skb_queue_tail(&sk->sk_receive_queue, skb);
1782 spin_unlock(&sk->sk_receive_queue.lock);
1783 sk->sk_data_ready(sk, skb->len);
1784 return 0;
1785
1786drop_n_acct:
Willem de Bruijn7091fbd2011-09-30 10:38:28 +00001787 spin_lock(&sk->sk_receive_queue.lock);
Daniel Borkmannee80fbf2013-04-19 06:12:29 +00001788 po->stats.stats1.tp_drops++;
Willem de Bruijn7091fbd2011-09-30 10:38:28 +00001789 atomic_inc(&sk->sk_drops);
1790 spin_unlock(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
1792drop_n_restore:
1793 if (skb_head != skb->data && skb_shared(skb)) {
1794 skb->data = skb_head;
1795 skb->len = skb_len;
1796 }
1797drop:
Neil Hormanead2ceb2009-03-11 09:49:55 +00001798 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 return 0;
1800}
1801
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001802static int tpacket_rcv(struct sk_buff *skb, struct net_device *dev,
1803 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804{
1805 struct sock *sk;
1806 struct packet_sock *po;
1807 struct sockaddr_ll *sll;
Daniel Borkmann184f4892013-04-16 01:57:46 +00001808 union tpacket_uhdr h;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001809 u8 *skb_head = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 int skb_len = skb->len;
David S. Millerdbcb5852007-01-24 15:21:02 -08001811 unsigned int snaplen, res;
chetan lokef6fb8f102011-08-19 10:18:16 +00001812 unsigned long status = TP_STATUS_USER;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001813 unsigned short macoff, netoff, hdrlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 struct sk_buff *copy_skb = NULL;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001815 struct timespec ts;
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +00001816 __u32 ts_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Atzm Watanabe51846352013-12-17 22:53:32 +09001818 /* struct tpacket{2,3}_hdr is aligned to a multiple of TPACKET_ALIGNMENT.
1819 * We may add members to them until current aligned size without forcing
1820 * userspace to call getsockopt(..., PACKET_HDRLEN, ...).
1821 */
1822 BUILD_BUG_ON(TPACKET_ALIGN(sizeof(*h.h2)) != 32);
1823 BUILD_BUG_ON(TPACKET_ALIGN(sizeof(*h.h3)) != 48);
1824
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 if (skb->pkt_type == PACKET_LOOPBACK)
1826 goto drop;
1827
1828 sk = pt->af_packet_priv;
1829 po = pkt_sk(sk);
1830
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001831 if (!net_eq(dev_net(dev), sock_net(sk)))
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08001832 goto drop;
1833
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -07001834 if (dev->header_ops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 if (sk->sk_type != SOCK_DGRAM)
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001836 skb_push(skb, skb->data - skb_mac_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 else if (skb->pkt_type == PACKET_OUTGOING) {
1838 /* Special case: outgoing packets have ll header at head */
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001839 skb_pull(skb, skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 }
1841 }
1842
Herbert Xu8dc41942007-02-04 23:31:32 -08001843 if (skb->ip_summed == CHECKSUM_PARTIAL)
1844 status |= TP_STATUS_CSUMNOTREADY;
1845
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 snaplen = skb->len;
1847
David S. Millerdbcb5852007-01-24 15:21:02 -08001848 res = run_filter(skb, sk, snaplen);
1849 if (!res)
Dmitry Mishinfda9ef52006-08-31 15:28:39 -07001850 goto drop_n_restore;
David S. Millerdbcb5852007-01-24 15:21:02 -08001851 if (snaplen > res)
1852 snaplen = res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
1854 if (sk->sk_type == SOCK_DGRAM) {
Patrick McHardy8913336a2008-07-18 18:05:19 -07001855 macoff = netoff = TPACKET_ALIGN(po->tp_hdrlen) + 16 +
1856 po->tp_reserve;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 } else {
Eric Dumazet95c96172012-04-15 05:58:06 +00001858 unsigned int maclen = skb_network_offset(skb);
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001859 netoff = TPACKET_ALIGN(po->tp_hdrlen +
Patrick McHardy8913336a2008-07-18 18:05:19 -07001860 (maclen < 16 ? 16 : maclen)) +
1861 po->tp_reserve;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 macoff = netoff - maclen;
1863 }
chetan lokef6fb8f102011-08-19 10:18:16 +00001864 if (po->tp_version <= TPACKET_V2) {
1865 if (macoff + snaplen > po->rx_ring.frame_size) {
1866 if (po->copy_thresh &&
Eric Dumazet0fd7bac2011-12-21 07:11:44 +00001867 atomic_read(&sk->sk_rmem_alloc) < sk->sk_rcvbuf) {
chetan lokef6fb8f102011-08-19 10:18:16 +00001868 if (skb_shared(skb)) {
1869 copy_skb = skb_clone(skb, GFP_ATOMIC);
1870 } else {
1871 copy_skb = skb_get(skb);
1872 skb_head = skb->data;
1873 }
1874 if (copy_skb)
1875 skb_set_owner_r(copy_skb, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 }
chetan lokef6fb8f102011-08-19 10:18:16 +00001877 snaplen = po->rx_ring.frame_size - macoff;
1878 if ((int)snaplen < 0)
1879 snaplen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 spin_lock(&sk->sk_receive_queue.lock);
chetan lokef6fb8f102011-08-19 10:18:16 +00001883 h.raw = packet_current_rx_frame(po, skb,
1884 TP_STATUS_KERNEL, (macoff+snaplen));
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001885 if (!h.raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 goto ring_is_full;
chetan lokef6fb8f102011-08-19 10:18:16 +00001887 if (po->tp_version <= TPACKET_V2) {
1888 packet_increment_rx_head(po, &po->rx_ring);
1889 /*
1890 * LOSING will be reported till you read the stats,
1891 * because it's COR - Clear On Read.
1892 * Anyways, moving it for V1/V2 only as V3 doesn't need this
1893 * at packet level.
1894 */
Daniel Borkmannee80fbf2013-04-19 06:12:29 +00001895 if (po->stats.stats1.tp_drops)
chetan lokef6fb8f102011-08-19 10:18:16 +00001896 status |= TP_STATUS_LOSING;
1897 }
Daniel Borkmannee80fbf2013-04-19 06:12:29 +00001898 po->stats.stats1.tp_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 if (copy_skb) {
1900 status |= TP_STATUS_COPY;
1901 __skb_queue_tail(&sk->sk_receive_queue, copy_skb);
1902 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 spin_unlock(&sk->sk_receive_queue.lock);
1904
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001905 skb_copy_bits(skb, 0, h.raw + macoff, snaplen);
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +00001906
1907 if (!(ts_status = tpacket_get_timestamp(skb, &ts, po->tp_tstamp)))
Daniel Borkmann7a513842013-04-23 00:39:29 +00001908 getnstimeofday(&ts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +00001910 status |= ts_status;
1911
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001912 switch (po->tp_version) {
1913 case TPACKET_V1:
1914 h.h1->tp_len = skb->len;
1915 h.h1->tp_snaplen = snaplen;
1916 h.h1->tp_mac = macoff;
1917 h.h1->tp_net = netoff;
Daniel Borkmann4b457bd2013-04-16 01:29:11 +00001918 h.h1->tp_sec = ts.tv_sec;
1919 h.h1->tp_usec = ts.tv_nsec / NSEC_PER_USEC;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001920 hdrlen = sizeof(*h.h1);
1921 break;
1922 case TPACKET_V2:
1923 h.h2->tp_len = skb->len;
1924 h.h2->tp_snaplen = snaplen;
1925 h.h2->tp_mac = macoff;
1926 h.h2->tp_net = netoff;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001927 h.h2->tp_sec = ts.tv_sec;
1928 h.h2->tp_nsec = ts.tv_nsec;
Ben Greeara3bcc232011-06-01 06:49:10 +00001929 if (vlan_tx_tag_present(skb)) {
1930 h.h2->tp_vlan_tci = vlan_tx_tag_get(skb);
Atzm Watanabea0cdfcf2013-12-17 22:53:40 +09001931 h.h2->tp_vlan_tpid = ntohs(skb->vlan_proto);
1932 status |= TP_STATUS_VLAN_VALID | TP_STATUS_VLAN_TPID_VALID;
Ben Greeara3bcc232011-06-01 06:49:10 +00001933 } else {
1934 h.h2->tp_vlan_tci = 0;
Atzm Watanabea0cdfcf2013-12-17 22:53:40 +09001935 h.h2->tp_vlan_tpid = 0;
Ben Greeara3bcc232011-06-01 06:49:10 +00001936 }
Atzm Watanabee4d26f42013-12-17 22:53:36 +09001937 memset(h.h2->tp_padding, 0, sizeof(h.h2->tp_padding));
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001938 hdrlen = sizeof(*h.h2);
1939 break;
chetan lokef6fb8f102011-08-19 10:18:16 +00001940 case TPACKET_V3:
1941 /* tp_nxt_offset,vlan are already populated above.
1942 * So DONT clear those fields here
1943 */
1944 h.h3->tp_status |= status;
1945 h.h3->tp_len = skb->len;
1946 h.h3->tp_snaplen = snaplen;
1947 h.h3->tp_mac = macoff;
1948 h.h3->tp_net = netoff;
chetan lokef6fb8f102011-08-19 10:18:16 +00001949 h.h3->tp_sec = ts.tv_sec;
1950 h.h3->tp_nsec = ts.tv_nsec;
Atzm Watanabee4d26f42013-12-17 22:53:36 +09001951 memset(h.h3->tp_padding, 0, sizeof(h.h3->tp_padding));
chetan lokef6fb8f102011-08-19 10:18:16 +00001952 hdrlen = sizeof(*h.h3);
1953 break;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001954 default:
1955 BUG();
1956 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001958 sll = h.raw + TPACKET_ALIGN(hdrlen);
Stephen Hemmingerb95cce32007-09-26 22:13:38 -07001959 sll->sll_halen = dev_parse_header(skb, sll->sll_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 sll->sll_family = AF_PACKET;
1961 sll->sll_hatype = dev->type;
1962 sll->sll_protocol = skb->protocol;
1963 sll->sll_pkttype = skb->pkt_type;
Peter P Waskiewicz Jr8032b462007-11-10 22:03:25 -08001964 if (unlikely(po->origdev))
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07001965 sll->sll_ifindex = orig_dev->ifindex;
1966 else
1967 sll->sll_ifindex = dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Ralf Baechlee16aa202006-12-07 00:11:33 -08001969 smp_mb();
Changli Gaof6dafa92010-12-07 04:26:16 +00001970#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 {
Changli Gao0af55bb2010-12-01 02:52:20 +00001972 u8 *start, *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
chetan lokef6fb8f102011-08-19 10:18:16 +00001974 if (po->tp_version <= TPACKET_V2) {
1975 end = (u8 *)PAGE_ALIGN((unsigned long)h.raw
1976 + macoff + snaplen);
1977 for (start = h.raw; start < end; start += PAGE_SIZE)
1978 flush_dcache_page(pgv_to_page(start));
1979 }
Chetan Lokecc9f01b2011-07-14 08:36:33 -07001980 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 }
Changli Gaof6dafa92010-12-07 04:26:16 +00001982#endif
chetan lokef6fb8f102011-08-19 10:18:16 +00001983 if (po->tp_version <= TPACKET_V2)
1984 __packet_set_status(po, h.raw, status);
1985 else
1986 prb_clear_blk_fill_status(&po->rx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
1988 sk->sk_data_ready(sk, 0);
1989
1990drop_n_restore:
1991 if (skb_head != skb->data && skb_shared(skb)) {
1992 skb->data = skb_head;
1993 skb->len = skb_len;
1994 }
1995drop:
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001996 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 return 0;
1998
1999ring_is_full:
Daniel Borkmannee80fbf2013-04-19 06:12:29 +00002000 po->stats.stats1.tp_drops++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 spin_unlock(&sk->sk_receive_queue.lock);
2002
2003 sk->sk_data_ready(sk, 0);
Wei Yongjunacb5d752009-02-25 00:36:42 +00002004 kfree_skb(copy_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 goto drop_n_restore;
2006}
2007
Johann Baudy69e3c752009-05-18 22:11:22 -07002008static void tpacket_destruct_skb(struct sk_buff *skb)
2009{
2010 struct packet_sock *po = pkt_sk(skb->sk);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002011 void *ph;
Johann Baudy69e3c752009-05-18 22:11:22 -07002012
Johann Baudy69e3c752009-05-18 22:11:22 -07002013 if (likely(po->tx_ring.pg_vec)) {
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +00002014 __u32 ts;
2015
Johann Baudy69e3c752009-05-18 22:11:22 -07002016 ph = skb_shinfo(skb)->destructor_arg;
Johann Baudy69e3c752009-05-18 22:11:22 -07002017 BUG_ON(atomic_read(&po->tx_ring.pending) == 0);
2018 atomic_dec(&po->tx_ring.pending);
Daniel Borkmannb9c32fb2013-04-23 00:39:31 +00002019
2020 ts = __packet_set_timestamp(po, ph, skb);
2021 __packet_set_status(po, ph, TP_STATUS_AVAILABLE | ts);
Johann Baudy69e3c752009-05-18 22:11:22 -07002022 }
2023
2024 sock_wfree(skb);
2025}
2026
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002027static int tpacket_fill_skb(struct packet_sock *po, struct sk_buff *skb,
2028 void *frame, struct net_device *dev, int size_max,
Herbert Xuae641942011-11-18 02:20:04 +00002029 __be16 proto, unsigned char *addr, int hlen)
Johann Baudy69e3c752009-05-18 22:11:22 -07002030{
Daniel Borkmann184f4892013-04-16 01:57:46 +00002031 union tpacket_uhdr ph;
David S. Miller09effa62013-08-07 17:11:00 -07002032 int to_write, offset, len, tp_len, nr_frags, len_max;
Johann Baudy69e3c752009-05-18 22:11:22 -07002033 struct socket *sock = po->sk.sk_socket;
2034 struct page *page;
2035 void *data;
2036 int err;
2037
2038 ph.raw = frame;
2039
2040 skb->protocol = proto;
2041 skb->dev = dev;
2042 skb->priority = po->sk.sk_priority;
Eric Dumazet2d37a182009-10-01 19:14:46 +00002043 skb->mark = po->sk.sk_mark;
Willem de Bruijn2e313962013-04-23 00:39:28 +00002044 sock_tx_timestamp(&po->sk, &skb_shinfo(skb)->tx_flags);
Johann Baudy69e3c752009-05-18 22:11:22 -07002045 skb_shinfo(skb)->destructor_arg = ph.raw;
2046
2047 switch (po->tp_version) {
2048 case TPACKET_V2:
2049 tp_len = ph.h2->tp_len;
2050 break;
2051 default:
2052 tp_len = ph.h1->tp_len;
2053 break;
2054 }
David S. Miller09effa62013-08-07 17:11:00 -07002055 if (unlikely(tp_len > size_max)) {
2056 pr_err("packet size is too long (%d > %d)\n", tp_len, size_max);
2057 return -EMSGSIZE;
2058 }
Johann Baudy69e3c752009-05-18 22:11:22 -07002059
Herbert Xuae641942011-11-18 02:20:04 +00002060 skb_reserve(skb, hlen);
Johann Baudy69e3c752009-05-18 22:11:22 -07002061 skb_reset_network_header(skb);
Jason Wangc1aad272013-03-25 20:19:57 +00002062
Daniel Borkmannd346a3f2013-12-06 11:36:17 +01002063 if (!packet_use_direct_xmit(po))
2064 skb_probe_transport_header(skb, 0);
2065 if (unlikely(po->tp_tx_has_off)) {
Paul Chavent5920cd3a2012-11-06 23:10:47 +00002066 int off_min, off_max, off;
2067 off_min = po->tp_hdrlen - sizeof(struct sockaddr_ll);
2068 off_max = po->tx_ring.frame_size - tp_len;
2069 if (sock->type == SOCK_DGRAM) {
2070 switch (po->tp_version) {
2071 case TPACKET_V2:
2072 off = ph.h2->tp_net;
2073 break;
2074 default:
2075 off = ph.h1->tp_net;
2076 break;
2077 }
2078 } else {
2079 switch (po->tp_version) {
2080 case TPACKET_V2:
2081 off = ph.h2->tp_mac;
2082 break;
2083 default:
2084 off = ph.h1->tp_mac;
2085 break;
2086 }
2087 }
2088 if (unlikely((off < off_min) || (off_max < off)))
2089 return -EINVAL;
2090 data = ph.raw + off;
2091 } else {
2092 data = ph.raw + po->tp_hdrlen - sizeof(struct sockaddr_ll);
2093 }
Johann Baudy69e3c752009-05-18 22:11:22 -07002094 to_write = tp_len;
2095
2096 if (sock->type == SOCK_DGRAM) {
2097 err = dev_hard_header(skb, dev, ntohs(proto), addr,
2098 NULL, tp_len);
2099 if (unlikely(err < 0))
2100 return -EINVAL;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002101 } else if (dev->hard_header_len) {
Johann Baudy69e3c752009-05-18 22:11:22 -07002102 /* net device doesn't like empty head */
2103 if (unlikely(tp_len <= dev->hard_header_len)) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002104 pr_err("packet size is too short (%d < %d)\n",
2105 tp_len, dev->hard_header_len);
Johann Baudy69e3c752009-05-18 22:11:22 -07002106 return -EINVAL;
2107 }
2108
2109 skb_push(skb, dev->hard_header_len);
2110 err = skb_store_bits(skb, 0, data,
2111 dev->hard_header_len);
2112 if (unlikely(err))
2113 return err;
2114
2115 data += dev->hard_header_len;
2116 to_write -= dev->hard_header_len;
2117 }
2118
Johann Baudy69e3c752009-05-18 22:11:22 -07002119 offset = offset_in_page(data);
2120 len_max = PAGE_SIZE - offset;
2121 len = ((to_write > len_max) ? len_max : to_write);
2122
2123 skb->data_len = to_write;
2124 skb->len += to_write;
2125 skb->truesize += to_write;
2126 atomic_add(to_write, &po->sk.sk_wmem_alloc);
2127
2128 while (likely(to_write)) {
2129 nr_frags = skb_shinfo(skb)->nr_frags;
2130
2131 if (unlikely(nr_frags >= MAX_SKB_FRAGS)) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002132 pr_err("Packet exceed the number of skb frags(%lu)\n",
2133 MAX_SKB_FRAGS);
Johann Baudy69e3c752009-05-18 22:11:22 -07002134 return -EFAULT;
2135 }
2136
Changli Gao0af55bb2010-12-01 02:52:20 +00002137 page = pgv_to_page(data);
2138 data += len;
Johann Baudy69e3c752009-05-18 22:11:22 -07002139 flush_dcache_page(page);
2140 get_page(page);
Changli Gao0af55bb2010-12-01 02:52:20 +00002141 skb_fill_page_desc(skb, nr_frags, page, offset, len);
Johann Baudy69e3c752009-05-18 22:11:22 -07002142 to_write -= len;
2143 offset = 0;
2144 len_max = PAGE_SIZE;
2145 len = ((to_write > len_max) ? len_max : to_write);
2146 }
2147
2148 return tp_len;
2149}
2150
2151static int tpacket_snd(struct packet_sock *po, struct msghdr *msg)
2152{
Johann Baudy69e3c752009-05-18 22:11:22 -07002153 struct sk_buff *skb;
2154 struct net_device *dev;
2155 __be16 proto;
David S. Miller09effa62013-08-07 17:11:00 -07002156 int err, reserve = 0;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002157 void *ph;
2158 struct sockaddr_ll *saddr = (struct sockaddr_ll *)msg->msg_name;
Daniel Borkmann87a2fd22014-01-15 16:25:35 +01002159 bool need_wait = !(msg->msg_flags & MSG_DONTWAIT);
Johann Baudy69e3c752009-05-18 22:11:22 -07002160 int tp_len, size_max;
2161 unsigned char *addr;
2162 int len_sum = 0;
danborkmann@iogearbox.net9e670302012-08-20 03:34:03 +00002163 int status = TP_STATUS_AVAILABLE;
Herbert Xuae641942011-11-18 02:20:04 +00002164 int hlen, tlen;
Johann Baudy69e3c752009-05-18 22:11:22 -07002165
Johann Baudy69e3c752009-05-18 22:11:22 -07002166 mutex_lock(&po->pg_vec_lock);
2167
Daniel Borkmann66e56cd2013-12-06 11:36:15 +01002168 if (likely(saddr == NULL)) {
Daniel Borkmanne40526c2013-11-21 16:50:58 +01002169 dev = packet_cached_dev_get(po);
Johann Baudy69e3c752009-05-18 22:11:22 -07002170 proto = po->num;
2171 addr = NULL;
2172 } else {
2173 err = -EINVAL;
2174 if (msg->msg_namelen < sizeof(struct sockaddr_ll))
2175 goto out;
2176 if (msg->msg_namelen < (saddr->sll_halen
2177 + offsetof(struct sockaddr_ll,
2178 sll_addr)))
2179 goto out;
Johann Baudy69e3c752009-05-18 22:11:22 -07002180 proto = saddr->sll_protocol;
2181 addr = saddr->sll_addr;
Ben Greear827d9782011-06-01 07:18:53 +00002182 dev = dev_get_by_index(sock_net(&po->sk), saddr->sll_ifindex);
Johann Baudy69e3c752009-05-18 22:11:22 -07002183 }
2184
Johann Baudy69e3c752009-05-18 22:11:22 -07002185 err = -ENXIO;
2186 if (unlikely(dev == NULL))
2187 goto out;
Johann Baudy69e3c752009-05-18 22:11:22 -07002188 err = -ENETDOWN;
2189 if (unlikely(!(dev->flags & IFF_UP)))
2190 goto out_put;
2191
Daniel Borkmanne40526c2013-11-21 16:50:58 +01002192 reserve = dev->hard_header_len;
2193
Johann Baudy69e3c752009-05-18 22:11:22 -07002194 size_max = po->tx_ring.frame_size
Gabor Gombasb5dd8842009-10-29 03:19:11 -07002195 - (po->tp_hdrlen - sizeof(struct sockaddr_ll));
Johann Baudy69e3c752009-05-18 22:11:22 -07002196
David S. Miller09effa62013-08-07 17:11:00 -07002197 if (size_max > dev->mtu + reserve)
2198 size_max = dev->mtu + reserve;
2199
Johann Baudy69e3c752009-05-18 22:11:22 -07002200 do {
2201 ph = packet_current_frame(po, &po->tx_ring,
Daniel Borkmann87a2fd22014-01-15 16:25:35 +01002202 TP_STATUS_SEND_REQUEST);
Johann Baudy69e3c752009-05-18 22:11:22 -07002203 if (unlikely(ph == NULL)) {
Daniel Borkmann87a2fd22014-01-15 16:25:35 +01002204 if (need_wait && need_resched())
2205 schedule();
Johann Baudy69e3c752009-05-18 22:11:22 -07002206 continue;
2207 }
2208
2209 status = TP_STATUS_SEND_REQUEST;
Herbert Xuae641942011-11-18 02:20:04 +00002210 hlen = LL_RESERVED_SPACE(dev);
2211 tlen = dev->needed_tailroom;
Johann Baudy69e3c752009-05-18 22:11:22 -07002212 skb = sock_alloc_send_skb(&po->sk,
Herbert Xuae641942011-11-18 02:20:04 +00002213 hlen + tlen + sizeof(struct sockaddr_ll),
Johann Baudy69e3c752009-05-18 22:11:22 -07002214 0, &err);
2215
2216 if (unlikely(skb == NULL))
2217 goto out_status;
2218
2219 tp_len = tpacket_fill_skb(po, skb, ph, dev, size_max, proto,
Herbert Xuae641942011-11-18 02:20:04 +00002220 addr, hlen);
Johann Baudy69e3c752009-05-18 22:11:22 -07002221
2222 if (unlikely(tp_len < 0)) {
2223 if (po->tp_loss) {
2224 __packet_set_status(po, ph,
2225 TP_STATUS_AVAILABLE);
2226 packet_increment_head(&po->tx_ring);
2227 kfree_skb(skb);
2228 continue;
2229 } else {
2230 status = TP_STATUS_WRONG_FORMAT;
2231 err = tp_len;
2232 goto out_status;
2233 }
2234 }
2235
Daniel Borkmannd346a3f2013-12-06 11:36:17 +01002236 skb_set_queue_mapping(skb, packet_pick_tx_queue(dev));
Johann Baudy69e3c752009-05-18 22:11:22 -07002237 skb->destructor = tpacket_destruct_skb;
2238 __packet_set_status(po, ph, TP_STATUS_SENDING);
2239 atomic_inc(&po->tx_ring.pending);
2240
2241 status = TP_STATUS_SEND_REQUEST;
Daniel Borkmannd346a3f2013-12-06 11:36:17 +01002242 err = po->xmit(skb);
Jarek Poplawskieb70df12010-01-10 22:04:19 +00002243 if (unlikely(err > 0)) {
2244 err = net_xmit_errno(err);
2245 if (err && __packet_get_status(po, ph) ==
2246 TP_STATUS_AVAILABLE) {
2247 /* skb was destructed already */
2248 skb = NULL;
2249 goto out_status;
2250 }
2251 /*
2252 * skb was dropped but not destructed yet;
2253 * let's treat it like congestion or err < 0
2254 */
2255 err = 0;
2256 }
Johann Baudy69e3c752009-05-18 22:11:22 -07002257 packet_increment_head(&po->tx_ring);
2258 len_sum += tp_len;
Daniel Borkmann87a2fd22014-01-15 16:25:35 +01002259 } while (likely((ph != NULL) || (need_wait &&
2260 atomic_read(&po->tx_ring.pending))));
Johann Baudy69e3c752009-05-18 22:11:22 -07002261
2262 err = len_sum;
2263 goto out_put;
2264
Johann Baudy69e3c752009-05-18 22:11:22 -07002265out_status:
2266 __packet_set_status(po, ph, status);
2267 kfree_skb(skb);
2268out_put:
Daniel Borkmanne40526c2013-11-21 16:50:58 +01002269 dev_put(dev);
Johann Baudy69e3c752009-05-18 22:11:22 -07002270out:
2271 mutex_unlock(&po->pg_vec_lock);
2272 return err;
2273}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Olof Johanssoneea49cc92011-11-02 11:00:49 +00002275static struct sk_buff *packet_alloc_skb(struct sock *sk, size_t prepad,
2276 size_t reserve, size_t len,
2277 size_t linear, int noblock,
2278 int *err)
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002279{
2280 struct sk_buff *skb;
2281
2282 /* Under a page? Don't bother with paged skb. */
2283 if (prepad + len < PAGE_SIZE || !linear)
2284 linear = len;
2285
2286 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
Eric Dumazet28d64272013-08-08 14:38:47 -07002287 err, 0);
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002288 if (!skb)
2289 return NULL;
2290
2291 skb_reserve(skb, reserve);
2292 skb_put(skb, linear);
2293 skb->data_len = len - linear;
2294 skb->len += len - linear;
2295
2296 return skb;
2297}
2298
Daniel Borkmannd346a3f2013-12-06 11:36:17 +01002299static int packet_snd(struct socket *sock, struct msghdr *msg, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300{
2301 struct sock *sk = sock->sk;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002302 struct sockaddr_ll *saddr = (struct sockaddr_ll *)msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 struct sk_buff *skb;
2304 struct net_device *dev;
Al Viro0e11c912006-11-08 00:26:29 -08002305 __be16 proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 unsigned char *addr;
Ben Greear827d9782011-06-01 07:18:53 +00002307 int err, reserve = 0;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002308 struct virtio_net_hdr vnet_hdr = { 0 };
2309 int offset = 0;
2310 int vnet_hdr_len;
2311 struct packet_sock *po = pkt_sk(sk);
2312 unsigned short gso_type = 0;
Herbert Xuae641942011-11-18 02:20:04 +00002313 int hlen, tlen;
Ben Greear3bdc0eb2012-02-11 15:39:30 +00002314 int extra_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
2316 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002317 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002319
Daniel Borkmann66e56cd2013-12-06 11:36:15 +01002320 if (likely(saddr == NULL)) {
Daniel Borkmanne40526c2013-11-21 16:50:58 +01002321 dev = packet_cached_dev_get(po);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 proto = po->num;
2323 addr = NULL;
2324 } else {
2325 err = -EINVAL;
2326 if (msg->msg_namelen < sizeof(struct sockaddr_ll))
2327 goto out;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07002328 if (msg->msg_namelen < (saddr->sll_halen + offsetof(struct sockaddr_ll, sll_addr)))
2329 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 proto = saddr->sll_protocol;
2331 addr = saddr->sll_addr;
Ben Greear827d9782011-06-01 07:18:53 +00002332 dev = dev_get_by_index(sock_net(sk), saddr->sll_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 }
2334
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 err = -ENXIO;
Daniel Borkmanne40526c2013-11-21 16:50:58 +01002336 if (unlikely(dev == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 goto out_unlock;
Daniel Borkmanne40526c2013-11-21 16:50:58 +01002338 err = -ENETDOWN;
2339 if (unlikely(!(dev->flags & IFF_UP)))
2340 goto out_unlock;
2341
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 if (sock->type == SOCK_RAW)
2343 reserve = dev->hard_header_len;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002344 if (po->has_vnet_hdr) {
2345 vnet_hdr_len = sizeof(vnet_hdr);
2346
2347 err = -EINVAL;
2348 if (len < vnet_hdr_len)
2349 goto out_unlock;
2350
2351 len -= vnet_hdr_len;
2352
2353 err = memcpy_fromiovec((void *)&vnet_hdr, msg->msg_iov,
2354 vnet_hdr_len);
2355 if (err < 0)
2356 goto out_unlock;
2357
2358 if ((vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
2359 (vnet_hdr.csum_start + vnet_hdr.csum_offset + 2 >
2360 vnet_hdr.hdr_len))
2361 vnet_hdr.hdr_len = vnet_hdr.csum_start +
2362 vnet_hdr.csum_offset + 2;
2363
2364 err = -EINVAL;
2365 if (vnet_hdr.hdr_len > len)
2366 goto out_unlock;
2367
2368 if (vnet_hdr.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
2369 switch (vnet_hdr.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
2370 case VIRTIO_NET_HDR_GSO_TCPV4:
2371 gso_type = SKB_GSO_TCPV4;
2372 break;
2373 case VIRTIO_NET_HDR_GSO_TCPV6:
2374 gso_type = SKB_GSO_TCPV6;
2375 break;
2376 case VIRTIO_NET_HDR_GSO_UDP:
2377 gso_type = SKB_GSO_UDP;
2378 break;
2379 default:
2380 goto out_unlock;
2381 }
2382
2383 if (vnet_hdr.gso_type & VIRTIO_NET_HDR_GSO_ECN)
2384 gso_type |= SKB_GSO_TCP_ECN;
2385
2386 if (vnet_hdr.gso_size == 0)
2387 goto out_unlock;
2388
2389 }
2390 }
2391
Ben Greear3bdc0eb2012-02-11 15:39:30 +00002392 if (unlikely(sock_flag(sk, SOCK_NOFCS))) {
2393 if (!netif_supports_nofcs(dev)) {
2394 err = -EPROTONOSUPPORT;
2395 goto out_unlock;
2396 }
2397 extra_len = 4; /* We're doing our own CRC */
2398 }
2399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 err = -EMSGSIZE;
Ben Greear3bdc0eb2012-02-11 15:39:30 +00002401 if (!gso_type && (len > dev->mtu + reserve + VLAN_HLEN + extra_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 goto out_unlock;
2403
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002404 err = -ENOBUFS;
Herbert Xuae641942011-11-18 02:20:04 +00002405 hlen = LL_RESERVED_SPACE(dev);
2406 tlen = dev->needed_tailroom;
2407 skb = packet_alloc_skb(sk, hlen + tlen, hlen, len, vnet_hdr.hdr_len,
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002408 msg->msg_flags & MSG_DONTWAIT, &err);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002409 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 goto out_unlock;
2411
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002412 skb_set_network_header(skb, reserve);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
Stephen Hemminger0c4e8582007-10-09 01:36:32 -07002414 err = -EINVAL;
2415 if (sock->type == SOCK_DGRAM &&
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002416 (offset = dev_hard_header(skb, dev, ntohs(proto), addr, NULL, len)) < 0)
Stephen Hemminger0c4e8582007-10-09 01:36:32 -07002417 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
2419 /* Returns -EFAULT on error */
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002420 err = skb_copy_datagram_from_iovec(skb, offset, msg->msg_iov, 0, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 if (err)
2422 goto out_free;
Daniel Borkmannbf84a012013-04-14 08:08:13 +00002423
2424 sock_tx_timestamp(sk, &skb_shinfo(skb)->tx_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
Ben Greear3bdc0eb2012-02-11 15:39:30 +00002426 if (!gso_type && (len > dev->mtu + reserve + extra_len)) {
David S. Miller09effa62013-08-07 17:11:00 -07002427 /* Earlier code assumed this would be a VLAN pkt,
2428 * double-check this now that we have the actual
2429 * packet in hand.
2430 */
2431 struct ethhdr *ehdr;
2432 skb_reset_mac_header(skb);
2433 ehdr = eth_hdr(skb);
2434 if (ehdr->h_proto != htons(ETH_P_8021Q)) {
2435 err = -EMSGSIZE;
2436 goto out_free;
2437 }
Ben Greear57f89bf2011-02-11 09:35:18 +00002438 }
2439
David S. Miller09effa62013-08-07 17:11:00 -07002440 skb->protocol = proto;
2441 skb->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 skb->priority = sk->sk_priority;
Eric Dumazet2d37a182009-10-01 19:14:46 +00002443 skb->mark = sk->sk_mark;
Daniel Borkmannd346a3f2013-12-06 11:36:17 +01002444 skb_set_queue_mapping(skb, packet_pick_tx_queue(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002446 if (po->has_vnet_hdr) {
2447 if (vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
2448 if (!skb_partial_csum_set(skb, vnet_hdr.csum_start,
2449 vnet_hdr.csum_offset)) {
2450 err = -EINVAL;
2451 goto out_free;
2452 }
2453 }
2454
2455 skb_shinfo(skb)->gso_size = vnet_hdr.gso_size;
2456 skb_shinfo(skb)->gso_type = gso_type;
2457
2458 /* Header must be checked, and gso_segs computed. */
2459 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
2460 skb_shinfo(skb)->gso_segs = 0;
2461
2462 len += vnet_hdr_len;
2463 }
2464
Daniel Borkmannd346a3f2013-12-06 11:36:17 +01002465 if (!packet_use_direct_xmit(po))
2466 skb_probe_transport_header(skb, reserve);
Ben Greear3bdc0eb2012-02-11 15:39:30 +00002467 if (unlikely(extra_len == 4))
2468 skb->no_fcs = 1;
2469
Daniel Borkmannd346a3f2013-12-06 11:36:17 +01002470 err = po->xmit(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 if (err > 0 && (err = net_xmit_errno(err)) != 0)
2472 goto out_unlock;
2473
Daniel Borkmanne40526c2013-11-21 16:50:58 +01002474 dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002476 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
2478out_free:
2479 kfree_skb(skb);
2480out_unlock:
Daniel Borkmanne40526c2013-11-21 16:50:58 +01002481 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 dev_put(dev);
2483out:
2484 return err;
2485}
2486
Johann Baudy69e3c752009-05-18 22:11:22 -07002487static int packet_sendmsg(struct kiocb *iocb, struct socket *sock,
2488 struct msghdr *msg, size_t len)
2489{
Johann Baudy69e3c752009-05-18 22:11:22 -07002490 struct sock *sk = sock->sk;
2491 struct packet_sock *po = pkt_sk(sk);
Daniel Borkmannd346a3f2013-12-06 11:36:17 +01002492
Johann Baudy69e3c752009-05-18 22:11:22 -07002493 if (po->tx_ring.pg_vec)
2494 return tpacket_snd(po, msg);
2495 else
Johann Baudy69e3c752009-05-18 22:11:22 -07002496 return packet_snd(sock, msg, len);
2497}
2498
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499/*
2500 * Close a PACKET socket. This is fairly simple. We immediately go
2501 * to 'closed' state and remove our protocol entry in the device list.
2502 */
2503
2504static int packet_release(struct socket *sock)
2505{
2506 struct sock *sk = sock->sk;
2507 struct packet_sock *po;
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08002508 struct net *net;
chetan lokef6fb8f102011-08-19 10:18:16 +00002509 union tpacket_req_u req_u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510
2511 if (!sk)
2512 return 0;
2513
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002514 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 po = pkt_sk(sk);
2516
Pavel Emelyanov0fa7fa92012-08-21 01:06:47 +00002517 mutex_lock(&net->packet.sklist_lock);
stephen hemminger808f5112010-02-22 07:57:18 +00002518 sk_del_node_init_rcu(sk);
Pavel Emelyanov0fa7fa92012-08-21 01:06:47 +00002519 mutex_unlock(&net->packet.sklist_lock);
2520
2521 preempt_disable();
Eric Dumazet920de802008-11-24 00:09:29 -08002522 sock_prot_inuse_add(net, sk->sk_prot, -1);
Pavel Emelyanov0fa7fa92012-08-21 01:06:47 +00002523 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
stephen hemminger808f5112010-02-22 07:57:18 +00002525 spin_lock(&po->bind_lock);
David S. Millerce06b032011-07-04 01:44:29 -07002526 unregister_prot_hook(sk, false);
Daniel Borkmann66e56cd2013-12-06 11:36:15 +01002527 packet_cached_dev_reset(po);
2528
Ben Greear160ff182011-06-01 07:18:52 +00002529 if (po->prot_hook.dev) {
2530 dev_put(po->prot_hook.dev);
2531 po->prot_hook.dev = NULL;
2532 }
stephen hemminger808f5112010-02-22 07:57:18 +00002533 spin_unlock(&po->bind_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 packet_flush_mclist(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
Phil Sutter9665d5d2013-02-01 07:21:41 +00002537 if (po->rx_ring.pg_vec) {
2538 memset(&req_u, 0, sizeof(req_u));
chetan lokef6fb8f102011-08-19 10:18:16 +00002539 packet_set_ring(sk, &req_u, 1, 0);
Phil Sutter9665d5d2013-02-01 07:21:41 +00002540 }
Johann Baudy69e3c752009-05-18 22:11:22 -07002541
Phil Sutter9665d5d2013-02-01 07:21:41 +00002542 if (po->tx_ring.pg_vec) {
2543 memset(&req_u, 0, sizeof(req_u));
chetan lokef6fb8f102011-08-19 10:18:16 +00002544 packet_set_ring(sk, &req_u, 1, 1);
Phil Sutter9665d5d2013-02-01 07:21:41 +00002545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
David S. Millerdc99f602011-07-05 01:45:05 -07002547 fanout_release(sk);
2548
stephen hemminger808f5112010-02-22 07:57:18 +00002549 synchronize_net();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 /*
2551 * Now the socket is dead. No more input will appear.
2552 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 sock_orphan(sk);
2554 sock->sk = NULL;
2555
2556 /* Purge queues */
2557
2558 skb_queue_purge(&sk->sk_receive_queue);
Pavel Emelyanov17ab56a2007-11-10 21:38:48 -08002559 sk_refcnt_debug_release(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
2561 sock_put(sk);
2562 return 0;
2563}
2564
2565/*
2566 * Attach a packet hook.
2567 */
2568
Daniel Borkmann902fefb2014-01-15 16:25:34 +01002569static int packet_do_bind(struct sock *sk, struct net_device *dev, __be16 proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570{
2571 struct packet_sock *po = pkt_sk(sk);
Daniel Borkmann902fefb2014-01-15 16:25:34 +01002572 const struct net_device *dev_curr;
2573 __be16 proto_curr;
2574 bool need_rehook;
David S. Millerdc99f602011-07-05 01:45:05 -07002575
Wei Yongjunaef950b2011-12-27 22:32:41 -05002576 if (po->fanout) {
2577 if (dev)
2578 dev_put(dev);
2579
David S. Millerdc99f602011-07-05 01:45:05 -07002580 return -EINVAL;
Wei Yongjunaef950b2011-12-27 22:32:41 -05002581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582
2583 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 spin_lock(&po->bind_lock);
Daniel Borkmann66e56cd2013-12-06 11:36:15 +01002585
Daniel Borkmann902fefb2014-01-15 16:25:34 +01002586 proto_curr = po->prot_hook.type;
2587 dev_curr = po->prot_hook.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588
Daniel Borkmann902fefb2014-01-15 16:25:34 +01002589 need_rehook = proto_curr != proto || dev_curr != dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
Daniel Borkmann902fefb2014-01-15 16:25:34 +01002591 if (need_rehook) {
2592 unregister_prot_hook(sk, true);
Daniel Borkmann66e56cd2013-12-06 11:36:15 +01002593
Daniel Borkmann902fefb2014-01-15 16:25:34 +01002594 po->num = proto;
2595 po->prot_hook.type = proto;
2596
2597 if (po->prot_hook.dev)
2598 dev_put(po->prot_hook.dev);
2599
2600 po->prot_hook.dev = dev;
2601
2602 po->ifindex = dev ? dev->ifindex : 0;
2603 packet_cached_dev_assign(po, dev);
2604 }
2605
2606 if (proto == 0 || !need_rehook)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 goto out_unlock;
2608
Urs Thuermannbe85d4a2007-11-12 21:05:20 -08002609 if (!dev || (dev->flags & IFF_UP)) {
David S. Millerce06b032011-07-04 01:44:29 -07002610 register_prot_hook(sk);
Urs Thuermannbe85d4a2007-11-12 21:05:20 -08002611 } else {
2612 sk->sk_err = ENETDOWN;
2613 if (!sock_flag(sk, SOCK_DEAD))
2614 sk->sk_error_report(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 }
2616
2617out_unlock:
2618 spin_unlock(&po->bind_lock);
2619 release_sock(sk);
2620 return 0;
2621}
2622
2623/*
2624 * Bind a packet socket to a device
2625 */
2626
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002627static int packet_bind_spkt(struct socket *sock, struct sockaddr *uaddr,
2628 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629{
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002630 struct sock *sk = sock->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 char name[15];
2632 struct net_device *dev;
2633 int err = -ENODEV;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002634
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 /*
2636 * Check legality
2637 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002638
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08002639 if (addr_len != sizeof(struct sockaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 return -EINVAL;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002641 strlcpy(name, uaddr->sa_data, sizeof(name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002643 dev = dev_get_by_name(sock_net(sk), name);
Ben Greear160ff182011-06-01 07:18:52 +00002644 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 err = packet_do_bind(sk, dev, pkt_sk(sk)->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 return err;
2647}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
2649static int packet_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
2650{
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002651 struct sockaddr_ll *sll = (struct sockaddr_ll *)uaddr;
2652 struct sock *sk = sock->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 struct net_device *dev = NULL;
2654 int err;
2655
2656
2657 /*
2658 * Check legality
2659 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002660
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 if (addr_len < sizeof(struct sockaddr_ll))
2662 return -EINVAL;
2663 if (sll->sll_family != AF_PACKET)
2664 return -EINVAL;
2665
2666 if (sll->sll_ifindex) {
2667 err = -ENODEV;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002668 dev = dev_get_by_index(sock_net(sk), sll->sll_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 if (dev == NULL)
2670 goto out;
2671 }
2672 err = packet_do_bind(sk, dev, sll->sll_protocol ? : pkt_sk(sk)->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673
2674out:
2675 return err;
2676}
2677
2678static struct proto packet_proto = {
2679 .name = "PACKET",
2680 .owner = THIS_MODULE,
2681 .obj_size = sizeof(struct packet_sock),
2682};
2683
2684/*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002685 * Create a packet of type SOCK_PACKET.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 */
2687
Eric Paris3f378b62009-11-05 22:18:14 -08002688static int packet_create(struct net *net, struct socket *sock, int protocol,
2689 int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690{
2691 struct sock *sk;
2692 struct packet_sock *po;
Al Viro0e11c912006-11-08 00:26:29 -08002693 __be16 proto = (__force __be16)protocol; /* weird, but documented */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 int err;
2695
Eric W. Biedermandf008c92012-11-16 03:03:07 +00002696 if (!ns_capable(net->user_ns, CAP_NET_RAW))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 return -EPERM;
David S. Millerbe020972007-05-29 13:16:31 -07002698 if (sock->type != SOCK_DGRAM && sock->type != SOCK_RAW &&
2699 sock->type != SOCK_PACKET)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 return -ESOCKTNOSUPPORT;
2701
2702 sock->state = SS_UNCONNECTED;
2703
2704 err = -ENOBUFS;
Pavel Emelyanov6257ff22007-11-01 00:39:31 -07002705 sk = sk_alloc(net, PF_PACKET, GFP_KERNEL, &packet_proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 if (sk == NULL)
2707 goto out;
2708
2709 sock->ops = &packet_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 if (sock->type == SOCK_PACKET)
2711 sock->ops = &packet_ops_spkt;
David S. Millerbe020972007-05-29 13:16:31 -07002712
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 sock_init_data(sock, sk);
2714
2715 po = pkt_sk(sk);
2716 sk->sk_family = PF_PACKET;
Al Viro0e11c912006-11-08 00:26:29 -08002717 po->num = proto;
Daniel Borkmannd346a3f2013-12-06 11:36:17 +01002718 po->xmit = dev_queue_xmit;
Daniel Borkmann66e56cd2013-12-06 11:36:15 +01002719
2720 packet_cached_dev_reset(po);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721
2722 sk->sk_destruct = packet_sock_destruct;
Pavel Emelyanov17ab56a2007-11-10 21:38:48 -08002723 sk_refcnt_debug_inc(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724
2725 /*
2726 * Attach a protocol block
2727 */
2728
2729 spin_lock_init(&po->bind_lock);
Herbert Xu905db442009-01-30 14:12:06 -08002730 mutex_init(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 po->prot_hook.func = packet_rcv;
David S. Millerbe020972007-05-29 13:16:31 -07002732
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 if (sock->type == SOCK_PACKET)
2734 po->prot_hook.func = packet_rcv_spkt;
David S. Millerbe020972007-05-29 13:16:31 -07002735
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 po->prot_hook.af_packet_priv = sk;
2737
Al Viro0e11c912006-11-08 00:26:29 -08002738 if (proto) {
2739 po->prot_hook.type = proto;
David S. Millerce06b032011-07-04 01:44:29 -07002740 register_prot_hook(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 }
2742
Pavel Emelyanov0fa7fa92012-08-21 01:06:47 +00002743 mutex_lock(&net->packet.sklist_lock);
stephen hemminger808f5112010-02-22 07:57:18 +00002744 sk_add_node_rcu(sk, &net->packet.sklist);
Pavel Emelyanov0fa7fa92012-08-21 01:06:47 +00002745 mutex_unlock(&net->packet.sklist_lock);
2746
2747 preempt_disable();
Eric Dumazet36804532008-11-19 14:25:35 -08002748 sock_prot_inuse_add(net, &packet_proto, 1);
Pavel Emelyanov0fa7fa92012-08-21 01:06:47 +00002749 preempt_enable();
stephen hemminger808f5112010-02-22 07:57:18 +00002750
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002751 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752out:
2753 return err;
2754}
2755
2756/*
2757 * Pull a packet from our receive queue and hand it to the user.
2758 * If necessary we block.
2759 */
2760
2761static int packet_recvmsg(struct kiocb *iocb, struct socket *sock,
2762 struct msghdr *msg, size_t len, int flags)
2763{
2764 struct sock *sk = sock->sk;
2765 struct sk_buff *skb;
2766 int copied, err;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002767 int vnet_hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
2769 err = -EINVAL;
Richard Cochraned85b562010-04-07 22:41:28 +00002770 if (flags & ~(MSG_PEEK|MSG_DONTWAIT|MSG_TRUNC|MSG_CMSG_COMPAT|MSG_ERRQUEUE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 goto out;
2772
2773#if 0
2774 /* What error should we return now? EUNATTACH? */
2775 if (pkt_sk(sk)->ifindex < 0)
2776 return -ENODEV;
2777#endif
2778
Richard Cochraned85b562010-04-07 22:41:28 +00002779 if (flags & MSG_ERRQUEUE) {
Richard Cochrancb820f82013-07-19 19:40:09 +02002780 err = sock_recv_errqueue(sk, msg, len,
2781 SOL_PACKET, PACKET_TX_TIMESTAMP);
Richard Cochraned85b562010-04-07 22:41:28 +00002782 goto out;
2783 }
2784
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 * Call the generic datagram receiver. This handles all sorts
2787 * of horrible races and re-entrancy so we can forget about it
2788 * in the protocol layers.
2789 *
2790 * Now it will return ENETDOWN, if device have just gone down,
2791 * but then it will block.
2792 */
2793
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002794 skb = skb_recv_datagram(sk, flags, flags & MSG_DONTWAIT, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
2796 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002797 * An error occurred so return it. Because skb_recv_datagram()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 * handles the blocking we don't see and worry about blocking
2799 * retries.
2800 */
2801
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08002802 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 goto out;
2804
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002805 if (pkt_sk(sk)->has_vnet_hdr) {
2806 struct virtio_net_hdr vnet_hdr = { 0 };
2807
2808 err = -EINVAL;
2809 vnet_hdr_len = sizeof(vnet_hdr);
Mariusz Kozlowski1f18b712010-11-08 11:58:45 +00002810 if (len < vnet_hdr_len)
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002811 goto out_free;
2812
Mariusz Kozlowski1f18b712010-11-08 11:58:45 +00002813 len -= vnet_hdr_len;
2814
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002815 if (skb_is_gso(skb)) {
2816 struct skb_shared_info *sinfo = skb_shinfo(skb);
2817
2818 /* This is a hint as to how much should be linear. */
2819 vnet_hdr.hdr_len = skb_headlen(skb);
2820 vnet_hdr.gso_size = sinfo->gso_size;
2821 if (sinfo->gso_type & SKB_GSO_TCPV4)
2822 vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
2823 else if (sinfo->gso_type & SKB_GSO_TCPV6)
2824 vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
2825 else if (sinfo->gso_type & SKB_GSO_UDP)
2826 vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_UDP;
2827 else if (sinfo->gso_type & SKB_GSO_FCOE)
2828 goto out_free;
2829 else
2830 BUG();
2831 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
2832 vnet_hdr.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
2833 } else
2834 vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_NONE;
2835
2836 if (skb->ip_summed == CHECKSUM_PARTIAL) {
2837 vnet_hdr.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Michał Mirosław55508d62010-12-14 15:24:08 +00002838 vnet_hdr.csum_start = skb_checksum_start_offset(skb);
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002839 vnet_hdr.csum_offset = skb->csum_offset;
Jason Wang10a8d942011-06-10 00:56:17 +00002840 } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
2841 vnet_hdr.flags = VIRTIO_NET_HDR_F_DATA_VALID;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002842 } /* else everything is zero */
2843
2844 err = memcpy_toiovec(msg->msg_iov, (void *)&vnet_hdr,
2845 vnet_hdr_len);
2846 if (err < 0)
2847 goto out_free;
2848 }
2849
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002850 /* You lose any data beyond the buffer you gave. If it worries
2851 * a user program they can ask the device for its MTU
2852 * anyway.
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07002853 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 copied = skb->len;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002855 if (copied > len) {
2856 copied = len;
2857 msg->msg_flags |= MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 }
2859
2860 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
2861 if (err)
2862 goto out_free;
2863
Neil Horman3b885782009-10-12 13:26:31 -07002864 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002866 if (msg->msg_name) {
2867 /* If the address length field is there to be filled
2868 * in, we fill it in now.
2869 */
2870 if (sock->type == SOCK_PACKET) {
2871 msg->msg_namelen = sizeof(struct sockaddr_pkt);
2872 } else {
2873 struct sockaddr_ll *sll = &PACKET_SKB_CB(skb)->sa.ll;
2874 msg->msg_namelen = sll->sll_halen +
2875 offsetof(struct sockaddr_ll, sll_addr);
2876 }
Herbert Xuffbc6112007-02-04 23:33:10 -08002877 memcpy(msg->msg_name, &PACKET_SKB_CB(skb)->sa,
2878 msg->msg_namelen);
Hannes Frederic Sowaf3d33422013-11-21 03:14:22 +01002879 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
Herbert Xu8dc41942007-02-04 23:31:32 -08002881 if (pkt_sk(sk)->auxdata) {
Herbert Xuffbc6112007-02-04 23:33:10 -08002882 struct tpacket_auxdata aux;
2883
2884 aux.tp_status = TP_STATUS_USER;
2885 if (skb->ip_summed == CHECKSUM_PARTIAL)
2886 aux.tp_status |= TP_STATUS_CSUMNOTREADY;
2887 aux.tp_len = PACKET_SKB_CB(skb)->origlen;
2888 aux.tp_snaplen = skb->len;
2889 aux.tp_mac = 0;
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03002890 aux.tp_net = skb_network_offset(skb);
Ben Greeara3bcc232011-06-01 06:49:10 +00002891 if (vlan_tx_tag_present(skb)) {
2892 aux.tp_vlan_tci = vlan_tx_tag_get(skb);
Atzm Watanabea0cdfcf2013-12-17 22:53:40 +09002893 aux.tp_vlan_tpid = ntohs(skb->vlan_proto);
2894 aux.tp_status |= TP_STATUS_VLAN_VALID | TP_STATUS_VLAN_TPID_VALID;
Ben Greeara3bcc232011-06-01 06:49:10 +00002895 } else {
2896 aux.tp_vlan_tci = 0;
Atzm Watanabea0cdfcf2013-12-17 22:53:40 +09002897 aux.tp_vlan_tpid = 0;
Ben Greeara3bcc232011-06-01 06:49:10 +00002898 }
Herbert Xuffbc6112007-02-04 23:33:10 -08002899 put_cmsg(msg, SOL_PACKET, PACKET_AUXDATA, sizeof(aux), &aux);
Herbert Xu8dc41942007-02-04 23:31:32 -08002900 }
2901
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 /*
2903 * Free or return the buffer as appropriate. Again this
2904 * hides all the races and re-entrancy issues from us.
2905 */
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002906 err = vnet_hdr_len + ((flags&MSG_TRUNC) ? skb->len : copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
2908out_free:
2909 skb_free_datagram(sk, skb);
2910out:
2911 return err;
2912}
2913
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914static int packet_getname_spkt(struct socket *sock, struct sockaddr *uaddr,
2915 int *uaddr_len, int peer)
2916{
2917 struct net_device *dev;
2918 struct sock *sk = sock->sk;
2919
2920 if (peer)
2921 return -EOPNOTSUPP;
2922
2923 uaddr->sa_family = AF_PACKET;
Daniel Borkmann2dc85bf2013-06-12 16:02:27 +02002924 memset(uaddr->sa_data, 0, sizeof(uaddr->sa_data));
Eric Dumazet654d1f82009-11-02 10:43:32 +01002925 rcu_read_lock();
2926 dev = dev_get_by_index_rcu(sock_net(sk), pkt_sk(sk)->ifindex);
2927 if (dev)
Daniel Borkmann2dc85bf2013-06-12 16:02:27 +02002928 strlcpy(uaddr->sa_data, dev->name, sizeof(uaddr->sa_data));
Eric Dumazet654d1f82009-11-02 10:43:32 +01002929 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 *uaddr_len = sizeof(*uaddr);
2931
2932 return 0;
2933}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
2935static int packet_getname(struct socket *sock, struct sockaddr *uaddr,
2936 int *uaddr_len, int peer)
2937{
2938 struct net_device *dev;
2939 struct sock *sk = sock->sk;
2940 struct packet_sock *po = pkt_sk(sk);
Cyrill Gorcunov13cfa972009-11-08 05:51:19 +00002941 DECLARE_SOCKADDR(struct sockaddr_ll *, sll, uaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942
2943 if (peer)
2944 return -EOPNOTSUPP;
2945
2946 sll->sll_family = AF_PACKET;
2947 sll->sll_ifindex = po->ifindex;
2948 sll->sll_protocol = po->num;
Vasiliy Kulikov67286642010-11-10 12:09:10 -08002949 sll->sll_pkttype = 0;
Eric Dumazet654d1f82009-11-02 10:43:32 +01002950 rcu_read_lock();
2951 dev = dev_get_by_index_rcu(sock_net(sk), po->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 if (dev) {
2953 sll->sll_hatype = dev->type;
2954 sll->sll_halen = dev->addr_len;
2955 memcpy(sll->sll_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 } else {
2957 sll->sll_hatype = 0; /* Bad: we have no ARPHRD_UNSPEC */
2958 sll->sll_halen = 0;
2959 }
Eric Dumazet654d1f82009-11-02 10:43:32 +01002960 rcu_read_unlock();
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07002961 *uaddr_len = offsetof(struct sockaddr_ll, sll_addr) + sll->sll_halen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962
2963 return 0;
2964}
2965
Wang Chen2aeb0b82008-07-14 20:49:46 -07002966static int packet_dev_mc(struct net_device *dev, struct packet_mclist *i,
2967 int what)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968{
2969 switch (i->type) {
2970 case PACKET_MR_MULTICAST:
Jiri Pirko11625632010-03-02 20:40:01 +00002971 if (i->alen != dev->addr_len)
2972 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 if (what > 0)
Jiri Pirko22bedad32010-04-01 21:22:57 +00002974 return dev_mc_add(dev, i->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 else
Jiri Pirko22bedad32010-04-01 21:22:57 +00002976 return dev_mc_del(dev, i->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 break;
2978 case PACKET_MR_PROMISC:
Wang Chen2aeb0b82008-07-14 20:49:46 -07002979 return dev_set_promiscuity(dev, what);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 break;
2981 case PACKET_MR_ALLMULTI:
Wang Chen2aeb0b82008-07-14 20:49:46 -07002982 return dev_set_allmulti(dev, what);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 break;
Eric W. Biedermand95ed922009-05-19 18:27:17 +00002984 case PACKET_MR_UNICAST:
Jiri Pirko11625632010-03-02 20:40:01 +00002985 if (i->alen != dev->addr_len)
2986 return -EINVAL;
Eric W. Biedermand95ed922009-05-19 18:27:17 +00002987 if (what > 0)
Jiri Pirkoa748ee22010-04-01 21:22:09 +00002988 return dev_uc_add(dev, i->addr);
Eric W. Biedermand95ed922009-05-19 18:27:17 +00002989 else
Jiri Pirkoa748ee22010-04-01 21:22:09 +00002990 return dev_uc_del(dev, i->addr);
Eric W. Biedermand95ed922009-05-19 18:27:17 +00002991 break;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002992 default:
2993 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 }
Wang Chen2aeb0b82008-07-14 20:49:46 -07002995 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996}
2997
2998static void packet_dev_mclist(struct net_device *dev, struct packet_mclist *i, int what)
2999{
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003000 for ( ; i; i = i->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 if (i->ifindex == dev->ifindex)
3002 packet_dev_mc(dev, i, what);
3003 }
3004}
3005
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07003006static int packet_mc_add(struct sock *sk, struct packet_mreq_max *mreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007{
3008 struct packet_sock *po = pkt_sk(sk);
3009 struct packet_mclist *ml, *i;
3010 struct net_device *dev;
3011 int err;
3012
3013 rtnl_lock();
3014
3015 err = -ENODEV;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003016 dev = __dev_get_by_index(sock_net(sk), mreq->mr_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 if (!dev)
3018 goto done;
3019
3020 err = -EINVAL;
Jiri Pirko11625632010-03-02 20:40:01 +00003021 if (mreq->mr_alen > dev->addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 goto done;
3023
3024 err = -ENOBUFS;
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08003025 i = kmalloc(sizeof(*i), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 if (i == NULL)
3027 goto done;
3028
3029 err = 0;
3030 for (ml = po->mclist; ml; ml = ml->next) {
3031 if (ml->ifindex == mreq->mr_ifindex &&
3032 ml->type == mreq->mr_type &&
3033 ml->alen == mreq->mr_alen &&
3034 memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
3035 ml->count++;
3036 /* Free the new element ... */
3037 kfree(i);
3038 goto done;
3039 }
3040 }
3041
3042 i->type = mreq->mr_type;
3043 i->ifindex = mreq->mr_ifindex;
3044 i->alen = mreq->mr_alen;
3045 memcpy(i->addr, mreq->mr_address, i->alen);
3046 i->count = 1;
3047 i->next = po->mclist;
3048 po->mclist = i;
Wang Chen2aeb0b82008-07-14 20:49:46 -07003049 err = packet_dev_mc(dev, i, 1);
3050 if (err) {
3051 po->mclist = i->next;
3052 kfree(i);
3053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054
3055done:
3056 rtnl_unlock();
3057 return err;
3058}
3059
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07003060static int packet_mc_drop(struct sock *sk, struct packet_mreq_max *mreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061{
3062 struct packet_mclist *ml, **mlp;
3063
3064 rtnl_lock();
3065
3066 for (mlp = &pkt_sk(sk)->mclist; (ml = *mlp) != NULL; mlp = &ml->next) {
3067 if (ml->ifindex == mreq->mr_ifindex &&
3068 ml->type == mreq->mr_type &&
3069 ml->alen == mreq->mr_alen &&
3070 memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
3071 if (--ml->count == 0) {
3072 struct net_device *dev;
3073 *mlp = ml->next;
Eric Dumazetad959e72009-10-16 06:38:46 +00003074 dev = __dev_get_by_index(sock_net(sk), ml->ifindex);
3075 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 packet_dev_mc(dev, ml, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 kfree(ml);
3078 }
3079 rtnl_unlock();
3080 return 0;
3081 }
3082 }
3083 rtnl_unlock();
3084 return -EADDRNOTAVAIL;
3085}
3086
3087static void packet_flush_mclist(struct sock *sk)
3088{
3089 struct packet_sock *po = pkt_sk(sk);
3090 struct packet_mclist *ml;
3091
3092 if (!po->mclist)
3093 return;
3094
3095 rtnl_lock();
3096 while ((ml = po->mclist) != NULL) {
3097 struct net_device *dev;
3098
3099 po->mclist = ml->next;
Eric Dumazetad959e72009-10-16 06:38:46 +00003100 dev = __dev_get_by_index(sock_net(sk), ml->ifindex);
3101 if (dev != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 packet_dev_mc(dev, ml, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 kfree(ml);
3104 }
3105 rtnl_unlock();
3106}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
3108static int
David S. Millerb7058842009-09-30 16:12:20 -07003109packet_setsockopt(struct socket *sock, int level, int optname, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110{
3111 struct sock *sk = sock->sk;
Herbert Xu8dc41942007-02-04 23:31:32 -08003112 struct packet_sock *po = pkt_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 int ret;
3114
3115 if (level != SOL_PACKET)
3116 return -ENOPROTOOPT;
3117
Johann Baudy69e3c752009-05-18 22:11:22 -07003118 switch (optname) {
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003119 case PACKET_ADD_MEMBERSHIP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 case PACKET_DROP_MEMBERSHIP:
3121 {
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07003122 struct packet_mreq_max mreq;
3123 int len = optlen;
3124 memset(&mreq, 0, sizeof(mreq));
3125 if (len < sizeof(struct packet_mreq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 return -EINVAL;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07003127 if (len > sizeof(mreq))
3128 len = sizeof(mreq);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003129 if (copy_from_user(&mreq, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 return -EFAULT;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07003131 if (len < (mreq.mr_alen + offsetof(struct packet_mreq, mr_address)))
3132 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 if (optname == PACKET_ADD_MEMBERSHIP)
3134 ret = packet_mc_add(sk, &mreq);
3135 else
3136 ret = packet_mc_drop(sk, &mreq);
3137 return ret;
3138 }
David S. Millera2efcfa2007-05-29 13:12:50 -07003139
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 case PACKET_RX_RING:
Johann Baudy69e3c752009-05-18 22:11:22 -07003141 case PACKET_TX_RING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 {
chetan lokef6fb8f102011-08-19 10:18:16 +00003143 union tpacket_req_u req_u;
3144 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145
chetan lokef6fb8f102011-08-19 10:18:16 +00003146 switch (po->tp_version) {
3147 case TPACKET_V1:
3148 case TPACKET_V2:
3149 len = sizeof(req_u.req);
3150 break;
3151 case TPACKET_V3:
3152 default:
3153 len = sizeof(req_u.req3);
3154 break;
3155 }
3156 if (optlen < len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 return -EINVAL;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08003158 if (pkt_sk(sk)->has_vnet_hdr)
3159 return -EINVAL;
chetan lokef6fb8f102011-08-19 10:18:16 +00003160 if (copy_from_user(&req_u.req, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 return -EFAULT;
chetan lokef6fb8f102011-08-19 10:18:16 +00003162 return packet_set_ring(sk, &req_u, 0,
3163 optname == PACKET_TX_RING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 }
3165 case PACKET_COPY_THRESH:
3166 {
3167 int val;
3168
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003169 if (optlen != sizeof(val))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 return -EINVAL;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003171 if (copy_from_user(&val, optval, sizeof(val)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 return -EFAULT;
3173
3174 pkt_sk(sk)->copy_thresh = val;
3175 return 0;
3176 }
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003177 case PACKET_VERSION:
3178 {
3179 int val;
3180
3181 if (optlen != sizeof(val))
3182 return -EINVAL;
Johann Baudy69e3c752009-05-18 22:11:22 -07003183 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003184 return -EBUSY;
3185 if (copy_from_user(&val, optval, sizeof(val)))
3186 return -EFAULT;
3187 switch (val) {
3188 case TPACKET_V1:
3189 case TPACKET_V2:
chetan lokef6fb8f102011-08-19 10:18:16 +00003190 case TPACKET_V3:
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003191 po->tp_version = val;
3192 return 0;
3193 default:
3194 return -EINVAL;
3195 }
3196 }
Patrick McHardy8913336a2008-07-18 18:05:19 -07003197 case PACKET_RESERVE:
3198 {
3199 unsigned int val;
3200
3201 if (optlen != sizeof(val))
3202 return -EINVAL;
Johann Baudy69e3c752009-05-18 22:11:22 -07003203 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
Patrick McHardy8913336a2008-07-18 18:05:19 -07003204 return -EBUSY;
3205 if (copy_from_user(&val, optval, sizeof(val)))
3206 return -EFAULT;
3207 po->tp_reserve = val;
3208 return 0;
3209 }
Johann Baudy69e3c752009-05-18 22:11:22 -07003210 case PACKET_LOSS:
3211 {
3212 unsigned int val;
3213
3214 if (optlen != sizeof(val))
3215 return -EINVAL;
3216 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
3217 return -EBUSY;
3218 if (copy_from_user(&val, optval, sizeof(val)))
3219 return -EFAULT;
3220 po->tp_loss = !!val;
3221 return 0;
3222 }
Herbert Xu8dc41942007-02-04 23:31:32 -08003223 case PACKET_AUXDATA:
3224 {
3225 int val;
3226
3227 if (optlen < sizeof(val))
3228 return -EINVAL;
3229 if (copy_from_user(&val, optval, sizeof(val)))
3230 return -EFAULT;
3231
3232 po->auxdata = !!val;
3233 return 0;
3234 }
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07003235 case PACKET_ORIGDEV:
3236 {
3237 int val;
3238
3239 if (optlen < sizeof(val))
3240 return -EINVAL;
3241 if (copy_from_user(&val, optval, sizeof(val)))
3242 return -EFAULT;
3243
3244 po->origdev = !!val;
3245 return 0;
3246 }
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08003247 case PACKET_VNET_HDR:
3248 {
3249 int val;
3250
3251 if (sock->type != SOCK_RAW)
3252 return -EINVAL;
3253 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
3254 return -EBUSY;
3255 if (optlen < sizeof(val))
3256 return -EINVAL;
3257 if (copy_from_user(&val, optval, sizeof(val)))
3258 return -EFAULT;
3259
3260 po->has_vnet_hdr = !!val;
3261 return 0;
3262 }
Scott McMillan614f60f2010-06-02 05:53:56 -07003263 case PACKET_TIMESTAMP:
3264 {
3265 int val;
3266
3267 if (optlen != sizeof(val))
3268 return -EINVAL;
3269 if (copy_from_user(&val, optval, sizeof(val)))
3270 return -EFAULT;
3271
3272 po->tp_tstamp = val;
3273 return 0;
3274 }
David S. Millerdc99f602011-07-05 01:45:05 -07003275 case PACKET_FANOUT:
3276 {
3277 int val;
3278
3279 if (optlen != sizeof(val))
3280 return -EINVAL;
3281 if (copy_from_user(&val, optval, sizeof(val)))
3282 return -EFAULT;
3283
3284 return fanout_add(sk, val & 0xffff, val >> 16);
3285 }
Paul Chavent5920cd3a2012-11-06 23:10:47 +00003286 case PACKET_TX_HAS_OFF:
3287 {
3288 unsigned int val;
3289
3290 if (optlen != sizeof(val))
3291 return -EINVAL;
3292 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
3293 return -EBUSY;
3294 if (copy_from_user(&val, optval, sizeof(val)))
3295 return -EFAULT;
3296 po->tp_tx_has_off = !!val;
3297 return 0;
3298 }
Daniel Borkmannd346a3f2013-12-06 11:36:17 +01003299 case PACKET_QDISC_BYPASS:
3300 {
3301 int val;
3302
3303 if (optlen != sizeof(val))
3304 return -EINVAL;
3305 if (copy_from_user(&val, optval, sizeof(val)))
3306 return -EFAULT;
3307
3308 po->xmit = val ? packet_direct_xmit : dev_queue_xmit;
3309 return 0;
3310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 default:
3312 return -ENOPROTOOPT;
3313 }
3314}
3315
3316static int packet_getsockopt(struct socket *sock, int level, int optname,
3317 char __user *optval, int __user *optlen)
3318{
3319 int len;
Eric Dumazetc06fff62012-04-19 21:56:11 +00003320 int val, lv = sizeof(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 struct sock *sk = sock->sk;
3322 struct packet_sock *po = pkt_sk(sk);
Eric Dumazetc06fff62012-04-19 21:56:11 +00003323 void *data = &val;
Daniel Borkmannee80fbf2013-04-19 06:12:29 +00003324 union tpacket_stats_u st;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325
3326 if (level != SOL_PACKET)
3327 return -ENOPROTOOPT;
3328
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08003329 if (get_user(len, optlen))
3330 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
3332 if (len < 0)
3333 return -EINVAL;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003334
Johann Baudy69e3c752009-05-18 22:11:22 -07003335 switch (optname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 case PACKET_STATISTICS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 spin_lock_bh(&sk->sk_receive_queue.lock);
Daniel Borkmannee80fbf2013-04-19 06:12:29 +00003338 memcpy(&st, &po->stats, sizeof(st));
3339 memset(&po->stats, 0, sizeof(po->stats));
3340 spin_unlock_bh(&sk->sk_receive_queue.lock);
3341
chetan lokef6fb8f102011-08-19 10:18:16 +00003342 if (po->tp_version == TPACKET_V3) {
Eric Dumazetc06fff62012-04-19 21:56:11 +00003343 lv = sizeof(struct tpacket_stats_v3);
Willem de Bruijn8bcdeaf2013-08-19 16:40:22 -04003344 st.stats3.tp_packets += st.stats3.tp_drops;
Daniel Borkmannee80fbf2013-04-19 06:12:29 +00003345 data = &st.stats3;
chetan lokef6fb8f102011-08-19 10:18:16 +00003346 } else {
Eric Dumazetc06fff62012-04-19 21:56:11 +00003347 lv = sizeof(struct tpacket_stats);
Willem de Bruijn8bcdeaf2013-08-19 16:40:22 -04003348 st.stats1.tp_packets += st.stats1.tp_drops;
Daniel Borkmannee80fbf2013-04-19 06:12:29 +00003349 data = &st.stats1;
chetan lokef6fb8f102011-08-19 10:18:16 +00003350 }
Daniel Borkmannee80fbf2013-04-19 06:12:29 +00003351
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 break;
Herbert Xu8dc41942007-02-04 23:31:32 -08003353 case PACKET_AUXDATA:
Herbert Xu8dc41942007-02-04 23:31:32 -08003354 val = po->auxdata;
Herbert Xu8dc41942007-02-04 23:31:32 -08003355 break;
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07003356 case PACKET_ORIGDEV:
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07003357 val = po->origdev;
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07003358 break;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08003359 case PACKET_VNET_HDR:
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08003360 val = po->has_vnet_hdr;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08003361 break;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003362 case PACKET_VERSION:
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003363 val = po->tp_version;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003364 break;
3365 case PACKET_HDRLEN:
3366 if (len > sizeof(int))
3367 len = sizeof(int);
3368 if (copy_from_user(&val, optval, len))
3369 return -EFAULT;
3370 switch (val) {
3371 case TPACKET_V1:
3372 val = sizeof(struct tpacket_hdr);
3373 break;
3374 case TPACKET_V2:
3375 val = sizeof(struct tpacket2_hdr);
3376 break;
chetan lokef6fb8f102011-08-19 10:18:16 +00003377 case TPACKET_V3:
3378 val = sizeof(struct tpacket3_hdr);
3379 break;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003380 default:
3381 return -EINVAL;
3382 }
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003383 break;
Patrick McHardy8913336a2008-07-18 18:05:19 -07003384 case PACKET_RESERVE:
Patrick McHardy8913336a2008-07-18 18:05:19 -07003385 val = po->tp_reserve;
Patrick McHardy8913336a2008-07-18 18:05:19 -07003386 break;
Johann Baudy69e3c752009-05-18 22:11:22 -07003387 case PACKET_LOSS:
Johann Baudy69e3c752009-05-18 22:11:22 -07003388 val = po->tp_loss;
Johann Baudy69e3c752009-05-18 22:11:22 -07003389 break;
Scott McMillan614f60f2010-06-02 05:53:56 -07003390 case PACKET_TIMESTAMP:
Scott McMillan614f60f2010-06-02 05:53:56 -07003391 val = po->tp_tstamp;
Scott McMillan614f60f2010-06-02 05:53:56 -07003392 break;
David S. Millerdc99f602011-07-05 01:45:05 -07003393 case PACKET_FANOUT:
David S. Millerdc99f602011-07-05 01:45:05 -07003394 val = (po->fanout ?
3395 ((u32)po->fanout->id |
Willem de Bruijn77f65eb2013-03-19 10:18:11 +00003396 ((u32)po->fanout->type << 16) |
3397 ((u32)po->fanout->flags << 24)) :
David S. Millerdc99f602011-07-05 01:45:05 -07003398 0);
David S. Millerdc99f602011-07-05 01:45:05 -07003399 break;
Paul Chavent5920cd3a2012-11-06 23:10:47 +00003400 case PACKET_TX_HAS_OFF:
3401 val = po->tp_tx_has_off;
3402 break;
Daniel Borkmannd346a3f2013-12-06 11:36:17 +01003403 case PACKET_QDISC_BYPASS:
3404 val = packet_use_direct_xmit(po);
3405 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 default:
3407 return -ENOPROTOOPT;
3408 }
3409
Eric Dumazetc06fff62012-04-19 21:56:11 +00003410 if (len > lv)
3411 len = lv;
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08003412 if (put_user(len, optlen))
3413 return -EFAULT;
Herbert Xu8dc41942007-02-04 23:31:32 -08003414 if (copy_to_user(optval, data, len))
3415 return -EFAULT;
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08003416 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417}
3418
3419
Jiri Pirko351638e2013-05-28 01:30:21 +00003420static int packet_notifier(struct notifier_block *this,
3421 unsigned long msg, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422{
3423 struct sock *sk;
Jiri Pirko351638e2013-05-28 01:30:21 +00003424 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003425 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426
stephen hemminger808f5112010-02-22 07:57:18 +00003427 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003428 sk_for_each_rcu(sk, &net->packet.sklist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429 struct packet_sock *po = pkt_sk(sk);
3430
3431 switch (msg) {
3432 case NETDEV_UNREGISTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 if (po->mclist)
3434 packet_dev_mclist(dev, po->mclist, -1);
David S. Millera2efcfa2007-05-29 13:12:50 -07003435 /* fallthrough */
3436
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 case NETDEV_DOWN:
3438 if (dev->ifindex == po->ifindex) {
3439 spin_lock(&po->bind_lock);
3440 if (po->running) {
David S. Millerce06b032011-07-04 01:44:29 -07003441 __unregister_prot_hook(sk, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 sk->sk_err = ENETDOWN;
3443 if (!sock_flag(sk, SOCK_DEAD))
3444 sk->sk_error_report(sk);
3445 }
3446 if (msg == NETDEV_UNREGISTER) {
Daniel Borkmann66e56cd2013-12-06 11:36:15 +01003447 packet_cached_dev_reset(po);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 po->ifindex = -1;
Ben Greear160ff182011-06-01 07:18:52 +00003449 if (po->prot_hook.dev)
3450 dev_put(po->prot_hook.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 po->prot_hook.dev = NULL;
3452 }
3453 spin_unlock(&po->bind_lock);
3454 }
3455 break;
3456 case NETDEV_UP:
stephen hemminger808f5112010-02-22 07:57:18 +00003457 if (dev->ifindex == po->ifindex) {
3458 spin_lock(&po->bind_lock);
David S. Millerce06b032011-07-04 01:44:29 -07003459 if (po->num)
3460 register_prot_hook(sk);
stephen hemminger808f5112010-02-22 07:57:18 +00003461 spin_unlock(&po->bind_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 break;
3464 }
3465 }
stephen hemminger808f5112010-02-22 07:57:18 +00003466 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 return NOTIFY_DONE;
3468}
3469
3470
3471static int packet_ioctl(struct socket *sock, unsigned int cmd,
3472 unsigned long arg)
3473{
3474 struct sock *sk = sock->sk;
3475
Johann Baudy69e3c752009-05-18 22:11:22 -07003476 switch (cmd) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003477 case SIOCOUTQ:
3478 {
3479 int amount = sk_wmem_alloc_get(sk);
Eric Dumazet31e6d362009-06-17 19:05:41 -07003480
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003481 return put_user(amount, (int __user *)arg);
3482 }
3483 case SIOCINQ:
3484 {
3485 struct sk_buff *skb;
3486 int amount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003488 spin_lock_bh(&sk->sk_receive_queue.lock);
3489 skb = skb_peek(&sk->sk_receive_queue);
3490 if (skb)
3491 amount = skb->len;
3492 spin_unlock_bh(&sk->sk_receive_queue.lock);
3493 return put_user(amount, (int __user *)arg);
3494 }
3495 case SIOCGSTAMP:
3496 return sock_get_timestamp(sk, (struct timeval __user *)arg);
3497 case SIOCGSTAMPNS:
3498 return sock_get_timestampns(sk, (struct timespec __user *)arg);
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003499
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500#ifdef CONFIG_INET
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003501 case SIOCADDRT:
3502 case SIOCDELRT:
3503 case SIOCDARP:
3504 case SIOCGARP:
3505 case SIOCSARP:
3506 case SIOCGIFADDR:
3507 case SIOCSIFADDR:
3508 case SIOCGIFBRDADDR:
3509 case SIOCSIFBRDADDR:
3510 case SIOCGIFNETMASK:
3511 case SIOCSIFNETMASK:
3512 case SIOCGIFDSTADDR:
3513 case SIOCSIFDSTADDR:
3514 case SIOCSIFFLAGS:
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003515 return inet_dgram_ops.ioctl(sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516#endif
3517
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003518 default:
3519 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 }
3521 return 0;
3522}
3523
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003524static unsigned int packet_poll(struct file *file, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 poll_table *wait)
3526{
3527 struct sock *sk = sock->sk;
3528 struct packet_sock *po = pkt_sk(sk);
3529 unsigned int mask = datagram_poll(file, sock, wait);
3530
3531 spin_lock_bh(&sk->sk_receive_queue.lock);
Johann Baudy69e3c752009-05-18 22:11:22 -07003532 if (po->rx_ring.pg_vec) {
chetan lokef6fb8f102011-08-19 10:18:16 +00003533 if (!packet_previous_rx_frame(po, &po->rx_ring,
3534 TP_STATUS_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 mask |= POLLIN | POLLRDNORM;
3536 }
3537 spin_unlock_bh(&sk->sk_receive_queue.lock);
Johann Baudy69e3c752009-05-18 22:11:22 -07003538 spin_lock_bh(&sk->sk_write_queue.lock);
3539 if (po->tx_ring.pg_vec) {
3540 if (packet_current_frame(po, &po->tx_ring, TP_STATUS_AVAILABLE))
3541 mask |= POLLOUT | POLLWRNORM;
3542 }
3543 spin_unlock_bh(&sk->sk_write_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 return mask;
3545}
3546
3547
3548/* Dirty? Well, I still did not learn better way to account
3549 * for user mmaps.
3550 */
3551
3552static void packet_mm_open(struct vm_area_struct *vma)
3553{
3554 struct file *file = vma->vm_file;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003555 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003557
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 if (sk)
3559 atomic_inc(&pkt_sk(sk)->mapped);
3560}
3561
3562static void packet_mm_close(struct vm_area_struct *vma)
3563{
3564 struct file *file = vma->vm_file;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003565 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003567
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 if (sk)
3569 atomic_dec(&pkt_sk(sk)->mapped);
3570}
3571
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04003572static const struct vm_operations_struct packet_mmap_ops = {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003573 .open = packet_mm_open,
3574 .close = packet_mm_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575};
3576
Neil Horman0e3125c2010-11-16 10:26:47 -08003577static void free_pg_vec(struct pgv *pg_vec, unsigned int order,
3578 unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579{
3580 int i;
3581
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003582 for (i = 0; i < len; i++) {
Neil Horman0e3125c2010-11-16 10:26:47 -08003583 if (likely(pg_vec[i].buffer)) {
Changli Gaoc56b4d92010-12-01 02:52:57 +00003584 if (is_vmalloc_addr(pg_vec[i].buffer))
Neil Horman0e3125c2010-11-16 10:26:47 -08003585 vfree(pg_vec[i].buffer);
3586 else
3587 free_pages((unsigned long)pg_vec[i].buffer,
3588 order);
3589 pg_vec[i].buffer = NULL;
3590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591 }
3592 kfree(pg_vec);
3593}
3594
Olof Johanssoneea49cc92011-11-02 11:00:49 +00003595static char *alloc_one_pg_vec_page(unsigned long order)
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003596{
Neil Horman0e3125c2010-11-16 10:26:47 -08003597 char *buffer = NULL;
3598 gfp_t gfp_flags = GFP_KERNEL | __GFP_COMP |
3599 __GFP_ZERO | __GFP_NOWARN | __GFP_NORETRY;
Eric Dumazet719bfea2009-04-15 03:39:52 -07003600
Neil Horman0e3125c2010-11-16 10:26:47 -08003601 buffer = (char *) __get_free_pages(gfp_flags, order);
3602
3603 if (buffer)
3604 return buffer;
3605
3606 /*
3607 * __get_free_pages failed, fall back to vmalloc
3608 */
Eric Dumazetbbce5a52010-11-20 07:31:54 +00003609 buffer = vzalloc((1 << order) * PAGE_SIZE);
Neil Horman0e3125c2010-11-16 10:26:47 -08003610
3611 if (buffer)
3612 return buffer;
3613
3614 /*
3615 * vmalloc failed, lets dig into swap here
3616 */
Neil Horman0e3125c2010-11-16 10:26:47 -08003617 gfp_flags &= ~__GFP_NORETRY;
3618 buffer = (char *)__get_free_pages(gfp_flags, order);
3619 if (buffer)
3620 return buffer;
3621
3622 /*
3623 * complete and utter failure
3624 */
3625 return NULL;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003626}
3627
Neil Horman0e3125c2010-11-16 10:26:47 -08003628static struct pgv *alloc_pg_vec(struct tpacket_req *req, int order)
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003629{
3630 unsigned int block_nr = req->tp_block_nr;
Neil Horman0e3125c2010-11-16 10:26:47 -08003631 struct pgv *pg_vec;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003632 int i;
3633
Neil Horman0e3125c2010-11-16 10:26:47 -08003634 pg_vec = kcalloc(block_nr, sizeof(struct pgv), GFP_KERNEL);
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003635 if (unlikely(!pg_vec))
3636 goto out;
3637
3638 for (i = 0; i < block_nr; i++) {
Changli Gaoc56b4d92010-12-01 02:52:57 +00003639 pg_vec[i].buffer = alloc_one_pg_vec_page(order);
Neil Horman0e3125c2010-11-16 10:26:47 -08003640 if (unlikely(!pg_vec[i].buffer))
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003641 goto out_free_pgvec;
3642 }
3643
3644out:
3645 return pg_vec;
3646
3647out_free_pgvec:
3648 free_pg_vec(pg_vec, order, block_nr);
3649 pg_vec = NULL;
3650 goto out;
3651}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652
chetan lokef6fb8f102011-08-19 10:18:16 +00003653static int packet_set_ring(struct sock *sk, union tpacket_req_u *req_u,
Johann Baudy69e3c752009-05-18 22:11:22 -07003654 int closing, int tx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655{
Neil Horman0e3125c2010-11-16 10:26:47 -08003656 struct pgv *pg_vec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 struct packet_sock *po = pkt_sk(sk);
Al Viro0e11c912006-11-08 00:26:29 -08003658 int was_running, order = 0;
Johann Baudy69e3c752009-05-18 22:11:22 -07003659 struct packet_ring_buffer *rb;
3660 struct sk_buff_head *rb_queue;
Al Viro0e11c912006-11-08 00:26:29 -08003661 __be16 num;
chetan lokef6fb8f102011-08-19 10:18:16 +00003662 int err = -EINVAL;
3663 /* Added to avoid minimal code churn */
3664 struct tpacket_req *req = &req_u->req;
3665
3666 /* Opening a Tx-ring is NOT supported in TPACKET_V3 */
3667 if (!closing && tx_ring && (po->tp_version > TPACKET_V2)) {
3668 WARN(1, "Tx-ring is not supported.\n");
3669 goto out;
3670 }
Johann Baudy69e3c752009-05-18 22:11:22 -07003671
3672 rb = tx_ring ? &po->tx_ring : &po->rx_ring;
3673 rb_queue = tx_ring ? &sk->sk_write_queue : &sk->sk_receive_queue;
3674
3675 err = -EBUSY;
3676 if (!closing) {
3677 if (atomic_read(&po->mapped))
3678 goto out;
3679 if (atomic_read(&rb->pending))
3680 goto out;
3681 }
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003682
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683 if (req->tp_block_nr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 /* Sanity tests and some calculations */
Johann Baudy69e3c752009-05-18 22:11:22 -07003685 err = -EBUSY;
3686 if (unlikely(rb->pg_vec))
3687 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003689 switch (po->tp_version) {
3690 case TPACKET_V1:
3691 po->tp_hdrlen = TPACKET_HDRLEN;
3692 break;
3693 case TPACKET_V2:
3694 po->tp_hdrlen = TPACKET2_HDRLEN;
3695 break;
chetan lokef6fb8f102011-08-19 10:18:16 +00003696 case TPACKET_V3:
3697 po->tp_hdrlen = TPACKET3_HDRLEN;
3698 break;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07003699 }
3700
Johann Baudy69e3c752009-05-18 22:11:22 -07003701 err = -EINVAL;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003702 if (unlikely((int)req->tp_block_size <= 0))
Johann Baudy69e3c752009-05-18 22:11:22 -07003703 goto out;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003704 if (unlikely(req->tp_block_size & (PAGE_SIZE - 1)))
Johann Baudy69e3c752009-05-18 22:11:22 -07003705 goto out;
Patrick McHardy8913336a2008-07-18 18:05:19 -07003706 if (unlikely(req->tp_frame_size < po->tp_hdrlen +
Johann Baudy69e3c752009-05-18 22:11:22 -07003707 po->tp_reserve))
3708 goto out;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003709 if (unlikely(req->tp_frame_size & (TPACKET_ALIGNMENT - 1)))
Johann Baudy69e3c752009-05-18 22:11:22 -07003710 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711
Johann Baudy69e3c752009-05-18 22:11:22 -07003712 rb->frames_per_block = req->tp_block_size/req->tp_frame_size;
3713 if (unlikely(rb->frames_per_block <= 0))
3714 goto out;
3715 if (unlikely((rb->frames_per_block * req->tp_block_nr) !=
3716 req->tp_frame_nr))
3717 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718
3719 err = -ENOMEM;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003720 order = get_order(req->tp_block_size);
3721 pg_vec = alloc_pg_vec(req, order);
3722 if (unlikely(!pg_vec))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 goto out;
chetan lokef6fb8f102011-08-19 10:18:16 +00003724 switch (po->tp_version) {
3725 case TPACKET_V3:
3726 /* Transmit path is not supported. We checked
3727 * it above but just being paranoid
3728 */
3729 if (!tx_ring)
3730 init_prb_bdqc(po, rb, pg_vec, req_u, tx_ring);
3731 break;
3732 default:
3733 break;
3734 }
Johann Baudy69e3c752009-05-18 22:11:22 -07003735 }
3736 /* Done */
3737 else {
3738 err = -EINVAL;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003739 if (unlikely(req->tp_frame_nr))
Johann Baudy69e3c752009-05-18 22:11:22 -07003740 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741 }
3742
3743 lock_sock(sk);
3744
3745 /* Detach socket from network */
3746 spin_lock(&po->bind_lock);
3747 was_running = po->running;
3748 num = po->num;
3749 if (was_running) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 po->num = 0;
David S. Millerce06b032011-07-04 01:44:29 -07003751 __unregister_prot_hook(sk, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 }
3753 spin_unlock(&po->bind_lock);
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003754
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755 synchronize_net();
3756
3757 err = -EBUSY;
Herbert Xu905db442009-01-30 14:12:06 -08003758 mutex_lock(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 if (closing || atomic_read(&po->mapped) == 0) {
3760 err = 0;
Johann Baudy69e3c752009-05-18 22:11:22 -07003761 spin_lock_bh(&rb_queue->lock);
Changli Gaoc053fd92010-12-10 16:02:20 -08003762 swap(rb->pg_vec, pg_vec);
Johann Baudy69e3c752009-05-18 22:11:22 -07003763 rb->frame_max = (req->tp_frame_nr - 1);
3764 rb->head = 0;
3765 rb->frame_size = req->tp_frame_size;
3766 spin_unlock_bh(&rb_queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767
Changli Gaoc053fd92010-12-10 16:02:20 -08003768 swap(rb->pg_vec_order, order);
3769 swap(rb->pg_vec_len, req->tp_block_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770
Johann Baudy69e3c752009-05-18 22:11:22 -07003771 rb->pg_vec_pages = req->tp_block_size/PAGE_SIZE;
3772 po->prot_hook.func = (po->rx_ring.pg_vec) ?
3773 tpacket_rcv : packet_rcv;
3774 skb_queue_purge(rb_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775 if (atomic_read(&po->mapped))
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003776 pr_err("packet_mmap: vma is busy: %d\n",
3777 atomic_read(&po->mapped));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 }
Herbert Xu905db442009-01-30 14:12:06 -08003779 mutex_unlock(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780
3781 spin_lock(&po->bind_lock);
David S. Millerce06b032011-07-04 01:44:29 -07003782 if (was_running) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 po->num = num;
David S. Millerce06b032011-07-04 01:44:29 -07003784 register_prot_hook(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785 }
3786 spin_unlock(&po->bind_lock);
chetan lokef6fb8f102011-08-19 10:18:16 +00003787 if (closing && (po->tp_version > TPACKET_V2)) {
3788 /* Because we don't support block-based V3 on tx-ring */
3789 if (!tx_ring)
3790 prb_shutdown_retire_blk_timer(po, tx_ring, rb_queue);
3791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 release_sock(sk);
3793
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794 if (pg_vec)
3795 free_pg_vec(pg_vec, order, req->tp_block_nr);
3796out:
3797 return err;
3798}
3799
Johann Baudy69e3c752009-05-18 22:11:22 -07003800static int packet_mmap(struct file *file, struct socket *sock,
3801 struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802{
3803 struct sock *sk = sock->sk;
3804 struct packet_sock *po = pkt_sk(sk);
Johann Baudy69e3c752009-05-18 22:11:22 -07003805 unsigned long size, expected_size;
3806 struct packet_ring_buffer *rb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807 unsigned long start;
3808 int err = -EINVAL;
3809 int i;
3810
3811 if (vma->vm_pgoff)
3812 return -EINVAL;
3813
Herbert Xu905db442009-01-30 14:12:06 -08003814 mutex_lock(&po->pg_vec_lock);
Johann Baudy69e3c752009-05-18 22:11:22 -07003815
3816 expected_size = 0;
3817 for (rb = &po->rx_ring; rb <= &po->tx_ring; rb++) {
3818 if (rb->pg_vec) {
3819 expected_size += rb->pg_vec_len
3820 * rb->pg_vec_pages
3821 * PAGE_SIZE;
3822 }
3823 }
3824
3825 if (expected_size == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 goto out;
Johann Baudy69e3c752009-05-18 22:11:22 -07003827
3828 size = vma->vm_end - vma->vm_start;
3829 if (size != expected_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830 goto out;
3831
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832 start = vma->vm_start;
Johann Baudy69e3c752009-05-18 22:11:22 -07003833 for (rb = &po->rx_ring; rb <= &po->tx_ring; rb++) {
3834 if (rb->pg_vec == NULL)
3835 continue;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003836
Johann Baudy69e3c752009-05-18 22:11:22 -07003837 for (i = 0; i < rb->pg_vec_len; i++) {
Neil Horman0e3125c2010-11-16 10:26:47 -08003838 struct page *page;
3839 void *kaddr = rb->pg_vec[i].buffer;
Johann Baudy69e3c752009-05-18 22:11:22 -07003840 int pg_num;
3841
Changli Gaoc56b4d92010-12-01 02:52:57 +00003842 for (pg_num = 0; pg_num < rb->pg_vec_pages; pg_num++) {
3843 page = pgv_to_page(kaddr);
Johann Baudy69e3c752009-05-18 22:11:22 -07003844 err = vm_insert_page(vma, start, page);
3845 if (unlikely(err))
3846 goto out;
3847 start += PAGE_SIZE;
Neil Horman0e3125c2010-11-16 10:26:47 -08003848 kaddr += PAGE_SIZE;
Johann Baudy69e3c752009-05-18 22:11:22 -07003849 }
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 }
Johann Baudy69e3c752009-05-18 22:11:22 -07003852
David S. Miller4ebf0ae2005-12-06 16:38:35 -08003853 atomic_inc(&po->mapped);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 vma->vm_ops = &packet_mmap_ops;
3855 err = 0;
3856
3857out:
Herbert Xu905db442009-01-30 14:12:06 -08003858 mutex_unlock(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 return err;
3860}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08003862static const struct proto_ops packet_ops_spkt = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 .family = PF_PACKET,
3864 .owner = THIS_MODULE,
3865 .release = packet_release,
3866 .bind = packet_bind_spkt,
3867 .connect = sock_no_connect,
3868 .socketpair = sock_no_socketpair,
3869 .accept = sock_no_accept,
3870 .getname = packet_getname_spkt,
3871 .poll = datagram_poll,
3872 .ioctl = packet_ioctl,
3873 .listen = sock_no_listen,
3874 .shutdown = sock_no_shutdown,
3875 .setsockopt = sock_no_setsockopt,
3876 .getsockopt = sock_no_getsockopt,
3877 .sendmsg = packet_sendmsg_spkt,
3878 .recvmsg = packet_recvmsg,
3879 .mmap = sock_no_mmap,
3880 .sendpage = sock_no_sendpage,
3881};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08003883static const struct proto_ops packet_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884 .family = PF_PACKET,
3885 .owner = THIS_MODULE,
3886 .release = packet_release,
3887 .bind = packet_bind,
3888 .connect = sock_no_connect,
3889 .socketpair = sock_no_socketpair,
3890 .accept = sock_no_accept,
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003891 .getname = packet_getname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 .poll = packet_poll,
3893 .ioctl = packet_ioctl,
3894 .listen = sock_no_listen,
3895 .shutdown = sock_no_shutdown,
3896 .setsockopt = packet_setsockopt,
3897 .getsockopt = packet_getsockopt,
3898 .sendmsg = packet_sendmsg,
3899 .recvmsg = packet_recvmsg,
3900 .mmap = packet_mmap,
3901 .sendpage = sock_no_sendpage,
3902};
3903
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00003904static const struct net_proto_family packet_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 .family = PF_PACKET,
3906 .create = packet_create,
3907 .owner = THIS_MODULE,
3908};
3909
3910static struct notifier_block packet_netdev_notifier = {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003911 .notifier_call = packet_notifier,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912};
3913
3914#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915
3916static void *packet_seq_start(struct seq_file *seq, loff_t *pos)
stephen hemminger808f5112010-02-22 07:57:18 +00003917 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918{
Denis V. Luneve372c412007-11-19 22:31:54 -08003919 struct net *net = seq_file_net(seq);
stephen hemminger808f5112010-02-22 07:57:18 +00003920
3921 rcu_read_lock();
3922 return seq_hlist_start_head_rcu(&net->packet.sklist, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923}
3924
3925static void *packet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3926{
Herbert Xu1bf40952007-12-16 14:04:02 -08003927 struct net *net = seq_file_net(seq);
stephen hemminger808f5112010-02-22 07:57:18 +00003928 return seq_hlist_next_rcu(v, &net->packet.sklist, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929}
3930
3931static void packet_seq_stop(struct seq_file *seq, void *v)
stephen hemminger808f5112010-02-22 07:57:18 +00003932 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933{
stephen hemminger808f5112010-02-22 07:57:18 +00003934 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935}
3936
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003937static int packet_seq_show(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938{
3939 if (v == SEQ_START_TOKEN)
3940 seq_puts(seq, "sk RefCnt Type Proto Iface R Rmem User Inode\n");
3941 else {
Li Zefanb7ceabd2010-02-08 23:19:29 +00003942 struct sock *s = sk_entry(v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943 const struct packet_sock *po = pkt_sk(s);
3944
3945 seq_printf(seq,
Dan Rosenberg71338aa2011-05-23 12:17:35 +00003946 "%pK %-6d %-4d %04x %-5d %1d %-6u %-6u %-6lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 s,
3948 atomic_read(&s->sk_refcnt),
3949 s->sk_type,
3950 ntohs(po->num),
3951 po->ifindex,
3952 po->running,
3953 atomic_read(&s->sk_rmem_alloc),
Eric W. Biedermana7cb5a42012-05-24 01:10:10 -06003954 from_kuid_munged(seq_user_ns(seq), sock_i_uid(s)),
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003955 sock_i_ino(s));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 }
3957
3958 return 0;
3959}
3960
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003961static const struct seq_operations packet_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 .start = packet_seq_start,
3963 .next = packet_seq_next,
3964 .stop = packet_seq_stop,
3965 .show = packet_seq_show,
3966};
3967
3968static int packet_seq_open(struct inode *inode, struct file *file)
3969{
Denis V. Luneve372c412007-11-19 22:31:54 -08003970 return seq_open_net(inode, file, &packet_seq_ops,
3971 sizeof(struct seq_net_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972}
3973
Arjan van de Venda7071d2007-02-12 00:55:36 -08003974static const struct file_operations packet_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 .owner = THIS_MODULE,
3976 .open = packet_seq_open,
3977 .read = seq_read,
3978 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08003979 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980};
3981
3982#endif
3983
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003984static int __net_init packet_net_init(struct net *net)
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08003985{
Pavel Emelyanov0fa7fa92012-08-21 01:06:47 +00003986 mutex_init(&net->packet.sklist_lock);
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08003987 INIT_HLIST_HEAD(&net->packet.sklist);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08003988
Gao fengd4beaa62013-02-18 01:34:54 +00003989 if (!proc_create("packet", 0, net->proc_net, &packet_seq_fops))
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08003990 return -ENOMEM;
3991
3992 return 0;
3993}
3994
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003995static void __net_exit packet_net_exit(struct net *net)
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08003996{
Gao fengece31ff2013-02-18 01:34:56 +00003997 remove_proc_entry("packet", net->proc_net);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08003998}
3999
4000static struct pernet_operations packet_net_ops = {
4001 .init = packet_net_init,
4002 .exit = packet_net_exit,
4003};
4004
4005
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006static void __exit packet_exit(void)
4007{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 unregister_netdevice_notifier(&packet_netdev_notifier);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08004009 unregister_pernet_subsys(&packet_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 sock_unregister(PF_PACKET);
4011 proto_unregister(&packet_proto);
4012}
4013
4014static int __init packet_init(void)
4015{
4016 int rc = proto_register(&packet_proto, 0);
4017
4018 if (rc != 0)
4019 goto out;
4020
4021 sock_register(&packet_family_ops);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08004022 register_pernet_subsys(&packet_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023 register_netdevice_notifier(&packet_netdev_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024out:
4025 return rc;
4026}
4027
4028module_init(packet_init);
4029module_exit(packet_exit);
4030MODULE_LICENSE("GPL");
4031MODULE_ALIAS_NETPROTO(PF_PACKET);