rds: Don't disable BH on BH context
[deliverable/linux.git] / net / packet / af_packet.c
CommitLineData
1da177e4
LT
1/*
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 *
02c30a84 8 * Authors: Ross Biro
1da177e4
LT
9 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
10 * Alan Cox, <gw4pts@gw4pts.ampr.org>
11 *
1ce4f28b 12 * Fixes:
1da177e4
LT
13 * 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.
1ce4f28b 35 * Ulises Alonso : Frame number limit removal and
1da177e4 36 * packet_set_ring memory leak.
0fb375fb
EB
37 * Eric Biederman : Allow for > 8 byte hardware addresses.
38 * The convention is that longer addresses
39 * will simply extend the hardware address
1ce4f28b 40 * byte arrays at the end of sockaddr_ll
0fb375fb 41 * and packet_mreq.
69e3c75f 42 * Johann Baudy : Added TX RING.
f6fb8f10 43 * Chetan Loke : Implemented TPACKET_V3 block abstraction
44 * layer.
45 * Copyright (C) 2011, <lokec@ccs.neu.edu>
46 *
1da177e4
LT
47 *
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 */
1ce4f28b 54
1da177e4 55#include <linux/types.h>
1da177e4 56#include <linux/mm.h>
4fc268d2 57#include <linux/capability.h>
1da177e4
LT
58#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>
ffbc6111 65#include <linux/kernel.h>
1da177e4 66#include <linux/kmod.h>
5a0e3ad6 67#include <linux/slab.h>
0e3125c7 68#include <linux/vmalloc.h>
457c4cbc 69#include <net/net_namespace.h>
1da177e4
LT
70#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>
1da177e4
LT
76#include <asm/uaccess.h>
77#include <asm/ioctls.h>
78#include <asm/page.h>
a1f8e7f7 79#include <asm/cacheflush.h>
1da177e4
LT
80#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>
905db440 86#include <linux/mutex.h>
05423b24 87#include <linux/if_vlan.h>
bfd5f4a3 88#include <linux/virtio_net.h>
ed85b565 89#include <linux/errqueue.h>
614f60fa 90#include <linux/net_tstamp.h>
1da177e4
LT
91
92#ifdef CONFIG_INET
93#include <net/inet_common.h>
94#endif
95
2787b04b
PE
96#include "internal.h"
97
1da177e4
LT
98/*
99 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
b0e380b1
ACM
113 mac_header -> ll header
114 data -> data
1da177e4
LT
115
116Outgoing, dev->hard_header!=NULL
b0e380b1
ACM
117 mac_header -> ll header
118 data -> ll header
1da177e4
LT
119
120Incoming, dev->hard_header==NULL
b0e380b1
ACM
121 mac_header -> UNKNOWN position. It is very likely, that it points to ll
122 header. PPP makes it, that is wrong, because introduce
db0c58f9 123 assymetry between rx and tx paths.
b0e380b1 124 data -> data
1da177e4
LT
125
126Outgoing, dev->hard_header==NULL
b0e380b1
ACM
127 mac_header -> data. ll header is still not built!
128 data -> data
1da177e4
LT
129
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
b0e380b1
ACM
138 mac_header -> ll header
139 data -> ll header
1da177e4
LT
140
141dev->hard_header == NULL (ll header is added by device, we cannot control it)
b0e380b1
ACM
142 mac_header -> data
143 data -> data
1da177e4
LT
144
145 We should set nh.raw on output to correct posistion,
146 packet classifier depends on it.
147 */
148
1da177e4
LT
149/* Private packet socket structures. */
150
0fb375fb
EB
151/* identical to struct packet_mreq except it has
152 * a longer address field.
153 */
40d4e3df 154struct packet_mreq_max {
0fb375fb
EB
155 int mr_ifindex;
156 unsigned short mr_type;
157 unsigned short mr_alen;
158 unsigned char mr_address[MAX_ADDR_LEN];
1da177e4 159};
a2efcfa0 160
f6fb8f10 161static int packet_set_ring(struct sock *sk, union tpacket_req_u *req_u,
69e3c75f
JB
162 int closing, int tx_ring);
163
f6fb8f10 164
165#define V3_ALIGNMENT (8)
166
bc59ba39 167#define BLK_HDR_LEN (ALIGN(sizeof(struct tpacket_block_desc), V3_ALIGNMENT))
f6fb8f10 168
169#define BLK_PLUS_PRIV(sz_of_priv) \
170 (BLK_HDR_LEN + ALIGN((sz_of_priv), V3_ALIGNMENT))
171
f6fb8f10 172#define PGV_FROM_VMALLOC 1
69e3c75f 173
f6fb8f10 174#define BLOCK_STATUS(x) ((x)->hdr.bh1.block_status)
175#define BLOCK_NUM_PKTS(x) ((x)->hdr.bh1.num_pkts)
176#define BLOCK_O2FP(x) ((x)->hdr.bh1.offset_to_first_pkt)
177#define BLOCK_LEN(x) ((x)->hdr.bh1.blk_len)
178#define BLOCK_SNUM(x) ((x)->hdr.bh1.seq_num)
179#define BLOCK_O2PRIV(x) ((x)->offset_to_priv)
180#define BLOCK_PRIV(x) ((void *)((char *)(x) + BLOCK_O2PRIV(x)))
181
69e3c75f
JB
182struct packet_sock;
183static int tpacket_snd(struct packet_sock *po, struct msghdr *msg);
1da177e4 184
f6fb8f10 185static void *packet_previous_frame(struct packet_sock *po,
186 struct packet_ring_buffer *rb,
187 int status);
188static void packet_increment_head(struct packet_ring_buffer *buff);
bc59ba39 189static int prb_curr_blk_in_use(struct tpacket_kbdq_core *,
190 struct tpacket_block_desc *);
191static void *prb_dispatch_next_block(struct tpacket_kbdq_core *,
f6fb8f10 192 struct packet_sock *);
bc59ba39 193static void prb_retire_current_block(struct tpacket_kbdq_core *,
f6fb8f10 194 struct packet_sock *, unsigned int status);
bc59ba39 195static int prb_queue_frozen(struct tpacket_kbdq_core *);
196static void prb_open_block(struct tpacket_kbdq_core *,
197 struct tpacket_block_desc *);
f6fb8f10 198static void prb_retire_rx_blk_timer_expired(unsigned long);
bc59ba39 199static void _prb_refresh_rx_retire_blk_timer(struct tpacket_kbdq_core *);
200static void prb_init_blk_timer(struct packet_sock *,
201 struct tpacket_kbdq_core *,
202 void (*func) (unsigned long));
203static void prb_fill_rxhash(struct tpacket_kbdq_core *, struct tpacket3_hdr *);
204static void prb_clear_rxhash(struct tpacket_kbdq_core *,
205 struct tpacket3_hdr *);
206static void prb_fill_vlan_info(struct tpacket_kbdq_core *,
207 struct tpacket3_hdr *);
1da177e4
LT
208static void packet_flush_mclist(struct sock *sk);
209
ffbc6111
HX
210struct packet_skb_cb {
211 unsigned int origlen;
212 union {
213 struct sockaddr_pkt pkt;
214 struct sockaddr_ll ll;
215 } sa;
216};
217
218#define PACKET_SKB_CB(__skb) ((struct packet_skb_cb *)((__skb)->cb))
8dc41944 219
bc59ba39 220#define GET_PBDQC_FROM_RB(x) ((struct tpacket_kbdq_core *)(&(x)->prb_bdqc))
f6fb8f10 221#define GET_PBLOCK_DESC(x, bid) \
bc59ba39 222 ((struct tpacket_block_desc *)((x)->pkbdq[(bid)].buffer))
f6fb8f10 223#define GET_CURR_PBLOCK_DESC_FROM_CORE(x) \
bc59ba39 224 ((struct tpacket_block_desc *)((x)->pkbdq[(x)->kactive_blk_num].buffer))
f6fb8f10 225#define GET_NEXT_PRB_BLK_NUM(x) \
226 (((x)->kactive_blk_num < ((x)->knum_blocks-1)) ? \
227 ((x)->kactive_blk_num+1) : 0)
228
dc99f600
DM
229static void __fanout_unlink(struct sock *sk, struct packet_sock *po);
230static void __fanout_link(struct sock *sk, struct packet_sock *po);
231
ce06b03e
DM
232/* register_prot_hook must be invoked with the po->bind_lock held,
233 * or from a context in which asynchronous accesses to the packet
234 * socket is not possible (packet_create()).
235 */
236static void register_prot_hook(struct sock *sk)
237{
238 struct packet_sock *po = pkt_sk(sk);
239 if (!po->running) {
dc99f600
DM
240 if (po->fanout)
241 __fanout_link(sk, po);
242 else
243 dev_add_pack(&po->prot_hook);
ce06b03e
DM
244 sock_hold(sk);
245 po->running = 1;
246 }
247}
248
249/* {,__}unregister_prot_hook() must be invoked with the po->bind_lock
250 * held. If the sync parameter is true, we will temporarily drop
251 * the po->bind_lock and do a synchronize_net to make sure no
252 * asynchronous packet processing paths still refer to the elements
253 * of po->prot_hook. If the sync parameter is false, it is the
254 * callers responsibility to take care of this.
255 */
256static void __unregister_prot_hook(struct sock *sk, bool sync)
257{
258 struct packet_sock *po = pkt_sk(sk);
259
260 po->running = 0;
dc99f600
DM
261 if (po->fanout)
262 __fanout_unlink(sk, po);
263 else
264 __dev_remove_pack(&po->prot_hook);
ce06b03e
DM
265 __sock_put(sk);
266
267 if (sync) {
268 spin_unlock(&po->bind_lock);
269 synchronize_net();
270 spin_lock(&po->bind_lock);
271 }
272}
273
274static void unregister_prot_hook(struct sock *sk, bool sync)
275{
276 struct packet_sock *po = pkt_sk(sk);
277
278 if (po->running)
279 __unregister_prot_hook(sk, sync);
280}
281
f6dafa95 282static inline __pure struct page *pgv_to_page(void *addr)
0af55bb5
CG
283{
284 if (is_vmalloc_addr(addr))
285 return vmalloc_to_page(addr);
286 return virt_to_page(addr);
287}
288
69e3c75f 289static void __packet_set_status(struct packet_sock *po, void *frame, int status)
1da177e4 290{
bbd6ef87
PM
291 union {
292 struct tpacket_hdr *h1;
293 struct tpacket2_hdr *h2;
294 void *raw;
295 } h;
1da177e4 296
69e3c75f 297 h.raw = frame;
bbd6ef87
PM
298 switch (po->tp_version) {
299 case TPACKET_V1:
69e3c75f 300 h.h1->tp_status = status;
0af55bb5 301 flush_dcache_page(pgv_to_page(&h.h1->tp_status));
bbd6ef87
PM
302 break;
303 case TPACKET_V2:
69e3c75f 304 h.h2->tp_status = status;
0af55bb5 305 flush_dcache_page(pgv_to_page(&h.h2->tp_status));
bbd6ef87 306 break;
f6fb8f10 307 case TPACKET_V3:
69e3c75f 308 default:
f6fb8f10 309 WARN(1, "TPACKET version not supported.\n");
69e3c75f 310 BUG();
bbd6ef87 311 }
69e3c75f
JB
312
313 smp_wmb();
bbd6ef87
PM
314}
315
69e3c75f 316static int __packet_get_status(struct packet_sock *po, void *frame)
bbd6ef87
PM
317{
318 union {
319 struct tpacket_hdr *h1;
320 struct tpacket2_hdr *h2;
321 void *raw;
322 } h;
323
69e3c75f
JB
324 smp_rmb();
325
bbd6ef87
PM
326 h.raw = frame;
327 switch (po->tp_version) {
328 case TPACKET_V1:
0af55bb5 329 flush_dcache_page(pgv_to_page(&h.h1->tp_status));
69e3c75f 330 return h.h1->tp_status;
bbd6ef87 331 case TPACKET_V2:
0af55bb5 332 flush_dcache_page(pgv_to_page(&h.h2->tp_status));
69e3c75f 333 return h.h2->tp_status;
f6fb8f10 334 case TPACKET_V3:
69e3c75f 335 default:
f6fb8f10 336 WARN(1, "TPACKET version not supported.\n");
69e3c75f
JB
337 BUG();
338 return 0;
bbd6ef87 339 }
1da177e4 340}
69e3c75f
JB
341
342static void *packet_lookup_frame(struct packet_sock *po,
343 struct packet_ring_buffer *rb,
344 unsigned int position,
345 int status)
346{
347 unsigned int pg_vec_pos, frame_offset;
348 union {
349 struct tpacket_hdr *h1;
350 struct tpacket2_hdr *h2;
351 void *raw;
352 } h;
353
354 pg_vec_pos = position / rb->frames_per_block;
355 frame_offset = position % rb->frames_per_block;
356
0e3125c7
NH
357 h.raw = rb->pg_vec[pg_vec_pos].buffer +
358 (frame_offset * rb->frame_size);
69e3c75f
JB
359
360 if (status != __packet_get_status(po, h.raw))
361 return NULL;
362
363 return h.raw;
364}
365
eea49cc9 366static void *packet_current_frame(struct packet_sock *po,
69e3c75f
JB
367 struct packet_ring_buffer *rb,
368 int status)
369{
370 return packet_lookup_frame(po, rb, rb->head, status);
371}
372
bc59ba39 373static void prb_del_retire_blk_timer(struct tpacket_kbdq_core *pkc)
f6fb8f10 374{
375 del_timer_sync(&pkc->retire_blk_timer);
376}
377
378static void prb_shutdown_retire_blk_timer(struct packet_sock *po,
379 int tx_ring,
380 struct sk_buff_head *rb_queue)
381{
bc59ba39 382 struct tpacket_kbdq_core *pkc;
f6fb8f10 383
384 pkc = tx_ring ? &po->tx_ring.prb_bdqc : &po->rx_ring.prb_bdqc;
385
386 spin_lock(&rb_queue->lock);
387 pkc->delete_blk_timer = 1;
388 spin_unlock(&rb_queue->lock);
389
390 prb_del_retire_blk_timer(pkc);
391}
392
393static void prb_init_blk_timer(struct packet_sock *po,
bc59ba39 394 struct tpacket_kbdq_core *pkc,
f6fb8f10 395 void (*func) (unsigned long))
396{
397 init_timer(&pkc->retire_blk_timer);
398 pkc->retire_blk_timer.data = (long)po;
399 pkc->retire_blk_timer.function = func;
400 pkc->retire_blk_timer.expires = jiffies;
401}
402
403static void prb_setup_retire_blk_timer(struct packet_sock *po, int tx_ring)
404{
bc59ba39 405 struct tpacket_kbdq_core *pkc;
f6fb8f10 406
407 if (tx_ring)
408 BUG();
409
410 pkc = tx_ring ? &po->tx_ring.prb_bdqc : &po->rx_ring.prb_bdqc;
411 prb_init_blk_timer(po, pkc, prb_retire_rx_blk_timer_expired);
412}
413
414static int prb_calc_retire_blk_tmo(struct packet_sock *po,
415 int blk_size_in_bytes)
416{
417 struct net_device *dev;
418 unsigned int mbits = 0, msec = 0, div = 0, tmo = 0;
4bc71cb9
JP
419 struct ethtool_cmd ecmd;
420 int err;
e440cf2c 421 u32 speed;
f6fb8f10 422
4bc71cb9
JP
423 rtnl_lock();
424 dev = __dev_get_by_index(sock_net(&po->sk), po->ifindex);
425 if (unlikely(!dev)) {
426 rtnl_unlock();
f6fb8f10 427 return DEFAULT_PRB_RETIRE_TOV;
4bc71cb9
JP
428 }
429 err = __ethtool_get_settings(dev, &ecmd);
e440cf2c 430 speed = ethtool_cmd_speed(&ecmd);
4bc71cb9
JP
431 rtnl_unlock();
432 if (!err) {
4bc71cb9
JP
433 /*
434 * If the link speed is so slow you don't really
435 * need to worry about perf anyways
436 */
e440cf2c 437 if (speed < SPEED_1000 || speed == SPEED_UNKNOWN) {
4bc71cb9 438 return DEFAULT_PRB_RETIRE_TOV;
e440cf2c 439 } else {
440 msec = 1;
441 div = speed / 1000;
f6fb8f10 442 }
443 }
444
445 mbits = (blk_size_in_bytes * 8) / (1024 * 1024);
446
447 if (div)
448 mbits /= div;
449
450 tmo = mbits * msec;
451
452 if (div)
453 return tmo+1;
454 return tmo;
455}
456
bc59ba39 457static void prb_init_ft_ops(struct tpacket_kbdq_core *p1,
f6fb8f10 458 union tpacket_req_u *req_u)
459{
460 p1->feature_req_word = req_u->req3.tp_feature_req_word;
461}
462
463static void init_prb_bdqc(struct packet_sock *po,
464 struct packet_ring_buffer *rb,
465 struct pgv *pg_vec,
466 union tpacket_req_u *req_u, int tx_ring)
467{
bc59ba39 468 struct tpacket_kbdq_core *p1 = &rb->prb_bdqc;
469 struct tpacket_block_desc *pbd;
f6fb8f10 470
471 memset(p1, 0x0, sizeof(*p1));
472
473 p1->knxt_seq_num = 1;
474 p1->pkbdq = pg_vec;
bc59ba39 475 pbd = (struct tpacket_block_desc *)pg_vec[0].buffer;
e3192690 476 p1->pkblk_start = pg_vec[0].buffer;
f6fb8f10 477 p1->kblk_size = req_u->req3.tp_block_size;
478 p1->knum_blocks = req_u->req3.tp_block_nr;
479 p1->hdrlen = po->tp_hdrlen;
480 p1->version = po->tp_version;
481 p1->last_kactive_blk_num = 0;
482 po->stats_u.stats3.tp_freeze_q_cnt = 0;
483 if (req_u->req3.tp_retire_blk_tov)
484 p1->retire_blk_tov = req_u->req3.tp_retire_blk_tov;
485 else
486 p1->retire_blk_tov = prb_calc_retire_blk_tmo(po,
487 req_u->req3.tp_block_size);
488 p1->tov_in_jiffies = msecs_to_jiffies(p1->retire_blk_tov);
489 p1->blk_sizeof_priv = req_u->req3.tp_sizeof_priv;
490
491 prb_init_ft_ops(p1, req_u);
492 prb_setup_retire_blk_timer(po, tx_ring);
493 prb_open_block(p1, pbd);
494}
495
496/* Do NOT update the last_blk_num first.
497 * Assumes sk_buff_head lock is held.
498 */
bc59ba39 499static void _prb_refresh_rx_retire_blk_timer(struct tpacket_kbdq_core *pkc)
f6fb8f10 500{
501 mod_timer(&pkc->retire_blk_timer,
502 jiffies + pkc->tov_in_jiffies);
503 pkc->last_kactive_blk_num = pkc->kactive_blk_num;
504}
505
506/*
507 * Timer logic:
508 * 1) We refresh the timer only when we open a block.
509 * By doing this we don't waste cycles refreshing the timer
510 * on packet-by-packet basis.
511 *
512 * With a 1MB block-size, on a 1Gbps line, it will take
513 * i) ~8 ms to fill a block + ii) memcpy etc.
514 * In this cut we are not accounting for the memcpy time.
515 *
516 * So, if the user sets the 'tmo' to 10ms then the timer
517 * will never fire while the block is still getting filled
518 * (which is what we want). However, the user could choose
519 * to close a block early and that's fine.
520 *
521 * But when the timer does fire, we check whether or not to refresh it.
522 * Since the tmo granularity is in msecs, it is not too expensive
523 * to refresh the timer, lets say every '8' msecs.
524 * Either the user can set the 'tmo' or we can derive it based on
525 * a) line-speed and b) block-size.
526 * prb_calc_retire_blk_tmo() calculates the tmo.
527 *
528 */
529static void prb_retire_rx_blk_timer_expired(unsigned long data)
530{
531 struct packet_sock *po = (struct packet_sock *)data;
bc59ba39 532 struct tpacket_kbdq_core *pkc = &po->rx_ring.prb_bdqc;
f6fb8f10 533 unsigned int frozen;
bc59ba39 534 struct tpacket_block_desc *pbd;
f6fb8f10 535
536 spin_lock(&po->sk.sk_receive_queue.lock);
537
538 frozen = prb_queue_frozen(pkc);
539 pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
540
541 if (unlikely(pkc->delete_blk_timer))
542 goto out;
543
544 /* We only need to plug the race when the block is partially filled.
545 * tpacket_rcv:
546 * lock(); increment BLOCK_NUM_PKTS; unlock()
547 * copy_bits() is in progress ...
548 * timer fires on other cpu:
549 * we can't retire the current block because copy_bits
550 * is in progress.
551 *
552 */
553 if (BLOCK_NUM_PKTS(pbd)) {
554 while (atomic_read(&pkc->blk_fill_in_prog)) {
555 /* Waiting for skb_copy_bits to finish... */
556 cpu_relax();
557 }
558 }
559
560 if (pkc->last_kactive_blk_num == pkc->kactive_blk_num) {
561 if (!frozen) {
562 prb_retire_current_block(pkc, po, TP_STATUS_BLK_TMO);
563 if (!prb_dispatch_next_block(pkc, po))
564 goto refresh_timer;
565 else
566 goto out;
567 } else {
568 /* Case 1. Queue was frozen because user-space was
569 * lagging behind.
570 */
571 if (prb_curr_blk_in_use(pkc, pbd)) {
572 /*
573 * Ok, user-space is still behind.
574 * So just refresh the timer.
575 */
576 goto refresh_timer;
577 } else {
578 /* Case 2. queue was frozen,user-space caught up,
579 * now the link went idle && the timer fired.
580 * We don't have a block to close.So we open this
581 * block and restart the timer.
582 * opening a block thaws the queue,restarts timer
583 * Thawing/timer-refresh is a side effect.
584 */
585 prb_open_block(pkc, pbd);
586 goto out;
587 }
588 }
589 }
590
591refresh_timer:
592 _prb_refresh_rx_retire_blk_timer(pkc);
593
594out:
595 spin_unlock(&po->sk.sk_receive_queue.lock);
596}
597
eea49cc9 598static void prb_flush_block(struct tpacket_kbdq_core *pkc1,
bc59ba39 599 struct tpacket_block_desc *pbd1, __u32 status)
f6fb8f10 600{
601 /* Flush everything minus the block header */
602
603#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
604 u8 *start, *end;
605
606 start = (u8 *)pbd1;
607
608 /* Skip the block header(we know header WILL fit in 4K) */
609 start += PAGE_SIZE;
610
611 end = (u8 *)PAGE_ALIGN((unsigned long)pkc1->pkblk_end);
612 for (; start < end; start += PAGE_SIZE)
613 flush_dcache_page(pgv_to_page(start));
614
615 smp_wmb();
616#endif
617
618 /* Now update the block status. */
619
620 BLOCK_STATUS(pbd1) = status;
621
622 /* Flush the block header */
623
624#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
625 start = (u8 *)pbd1;
626 flush_dcache_page(pgv_to_page(start));
627
628 smp_wmb();
629#endif
630}
631
632/*
633 * Side effect:
634 *
635 * 1) flush the block
636 * 2) Increment active_blk_num
637 *
638 * Note:We DONT refresh the timer on purpose.
639 * Because almost always the next block will be opened.
640 */
bc59ba39 641static void prb_close_block(struct tpacket_kbdq_core *pkc1,
642 struct tpacket_block_desc *pbd1,
f6fb8f10 643 struct packet_sock *po, unsigned int stat)
644{
645 __u32 status = TP_STATUS_USER | stat;
646
647 struct tpacket3_hdr *last_pkt;
bc59ba39 648 struct tpacket_hdr_v1 *h1 = &pbd1->hdr.bh1;
f6fb8f10 649
650 if (po->stats.tp_drops)
651 status |= TP_STATUS_LOSING;
652
653 last_pkt = (struct tpacket3_hdr *)pkc1->prev;
654 last_pkt->tp_next_offset = 0;
655
656 /* Get the ts of the last pkt */
657 if (BLOCK_NUM_PKTS(pbd1)) {
658 h1->ts_last_pkt.ts_sec = last_pkt->tp_sec;
659 h1->ts_last_pkt.ts_nsec = last_pkt->tp_nsec;
660 } else {
661 /* Ok, we tmo'd - so get the current time */
662 struct timespec ts;
663 getnstimeofday(&ts);
664 h1->ts_last_pkt.ts_sec = ts.tv_sec;
665 h1->ts_last_pkt.ts_nsec = ts.tv_nsec;
666 }
667
668 smp_wmb();
669
670 /* Flush the block */
671 prb_flush_block(pkc1, pbd1, status);
672
673 pkc1->kactive_blk_num = GET_NEXT_PRB_BLK_NUM(pkc1);
674}
675
eea49cc9 676static void prb_thaw_queue(struct tpacket_kbdq_core *pkc)
f6fb8f10 677{
678 pkc->reset_pending_on_curr_blk = 0;
679}
680
681/*
682 * Side effect of opening a block:
683 *
684 * 1) prb_queue is thawed.
685 * 2) retire_blk_timer is refreshed.
686 *
687 */
bc59ba39 688static void prb_open_block(struct tpacket_kbdq_core *pkc1,
689 struct tpacket_block_desc *pbd1)
f6fb8f10 690{
691 struct timespec ts;
bc59ba39 692 struct tpacket_hdr_v1 *h1 = &pbd1->hdr.bh1;
f6fb8f10 693
694 smp_rmb();
695
696 if (likely(TP_STATUS_KERNEL == BLOCK_STATUS(pbd1))) {
697
698 /* We could have just memset this but we will lose the
699 * flexibility of making the priv area sticky
700 */
701 BLOCK_SNUM(pbd1) = pkc1->knxt_seq_num++;
702 BLOCK_NUM_PKTS(pbd1) = 0;
703 BLOCK_LEN(pbd1) = BLK_PLUS_PRIV(pkc1->blk_sizeof_priv);
704 getnstimeofday(&ts);
705 h1->ts_first_pkt.ts_sec = ts.tv_sec;
706 h1->ts_first_pkt.ts_nsec = ts.tv_nsec;
707 pkc1->pkblk_start = (char *)pbd1;
e3192690 708 pkc1->nxt_offset = pkc1->pkblk_start + BLK_PLUS_PRIV(pkc1->blk_sizeof_priv);
f6fb8f10 709 BLOCK_O2FP(pbd1) = (__u32)BLK_PLUS_PRIV(pkc1->blk_sizeof_priv);
710 BLOCK_O2PRIV(pbd1) = BLK_HDR_LEN;
711 pbd1->version = pkc1->version;
712 pkc1->prev = pkc1->nxt_offset;
713 pkc1->pkblk_end = pkc1->pkblk_start + pkc1->kblk_size;
714 prb_thaw_queue(pkc1);
715 _prb_refresh_rx_retire_blk_timer(pkc1);
716
717 smp_wmb();
718
719 return;
720 }
721
722 WARN(1, "ERROR block:%p is NOT FREE status:%d kactive_blk_num:%d\n",
723 pbd1, BLOCK_STATUS(pbd1), pkc1->kactive_blk_num);
724 dump_stack();
725 BUG();
726}
727
728/*
729 * Queue freeze logic:
730 * 1) Assume tp_block_nr = 8 blocks.
731 * 2) At time 't0', user opens Rx ring.
732 * 3) Some time past 't0', kernel starts filling blocks starting from 0 .. 7
733 * 4) user-space is either sleeping or processing block '0'.
734 * 5) tpacket_rcv is currently filling block '7', since there is no space left,
735 * it will close block-7,loop around and try to fill block '0'.
736 * call-flow:
737 * __packet_lookup_frame_in_block
738 * prb_retire_current_block()
739 * prb_dispatch_next_block()
740 * |->(BLOCK_STATUS == USER) evaluates to true
741 * 5.1) Since block-0 is currently in-use, we just freeze the queue.
742 * 6) Now there are two cases:
743 * 6.1) Link goes idle right after the queue is frozen.
744 * But remember, the last open_block() refreshed the timer.
745 * When this timer expires,it will refresh itself so that we can
746 * re-open block-0 in near future.
747 * 6.2) Link is busy and keeps on receiving packets. This is a simple
748 * case and __packet_lookup_frame_in_block will check if block-0
749 * is free and can now be re-used.
750 */
eea49cc9 751static void prb_freeze_queue(struct tpacket_kbdq_core *pkc,
f6fb8f10 752 struct packet_sock *po)
753{
754 pkc->reset_pending_on_curr_blk = 1;
755 po->stats_u.stats3.tp_freeze_q_cnt++;
756}
757
758#define TOTAL_PKT_LEN_INCL_ALIGN(length) (ALIGN((length), V3_ALIGNMENT))
759
760/*
761 * If the next block is free then we will dispatch it
762 * and return a good offset.
763 * Else, we will freeze the queue.
764 * So, caller must check the return value.
765 */
bc59ba39 766static void *prb_dispatch_next_block(struct tpacket_kbdq_core *pkc,
f6fb8f10 767 struct packet_sock *po)
768{
bc59ba39 769 struct tpacket_block_desc *pbd;
f6fb8f10 770
771 smp_rmb();
772
773 /* 1. Get current block num */
774 pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
775
776 /* 2. If this block is currently in_use then freeze the queue */
777 if (TP_STATUS_USER & BLOCK_STATUS(pbd)) {
778 prb_freeze_queue(pkc, po);
779 return NULL;
780 }
781
782 /*
783 * 3.
784 * open this block and return the offset where the first packet
785 * needs to get stored.
786 */
787 prb_open_block(pkc, pbd);
788 return (void *)pkc->nxt_offset;
789}
790
bc59ba39 791static void prb_retire_current_block(struct tpacket_kbdq_core *pkc,
f6fb8f10 792 struct packet_sock *po, unsigned int status)
793{
bc59ba39 794 struct tpacket_block_desc *pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
f6fb8f10 795
796 /* retire/close the current block */
797 if (likely(TP_STATUS_KERNEL == BLOCK_STATUS(pbd))) {
798 /*
799 * Plug the case where copy_bits() is in progress on
800 * cpu-0 and tpacket_rcv() got invoked on cpu-1, didn't
801 * have space to copy the pkt in the current block and
802 * called prb_retire_current_block()
803 *
804 * We don't need to worry about the TMO case because
805 * the timer-handler already handled this case.
806 */
807 if (!(status & TP_STATUS_BLK_TMO)) {
808 while (atomic_read(&pkc->blk_fill_in_prog)) {
809 /* Waiting for skb_copy_bits to finish... */
810 cpu_relax();
811 }
812 }
813 prb_close_block(pkc, pbd, po, status);
814 return;
815 }
816
817 WARN(1, "ERROR-pbd[%d]:%p\n", pkc->kactive_blk_num, pbd);
818 dump_stack();
819 BUG();
820}
821
eea49cc9 822static int prb_curr_blk_in_use(struct tpacket_kbdq_core *pkc,
bc59ba39 823 struct tpacket_block_desc *pbd)
f6fb8f10 824{
825 return TP_STATUS_USER & BLOCK_STATUS(pbd);
826}
827
eea49cc9 828static int prb_queue_frozen(struct tpacket_kbdq_core *pkc)
f6fb8f10 829{
830 return pkc->reset_pending_on_curr_blk;
831}
832
eea49cc9 833static void prb_clear_blk_fill_status(struct packet_ring_buffer *rb)
f6fb8f10 834{
bc59ba39 835 struct tpacket_kbdq_core *pkc = GET_PBDQC_FROM_RB(rb);
f6fb8f10 836 atomic_dec(&pkc->blk_fill_in_prog);
837}
838
eea49cc9 839static void prb_fill_rxhash(struct tpacket_kbdq_core *pkc,
f6fb8f10 840 struct tpacket3_hdr *ppd)
841{
842 ppd->hv1.tp_rxhash = skb_get_rxhash(pkc->skb);
843}
844
eea49cc9 845static void prb_clear_rxhash(struct tpacket_kbdq_core *pkc,
f6fb8f10 846 struct tpacket3_hdr *ppd)
847{
848 ppd->hv1.tp_rxhash = 0;
849}
850
eea49cc9 851static void prb_fill_vlan_info(struct tpacket_kbdq_core *pkc,
f6fb8f10 852 struct tpacket3_hdr *ppd)
853{
854 if (vlan_tx_tag_present(pkc->skb)) {
855 ppd->hv1.tp_vlan_tci = vlan_tx_tag_get(pkc->skb);
856 ppd->tp_status = TP_STATUS_VLAN_VALID;
857 } else {
858 ppd->hv1.tp_vlan_tci = ppd->tp_status = 0;
859 }
860}
861
bc59ba39 862static void prb_run_all_ft_ops(struct tpacket_kbdq_core *pkc,
f6fb8f10 863 struct tpacket3_hdr *ppd)
864{
865 prb_fill_vlan_info(pkc, ppd);
866
867 if (pkc->feature_req_word & TP_FT_REQ_FILL_RXHASH)
868 prb_fill_rxhash(pkc, ppd);
869 else
870 prb_clear_rxhash(pkc, ppd);
871}
872
eea49cc9 873static void prb_fill_curr_block(char *curr,
bc59ba39 874 struct tpacket_kbdq_core *pkc,
875 struct tpacket_block_desc *pbd,
f6fb8f10 876 unsigned int len)
877{
878 struct tpacket3_hdr *ppd;
879
880 ppd = (struct tpacket3_hdr *)curr;
881 ppd->tp_next_offset = TOTAL_PKT_LEN_INCL_ALIGN(len);
882 pkc->prev = curr;
883 pkc->nxt_offset += TOTAL_PKT_LEN_INCL_ALIGN(len);
884 BLOCK_LEN(pbd) += TOTAL_PKT_LEN_INCL_ALIGN(len);
885 BLOCK_NUM_PKTS(pbd) += 1;
886 atomic_inc(&pkc->blk_fill_in_prog);
887 prb_run_all_ft_ops(pkc, ppd);
888}
889
890/* Assumes caller has the sk->rx_queue.lock */
891static void *__packet_lookup_frame_in_block(struct packet_sock *po,
892 struct sk_buff *skb,
893 int status,
894 unsigned int len
895 )
896{
bc59ba39 897 struct tpacket_kbdq_core *pkc;
898 struct tpacket_block_desc *pbd;
f6fb8f10 899 char *curr, *end;
900
e3192690 901 pkc = GET_PBDQC_FROM_RB(&po->rx_ring);
f6fb8f10 902 pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
903
904 /* Queue is frozen when user space is lagging behind */
905 if (prb_queue_frozen(pkc)) {
906 /*
907 * Check if that last block which caused the queue to freeze,
908 * is still in_use by user-space.
909 */
910 if (prb_curr_blk_in_use(pkc, pbd)) {
911 /* Can't record this packet */
912 return NULL;
913 } else {
914 /*
915 * Ok, the block was released by user-space.
916 * Now let's open that block.
917 * opening a block also thaws the queue.
918 * Thawing is a side effect.
919 */
920 prb_open_block(pkc, pbd);
921 }
922 }
923
924 smp_mb();
925 curr = pkc->nxt_offset;
926 pkc->skb = skb;
e3192690 927 end = (char *)pbd + pkc->kblk_size;
f6fb8f10 928
929 /* first try the current block */
930 if (curr+TOTAL_PKT_LEN_INCL_ALIGN(len) < end) {
931 prb_fill_curr_block(curr, pkc, pbd, len);
932 return (void *)curr;
933 }
934
935 /* Ok, close the current block */
936 prb_retire_current_block(pkc, po, 0);
937
938 /* Now, try to dispatch the next block */
939 curr = (char *)prb_dispatch_next_block(pkc, po);
940 if (curr) {
941 pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
942 prb_fill_curr_block(curr, pkc, pbd, len);
943 return (void *)curr;
944 }
945
946 /*
947 * No free blocks are available.user_space hasn't caught up yet.
948 * Queue was just frozen and now this packet will get dropped.
949 */
950 return NULL;
951}
952
eea49cc9 953static void *packet_current_rx_frame(struct packet_sock *po,
f6fb8f10 954 struct sk_buff *skb,
955 int status, unsigned int len)
956{
957 char *curr = NULL;
958 switch (po->tp_version) {
959 case TPACKET_V1:
960 case TPACKET_V2:
961 curr = packet_lookup_frame(po, &po->rx_ring,
962 po->rx_ring.head, status);
963 return curr;
964 case TPACKET_V3:
965 return __packet_lookup_frame_in_block(po, skb, status, len);
966 default:
967 WARN(1, "TPACKET version not supported\n");
968 BUG();
99aa3473 969 return NULL;
f6fb8f10 970 }
971}
972
eea49cc9 973static void *prb_lookup_block(struct packet_sock *po,
f6fb8f10 974 struct packet_ring_buffer *rb,
975 unsigned int previous,
976 int status)
977{
bc59ba39 978 struct tpacket_kbdq_core *pkc = GET_PBDQC_FROM_RB(rb);
979 struct tpacket_block_desc *pbd = GET_PBLOCK_DESC(pkc, previous);
f6fb8f10 980
981 if (status != BLOCK_STATUS(pbd))
982 return NULL;
983 return pbd;
984}
985
eea49cc9 986static int prb_previous_blk_num(struct packet_ring_buffer *rb)
f6fb8f10 987{
988 unsigned int prev;
989 if (rb->prb_bdqc.kactive_blk_num)
990 prev = rb->prb_bdqc.kactive_blk_num-1;
991 else
992 prev = rb->prb_bdqc.knum_blocks-1;
993 return prev;
994}
995
996/* Assumes caller has held the rx_queue.lock */
eea49cc9 997static void *__prb_previous_block(struct packet_sock *po,
f6fb8f10 998 struct packet_ring_buffer *rb,
999 int status)
1000{
1001 unsigned int previous = prb_previous_blk_num(rb);
1002 return prb_lookup_block(po, rb, previous, status);
1003}
1004
eea49cc9 1005static void *packet_previous_rx_frame(struct packet_sock *po,
f6fb8f10 1006 struct packet_ring_buffer *rb,
1007 int status)
1008{
1009 if (po->tp_version <= TPACKET_V2)
1010 return packet_previous_frame(po, rb, status);
1011
1012 return __prb_previous_block(po, rb, status);
1013}
1014
eea49cc9 1015static void packet_increment_rx_head(struct packet_sock *po,
f6fb8f10 1016 struct packet_ring_buffer *rb)
1017{
1018 switch (po->tp_version) {
1019 case TPACKET_V1:
1020 case TPACKET_V2:
1021 return packet_increment_head(rb);
1022 case TPACKET_V3:
1023 default:
1024 WARN(1, "TPACKET version not supported.\n");
1025 BUG();
1026 return;
1027 }
1028}
1029
eea49cc9 1030static void *packet_previous_frame(struct packet_sock *po,
69e3c75f
JB
1031 struct packet_ring_buffer *rb,
1032 int status)
1033{
1034 unsigned int previous = rb->head ? rb->head - 1 : rb->frame_max;
1035 return packet_lookup_frame(po, rb, previous, status);
1036}
1037
eea49cc9 1038static void packet_increment_head(struct packet_ring_buffer *buff)
69e3c75f
JB
1039{
1040 buff->head = buff->head != buff->frame_max ? buff->head+1 : 0;
1041}
1042
1da177e4
LT
1043static void packet_sock_destruct(struct sock *sk)
1044{
ed85b565
RC
1045 skb_queue_purge(&sk->sk_error_queue);
1046
547b792c
IJ
1047 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
1048 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
1da177e4
LT
1049
1050 if (!sock_flag(sk, SOCK_DEAD)) {
40d4e3df 1051 pr_err("Attempt to release alive packet socket: %p\n", sk);
1da177e4
LT
1052 return;
1053 }
1054
17ab56a2 1055 sk_refcnt_debug_dec(sk);
1da177e4
LT
1056}
1057
dc99f600
DM
1058static int fanout_rr_next(struct packet_fanout *f, unsigned int num)
1059{
1060 int x = atomic_read(&f->rr_cur) + 1;
1061
1062 if (x >= num)
1063 x = 0;
1064
1065 return x;
1066}
1067
1068static struct sock *fanout_demux_hash(struct packet_fanout *f, struct sk_buff *skb, unsigned int num)
1069{
1070 u32 idx, hash = skb->rxhash;
1071
1072 idx = ((u64)hash * num) >> 32;
1073
1074 return f->arr[idx];
1075}
1076
1077static struct sock *fanout_demux_lb(struct packet_fanout *f, struct sk_buff *skb, unsigned int num)
1078{
1079 int cur, old;
1080
1081 cur = atomic_read(&f->rr_cur);
1082 while ((old = atomic_cmpxchg(&f->rr_cur, cur,
1083 fanout_rr_next(f, num))) != cur)
1084 cur = old;
1085 return f->arr[cur];
1086}
1087
95ec3eb4
DM
1088static struct sock *fanout_demux_cpu(struct packet_fanout *f, struct sk_buff *skb, unsigned int num)
1089{
1090 unsigned int cpu = smp_processor_id();
1091
1092 return f->arr[cpu % num];
1093}
1094
95ec3eb4
DM
1095static int packet_rcv_fanout(struct sk_buff *skb, struct net_device *dev,
1096 struct packet_type *pt, struct net_device *orig_dev)
dc99f600
DM
1097{
1098 struct packet_fanout *f = pt->af_packet_priv;
1099 unsigned int num = f->num_members;
1100 struct packet_sock *po;
1101 struct sock *sk;
1102
1103 if (!net_eq(dev_net(dev), read_pnet(&f->net)) ||
1104 !num) {
1105 kfree_skb(skb);
1106 return 0;
1107 }
1108
95ec3eb4
DM
1109 switch (f->type) {
1110 case PACKET_FANOUT_HASH:
1111 default:
1112 if (f->defrag) {
bc416d97 1113 skb = ip_check_defrag(skb, IP_DEFRAG_AF_PACKET);
95ec3eb4
DM
1114 if (!skb)
1115 return 0;
1116 }
1117 skb_get_rxhash(skb);
1118 sk = fanout_demux_hash(f, skb, num);
1119 break;
1120 case PACKET_FANOUT_LB:
1121 sk = fanout_demux_lb(f, skb, num);
1122 break;
1123 case PACKET_FANOUT_CPU:
1124 sk = fanout_demux_cpu(f, skb, num);
1125 break;
dc99f600
DM
1126 }
1127
dc99f600
DM
1128 po = pkt_sk(sk);
1129
1130 return po->prot_hook.func(skb, dev, &po->prot_hook, orig_dev);
1131}
1132
fff3321d
PE
1133DEFINE_MUTEX(fanout_mutex);
1134EXPORT_SYMBOL_GPL(fanout_mutex);
dc99f600
DM
1135static LIST_HEAD(fanout_list);
1136
1137static void __fanout_link(struct sock *sk, struct packet_sock *po)
1138{
1139 struct packet_fanout *f = po->fanout;
1140
1141 spin_lock(&f->lock);
1142 f->arr[f->num_members] = sk;
1143 smp_wmb();
1144 f->num_members++;
1145 spin_unlock(&f->lock);
1146}
1147
1148static void __fanout_unlink(struct sock *sk, struct packet_sock *po)
1149{
1150 struct packet_fanout *f = po->fanout;
1151 int i;
1152
1153 spin_lock(&f->lock);
1154 for (i = 0; i < f->num_members; i++) {
1155 if (f->arr[i] == sk)
1156 break;
1157 }
1158 BUG_ON(i >= f->num_members);
1159 f->arr[i] = f->arr[f->num_members - 1];
1160 f->num_members--;
1161 spin_unlock(&f->lock);
1162}
1163
c0de08d0
EL
1164bool match_fanout_group(struct packet_type *ptype, struct sock * sk)
1165{
1166 if (ptype->af_packet_priv == (void*)((struct packet_sock *)sk)->fanout)
1167 return true;
1168
1169 return false;
1170}
1171
7736d33f 1172static int fanout_add(struct sock *sk, u16 id, u16 type_flags)
dc99f600
DM
1173{
1174 struct packet_sock *po = pkt_sk(sk);
1175 struct packet_fanout *f, *match;
7736d33f
DM
1176 u8 type = type_flags & 0xff;
1177 u8 defrag = (type_flags & PACKET_FANOUT_FLAG_DEFRAG) ? 1 : 0;
dc99f600
DM
1178 int err;
1179
1180 switch (type) {
1181 case PACKET_FANOUT_HASH:
1182 case PACKET_FANOUT_LB:
95ec3eb4 1183 case PACKET_FANOUT_CPU:
dc99f600
DM
1184 break;
1185 default:
1186 return -EINVAL;
1187 }
1188
1189 if (!po->running)
1190 return -EINVAL;
1191
1192 if (po->fanout)
1193 return -EALREADY;
1194
1195 mutex_lock(&fanout_mutex);
1196 match = NULL;
1197 list_for_each_entry(f, &fanout_list, list) {
1198 if (f->id == id &&
1199 read_pnet(&f->net) == sock_net(sk)) {
1200 match = f;
1201 break;
1202 }
1203 }
afe62c68 1204 err = -EINVAL;
7736d33f 1205 if (match && match->defrag != defrag)
afe62c68 1206 goto out;
dc99f600 1207 if (!match) {
afe62c68 1208 err = -ENOMEM;
dc99f600 1209 match = kzalloc(sizeof(*match), GFP_KERNEL);
afe62c68
ED
1210 if (!match)
1211 goto out;
1212 write_pnet(&match->net, sock_net(sk));
1213 match->id = id;
1214 match->type = type;
1215 match->defrag = defrag;
1216 atomic_set(&match->rr_cur, 0);
1217 INIT_LIST_HEAD(&match->list);
1218 spin_lock_init(&match->lock);
1219 atomic_set(&match->sk_ref, 0);
1220 match->prot_hook.type = po->prot_hook.type;
1221 match->prot_hook.dev = po->prot_hook.dev;
1222 match->prot_hook.func = packet_rcv_fanout;
1223 match->prot_hook.af_packet_priv = match;
c0de08d0 1224 match->prot_hook.id_match = match_fanout_group;
afe62c68
ED
1225 dev_add_pack(&match->prot_hook);
1226 list_add(&match->list, &fanout_list);
dc99f600 1227 }
afe62c68
ED
1228 err = -EINVAL;
1229 if (match->type == type &&
1230 match->prot_hook.type == po->prot_hook.type &&
1231 match->prot_hook.dev == po->prot_hook.dev) {
1232 err = -ENOSPC;
1233 if (atomic_read(&match->sk_ref) < PACKET_FANOUT_MAX) {
1234 __dev_remove_pack(&po->prot_hook);
1235 po->fanout = match;
1236 atomic_inc(&match->sk_ref);
1237 __fanout_link(sk, po);
1238 err = 0;
dc99f600
DM
1239 }
1240 }
afe62c68 1241out:
dc99f600
DM
1242 mutex_unlock(&fanout_mutex);
1243 return err;
1244}
1245
1246static void fanout_release(struct sock *sk)
1247{
1248 struct packet_sock *po = pkt_sk(sk);
1249 struct packet_fanout *f;
1250
1251 f = po->fanout;
1252 if (!f)
1253 return;
1254
fff3321d 1255 mutex_lock(&fanout_mutex);
dc99f600
DM
1256 po->fanout = NULL;
1257
dc99f600
DM
1258 if (atomic_dec_and_test(&f->sk_ref)) {
1259 list_del(&f->list);
1260 dev_remove_pack(&f->prot_hook);
1261 kfree(f);
1262 }
1263 mutex_unlock(&fanout_mutex);
1264}
1da177e4 1265
90ddc4f0 1266static const struct proto_ops packet_ops;
1da177e4 1267
90ddc4f0 1268static const struct proto_ops packet_ops_spkt;
1da177e4 1269
40d4e3df
ED
1270static int packet_rcv_spkt(struct sk_buff *skb, struct net_device *dev,
1271 struct packet_type *pt, struct net_device *orig_dev)
1da177e4
LT
1272{
1273 struct sock *sk;
1274 struct sockaddr_pkt *spkt;
1275
1276 /*
1277 * When we registered the protocol we saved the socket in the data
1278 * field for just this event.
1279 */
1280
1281 sk = pt->af_packet_priv;
1ce4f28b 1282
1da177e4
LT
1283 /*
1284 * Yank back the headers [hope the device set this
1285 * right or kerboom...]
1286 *
1287 * Incoming packets have ll header pulled,
1288 * push it back.
1289 *
98e399f8 1290 * For outgoing ones skb->data == skb_mac_header(skb)
1da177e4
LT
1291 * so that this procedure is noop.
1292 */
1293
1294 if (skb->pkt_type == PACKET_LOOPBACK)
1295 goto out;
1296
09ad9bc7 1297 if (!net_eq(dev_net(dev), sock_net(sk)))
d12d01d6
DL
1298 goto out;
1299
40d4e3df
ED
1300 skb = skb_share_check(skb, GFP_ATOMIC);
1301 if (skb == NULL)
1da177e4
LT
1302 goto oom;
1303
1304 /* drop any routing info */
adf30907 1305 skb_dst_drop(skb);
1da177e4 1306
84531c24
PO
1307 /* drop conntrack reference */
1308 nf_reset(skb);
1309
ffbc6111 1310 spkt = &PACKET_SKB_CB(skb)->sa.pkt;
1da177e4 1311
98e399f8 1312 skb_push(skb, skb->data - skb_mac_header(skb));
1da177e4
LT
1313
1314 /*
1315 * The SOCK_PACKET socket receives _all_ frames.
1316 */
1317
1318 spkt->spkt_family = dev->type;
1319 strlcpy(spkt->spkt_device, dev->name, sizeof(spkt->spkt_device));
1320 spkt->spkt_protocol = skb->protocol;
1321
1322 /*
1323 * Charge the memory to the socket. This is done specifically
1324 * to prevent sockets using all the memory up.
1325 */
1326
40d4e3df 1327 if (sock_queue_rcv_skb(sk, skb) == 0)
1da177e4
LT
1328 return 0;
1329
1330out:
1331 kfree_skb(skb);
1332oom:
1333 return 0;
1334}
1335
1336
1337/*
1338 * Output a raw packet to a device layer. This bypasses all the other
1339 * protocol layers and you must therefore supply it with a complete frame
1340 */
1ce4f28b 1341
1da177e4
LT
1342static int packet_sendmsg_spkt(struct kiocb *iocb, struct socket *sock,
1343 struct msghdr *msg, size_t len)
1344{
1345 struct sock *sk = sock->sk;
40d4e3df 1346 struct sockaddr_pkt *saddr = (struct sockaddr_pkt *)msg->msg_name;
1a35ca80 1347 struct sk_buff *skb = NULL;
1da177e4 1348 struct net_device *dev;
40d4e3df 1349 __be16 proto = 0;
1da177e4 1350 int err;
3bdc0eba 1351 int extra_len = 0;
1ce4f28b 1352
1da177e4 1353 /*
1ce4f28b 1354 * Get and verify the address.
1da177e4
LT
1355 */
1356
40d4e3df 1357 if (saddr) {
1da177e4 1358 if (msg->msg_namelen < sizeof(struct sockaddr))
40d4e3df
ED
1359 return -EINVAL;
1360 if (msg->msg_namelen == sizeof(struct sockaddr_pkt))
1361 proto = saddr->spkt_protocol;
1362 } else
1363 return -ENOTCONN; /* SOCK_PACKET must be sent giving an address */
1da177e4
LT
1364
1365 /*
1ce4f28b 1366 * Find the device first to size check it
1da177e4
LT
1367 */
1368
de74e92a 1369 saddr->spkt_device[sizeof(saddr->spkt_device) - 1] = 0;
1a35ca80 1370retry:
654d1f8a
ED
1371 rcu_read_lock();
1372 dev = dev_get_by_name_rcu(sock_net(sk), saddr->spkt_device);
1da177e4
LT
1373 err = -ENODEV;
1374 if (dev == NULL)
1375 goto out_unlock;
1ce4f28b 1376
d5e76b0a
DM
1377 err = -ENETDOWN;
1378 if (!(dev->flags & IFF_UP))
1379 goto out_unlock;
1380
1da177e4 1381 /*
40d4e3df
ED
1382 * You may not queue a frame bigger than the mtu. This is the lowest level
1383 * raw protocol and you must do your own fragmentation at this level.
1da177e4 1384 */
1ce4f28b 1385
3bdc0eba
BG
1386 if (unlikely(sock_flag(sk, SOCK_NOFCS))) {
1387 if (!netif_supports_nofcs(dev)) {
1388 err = -EPROTONOSUPPORT;
1389 goto out_unlock;
1390 }
1391 extra_len = 4; /* We're doing our own CRC */
1392 }
1393
1da177e4 1394 err = -EMSGSIZE;
3bdc0eba 1395 if (len > dev->mtu + dev->hard_header_len + VLAN_HLEN + extra_len)
1da177e4
LT
1396 goto out_unlock;
1397
1a35ca80
ED
1398 if (!skb) {
1399 size_t reserved = LL_RESERVED_SPACE(dev);
4ce40912 1400 int tlen = dev->needed_tailroom;
1a35ca80
ED
1401 unsigned int hhlen = dev->header_ops ? dev->hard_header_len : 0;
1402
1403 rcu_read_unlock();
4ce40912 1404 skb = sock_wmalloc(sk, len + reserved + tlen, 0, GFP_KERNEL);
1a35ca80
ED
1405 if (skb == NULL)
1406 return -ENOBUFS;
1407 /* FIXME: Save some space for broken drivers that write a hard
1408 * header at transmission time by themselves. PPP is the notable
1409 * one here. This should really be fixed at the driver level.
1410 */
1411 skb_reserve(skb, reserved);
1412 skb_reset_network_header(skb);
1413
1414 /* Try to align data part correctly */
1415 if (hhlen) {
1416 skb->data -= hhlen;
1417 skb->tail -= hhlen;
1418 if (len < hhlen)
1419 skb_reset_network_header(skb);
1420 }
1421 err = memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len);
1422 if (err)
1423 goto out_free;
1424 goto retry;
1da177e4
LT
1425 }
1426
3bdc0eba 1427 if (len > (dev->mtu + dev->hard_header_len + extra_len)) {
57f89bfa
BG
1428 /* Earlier code assumed this would be a VLAN pkt,
1429 * double-check this now that we have the actual
1430 * packet in hand.
1431 */
1432 struct ethhdr *ehdr;
1433 skb_reset_mac_header(skb);
1434 ehdr = eth_hdr(skb);
1435 if (ehdr->h_proto != htons(ETH_P_8021Q)) {
1436 err = -EMSGSIZE;
1437 goto out_unlock;
1438 }
1439 }
1a35ca80 1440
1da177e4
LT
1441 skb->protocol = proto;
1442 skb->dev = dev;
1443 skb->priority = sk->sk_priority;
2d37a186 1444 skb->mark = sk->sk_mark;
2244d07b 1445 err = sock_tx_timestamp(sk, &skb_shinfo(skb)->tx_flags);
ed85b565
RC
1446 if (err < 0)
1447 goto out_unlock;
1da177e4 1448
3bdc0eba
BG
1449 if (unlikely(extra_len == 4))
1450 skb->no_fcs = 1;
1451
1da177e4 1452 dev_queue_xmit(skb);
654d1f8a 1453 rcu_read_unlock();
40d4e3df 1454 return len;
1da177e4 1455
1da177e4 1456out_unlock:
654d1f8a 1457 rcu_read_unlock();
1a35ca80
ED
1458out_free:
1459 kfree_skb(skb);
1da177e4
LT
1460 return err;
1461}
1da177e4 1462
eea49cc9 1463static unsigned int run_filter(const struct sk_buff *skb,
62ab0812 1464 const struct sock *sk,
dbcb5855 1465 unsigned int res)
1da177e4
LT
1466{
1467 struct sk_filter *filter;
fda9ef5d 1468
80f8f102
ED
1469 rcu_read_lock();
1470 filter = rcu_dereference(sk->sk_filter);
dbcb5855 1471 if (filter != NULL)
0a14842f 1472 res = SK_RUN_FILTER(filter, skb);
80f8f102 1473 rcu_read_unlock();
1da177e4 1474
dbcb5855 1475 return res;
1da177e4
LT
1476}
1477
1478/*
62ab0812
ED
1479 * This function makes lazy skb cloning in hope that most of packets
1480 * are discarded by BPF.
1481 *
1482 * Note tricky part: we DO mangle shared skb! skb->data, skb->len
1483 * and skb->cb are mangled. It works because (and until) packets
1484 * falling here are owned by current CPU. Output packets are cloned
1485 * by dev_queue_xmit_nit(), input packets are processed by net_bh
1486 * sequencially, so that if we return skb to original state on exit,
1487 * we will not harm anyone.
1da177e4
LT
1488 */
1489
40d4e3df
ED
1490static int packet_rcv(struct sk_buff *skb, struct net_device *dev,
1491 struct packet_type *pt, struct net_device *orig_dev)
1da177e4
LT
1492{
1493 struct sock *sk;
1494 struct sockaddr_ll *sll;
1495 struct packet_sock *po;
40d4e3df 1496 u8 *skb_head = skb->data;
1da177e4 1497 int skb_len = skb->len;
dbcb5855 1498 unsigned int snaplen, res;
1da177e4
LT
1499
1500 if (skb->pkt_type == PACKET_LOOPBACK)
1501 goto drop;
1502
1503 sk = pt->af_packet_priv;
1504 po = pkt_sk(sk);
1505
09ad9bc7 1506 if (!net_eq(dev_net(dev), sock_net(sk)))
d12d01d6
DL
1507 goto drop;
1508
1da177e4
LT
1509 skb->dev = dev;
1510
3b04ddde 1511 if (dev->header_ops) {
1da177e4 1512 /* The device has an explicit notion of ll header,
62ab0812
ED
1513 * exported to higher levels.
1514 *
1515 * Otherwise, the device hides details of its frame
1516 * structure, so that corresponding packet head is
1517 * never delivered to user.
1da177e4
LT
1518 */
1519 if (sk->sk_type != SOCK_DGRAM)
98e399f8 1520 skb_push(skb, skb->data - skb_mac_header(skb));
1da177e4
LT
1521 else if (skb->pkt_type == PACKET_OUTGOING) {
1522 /* Special case: outgoing packets have ll header at head */
bbe735e4 1523 skb_pull(skb, skb_network_offset(skb));
1da177e4
LT
1524 }
1525 }
1526
1527 snaplen = skb->len;
1528
dbcb5855
DM
1529 res = run_filter(skb, sk, snaplen);
1530 if (!res)
fda9ef5d 1531 goto drop_n_restore;
dbcb5855
DM
1532 if (snaplen > res)
1533 snaplen = res;
1da177e4 1534
0fd7bac6 1535 if (atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf)
1da177e4
LT
1536 goto drop_n_acct;
1537
1538 if (skb_shared(skb)) {
1539 struct sk_buff *nskb = skb_clone(skb, GFP_ATOMIC);
1540 if (nskb == NULL)
1541 goto drop_n_acct;
1542
1543 if (skb_head != skb->data) {
1544 skb->data = skb_head;
1545 skb->len = skb_len;
1546 }
abc4e4fa 1547 consume_skb(skb);
1da177e4
LT
1548 skb = nskb;
1549 }
1550
ffbc6111
HX
1551 BUILD_BUG_ON(sizeof(*PACKET_SKB_CB(skb)) + MAX_ADDR_LEN - 8 >
1552 sizeof(skb->cb));
1553
1554 sll = &PACKET_SKB_CB(skb)->sa.ll;
1da177e4
LT
1555 sll->sll_family = AF_PACKET;
1556 sll->sll_hatype = dev->type;
1557 sll->sll_protocol = skb->protocol;
1558 sll->sll_pkttype = skb->pkt_type;
8032b464 1559 if (unlikely(po->origdev))
80feaacb
PWJ
1560 sll->sll_ifindex = orig_dev->ifindex;
1561 else
1562 sll->sll_ifindex = dev->ifindex;
1da177e4 1563
b95cce35 1564 sll->sll_halen = dev_parse_header(skb, sll->sll_addr);
1da177e4 1565
ffbc6111 1566 PACKET_SKB_CB(skb)->origlen = skb->len;
8dc41944 1567
1da177e4
LT
1568 if (pskb_trim(skb, snaplen))
1569 goto drop_n_acct;
1570
1571 skb_set_owner_r(skb, sk);
1572 skb->dev = NULL;
adf30907 1573 skb_dst_drop(skb);
1da177e4 1574
84531c24
PO
1575 /* drop conntrack reference */
1576 nf_reset(skb);
1577
1da177e4
LT
1578 spin_lock(&sk->sk_receive_queue.lock);
1579 po->stats.tp_packets++;
3b885787 1580 skb->dropcount = atomic_read(&sk->sk_drops);
1da177e4
LT
1581 __skb_queue_tail(&sk->sk_receive_queue, skb);
1582 spin_unlock(&sk->sk_receive_queue.lock);
1583 sk->sk_data_ready(sk, skb->len);
1584 return 0;
1585
1586drop_n_acct:
7091fbd8
WB
1587 spin_lock(&sk->sk_receive_queue.lock);
1588 po->stats.tp_drops++;
1589 atomic_inc(&sk->sk_drops);
1590 spin_unlock(&sk->sk_receive_queue.lock);
1da177e4
LT
1591
1592drop_n_restore:
1593 if (skb_head != skb->data && skb_shared(skb)) {
1594 skb->data = skb_head;
1595 skb->len = skb_len;
1596 }
1597drop:
ead2ceb0 1598 consume_skb(skb);
1da177e4
LT
1599 return 0;
1600}
1601
40d4e3df
ED
1602static int tpacket_rcv(struct sk_buff *skb, struct net_device *dev,
1603 struct packet_type *pt, struct net_device *orig_dev)
1da177e4
LT
1604{
1605 struct sock *sk;
1606 struct packet_sock *po;
1607 struct sockaddr_ll *sll;
bbd6ef87
PM
1608 union {
1609 struct tpacket_hdr *h1;
1610 struct tpacket2_hdr *h2;
f6fb8f10 1611 struct tpacket3_hdr *h3;
bbd6ef87
PM
1612 void *raw;
1613 } h;
40d4e3df 1614 u8 *skb_head = skb->data;
1da177e4 1615 int skb_len = skb->len;
dbcb5855 1616 unsigned int snaplen, res;
f6fb8f10 1617 unsigned long status = TP_STATUS_USER;
bbd6ef87 1618 unsigned short macoff, netoff, hdrlen;
1da177e4 1619 struct sk_buff *copy_skb = NULL;
b7aa0bf7 1620 struct timeval tv;
bbd6ef87 1621 struct timespec ts;
614f60fa 1622 struct skb_shared_hwtstamps *shhwtstamps = skb_hwtstamps(skb);
1da177e4
LT
1623
1624 if (skb->pkt_type == PACKET_LOOPBACK)
1625 goto drop;
1626
1627 sk = pt->af_packet_priv;
1628 po = pkt_sk(sk);
1629
09ad9bc7 1630 if (!net_eq(dev_net(dev), sock_net(sk)))
d12d01d6
DL
1631 goto drop;
1632
3b04ddde 1633 if (dev->header_ops) {
1da177e4 1634 if (sk->sk_type != SOCK_DGRAM)
98e399f8 1635 skb_push(skb, skb->data - skb_mac_header(skb));
1da177e4
LT
1636 else if (skb->pkt_type == PACKET_OUTGOING) {
1637 /* Special case: outgoing packets have ll header at head */
bbe735e4 1638 skb_pull(skb, skb_network_offset(skb));
1da177e4
LT
1639 }
1640 }
1641
8dc41944
HX
1642 if (skb->ip_summed == CHECKSUM_PARTIAL)
1643 status |= TP_STATUS_CSUMNOTREADY;
1644
1da177e4
LT
1645 snaplen = skb->len;
1646
dbcb5855
DM
1647 res = run_filter(skb, sk, snaplen);
1648 if (!res)
fda9ef5d 1649 goto drop_n_restore;
dbcb5855
DM
1650 if (snaplen > res)
1651 snaplen = res;
1da177e4
LT
1652
1653 if (sk->sk_type == SOCK_DGRAM) {
8913336a
PM
1654 macoff = netoff = TPACKET_ALIGN(po->tp_hdrlen) + 16 +
1655 po->tp_reserve;
1da177e4 1656 } else {
95c96174 1657 unsigned int maclen = skb_network_offset(skb);
bbd6ef87 1658 netoff = TPACKET_ALIGN(po->tp_hdrlen +
8913336a
PM
1659 (maclen < 16 ? 16 : maclen)) +
1660 po->tp_reserve;
1da177e4
LT
1661 macoff = netoff - maclen;
1662 }
f6fb8f10 1663 if (po->tp_version <= TPACKET_V2) {
1664 if (macoff + snaplen > po->rx_ring.frame_size) {
1665 if (po->copy_thresh &&
0fd7bac6 1666 atomic_read(&sk->sk_rmem_alloc) < sk->sk_rcvbuf) {
f6fb8f10 1667 if (skb_shared(skb)) {
1668 copy_skb = skb_clone(skb, GFP_ATOMIC);
1669 } else {
1670 copy_skb = skb_get(skb);
1671 skb_head = skb->data;
1672 }
1673 if (copy_skb)
1674 skb_set_owner_r(copy_skb, sk);
1da177e4 1675 }
f6fb8f10 1676 snaplen = po->rx_ring.frame_size - macoff;
1677 if ((int)snaplen < 0)
1678 snaplen = 0;
1da177e4 1679 }
1da177e4 1680 }
1da177e4 1681 spin_lock(&sk->sk_receive_queue.lock);
f6fb8f10 1682 h.raw = packet_current_rx_frame(po, skb,
1683 TP_STATUS_KERNEL, (macoff+snaplen));
bbd6ef87 1684 if (!h.raw)
1da177e4 1685 goto ring_is_full;
f6fb8f10 1686 if (po->tp_version <= TPACKET_V2) {
1687 packet_increment_rx_head(po, &po->rx_ring);
1688 /*
1689 * LOSING will be reported till you read the stats,
1690 * because it's COR - Clear On Read.
1691 * Anyways, moving it for V1/V2 only as V3 doesn't need this
1692 * at packet level.
1693 */
1694 if (po->stats.tp_drops)
1695 status |= TP_STATUS_LOSING;
1696 }
1da177e4
LT
1697 po->stats.tp_packets++;
1698 if (copy_skb) {
1699 status |= TP_STATUS_COPY;
1700 __skb_queue_tail(&sk->sk_receive_queue, copy_skb);
1701 }
1da177e4
LT
1702 spin_unlock(&sk->sk_receive_queue.lock);
1703
bbd6ef87 1704 skb_copy_bits(skb, 0, h.raw + macoff, snaplen);
1da177e4 1705
bbd6ef87
PM
1706 switch (po->tp_version) {
1707 case TPACKET_V1:
1708 h.h1->tp_len = skb->len;
1709 h.h1->tp_snaplen = snaplen;
1710 h.h1->tp_mac = macoff;
1711 h.h1->tp_net = netoff;
614f60fa
SM
1712 if ((po->tp_tstamp & SOF_TIMESTAMPING_SYS_HARDWARE)
1713 && shhwtstamps->syststamp.tv64)
1714 tv = ktime_to_timeval(shhwtstamps->syststamp);
1715 else if ((po->tp_tstamp & SOF_TIMESTAMPING_RAW_HARDWARE)
1716 && shhwtstamps->hwtstamp.tv64)
1717 tv = ktime_to_timeval(shhwtstamps->hwtstamp);
1718 else if (skb->tstamp.tv64)
bbd6ef87
PM
1719 tv = ktime_to_timeval(skb->tstamp);
1720 else
1721 do_gettimeofday(&tv);
1722 h.h1->tp_sec = tv.tv_sec;
1723 h.h1->tp_usec = tv.tv_usec;
1724 hdrlen = sizeof(*h.h1);
1725 break;
1726 case TPACKET_V2:
1727 h.h2->tp_len = skb->len;
1728 h.h2->tp_snaplen = snaplen;
1729 h.h2->tp_mac = macoff;
1730 h.h2->tp_net = netoff;
614f60fa
SM
1731 if ((po->tp_tstamp & SOF_TIMESTAMPING_SYS_HARDWARE)
1732 && shhwtstamps->syststamp.tv64)
1733 ts = ktime_to_timespec(shhwtstamps->syststamp);
1734 else if ((po->tp_tstamp & SOF_TIMESTAMPING_RAW_HARDWARE)
1735 && shhwtstamps->hwtstamp.tv64)
1736 ts = ktime_to_timespec(shhwtstamps->hwtstamp);
1737 else if (skb->tstamp.tv64)
bbd6ef87
PM
1738 ts = ktime_to_timespec(skb->tstamp);
1739 else
1740 getnstimeofday(&ts);
1741 h.h2->tp_sec = ts.tv_sec;
1742 h.h2->tp_nsec = ts.tv_nsec;
a3bcc23e
BG
1743 if (vlan_tx_tag_present(skb)) {
1744 h.h2->tp_vlan_tci = vlan_tx_tag_get(skb);
1745 status |= TP_STATUS_VLAN_VALID;
1746 } else {
1747 h.h2->tp_vlan_tci = 0;
1748 }
13fcb7bd 1749 h.h2->tp_padding = 0;
bbd6ef87
PM
1750 hdrlen = sizeof(*h.h2);
1751 break;
f6fb8f10 1752 case TPACKET_V3:
1753 /* tp_nxt_offset,vlan are already populated above.
1754 * So DONT clear those fields here
1755 */
1756 h.h3->tp_status |= status;
1757 h.h3->tp_len = skb->len;
1758 h.h3->tp_snaplen = snaplen;
1759 h.h3->tp_mac = macoff;
1760 h.h3->tp_net = netoff;
1761 if ((po->tp_tstamp & SOF_TIMESTAMPING_SYS_HARDWARE)
1762 && shhwtstamps->syststamp.tv64)
1763 ts = ktime_to_timespec(shhwtstamps->syststamp);
1764 else if ((po->tp_tstamp & SOF_TIMESTAMPING_RAW_HARDWARE)
1765 && shhwtstamps->hwtstamp.tv64)
1766 ts = ktime_to_timespec(shhwtstamps->hwtstamp);
1767 else if (skb->tstamp.tv64)
1768 ts = ktime_to_timespec(skb->tstamp);
1769 else
1770 getnstimeofday(&ts);
1771 h.h3->tp_sec = ts.tv_sec;
1772 h.h3->tp_nsec = ts.tv_nsec;
1773 hdrlen = sizeof(*h.h3);
1774 break;
bbd6ef87
PM
1775 default:
1776 BUG();
1777 }
1da177e4 1778
bbd6ef87 1779 sll = h.raw + TPACKET_ALIGN(hdrlen);
b95cce35 1780 sll->sll_halen = dev_parse_header(skb, sll->sll_addr);
1da177e4
LT
1781 sll->sll_family = AF_PACKET;
1782 sll->sll_hatype = dev->type;
1783 sll->sll_protocol = skb->protocol;
1784 sll->sll_pkttype = skb->pkt_type;
8032b464 1785 if (unlikely(po->origdev))
80feaacb
PWJ
1786 sll->sll_ifindex = orig_dev->ifindex;
1787 else
1788 sll->sll_ifindex = dev->ifindex;
1da177e4 1789
e16aa207 1790 smp_mb();
f6dafa95 1791#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
1da177e4 1792 {
0af55bb5
CG
1793 u8 *start, *end;
1794
f6fb8f10 1795 if (po->tp_version <= TPACKET_V2) {
1796 end = (u8 *)PAGE_ALIGN((unsigned long)h.raw
1797 + macoff + snaplen);
1798 for (start = h.raw; start < end; start += PAGE_SIZE)
1799 flush_dcache_page(pgv_to_page(start));
1800 }
cc9f01b2 1801 smp_wmb();
1da177e4 1802 }
f6dafa95 1803#endif
f6fb8f10 1804 if (po->tp_version <= TPACKET_V2)
1805 __packet_set_status(po, h.raw, status);
1806 else
1807 prb_clear_blk_fill_status(&po->rx_ring);
1da177e4
LT
1808
1809 sk->sk_data_ready(sk, 0);
1810
1811drop_n_restore:
1812 if (skb_head != skb->data && skb_shared(skb)) {
1813 skb->data = skb_head;
1814 skb->len = skb_len;
1815 }
1816drop:
1ce4f28b 1817 kfree_skb(skb);
1da177e4
LT
1818 return 0;
1819
1820ring_is_full:
1821 po->stats.tp_drops++;
1822 spin_unlock(&sk->sk_receive_queue.lock);
1823
1824 sk->sk_data_ready(sk, 0);
acb5d75b 1825 kfree_skb(copy_skb);
1da177e4
LT
1826 goto drop_n_restore;
1827}
1828
69e3c75f
JB
1829static void tpacket_destruct_skb(struct sk_buff *skb)
1830{
1831 struct packet_sock *po = pkt_sk(skb->sk);
40d4e3df 1832 void *ph;
1da177e4 1833
69e3c75f
JB
1834 if (likely(po->tx_ring.pg_vec)) {
1835 ph = skb_shinfo(skb)->destructor_arg;
69e3c75f
JB
1836 BUG_ON(atomic_read(&po->tx_ring.pending) == 0);
1837 atomic_dec(&po->tx_ring.pending);
1838 __packet_set_status(po, ph, TP_STATUS_AVAILABLE);
1839 }
1840
1841 sock_wfree(skb);
1842}
1843
40d4e3df
ED
1844static int tpacket_fill_skb(struct packet_sock *po, struct sk_buff *skb,
1845 void *frame, struct net_device *dev, int size_max,
ae641949 1846 __be16 proto, unsigned char *addr, int hlen)
69e3c75f
JB
1847{
1848 union {
1849 struct tpacket_hdr *h1;
1850 struct tpacket2_hdr *h2;
1851 void *raw;
1852 } ph;
1853 int to_write, offset, len, tp_len, nr_frags, len_max;
1854 struct socket *sock = po->sk.sk_socket;
1855 struct page *page;
1856 void *data;
1857 int err;
1858
1859 ph.raw = frame;
1860
1861 skb->protocol = proto;
1862 skb->dev = dev;
1863 skb->priority = po->sk.sk_priority;
2d37a186 1864 skb->mark = po->sk.sk_mark;
69e3c75f
JB
1865 skb_shinfo(skb)->destructor_arg = ph.raw;
1866
1867 switch (po->tp_version) {
1868 case TPACKET_V2:
1869 tp_len = ph.h2->tp_len;
1870 break;
1871 default:
1872 tp_len = ph.h1->tp_len;
1873 break;
1874 }
1875 if (unlikely(tp_len > size_max)) {
40d4e3df 1876 pr_err("packet size is too long (%d > %d)\n", tp_len, size_max);
69e3c75f
JB
1877 return -EMSGSIZE;
1878 }
1879
ae641949 1880 skb_reserve(skb, hlen);
69e3c75f
JB
1881 skb_reset_network_header(skb);
1882
1883 data = ph.raw + po->tp_hdrlen - sizeof(struct sockaddr_ll);
1884 to_write = tp_len;
1885
1886 if (sock->type == SOCK_DGRAM) {
1887 err = dev_hard_header(skb, dev, ntohs(proto), addr,
1888 NULL, tp_len);
1889 if (unlikely(err < 0))
1890 return -EINVAL;
40d4e3df 1891 } else if (dev->hard_header_len) {
69e3c75f
JB
1892 /* net device doesn't like empty head */
1893 if (unlikely(tp_len <= dev->hard_header_len)) {
40d4e3df
ED
1894 pr_err("packet size is too short (%d < %d)\n",
1895 tp_len, dev->hard_header_len);
69e3c75f
JB
1896 return -EINVAL;
1897 }
1898
1899 skb_push(skb, dev->hard_header_len);
1900 err = skb_store_bits(skb, 0, data,
1901 dev->hard_header_len);
1902 if (unlikely(err))
1903 return err;
1904
1905 data += dev->hard_header_len;
1906 to_write -= dev->hard_header_len;
1907 }
1908
1909 err = -EFAULT;
69e3c75f
JB
1910 offset = offset_in_page(data);
1911 len_max = PAGE_SIZE - offset;
1912 len = ((to_write > len_max) ? len_max : to_write);
1913
1914 skb->data_len = to_write;
1915 skb->len += to_write;
1916 skb->truesize += to_write;
1917 atomic_add(to_write, &po->sk.sk_wmem_alloc);
1918
1919 while (likely(to_write)) {
1920 nr_frags = skb_shinfo(skb)->nr_frags;
1921
1922 if (unlikely(nr_frags >= MAX_SKB_FRAGS)) {
40d4e3df
ED
1923 pr_err("Packet exceed the number of skb frags(%lu)\n",
1924 MAX_SKB_FRAGS);
69e3c75f
JB
1925 return -EFAULT;
1926 }
1927
0af55bb5
CG
1928 page = pgv_to_page(data);
1929 data += len;
69e3c75f
JB
1930 flush_dcache_page(page);
1931 get_page(page);
0af55bb5 1932 skb_fill_page_desc(skb, nr_frags, page, offset, len);
69e3c75f
JB
1933 to_write -= len;
1934 offset = 0;
1935 len_max = PAGE_SIZE;
1936 len = ((to_write > len_max) ? len_max : to_write);
1937 }
1938
1939 return tp_len;
1940}
1941
1942static int tpacket_snd(struct packet_sock *po, struct msghdr *msg)
1943{
69e3c75f
JB
1944 struct sk_buff *skb;
1945 struct net_device *dev;
1946 __be16 proto;
827d9780
BG
1947 bool need_rls_dev = false;
1948 int err, reserve = 0;
40d4e3df
ED
1949 void *ph;
1950 struct sockaddr_ll *saddr = (struct sockaddr_ll *)msg->msg_name;
69e3c75f
JB
1951 int tp_len, size_max;
1952 unsigned char *addr;
1953 int len_sum = 0;
1954 int status = 0;
ae641949 1955 int hlen, tlen;
69e3c75f 1956
69e3c75f
JB
1957 mutex_lock(&po->pg_vec_lock);
1958
1959 err = -EBUSY;
1960 if (saddr == NULL) {
827d9780 1961 dev = po->prot_hook.dev;
69e3c75f
JB
1962 proto = po->num;
1963 addr = NULL;
1964 } else {
1965 err = -EINVAL;
1966 if (msg->msg_namelen < sizeof(struct sockaddr_ll))
1967 goto out;
1968 if (msg->msg_namelen < (saddr->sll_halen
1969 + offsetof(struct sockaddr_ll,
1970 sll_addr)))
1971 goto out;
69e3c75f
JB
1972 proto = saddr->sll_protocol;
1973 addr = saddr->sll_addr;
827d9780
BG
1974 dev = dev_get_by_index(sock_net(&po->sk), saddr->sll_ifindex);
1975 need_rls_dev = true;
69e3c75f
JB
1976 }
1977
69e3c75f
JB
1978 err = -ENXIO;
1979 if (unlikely(dev == NULL))
1980 goto out;
1981
1982 reserve = dev->hard_header_len;
1983
1984 err = -ENETDOWN;
1985 if (unlikely(!(dev->flags & IFF_UP)))
1986 goto out_put;
1987
1988 size_max = po->tx_ring.frame_size
b5dd884e 1989 - (po->tp_hdrlen - sizeof(struct sockaddr_ll));
69e3c75f
JB
1990
1991 if (size_max > dev->mtu + reserve)
1992 size_max = dev->mtu + reserve;
1993
1994 do {
1995 ph = packet_current_frame(po, &po->tx_ring,
1996 TP_STATUS_SEND_REQUEST);
1997
1998 if (unlikely(ph == NULL)) {
1999 schedule();
2000 continue;
2001 }
2002
2003 status = TP_STATUS_SEND_REQUEST;
ae641949
HX
2004 hlen = LL_RESERVED_SPACE(dev);
2005 tlen = dev->needed_tailroom;
69e3c75f 2006 skb = sock_alloc_send_skb(&po->sk,
ae641949 2007 hlen + tlen + sizeof(struct sockaddr_ll),
69e3c75f
JB
2008 0, &err);
2009
2010 if (unlikely(skb == NULL))
2011 goto out_status;
2012
2013 tp_len = tpacket_fill_skb(po, skb, ph, dev, size_max, proto,
ae641949 2014 addr, hlen);
69e3c75f
JB
2015
2016 if (unlikely(tp_len < 0)) {
2017 if (po->tp_loss) {
2018 __packet_set_status(po, ph,
2019 TP_STATUS_AVAILABLE);
2020 packet_increment_head(&po->tx_ring);
2021 kfree_skb(skb);
2022 continue;
2023 } else {
2024 status = TP_STATUS_WRONG_FORMAT;
2025 err = tp_len;
2026 goto out_status;
2027 }
2028 }
2029
2030 skb->destructor = tpacket_destruct_skb;
2031 __packet_set_status(po, ph, TP_STATUS_SENDING);
2032 atomic_inc(&po->tx_ring.pending);
2033
2034 status = TP_STATUS_SEND_REQUEST;
2035 err = dev_queue_xmit(skb);
eb70df13
JP
2036 if (unlikely(err > 0)) {
2037 err = net_xmit_errno(err);
2038 if (err && __packet_get_status(po, ph) ==
2039 TP_STATUS_AVAILABLE) {
2040 /* skb was destructed already */
2041 skb = NULL;
2042 goto out_status;
2043 }
2044 /*
2045 * skb was dropped but not destructed yet;
2046 * let's treat it like congestion or err < 0
2047 */
2048 err = 0;
2049 }
69e3c75f
JB
2050 packet_increment_head(&po->tx_ring);
2051 len_sum += tp_len;
f64f9e71
JP
2052 } while (likely((ph != NULL) ||
2053 ((!(msg->msg_flags & MSG_DONTWAIT)) &&
2054 (atomic_read(&po->tx_ring.pending))))
2055 );
69e3c75f
JB
2056
2057 err = len_sum;
2058 goto out_put;
2059
69e3c75f
JB
2060out_status:
2061 __packet_set_status(po, ph, status);
2062 kfree_skb(skb);
2063out_put:
827d9780
BG
2064 if (need_rls_dev)
2065 dev_put(dev);
69e3c75f
JB
2066out:
2067 mutex_unlock(&po->pg_vec_lock);
2068 return err;
2069}
69e3c75f 2070
eea49cc9
OJ
2071static struct sk_buff *packet_alloc_skb(struct sock *sk, size_t prepad,
2072 size_t reserve, size_t len,
2073 size_t linear, int noblock,
2074 int *err)
bfd5f4a3
SS
2075{
2076 struct sk_buff *skb;
2077
2078 /* Under a page? Don't bother with paged skb. */
2079 if (prepad + len < PAGE_SIZE || !linear)
2080 linear = len;
2081
2082 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
2083 err);
2084 if (!skb)
2085 return NULL;
2086
2087 skb_reserve(skb, reserve);
2088 skb_put(skb, linear);
2089 skb->data_len = len - linear;
2090 skb->len += len - linear;
2091
2092 return skb;
2093}
2094
69e3c75f 2095static int packet_snd(struct socket *sock,
1da177e4
LT
2096 struct msghdr *msg, size_t len)
2097{
2098 struct sock *sk = sock->sk;
40d4e3df 2099 struct sockaddr_ll *saddr = (struct sockaddr_ll *)msg->msg_name;
1da177e4
LT
2100 struct sk_buff *skb;
2101 struct net_device *dev;
0e11c91e 2102 __be16 proto;
827d9780 2103 bool need_rls_dev = false;
1da177e4 2104 unsigned char *addr;
827d9780 2105 int err, reserve = 0;
bfd5f4a3
SS
2106 struct virtio_net_hdr vnet_hdr = { 0 };
2107 int offset = 0;
2108 int vnet_hdr_len;
2109 struct packet_sock *po = pkt_sk(sk);
2110 unsigned short gso_type = 0;
ae641949 2111 int hlen, tlen;
3bdc0eba 2112 int extra_len = 0;
1da177e4
LT
2113
2114 /*
1ce4f28b 2115 * Get and verify the address.
1da177e4 2116 */
1ce4f28b 2117
1da177e4 2118 if (saddr == NULL) {
827d9780 2119 dev = po->prot_hook.dev;
1da177e4
LT
2120 proto = po->num;
2121 addr = NULL;
2122 } else {
2123 err = -EINVAL;
2124 if (msg->msg_namelen < sizeof(struct sockaddr_ll))
2125 goto out;
0fb375fb
EB
2126 if (msg->msg_namelen < (saddr->sll_halen + offsetof(struct sockaddr_ll, sll_addr)))
2127 goto out;
1da177e4
LT
2128 proto = saddr->sll_protocol;
2129 addr = saddr->sll_addr;
827d9780
BG
2130 dev = dev_get_by_index(sock_net(sk), saddr->sll_ifindex);
2131 need_rls_dev = true;
1da177e4
LT
2132 }
2133
1da177e4
LT
2134 err = -ENXIO;
2135 if (dev == NULL)
2136 goto out_unlock;
2137 if (sock->type == SOCK_RAW)
2138 reserve = dev->hard_header_len;
2139
d5e76b0a
DM
2140 err = -ENETDOWN;
2141 if (!(dev->flags & IFF_UP))
2142 goto out_unlock;
2143
bfd5f4a3
SS
2144 if (po->has_vnet_hdr) {
2145 vnet_hdr_len = sizeof(vnet_hdr);
2146
2147 err = -EINVAL;
2148 if (len < vnet_hdr_len)
2149 goto out_unlock;
2150
2151 len -= vnet_hdr_len;
2152
2153 err = memcpy_fromiovec((void *)&vnet_hdr, msg->msg_iov,
2154 vnet_hdr_len);
2155 if (err < 0)
2156 goto out_unlock;
2157
2158 if ((vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
2159 (vnet_hdr.csum_start + vnet_hdr.csum_offset + 2 >
2160 vnet_hdr.hdr_len))
2161 vnet_hdr.hdr_len = vnet_hdr.csum_start +
2162 vnet_hdr.csum_offset + 2;
2163
2164 err = -EINVAL;
2165 if (vnet_hdr.hdr_len > len)
2166 goto out_unlock;
2167
2168 if (vnet_hdr.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
2169 switch (vnet_hdr.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
2170 case VIRTIO_NET_HDR_GSO_TCPV4:
2171 gso_type = SKB_GSO_TCPV4;
2172 break;
2173 case VIRTIO_NET_HDR_GSO_TCPV6:
2174 gso_type = SKB_GSO_TCPV6;
2175 break;
2176 case VIRTIO_NET_HDR_GSO_UDP:
2177 gso_type = SKB_GSO_UDP;
2178 break;
2179 default:
2180 goto out_unlock;
2181 }
2182
2183 if (vnet_hdr.gso_type & VIRTIO_NET_HDR_GSO_ECN)
2184 gso_type |= SKB_GSO_TCP_ECN;
2185
2186 if (vnet_hdr.gso_size == 0)
2187 goto out_unlock;
2188
2189 }
2190 }
2191
3bdc0eba
BG
2192 if (unlikely(sock_flag(sk, SOCK_NOFCS))) {
2193 if (!netif_supports_nofcs(dev)) {
2194 err = -EPROTONOSUPPORT;
2195 goto out_unlock;
2196 }
2197 extra_len = 4; /* We're doing our own CRC */
2198 }
2199
1da177e4 2200 err = -EMSGSIZE;
3bdc0eba 2201 if (!gso_type && (len > dev->mtu + reserve + VLAN_HLEN + extra_len))
1da177e4
LT
2202 goto out_unlock;
2203
bfd5f4a3 2204 err = -ENOBUFS;
ae641949
HX
2205 hlen = LL_RESERVED_SPACE(dev);
2206 tlen = dev->needed_tailroom;
2207 skb = packet_alloc_skb(sk, hlen + tlen, hlen, len, vnet_hdr.hdr_len,
bfd5f4a3 2208 msg->msg_flags & MSG_DONTWAIT, &err);
40d4e3df 2209 if (skb == NULL)
1da177e4
LT
2210 goto out_unlock;
2211
bfd5f4a3 2212 skb_set_network_header(skb, reserve);
1da177e4 2213
0c4e8581
SH
2214 err = -EINVAL;
2215 if (sock->type == SOCK_DGRAM &&
bfd5f4a3 2216 (offset = dev_hard_header(skb, dev, ntohs(proto), addr, NULL, len)) < 0)
0c4e8581 2217 goto out_free;
1da177e4
LT
2218
2219 /* Returns -EFAULT on error */
bfd5f4a3 2220 err = skb_copy_datagram_from_iovec(skb, offset, msg->msg_iov, 0, len);
1da177e4
LT
2221 if (err)
2222 goto out_free;
2244d07b 2223 err = sock_tx_timestamp(sk, &skb_shinfo(skb)->tx_flags);
ed85b565
RC
2224 if (err < 0)
2225 goto out_free;
1da177e4 2226
3bdc0eba 2227 if (!gso_type && (len > dev->mtu + reserve + extra_len)) {
57f89bfa
BG
2228 /* Earlier code assumed this would be a VLAN pkt,
2229 * double-check this now that we have the actual
2230 * packet in hand.
2231 */
2232 struct ethhdr *ehdr;
2233 skb_reset_mac_header(skb);
2234 ehdr = eth_hdr(skb);
2235 if (ehdr->h_proto != htons(ETH_P_8021Q)) {
2236 err = -EMSGSIZE;
2237 goto out_free;
2238 }
2239 }
2240
1da177e4
LT
2241 skb->protocol = proto;
2242 skb->dev = dev;
2243 skb->priority = sk->sk_priority;
2d37a186 2244 skb->mark = sk->sk_mark;
1da177e4 2245
bfd5f4a3
SS
2246 if (po->has_vnet_hdr) {
2247 if (vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
2248 if (!skb_partial_csum_set(skb, vnet_hdr.csum_start,
2249 vnet_hdr.csum_offset)) {
2250 err = -EINVAL;
2251 goto out_free;
2252 }
2253 }
2254
2255 skb_shinfo(skb)->gso_size = vnet_hdr.gso_size;
2256 skb_shinfo(skb)->gso_type = gso_type;
2257
2258 /* Header must be checked, and gso_segs computed. */
2259 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
2260 skb_shinfo(skb)->gso_segs = 0;
2261
2262 len += vnet_hdr_len;
2263 }
2264
3bdc0eba
BG
2265 if (unlikely(extra_len == 4))
2266 skb->no_fcs = 1;
2267
1da177e4
LT
2268 /*
2269 * Now send it
2270 */
2271
2272 err = dev_queue_xmit(skb);
2273 if (err > 0 && (err = net_xmit_errno(err)) != 0)
2274 goto out_unlock;
2275
827d9780
BG
2276 if (need_rls_dev)
2277 dev_put(dev);
1da177e4 2278
40d4e3df 2279 return len;
1da177e4
LT
2280
2281out_free:
2282 kfree_skb(skb);
2283out_unlock:
827d9780 2284 if (dev && need_rls_dev)
1da177e4
LT
2285 dev_put(dev);
2286out:
2287 return err;
2288}
2289
69e3c75f
JB
2290static int packet_sendmsg(struct kiocb *iocb, struct socket *sock,
2291 struct msghdr *msg, size_t len)
2292{
69e3c75f
JB
2293 struct sock *sk = sock->sk;
2294 struct packet_sock *po = pkt_sk(sk);
2295 if (po->tx_ring.pg_vec)
2296 return tpacket_snd(po, msg);
2297 else
69e3c75f
JB
2298 return packet_snd(sock, msg, len);
2299}
2300
1da177e4
LT
2301/*
2302 * Close a PACKET socket. This is fairly simple. We immediately go
2303 * to 'closed' state and remove our protocol entry in the device list.
2304 */
2305
2306static int packet_release(struct socket *sock)
2307{
2308 struct sock *sk = sock->sk;
2309 struct packet_sock *po;
d12d01d6 2310 struct net *net;
f6fb8f10 2311 union tpacket_req_u req_u;
1da177e4
LT
2312
2313 if (!sk)
2314 return 0;
2315
3b1e0a65 2316 net = sock_net(sk);
1da177e4
LT
2317 po = pkt_sk(sk);
2318
808f5114 2319 spin_lock_bh(&net->packet.sklist_lock);
2320 sk_del_node_init_rcu(sk);
920de804 2321 sock_prot_inuse_add(net, sk->sk_prot, -1);
808f5114 2322 spin_unlock_bh(&net->packet.sklist_lock);
1da177e4 2323
808f5114 2324 spin_lock(&po->bind_lock);
ce06b03e 2325 unregister_prot_hook(sk, false);
160ff18a
BG
2326 if (po->prot_hook.dev) {
2327 dev_put(po->prot_hook.dev);
2328 po->prot_hook.dev = NULL;
2329 }
808f5114 2330 spin_unlock(&po->bind_lock);
1da177e4 2331
1da177e4 2332 packet_flush_mclist(sk);
1da177e4 2333
f6fb8f10 2334 memset(&req_u, 0, sizeof(req_u));
69e3c75f
JB
2335
2336 if (po->rx_ring.pg_vec)
f6fb8f10 2337 packet_set_ring(sk, &req_u, 1, 0);
69e3c75f
JB
2338
2339 if (po->tx_ring.pg_vec)
f6fb8f10 2340 packet_set_ring(sk, &req_u, 1, 1);
1da177e4 2341
dc99f600
DM
2342 fanout_release(sk);
2343
808f5114 2344 synchronize_net();
1da177e4
LT
2345 /*
2346 * Now the socket is dead. No more input will appear.
2347 */
1da177e4
LT
2348 sock_orphan(sk);
2349 sock->sk = NULL;
2350
2351 /* Purge queues */
2352
2353 skb_queue_purge(&sk->sk_receive_queue);
17ab56a2 2354 sk_refcnt_debug_release(sk);
1da177e4
LT
2355
2356 sock_put(sk);
2357 return 0;
2358}
2359
2360/*
2361 * Attach a packet hook.
2362 */
2363
0e11c91e 2364static int packet_do_bind(struct sock *sk, struct net_device *dev, __be16 protocol)
1da177e4
LT
2365{
2366 struct packet_sock *po = pkt_sk(sk);
dc99f600 2367
aef950b4
WY
2368 if (po->fanout) {
2369 if (dev)
2370 dev_put(dev);
2371
dc99f600 2372 return -EINVAL;
aef950b4 2373 }
1da177e4
LT
2374
2375 lock_sock(sk);
2376
2377 spin_lock(&po->bind_lock);
ce06b03e 2378 unregister_prot_hook(sk, true);
1da177e4
LT
2379 po->num = protocol;
2380 po->prot_hook.type = protocol;
160ff18a
BG
2381 if (po->prot_hook.dev)
2382 dev_put(po->prot_hook.dev);
1da177e4
LT
2383 po->prot_hook.dev = dev;
2384
2385 po->ifindex = dev ? dev->ifindex : 0;
2386
2387 if (protocol == 0)
2388 goto out_unlock;
2389
be85d4ad 2390 if (!dev || (dev->flags & IFF_UP)) {
ce06b03e 2391 register_prot_hook(sk);
be85d4ad
UT
2392 } else {
2393 sk->sk_err = ENETDOWN;
2394 if (!sock_flag(sk, SOCK_DEAD))
2395 sk->sk_error_report(sk);
1da177e4
LT
2396 }
2397
2398out_unlock:
2399 spin_unlock(&po->bind_lock);
2400 release_sock(sk);
2401 return 0;
2402}
2403
2404/*
2405 * Bind a packet socket to a device
2406 */
2407
40d4e3df
ED
2408static int packet_bind_spkt(struct socket *sock, struct sockaddr *uaddr,
2409 int addr_len)
1da177e4 2410{
40d4e3df 2411 struct sock *sk = sock->sk;
1da177e4
LT
2412 char name[15];
2413 struct net_device *dev;
2414 int err = -ENODEV;
1ce4f28b 2415
1da177e4
LT
2416 /*
2417 * Check legality
2418 */
1ce4f28b 2419
8ae55f04 2420 if (addr_len != sizeof(struct sockaddr))
1da177e4 2421 return -EINVAL;
40d4e3df 2422 strlcpy(name, uaddr->sa_data, sizeof(name));
1da177e4 2423
3b1e0a65 2424 dev = dev_get_by_name(sock_net(sk), name);
160ff18a 2425 if (dev)
1da177e4 2426 err = packet_do_bind(sk, dev, pkt_sk(sk)->num);
1da177e4
LT
2427 return err;
2428}
1da177e4
LT
2429
2430static int packet_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
2431{
40d4e3df
ED
2432 struct sockaddr_ll *sll = (struct sockaddr_ll *)uaddr;
2433 struct sock *sk = sock->sk;
1da177e4
LT
2434 struct net_device *dev = NULL;
2435 int err;
2436
2437
2438 /*
2439 * Check legality
2440 */
1ce4f28b 2441
1da177e4
LT
2442 if (addr_len < sizeof(struct sockaddr_ll))
2443 return -EINVAL;
2444 if (sll->sll_family != AF_PACKET)
2445 return -EINVAL;
2446
2447 if (sll->sll_ifindex) {
2448 err = -ENODEV;
3b1e0a65 2449 dev = dev_get_by_index(sock_net(sk), sll->sll_ifindex);
1da177e4
LT
2450 if (dev == NULL)
2451 goto out;
2452 }
2453 err = packet_do_bind(sk, dev, sll->sll_protocol ? : pkt_sk(sk)->num);
1da177e4
LT
2454
2455out:
2456 return err;
2457}
2458
2459static struct proto packet_proto = {
2460 .name = "PACKET",
2461 .owner = THIS_MODULE,
2462 .obj_size = sizeof(struct packet_sock),
2463};
2464
2465/*
1ce4f28b 2466 * Create a packet of type SOCK_PACKET.
1da177e4
LT
2467 */
2468
3f378b68
EP
2469static int packet_create(struct net *net, struct socket *sock, int protocol,
2470 int kern)
1da177e4
LT
2471{
2472 struct sock *sk;
2473 struct packet_sock *po;
0e11c91e 2474 __be16 proto = (__force __be16)protocol; /* weird, but documented */
1da177e4
LT
2475 int err;
2476
2477 if (!capable(CAP_NET_RAW))
2478 return -EPERM;
be02097c
DM
2479 if (sock->type != SOCK_DGRAM && sock->type != SOCK_RAW &&
2480 sock->type != SOCK_PACKET)
1da177e4
LT
2481 return -ESOCKTNOSUPPORT;
2482
2483 sock->state = SS_UNCONNECTED;
2484
2485 err = -ENOBUFS;
6257ff21 2486 sk = sk_alloc(net, PF_PACKET, GFP_KERNEL, &packet_proto);
1da177e4
LT
2487 if (sk == NULL)
2488 goto out;
2489
2490 sock->ops = &packet_ops;
1da177e4
LT
2491 if (sock->type == SOCK_PACKET)
2492 sock->ops = &packet_ops_spkt;
be02097c 2493
1da177e4
LT
2494 sock_init_data(sock, sk);
2495
2496 po = pkt_sk(sk);
2497 sk->sk_family = PF_PACKET;
0e11c91e 2498 po->num = proto;
1da177e4
LT
2499
2500 sk->sk_destruct = packet_sock_destruct;
17ab56a2 2501 sk_refcnt_debug_inc(sk);
1da177e4
LT
2502
2503 /*
2504 * Attach a protocol block
2505 */
2506
2507 spin_lock_init(&po->bind_lock);
905db440 2508 mutex_init(&po->pg_vec_lock);
1da177e4 2509 po->prot_hook.func = packet_rcv;
be02097c 2510
1da177e4
LT
2511 if (sock->type == SOCK_PACKET)
2512 po->prot_hook.func = packet_rcv_spkt;
be02097c 2513
1da177e4
LT
2514 po->prot_hook.af_packet_priv = sk;
2515
0e11c91e
AV
2516 if (proto) {
2517 po->prot_hook.type = proto;
ce06b03e 2518 register_prot_hook(sk);
1da177e4
LT
2519 }
2520
808f5114 2521 spin_lock_bh(&net->packet.sklist_lock);
2522 sk_add_node_rcu(sk, &net->packet.sklist);
3680453c 2523 sock_prot_inuse_add(net, &packet_proto, 1);
808f5114 2524 spin_unlock_bh(&net->packet.sklist_lock);
2525
40d4e3df 2526 return 0;
1da177e4
LT
2527out:
2528 return err;
2529}
2530
ed85b565
RC
2531static int packet_recv_error(struct sock *sk, struct msghdr *msg, int len)
2532{
2533 struct sock_exterr_skb *serr;
2534 struct sk_buff *skb, *skb2;
2535 int copied, err;
2536
2537 err = -EAGAIN;
2538 skb = skb_dequeue(&sk->sk_error_queue);
2539 if (skb == NULL)
2540 goto out;
2541
2542 copied = skb->len;
2543 if (copied > len) {
2544 msg->msg_flags |= MSG_TRUNC;
2545 copied = len;
2546 }
2547 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
2548 if (err)
2549 goto out_free_skb;
2550
2551 sock_recv_timestamp(msg, sk, skb);
2552
2553 serr = SKB_EXT_ERR(skb);
2554 put_cmsg(msg, SOL_PACKET, PACKET_TX_TIMESTAMP,
2555 sizeof(serr->ee), &serr->ee);
2556
2557 msg->msg_flags |= MSG_ERRQUEUE;
2558 err = copied;
2559
2560 /* Reset and regenerate socket error */
2561 spin_lock_bh(&sk->sk_error_queue.lock);
2562 sk->sk_err = 0;
2563 if ((skb2 = skb_peek(&sk->sk_error_queue)) != NULL) {
2564 sk->sk_err = SKB_EXT_ERR(skb2)->ee.ee_errno;
2565 spin_unlock_bh(&sk->sk_error_queue.lock);
2566 sk->sk_error_report(sk);
2567 } else
2568 spin_unlock_bh(&sk->sk_error_queue.lock);
2569
2570out_free_skb:
2571 kfree_skb(skb);
2572out:
2573 return err;
2574}
2575
1da177e4
LT
2576/*
2577 * Pull a packet from our receive queue and hand it to the user.
2578 * If necessary we block.
2579 */
2580
2581static int packet_recvmsg(struct kiocb *iocb, struct socket *sock,
2582 struct msghdr *msg, size_t len, int flags)
2583{
2584 struct sock *sk = sock->sk;
2585 struct sk_buff *skb;
2586 int copied, err;
0fb375fb 2587 struct sockaddr_ll *sll;
bfd5f4a3 2588 int vnet_hdr_len = 0;
1da177e4
LT
2589
2590 err = -EINVAL;
ed85b565 2591 if (flags & ~(MSG_PEEK|MSG_DONTWAIT|MSG_TRUNC|MSG_CMSG_COMPAT|MSG_ERRQUEUE))
1da177e4
LT
2592 goto out;
2593
2594#if 0
2595 /* What error should we return now? EUNATTACH? */
2596 if (pkt_sk(sk)->ifindex < 0)
2597 return -ENODEV;
2598#endif
2599
ed85b565
RC
2600 if (flags & MSG_ERRQUEUE) {
2601 err = packet_recv_error(sk, msg, len);
2602 goto out;
2603 }
2604
1da177e4
LT
2605 /*
2606 * Call the generic datagram receiver. This handles all sorts
2607 * of horrible races and re-entrancy so we can forget about it
2608 * in the protocol layers.
2609 *
2610 * Now it will return ENETDOWN, if device have just gone down,
2611 * but then it will block.
2612 */
2613
40d4e3df 2614 skb = skb_recv_datagram(sk, flags, flags & MSG_DONTWAIT, &err);
1da177e4
LT
2615
2616 /*
1ce4f28b 2617 * An error occurred so return it. Because skb_recv_datagram()
1da177e4
LT
2618 * handles the blocking we don't see and worry about blocking
2619 * retries.
2620 */
2621
8ae55f04 2622 if (skb == NULL)
1da177e4
LT
2623 goto out;
2624
bfd5f4a3
SS
2625 if (pkt_sk(sk)->has_vnet_hdr) {
2626 struct virtio_net_hdr vnet_hdr = { 0 };
2627
2628 err = -EINVAL;
2629 vnet_hdr_len = sizeof(vnet_hdr);
1f18b717 2630 if (len < vnet_hdr_len)
bfd5f4a3
SS
2631 goto out_free;
2632
1f18b717
MK
2633 len -= vnet_hdr_len;
2634
bfd5f4a3
SS
2635 if (skb_is_gso(skb)) {
2636 struct skb_shared_info *sinfo = skb_shinfo(skb);
2637
2638 /* This is a hint as to how much should be linear. */
2639 vnet_hdr.hdr_len = skb_headlen(skb);
2640 vnet_hdr.gso_size = sinfo->gso_size;
2641 if (sinfo->gso_type & SKB_GSO_TCPV4)
2642 vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
2643 else if (sinfo->gso_type & SKB_GSO_TCPV6)
2644 vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
2645 else if (sinfo->gso_type & SKB_GSO_UDP)
2646 vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_UDP;
2647 else if (sinfo->gso_type & SKB_GSO_FCOE)
2648 goto out_free;
2649 else
2650 BUG();
2651 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
2652 vnet_hdr.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
2653 } else
2654 vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_NONE;
2655
2656 if (skb->ip_summed == CHECKSUM_PARTIAL) {
2657 vnet_hdr.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
55508d60 2658 vnet_hdr.csum_start = skb_checksum_start_offset(skb);
bfd5f4a3 2659 vnet_hdr.csum_offset = skb->csum_offset;
10a8d94a
JW
2660 } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
2661 vnet_hdr.flags = VIRTIO_NET_HDR_F_DATA_VALID;
bfd5f4a3
SS
2662 } /* else everything is zero */
2663
2664 err = memcpy_toiovec(msg->msg_iov, (void *)&vnet_hdr,
2665 vnet_hdr_len);
2666 if (err < 0)
2667 goto out_free;
2668 }
2669
0fb375fb
EB
2670 /*
2671 * If the address length field is there to be filled in, we fill
2672 * it in now.
2673 */
2674
ffbc6111 2675 sll = &PACKET_SKB_CB(skb)->sa.ll;
0fb375fb
EB
2676 if (sock->type == SOCK_PACKET)
2677 msg->msg_namelen = sizeof(struct sockaddr_pkt);
2678 else
2679 msg->msg_namelen = sll->sll_halen + offsetof(struct sockaddr_ll, sll_addr);
2680
1da177e4
LT
2681 /*
2682 * You lose any data beyond the buffer you gave. If it worries a
2683 * user program they can ask the device for its MTU anyway.
2684 */
2685
2686 copied = skb->len;
40d4e3df
ED
2687 if (copied > len) {
2688 copied = len;
2689 msg->msg_flags |= MSG_TRUNC;
1da177e4
LT
2690 }
2691
2692 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
2693 if (err)
2694 goto out_free;
2695
3b885787 2696 sock_recv_ts_and_drops(msg, sk, skb);
1da177e4
LT
2697
2698 if (msg->msg_name)
ffbc6111
HX
2699 memcpy(msg->msg_name, &PACKET_SKB_CB(skb)->sa,
2700 msg->msg_namelen);
1da177e4 2701
8dc41944 2702 if (pkt_sk(sk)->auxdata) {
ffbc6111
HX
2703 struct tpacket_auxdata aux;
2704
2705 aux.tp_status = TP_STATUS_USER;
2706 if (skb->ip_summed == CHECKSUM_PARTIAL)
2707 aux.tp_status |= TP_STATUS_CSUMNOTREADY;
2708 aux.tp_len = PACKET_SKB_CB(skb)->origlen;
2709 aux.tp_snaplen = skb->len;
2710 aux.tp_mac = 0;
bbe735e4 2711 aux.tp_net = skb_network_offset(skb);
a3bcc23e
BG
2712 if (vlan_tx_tag_present(skb)) {
2713 aux.tp_vlan_tci = vlan_tx_tag_get(skb);
2714 aux.tp_status |= TP_STATUS_VLAN_VALID;
2715 } else {
2716 aux.tp_vlan_tci = 0;
2717 }
13fcb7bd 2718 aux.tp_padding = 0;
ffbc6111 2719 put_cmsg(msg, SOL_PACKET, PACKET_AUXDATA, sizeof(aux), &aux);
8dc41944
HX
2720 }
2721
1da177e4
LT
2722 /*
2723 * Free or return the buffer as appropriate. Again this
2724 * hides all the races and re-entrancy issues from us.
2725 */
bfd5f4a3 2726 err = vnet_hdr_len + ((flags&MSG_TRUNC) ? skb->len : copied);
1da177e4
LT
2727
2728out_free:
2729 skb_free_datagram(sk, skb);
2730out:
2731 return err;
2732}
2733
1da177e4
LT
2734static int packet_getname_spkt(struct socket *sock, struct sockaddr *uaddr,
2735 int *uaddr_len, int peer)
2736{
2737 struct net_device *dev;
2738 struct sock *sk = sock->sk;
2739
2740 if (peer)
2741 return -EOPNOTSUPP;
2742
2743 uaddr->sa_family = AF_PACKET;
654d1f8a
ED
2744 rcu_read_lock();
2745 dev = dev_get_by_index_rcu(sock_net(sk), pkt_sk(sk)->ifindex);
2746 if (dev)
67286640 2747 strncpy(uaddr->sa_data, dev->name, 14);
654d1f8a 2748 else
1da177e4 2749 memset(uaddr->sa_data, 0, 14);
654d1f8a 2750 rcu_read_unlock();
1da177e4
LT
2751 *uaddr_len = sizeof(*uaddr);
2752
2753 return 0;
2754}
1da177e4
LT
2755
2756static int packet_getname(struct socket *sock, struct sockaddr *uaddr,
2757 int *uaddr_len, int peer)
2758{
2759 struct net_device *dev;
2760 struct sock *sk = sock->sk;
2761 struct packet_sock *po = pkt_sk(sk);
13cfa97b 2762 DECLARE_SOCKADDR(struct sockaddr_ll *, sll, uaddr);
1da177e4
LT
2763
2764 if (peer)
2765 return -EOPNOTSUPP;
2766
2767 sll->sll_family = AF_PACKET;
2768 sll->sll_ifindex = po->ifindex;
2769 sll->sll_protocol = po->num;
67286640 2770 sll->sll_pkttype = 0;
654d1f8a
ED
2771 rcu_read_lock();
2772 dev = dev_get_by_index_rcu(sock_net(sk), po->ifindex);
1da177e4
LT
2773 if (dev) {
2774 sll->sll_hatype = dev->type;
2775 sll->sll_halen = dev->addr_len;
2776 memcpy(sll->sll_addr, dev->dev_addr, dev->addr_len);
1da177e4
LT
2777 } else {
2778 sll->sll_hatype = 0; /* Bad: we have no ARPHRD_UNSPEC */
2779 sll->sll_halen = 0;
2780 }
654d1f8a 2781 rcu_read_unlock();
0fb375fb 2782 *uaddr_len = offsetof(struct sockaddr_ll, sll_addr) + sll->sll_halen;
1da177e4
LT
2783
2784 return 0;
2785}
2786
2aeb0b88
WC
2787static int packet_dev_mc(struct net_device *dev, struct packet_mclist *i,
2788 int what)
1da177e4
LT
2789{
2790 switch (i->type) {
2791 case PACKET_MR_MULTICAST:
1162563f
JP
2792 if (i->alen != dev->addr_len)
2793 return -EINVAL;
1da177e4 2794 if (what > 0)
22bedad3 2795 return dev_mc_add(dev, i->addr);
1da177e4 2796 else
22bedad3 2797 return dev_mc_del(dev, i->addr);
1da177e4
LT
2798 break;
2799 case PACKET_MR_PROMISC:
2aeb0b88 2800 return dev_set_promiscuity(dev, what);
1da177e4
LT
2801 break;
2802 case PACKET_MR_ALLMULTI:
2aeb0b88 2803 return dev_set_allmulti(dev, what);
1da177e4 2804 break;
d95ed927 2805 case PACKET_MR_UNICAST:
1162563f
JP
2806 if (i->alen != dev->addr_len)
2807 return -EINVAL;
d95ed927 2808 if (what > 0)
a748ee24 2809 return dev_uc_add(dev, i->addr);
d95ed927 2810 else
a748ee24 2811 return dev_uc_del(dev, i->addr);
d95ed927 2812 break;
40d4e3df
ED
2813 default:
2814 break;
1da177e4 2815 }
2aeb0b88 2816 return 0;
1da177e4
LT
2817}
2818
2819static void packet_dev_mclist(struct net_device *dev, struct packet_mclist *i, int what)
2820{
40d4e3df 2821 for ( ; i; i = i->next) {
1da177e4
LT
2822 if (i->ifindex == dev->ifindex)
2823 packet_dev_mc(dev, i, what);
2824 }
2825}
2826
0fb375fb 2827static int packet_mc_add(struct sock *sk, struct packet_mreq_max *mreq)
1da177e4
LT
2828{
2829 struct packet_sock *po = pkt_sk(sk);
2830 struct packet_mclist *ml, *i;
2831 struct net_device *dev;
2832 int err;
2833
2834 rtnl_lock();
2835
2836 err = -ENODEV;
3b1e0a65 2837 dev = __dev_get_by_index(sock_net(sk), mreq->mr_ifindex);
1da177e4
LT
2838 if (!dev)
2839 goto done;
2840
2841 err = -EINVAL;
1162563f 2842 if (mreq->mr_alen > dev->addr_len)
1da177e4
LT
2843 goto done;
2844
2845 err = -ENOBUFS;
8b3a7005 2846 i = kmalloc(sizeof(*i), GFP_KERNEL);
1da177e4
LT
2847 if (i == NULL)
2848 goto done;
2849
2850 err = 0;
2851 for (ml = po->mclist; ml; ml = ml->next) {
2852 if (ml->ifindex == mreq->mr_ifindex &&
2853 ml->type == mreq->mr_type &&
2854 ml->alen == mreq->mr_alen &&
2855 memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
2856 ml->count++;
2857 /* Free the new element ... */
2858 kfree(i);
2859 goto done;
2860 }
2861 }
2862
2863 i->type = mreq->mr_type;
2864 i->ifindex = mreq->mr_ifindex;
2865 i->alen = mreq->mr_alen;
2866 memcpy(i->addr, mreq->mr_address, i->alen);
2867 i->count = 1;
2868 i->next = po->mclist;
2869 po->mclist = i;
2aeb0b88
WC
2870 err = packet_dev_mc(dev, i, 1);
2871 if (err) {
2872 po->mclist = i->next;
2873 kfree(i);
2874 }
1da177e4
LT
2875
2876done:
2877 rtnl_unlock();
2878 return err;
2879}
2880
0fb375fb 2881static int packet_mc_drop(struct sock *sk, struct packet_mreq_max *mreq)
1da177e4
LT
2882{
2883 struct packet_mclist *ml, **mlp;
2884
2885 rtnl_lock();
2886
2887 for (mlp = &pkt_sk(sk)->mclist; (ml = *mlp) != NULL; mlp = &ml->next) {
2888 if (ml->ifindex == mreq->mr_ifindex &&
2889 ml->type == mreq->mr_type &&
2890 ml->alen == mreq->mr_alen &&
2891 memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
2892 if (--ml->count == 0) {
2893 struct net_device *dev;
2894 *mlp = ml->next;
ad959e76
ED
2895 dev = __dev_get_by_index(sock_net(sk), ml->ifindex);
2896 if (dev)
1da177e4 2897 packet_dev_mc(dev, ml, -1);
1da177e4
LT
2898 kfree(ml);
2899 }
2900 rtnl_unlock();
2901 return 0;
2902 }
2903 }
2904 rtnl_unlock();
2905 return -EADDRNOTAVAIL;
2906}
2907
2908static void packet_flush_mclist(struct sock *sk)
2909{
2910 struct packet_sock *po = pkt_sk(sk);
2911 struct packet_mclist *ml;
2912
2913 if (!po->mclist)
2914 return;
2915
2916 rtnl_lock();
2917 while ((ml = po->mclist) != NULL) {
2918 struct net_device *dev;
2919
2920 po->mclist = ml->next;
ad959e76
ED
2921 dev = __dev_get_by_index(sock_net(sk), ml->ifindex);
2922 if (dev != NULL)
1da177e4 2923 packet_dev_mc(dev, ml, -1);
1da177e4
LT
2924 kfree(ml);
2925 }
2926 rtnl_unlock();
2927}
1da177e4
LT
2928
2929static int
b7058842 2930packet_setsockopt(struct socket *sock, int level, int optname, char __user *optval, unsigned int optlen)
1da177e4
LT
2931{
2932 struct sock *sk = sock->sk;
8dc41944 2933 struct packet_sock *po = pkt_sk(sk);
1da177e4
LT
2934 int ret;
2935
2936 if (level != SOL_PACKET)
2937 return -ENOPROTOOPT;
2938
69e3c75f 2939 switch (optname) {
1ce4f28b 2940 case PACKET_ADD_MEMBERSHIP:
1da177e4
LT
2941 case PACKET_DROP_MEMBERSHIP:
2942 {
0fb375fb
EB
2943 struct packet_mreq_max mreq;
2944 int len = optlen;
2945 memset(&mreq, 0, sizeof(mreq));
2946 if (len < sizeof(struct packet_mreq))
1da177e4 2947 return -EINVAL;
0fb375fb
EB
2948 if (len > sizeof(mreq))
2949 len = sizeof(mreq);
40d4e3df 2950 if (copy_from_user(&mreq, optval, len))
1da177e4 2951 return -EFAULT;
0fb375fb
EB
2952 if (len < (mreq.mr_alen + offsetof(struct packet_mreq, mr_address)))
2953 return -EINVAL;
1da177e4
LT
2954 if (optname == PACKET_ADD_MEMBERSHIP)
2955 ret = packet_mc_add(sk, &mreq);
2956 else
2957 ret = packet_mc_drop(sk, &mreq);
2958 return ret;
2959 }
a2efcfa0 2960
1da177e4 2961 case PACKET_RX_RING:
69e3c75f 2962 case PACKET_TX_RING:
1da177e4 2963 {
f6fb8f10 2964 union tpacket_req_u req_u;
2965 int len;
1da177e4 2966
f6fb8f10 2967 switch (po->tp_version) {
2968 case TPACKET_V1:
2969 case TPACKET_V2:
2970 len = sizeof(req_u.req);
2971 break;
2972 case TPACKET_V3:
2973 default:
2974 len = sizeof(req_u.req3);
2975 break;
2976 }
2977 if (optlen < len)
1da177e4 2978 return -EINVAL;
bfd5f4a3
SS
2979 if (pkt_sk(sk)->has_vnet_hdr)
2980 return -EINVAL;
f6fb8f10 2981 if (copy_from_user(&req_u.req, optval, len))
1da177e4 2982 return -EFAULT;
f6fb8f10 2983 return packet_set_ring(sk, &req_u, 0,
2984 optname == PACKET_TX_RING);
1da177e4
LT
2985 }
2986 case PACKET_COPY_THRESH:
2987 {
2988 int val;
2989
40d4e3df 2990 if (optlen != sizeof(val))
1da177e4 2991 return -EINVAL;
40d4e3df 2992 if (copy_from_user(&val, optval, sizeof(val)))
1da177e4
LT
2993 return -EFAULT;
2994
2995 pkt_sk(sk)->copy_thresh = val;
2996 return 0;
2997 }
bbd6ef87
PM
2998 case PACKET_VERSION:
2999 {
3000 int val;
3001
3002 if (optlen != sizeof(val))
3003 return -EINVAL;
69e3c75f 3004 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
bbd6ef87
PM
3005 return -EBUSY;
3006 if (copy_from_user(&val, optval, sizeof(val)))
3007 return -EFAULT;
3008 switch (val) {
3009 case TPACKET_V1:
3010 case TPACKET_V2:
f6fb8f10 3011 case TPACKET_V3:
bbd6ef87
PM
3012 po->tp_version = val;
3013 return 0;
3014 default:
3015 return -EINVAL;
3016 }
3017 }
8913336a
PM
3018 case PACKET_RESERVE:
3019 {
3020 unsigned int val;
3021
3022 if (optlen != sizeof(val))
3023 return -EINVAL;
69e3c75f 3024 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
8913336a
PM
3025 return -EBUSY;
3026 if (copy_from_user(&val, optval, sizeof(val)))
3027 return -EFAULT;
3028 po->tp_reserve = val;
3029 return 0;
3030 }
69e3c75f
JB
3031 case PACKET_LOSS:
3032 {
3033 unsigned int val;
3034
3035 if (optlen != sizeof(val))
3036 return -EINVAL;
3037 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
3038 return -EBUSY;
3039 if (copy_from_user(&val, optval, sizeof(val)))
3040 return -EFAULT;
3041 po->tp_loss = !!val;
3042 return 0;
3043 }
8dc41944
HX
3044 case PACKET_AUXDATA:
3045 {
3046 int val;
3047
3048 if (optlen < sizeof(val))
3049 return -EINVAL;
3050 if (copy_from_user(&val, optval, sizeof(val)))
3051 return -EFAULT;
3052
3053 po->auxdata = !!val;
3054 return 0;
3055 }
80feaacb
PWJ
3056 case PACKET_ORIGDEV:
3057 {
3058 int val;
3059
3060 if (optlen < sizeof(val))
3061 return -EINVAL;
3062 if (copy_from_user(&val, optval, sizeof(val)))
3063 return -EFAULT;
3064
3065 po->origdev = !!val;
3066 return 0;
3067 }
bfd5f4a3
SS
3068 case PACKET_VNET_HDR:
3069 {
3070 int val;
3071
3072 if (sock->type != SOCK_RAW)
3073 return -EINVAL;
3074 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
3075 return -EBUSY;
3076 if (optlen < sizeof(val))
3077 return -EINVAL;
3078 if (copy_from_user(&val, optval, sizeof(val)))
3079 return -EFAULT;
3080
3081 po->has_vnet_hdr = !!val;
3082 return 0;
3083 }
614f60fa
SM
3084 case PACKET_TIMESTAMP:
3085 {
3086 int val;
3087
3088 if (optlen != sizeof(val))
3089 return -EINVAL;
3090 if (copy_from_user(&val, optval, sizeof(val)))
3091 return -EFAULT;
3092
3093 po->tp_tstamp = val;
3094 return 0;
3095 }
dc99f600
DM
3096 case PACKET_FANOUT:
3097 {
3098 int val;
3099
3100 if (optlen != sizeof(val))
3101 return -EINVAL;
3102 if (copy_from_user(&val, optval, sizeof(val)))
3103 return -EFAULT;
3104
3105 return fanout_add(sk, val & 0xffff, val >> 16);
3106 }
1da177e4
LT
3107 default:
3108 return -ENOPROTOOPT;
3109 }
3110}
3111
3112static int packet_getsockopt(struct socket *sock, int level, int optname,
3113 char __user *optval, int __user *optlen)
3114{
3115 int len;
c06fff6e 3116 int val, lv = sizeof(val);
1da177e4
LT
3117 struct sock *sk = sock->sk;
3118 struct packet_sock *po = pkt_sk(sk);
c06fff6e 3119 void *data = &val;
8dc41944 3120 struct tpacket_stats st;
f6fb8f10 3121 union tpacket_stats_u st_u;
1da177e4
LT
3122
3123 if (level != SOL_PACKET)
3124 return -ENOPROTOOPT;
3125
8ae55f04
KK
3126 if (get_user(len, optlen))
3127 return -EFAULT;
1da177e4
LT
3128
3129 if (len < 0)
3130 return -EINVAL;
1ce4f28b 3131
69e3c75f 3132 switch (optname) {
1da177e4 3133 case PACKET_STATISTICS:
1da177e4 3134 spin_lock_bh(&sk->sk_receive_queue.lock);
f6fb8f10 3135 if (po->tp_version == TPACKET_V3) {
c06fff6e 3136 lv = sizeof(struct tpacket_stats_v3);
f6fb8f10 3137 memcpy(&st_u.stats3, &po->stats,
c06fff6e 3138 sizeof(struct tpacket_stats));
f6fb8f10 3139 st_u.stats3.tp_freeze_q_cnt =
c06fff6e 3140 po->stats_u.stats3.tp_freeze_q_cnt;
f6fb8f10 3141 st_u.stats3.tp_packets += po->stats.tp_drops;
3142 data = &st_u.stats3;
3143 } else {
c06fff6e 3144 lv = sizeof(struct tpacket_stats);
f6fb8f10 3145 st = po->stats;
3146 st.tp_packets += st.tp_drops;
3147 data = &st;
3148 }
1da177e4
LT
3149 memset(&po->stats, 0, sizeof(st));
3150 spin_unlock_bh(&sk->sk_receive_queue.lock);
8dc41944
HX
3151 break;
3152 case PACKET_AUXDATA:
8dc41944 3153 val = po->auxdata;
80feaacb
PWJ
3154 break;
3155 case PACKET_ORIGDEV:
80feaacb 3156 val = po->origdev;
bfd5f4a3
SS
3157 break;
3158 case PACKET_VNET_HDR:
bfd5f4a3 3159 val = po->has_vnet_hdr;
1da177e4 3160 break;
bbd6ef87 3161 case PACKET_VERSION:
bbd6ef87 3162 val = po->tp_version;
bbd6ef87
PM
3163 break;
3164 case PACKET_HDRLEN:
3165 if (len > sizeof(int))
3166 len = sizeof(int);
3167 if (copy_from_user(&val, optval, len))
3168 return -EFAULT;
3169 switch (val) {
3170 case TPACKET_V1:
3171 val = sizeof(struct tpacket_hdr);
3172 break;
3173 case TPACKET_V2:
3174 val = sizeof(struct tpacket2_hdr);
3175 break;
f6fb8f10 3176 case TPACKET_V3:
3177 val = sizeof(struct tpacket3_hdr);
3178 break;
bbd6ef87
PM
3179 default:
3180 return -EINVAL;
3181 }
bbd6ef87 3182 break;
8913336a 3183 case PACKET_RESERVE:
8913336a 3184 val = po->tp_reserve;
8913336a 3185 break;
69e3c75f 3186 case PACKET_LOSS:
69e3c75f 3187 val = po->tp_loss;
69e3c75f 3188 break;
614f60fa 3189 case PACKET_TIMESTAMP:
614f60fa 3190 val = po->tp_tstamp;
614f60fa 3191 break;
dc99f600 3192 case PACKET_FANOUT:
dc99f600
DM
3193 val = (po->fanout ?
3194 ((u32)po->fanout->id |
3195 ((u32)po->fanout->type << 16)) :
3196 0);
dc99f600 3197 break;
1da177e4
LT
3198 default:
3199 return -ENOPROTOOPT;
3200 }
3201
c06fff6e
ED
3202 if (len > lv)
3203 len = lv;
8ae55f04
KK
3204 if (put_user(len, optlen))
3205 return -EFAULT;
8dc41944
HX
3206 if (copy_to_user(optval, data, len))
3207 return -EFAULT;
8ae55f04 3208 return 0;
1da177e4
LT
3209}
3210
3211
3212static int packet_notifier(struct notifier_block *this, unsigned long msg, void *data)
3213{
3214 struct sock *sk;
3215 struct hlist_node *node;
ad930650 3216 struct net_device *dev = data;
c346dca1 3217 struct net *net = dev_net(dev);
1da177e4 3218
808f5114 3219 rcu_read_lock();
3220 sk_for_each_rcu(sk, node, &net->packet.sklist) {
1da177e4
LT
3221 struct packet_sock *po = pkt_sk(sk);
3222
3223 switch (msg) {
3224 case NETDEV_UNREGISTER:
1da177e4
LT
3225 if (po->mclist)
3226 packet_dev_mclist(dev, po->mclist, -1);
a2efcfa0
DM
3227 /* fallthrough */
3228
1da177e4
LT
3229 case NETDEV_DOWN:
3230 if (dev->ifindex == po->ifindex) {
3231 spin_lock(&po->bind_lock);
3232 if (po->running) {
ce06b03e 3233 __unregister_prot_hook(sk, false);
1da177e4
LT
3234 sk->sk_err = ENETDOWN;
3235 if (!sock_flag(sk, SOCK_DEAD))
3236 sk->sk_error_report(sk);
3237 }
3238 if (msg == NETDEV_UNREGISTER) {
3239 po->ifindex = -1;
160ff18a
BG
3240 if (po->prot_hook.dev)
3241 dev_put(po->prot_hook.dev);
1da177e4
LT
3242 po->prot_hook.dev = NULL;
3243 }
3244 spin_unlock(&po->bind_lock);
3245 }
3246 break;
3247 case NETDEV_UP:
808f5114 3248 if (dev->ifindex == po->ifindex) {
3249 spin_lock(&po->bind_lock);
ce06b03e
DM
3250 if (po->num)
3251 register_prot_hook(sk);
808f5114 3252 spin_unlock(&po->bind_lock);
1da177e4 3253 }
1da177e4
LT
3254 break;
3255 }
3256 }
808f5114 3257 rcu_read_unlock();
1da177e4
LT
3258 return NOTIFY_DONE;
3259}
3260
3261
3262static int packet_ioctl(struct socket *sock, unsigned int cmd,
3263 unsigned long arg)
3264{
3265 struct sock *sk = sock->sk;
3266
69e3c75f 3267 switch (cmd) {
40d4e3df
ED
3268 case SIOCOUTQ:
3269 {
3270 int amount = sk_wmem_alloc_get(sk);
31e6d363 3271
40d4e3df
ED
3272 return put_user(amount, (int __user *)arg);
3273 }
3274 case SIOCINQ:
3275 {
3276 struct sk_buff *skb;
3277 int amount = 0;
3278
3279 spin_lock_bh(&sk->sk_receive_queue.lock);
3280 skb = skb_peek(&sk->sk_receive_queue);
3281 if (skb)
3282 amount = skb->len;
3283 spin_unlock_bh(&sk->sk_receive_queue.lock);
3284 return put_user(amount, (int __user *)arg);
3285 }
3286 case SIOCGSTAMP:
3287 return sock_get_timestamp(sk, (struct timeval __user *)arg);
3288 case SIOCGSTAMPNS:
3289 return sock_get_timestampns(sk, (struct timespec __user *)arg);
1ce4f28b 3290
1da177e4 3291#ifdef CONFIG_INET
40d4e3df
ED
3292 case SIOCADDRT:
3293 case SIOCDELRT:
3294 case SIOCDARP:
3295 case SIOCGARP:
3296 case SIOCSARP:
3297 case SIOCGIFADDR:
3298 case SIOCSIFADDR:
3299 case SIOCGIFBRDADDR:
3300 case SIOCSIFBRDADDR:
3301 case SIOCGIFNETMASK:
3302 case SIOCSIFNETMASK:
3303 case SIOCGIFDSTADDR:
3304 case SIOCSIFDSTADDR:
3305 case SIOCSIFFLAGS:
40d4e3df 3306 return inet_dgram_ops.ioctl(sock, cmd, arg);
1da177e4
LT
3307#endif
3308
40d4e3df
ED
3309 default:
3310 return -ENOIOCTLCMD;
1da177e4
LT
3311 }
3312 return 0;
3313}
3314
40d4e3df 3315static unsigned int packet_poll(struct file *file, struct socket *sock,
1da177e4
LT
3316 poll_table *wait)
3317{
3318 struct sock *sk = sock->sk;
3319 struct packet_sock *po = pkt_sk(sk);
3320 unsigned int mask = datagram_poll(file, sock, wait);
3321
3322 spin_lock_bh(&sk->sk_receive_queue.lock);
69e3c75f 3323 if (po->rx_ring.pg_vec) {
f6fb8f10 3324 if (!packet_previous_rx_frame(po, &po->rx_ring,
3325 TP_STATUS_KERNEL))
1da177e4
LT
3326 mask |= POLLIN | POLLRDNORM;
3327 }
3328 spin_unlock_bh(&sk->sk_receive_queue.lock);
69e3c75f
JB
3329 spin_lock_bh(&sk->sk_write_queue.lock);
3330 if (po->tx_ring.pg_vec) {
3331 if (packet_current_frame(po, &po->tx_ring, TP_STATUS_AVAILABLE))
3332 mask |= POLLOUT | POLLWRNORM;
3333 }
3334 spin_unlock_bh(&sk->sk_write_queue.lock);
1da177e4
LT
3335 return mask;
3336}
3337
3338
3339/* Dirty? Well, I still did not learn better way to account
3340 * for user mmaps.
3341 */
3342
3343static void packet_mm_open(struct vm_area_struct *vma)
3344{
3345 struct file *file = vma->vm_file;
40d4e3df 3346 struct socket *sock = file->private_data;
1da177e4 3347 struct sock *sk = sock->sk;
1ce4f28b 3348
1da177e4
LT
3349 if (sk)
3350 atomic_inc(&pkt_sk(sk)->mapped);
3351}
3352
3353static void packet_mm_close(struct vm_area_struct *vma)
3354{
3355 struct file *file = vma->vm_file;
40d4e3df 3356 struct socket *sock = file->private_data;
1da177e4 3357 struct sock *sk = sock->sk;
1ce4f28b 3358
1da177e4
LT
3359 if (sk)
3360 atomic_dec(&pkt_sk(sk)->mapped);
3361}
3362
f0f37e2f 3363static const struct vm_operations_struct packet_mmap_ops = {
40d4e3df
ED
3364 .open = packet_mm_open,
3365 .close = packet_mm_close,
1da177e4
LT
3366};
3367
0e3125c7
NH
3368static void free_pg_vec(struct pgv *pg_vec, unsigned int order,
3369 unsigned int len)
1da177e4
LT
3370{
3371 int i;
3372
4ebf0ae2 3373 for (i = 0; i < len; i++) {
0e3125c7 3374 if (likely(pg_vec[i].buffer)) {
c56b4d90 3375 if (is_vmalloc_addr(pg_vec[i].buffer))
0e3125c7
NH
3376 vfree(pg_vec[i].buffer);
3377 else
3378 free_pages((unsigned long)pg_vec[i].buffer,
3379 order);
3380 pg_vec[i].buffer = NULL;
3381 }
1da177e4
LT
3382 }
3383 kfree(pg_vec);
3384}
3385
eea49cc9 3386static char *alloc_one_pg_vec_page(unsigned long order)
4ebf0ae2 3387{
0e3125c7
NH
3388 char *buffer = NULL;
3389 gfp_t gfp_flags = GFP_KERNEL | __GFP_COMP |
3390 __GFP_ZERO | __GFP_NOWARN | __GFP_NORETRY;
3391
3392 buffer = (char *) __get_free_pages(gfp_flags, order);
3393
3394 if (buffer)
3395 return buffer;
3396
3397 /*
3398 * __get_free_pages failed, fall back to vmalloc
3399 */
bbce5a59 3400 buffer = vzalloc((1 << order) * PAGE_SIZE);
719bfeaa 3401
0e3125c7
NH
3402 if (buffer)
3403 return buffer;
3404
3405 /*
3406 * vmalloc failed, lets dig into swap here
3407 */
0e3125c7
NH
3408 gfp_flags &= ~__GFP_NORETRY;
3409 buffer = (char *)__get_free_pages(gfp_flags, order);
3410 if (buffer)
3411 return buffer;
3412
3413 /*
3414 * complete and utter failure
3415 */
3416 return NULL;
4ebf0ae2
DM
3417}
3418
0e3125c7 3419static struct pgv *alloc_pg_vec(struct tpacket_req *req, int order)
4ebf0ae2
DM
3420{
3421 unsigned int block_nr = req->tp_block_nr;
0e3125c7 3422 struct pgv *pg_vec;
4ebf0ae2
DM
3423 int i;
3424
0e3125c7 3425 pg_vec = kcalloc(block_nr, sizeof(struct pgv), GFP_KERNEL);
4ebf0ae2
DM
3426 if (unlikely(!pg_vec))
3427 goto out;
3428
3429 for (i = 0; i < block_nr; i++) {
c56b4d90 3430 pg_vec[i].buffer = alloc_one_pg_vec_page(order);
0e3125c7 3431 if (unlikely(!pg_vec[i].buffer))
4ebf0ae2
DM
3432 goto out_free_pgvec;
3433 }
3434
3435out:
3436 return pg_vec;
3437
3438out_free_pgvec:
3439 free_pg_vec(pg_vec, order, block_nr);
3440 pg_vec = NULL;
3441 goto out;
3442}
1da177e4 3443
f6fb8f10 3444static int packet_set_ring(struct sock *sk, union tpacket_req_u *req_u,
69e3c75f 3445 int closing, int tx_ring)
1da177e4 3446{
0e3125c7 3447 struct pgv *pg_vec = NULL;
1da177e4 3448 struct packet_sock *po = pkt_sk(sk);
0e11c91e 3449 int was_running, order = 0;
69e3c75f
JB
3450 struct packet_ring_buffer *rb;
3451 struct sk_buff_head *rb_queue;
0e11c91e 3452 __be16 num;
f6fb8f10 3453 int err = -EINVAL;
3454 /* Added to avoid minimal code churn */
3455 struct tpacket_req *req = &req_u->req;
3456
3457 /* Opening a Tx-ring is NOT supported in TPACKET_V3 */
3458 if (!closing && tx_ring && (po->tp_version > TPACKET_V2)) {
3459 WARN(1, "Tx-ring is not supported.\n");
3460 goto out;
3461 }
1ce4f28b 3462
69e3c75f
JB
3463 rb = tx_ring ? &po->tx_ring : &po->rx_ring;
3464 rb_queue = tx_ring ? &sk->sk_write_queue : &sk->sk_receive_queue;
1da177e4 3465
69e3c75f
JB
3466 err = -EBUSY;
3467 if (!closing) {
3468 if (atomic_read(&po->mapped))
3469 goto out;
3470 if (atomic_read(&rb->pending))
3471 goto out;
3472 }
1da177e4 3473
69e3c75f
JB
3474 if (req->tp_block_nr) {
3475 /* Sanity tests and some calculations */
3476 err = -EBUSY;
3477 if (unlikely(rb->pg_vec))
3478 goto out;
1da177e4 3479
bbd6ef87
PM
3480 switch (po->tp_version) {
3481 case TPACKET_V1:
3482 po->tp_hdrlen = TPACKET_HDRLEN;
3483 break;
3484 case TPACKET_V2:
3485 po->tp_hdrlen = TPACKET2_HDRLEN;
3486 break;
f6fb8f10 3487 case TPACKET_V3:
3488 po->tp_hdrlen = TPACKET3_HDRLEN;
3489 break;
bbd6ef87
PM
3490 }
3491
69e3c75f 3492 err = -EINVAL;
4ebf0ae2 3493 if (unlikely((int)req->tp_block_size <= 0))
69e3c75f 3494 goto out;
4ebf0ae2 3495 if (unlikely(req->tp_block_size & (PAGE_SIZE - 1)))
69e3c75f 3496 goto out;
8913336a 3497 if (unlikely(req->tp_frame_size < po->tp_hdrlen +
69e3c75f
JB
3498 po->tp_reserve))
3499 goto out;
4ebf0ae2 3500 if (unlikely(req->tp_frame_size & (TPACKET_ALIGNMENT - 1)))
69e3c75f 3501 goto out;
1da177e4 3502
69e3c75f
JB
3503 rb->frames_per_block = req->tp_block_size/req->tp_frame_size;
3504 if (unlikely(rb->frames_per_block <= 0))
3505 goto out;
3506 if (unlikely((rb->frames_per_block * req->tp_block_nr) !=
3507 req->tp_frame_nr))
3508 goto out;
1da177e4
LT
3509
3510 err = -ENOMEM;
4ebf0ae2
DM
3511 order = get_order(req->tp_block_size);
3512 pg_vec = alloc_pg_vec(req, order);
3513 if (unlikely(!pg_vec))
1da177e4 3514 goto out;
f6fb8f10 3515 switch (po->tp_version) {
3516 case TPACKET_V3:
3517 /* Transmit path is not supported. We checked
3518 * it above but just being paranoid
3519 */
3520 if (!tx_ring)
3521 init_prb_bdqc(po, rb, pg_vec, req_u, tx_ring);
3522 break;
3523 default:
3524 break;
3525 }
69e3c75f
JB
3526 }
3527 /* Done */
3528 else {
3529 err = -EINVAL;
4ebf0ae2 3530 if (unlikely(req->tp_frame_nr))
69e3c75f 3531 goto out;
1da177e4
LT
3532 }
3533
3534 lock_sock(sk);
3535
3536 /* Detach socket from network */
3537 spin_lock(&po->bind_lock);
3538 was_running = po->running;
3539 num = po->num;
3540 if (was_running) {
1da177e4 3541 po->num = 0;
ce06b03e 3542 __unregister_prot_hook(sk, false);
1da177e4
LT
3543 }
3544 spin_unlock(&po->bind_lock);
1ce4f28b 3545
1da177e4
LT
3546 synchronize_net();
3547
3548 err = -EBUSY;
905db440 3549 mutex_lock(&po->pg_vec_lock);
1da177e4
LT
3550 if (closing || atomic_read(&po->mapped) == 0) {
3551 err = 0;
69e3c75f 3552 spin_lock_bh(&rb_queue->lock);
c053fd96 3553 swap(rb->pg_vec, pg_vec);
69e3c75f
JB
3554 rb->frame_max = (req->tp_frame_nr - 1);
3555 rb->head = 0;
3556 rb->frame_size = req->tp_frame_size;
3557 spin_unlock_bh(&rb_queue->lock);
3558
c053fd96
CG
3559 swap(rb->pg_vec_order, order);
3560 swap(rb->pg_vec_len, req->tp_block_nr);
69e3c75f
JB
3561
3562 rb->pg_vec_pages = req->tp_block_size/PAGE_SIZE;
3563 po->prot_hook.func = (po->rx_ring.pg_vec) ?
3564 tpacket_rcv : packet_rcv;
3565 skb_queue_purge(rb_queue);
1da177e4 3566 if (atomic_read(&po->mapped))
40d4e3df
ED
3567 pr_err("packet_mmap: vma is busy: %d\n",
3568 atomic_read(&po->mapped));
1da177e4 3569 }
905db440 3570 mutex_unlock(&po->pg_vec_lock);
1da177e4
LT
3571
3572 spin_lock(&po->bind_lock);
ce06b03e 3573 if (was_running) {
1da177e4 3574 po->num = num;
ce06b03e 3575 register_prot_hook(sk);
1da177e4
LT
3576 }
3577 spin_unlock(&po->bind_lock);
f6fb8f10 3578 if (closing && (po->tp_version > TPACKET_V2)) {
3579 /* Because we don't support block-based V3 on tx-ring */
3580 if (!tx_ring)
3581 prb_shutdown_retire_blk_timer(po, tx_ring, rb_queue);
3582 }
1da177e4
LT
3583 release_sock(sk);
3584
1da177e4
LT
3585 if (pg_vec)
3586 free_pg_vec(pg_vec, order, req->tp_block_nr);
3587out:
3588 return err;
3589}
3590
69e3c75f
JB
3591static int packet_mmap(struct file *file, struct socket *sock,
3592 struct vm_area_struct *vma)
1da177e4
LT
3593{
3594 struct sock *sk = sock->sk;
3595 struct packet_sock *po = pkt_sk(sk);
69e3c75f
JB
3596 unsigned long size, expected_size;
3597 struct packet_ring_buffer *rb;
1da177e4
LT
3598 unsigned long start;
3599 int err = -EINVAL;
3600 int i;
3601
3602 if (vma->vm_pgoff)
3603 return -EINVAL;
3604
905db440 3605 mutex_lock(&po->pg_vec_lock);
69e3c75f
JB
3606
3607 expected_size = 0;
3608 for (rb = &po->rx_ring; rb <= &po->tx_ring; rb++) {
3609 if (rb->pg_vec) {
3610 expected_size += rb->pg_vec_len
3611 * rb->pg_vec_pages
3612 * PAGE_SIZE;
3613 }
3614 }
3615
3616 if (expected_size == 0)
1da177e4 3617 goto out;
69e3c75f
JB
3618
3619 size = vma->vm_end - vma->vm_start;
3620 if (size != expected_size)
1da177e4
LT
3621 goto out;
3622
1da177e4 3623 start = vma->vm_start;
69e3c75f
JB
3624 for (rb = &po->rx_ring; rb <= &po->tx_ring; rb++) {
3625 if (rb->pg_vec == NULL)
3626 continue;
3627
3628 for (i = 0; i < rb->pg_vec_len; i++) {
0e3125c7
NH
3629 struct page *page;
3630 void *kaddr = rb->pg_vec[i].buffer;
69e3c75f
JB
3631 int pg_num;
3632
c56b4d90
CG
3633 for (pg_num = 0; pg_num < rb->pg_vec_pages; pg_num++) {
3634 page = pgv_to_page(kaddr);
69e3c75f
JB
3635 err = vm_insert_page(vma, start, page);
3636 if (unlikely(err))
3637 goto out;
3638 start += PAGE_SIZE;
0e3125c7 3639 kaddr += PAGE_SIZE;
69e3c75f 3640 }
4ebf0ae2 3641 }
1da177e4 3642 }
69e3c75f 3643
4ebf0ae2 3644 atomic_inc(&po->mapped);
1da177e4
LT
3645 vma->vm_ops = &packet_mmap_ops;
3646 err = 0;
3647
3648out:
905db440 3649 mutex_unlock(&po->pg_vec_lock);
1da177e4
LT
3650 return err;
3651}
1da177e4 3652
90ddc4f0 3653static const struct proto_ops packet_ops_spkt = {
1da177e4
LT
3654 .family = PF_PACKET,
3655 .owner = THIS_MODULE,
3656 .release = packet_release,
3657 .bind = packet_bind_spkt,
3658 .connect = sock_no_connect,
3659 .socketpair = sock_no_socketpair,
3660 .accept = sock_no_accept,
3661 .getname = packet_getname_spkt,
3662 .poll = datagram_poll,
3663 .ioctl = packet_ioctl,
3664 .listen = sock_no_listen,
3665 .shutdown = sock_no_shutdown,
3666 .setsockopt = sock_no_setsockopt,
3667 .getsockopt = sock_no_getsockopt,
3668 .sendmsg = packet_sendmsg_spkt,
3669 .recvmsg = packet_recvmsg,
3670 .mmap = sock_no_mmap,
3671 .sendpage = sock_no_sendpage,
3672};
1da177e4 3673
90ddc4f0 3674static const struct proto_ops packet_ops = {
1da177e4
LT
3675 .family = PF_PACKET,
3676 .owner = THIS_MODULE,
3677 .release = packet_release,
3678 .bind = packet_bind,
3679 .connect = sock_no_connect,
3680 .socketpair = sock_no_socketpair,
3681 .accept = sock_no_accept,
1ce4f28b 3682 .getname = packet_getname,
1da177e4
LT
3683 .poll = packet_poll,
3684 .ioctl = packet_ioctl,
3685 .listen = sock_no_listen,
3686 .shutdown = sock_no_shutdown,
3687 .setsockopt = packet_setsockopt,
3688 .getsockopt = packet_getsockopt,
3689 .sendmsg = packet_sendmsg,
3690 .recvmsg = packet_recvmsg,
3691 .mmap = packet_mmap,
3692 .sendpage = sock_no_sendpage,
3693};
3694
ec1b4cf7 3695static const struct net_proto_family packet_family_ops = {
1da177e4
LT
3696 .family = PF_PACKET,
3697 .create = packet_create,
3698 .owner = THIS_MODULE,
3699};
3700
3701static struct notifier_block packet_netdev_notifier = {
40d4e3df 3702 .notifier_call = packet_notifier,
1da177e4
LT
3703};
3704
3705#ifdef CONFIG_PROC_FS
1da177e4
LT
3706
3707static void *packet_seq_start(struct seq_file *seq, loff_t *pos)
808f5114 3708 __acquires(RCU)
1da177e4 3709{
e372c414 3710 struct net *net = seq_file_net(seq);
808f5114 3711
3712 rcu_read_lock();
3713 return seq_hlist_start_head_rcu(&net->packet.sklist, *pos);
1da177e4
LT
3714}
3715
3716static void *packet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3717{
1bf40954 3718 struct net *net = seq_file_net(seq);
808f5114 3719 return seq_hlist_next_rcu(v, &net->packet.sklist, pos);
1da177e4
LT
3720}
3721
3722static void packet_seq_stop(struct seq_file *seq, void *v)
808f5114 3723 __releases(RCU)
1da177e4 3724{
808f5114 3725 rcu_read_unlock();
1da177e4
LT
3726}
3727
1ce4f28b 3728static int packet_seq_show(struct seq_file *seq, void *v)
1da177e4
LT
3729{
3730 if (v == SEQ_START_TOKEN)
3731 seq_puts(seq, "sk RefCnt Type Proto Iface R Rmem User Inode\n");
3732 else {
b7ceabd9 3733 struct sock *s = sk_entry(v);
1da177e4
LT
3734 const struct packet_sock *po = pkt_sk(s);
3735
3736 seq_printf(seq,
71338aa7 3737 "%pK %-6d %-4d %04x %-5d %1d %-6u %-6u %-6lu\n",
1da177e4
LT
3738 s,
3739 atomic_read(&s->sk_refcnt),
3740 s->sk_type,
3741 ntohs(po->num),
3742 po->ifindex,
3743 po->running,
3744 atomic_read(&s->sk_rmem_alloc),
3745 sock_i_uid(s),
40d4e3df 3746 sock_i_ino(s));
1da177e4
LT
3747 }
3748
3749 return 0;
3750}
3751
56b3d975 3752static const struct seq_operations packet_seq_ops = {
1da177e4
LT
3753 .start = packet_seq_start,
3754 .next = packet_seq_next,
3755 .stop = packet_seq_stop,
3756 .show = packet_seq_show,
3757};
3758
3759static int packet_seq_open(struct inode *inode, struct file *file)
3760{
e372c414
DL
3761 return seq_open_net(inode, file, &packet_seq_ops,
3762 sizeof(struct seq_net_private));
1da177e4
LT
3763}
3764
da7071d7 3765static const struct file_operations packet_seq_fops = {
1da177e4
LT
3766 .owner = THIS_MODULE,
3767 .open = packet_seq_open,
3768 .read = seq_read,
3769 .llseek = seq_lseek,
e372c414 3770 .release = seq_release_net,
1da177e4
LT
3771};
3772
3773#endif
3774
2c8c1e72 3775static int __net_init packet_net_init(struct net *net)
d12d01d6 3776{
808f5114 3777 spin_lock_init(&net->packet.sklist_lock);
2aaef4e4 3778 INIT_HLIST_HEAD(&net->packet.sklist);
d12d01d6
DL
3779
3780 if (!proc_net_fops_create(net, "packet", 0, &packet_seq_fops))
3781 return -ENOMEM;
3782
3783 return 0;
3784}
3785
2c8c1e72 3786static void __net_exit packet_net_exit(struct net *net)
d12d01d6
DL
3787{
3788 proc_net_remove(net, "packet");
3789}
3790
3791static struct pernet_operations packet_net_ops = {
3792 .init = packet_net_init,
3793 .exit = packet_net_exit,
3794};
3795
3796
1da177e4
LT
3797static void __exit packet_exit(void)
3798{
1da177e4 3799 unregister_netdevice_notifier(&packet_netdev_notifier);
d12d01d6 3800 unregister_pernet_subsys(&packet_net_ops);
1da177e4
LT
3801 sock_unregister(PF_PACKET);
3802 proto_unregister(&packet_proto);
3803}
3804
3805static int __init packet_init(void)
3806{
3807 int rc = proto_register(&packet_proto, 0);
3808
3809 if (rc != 0)
3810 goto out;
3811
3812 sock_register(&packet_family_ops);
d12d01d6 3813 register_pernet_subsys(&packet_net_ops);
1da177e4 3814 register_netdevice_notifier(&packet_netdev_notifier);
1da177e4
LT
3815out:
3816 return rc;
3817}
3818
3819module_init(packet_init);
3820module_exit(packet_exit);
3821MODULE_LICENSE("GPL");
3822MODULE_ALIAS_NETPROTO(PF_PACKET);
This page took 1.377993 seconds and 5 git commands to generate.