blob: fabb4fafa281ce9bf2dfc73a7d32776beb7fe215 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * PACKET - implements raw packet sockets.
7 *
Jesper Juhl02c30a82005-05-05 16:16:16 -07008 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
10 * Alan Cox, <gw4pts@gw4pts.ampr.org>
11 *
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +090012 * Fixes:
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * Alan Cox : verify_area() now used correctly
14 * Alan Cox : new skbuff lists, look ma no backlogs!
15 * Alan Cox : tidied skbuff lists.
16 * Alan Cox : Now uses generic datagram routines I
17 * added. Also fixed the peek/read crash
18 * from all old Linux datagram code.
19 * Alan Cox : Uses the improved datagram code.
20 * Alan Cox : Added NULL's for socket options.
21 * Alan Cox : Re-commented the code.
22 * Alan Cox : Use new kernel side addressing
23 * Rob Janssen : Correct MTU usage.
24 * Dave Platt : Counter leaks caused by incorrect
25 * interrupt locking and some slightly
26 * dubious gcc output. Can you read
27 * compiler: it said _VOLATILE_
28 * Richard Kooijman : Timestamp fixes.
29 * Alan Cox : New buffers. Use sk->mac.raw.
30 * Alan Cox : sendmsg/recvmsg support.
31 * Alan Cox : Protocol setting support
32 * Alexey Kuznetsov : Untied from IPv4 stack.
33 * Cyrus Durgin : Fixed kerneld for kmod.
34 * Michal Ostrowski : Module initialization cleanup.
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +090035 * Ulises Alonso : Frame number limit removal and
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 * packet_set_ring memory leak.
Eric W. Biederman0fb375f2005-09-21 00:11:37 -070037 * Eric Biederman : Allow for > 8 byte hardware addresses.
38 * The convention is that longer addresses
39 * will simply extend the hardware address
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +090040 * byte arrays at the end of sockaddr_ll
Eric W. Biederman0fb375f2005-09-21 00:11:37 -070041 * and packet_mreq.
Johann Baudy69e3c752009-05-18 22:11:22 -070042 * Johann Baudy : Added TX RING.
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 *
44 * This program is free software; you can redistribute it and/or
45 * modify it under the terms of the GNU General Public License
46 * as published by the Free Software Foundation; either version
47 * 2 of the License, or (at your option) any later version.
48 *
49 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +090050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/mm.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080053#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <linux/fcntl.h>
55#include <linux/socket.h>
56#include <linux/in.h>
57#include <linux/inet.h>
58#include <linux/netdevice.h>
59#include <linux/if_packet.h>
60#include <linux/wireless.h>
Herbert Xuffbc6112007-02-04 23:33:10 -080061#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/kmod.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090063#include <linux/slab.h>
Neil Horman0e3125c2010-11-16 10:26:47 -080064#include <linux/vmalloc.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020065#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <net/ip.h>
67#include <net/protocol.h>
68#include <linux/skbuff.h>
69#include <net/sock.h>
70#include <linux/errno.h>
71#include <linux/timer.h>
72#include <asm/system.h>
73#include <asm/uaccess.h>
74#include <asm/ioctls.h>
75#include <asm/page.h>
Al Viroa1f8e7f2006-10-19 16:08:53 -040076#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#include <asm/io.h>
78#include <linux/proc_fs.h>
79#include <linux/seq_file.h>
80#include <linux/poll.h>
81#include <linux/module.h>
82#include <linux/init.h>
Herbert Xu905db442009-01-30 14:12:06 -080083#include <linux/mutex.h>
Eric Dumazet05423b22009-10-26 18:40:35 -070084#include <linux/if_vlan.h>
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -080085#include <linux/virtio_net.h>
Richard Cochraned85b562010-04-07 22:41:28 +000086#include <linux/errqueue.h>
Scott McMillan614f60f2010-06-02 05:53:56 -070087#include <linux/net_tstamp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89#ifdef CONFIG_INET
90#include <net/inet_common.h>
91#endif
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 Assumptions:
95 - if device has no dev->hard_header routine, it adds and removes ll header
96 inside itself. In this case ll header is invisible outside of device,
97 but higher levels still should reserve dev->hard_header_len.
98 Some devices are enough clever to reallocate skb, when header
99 will not fit to reserved space (tunnel), another ones are silly
100 (PPP).
101 - packet socket receives packets with pulled ll header,
102 so that SOCK_RAW should push it back.
103
104On receive:
105-----------
106
107Incoming, dev->hard_header!=NULL
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700108 mac_header -> ll header
109 data -> data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111Outgoing, dev->hard_header!=NULL
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700112 mac_header -> ll header
113 data -> ll header
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115Incoming, dev->hard_header==NULL
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700116 mac_header -> UNKNOWN position. It is very likely, that it points to ll
117 header. PPP makes it, that is wrong, because introduce
YOSHIFUJI Hideakidb0c58f2007-07-19 10:44:35 +0900118 assymetry between rx and tx paths.
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700119 data -> data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121Outgoing, dev->hard_header==NULL
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700122 mac_header -> data. ll header is still not built!
123 data -> data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125Resume
126 If dev->hard_header==NULL we are unlikely to restore sensible ll header.
127
128
129On transmit:
130------------
131
132dev->hard_header != NULL
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700133 mac_header -> ll header
134 data -> ll header
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136dev->hard_header == NULL (ll header is added by device, we cannot control it)
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700137 mac_header -> data
138 data -> data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 We should set nh.raw on output to correct posistion,
141 packet classifier depends on it.
142 */
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144/* Private packet socket structures. */
145
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000146struct packet_mclist {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 struct packet_mclist *next;
148 int ifindex;
149 int count;
150 unsigned short type;
151 unsigned short alen;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -0700152 unsigned char addr[MAX_ADDR_LEN];
153};
154/* identical to struct packet_mreq except it has
155 * a longer address field.
156 */
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000157struct packet_mreq_max {
Eric W. Biederman0fb375f2005-09-21 00:11:37 -0700158 int mr_ifindex;
159 unsigned short mr_type;
160 unsigned short mr_alen;
161 unsigned char mr_address[MAX_ADDR_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162};
David S. Millera2efcfa2007-05-29 13:12:50 -0700163
Johann Baudy69e3c752009-05-18 22:11:22 -0700164static int packet_set_ring(struct sock *sk, struct tpacket_req *req,
165 int closing, int tx_ring);
166
Neil Horman0e3125c2010-11-16 10:26:47 -0800167struct pgv {
168 char *buffer;
Neil Horman0e3125c2010-11-16 10:26:47 -0800169};
170
Johann Baudy69e3c752009-05-18 22:11:22 -0700171struct packet_ring_buffer {
Neil Horman0e3125c2010-11-16 10:26:47 -0800172 struct pgv *pg_vec;
Johann Baudy69e3c752009-05-18 22:11:22 -0700173 unsigned int head;
174 unsigned int frames_per_block;
175 unsigned int frame_size;
176 unsigned int frame_max;
177
178 unsigned int pg_vec_order;
179 unsigned int pg_vec_pages;
180 unsigned int pg_vec_len;
181
182 atomic_t pending;
183};
184
185struct packet_sock;
186static int tpacket_snd(struct packet_sock *po, struct msghdr *msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188static void packet_flush_mclist(struct sock *sk);
189
David S. Millerdc99f602011-07-05 01:45:05 -0700190struct packet_fanout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191struct packet_sock {
192 /* struct sock has to be the first member of packet_sock */
193 struct sock sk;
David S. Millerdc99f602011-07-05 01:45:05 -0700194 struct packet_fanout *fanout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 struct tpacket_stats stats;
Johann Baudy69e3c752009-05-18 22:11:22 -0700196 struct packet_ring_buffer rx_ring;
197 struct packet_ring_buffer tx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 int copy_thresh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 spinlock_t bind_lock;
Herbert Xu905db442009-01-30 14:12:06 -0800200 struct mutex pg_vec_lock;
Herbert Xu8dc41942007-02-04 23:31:32 -0800201 unsigned int running:1, /* prot_hook is attached*/
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -0700202 auxdata:1,
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -0800203 origdev:1,
204 has_vnet_hdr:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 int ifindex; /* bound device */
Al Viro0e11c912006-11-08 00:26:29 -0800206 __be16 num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 struct packet_mclist *mclist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 atomic_t mapped;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700209 enum tpacket_versions tp_version;
210 unsigned int tp_hdrlen;
Patrick McHardy89133362008-07-18 18:05:19 -0700211 unsigned int tp_reserve;
Johann Baudy69e3c752009-05-18 22:11:22 -0700212 unsigned int tp_loss:1;
Scott McMillan614f60f2010-06-02 05:53:56 -0700213 unsigned int tp_tstamp;
Eric Dumazet94b05952009-10-16 04:02:20 +0000214 struct packet_type prot_hook ____cacheline_aligned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215};
216
David S. Millerdc99f602011-07-05 01:45:05 -0700217#define PACKET_FANOUT_MAX 256
218
219struct packet_fanout {
220#ifdef CONFIG_NET_NS
221 struct net *net;
222#endif
223 unsigned int num_members;
224 u16 id;
225 u8 type;
David S. Miller7736d332011-07-05 01:43:20 -0700226 u8 defrag;
David S. Millerdc99f602011-07-05 01:45:05 -0700227 atomic_t rr_cur;
228 struct list_head list;
229 struct sock *arr[PACKET_FANOUT_MAX];
230 spinlock_t lock;
231 atomic_t sk_ref;
232 struct packet_type prot_hook ____cacheline_aligned_in_smp;
233};
234
Herbert Xuffbc6112007-02-04 23:33:10 -0800235struct packet_skb_cb {
236 unsigned int origlen;
237 union {
238 struct sockaddr_pkt pkt;
239 struct sockaddr_ll ll;
240 } sa;
241};
242
243#define PACKET_SKB_CB(__skb) ((struct packet_skb_cb *)((__skb)->cb))
Herbert Xu8dc41942007-02-04 23:31:32 -0800244
David S. Millerce06b032011-07-04 01:44:29 -0700245static inline struct packet_sock *pkt_sk(struct sock *sk)
246{
247 return (struct packet_sock *)sk;
248}
249
David S. Millerdc99f602011-07-05 01:45:05 -0700250static void __fanout_unlink(struct sock *sk, struct packet_sock *po);
251static void __fanout_link(struct sock *sk, struct packet_sock *po);
252
David S. Millerce06b032011-07-04 01:44:29 -0700253/* register_prot_hook must be invoked with the po->bind_lock held,
254 * or from a context in which asynchronous accesses to the packet
255 * socket is not possible (packet_create()).
256 */
257static void register_prot_hook(struct sock *sk)
258{
259 struct packet_sock *po = pkt_sk(sk);
260 if (!po->running) {
David S. Millerdc99f602011-07-05 01:45:05 -0700261 if (po->fanout)
262 __fanout_link(sk, po);
263 else
264 dev_add_pack(&po->prot_hook);
David S. Millerce06b032011-07-04 01:44:29 -0700265 sock_hold(sk);
266 po->running = 1;
267 }
268}
269
270/* {,__}unregister_prot_hook() must be invoked with the po->bind_lock
271 * held. If the sync parameter is true, we will temporarily drop
272 * the po->bind_lock and do a synchronize_net to make sure no
273 * asynchronous packet processing paths still refer to the elements
274 * of po->prot_hook. If the sync parameter is false, it is the
275 * callers responsibility to take care of this.
276 */
277static void __unregister_prot_hook(struct sock *sk, bool sync)
278{
279 struct packet_sock *po = pkt_sk(sk);
280
281 po->running = 0;
David S. Millerdc99f602011-07-05 01:45:05 -0700282 if (po->fanout)
283 __fanout_unlink(sk, po);
284 else
285 __dev_remove_pack(&po->prot_hook);
David S. Millerce06b032011-07-04 01:44:29 -0700286 __sock_put(sk);
287
288 if (sync) {
289 spin_unlock(&po->bind_lock);
290 synchronize_net();
291 spin_lock(&po->bind_lock);
292 }
293}
294
295static void unregister_prot_hook(struct sock *sk, bool sync)
296{
297 struct packet_sock *po = pkt_sk(sk);
298
299 if (po->running)
300 __unregister_prot_hook(sk, sync);
301}
302
Changli Gaof6dafa92010-12-07 04:26:16 +0000303static inline __pure struct page *pgv_to_page(void *addr)
Changli Gao0af55bb2010-12-01 02:52:20 +0000304{
305 if (is_vmalloc_addr(addr))
306 return vmalloc_to_page(addr);
307 return virt_to_page(addr);
308}
309
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700310static void __packet_set_status(struct packet_sock *po, void *frame, int status)
311{
312 union {
313 struct tpacket_hdr *h1;
314 struct tpacket2_hdr *h2;
315 void *raw;
316 } h;
317
318 h.raw = frame;
319 switch (po->tp_version) {
320 case TPACKET_V1:
321 h.h1->tp_status = status;
Changli Gao0af55bb2010-12-01 02:52:20 +0000322 flush_dcache_page(pgv_to_page(&h.h1->tp_status));
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700323 break;
324 case TPACKET_V2:
325 h.h2->tp_status = status;
Changli Gao0af55bb2010-12-01 02:52:20 +0000326 flush_dcache_page(pgv_to_page(&h.h2->tp_status));
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700327 break;
Johann Baudy69e3c752009-05-18 22:11:22 -0700328 default:
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000329 pr_err("TPACKET version not supported\n");
Johann Baudy69e3c752009-05-18 22:11:22 -0700330 BUG();
331 }
332
333 smp_wmb();
334}
335
336static int __packet_get_status(struct packet_sock *po, void *frame)
337{
338 union {
339 struct tpacket_hdr *h1;
340 struct tpacket2_hdr *h2;
341 void *raw;
342 } h;
343
344 smp_rmb();
345
346 h.raw = frame;
347 switch (po->tp_version) {
348 case TPACKET_V1:
Changli Gao0af55bb2010-12-01 02:52:20 +0000349 flush_dcache_page(pgv_to_page(&h.h1->tp_status));
Johann Baudy69e3c752009-05-18 22:11:22 -0700350 return h.h1->tp_status;
351 case TPACKET_V2:
Changli Gao0af55bb2010-12-01 02:52:20 +0000352 flush_dcache_page(pgv_to_page(&h.h2->tp_status));
Johann Baudy69e3c752009-05-18 22:11:22 -0700353 return h.h2->tp_status;
354 default:
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000355 pr_err("TPACKET version not supported\n");
Johann Baudy69e3c752009-05-18 22:11:22 -0700356 BUG();
357 return 0;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
Johann Baudy69e3c752009-05-18 22:11:22 -0700360
361static void *packet_lookup_frame(struct packet_sock *po,
362 struct packet_ring_buffer *rb,
363 unsigned int position,
364 int status)
365{
366 unsigned int pg_vec_pos, frame_offset;
367 union {
368 struct tpacket_hdr *h1;
369 struct tpacket2_hdr *h2;
370 void *raw;
371 } h;
372
373 pg_vec_pos = position / rb->frames_per_block;
374 frame_offset = position % rb->frames_per_block;
375
Neil Horman0e3125c2010-11-16 10:26:47 -0800376 h.raw = rb->pg_vec[pg_vec_pos].buffer +
377 (frame_offset * rb->frame_size);
Johann Baudy69e3c752009-05-18 22:11:22 -0700378
379 if (status != __packet_get_status(po, h.raw))
380 return NULL;
381
382 return h.raw;
383}
384
385static inline void *packet_current_frame(struct packet_sock *po,
386 struct packet_ring_buffer *rb,
387 int status)
388{
389 return packet_lookup_frame(po, rb, rb->head, status);
390}
391
392static inline void *packet_previous_frame(struct packet_sock *po,
393 struct packet_ring_buffer *rb,
394 int status)
395{
396 unsigned int previous = rb->head ? rb->head - 1 : rb->frame_max;
397 return packet_lookup_frame(po, rb, previous, status);
398}
399
400static inline void packet_increment_head(struct packet_ring_buffer *buff)
401{
402 buff->head = buff->head != buff->frame_max ? buff->head+1 : 0;
403}
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405static void packet_sock_destruct(struct sock *sk)
406{
Richard Cochraned85b562010-04-07 22:41:28 +0000407 skb_queue_purge(&sk->sk_error_queue);
408
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700409 WARN_ON(atomic_read(&sk->sk_rmem_alloc));
410 WARN_ON(atomic_read(&sk->sk_wmem_alloc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 if (!sock_flag(sk, SOCK_DEAD)) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000413 pr_err("Attempt to release alive packet socket: %p\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return;
415 }
416
Pavel Emelyanov17ab56a2007-11-10 21:38:48 -0800417 sk_refcnt_debug_dec(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
David S. Millerdc99f602011-07-05 01:45:05 -0700420static int fanout_rr_next(struct packet_fanout *f, unsigned int num)
421{
422 int x = atomic_read(&f->rr_cur) + 1;
423
424 if (x >= num)
425 x = 0;
426
427 return x;
428}
429
430static struct sock *fanout_demux_hash(struct packet_fanout *f, struct sk_buff *skb, unsigned int num)
431{
432 u32 idx, hash = skb->rxhash;
433
434 idx = ((u64)hash * num) >> 32;
435
436 return f->arr[idx];
437}
438
439static struct sock *fanout_demux_lb(struct packet_fanout *f, struct sk_buff *skb, unsigned int num)
440{
441 int cur, old;
442
443 cur = atomic_read(&f->rr_cur);
444 while ((old = atomic_cmpxchg(&f->rr_cur, cur,
445 fanout_rr_next(f, num))) != cur)
446 cur = old;
447 return f->arr[cur];
448}
449
David S. Miller95ec3eb2011-07-06 01:56:38 -0700450static struct sock *fanout_demux_cpu(struct packet_fanout *f, struct sk_buff *skb, unsigned int num)
451{
452 unsigned int cpu = smp_processor_id();
453
454 return f->arr[cpu % num];
455}
456
David S. Miller7736d332011-07-05 01:43:20 -0700457static struct sk_buff *fanout_check_defrag(struct sk_buff *skb)
458{
David S. Miller31817df2011-07-07 08:18:04 -0700459#ifdef CONFIG_INET
David S. Miller7736d332011-07-05 01:43:20 -0700460 const struct iphdr *iph;
461 u32 len;
462
463 if (skb->protocol != htons(ETH_P_IP))
464 return skb;
465
466 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
467 return skb;
468
469 iph = ip_hdr(skb);
470 if (iph->ihl < 5 || iph->version != 4)
471 return skb;
472 if (!pskb_may_pull(skb, iph->ihl*4))
473 return skb;
474 iph = ip_hdr(skb);
475 len = ntohs(iph->tot_len);
476 if (skb->len < len || len < (iph->ihl * 4))
477 return skb;
478
479 if (ip_is_fragment(ip_hdr(skb))) {
David S. Milleraec27312011-07-06 07:30:59 -0700480 skb = skb_share_check(skb, GFP_ATOMIC);
David S. Miller7736d332011-07-05 01:43:20 -0700481 if (skb) {
482 if (pskb_trim_rcsum(skb, len))
483 return skb;
484 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
485 if (ip_defrag(skb, IP_DEFRAG_AF_PACKET))
486 return NULL;
487 skb->rxhash = 0;
488 }
489 }
David S. Miller31817df2011-07-07 08:18:04 -0700490#endif
David S. Miller7736d332011-07-05 01:43:20 -0700491 return skb;
492}
493
David S. Miller95ec3eb2011-07-06 01:56:38 -0700494static int packet_rcv_fanout(struct sk_buff *skb, struct net_device *dev,
495 struct packet_type *pt, struct net_device *orig_dev)
David S. Millerdc99f602011-07-05 01:45:05 -0700496{
497 struct packet_fanout *f = pt->af_packet_priv;
498 unsigned int num = f->num_members;
499 struct packet_sock *po;
500 struct sock *sk;
501
502 if (!net_eq(dev_net(dev), read_pnet(&f->net)) ||
503 !num) {
504 kfree_skb(skb);
505 return 0;
506 }
507
David S. Miller95ec3eb2011-07-06 01:56:38 -0700508 switch (f->type) {
509 case PACKET_FANOUT_HASH:
510 default:
511 if (f->defrag) {
512 skb = fanout_check_defrag(skb);
513 if (!skb)
514 return 0;
515 }
516 skb_get_rxhash(skb);
517 sk = fanout_demux_hash(f, skb, num);
518 break;
519 case PACKET_FANOUT_LB:
520 sk = fanout_demux_lb(f, skb, num);
521 break;
522 case PACKET_FANOUT_CPU:
523 sk = fanout_demux_cpu(f, skb, num);
524 break;
David S. Miller7736d332011-07-05 01:43:20 -0700525 }
526
David S. Millerdc99f602011-07-05 01:45:05 -0700527 po = pkt_sk(sk);
528
529 return po->prot_hook.func(skb, dev, &po->prot_hook, orig_dev);
530}
531
532static DEFINE_MUTEX(fanout_mutex);
533static LIST_HEAD(fanout_list);
534
535static void __fanout_link(struct sock *sk, struct packet_sock *po)
536{
537 struct packet_fanout *f = po->fanout;
538
539 spin_lock(&f->lock);
540 f->arr[f->num_members] = sk;
541 smp_wmb();
542 f->num_members++;
543 spin_unlock(&f->lock);
544}
545
546static void __fanout_unlink(struct sock *sk, struct packet_sock *po)
547{
548 struct packet_fanout *f = po->fanout;
549 int i;
550
551 spin_lock(&f->lock);
552 for (i = 0; i < f->num_members; i++) {
553 if (f->arr[i] == sk)
554 break;
555 }
556 BUG_ON(i >= f->num_members);
557 f->arr[i] = f->arr[f->num_members - 1];
558 f->num_members--;
559 spin_unlock(&f->lock);
560}
561
David S. Miller7736d332011-07-05 01:43:20 -0700562static int fanout_add(struct sock *sk, u16 id, u16 type_flags)
David S. Millerdc99f602011-07-05 01:45:05 -0700563{
564 struct packet_sock *po = pkt_sk(sk);
565 struct packet_fanout *f, *match;
David S. Miller7736d332011-07-05 01:43:20 -0700566 u8 type = type_flags & 0xff;
567 u8 defrag = (type_flags & PACKET_FANOUT_FLAG_DEFRAG) ? 1 : 0;
David S. Millerdc99f602011-07-05 01:45:05 -0700568 int err;
569
570 switch (type) {
571 case PACKET_FANOUT_HASH:
572 case PACKET_FANOUT_LB:
David S. Miller95ec3eb2011-07-06 01:56:38 -0700573 case PACKET_FANOUT_CPU:
David S. Millerdc99f602011-07-05 01:45:05 -0700574 break;
575 default:
576 return -EINVAL;
577 }
578
579 if (!po->running)
580 return -EINVAL;
581
582 if (po->fanout)
583 return -EALREADY;
584
585 mutex_lock(&fanout_mutex);
586 match = NULL;
587 list_for_each_entry(f, &fanout_list, list) {
588 if (f->id == id &&
589 read_pnet(&f->net) == sock_net(sk)) {
590 match = f;
591 break;
592 }
593 }
Eric Dumazetafe62c62011-07-07 06:41:29 -0700594 err = -EINVAL;
David S. Miller7736d332011-07-05 01:43:20 -0700595 if (match && match->defrag != defrag)
Eric Dumazetafe62c62011-07-07 06:41:29 -0700596 goto out;
David S. Millerdc99f602011-07-05 01:45:05 -0700597 if (!match) {
Eric Dumazetafe62c62011-07-07 06:41:29 -0700598 err = -ENOMEM;
David S. Millerdc99f602011-07-05 01:45:05 -0700599 match = kzalloc(sizeof(*match), GFP_KERNEL);
Eric Dumazetafe62c62011-07-07 06:41:29 -0700600 if (!match)
601 goto out;
602 write_pnet(&match->net, sock_net(sk));
603 match->id = id;
604 match->type = type;
605 match->defrag = defrag;
606 atomic_set(&match->rr_cur, 0);
607 INIT_LIST_HEAD(&match->list);
608 spin_lock_init(&match->lock);
609 atomic_set(&match->sk_ref, 0);
610 match->prot_hook.type = po->prot_hook.type;
611 match->prot_hook.dev = po->prot_hook.dev;
612 match->prot_hook.func = packet_rcv_fanout;
613 match->prot_hook.af_packet_priv = match;
614 dev_add_pack(&match->prot_hook);
615 list_add(&match->list, &fanout_list);
616 }
617 err = -EINVAL;
618 if (match->type == type &&
619 match->prot_hook.type == po->prot_hook.type &&
620 match->prot_hook.dev == po->prot_hook.dev) {
621 err = -ENOSPC;
622 if (atomic_read(&match->sk_ref) < PACKET_FANOUT_MAX) {
623 __dev_remove_pack(&po->prot_hook);
624 po->fanout = match;
625 atomic_inc(&match->sk_ref);
626 __fanout_link(sk, po);
627 err = 0;
David S. Millerdc99f602011-07-05 01:45:05 -0700628 }
629 }
Eric Dumazetafe62c62011-07-07 06:41:29 -0700630out:
David S. Millerdc99f602011-07-05 01:45:05 -0700631 mutex_unlock(&fanout_mutex);
632 return err;
633}
634
635static void fanout_release(struct sock *sk)
636{
637 struct packet_sock *po = pkt_sk(sk);
638 struct packet_fanout *f;
639
640 f = po->fanout;
641 if (!f)
642 return;
643
644 po->fanout = NULL;
645
646 mutex_lock(&fanout_mutex);
647 if (atomic_dec_and_test(&f->sk_ref)) {
648 list_del(&f->list);
649 dev_remove_pack(&f->prot_hook);
650 kfree(f);
651 }
652 mutex_unlock(&fanout_mutex);
653}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800655static const struct proto_ops packet_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800657static const struct proto_ops packet_ops_spkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000659static int packet_rcv_spkt(struct sk_buff *skb, struct net_device *dev,
660 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
662 struct sock *sk;
663 struct sockaddr_pkt *spkt;
664
665 /*
666 * When we registered the protocol we saved the socket in the data
667 * field for just this event.
668 */
669
670 sk = pt->af_packet_priv;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +0900671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 /*
673 * Yank back the headers [hope the device set this
674 * right or kerboom...]
675 *
676 * Incoming packets have ll header pulled,
677 * push it back.
678 *
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700679 * For outgoing ones skb->data == skb_mac_header(skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 * so that this procedure is noop.
681 */
682
683 if (skb->pkt_type == PACKET_LOOPBACK)
684 goto out;
685
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800686 if (!net_eq(dev_net(dev), sock_net(sk)))
Denis V. Lunevd12d01d2007-11-19 22:28:35 -0800687 goto out;
688
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000689 skb = skb_share_check(skb, GFP_ATOMIC);
690 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 goto oom;
692
693 /* drop any routing info */
Eric Dumazetadf30902009-06-02 05:19:30 +0000694 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Phil Oester84531c22005-07-12 11:57:52 -0700696 /* drop conntrack reference */
697 nf_reset(skb);
698
Herbert Xuffbc6112007-02-04 23:33:10 -0800699 spkt = &PACKET_SKB_CB(skb)->sa.pkt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700701 skb_push(skb, skb->data - skb_mac_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 /*
704 * The SOCK_PACKET socket receives _all_ frames.
705 */
706
707 spkt->spkt_family = dev->type;
708 strlcpy(spkt->spkt_device, dev->name, sizeof(spkt->spkt_device));
709 spkt->spkt_protocol = skb->protocol;
710
711 /*
712 * Charge the memory to the socket. This is done specifically
713 * to prevent sockets using all the memory up.
714 */
715
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000716 if (sock_queue_rcv_skb(sk, skb) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return 0;
718
719out:
720 kfree_skb(skb);
721oom:
722 return 0;
723}
724
725
726/*
727 * Output a raw packet to a device layer. This bypasses all the other
728 * protocol layers and you must therefore supply it with a complete frame
729 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +0900730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731static int packet_sendmsg_spkt(struct kiocb *iocb, struct socket *sock,
732 struct msghdr *msg, size_t len)
733{
734 struct sock *sk = sock->sk;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000735 struct sockaddr_pkt *saddr = (struct sockaddr_pkt *)msg->msg_name;
Eric Dumazet1a35ca82009-12-15 05:47:03 +0000736 struct sk_buff *skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 struct net_device *dev;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000738 __be16 proto = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 int err;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +0900740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +0900742 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 */
744
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000745 if (saddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 if (msg->msg_namelen < sizeof(struct sockaddr))
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000747 return -EINVAL;
748 if (msg->msg_namelen == sizeof(struct sockaddr_pkt))
749 proto = saddr->spkt_protocol;
750 } else
751 return -ENOTCONN; /* SOCK_PACKET must be sent giving an address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +0900754 * Find the device first to size check it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 */
756
757 saddr->spkt_device[13] = 0;
Eric Dumazet1a35ca82009-12-15 05:47:03 +0000758retry:
Eric Dumazet654d1f82009-11-02 10:43:32 +0100759 rcu_read_lock();
760 dev = dev_get_by_name_rcu(sock_net(sk), saddr->spkt_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 err = -ENODEV;
762 if (dev == NULL)
763 goto out_unlock;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +0900764
David S. Millerd5e76b02007-01-25 19:30:36 -0800765 err = -ENETDOWN;
766 if (!(dev->flags & IFF_UP))
767 goto out_unlock;
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 /*
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000770 * You may not queue a frame bigger than the mtu. This is the lowest level
771 * raw protocol and you must do your own fragmentation at this level.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +0900773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 err = -EMSGSIZE;
Ben Greear57f89bf2011-02-11 09:35:18 +0000775 if (len > dev->mtu + dev->hard_header_len + VLAN_HLEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 goto out_unlock;
777
Eric Dumazet1a35ca82009-12-15 05:47:03 +0000778 if (!skb) {
779 size_t reserved = LL_RESERVED_SPACE(dev);
780 unsigned int hhlen = dev->header_ops ? dev->hard_header_len : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Eric Dumazet1a35ca82009-12-15 05:47:03 +0000782 rcu_read_unlock();
783 skb = sock_wmalloc(sk, len + reserved, 0, GFP_KERNEL);
784 if (skb == NULL)
785 return -ENOBUFS;
786 /* FIXME: Save some space for broken drivers that write a hard
787 * header at transmission time by themselves. PPP is the notable
788 * one here. This should really be fixed at the driver level.
789 */
790 skb_reserve(skb, reserved);
791 skb_reset_network_header(skb);
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +0900792
Eric Dumazet1a35ca82009-12-15 05:47:03 +0000793 /* Try to align data part correctly */
794 if (hhlen) {
795 skb->data -= hhlen;
796 skb->tail -= hhlen;
797 if (len < hhlen)
798 skb_reset_network_header(skb);
799 }
800 err = memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len);
801 if (err)
802 goto out_free;
803 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805
Ben Greear57f89bf2011-02-11 09:35:18 +0000806 if (len > (dev->mtu + dev->hard_header_len)) {
807 /* Earlier code assumed this would be a VLAN pkt,
808 * double-check this now that we have the actual
809 * packet in hand.
810 */
811 struct ethhdr *ehdr;
812 skb_reset_mac_header(skb);
813 ehdr = eth_hdr(skb);
814 if (ehdr->h_proto != htons(ETH_P_8021Q)) {
815 err = -EMSGSIZE;
816 goto out_unlock;
817 }
818 }
Eric Dumazet1a35ca82009-12-15 05:47:03 +0000819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 skb->protocol = proto;
821 skb->dev = dev;
822 skb->priority = sk->sk_priority;
Eric Dumazet2d37a182009-10-01 19:14:46 +0000823 skb->mark = sk->sk_mark;
Oliver Hartkopp2244d072010-08-17 08:59:14 +0000824 err = sock_tx_timestamp(sk, &skb_shinfo(skb)->tx_flags);
Richard Cochraned85b562010-04-07 22:41:28 +0000825 if (err < 0)
826 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
828 dev_queue_xmit(skb);
Eric Dumazet654d1f82009-11-02 10:43:32 +0100829 rcu_read_unlock();
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000830 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832out_unlock:
Eric Dumazet654d1f82009-11-02 10:43:32 +0100833 rcu_read_unlock();
Eric Dumazet1a35ca82009-12-15 05:47:03 +0000834out_free:
835 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 return err;
837}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Eric Dumazet62ab0812010-12-06 20:50:09 +0000839static inline unsigned int run_filter(const struct sk_buff *skb,
840 const struct sock *sk,
David S. Millerdbcb5852007-01-24 15:21:02 -0800841 unsigned int res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
843 struct sk_filter *filter;
844
Eric Dumazet80f8f102011-01-18 07:46:52 +0000845 rcu_read_lock();
846 filter = rcu_dereference(sk->sk_filter);
David S. Millerdbcb5852007-01-24 15:21:02 -0800847 if (filter != NULL)
Eric Dumazet0a148422011-04-20 09:27:32 +0000848 res = SK_RUN_FILTER(filter, skb);
Eric Dumazet80f8f102011-01-18 07:46:52 +0000849 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
David S. Millerdbcb5852007-01-24 15:21:02 -0800851 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
853
854/*
Eric Dumazet62ab0812010-12-06 20:50:09 +0000855 * This function makes lazy skb cloning in hope that most of packets
856 * are discarded by BPF.
857 *
858 * Note tricky part: we DO mangle shared skb! skb->data, skb->len
859 * and skb->cb are mangled. It works because (and until) packets
860 * falling here are owned by current CPU. Output packets are cloned
861 * by dev_queue_xmit_nit(), input packets are processed by net_bh
862 * sequencially, so that if we return skb to original state on exit,
863 * we will not harm anyone.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 */
865
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000866static int packet_rcv(struct sk_buff *skb, struct net_device *dev,
867 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
869 struct sock *sk;
870 struct sockaddr_ll *sll;
871 struct packet_sock *po;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000872 u8 *skb_head = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 int skb_len = skb->len;
David S. Millerdbcb5852007-01-24 15:21:02 -0800874 unsigned int snaplen, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 if (skb->pkt_type == PACKET_LOOPBACK)
877 goto drop;
878
879 sk = pt->af_packet_priv;
880 po = pkt_sk(sk);
881
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800882 if (!net_eq(dev_net(dev), sock_net(sk)))
Denis V. Lunevd12d01d2007-11-19 22:28:35 -0800883 goto drop;
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 skb->dev = dev;
886
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700887 if (dev->header_ops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 /* The device has an explicit notion of ll header,
Eric Dumazet62ab0812010-12-06 20:50:09 +0000889 * exported to higher levels.
890 *
891 * Otherwise, the device hides details of its frame
892 * structure, so that corresponding packet head is
893 * never delivered to user.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 */
895 if (sk->sk_type != SOCK_DGRAM)
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700896 skb_push(skb, skb->data - skb_mac_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 else if (skb->pkt_type == PACKET_OUTGOING) {
898 /* Special case: outgoing packets have ll header at head */
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -0300899 skb_pull(skb, skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
901 }
902
903 snaplen = skb->len;
904
David S. Millerdbcb5852007-01-24 15:21:02 -0800905 res = run_filter(skb, sk, snaplen);
906 if (!res)
Dmitry Mishinfda9ef52006-08-31 15:28:39 -0700907 goto drop_n_restore;
David S. Millerdbcb5852007-01-24 15:21:02 -0800908 if (snaplen > res)
909 snaplen = res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
912 (unsigned)sk->sk_rcvbuf)
913 goto drop_n_acct;
914
915 if (skb_shared(skb)) {
916 struct sk_buff *nskb = skb_clone(skb, GFP_ATOMIC);
917 if (nskb == NULL)
918 goto drop_n_acct;
919
920 if (skb_head != skb->data) {
921 skb->data = skb_head;
922 skb->len = skb_len;
923 }
924 kfree_skb(skb);
925 skb = nskb;
926 }
927
Herbert Xuffbc6112007-02-04 23:33:10 -0800928 BUILD_BUG_ON(sizeof(*PACKET_SKB_CB(skb)) + MAX_ADDR_LEN - 8 >
929 sizeof(skb->cb));
930
931 sll = &PACKET_SKB_CB(skb)->sa.ll;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 sll->sll_family = AF_PACKET;
933 sll->sll_hatype = dev->type;
934 sll->sll_protocol = skb->protocol;
935 sll->sll_pkttype = skb->pkt_type;
Peter P Waskiewicz Jr8032b462007-11-10 22:03:25 -0800936 if (unlikely(po->origdev))
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -0700937 sll->sll_ifindex = orig_dev->ifindex;
938 else
939 sll->sll_ifindex = dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700941 sll->sll_halen = dev_parse_header(skb, sll->sll_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Herbert Xuffbc6112007-02-04 23:33:10 -0800943 PACKET_SKB_CB(skb)->origlen = skb->len;
Herbert Xu8dc41942007-02-04 23:31:32 -0800944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 if (pskb_trim(skb, snaplen))
946 goto drop_n_acct;
947
948 skb_set_owner_r(skb, sk);
949 skb->dev = NULL;
Eric Dumazetadf30902009-06-02 05:19:30 +0000950 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Phil Oester84531c22005-07-12 11:57:52 -0700952 /* drop conntrack reference */
953 nf_reset(skb);
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 spin_lock(&sk->sk_receive_queue.lock);
956 po->stats.tp_packets++;
Neil Horman3b885782009-10-12 13:26:31 -0700957 skb->dropcount = atomic_read(&sk->sk_drops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 __skb_queue_tail(&sk->sk_receive_queue, skb);
959 spin_unlock(&sk->sk_receive_queue.lock);
960 sk->sk_data_ready(sk, skb->len);
961 return 0;
962
963drop_n_acct:
Willem de Bruijn7091fbd2011-09-30 10:38:28 +0000964 spin_lock(&sk->sk_receive_queue.lock);
965 po->stats.tp_drops++;
966 atomic_inc(&sk->sk_drops);
967 spin_unlock(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969drop_n_restore:
970 if (skb_head != skb->data && skb_shared(skb)) {
971 skb->data = skb_head;
972 skb->len = skb_len;
973 }
974drop:
Neil Hormanead2ceb2009-03-11 09:49:55 +0000975 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 return 0;
977}
978
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000979static int tpacket_rcv(struct sk_buff *skb, struct net_device *dev,
980 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
982 struct sock *sk;
983 struct packet_sock *po;
984 struct sockaddr_ll *sll;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700985 union {
986 struct tpacket_hdr *h1;
987 struct tpacket2_hdr *h2;
988 void *raw;
989 } h;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +0000990 u8 *skb_head = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 int skb_len = skb->len;
David S. Millerdbcb5852007-01-24 15:21:02 -0800992 unsigned int snaplen, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 unsigned long status = TP_STATUS_LOSING|TP_STATUS_USER;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700994 unsigned short macoff, netoff, hdrlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 struct sk_buff *copy_skb = NULL;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700996 struct timeval tv;
Patrick McHardybbd6ef82008-07-14 22:50:15 -0700997 struct timespec ts;
Scott McMillan614f60f2010-06-02 05:53:56 -0700998 struct skb_shared_hwtstamps *shhwtstamps = skb_hwtstamps(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000 if (skb->pkt_type == PACKET_LOOPBACK)
1001 goto drop;
1002
1003 sk = pt->af_packet_priv;
1004 po = pkt_sk(sk);
1005
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001006 if (!net_eq(dev_net(dev), sock_net(sk)))
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08001007 goto drop;
1008
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -07001009 if (dev->header_ops) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 if (sk->sk_type != SOCK_DGRAM)
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07001011 skb_push(skb, skb->data - skb_mac_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 else if (skb->pkt_type == PACKET_OUTGOING) {
1013 /* Special case: outgoing packets have ll header at head */
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001014 skb_pull(skb, skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 }
1016 }
1017
Herbert Xu8dc41942007-02-04 23:31:32 -08001018 if (skb->ip_summed == CHECKSUM_PARTIAL)
1019 status |= TP_STATUS_CSUMNOTREADY;
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 snaplen = skb->len;
1022
David S. Millerdbcb5852007-01-24 15:21:02 -08001023 res = run_filter(skb, sk, snaplen);
1024 if (!res)
Dmitry Mishinfda9ef52006-08-31 15:28:39 -07001025 goto drop_n_restore;
David S. Millerdbcb5852007-01-24 15:21:02 -08001026 if (snaplen > res)
1027 snaplen = res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
1029 if (sk->sk_type == SOCK_DGRAM) {
Patrick McHardy89133362008-07-18 18:05:19 -07001030 macoff = netoff = TPACKET_ALIGN(po->tp_hdrlen) + 16 +
1031 po->tp_reserve;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 } else {
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001033 unsigned maclen = skb_network_offset(skb);
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001034 netoff = TPACKET_ALIGN(po->tp_hdrlen +
Patrick McHardy89133362008-07-18 18:05:19 -07001035 (maclen < 16 ? 16 : maclen)) +
1036 po->tp_reserve;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 macoff = netoff - maclen;
1038 }
1039
Johann Baudy69e3c752009-05-18 22:11:22 -07001040 if (macoff + snaplen > po->rx_ring.frame_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (po->copy_thresh &&
1042 atomic_read(&sk->sk_rmem_alloc) + skb->truesize <
1043 (unsigned)sk->sk_rcvbuf) {
1044 if (skb_shared(skb)) {
1045 copy_skb = skb_clone(skb, GFP_ATOMIC);
1046 } else {
1047 copy_skb = skb_get(skb);
1048 skb_head = skb->data;
1049 }
1050 if (copy_skb)
1051 skb_set_owner_r(copy_skb, sk);
1052 }
Johann Baudy69e3c752009-05-18 22:11:22 -07001053 snaplen = po->rx_ring.frame_size - macoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 if ((int)snaplen < 0)
1055 snaplen = 0;
1056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 spin_lock(&sk->sk_receive_queue.lock);
Johann Baudy69e3c752009-05-18 22:11:22 -07001059 h.raw = packet_current_frame(po, &po->rx_ring, TP_STATUS_KERNEL);
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001060 if (!h.raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 goto ring_is_full;
Johann Baudy69e3c752009-05-18 22:11:22 -07001062 packet_increment_head(&po->rx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 po->stats.tp_packets++;
1064 if (copy_skb) {
1065 status |= TP_STATUS_COPY;
1066 __skb_queue_tail(&sk->sk_receive_queue, copy_skb);
1067 }
1068 if (!po->stats.tp_drops)
1069 status &= ~TP_STATUS_LOSING;
1070 spin_unlock(&sk->sk_receive_queue.lock);
1071
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001072 skb_copy_bits(skb, 0, h.raw + macoff, snaplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001074 switch (po->tp_version) {
1075 case TPACKET_V1:
1076 h.h1->tp_len = skb->len;
1077 h.h1->tp_snaplen = snaplen;
1078 h.h1->tp_mac = macoff;
1079 h.h1->tp_net = netoff;
Scott McMillan614f60f2010-06-02 05:53:56 -07001080 if ((po->tp_tstamp & SOF_TIMESTAMPING_SYS_HARDWARE)
1081 && shhwtstamps->syststamp.tv64)
1082 tv = ktime_to_timeval(shhwtstamps->syststamp);
1083 else if ((po->tp_tstamp & SOF_TIMESTAMPING_RAW_HARDWARE)
1084 && shhwtstamps->hwtstamp.tv64)
1085 tv = ktime_to_timeval(shhwtstamps->hwtstamp);
1086 else if (skb->tstamp.tv64)
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001087 tv = ktime_to_timeval(skb->tstamp);
1088 else
1089 do_gettimeofday(&tv);
1090 h.h1->tp_sec = tv.tv_sec;
1091 h.h1->tp_usec = tv.tv_usec;
1092 hdrlen = sizeof(*h.h1);
1093 break;
1094 case TPACKET_V2:
1095 h.h2->tp_len = skb->len;
1096 h.h2->tp_snaplen = snaplen;
1097 h.h2->tp_mac = macoff;
1098 h.h2->tp_net = netoff;
Scott McMillan614f60f2010-06-02 05:53:56 -07001099 if ((po->tp_tstamp & SOF_TIMESTAMPING_SYS_HARDWARE)
1100 && shhwtstamps->syststamp.tv64)
1101 ts = ktime_to_timespec(shhwtstamps->syststamp);
1102 else if ((po->tp_tstamp & SOF_TIMESTAMPING_RAW_HARDWARE)
1103 && shhwtstamps->hwtstamp.tv64)
1104 ts = ktime_to_timespec(shhwtstamps->hwtstamp);
1105 else if (skb->tstamp.tv64)
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001106 ts = ktime_to_timespec(skb->tstamp);
1107 else
1108 getnstimeofday(&ts);
1109 h.h2->tp_sec = ts.tv_sec;
1110 h.h2->tp_nsec = ts.tv_nsec;
Ben Greeara3bcc232011-06-01 06:49:10 +00001111 if (vlan_tx_tag_present(skb)) {
1112 h.h2->tp_vlan_tci = vlan_tx_tag_get(skb);
1113 status |= TP_STATUS_VLAN_VALID;
1114 } else {
1115 h.h2->tp_vlan_tci = 0;
1116 }
Eric Dumazet13fcb7b2011-06-06 22:42:06 -07001117 h.h2->tp_padding = 0;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001118 hdrlen = sizeof(*h.h2);
1119 break;
1120 default:
1121 BUG();
1122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Patrick McHardybbd6ef82008-07-14 22:50:15 -07001124 sll = h.raw + TPACKET_ALIGN(hdrlen);
Stephen Hemmingerb95cce32007-09-26 22:13:38 -07001125 sll->sll_halen = dev_parse_header(skb, sll->sll_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 sll->sll_family = AF_PACKET;
1127 sll->sll_hatype = dev->type;
1128 sll->sll_protocol = skb->protocol;
1129 sll->sll_pkttype = skb->pkt_type;
Peter P Waskiewicz Jr8032b462007-11-10 22:03:25 -08001130 if (unlikely(po->origdev))
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07001131 sll->sll_ifindex = orig_dev->ifindex;
1132 else
1133 sll->sll_ifindex = dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Ralf Baechlee16aa202006-12-07 00:11:33 -08001135 smp_mb();
Changli Gaof6dafa92010-12-07 04:26:16 +00001136#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 {
Changli Gao0af55bb2010-12-01 02:52:20 +00001138 u8 *start, *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Changli Gao0af55bb2010-12-01 02:52:20 +00001140 end = (u8 *)PAGE_ALIGN((unsigned long)h.raw + macoff + snaplen);
1141 for (start = h.raw; start < end; start += PAGE_SIZE)
1142 flush_dcache_page(pgv_to_page(start));
Chetan Lokecc9f01b2011-07-14 08:36:33 -07001143 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 }
Changli Gaof6dafa92010-12-07 04:26:16 +00001145#endif
Chetan Lokecc9f01b2011-07-14 08:36:33 -07001146 __packet_set_status(po, h.raw, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 sk->sk_data_ready(sk, 0);
1149
1150drop_n_restore:
1151 if (skb_head != skb->data && skb_shared(skb)) {
1152 skb->data = skb_head;
1153 skb->len = skb_len;
1154 }
1155drop:
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001156 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 return 0;
1158
1159ring_is_full:
1160 po->stats.tp_drops++;
1161 spin_unlock(&sk->sk_receive_queue.lock);
1162
1163 sk->sk_data_ready(sk, 0);
Wei Yongjunacb5d752009-02-25 00:36:42 +00001164 kfree_skb(copy_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 goto drop_n_restore;
1166}
1167
Johann Baudy69e3c752009-05-18 22:11:22 -07001168static void tpacket_destruct_skb(struct sk_buff *skb)
1169{
1170 struct packet_sock *po = pkt_sk(skb->sk);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001171 void *ph;
Johann Baudy69e3c752009-05-18 22:11:22 -07001172
1173 BUG_ON(skb == NULL);
1174
1175 if (likely(po->tx_ring.pg_vec)) {
1176 ph = skb_shinfo(skb)->destructor_arg;
1177 BUG_ON(__packet_get_status(po, ph) != TP_STATUS_SENDING);
1178 BUG_ON(atomic_read(&po->tx_ring.pending) == 0);
1179 atomic_dec(&po->tx_ring.pending);
1180 __packet_set_status(po, ph, TP_STATUS_AVAILABLE);
1181 }
1182
1183 sock_wfree(skb);
1184}
1185
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001186static int tpacket_fill_skb(struct packet_sock *po, struct sk_buff *skb,
1187 void *frame, struct net_device *dev, int size_max,
1188 __be16 proto, unsigned char *addr)
Johann Baudy69e3c752009-05-18 22:11:22 -07001189{
1190 union {
1191 struct tpacket_hdr *h1;
1192 struct tpacket2_hdr *h2;
1193 void *raw;
1194 } ph;
1195 int to_write, offset, len, tp_len, nr_frags, len_max;
1196 struct socket *sock = po->sk.sk_socket;
1197 struct page *page;
1198 void *data;
1199 int err;
1200
1201 ph.raw = frame;
1202
1203 skb->protocol = proto;
1204 skb->dev = dev;
1205 skb->priority = po->sk.sk_priority;
Eric Dumazet2d37a182009-10-01 19:14:46 +00001206 skb->mark = po->sk.sk_mark;
Johann Baudy69e3c752009-05-18 22:11:22 -07001207 skb_shinfo(skb)->destructor_arg = ph.raw;
1208
1209 switch (po->tp_version) {
1210 case TPACKET_V2:
1211 tp_len = ph.h2->tp_len;
1212 break;
1213 default:
1214 tp_len = ph.h1->tp_len;
1215 break;
1216 }
1217 if (unlikely(tp_len > size_max)) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001218 pr_err("packet size is too long (%d > %d)\n", tp_len, size_max);
Johann Baudy69e3c752009-05-18 22:11:22 -07001219 return -EMSGSIZE;
1220 }
1221
1222 skb_reserve(skb, LL_RESERVED_SPACE(dev));
1223 skb_reset_network_header(skb);
1224
1225 data = ph.raw + po->tp_hdrlen - sizeof(struct sockaddr_ll);
1226 to_write = tp_len;
1227
1228 if (sock->type == SOCK_DGRAM) {
1229 err = dev_hard_header(skb, dev, ntohs(proto), addr,
1230 NULL, tp_len);
1231 if (unlikely(err < 0))
1232 return -EINVAL;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001233 } else if (dev->hard_header_len) {
Johann Baudy69e3c752009-05-18 22:11:22 -07001234 /* net device doesn't like empty head */
1235 if (unlikely(tp_len <= dev->hard_header_len)) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001236 pr_err("packet size is too short (%d < %d)\n",
1237 tp_len, dev->hard_header_len);
Johann Baudy69e3c752009-05-18 22:11:22 -07001238 return -EINVAL;
1239 }
1240
1241 skb_push(skb, dev->hard_header_len);
1242 err = skb_store_bits(skb, 0, data,
1243 dev->hard_header_len);
1244 if (unlikely(err))
1245 return err;
1246
1247 data += dev->hard_header_len;
1248 to_write -= dev->hard_header_len;
1249 }
1250
1251 err = -EFAULT;
Johann Baudy69e3c752009-05-18 22:11:22 -07001252 offset = offset_in_page(data);
1253 len_max = PAGE_SIZE - offset;
1254 len = ((to_write > len_max) ? len_max : to_write);
1255
1256 skb->data_len = to_write;
1257 skb->len += to_write;
1258 skb->truesize += to_write;
1259 atomic_add(to_write, &po->sk.sk_wmem_alloc);
1260
1261 while (likely(to_write)) {
1262 nr_frags = skb_shinfo(skb)->nr_frags;
1263
1264 if (unlikely(nr_frags >= MAX_SKB_FRAGS)) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001265 pr_err("Packet exceed the number of skb frags(%lu)\n",
1266 MAX_SKB_FRAGS);
Johann Baudy69e3c752009-05-18 22:11:22 -07001267 return -EFAULT;
1268 }
1269
Changli Gao0af55bb2010-12-01 02:52:20 +00001270 page = pgv_to_page(data);
1271 data += len;
Johann Baudy69e3c752009-05-18 22:11:22 -07001272 flush_dcache_page(page);
1273 get_page(page);
Changli Gao0af55bb2010-12-01 02:52:20 +00001274 skb_fill_page_desc(skb, nr_frags, page, offset, len);
Johann Baudy69e3c752009-05-18 22:11:22 -07001275 to_write -= len;
1276 offset = 0;
1277 len_max = PAGE_SIZE;
1278 len = ((to_write > len_max) ? len_max : to_write);
1279 }
1280
1281 return tp_len;
1282}
1283
1284static int tpacket_snd(struct packet_sock *po, struct msghdr *msg)
1285{
Johann Baudy69e3c752009-05-18 22:11:22 -07001286 struct sk_buff *skb;
1287 struct net_device *dev;
1288 __be16 proto;
Ben Greear827d9782011-06-01 07:18:53 +00001289 bool need_rls_dev = false;
1290 int err, reserve = 0;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001291 void *ph;
1292 struct sockaddr_ll *saddr = (struct sockaddr_ll *)msg->msg_name;
Johann Baudy69e3c752009-05-18 22:11:22 -07001293 int tp_len, size_max;
1294 unsigned char *addr;
1295 int len_sum = 0;
1296 int status = 0;
1297
Johann Baudy69e3c752009-05-18 22:11:22 -07001298 mutex_lock(&po->pg_vec_lock);
1299
1300 err = -EBUSY;
1301 if (saddr == NULL) {
Ben Greear827d9782011-06-01 07:18:53 +00001302 dev = po->prot_hook.dev;
Johann Baudy69e3c752009-05-18 22:11:22 -07001303 proto = po->num;
1304 addr = NULL;
1305 } else {
1306 err = -EINVAL;
1307 if (msg->msg_namelen < sizeof(struct sockaddr_ll))
1308 goto out;
1309 if (msg->msg_namelen < (saddr->sll_halen
1310 + offsetof(struct sockaddr_ll,
1311 sll_addr)))
1312 goto out;
Johann Baudy69e3c752009-05-18 22:11:22 -07001313 proto = saddr->sll_protocol;
1314 addr = saddr->sll_addr;
Ben Greear827d9782011-06-01 07:18:53 +00001315 dev = dev_get_by_index(sock_net(&po->sk), saddr->sll_ifindex);
1316 need_rls_dev = true;
Johann Baudy69e3c752009-05-18 22:11:22 -07001317 }
1318
Johann Baudy69e3c752009-05-18 22:11:22 -07001319 err = -ENXIO;
1320 if (unlikely(dev == NULL))
1321 goto out;
1322
1323 reserve = dev->hard_header_len;
1324
1325 err = -ENETDOWN;
1326 if (unlikely(!(dev->flags & IFF_UP)))
1327 goto out_put;
1328
1329 size_max = po->tx_ring.frame_size
Gabor Gombasb5dd8842009-10-29 03:19:11 -07001330 - (po->tp_hdrlen - sizeof(struct sockaddr_ll));
Johann Baudy69e3c752009-05-18 22:11:22 -07001331
1332 if (size_max > dev->mtu + reserve)
1333 size_max = dev->mtu + reserve;
1334
1335 do {
1336 ph = packet_current_frame(po, &po->tx_ring,
1337 TP_STATUS_SEND_REQUEST);
1338
1339 if (unlikely(ph == NULL)) {
1340 schedule();
1341 continue;
1342 }
1343
1344 status = TP_STATUS_SEND_REQUEST;
1345 skb = sock_alloc_send_skb(&po->sk,
1346 LL_ALLOCATED_SPACE(dev)
1347 + sizeof(struct sockaddr_ll),
1348 0, &err);
1349
1350 if (unlikely(skb == NULL))
1351 goto out_status;
1352
1353 tp_len = tpacket_fill_skb(po, skb, ph, dev, size_max, proto,
1354 addr);
1355
1356 if (unlikely(tp_len < 0)) {
1357 if (po->tp_loss) {
1358 __packet_set_status(po, ph,
1359 TP_STATUS_AVAILABLE);
1360 packet_increment_head(&po->tx_ring);
1361 kfree_skb(skb);
1362 continue;
1363 } else {
1364 status = TP_STATUS_WRONG_FORMAT;
1365 err = tp_len;
1366 goto out_status;
1367 }
1368 }
1369
1370 skb->destructor = tpacket_destruct_skb;
1371 __packet_set_status(po, ph, TP_STATUS_SENDING);
1372 atomic_inc(&po->tx_ring.pending);
1373
1374 status = TP_STATUS_SEND_REQUEST;
1375 err = dev_queue_xmit(skb);
Jarek Poplawskieb70df12010-01-10 22:04:19 +00001376 if (unlikely(err > 0)) {
1377 err = net_xmit_errno(err);
1378 if (err && __packet_get_status(po, ph) ==
1379 TP_STATUS_AVAILABLE) {
1380 /* skb was destructed already */
1381 skb = NULL;
1382 goto out_status;
1383 }
1384 /*
1385 * skb was dropped but not destructed yet;
1386 * let's treat it like congestion or err < 0
1387 */
1388 err = 0;
1389 }
Johann Baudy69e3c752009-05-18 22:11:22 -07001390 packet_increment_head(&po->tx_ring);
1391 len_sum += tp_len;
Joe Perchesf64f9e72009-11-29 16:55:45 -08001392 } while (likely((ph != NULL) ||
1393 ((!(msg->msg_flags & MSG_DONTWAIT)) &&
1394 (atomic_read(&po->tx_ring.pending))))
1395 );
Johann Baudy69e3c752009-05-18 22:11:22 -07001396
1397 err = len_sum;
1398 goto out_put;
1399
Johann Baudy69e3c752009-05-18 22:11:22 -07001400out_status:
1401 __packet_set_status(po, ph, status);
1402 kfree_skb(skb);
1403out_put:
Ben Greear827d9782011-06-01 07:18:53 +00001404 if (need_rls_dev)
1405 dev_put(dev);
Johann Baudy69e3c752009-05-18 22:11:22 -07001406out:
1407 mutex_unlock(&po->pg_vec_lock);
1408 return err;
1409}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08001411static inline struct sk_buff *packet_alloc_skb(struct sock *sk, size_t prepad,
1412 size_t reserve, size_t len,
1413 size_t linear, int noblock,
1414 int *err)
1415{
1416 struct sk_buff *skb;
1417
1418 /* Under a page? Don't bother with paged skb. */
1419 if (prepad + len < PAGE_SIZE || !linear)
1420 linear = len;
1421
1422 skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
1423 err);
1424 if (!skb)
1425 return NULL;
1426
1427 skb_reserve(skb, reserve);
1428 skb_put(skb, linear);
1429 skb->data_len = len - linear;
1430 skb->len += len - linear;
1431
1432 return skb;
1433}
1434
Johann Baudy69e3c752009-05-18 22:11:22 -07001435static int packet_snd(struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 struct msghdr *msg, size_t len)
1437{
1438 struct sock *sk = sock->sk;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001439 struct sockaddr_ll *saddr = (struct sockaddr_ll *)msg->msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 struct sk_buff *skb;
1441 struct net_device *dev;
Al Viro0e11c912006-11-08 00:26:29 -08001442 __be16 proto;
Ben Greear827d9782011-06-01 07:18:53 +00001443 bool need_rls_dev = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 unsigned char *addr;
Ben Greear827d9782011-06-01 07:18:53 +00001445 int err, reserve = 0;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08001446 struct virtio_net_hdr vnet_hdr = { 0 };
1447 int offset = 0;
1448 int vnet_hdr_len;
1449 struct packet_sock *po = pkt_sk(sk);
1450 unsigned short gso_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
1452 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001453 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 if (saddr == NULL) {
Ben Greear827d9782011-06-01 07:18:53 +00001457 dev = po->prot_hook.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 proto = po->num;
1459 addr = NULL;
1460 } else {
1461 err = -EINVAL;
1462 if (msg->msg_namelen < sizeof(struct sockaddr_ll))
1463 goto out;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001464 if (msg->msg_namelen < (saddr->sll_halen + offsetof(struct sockaddr_ll, sll_addr)))
1465 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 proto = saddr->sll_protocol;
1467 addr = saddr->sll_addr;
Ben Greear827d9782011-06-01 07:18:53 +00001468 dev = dev_get_by_index(sock_net(sk), saddr->sll_ifindex);
1469 need_rls_dev = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 }
1471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 err = -ENXIO;
1473 if (dev == NULL)
1474 goto out_unlock;
1475 if (sock->type == SOCK_RAW)
1476 reserve = dev->hard_header_len;
1477
David S. Millerd5e76b02007-01-25 19:30:36 -08001478 err = -ENETDOWN;
1479 if (!(dev->flags & IFF_UP))
1480 goto out_unlock;
1481
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08001482 if (po->has_vnet_hdr) {
1483 vnet_hdr_len = sizeof(vnet_hdr);
1484
1485 err = -EINVAL;
1486 if (len < vnet_hdr_len)
1487 goto out_unlock;
1488
1489 len -= vnet_hdr_len;
1490
1491 err = memcpy_fromiovec((void *)&vnet_hdr, msg->msg_iov,
1492 vnet_hdr_len);
1493 if (err < 0)
1494 goto out_unlock;
1495
1496 if ((vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
1497 (vnet_hdr.csum_start + vnet_hdr.csum_offset + 2 >
1498 vnet_hdr.hdr_len))
1499 vnet_hdr.hdr_len = vnet_hdr.csum_start +
1500 vnet_hdr.csum_offset + 2;
1501
1502 err = -EINVAL;
1503 if (vnet_hdr.hdr_len > len)
1504 goto out_unlock;
1505
1506 if (vnet_hdr.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
1507 switch (vnet_hdr.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
1508 case VIRTIO_NET_HDR_GSO_TCPV4:
1509 gso_type = SKB_GSO_TCPV4;
1510 break;
1511 case VIRTIO_NET_HDR_GSO_TCPV6:
1512 gso_type = SKB_GSO_TCPV6;
1513 break;
1514 case VIRTIO_NET_HDR_GSO_UDP:
1515 gso_type = SKB_GSO_UDP;
1516 break;
1517 default:
1518 goto out_unlock;
1519 }
1520
1521 if (vnet_hdr.gso_type & VIRTIO_NET_HDR_GSO_ECN)
1522 gso_type |= SKB_GSO_TCP_ECN;
1523
1524 if (vnet_hdr.gso_size == 0)
1525 goto out_unlock;
1526
1527 }
1528 }
1529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 err = -EMSGSIZE;
Ben Greear57f89bf2011-02-11 09:35:18 +00001531 if (!gso_type && (len > dev->mtu + reserve + VLAN_HLEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 goto out_unlock;
1533
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08001534 err = -ENOBUFS;
1535 skb = packet_alloc_skb(sk, LL_ALLOCATED_SPACE(dev),
1536 LL_RESERVED_SPACE(dev), len, vnet_hdr.hdr_len,
1537 msg->msg_flags & MSG_DONTWAIT, &err);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001538 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 goto out_unlock;
1540
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08001541 skb_set_network_header(skb, reserve);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Stephen Hemminger0c4e8582007-10-09 01:36:32 -07001543 err = -EINVAL;
1544 if (sock->type == SOCK_DGRAM &&
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08001545 (offset = dev_hard_header(skb, dev, ntohs(proto), addr, NULL, len)) < 0)
Stephen Hemminger0c4e8582007-10-09 01:36:32 -07001546 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548 /* Returns -EFAULT on error */
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08001549 err = skb_copy_datagram_from_iovec(skb, offset, msg->msg_iov, 0, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 if (err)
1551 goto out_free;
Oliver Hartkopp2244d072010-08-17 08:59:14 +00001552 err = sock_tx_timestamp(sk, &skb_shinfo(skb)->tx_flags);
Richard Cochraned85b562010-04-07 22:41:28 +00001553 if (err < 0)
1554 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Ben Greear57f89bf2011-02-11 09:35:18 +00001556 if (!gso_type && (len > dev->mtu + reserve)) {
1557 /* Earlier code assumed this would be a VLAN pkt,
1558 * double-check this now that we have the actual
1559 * packet in hand.
1560 */
1561 struct ethhdr *ehdr;
1562 skb_reset_mac_header(skb);
1563 ehdr = eth_hdr(skb);
1564 if (ehdr->h_proto != htons(ETH_P_8021Q)) {
1565 err = -EMSGSIZE;
1566 goto out_free;
1567 }
1568 }
1569
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 skb->protocol = proto;
1571 skb->dev = dev;
1572 skb->priority = sk->sk_priority;
Eric Dumazet2d37a182009-10-01 19:14:46 +00001573 skb->mark = sk->sk_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08001575 if (po->has_vnet_hdr) {
1576 if (vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
1577 if (!skb_partial_csum_set(skb, vnet_hdr.csum_start,
1578 vnet_hdr.csum_offset)) {
1579 err = -EINVAL;
1580 goto out_free;
1581 }
1582 }
1583
1584 skb_shinfo(skb)->gso_size = vnet_hdr.gso_size;
1585 skb_shinfo(skb)->gso_type = gso_type;
1586
1587 /* Header must be checked, and gso_segs computed. */
1588 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
1589 skb_shinfo(skb)->gso_segs = 0;
1590
1591 len += vnet_hdr_len;
1592 }
1593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 /*
1595 * Now send it
1596 */
1597
1598 err = dev_queue_xmit(skb);
1599 if (err > 0 && (err = net_xmit_errno(err)) != 0)
1600 goto out_unlock;
1601
Ben Greear827d9782011-06-01 07:18:53 +00001602 if (need_rls_dev)
1603 dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001605 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
1607out_free:
1608 kfree_skb(skb);
1609out_unlock:
Ben Greear827d9782011-06-01 07:18:53 +00001610 if (dev && need_rls_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 dev_put(dev);
1612out:
1613 return err;
1614}
1615
Johann Baudy69e3c752009-05-18 22:11:22 -07001616static int packet_sendmsg(struct kiocb *iocb, struct socket *sock,
1617 struct msghdr *msg, size_t len)
1618{
Johann Baudy69e3c752009-05-18 22:11:22 -07001619 struct sock *sk = sock->sk;
1620 struct packet_sock *po = pkt_sk(sk);
1621 if (po->tx_ring.pg_vec)
1622 return tpacket_snd(po, msg);
1623 else
Johann Baudy69e3c752009-05-18 22:11:22 -07001624 return packet_snd(sock, msg, len);
1625}
1626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627/*
1628 * Close a PACKET socket. This is fairly simple. We immediately go
1629 * to 'closed' state and remove our protocol entry in the device list.
1630 */
1631
1632static int packet_release(struct socket *sock)
1633{
1634 struct sock *sk = sock->sk;
1635 struct packet_sock *po;
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08001636 struct net *net;
Johann Baudy69e3c752009-05-18 22:11:22 -07001637 struct tpacket_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
1639 if (!sk)
1640 return 0;
1641
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001642 net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 po = pkt_sk(sk);
1644
stephen hemminger808f5112010-02-22 07:57:18 +00001645 spin_lock_bh(&net->packet.sklist_lock);
1646 sk_del_node_init_rcu(sk);
Eric Dumazet920de802008-11-24 00:09:29 -08001647 sock_prot_inuse_add(net, sk->sk_prot, -1);
stephen hemminger808f5112010-02-22 07:57:18 +00001648 spin_unlock_bh(&net->packet.sklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
stephen hemminger808f5112010-02-22 07:57:18 +00001650 spin_lock(&po->bind_lock);
David S. Millerce06b032011-07-04 01:44:29 -07001651 unregister_prot_hook(sk, false);
Ben Greear160ff182011-06-01 07:18:52 +00001652 if (po->prot_hook.dev) {
1653 dev_put(po->prot_hook.dev);
1654 po->prot_hook.dev = NULL;
1655 }
stephen hemminger808f5112010-02-22 07:57:18 +00001656 spin_unlock(&po->bind_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 packet_flush_mclist(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Johann Baudy69e3c752009-05-18 22:11:22 -07001660 memset(&req, 0, sizeof(req));
1661
1662 if (po->rx_ring.pg_vec)
1663 packet_set_ring(sk, &req, 1, 0);
1664
1665 if (po->tx_ring.pg_vec)
1666 packet_set_ring(sk, &req, 1, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
David S. Millerdc99f602011-07-05 01:45:05 -07001668 fanout_release(sk);
1669
stephen hemminger808f5112010-02-22 07:57:18 +00001670 synchronize_net();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 /*
1672 * Now the socket is dead. No more input will appear.
1673 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 sock_orphan(sk);
1675 sock->sk = NULL;
1676
1677 /* Purge queues */
1678
1679 skb_queue_purge(&sk->sk_receive_queue);
Pavel Emelyanov17ab56a2007-11-10 21:38:48 -08001680 sk_refcnt_debug_release(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
1682 sock_put(sk);
1683 return 0;
1684}
1685
1686/*
1687 * Attach a packet hook.
1688 */
1689
Al Viro0e11c912006-11-08 00:26:29 -08001690static int packet_do_bind(struct sock *sk, struct net_device *dev, __be16 protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691{
1692 struct packet_sock *po = pkt_sk(sk);
David S. Millerdc99f602011-07-05 01:45:05 -07001693
1694 if (po->fanout)
1695 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697 lock_sock(sk);
1698
1699 spin_lock(&po->bind_lock);
David S. Millerce06b032011-07-04 01:44:29 -07001700 unregister_prot_hook(sk, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 po->num = protocol;
1702 po->prot_hook.type = protocol;
Ben Greear160ff182011-06-01 07:18:52 +00001703 if (po->prot_hook.dev)
1704 dev_put(po->prot_hook.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 po->prot_hook.dev = dev;
1706
1707 po->ifindex = dev ? dev->ifindex : 0;
1708
1709 if (protocol == 0)
1710 goto out_unlock;
1711
Urs Thuermannbe85d4a2007-11-12 21:05:20 -08001712 if (!dev || (dev->flags & IFF_UP)) {
David S. Millerce06b032011-07-04 01:44:29 -07001713 register_prot_hook(sk);
Urs Thuermannbe85d4a2007-11-12 21:05:20 -08001714 } else {
1715 sk->sk_err = ENETDOWN;
1716 if (!sock_flag(sk, SOCK_DEAD))
1717 sk->sk_error_report(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 }
1719
1720out_unlock:
1721 spin_unlock(&po->bind_lock);
1722 release_sock(sk);
1723 return 0;
1724}
1725
1726/*
1727 * Bind a packet socket to a device
1728 */
1729
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001730static int packet_bind_spkt(struct socket *sock, struct sockaddr *uaddr,
1731 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732{
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001733 struct sock *sk = sock->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 char name[15];
1735 struct net_device *dev;
1736 int err = -ENODEV;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 /*
1739 * Check legality
1740 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001741
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08001742 if (addr_len != sizeof(struct sockaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 return -EINVAL;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001744 strlcpy(name, uaddr->sa_data, sizeof(name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001746 dev = dev_get_by_name(sock_net(sk), name);
Ben Greear160ff182011-06-01 07:18:52 +00001747 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 err = packet_do_bind(sk, dev, pkt_sk(sk)->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 return err;
1750}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
1752static int packet_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
1753{
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001754 struct sockaddr_ll *sll = (struct sockaddr_ll *)uaddr;
1755 struct sock *sk = sock->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 struct net_device *dev = NULL;
1757 int err;
1758
1759
1760 /*
1761 * Check legality
1762 */
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 if (addr_len < sizeof(struct sockaddr_ll))
1765 return -EINVAL;
1766 if (sll->sll_family != AF_PACKET)
1767 return -EINVAL;
1768
1769 if (sll->sll_ifindex) {
1770 err = -ENODEV;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001771 dev = dev_get_by_index(sock_net(sk), sll->sll_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 if (dev == NULL)
1773 goto out;
1774 }
1775 err = packet_do_bind(sk, dev, sll->sll_protocol ? : pkt_sk(sk)->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
1777out:
1778 return err;
1779}
1780
1781static struct proto packet_proto = {
1782 .name = "PACKET",
1783 .owner = THIS_MODULE,
1784 .obj_size = sizeof(struct packet_sock),
1785};
1786
1787/*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001788 * Create a packet of type SOCK_PACKET.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 */
1790
Eric Paris3f378b62009-11-05 22:18:14 -08001791static int packet_create(struct net *net, struct socket *sock, int protocol,
1792 int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793{
1794 struct sock *sk;
1795 struct packet_sock *po;
Al Viro0e11c912006-11-08 00:26:29 -08001796 __be16 proto = (__force __be16)protocol; /* weird, but documented */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 int err;
1798
1799 if (!capable(CAP_NET_RAW))
1800 return -EPERM;
David S. Millerbe020972007-05-29 13:16:31 -07001801 if (sock->type != SOCK_DGRAM && sock->type != SOCK_RAW &&
1802 sock->type != SOCK_PACKET)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 return -ESOCKTNOSUPPORT;
1804
1805 sock->state = SS_UNCONNECTED;
1806
1807 err = -ENOBUFS;
Pavel Emelyanov6257ff22007-11-01 00:39:31 -07001808 sk = sk_alloc(net, PF_PACKET, GFP_KERNEL, &packet_proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 if (sk == NULL)
1810 goto out;
1811
1812 sock->ops = &packet_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 if (sock->type == SOCK_PACKET)
1814 sock->ops = &packet_ops_spkt;
David S. Millerbe020972007-05-29 13:16:31 -07001815
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 sock_init_data(sock, sk);
1817
1818 po = pkt_sk(sk);
1819 sk->sk_family = PF_PACKET;
Al Viro0e11c912006-11-08 00:26:29 -08001820 po->num = proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
1822 sk->sk_destruct = packet_sock_destruct;
Pavel Emelyanov17ab56a2007-11-10 21:38:48 -08001823 sk_refcnt_debug_inc(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
1825 /*
1826 * Attach a protocol block
1827 */
1828
1829 spin_lock_init(&po->bind_lock);
Herbert Xu905db442009-01-30 14:12:06 -08001830 mutex_init(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 po->prot_hook.func = packet_rcv;
David S. Millerbe020972007-05-29 13:16:31 -07001832
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 if (sock->type == SOCK_PACKET)
1834 po->prot_hook.func = packet_rcv_spkt;
David S. Millerbe020972007-05-29 13:16:31 -07001835
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 po->prot_hook.af_packet_priv = sk;
1837
Al Viro0e11c912006-11-08 00:26:29 -08001838 if (proto) {
1839 po->prot_hook.type = proto;
David S. Millerce06b032011-07-04 01:44:29 -07001840 register_prot_hook(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 }
1842
stephen hemminger808f5112010-02-22 07:57:18 +00001843 spin_lock_bh(&net->packet.sklist_lock);
1844 sk_add_node_rcu(sk, &net->packet.sklist);
Eric Dumazet36804532008-11-19 14:25:35 -08001845 sock_prot_inuse_add(net, &packet_proto, 1);
stephen hemminger808f5112010-02-22 07:57:18 +00001846 spin_unlock_bh(&net->packet.sklist_lock);
1847
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001848 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849out:
1850 return err;
1851}
1852
Richard Cochraned85b562010-04-07 22:41:28 +00001853static int packet_recv_error(struct sock *sk, struct msghdr *msg, int len)
1854{
1855 struct sock_exterr_skb *serr;
1856 struct sk_buff *skb, *skb2;
1857 int copied, err;
1858
1859 err = -EAGAIN;
1860 skb = skb_dequeue(&sk->sk_error_queue);
1861 if (skb == NULL)
1862 goto out;
1863
1864 copied = skb->len;
1865 if (copied > len) {
1866 msg->msg_flags |= MSG_TRUNC;
1867 copied = len;
1868 }
1869 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
1870 if (err)
1871 goto out_free_skb;
1872
1873 sock_recv_timestamp(msg, sk, skb);
1874
1875 serr = SKB_EXT_ERR(skb);
1876 put_cmsg(msg, SOL_PACKET, PACKET_TX_TIMESTAMP,
1877 sizeof(serr->ee), &serr->ee);
1878
1879 msg->msg_flags |= MSG_ERRQUEUE;
1880 err = copied;
1881
1882 /* Reset and regenerate socket error */
1883 spin_lock_bh(&sk->sk_error_queue.lock);
1884 sk->sk_err = 0;
1885 if ((skb2 = skb_peek(&sk->sk_error_queue)) != NULL) {
1886 sk->sk_err = SKB_EXT_ERR(skb2)->ee.ee_errno;
1887 spin_unlock_bh(&sk->sk_error_queue.lock);
1888 sk->sk_error_report(sk);
1889 } else
1890 spin_unlock_bh(&sk->sk_error_queue.lock);
1891
1892out_free_skb:
1893 kfree_skb(skb);
1894out:
1895 return err;
1896}
1897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898/*
1899 * Pull a packet from our receive queue and hand it to the user.
1900 * If necessary we block.
1901 */
1902
1903static int packet_recvmsg(struct kiocb *iocb, struct socket *sock,
1904 struct msghdr *msg, size_t len, int flags)
1905{
1906 struct sock *sk = sock->sk;
1907 struct sk_buff *skb;
1908 int copied, err;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001909 struct sockaddr_ll *sll;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08001910 int vnet_hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
1912 err = -EINVAL;
Richard Cochraned85b562010-04-07 22:41:28 +00001913 if (flags & ~(MSG_PEEK|MSG_DONTWAIT|MSG_TRUNC|MSG_CMSG_COMPAT|MSG_ERRQUEUE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 goto out;
1915
1916#if 0
1917 /* What error should we return now? EUNATTACH? */
1918 if (pkt_sk(sk)->ifindex < 0)
1919 return -ENODEV;
1920#endif
1921
Richard Cochraned85b562010-04-07 22:41:28 +00001922 if (flags & MSG_ERRQUEUE) {
1923 err = packet_recv_error(sk, msg, len);
1924 goto out;
1925 }
1926
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 * Call the generic datagram receiver. This handles all sorts
1929 * of horrible races and re-entrancy so we can forget about it
1930 * in the protocol layers.
1931 *
1932 * Now it will return ENETDOWN, if device have just gone down,
1933 * but then it will block.
1934 */
1935
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00001936 skb = skb_recv_datagram(sk, flags, flags & MSG_DONTWAIT, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
1938 /*
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09001939 * An error occurred so return it. Because skb_recv_datagram()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 * handles the blocking we don't see and worry about blocking
1941 * retries.
1942 */
1943
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08001944 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 goto out;
1946
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08001947 if (pkt_sk(sk)->has_vnet_hdr) {
1948 struct virtio_net_hdr vnet_hdr = { 0 };
1949
1950 err = -EINVAL;
1951 vnet_hdr_len = sizeof(vnet_hdr);
Mariusz Kozlowski1f18b712010-11-08 11:58:45 +00001952 if (len < vnet_hdr_len)
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08001953 goto out_free;
1954
Mariusz Kozlowski1f18b712010-11-08 11:58:45 +00001955 len -= vnet_hdr_len;
1956
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08001957 if (skb_is_gso(skb)) {
1958 struct skb_shared_info *sinfo = skb_shinfo(skb);
1959
1960 /* This is a hint as to how much should be linear. */
1961 vnet_hdr.hdr_len = skb_headlen(skb);
1962 vnet_hdr.gso_size = sinfo->gso_size;
1963 if (sinfo->gso_type & SKB_GSO_TCPV4)
1964 vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
1965 else if (sinfo->gso_type & SKB_GSO_TCPV6)
1966 vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
1967 else if (sinfo->gso_type & SKB_GSO_UDP)
1968 vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_UDP;
1969 else if (sinfo->gso_type & SKB_GSO_FCOE)
1970 goto out_free;
1971 else
1972 BUG();
1973 if (sinfo->gso_type & SKB_GSO_TCP_ECN)
1974 vnet_hdr.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
1975 } else
1976 vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_NONE;
1977
1978 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1979 vnet_hdr.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Michał Mirosław55508d62010-12-14 15:24:08 +00001980 vnet_hdr.csum_start = skb_checksum_start_offset(skb);
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08001981 vnet_hdr.csum_offset = skb->csum_offset;
Jason Wang10a8d942011-06-10 00:56:17 +00001982 } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
1983 vnet_hdr.flags = VIRTIO_NET_HDR_F_DATA_VALID;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08001984 } /* else everything is zero */
1985
1986 err = memcpy_toiovec(msg->msg_iov, (void *)&vnet_hdr,
1987 vnet_hdr_len);
1988 if (err < 0)
1989 goto out_free;
1990 }
1991
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 /*
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001993 * If the address length field is there to be filled in, we fill
1994 * it in now.
1995 */
1996
Herbert Xuffbc6112007-02-04 23:33:10 -08001997 sll = &PACKET_SKB_CB(skb)->sa.ll;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07001998 if (sock->type == SOCK_PACKET)
1999 msg->msg_namelen = sizeof(struct sockaddr_pkt);
2000 else
2001 msg->msg_namelen = sll->sll_halen + offsetof(struct sockaddr_ll, sll_addr);
2002
2003 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 * You lose any data beyond the buffer you gave. If it worries a
2005 * user program they can ask the device for its MTU anyway.
2006 */
2007
2008 copied = skb->len;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002009 if (copied > len) {
2010 copied = len;
2011 msg->msg_flags |= MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 }
2013
2014 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
2015 if (err)
2016 goto out_free;
2017
Neil Horman3b885782009-10-12 13:26:31 -07002018 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
2020 if (msg->msg_name)
Herbert Xuffbc6112007-02-04 23:33:10 -08002021 memcpy(msg->msg_name, &PACKET_SKB_CB(skb)->sa,
2022 msg->msg_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
Herbert Xu8dc41942007-02-04 23:31:32 -08002024 if (pkt_sk(sk)->auxdata) {
Herbert Xuffbc6112007-02-04 23:33:10 -08002025 struct tpacket_auxdata aux;
2026
2027 aux.tp_status = TP_STATUS_USER;
2028 if (skb->ip_summed == CHECKSUM_PARTIAL)
2029 aux.tp_status |= TP_STATUS_CSUMNOTREADY;
2030 aux.tp_len = PACKET_SKB_CB(skb)->origlen;
2031 aux.tp_snaplen = skb->len;
2032 aux.tp_mac = 0;
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03002033 aux.tp_net = skb_network_offset(skb);
Ben Greeara3bcc232011-06-01 06:49:10 +00002034 if (vlan_tx_tag_present(skb)) {
2035 aux.tp_vlan_tci = vlan_tx_tag_get(skb);
2036 aux.tp_status |= TP_STATUS_VLAN_VALID;
2037 } else {
2038 aux.tp_vlan_tci = 0;
2039 }
Eric Dumazet13fcb7b2011-06-06 22:42:06 -07002040 aux.tp_padding = 0;
Herbert Xuffbc6112007-02-04 23:33:10 -08002041 put_cmsg(msg, SOL_PACKET, PACKET_AUXDATA, sizeof(aux), &aux);
Herbert Xu8dc41942007-02-04 23:31:32 -08002042 }
2043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 /*
2045 * Free or return the buffer as appropriate. Again this
2046 * hides all the races and re-entrancy issues from us.
2047 */
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002048 err = vnet_hdr_len + ((flags&MSG_TRUNC) ? skb->len : copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
2050out_free:
2051 skb_free_datagram(sk, skb);
2052out:
2053 return err;
2054}
2055
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056static int packet_getname_spkt(struct socket *sock, struct sockaddr *uaddr,
2057 int *uaddr_len, int peer)
2058{
2059 struct net_device *dev;
2060 struct sock *sk = sock->sk;
2061
2062 if (peer)
2063 return -EOPNOTSUPP;
2064
2065 uaddr->sa_family = AF_PACKET;
Eric Dumazet654d1f82009-11-02 10:43:32 +01002066 rcu_read_lock();
2067 dev = dev_get_by_index_rcu(sock_net(sk), pkt_sk(sk)->ifindex);
2068 if (dev)
Vasiliy Kulikov67286642010-11-10 12:09:10 -08002069 strncpy(uaddr->sa_data, dev->name, 14);
Eric Dumazet654d1f82009-11-02 10:43:32 +01002070 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 memset(uaddr->sa_data, 0, 14);
Eric Dumazet654d1f82009-11-02 10:43:32 +01002072 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 *uaddr_len = sizeof(*uaddr);
2074
2075 return 0;
2076}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
2078static int packet_getname(struct socket *sock, struct sockaddr *uaddr,
2079 int *uaddr_len, int peer)
2080{
2081 struct net_device *dev;
2082 struct sock *sk = sock->sk;
2083 struct packet_sock *po = pkt_sk(sk);
Cyrill Gorcunov13cfa972009-11-08 05:51:19 +00002084 DECLARE_SOCKADDR(struct sockaddr_ll *, sll, uaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
2086 if (peer)
2087 return -EOPNOTSUPP;
2088
2089 sll->sll_family = AF_PACKET;
2090 sll->sll_ifindex = po->ifindex;
2091 sll->sll_protocol = po->num;
Vasiliy Kulikov67286642010-11-10 12:09:10 -08002092 sll->sll_pkttype = 0;
Eric Dumazet654d1f82009-11-02 10:43:32 +01002093 rcu_read_lock();
2094 dev = dev_get_by_index_rcu(sock_net(sk), po->ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 if (dev) {
2096 sll->sll_hatype = dev->type;
2097 sll->sll_halen = dev->addr_len;
2098 memcpy(sll->sll_addr, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 } else {
2100 sll->sll_hatype = 0; /* Bad: we have no ARPHRD_UNSPEC */
2101 sll->sll_halen = 0;
2102 }
Eric Dumazet654d1f82009-11-02 10:43:32 +01002103 rcu_read_unlock();
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07002104 *uaddr_len = offsetof(struct sockaddr_ll, sll_addr) + sll->sll_halen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
2106 return 0;
2107}
2108
Wang Chen2aeb0b82008-07-14 20:49:46 -07002109static int packet_dev_mc(struct net_device *dev, struct packet_mclist *i,
2110 int what)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111{
2112 switch (i->type) {
2113 case PACKET_MR_MULTICAST:
Jiri Pirko11625632010-03-02 20:40:01 +00002114 if (i->alen != dev->addr_len)
2115 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 if (what > 0)
Jiri Pirko22bedad2010-04-01 21:22:57 +00002117 return dev_mc_add(dev, i->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 else
Jiri Pirko22bedad2010-04-01 21:22:57 +00002119 return dev_mc_del(dev, i->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 break;
2121 case PACKET_MR_PROMISC:
Wang Chen2aeb0b82008-07-14 20:49:46 -07002122 return dev_set_promiscuity(dev, what);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 break;
2124 case PACKET_MR_ALLMULTI:
Wang Chen2aeb0b82008-07-14 20:49:46 -07002125 return dev_set_allmulti(dev, what);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 break;
Eric W. Biedermand95ed922009-05-19 18:27:17 +00002127 case PACKET_MR_UNICAST:
Jiri Pirko11625632010-03-02 20:40:01 +00002128 if (i->alen != dev->addr_len)
2129 return -EINVAL;
Eric W. Biedermand95ed922009-05-19 18:27:17 +00002130 if (what > 0)
Jiri Pirkoa748ee22010-04-01 21:22:09 +00002131 return dev_uc_add(dev, i->addr);
Eric W. Biedermand95ed922009-05-19 18:27:17 +00002132 else
Jiri Pirkoa748ee22010-04-01 21:22:09 +00002133 return dev_uc_del(dev, i->addr);
Eric W. Biedermand95ed922009-05-19 18:27:17 +00002134 break;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002135 default:
2136 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 }
Wang Chen2aeb0b82008-07-14 20:49:46 -07002138 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139}
2140
2141static void packet_dev_mclist(struct net_device *dev, struct packet_mclist *i, int what)
2142{
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002143 for ( ; i; i = i->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 if (i->ifindex == dev->ifindex)
2145 packet_dev_mc(dev, i, what);
2146 }
2147}
2148
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07002149static int packet_mc_add(struct sock *sk, struct packet_mreq_max *mreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150{
2151 struct packet_sock *po = pkt_sk(sk);
2152 struct packet_mclist *ml, *i;
2153 struct net_device *dev;
2154 int err;
2155
2156 rtnl_lock();
2157
2158 err = -ENODEV;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09002159 dev = __dev_get_by_index(sock_net(sk), mreq->mr_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 if (!dev)
2161 goto done;
2162
2163 err = -EINVAL;
Jiri Pirko11625632010-03-02 20:40:01 +00002164 if (mreq->mr_alen > dev->addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 goto done;
2166
2167 err = -ENOBUFS;
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08002168 i = kmalloc(sizeof(*i), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 if (i == NULL)
2170 goto done;
2171
2172 err = 0;
2173 for (ml = po->mclist; ml; ml = ml->next) {
2174 if (ml->ifindex == mreq->mr_ifindex &&
2175 ml->type == mreq->mr_type &&
2176 ml->alen == mreq->mr_alen &&
2177 memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
2178 ml->count++;
2179 /* Free the new element ... */
2180 kfree(i);
2181 goto done;
2182 }
2183 }
2184
2185 i->type = mreq->mr_type;
2186 i->ifindex = mreq->mr_ifindex;
2187 i->alen = mreq->mr_alen;
2188 memcpy(i->addr, mreq->mr_address, i->alen);
2189 i->count = 1;
2190 i->next = po->mclist;
2191 po->mclist = i;
Wang Chen2aeb0b82008-07-14 20:49:46 -07002192 err = packet_dev_mc(dev, i, 1);
2193 if (err) {
2194 po->mclist = i->next;
2195 kfree(i);
2196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
2198done:
2199 rtnl_unlock();
2200 return err;
2201}
2202
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07002203static int packet_mc_drop(struct sock *sk, struct packet_mreq_max *mreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204{
2205 struct packet_mclist *ml, **mlp;
2206
2207 rtnl_lock();
2208
2209 for (mlp = &pkt_sk(sk)->mclist; (ml = *mlp) != NULL; mlp = &ml->next) {
2210 if (ml->ifindex == mreq->mr_ifindex &&
2211 ml->type == mreq->mr_type &&
2212 ml->alen == mreq->mr_alen &&
2213 memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
2214 if (--ml->count == 0) {
2215 struct net_device *dev;
2216 *mlp = ml->next;
Eric Dumazetad959e72009-10-16 06:38:46 +00002217 dev = __dev_get_by_index(sock_net(sk), ml->ifindex);
2218 if (dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 packet_dev_mc(dev, ml, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 kfree(ml);
2221 }
2222 rtnl_unlock();
2223 return 0;
2224 }
2225 }
2226 rtnl_unlock();
2227 return -EADDRNOTAVAIL;
2228}
2229
2230static void packet_flush_mclist(struct sock *sk)
2231{
2232 struct packet_sock *po = pkt_sk(sk);
2233 struct packet_mclist *ml;
2234
2235 if (!po->mclist)
2236 return;
2237
2238 rtnl_lock();
2239 while ((ml = po->mclist) != NULL) {
2240 struct net_device *dev;
2241
2242 po->mclist = ml->next;
Eric Dumazetad959e72009-10-16 06:38:46 +00002243 dev = __dev_get_by_index(sock_net(sk), ml->ifindex);
2244 if (dev != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 packet_dev_mc(dev, ml, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 kfree(ml);
2247 }
2248 rtnl_unlock();
2249}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
2251static int
David S. Millerb7058842009-09-30 16:12:20 -07002252packet_setsockopt(struct socket *sock, int level, int optname, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253{
2254 struct sock *sk = sock->sk;
Herbert Xu8dc41942007-02-04 23:31:32 -08002255 struct packet_sock *po = pkt_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 int ret;
2257
2258 if (level != SOL_PACKET)
2259 return -ENOPROTOOPT;
2260
Johann Baudy69e3c752009-05-18 22:11:22 -07002261 switch (optname) {
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002262 case PACKET_ADD_MEMBERSHIP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 case PACKET_DROP_MEMBERSHIP:
2264 {
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07002265 struct packet_mreq_max mreq;
2266 int len = optlen;
2267 memset(&mreq, 0, sizeof(mreq));
2268 if (len < sizeof(struct packet_mreq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 return -EINVAL;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07002270 if (len > sizeof(mreq))
2271 len = sizeof(mreq);
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002272 if (copy_from_user(&mreq, optval, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 return -EFAULT;
Eric W. Biederman0fb375f2005-09-21 00:11:37 -07002274 if (len < (mreq.mr_alen + offsetof(struct packet_mreq, mr_address)))
2275 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 if (optname == PACKET_ADD_MEMBERSHIP)
2277 ret = packet_mc_add(sk, &mreq);
2278 else
2279 ret = packet_mc_drop(sk, &mreq);
2280 return ret;
2281 }
David S. Millera2efcfa2007-05-29 13:12:50 -07002282
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 case PACKET_RX_RING:
Johann Baudy69e3c752009-05-18 22:11:22 -07002284 case PACKET_TX_RING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 {
2286 struct tpacket_req req;
2287
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002288 if (optlen < sizeof(req))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 return -EINVAL;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002290 if (pkt_sk(sk)->has_vnet_hdr)
2291 return -EINVAL;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002292 if (copy_from_user(&req, optval, sizeof(req)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 return -EFAULT;
Johann Baudy69e3c752009-05-18 22:11:22 -07002294 return packet_set_ring(sk, &req, 0, optname == PACKET_TX_RING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 }
2296 case PACKET_COPY_THRESH:
2297 {
2298 int val;
2299
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002300 if (optlen != sizeof(val))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 return -EINVAL;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002302 if (copy_from_user(&val, optval, sizeof(val)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 return -EFAULT;
2304
2305 pkt_sk(sk)->copy_thresh = val;
2306 return 0;
2307 }
Patrick McHardybbd6ef82008-07-14 22:50:15 -07002308 case PACKET_VERSION:
2309 {
2310 int val;
2311
2312 if (optlen != sizeof(val))
2313 return -EINVAL;
Johann Baudy69e3c752009-05-18 22:11:22 -07002314 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
Patrick McHardybbd6ef82008-07-14 22:50:15 -07002315 return -EBUSY;
2316 if (copy_from_user(&val, optval, sizeof(val)))
2317 return -EFAULT;
2318 switch (val) {
2319 case TPACKET_V1:
2320 case TPACKET_V2:
2321 po->tp_version = val;
2322 return 0;
2323 default:
2324 return -EINVAL;
2325 }
2326 }
Patrick McHardy89133362008-07-18 18:05:19 -07002327 case PACKET_RESERVE:
2328 {
2329 unsigned int val;
2330
2331 if (optlen != sizeof(val))
2332 return -EINVAL;
Johann Baudy69e3c752009-05-18 22:11:22 -07002333 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
Patrick McHardy89133362008-07-18 18:05:19 -07002334 return -EBUSY;
2335 if (copy_from_user(&val, optval, sizeof(val)))
2336 return -EFAULT;
2337 po->tp_reserve = val;
2338 return 0;
2339 }
Johann Baudy69e3c752009-05-18 22:11:22 -07002340 case PACKET_LOSS:
2341 {
2342 unsigned int val;
2343
2344 if (optlen != sizeof(val))
2345 return -EINVAL;
2346 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
2347 return -EBUSY;
2348 if (copy_from_user(&val, optval, sizeof(val)))
2349 return -EFAULT;
2350 po->tp_loss = !!val;
2351 return 0;
2352 }
Herbert Xu8dc41942007-02-04 23:31:32 -08002353 case PACKET_AUXDATA:
2354 {
2355 int val;
2356
2357 if (optlen < sizeof(val))
2358 return -EINVAL;
2359 if (copy_from_user(&val, optval, sizeof(val)))
2360 return -EFAULT;
2361
2362 po->auxdata = !!val;
2363 return 0;
2364 }
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07002365 case PACKET_ORIGDEV:
2366 {
2367 int val;
2368
2369 if (optlen < sizeof(val))
2370 return -EINVAL;
2371 if (copy_from_user(&val, optval, sizeof(val)))
2372 return -EFAULT;
2373
2374 po->origdev = !!val;
2375 return 0;
2376 }
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002377 case PACKET_VNET_HDR:
2378 {
2379 int val;
2380
2381 if (sock->type != SOCK_RAW)
2382 return -EINVAL;
2383 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
2384 return -EBUSY;
2385 if (optlen < sizeof(val))
2386 return -EINVAL;
2387 if (copy_from_user(&val, optval, sizeof(val)))
2388 return -EFAULT;
2389
2390 po->has_vnet_hdr = !!val;
2391 return 0;
2392 }
Scott McMillan614f60f2010-06-02 05:53:56 -07002393 case PACKET_TIMESTAMP:
2394 {
2395 int val;
2396
2397 if (optlen != sizeof(val))
2398 return -EINVAL;
2399 if (copy_from_user(&val, optval, sizeof(val)))
2400 return -EFAULT;
2401
2402 po->tp_tstamp = val;
2403 return 0;
2404 }
David S. Millerdc99f602011-07-05 01:45:05 -07002405 case PACKET_FANOUT:
2406 {
2407 int val;
2408
2409 if (optlen != sizeof(val))
2410 return -EINVAL;
2411 if (copy_from_user(&val, optval, sizeof(val)))
2412 return -EFAULT;
2413
2414 return fanout_add(sk, val & 0xffff, val >> 16);
2415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 default:
2417 return -ENOPROTOOPT;
2418 }
2419}
2420
2421static int packet_getsockopt(struct socket *sock, int level, int optname,
2422 char __user *optval, int __user *optlen)
2423{
2424 int len;
Herbert Xu8dc41942007-02-04 23:31:32 -08002425 int val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 struct sock *sk = sock->sk;
2427 struct packet_sock *po = pkt_sk(sk);
Herbert Xu8dc41942007-02-04 23:31:32 -08002428 void *data;
2429 struct tpacket_stats st;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430
2431 if (level != SOL_PACKET)
2432 return -ENOPROTOOPT;
2433
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08002434 if (get_user(len, optlen))
2435 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
2437 if (len < 0)
2438 return -EINVAL;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002439
Johann Baudy69e3c752009-05-18 22:11:22 -07002440 switch (optname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 case PACKET_STATISTICS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 if (len > sizeof(struct tpacket_stats))
2443 len = sizeof(struct tpacket_stats);
2444 spin_lock_bh(&sk->sk_receive_queue.lock);
2445 st = po->stats;
2446 memset(&po->stats, 0, sizeof(st));
2447 spin_unlock_bh(&sk->sk_receive_queue.lock);
2448 st.tp_packets += st.tp_drops;
2449
Herbert Xu8dc41942007-02-04 23:31:32 -08002450 data = &st;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 break;
Herbert Xu8dc41942007-02-04 23:31:32 -08002452 case PACKET_AUXDATA:
2453 if (len > sizeof(int))
2454 len = sizeof(int);
2455 val = po->auxdata;
2456
2457 data = &val;
2458 break;
Peter P. Waskiewicz Jr80feaac2007-04-20 16:05:39 -07002459 case PACKET_ORIGDEV:
2460 if (len > sizeof(int))
2461 len = sizeof(int);
2462 val = po->origdev;
2463
2464 data = &val;
2465 break;
Sridhar Samudralabfd5f4a2010-02-04 20:24:10 -08002466 case PACKET_VNET_HDR:
2467 if (len > sizeof(int))
2468 len = sizeof(int);
2469 val = po->has_vnet_hdr;
2470
2471 data = &val;
2472 break;
Patrick McHardybbd6ef82008-07-14 22:50:15 -07002473 case PACKET_VERSION:
2474 if (len > sizeof(int))
2475 len = sizeof(int);
2476 val = po->tp_version;
2477 data = &val;
2478 break;
2479 case PACKET_HDRLEN:
2480 if (len > sizeof(int))
2481 len = sizeof(int);
2482 if (copy_from_user(&val, optval, len))
2483 return -EFAULT;
2484 switch (val) {
2485 case TPACKET_V1:
2486 val = sizeof(struct tpacket_hdr);
2487 break;
2488 case TPACKET_V2:
2489 val = sizeof(struct tpacket2_hdr);
2490 break;
2491 default:
2492 return -EINVAL;
2493 }
2494 data = &val;
2495 break;
Patrick McHardy89133362008-07-18 18:05:19 -07002496 case PACKET_RESERVE:
2497 if (len > sizeof(unsigned int))
2498 len = sizeof(unsigned int);
2499 val = po->tp_reserve;
2500 data = &val;
2501 break;
Johann Baudy69e3c752009-05-18 22:11:22 -07002502 case PACKET_LOSS:
2503 if (len > sizeof(unsigned int))
2504 len = sizeof(unsigned int);
2505 val = po->tp_loss;
2506 data = &val;
2507 break;
Scott McMillan614f60f2010-06-02 05:53:56 -07002508 case PACKET_TIMESTAMP:
2509 if (len > sizeof(int))
2510 len = sizeof(int);
2511 val = po->tp_tstamp;
2512 data = &val;
2513 break;
David S. Millerdc99f602011-07-05 01:45:05 -07002514 case PACKET_FANOUT:
2515 if (len > sizeof(int))
2516 len = sizeof(int);
2517 val = (po->fanout ?
2518 ((u32)po->fanout->id |
2519 ((u32)po->fanout->type << 16)) :
2520 0);
2521 data = &val;
2522 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 default:
2524 return -ENOPROTOOPT;
2525 }
2526
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08002527 if (put_user(len, optlen))
2528 return -EFAULT;
Herbert Xu8dc41942007-02-04 23:31:32 -08002529 if (copy_to_user(optval, data, len))
2530 return -EFAULT;
Kris Katterjohn8ae55f02006-01-23 16:28:02 -08002531 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532}
2533
2534
2535static int packet_notifier(struct notifier_block *this, unsigned long msg, void *data)
2536{
2537 struct sock *sk;
2538 struct hlist_node *node;
Jason Lunzad930652007-02-20 23:19:54 -08002539 struct net_device *dev = data;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002540 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541
stephen hemminger808f5112010-02-22 07:57:18 +00002542 rcu_read_lock();
2543 sk_for_each_rcu(sk, node, &net->packet.sklist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 struct packet_sock *po = pkt_sk(sk);
2545
2546 switch (msg) {
2547 case NETDEV_UNREGISTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 if (po->mclist)
2549 packet_dev_mclist(dev, po->mclist, -1);
David S. Millera2efcfa2007-05-29 13:12:50 -07002550 /* fallthrough */
2551
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 case NETDEV_DOWN:
2553 if (dev->ifindex == po->ifindex) {
2554 spin_lock(&po->bind_lock);
2555 if (po->running) {
David S. Millerce06b032011-07-04 01:44:29 -07002556 __unregister_prot_hook(sk, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 sk->sk_err = ENETDOWN;
2558 if (!sock_flag(sk, SOCK_DEAD))
2559 sk->sk_error_report(sk);
2560 }
2561 if (msg == NETDEV_UNREGISTER) {
2562 po->ifindex = -1;
Ben Greear160ff182011-06-01 07:18:52 +00002563 if (po->prot_hook.dev)
2564 dev_put(po->prot_hook.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 po->prot_hook.dev = NULL;
2566 }
2567 spin_unlock(&po->bind_lock);
2568 }
2569 break;
2570 case NETDEV_UP:
stephen hemminger808f5112010-02-22 07:57:18 +00002571 if (dev->ifindex == po->ifindex) {
2572 spin_lock(&po->bind_lock);
David S. Millerce06b032011-07-04 01:44:29 -07002573 if (po->num)
2574 register_prot_hook(sk);
stephen hemminger808f5112010-02-22 07:57:18 +00002575 spin_unlock(&po->bind_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 break;
2578 }
2579 }
stephen hemminger808f5112010-02-22 07:57:18 +00002580 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 return NOTIFY_DONE;
2582}
2583
2584
2585static int packet_ioctl(struct socket *sock, unsigned int cmd,
2586 unsigned long arg)
2587{
2588 struct sock *sk = sock->sk;
2589
Johann Baudy69e3c752009-05-18 22:11:22 -07002590 switch (cmd) {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002591 case SIOCOUTQ:
2592 {
2593 int amount = sk_wmem_alloc_get(sk);
Eric Dumazet31e6d362009-06-17 19:05:41 -07002594
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002595 return put_user(amount, (int __user *)arg);
2596 }
2597 case SIOCINQ:
2598 {
2599 struct sk_buff *skb;
2600 int amount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002602 spin_lock_bh(&sk->sk_receive_queue.lock);
2603 skb = skb_peek(&sk->sk_receive_queue);
2604 if (skb)
2605 amount = skb->len;
2606 spin_unlock_bh(&sk->sk_receive_queue.lock);
2607 return put_user(amount, (int __user *)arg);
2608 }
2609 case SIOCGSTAMP:
2610 return sock_get_timestamp(sk, (struct timeval __user *)arg);
2611 case SIOCGSTAMPNS:
2612 return sock_get_timestampns(sk, (struct timespec __user *)arg);
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002613
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614#ifdef CONFIG_INET
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002615 case SIOCADDRT:
2616 case SIOCDELRT:
2617 case SIOCDARP:
2618 case SIOCGARP:
2619 case SIOCSARP:
2620 case SIOCGIFADDR:
2621 case SIOCSIFADDR:
2622 case SIOCGIFBRDADDR:
2623 case SIOCSIFBRDADDR:
2624 case SIOCGIFNETMASK:
2625 case SIOCSIFNETMASK:
2626 case SIOCGIFDSTADDR:
2627 case SIOCSIFDSTADDR:
2628 case SIOCSIFFLAGS:
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002629 return inet_dgram_ops.ioctl(sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630#endif
2631
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002632 default:
2633 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 }
2635 return 0;
2636}
2637
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002638static unsigned int packet_poll(struct file *file, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 poll_table *wait)
2640{
2641 struct sock *sk = sock->sk;
2642 struct packet_sock *po = pkt_sk(sk);
2643 unsigned int mask = datagram_poll(file, sock, wait);
2644
2645 spin_lock_bh(&sk->sk_receive_queue.lock);
Johann Baudy69e3c752009-05-18 22:11:22 -07002646 if (po->rx_ring.pg_vec) {
2647 if (!packet_previous_frame(po, &po->rx_ring, TP_STATUS_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 mask |= POLLIN | POLLRDNORM;
2649 }
2650 spin_unlock_bh(&sk->sk_receive_queue.lock);
Johann Baudy69e3c752009-05-18 22:11:22 -07002651 spin_lock_bh(&sk->sk_write_queue.lock);
2652 if (po->tx_ring.pg_vec) {
2653 if (packet_current_frame(po, &po->tx_ring, TP_STATUS_AVAILABLE))
2654 mask |= POLLOUT | POLLWRNORM;
2655 }
2656 spin_unlock_bh(&sk->sk_write_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 return mask;
2658}
2659
2660
2661/* Dirty? Well, I still did not learn better way to account
2662 * for user mmaps.
2663 */
2664
2665static void packet_mm_open(struct vm_area_struct *vma)
2666{
2667 struct file *file = vma->vm_file;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002668 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002670
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 if (sk)
2672 atomic_inc(&pkt_sk(sk)->mapped);
2673}
2674
2675static void packet_mm_close(struct vm_area_struct *vma)
2676{
2677 struct file *file = vma->vm_file;
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002678 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002680
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 if (sk)
2682 atomic_dec(&pkt_sk(sk)->mapped);
2683}
2684
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002685static const struct vm_operations_struct packet_mmap_ops = {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002686 .open = packet_mm_open,
2687 .close = packet_mm_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688};
2689
Neil Horman0e3125c2010-11-16 10:26:47 -08002690static void free_pg_vec(struct pgv *pg_vec, unsigned int order,
2691 unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692{
2693 int i;
2694
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002695 for (i = 0; i < len; i++) {
Neil Horman0e3125c2010-11-16 10:26:47 -08002696 if (likely(pg_vec[i].buffer)) {
Changli Gaoc56b4d92010-12-01 02:52:57 +00002697 if (is_vmalloc_addr(pg_vec[i].buffer))
Neil Horman0e3125c2010-11-16 10:26:47 -08002698 vfree(pg_vec[i].buffer);
2699 else
2700 free_pages((unsigned long)pg_vec[i].buffer,
2701 order);
2702 pg_vec[i].buffer = NULL;
2703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 }
2705 kfree(pg_vec);
2706}
2707
Changli Gaoc56b4d92010-12-01 02:52:57 +00002708static inline char *alloc_one_pg_vec_page(unsigned long order)
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002709{
Neil Horman0e3125c2010-11-16 10:26:47 -08002710 char *buffer = NULL;
2711 gfp_t gfp_flags = GFP_KERNEL | __GFP_COMP |
2712 __GFP_ZERO | __GFP_NOWARN | __GFP_NORETRY;
Eric Dumazet719bfea2009-04-15 03:39:52 -07002713
Neil Horman0e3125c2010-11-16 10:26:47 -08002714 buffer = (char *) __get_free_pages(gfp_flags, order);
2715
2716 if (buffer)
2717 return buffer;
2718
2719 /*
2720 * __get_free_pages failed, fall back to vmalloc
2721 */
Eric Dumazetbbce5a52010-11-20 07:31:54 +00002722 buffer = vzalloc((1 << order) * PAGE_SIZE);
Neil Horman0e3125c2010-11-16 10:26:47 -08002723
2724 if (buffer)
2725 return buffer;
2726
2727 /*
2728 * vmalloc failed, lets dig into swap here
2729 */
Neil Horman0e3125c2010-11-16 10:26:47 -08002730 gfp_flags &= ~__GFP_NORETRY;
2731 buffer = (char *)__get_free_pages(gfp_flags, order);
2732 if (buffer)
2733 return buffer;
2734
2735 /*
2736 * complete and utter failure
2737 */
2738 return NULL;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002739}
2740
Neil Horman0e3125c2010-11-16 10:26:47 -08002741static struct pgv *alloc_pg_vec(struct tpacket_req *req, int order)
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002742{
2743 unsigned int block_nr = req->tp_block_nr;
Neil Horman0e3125c2010-11-16 10:26:47 -08002744 struct pgv *pg_vec;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002745 int i;
2746
Neil Horman0e3125c2010-11-16 10:26:47 -08002747 pg_vec = kcalloc(block_nr, sizeof(struct pgv), GFP_KERNEL);
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002748 if (unlikely(!pg_vec))
2749 goto out;
2750
2751 for (i = 0; i < block_nr; i++) {
Changli Gaoc56b4d92010-12-01 02:52:57 +00002752 pg_vec[i].buffer = alloc_one_pg_vec_page(order);
Neil Horman0e3125c2010-11-16 10:26:47 -08002753 if (unlikely(!pg_vec[i].buffer))
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002754 goto out_free_pgvec;
2755 }
2756
2757out:
2758 return pg_vec;
2759
2760out_free_pgvec:
2761 free_pg_vec(pg_vec, order, block_nr);
2762 pg_vec = NULL;
2763 goto out;
2764}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
Johann Baudy69e3c752009-05-18 22:11:22 -07002766static int packet_set_ring(struct sock *sk, struct tpacket_req *req,
2767 int closing, int tx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768{
Neil Horman0e3125c2010-11-16 10:26:47 -08002769 struct pgv *pg_vec = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 struct packet_sock *po = pkt_sk(sk);
Al Viro0e11c912006-11-08 00:26:29 -08002771 int was_running, order = 0;
Johann Baudy69e3c752009-05-18 22:11:22 -07002772 struct packet_ring_buffer *rb;
2773 struct sk_buff_head *rb_queue;
Al Viro0e11c912006-11-08 00:26:29 -08002774 __be16 num;
Johann Baudy69e3c752009-05-18 22:11:22 -07002775 int err;
2776
2777 rb = tx_ring ? &po->tx_ring : &po->rx_ring;
2778 rb_queue = tx_ring ? &sk->sk_write_queue : &sk->sk_receive_queue;
2779
2780 err = -EBUSY;
2781 if (!closing) {
2782 if (atomic_read(&po->mapped))
2783 goto out;
2784 if (atomic_read(&rb->pending))
2785 goto out;
2786 }
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002787
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 if (req->tp_block_nr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 /* Sanity tests and some calculations */
Johann Baudy69e3c752009-05-18 22:11:22 -07002790 err = -EBUSY;
2791 if (unlikely(rb->pg_vec))
2792 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
Patrick McHardybbd6ef82008-07-14 22:50:15 -07002794 switch (po->tp_version) {
2795 case TPACKET_V1:
2796 po->tp_hdrlen = TPACKET_HDRLEN;
2797 break;
2798 case TPACKET_V2:
2799 po->tp_hdrlen = TPACKET2_HDRLEN;
2800 break;
2801 }
2802
Johann Baudy69e3c752009-05-18 22:11:22 -07002803 err = -EINVAL;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002804 if (unlikely((int)req->tp_block_size <= 0))
Johann Baudy69e3c752009-05-18 22:11:22 -07002805 goto out;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002806 if (unlikely(req->tp_block_size & (PAGE_SIZE - 1)))
Johann Baudy69e3c752009-05-18 22:11:22 -07002807 goto out;
Patrick McHardy89133362008-07-18 18:05:19 -07002808 if (unlikely(req->tp_frame_size < po->tp_hdrlen +
Johann Baudy69e3c752009-05-18 22:11:22 -07002809 po->tp_reserve))
2810 goto out;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002811 if (unlikely(req->tp_frame_size & (TPACKET_ALIGNMENT - 1)))
Johann Baudy69e3c752009-05-18 22:11:22 -07002812 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813
Johann Baudy69e3c752009-05-18 22:11:22 -07002814 rb->frames_per_block = req->tp_block_size/req->tp_frame_size;
2815 if (unlikely(rb->frames_per_block <= 0))
2816 goto out;
2817 if (unlikely((rb->frames_per_block * req->tp_block_nr) !=
2818 req->tp_frame_nr))
2819 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820
2821 err = -ENOMEM;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002822 order = get_order(req->tp_block_size);
2823 pg_vec = alloc_pg_vec(req, order);
2824 if (unlikely(!pg_vec))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 goto out;
Johann Baudy69e3c752009-05-18 22:11:22 -07002826 }
2827 /* Done */
2828 else {
2829 err = -EINVAL;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002830 if (unlikely(req->tp_frame_nr))
Johann Baudy69e3c752009-05-18 22:11:22 -07002831 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 }
2833
2834 lock_sock(sk);
2835
2836 /* Detach socket from network */
2837 spin_lock(&po->bind_lock);
2838 was_running = po->running;
2839 num = po->num;
2840 if (was_running) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 po->num = 0;
David S. Millerce06b032011-07-04 01:44:29 -07002842 __unregister_prot_hook(sk, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 }
2844 spin_unlock(&po->bind_lock);
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002845
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 synchronize_net();
2847
2848 err = -EBUSY;
Herbert Xu905db442009-01-30 14:12:06 -08002849 mutex_lock(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 if (closing || atomic_read(&po->mapped) == 0) {
2851 err = 0;
Johann Baudy69e3c752009-05-18 22:11:22 -07002852 spin_lock_bh(&rb_queue->lock);
Changli Gaoc053fd92010-12-10 16:02:20 -08002853 swap(rb->pg_vec, pg_vec);
Johann Baudy69e3c752009-05-18 22:11:22 -07002854 rb->frame_max = (req->tp_frame_nr - 1);
2855 rb->head = 0;
2856 rb->frame_size = req->tp_frame_size;
2857 spin_unlock_bh(&rb_queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
Changli Gaoc053fd92010-12-10 16:02:20 -08002859 swap(rb->pg_vec_order, order);
2860 swap(rb->pg_vec_len, req->tp_block_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861
Johann Baudy69e3c752009-05-18 22:11:22 -07002862 rb->pg_vec_pages = req->tp_block_size/PAGE_SIZE;
2863 po->prot_hook.func = (po->rx_ring.pg_vec) ?
2864 tpacket_rcv : packet_rcv;
2865 skb_queue_purge(rb_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 if (atomic_read(&po->mapped))
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002867 pr_err("packet_mmap: vma is busy: %d\n",
2868 atomic_read(&po->mapped));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 }
Herbert Xu905db442009-01-30 14:12:06 -08002870 mutex_unlock(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871
2872 spin_lock(&po->bind_lock);
David S. Millerce06b032011-07-04 01:44:29 -07002873 if (was_running) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 po->num = num;
David S. Millerce06b032011-07-04 01:44:29 -07002875 register_prot_hook(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 }
2877 spin_unlock(&po->bind_lock);
2878
2879 release_sock(sk);
2880
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 if (pg_vec)
2882 free_pg_vec(pg_vec, order, req->tp_block_nr);
2883out:
2884 return err;
2885}
2886
Johann Baudy69e3c752009-05-18 22:11:22 -07002887static int packet_mmap(struct file *file, struct socket *sock,
2888 struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889{
2890 struct sock *sk = sock->sk;
2891 struct packet_sock *po = pkt_sk(sk);
Johann Baudy69e3c752009-05-18 22:11:22 -07002892 unsigned long size, expected_size;
2893 struct packet_ring_buffer *rb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 unsigned long start;
2895 int err = -EINVAL;
2896 int i;
2897
2898 if (vma->vm_pgoff)
2899 return -EINVAL;
2900
Herbert Xu905db442009-01-30 14:12:06 -08002901 mutex_lock(&po->pg_vec_lock);
Johann Baudy69e3c752009-05-18 22:11:22 -07002902
2903 expected_size = 0;
2904 for (rb = &po->rx_ring; rb <= &po->tx_ring; rb++) {
2905 if (rb->pg_vec) {
2906 expected_size += rb->pg_vec_len
2907 * rb->pg_vec_pages
2908 * PAGE_SIZE;
2909 }
2910 }
2911
2912 if (expected_size == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 goto out;
Johann Baudy69e3c752009-05-18 22:11:22 -07002914
2915 size = vma->vm_end - vma->vm_start;
2916 if (size != expected_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 goto out;
2918
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 start = vma->vm_start;
Johann Baudy69e3c752009-05-18 22:11:22 -07002920 for (rb = &po->rx_ring; rb <= &po->tx_ring; rb++) {
2921 if (rb->pg_vec == NULL)
2922 continue;
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002923
Johann Baudy69e3c752009-05-18 22:11:22 -07002924 for (i = 0; i < rb->pg_vec_len; i++) {
Neil Horman0e3125c2010-11-16 10:26:47 -08002925 struct page *page;
2926 void *kaddr = rb->pg_vec[i].buffer;
Johann Baudy69e3c752009-05-18 22:11:22 -07002927 int pg_num;
2928
Changli Gaoc56b4d92010-12-01 02:52:57 +00002929 for (pg_num = 0; pg_num < rb->pg_vec_pages; pg_num++) {
2930 page = pgv_to_page(kaddr);
Johann Baudy69e3c752009-05-18 22:11:22 -07002931 err = vm_insert_page(vma, start, page);
2932 if (unlikely(err))
2933 goto out;
2934 start += PAGE_SIZE;
Neil Horman0e3125c2010-11-16 10:26:47 -08002935 kaddr += PAGE_SIZE;
Johann Baudy69e3c752009-05-18 22:11:22 -07002936 }
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002937 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 }
Johann Baudy69e3c752009-05-18 22:11:22 -07002939
David S. Miller4ebf0ae2005-12-06 16:38:35 -08002940 atomic_inc(&po->mapped);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 vma->vm_ops = &packet_mmap_ops;
2942 err = 0;
2943
2944out:
Herbert Xu905db442009-01-30 14:12:06 -08002945 mutex_unlock(&po->pg_vec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 return err;
2947}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08002949static const struct proto_ops packet_ops_spkt = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 .family = PF_PACKET,
2951 .owner = THIS_MODULE,
2952 .release = packet_release,
2953 .bind = packet_bind_spkt,
2954 .connect = sock_no_connect,
2955 .socketpair = sock_no_socketpair,
2956 .accept = sock_no_accept,
2957 .getname = packet_getname_spkt,
2958 .poll = datagram_poll,
2959 .ioctl = packet_ioctl,
2960 .listen = sock_no_listen,
2961 .shutdown = sock_no_shutdown,
2962 .setsockopt = sock_no_setsockopt,
2963 .getsockopt = sock_no_getsockopt,
2964 .sendmsg = packet_sendmsg_spkt,
2965 .recvmsg = packet_recvmsg,
2966 .mmap = sock_no_mmap,
2967 .sendpage = sock_no_sendpage,
2968};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08002970static const struct proto_ops packet_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 .family = PF_PACKET,
2972 .owner = THIS_MODULE,
2973 .release = packet_release,
2974 .bind = packet_bind,
2975 .connect = sock_no_connect,
2976 .socketpair = sock_no_socketpair,
2977 .accept = sock_no_accept,
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09002978 .getname = packet_getname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 .poll = packet_poll,
2980 .ioctl = packet_ioctl,
2981 .listen = sock_no_listen,
2982 .shutdown = sock_no_shutdown,
2983 .setsockopt = packet_setsockopt,
2984 .getsockopt = packet_getsockopt,
2985 .sendmsg = packet_sendmsg,
2986 .recvmsg = packet_recvmsg,
2987 .mmap = packet_mmap,
2988 .sendpage = sock_no_sendpage,
2989};
2990
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00002991static const struct net_proto_family packet_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 .family = PF_PACKET,
2993 .create = packet_create,
2994 .owner = THIS_MODULE,
2995};
2996
2997static struct notifier_block packet_netdev_notifier = {
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00002998 .notifier_call = packet_notifier,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999};
3000
3001#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002
3003static void *packet_seq_start(struct seq_file *seq, loff_t *pos)
stephen hemminger808f5112010-02-22 07:57:18 +00003004 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005{
Denis V. Luneve372c412007-11-19 22:31:54 -08003006 struct net *net = seq_file_net(seq);
stephen hemminger808f5112010-02-22 07:57:18 +00003007
3008 rcu_read_lock();
3009 return seq_hlist_start_head_rcu(&net->packet.sklist, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010}
3011
3012static void *packet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3013{
Herbert Xu1bf40952007-12-16 14:04:02 -08003014 struct net *net = seq_file_net(seq);
stephen hemminger808f5112010-02-22 07:57:18 +00003015 return seq_hlist_next_rcu(v, &net->packet.sklist, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016}
3017
3018static void packet_seq_stop(struct seq_file *seq, void *v)
stephen hemminger808f5112010-02-22 07:57:18 +00003019 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020{
stephen hemminger808f5112010-02-22 07:57:18 +00003021 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022}
3023
YOSHIFUJI Hideaki1ce4f282007-02-09 23:25:10 +09003024static int packet_seq_show(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025{
3026 if (v == SEQ_START_TOKEN)
3027 seq_puts(seq, "sk RefCnt Type Proto Iface R Rmem User Inode\n");
3028 else {
Li Zefanb7ceabd2010-02-08 23:19:29 +00003029 struct sock *s = sk_entry(v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 const struct packet_sock *po = pkt_sk(s);
3031
3032 seq_printf(seq,
Dan Rosenberg71338aa2011-05-23 12:17:35 +00003033 "%pK %-6d %-4d %04x %-5d %1d %-6u %-6u %-6lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 s,
3035 atomic_read(&s->sk_refcnt),
3036 s->sk_type,
3037 ntohs(po->num),
3038 po->ifindex,
3039 po->running,
3040 atomic_read(&s->sk_rmem_alloc),
3041 sock_i_uid(s),
Eric Dumazet40d4e3d2009-07-21 21:57:59 +00003042 sock_i_ino(s));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 }
3044
3045 return 0;
3046}
3047
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003048static const struct seq_operations packet_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 .start = packet_seq_start,
3050 .next = packet_seq_next,
3051 .stop = packet_seq_stop,
3052 .show = packet_seq_show,
3053};
3054
3055static int packet_seq_open(struct inode *inode, struct file *file)
3056{
Denis V. Luneve372c412007-11-19 22:31:54 -08003057 return seq_open_net(inode, file, &packet_seq_ops,
3058 sizeof(struct seq_net_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059}
3060
Arjan van de Venda7071d2007-02-12 00:55:36 -08003061static const struct file_operations packet_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 .owner = THIS_MODULE,
3063 .open = packet_seq_open,
3064 .read = seq_read,
3065 .llseek = seq_lseek,
Denis V. Luneve372c412007-11-19 22:31:54 -08003066 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067};
3068
3069#endif
3070
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003071static int __net_init packet_net_init(struct net *net)
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08003072{
stephen hemminger808f5112010-02-22 07:57:18 +00003073 spin_lock_init(&net->packet.sklist_lock);
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -08003074 INIT_HLIST_HEAD(&net->packet.sklist);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08003075
3076 if (!proc_net_fops_create(net, "packet", 0, &packet_seq_fops))
3077 return -ENOMEM;
3078
3079 return 0;
3080}
3081
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003082static void __net_exit packet_net_exit(struct net *net)
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08003083{
3084 proc_net_remove(net, "packet");
3085}
3086
3087static struct pernet_operations packet_net_ops = {
3088 .init = packet_net_init,
3089 .exit = packet_net_exit,
3090};
3091
3092
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093static void __exit packet_exit(void)
3094{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 unregister_netdevice_notifier(&packet_netdev_notifier);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08003096 unregister_pernet_subsys(&packet_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 sock_unregister(PF_PACKET);
3098 proto_unregister(&packet_proto);
3099}
3100
3101static int __init packet_init(void)
3102{
3103 int rc = proto_register(&packet_proto, 0);
3104
3105 if (rc != 0)
3106 goto out;
3107
3108 sock_register(&packet_family_ops);
Denis V. Lunevd12d01d2007-11-19 22:28:35 -08003109 register_pernet_subsys(&packet_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 register_netdevice_notifier(&packet_netdev_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111out:
3112 return rc;
3113}
3114
3115module_init(packet_init);
3116module_exit(packet_exit);
3117MODULE_LICENSE("GPL");
3118MODULE_ALIAS_NETPROTO(PF_PACKET);