af_packet.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:42k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * INET An implementation of the TCP/IP protocol suite for the LINUX
  3.  * operating system.  INET is implemented using the  BSD Socket
  4.  * interface as the means of communication with the user level.
  5.  *
  6.  * PACKET - implements raw packet sockets.
  7.  *
  8.  * Version: $Id: af_packet.c,v 1.58 2001/11/28 21:02:10 davem Exp $
  9.  *
  10.  * Authors: Ross Biro, <bir7@leland.Stanford.Edu>
  11.  * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  12.  * Alan Cox, <gw4pts@gw4pts.ampr.org>
  13.  *
  14.  * Fixes:
  15.  * Alan Cox : verify_area() now used correctly
  16.  * Alan Cox : new skbuff lists, look ma no backlogs!
  17.  * Alan Cox : tidied skbuff lists.
  18.  * Alan Cox : Now uses generic datagram routines I
  19.  * added. Also fixed the peek/read crash
  20.  * from all old Linux datagram code.
  21.  * Alan Cox : Uses the improved datagram code.
  22.  * Alan Cox : Added NULL's for socket options.
  23.  * Alan Cox : Re-commented the code.
  24.  * Alan Cox : Use new kernel side addressing
  25.  * Rob Janssen : Correct MTU usage.
  26.  * Dave Platt : Counter leaks caused by incorrect
  27.  * interrupt locking and some slightly
  28.  * dubious gcc output. Can you read
  29.  * compiler: it said _VOLATILE_
  30.  * Richard Kooijman : Timestamp fixes.
  31.  * Alan Cox : New buffers. Use sk->mac.raw.
  32.  * Alan Cox : sendmsg/recvmsg support.
  33.  * Alan Cox : Protocol setting support
  34.  * Alexey Kuznetsov : Untied from IPv4 stack.
  35.  * Cyrus Durgin : Fixed kerneld for kmod.
  36.  * Michal Ostrowski        :       Module initialization cleanup.
  37.  *
  38.  * This program is free software; you can redistribute it and/or
  39.  * modify it under the terms of the GNU General Public License
  40.  * as published by the Free Software Foundation; either version
  41.  * 2 of the License, or (at your option) any later version.
  42.  *
  43.  */
  44.  
  45. #include <linux/config.h>
  46. #include <linux/types.h>
  47. #include <linux/sched.h>
  48. #include <linux/mm.h>
  49. #include <linux/fcntl.h>
  50. #include <linux/socket.h>
  51. #include <linux/in.h>
  52. #include <linux/inet.h>
  53. #include <linux/netdevice.h>
  54. #include <linux/if_packet.h>
  55. #include <linux/wireless.h>
  56. #include <linux/kmod.h>
  57. #include <net/ip.h>
  58. #include <net/protocol.h>
  59. #include <linux/skbuff.h>
  60. #include <net/sock.h>
  61. #include <linux/errno.h>
  62. #include <linux/timer.h>
  63. #include <asm/system.h>
  64. #include <asm/uaccess.h>
  65. #include <asm/ioctls.h>
  66. #include <linux/proc_fs.h>
  67. #include <linux/poll.h>
  68. #include <linux/module.h>
  69. #include <linux/init.h>
  70. #include <linux/if_bridge.h>
  71. #ifdef CONFIG_NET_DIVERT
  72. #include <linux/divert.h>
  73. #endif /* CONFIG_NET_DIVERT */
  74. #ifdef CONFIG_INET
  75. #include <net/inet_common.h>
  76. #endif
  77. #ifdef CONFIG_DLCI
  78. extern int dlci_ioctl(unsigned int, void*);
  79. #endif
  80. #define CONFIG_SOCK_PACKET 1
  81. /*
  82.    Proposed replacement for SIOC{ADD,DEL}MULTI and
  83.    IFF_PROMISC, IFF_ALLMULTI flags.
  84.    It is more expensive, but I believe,
  85.    it is really correct solution: reentereble, safe and fault tolerant.
  86.    IFF_PROMISC/IFF_ALLMULTI/SIOC{ADD/DEL}MULTI are faked by keeping
  87.    reference count and global flag, so that real status is
  88.    (gflag|(count != 0)), so that we can use obsolete faulty interface
  89.    not harming clever users.
  90.  */
  91. #define CONFIG_PACKET_MULTICAST 1
  92. /*
  93.    Assumptions:
  94.    - if device has no dev->hard_header routine, it adds and removes ll header
  95.      inside itself. In this case ll header is invisible outside of device,
  96.      but higher levels still should reserve dev->hard_header_len.
  97.      Some devices are enough clever to reallocate skb, when header
  98.      will not fit to reserved space (tunnel), another ones are silly
  99.      (PPP).
  100.    - packet socket receives packets with pulled ll header,
  101.      so that SOCK_RAW should push it back.
  102. On receive:
  103. -----------
  104. Incoming, dev->hard_header!=NULL
  105.    mac.raw -> ll header
  106.    data    -> data
  107. Outgoing, dev->hard_header!=NULL
  108.    mac.raw -> ll header
  109.    data    -> ll header
  110. Incoming, dev->hard_header==NULL
  111.    mac.raw -> UNKNOWN position. It is very likely, that it points to ll header.
  112.               PPP makes it, that is wrong, because introduce assymetry
  113.       between rx and tx paths.
  114.    data    -> data
  115. Outgoing, dev->hard_header==NULL
  116.    mac.raw -> data. ll header is still not built!
  117.    data    -> data
  118. Resume
  119.   If dev->hard_header==NULL we are unlikely to restore sensible ll header.
  120. On transmit:
  121. ------------
  122. dev->hard_header != NULL
  123.    mac.raw -> ll header
  124.    data    -> ll header
  125. dev->hard_header == NULL (ll header is added by device, we cannot control it)
  126.    mac.raw -> data
  127.    data -> data
  128.    We should set nh.raw on output to correct posistion,
  129.    packet classifier depends on it.
  130.  */
  131. /* List of all packet sockets. */
  132. static struct sock * packet_sklist;
  133. static rwlock_t packet_sklist_lock = RW_LOCK_UNLOCKED;
  134. atomic_t packet_socks_nr;
  135. /* Private packet socket structures. */
  136. #ifdef CONFIG_PACKET_MULTICAST
  137. struct packet_mclist
  138. {
  139. struct packet_mclist *next;
  140. int ifindex;
  141. int count;
  142. unsigned short type;
  143. unsigned short alen;
  144. unsigned char addr[8];
  145. };
  146. #endif
  147. #ifdef CONFIG_PACKET_MMAP
  148. static int packet_set_ring(struct sock *sk, struct tpacket_req *req, int closing);
  149. #endif
  150. static void packet_flush_mclist(struct sock *sk);
  151. struct packet_opt
  152. {
  153. struct packet_type prot_hook;
  154. spinlock_t bind_lock;
  155. char running; /* prot_hook is attached*/
  156. int ifindex; /* bound device */
  157. struct tpacket_stats stats;
  158. #ifdef CONFIG_PACKET_MULTICAST
  159. struct packet_mclist *mclist;
  160. #endif
  161. #ifdef CONFIG_PACKET_MMAP
  162. atomic_t mapped;
  163. unsigned long *pg_vec;
  164. unsigned int pg_vec_order;
  165. unsigned int pg_vec_pages;
  166. unsigned int pg_vec_len;
  167. struct tpacket_hdr **iovec;
  168. unsigned int frame_size;
  169. unsigned int iovmax;
  170. unsigned int head;
  171. int copy_thresh;
  172. #endif
  173. };
  174. void packet_sock_destruct(struct sock *sk)
  175. {
  176. BUG_TRAP(atomic_read(&sk->rmem_alloc)==0);
  177. BUG_TRAP(atomic_read(&sk->wmem_alloc)==0);
  178. if (!sk->dead) {
  179. printk("Attempt to release alive packet socket: %pn", sk);
  180. return;
  181. }
  182. if (sk->protinfo.destruct_hook)
  183. kfree(sk->protinfo.destruct_hook);
  184. atomic_dec(&packet_socks_nr);
  185. #ifdef PACKET_REFCNT_DEBUG
  186. printk(KERN_DEBUG "PACKET socket %p is free, %d are aliven", sk, atomic_read(&packet_socks_nr));
  187. #endif
  188. MOD_DEC_USE_COUNT;
  189. }
  190. extern struct proto_ops packet_ops;
  191. #ifdef CONFIG_SOCK_PACKET
  192. extern struct proto_ops packet_ops_spkt;
  193. static int packet_rcv_spkt(struct sk_buff *skb, struct net_device *dev,  struct packet_type *pt)
  194. {
  195. struct sock *sk;
  196. struct sockaddr_pkt *spkt;
  197. /*
  198.  * When we registered the protocol we saved the socket in the data
  199.  * field for just this event.
  200.  */
  201. sk = (struct sock *) pt->data;
  202. /*
  203.  * Yank back the headers [hope the device set this
  204.  * right or kerboom...]
  205.  *
  206.  * Incoming packets have ll header pulled,
  207.  * push it back.
  208.  *
  209.  * For outgoing ones skb->data == skb->mac.raw
  210.  * so that this procedure is noop.
  211.  */
  212. if (skb->pkt_type == PACKET_LOOPBACK)
  213. goto out;
  214. if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)
  215. goto oom;
  216. spkt = (struct sockaddr_pkt*)skb->cb;
  217. skb_push(skb, skb->data-skb->mac.raw);
  218. /*
  219.  * The SOCK_PACKET socket receives _all_ frames.
  220.  */
  221. spkt->spkt_family = dev->type;
  222. strncpy(spkt->spkt_device, dev->name, sizeof(spkt->spkt_device));
  223. spkt->spkt_protocol = skb->protocol;
  224. /*
  225.  * Charge the memory to the socket. This is done specifically
  226.  * to prevent sockets using all the memory up.
  227.  */
  228. if (sock_queue_rcv_skb(sk,skb) == 0)
  229. return 0;
  230. out:
  231. kfree_skb(skb);
  232. oom:
  233. return 0;
  234. }
  235. /*
  236.  * Output a raw packet to a device layer. This bypasses all the other
  237.  * protocol layers and you must therefore supply it with a complete frame
  238.  */
  239.  
  240. static int packet_sendmsg_spkt(struct socket *sock, struct msghdr *msg, int len,
  241.        struct scm_cookie *scm)
  242. {
  243. struct sock *sk = sock->sk;
  244. struct sockaddr_pkt *saddr=(struct sockaddr_pkt *)msg->msg_name;
  245. struct sk_buff *skb;
  246. struct net_device *dev;
  247. unsigned short proto=0;
  248. int err;
  249. /*
  250.  * Get and verify the address. 
  251.  */
  252. if (saddr)
  253. {
  254. if (msg->msg_namelen < sizeof(struct sockaddr))
  255. return(-EINVAL);
  256. if (msg->msg_namelen==sizeof(struct sockaddr_pkt))
  257. proto=saddr->spkt_protocol;
  258. }
  259. else
  260. return(-ENOTCONN); /* SOCK_PACKET must be sent giving an address */
  261. /*
  262.  * Find the device first to size check it 
  263.  */
  264. saddr->spkt_device[13] = 0;
  265. dev = dev_get_by_name(saddr->spkt_device);
  266. err = -ENODEV;
  267. if (dev == NULL)
  268. goto out_unlock;
  269. /*
  270.  * You may not queue a frame bigger than the mtu. This is the lowest level
  271.  * raw protocol and you must do your own fragmentation at this level.
  272.  */
  273.  
  274. err = -EMSGSIZE;
  275.   if(len>dev->mtu+dev->hard_header_len)
  276. goto out_unlock;
  277. err = -ENOBUFS;
  278. skb = sock_wmalloc(sk, len+dev->hard_header_len+15, 0, GFP_KERNEL);
  279. /*
  280.  * If the write buffer is full, then tough. At this level the user gets to
  281.  * deal with the problem - do your own algorithmic backoffs. That's far
  282.  * more flexible.
  283.  */
  284.  
  285. if (skb == NULL) 
  286. goto out_unlock;
  287. /*
  288.  * Fill it in 
  289.  */
  290.  
  291. /* FIXME: Save some space for broken drivers that write a
  292.  * hard header at transmission time by themselves. PPP is the
  293.  * notable one here. This should really be fixed at the driver level.
  294.  */
  295. skb_reserve(skb,(dev->hard_header_len+15)&~15);
  296. skb->nh.raw = skb->data;
  297. /* Try to align data part correctly */
  298. if (dev->hard_header) {
  299. skb->data -= dev->hard_header_len;
  300. skb->tail -= dev->hard_header_len;
  301. }
  302. /* Returns -EFAULT on error */
  303. err = memcpy_fromiovec(skb_put(skb,len), msg->msg_iov, len);
  304. skb->protocol = proto;
  305. skb->dev = dev;
  306. skb->priority = sk->priority;
  307. if (err)
  308. goto out_free;
  309. err = -ENETDOWN;
  310. if (!(dev->flags & IFF_UP))
  311. goto out_free;
  312. /*
  313.  * Now send it
  314.  */
  315. dev_queue_xmit(skb);
  316. dev_put(dev);
  317. return(len);
  318. out_free:
  319. kfree_skb(skb);
  320. out_unlock:
  321. if (dev)
  322. dev_put(dev);
  323. return err;
  324. }
  325. #endif
  326. /*
  327.    This function makes lazy skb cloning in hope that most of packets
  328.    are discarded by BPF.
  329.    Note tricky part: we DO mangle shared skb! skb->data, skb->len
  330.    and skb->cb are mangled. It works because (and until) packets
  331.    falling here are owned by current CPU. Output packets are cloned
  332.    by dev_queue_xmit_nit(), input packets are processed by net_bh
  333.    sequencially, so that if we return skb to original state on exit,
  334.    we will not harm anyone.
  335.  */
  336. static int packet_rcv(struct sk_buff *skb, struct net_device *dev,  struct packet_type *pt)
  337. {
  338. struct sock *sk;
  339. struct sockaddr_ll *sll;
  340. struct packet_opt *po;
  341. u8 * skb_head = skb->data;
  342. int skb_len = skb->len;
  343. #ifdef CONFIG_FILTER
  344. unsigned snaplen;
  345. #endif
  346. if (skb->pkt_type == PACKET_LOOPBACK)
  347. goto drop;
  348. sk = (struct sock *) pt->data;
  349. po = sk->protinfo.af_packet;
  350. skb->dev = dev;
  351. if (dev->hard_header) {
  352. /* The device has an explicit notion of ll header,
  353.    exported to higher levels.
  354.    Otherwise, the device hides datails of it frame
  355.    structure, so that corresponding packet head
  356.    never delivered to user.
  357.  */
  358. if (sk->type != SOCK_DGRAM)
  359. skb_push(skb, skb->data - skb->mac.raw);
  360. else if (skb->pkt_type == PACKET_OUTGOING) {
  361. /* Special case: outgoing packets have ll header at head */
  362. skb_pull(skb, skb->nh.raw - skb->data);
  363. }
  364. }
  365. #ifdef CONFIG_FILTER
  366. snaplen = skb->len;
  367. if (sk->filter) {
  368. unsigned res = snaplen;
  369. struct sk_filter *filter;
  370. bh_lock_sock(sk);
  371. if ((filter = sk->filter) != NULL)
  372. res = sk_run_filter(skb, sk->filter->insns, sk->filter->len);
  373. bh_unlock_sock(sk);
  374. if (res == 0)
  375. goto drop_n_restore;
  376. if (snaplen > res)
  377. snaplen = res;
  378. }
  379. #endif /* CONFIG_FILTER */
  380. if (atomic_read(&sk->rmem_alloc) + skb->truesize >= (unsigned)sk->rcvbuf)
  381. goto drop_n_acct;
  382. if (skb_shared(skb)) {
  383. struct sk_buff *nskb = skb_clone(skb, GFP_ATOMIC);
  384. if (nskb == NULL)
  385. goto drop_n_acct;
  386. if (skb_head != skb->data) {
  387. skb->data = skb_head;
  388. skb->len = skb_len;
  389. }
  390. kfree_skb(skb);
  391. skb = nskb;
  392. }
  393. sll = (struct sockaddr_ll*)skb->cb;
  394. sll->sll_family = AF_PACKET;
  395. sll->sll_hatype = dev->type;
  396. sll->sll_protocol = skb->protocol;
  397. sll->sll_pkttype = skb->pkt_type;
  398. sll->sll_ifindex = dev->ifindex;
  399. sll->sll_halen = 0;
  400. if (dev->hard_header_parse)
  401. sll->sll_halen = dev->hard_header_parse(skb, sll->sll_addr);
  402. #ifdef CONFIG_FILTER
  403. if (pskb_trim(skb, snaplen))
  404. goto drop_n_acct;
  405. #endif
  406. skb_set_owner_r(skb, sk);
  407. skb->dev = NULL;
  408. spin_lock(&sk->receive_queue.lock);
  409. po->stats.tp_packets++;
  410. __skb_queue_tail(&sk->receive_queue, skb);
  411. spin_unlock(&sk->receive_queue.lock);
  412. sk->data_ready(sk,skb->len);
  413. return 0;
  414. drop_n_acct:
  415. spin_lock(&sk->receive_queue.lock);
  416. po->stats.tp_drops++;
  417. spin_unlock(&sk->receive_queue.lock);
  418. #ifdef CONFIG_FILTER
  419. drop_n_restore:
  420. #endif
  421. if (skb_head != skb->data && skb_shared(skb)) {
  422. skb->data = skb_head;
  423. skb->len = skb_len;
  424. }
  425. drop:
  426. kfree_skb(skb);
  427. return 0;
  428. }
  429. #ifdef CONFIG_PACKET_MMAP
  430. static int tpacket_rcv(struct sk_buff *skb, struct net_device *dev,  struct packet_type *pt)
  431. {
  432. struct sock *sk;
  433. struct packet_opt *po;
  434. struct sockaddr_ll *sll;
  435. struct tpacket_hdr *h;
  436. u8 * skb_head = skb->data;
  437. int skb_len = skb->len;
  438. unsigned snaplen;
  439. unsigned long status = TP_STATUS_LOSING|TP_STATUS_USER;
  440. unsigned short macoff, netoff;
  441. struct sk_buff *copy_skb = NULL;
  442. if (skb->pkt_type == PACKET_LOOPBACK)
  443. goto drop;
  444. sk = (struct sock *) pt->data;
  445. po = sk->protinfo.af_packet;
  446. if (dev->hard_header) {
  447. if (sk->type != SOCK_DGRAM)
  448. skb_push(skb, skb->data - skb->mac.raw);
  449. else if (skb->pkt_type == PACKET_OUTGOING) {
  450. /* Special case: outgoing packets have ll header at head */
  451. skb_pull(skb, skb->nh.raw - skb->data);
  452. if (skb->ip_summed == CHECKSUM_HW)
  453. status |= TP_STATUS_CSUMNOTREADY;
  454. }
  455. }
  456. snaplen = skb->len;
  457. #ifdef CONFIG_FILTER
  458. if (sk->filter) {
  459. unsigned res = snaplen;
  460. struct sk_filter *filter;
  461. bh_lock_sock(sk);
  462. if ((filter = sk->filter) != NULL)
  463. res = sk_run_filter(skb, sk->filter->insns, sk->filter->len);
  464. bh_unlock_sock(sk);
  465. if (res == 0)
  466. goto drop_n_restore;
  467. if (snaplen > res)
  468. snaplen = res;
  469. }
  470. #endif
  471. if (sk->type == SOCK_DGRAM) {
  472. macoff = netoff = TPACKET_ALIGN(TPACKET_HDRLEN) + 16;
  473. } else {
  474. unsigned maclen = skb->nh.raw - skb->data;
  475. netoff = TPACKET_ALIGN(TPACKET_HDRLEN + (maclen < 16 ? 16 : maclen));
  476. macoff = netoff - maclen;
  477. }
  478. if (macoff + snaplen > po->frame_size) {
  479. if (po->copy_thresh &&
  480.     atomic_read(&sk->rmem_alloc) + skb->truesize < (unsigned)sk->rcvbuf) {
  481. if (skb_shared(skb)) {
  482. copy_skb = skb_clone(skb, GFP_ATOMIC);
  483. } else {
  484. copy_skb = skb_get(skb);
  485. skb_head = skb->data;
  486. }
  487. if (copy_skb)
  488. skb_set_owner_r(copy_skb, sk);
  489. }
  490. snaplen = po->frame_size - macoff;
  491. if ((int)snaplen < 0)
  492. snaplen = 0;
  493. }
  494. if (snaplen > skb->len-skb->data_len)
  495. snaplen = skb->len-skb->data_len;
  496. spin_lock(&sk->receive_queue.lock);
  497. h = po->iovec[po->head];
  498. if (h->tp_status)
  499. goto ring_is_full;
  500. po->head = po->head != po->iovmax ? po->head+1 : 0;
  501. po->stats.tp_packets++;
  502. if (copy_skb) {
  503. status |= TP_STATUS_COPY;
  504. __skb_queue_tail(&sk->receive_queue, copy_skb);
  505. }
  506. if (!po->stats.tp_drops)
  507. status &= ~TP_STATUS_LOSING;
  508. spin_unlock(&sk->receive_queue.lock);
  509. memcpy((u8*)h + macoff, skb->data, snaplen);
  510. h->tp_len = skb->len;
  511. h->tp_snaplen = snaplen;
  512. h->tp_mac = macoff;
  513. h->tp_net = netoff;
  514. h->tp_sec = skb->stamp.tv_sec;
  515. h->tp_usec = skb->stamp.tv_usec;
  516. sll = (struct sockaddr_ll*)((u8*)h + TPACKET_ALIGN(sizeof(*h)));
  517. sll->sll_halen = 0;
  518. if (dev->hard_header_parse)
  519. sll->sll_halen = dev->hard_header_parse(skb, sll->sll_addr);
  520. sll->sll_family = AF_PACKET;
  521. sll->sll_hatype = dev->type;
  522. sll->sll_protocol = skb->protocol;
  523. sll->sll_pkttype = skb->pkt_type;
  524. sll->sll_ifindex = dev->ifindex;
  525. h->tp_status = status;
  526. mb();
  527. {
  528. struct page *p_start, *p_end;
  529. u8 *h_end = (u8 *)h + macoff + snaplen - 1;
  530. p_start = virt_to_page(h);
  531. p_end = virt_to_page(h_end);
  532. while (p_start <= p_end) {
  533. flush_dcache_page(p_start);
  534. p_start++;
  535. }
  536. }
  537. sk->data_ready(sk, 0);
  538. drop_n_restore:
  539. if (skb_head != skb->data && skb_shared(skb)) {
  540. skb->data = skb_head;
  541. skb->len = skb_len;
  542. }
  543. drop:
  544.         kfree_skb(skb);
  545. return 0;
  546. ring_is_full:
  547. po->stats.tp_drops++;
  548. spin_unlock(&sk->receive_queue.lock);
  549. sk->data_ready(sk, 0);
  550. if (copy_skb)
  551. kfree_skb(copy_skb);
  552. goto drop_n_restore;
  553. }
  554. #endif
  555. static int packet_sendmsg(struct socket *sock, struct msghdr *msg, int len,
  556.   struct scm_cookie *scm)
  557. {
  558. struct sock *sk = sock->sk;
  559. struct sockaddr_ll *saddr=(struct sockaddr_ll *)msg->msg_name;
  560. struct sk_buff *skb;
  561. struct net_device *dev;
  562. unsigned short proto;
  563. unsigned char *addr;
  564. int ifindex, err, reserve = 0;
  565. /*
  566.  * Get and verify the address. 
  567.  */
  568.  
  569. if (saddr == NULL) {
  570. ifindex = sk->protinfo.af_packet->ifindex;
  571. proto = sk->num;
  572. addr = NULL;
  573. } else {
  574. err = -EINVAL;
  575. if (msg->msg_namelen < sizeof(struct sockaddr_ll))
  576. goto out;
  577. ifindex = saddr->sll_ifindex;
  578. proto = saddr->sll_protocol;
  579. addr = saddr->sll_addr;
  580. }
  581. dev = dev_get_by_index(ifindex);
  582. err = -ENXIO;
  583. if (dev == NULL)
  584. goto out_unlock;
  585. if (sock->type == SOCK_RAW)
  586. reserve = dev->hard_header_len;
  587. err = -EMSGSIZE;
  588. if (len > dev->mtu+reserve)
  589. goto out_unlock;
  590. skb = sock_alloc_send_skb(sk, len+dev->hard_header_len+15, 
  591. msg->msg_flags & MSG_DONTWAIT, &err);
  592. if (skb==NULL)
  593. goto out_unlock;
  594. skb_reserve(skb, (dev->hard_header_len+15)&~15);
  595. skb->nh.raw = skb->data;
  596. if (dev->hard_header) {
  597. int res;
  598. err = -EINVAL;
  599. res = dev->hard_header(skb, dev, ntohs(proto), addr, NULL, len);
  600. if (sock->type != SOCK_DGRAM) {
  601. skb->tail = skb->data;
  602. skb->len = 0;
  603. } else if (res < 0)
  604. goto out_free;
  605. }
  606. /* Returns -EFAULT on error */
  607. err = memcpy_fromiovec(skb_put(skb,len), msg->msg_iov, len);
  608. if (err)
  609. goto out_free;
  610. skb->protocol = proto;
  611. skb->dev = dev;
  612. skb->priority = sk->priority;
  613. err = -ENETDOWN;
  614. if (!(dev->flags & IFF_UP))
  615. goto out_free;
  616. /*
  617.  * Now send it
  618.  */
  619. err = dev_queue_xmit(skb);
  620. if (err > 0 && (err = net_xmit_errno(err)) != 0)
  621. goto out_unlock;
  622. dev_put(dev);
  623. return(len);
  624. out_free:
  625. kfree_skb(skb);
  626. out_unlock:
  627. if (dev)
  628. dev_put(dev);
  629. out:
  630. return err;
  631. }
  632. /*
  633.  * Close a PACKET socket. This is fairly simple. We immediately go
  634.  * to 'closed' state and remove our protocol entry in the device list.
  635.  */
  636. static int packet_release(struct socket *sock)
  637. {
  638. struct sock *sk = sock->sk;
  639. struct sock **skp;
  640. if (!sk)
  641. return 0;
  642. write_lock_bh(&packet_sklist_lock);
  643. for (skp = &packet_sklist; *skp; skp = &(*skp)->next) {
  644. if (*skp == sk) {
  645. *skp = sk->next;
  646. __sock_put(sk);
  647. break;
  648. }
  649. }
  650. write_unlock_bh(&packet_sklist_lock);
  651. /*
  652.  * Unhook packet receive handler.
  653.  */
  654. if (sk->protinfo.af_packet->running) {
  655. /*
  656.  * Remove the protocol hook
  657.  */
  658. dev_remove_pack(&sk->protinfo.af_packet->prot_hook);
  659. sk->protinfo.af_packet->running = 0;
  660. __sock_put(sk);
  661. }
  662. #ifdef CONFIG_PACKET_MULTICAST
  663. packet_flush_mclist(sk);
  664. #endif
  665. #ifdef CONFIG_PACKET_MMAP
  666. if (sk->protinfo.af_packet->pg_vec) {
  667. struct tpacket_req req;
  668. memset(&req, 0, sizeof(req));
  669. packet_set_ring(sk, &req, 1);
  670. }
  671. #endif
  672. /*
  673.  * Now the socket is dead. No more input will appear.
  674.  */
  675. sock_orphan(sk);
  676. sock->sk = NULL;
  677. /* Purge queues */
  678. skb_queue_purge(&sk->receive_queue);
  679. sock_put(sk);
  680. return 0;
  681. }
  682. /*
  683.  * Attach a packet hook.
  684.  */
  685. static int packet_do_bind(struct sock *sk, struct net_device *dev, int protocol)
  686. {
  687. /*
  688.  * Detach an existing hook if present.
  689.  */
  690. lock_sock(sk);
  691. spin_lock(&sk->protinfo.af_packet->bind_lock);
  692. if (sk->protinfo.af_packet->running) {
  693. dev_remove_pack(&sk->protinfo.af_packet->prot_hook);
  694. __sock_put(sk);
  695. sk->protinfo.af_packet->running = 0;
  696. }
  697. sk->num = protocol;
  698. sk->protinfo.af_packet->prot_hook.type = protocol;
  699. sk->protinfo.af_packet->prot_hook.dev = dev;
  700. sk->protinfo.af_packet->ifindex = dev ? dev->ifindex : 0;
  701. if (protocol == 0)
  702. goto out_unlock;
  703. if (dev) {
  704. if (dev->flags&IFF_UP) {
  705. dev_add_pack(&sk->protinfo.af_packet->prot_hook);
  706. sock_hold(sk);
  707. sk->protinfo.af_packet->running = 1;
  708. } else {
  709. sk->err = ENETDOWN;
  710. if (!sk->dead)
  711. sk->error_report(sk);
  712. }
  713. } else {
  714. dev_add_pack(&sk->protinfo.af_packet->prot_hook);
  715. sock_hold(sk);
  716. sk->protinfo.af_packet->running = 1;
  717. }
  718. out_unlock:
  719. spin_unlock(&sk->protinfo.af_packet->bind_lock);
  720. release_sock(sk);
  721. return 0;
  722. }
  723. /*
  724.  * Bind a packet socket to a device
  725.  */
  726. #ifdef CONFIG_SOCK_PACKET
  727. static int packet_bind_spkt(struct socket *sock, struct sockaddr *uaddr, int addr_len)
  728. {
  729. struct sock *sk=sock->sk;
  730. char name[15];
  731. struct net_device *dev;
  732. int err = -ENODEV;
  733. /*
  734.  * Check legality
  735.  */
  736.  
  737. if(addr_len!=sizeof(struct sockaddr))
  738. return -EINVAL;
  739. strncpy(name,uaddr->sa_data,14);
  740. name[14]=0;
  741. dev = dev_get_by_name(name);
  742. if (dev) {
  743. err = packet_do_bind(sk, dev, sk->num);
  744. dev_put(dev);
  745. }
  746. return err;
  747. }
  748. #endif
  749. static int packet_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
  750. {
  751. struct sockaddr_ll *sll = (struct sockaddr_ll*)uaddr;
  752. struct sock *sk=sock->sk;
  753. struct net_device *dev = NULL;
  754. int err;
  755. /*
  756.  * Check legality
  757.  */
  758.  
  759. if (addr_len < sizeof(struct sockaddr_ll))
  760. return -EINVAL;
  761. if (sll->sll_family != AF_PACKET)
  762. return -EINVAL;
  763. if (sll->sll_ifindex) {
  764. err = -ENODEV;
  765. dev = dev_get_by_index(sll->sll_ifindex);
  766. if (dev == NULL)
  767. goto out;
  768. }
  769. err = packet_do_bind(sk, dev, sll->sll_protocol ? : sk->num);
  770. if (dev)
  771. dev_put(dev);
  772. out:
  773. return err;
  774. }
  775. /*
  776.  * Create a packet of type SOCK_PACKET. 
  777.  */
  778. static int packet_create(struct socket *sock, int protocol)
  779. {
  780. struct sock *sk;
  781. int err;
  782. if (!capable(CAP_NET_RAW))
  783. return -EPERM;
  784. if (sock->type != SOCK_DGRAM && sock->type != SOCK_RAW
  785. #ifdef CONFIG_SOCK_PACKET
  786.     && sock->type != SOCK_PACKET
  787. #endif
  788.     )
  789. return -ESOCKTNOSUPPORT;
  790. sock->state = SS_UNCONNECTED;
  791. MOD_INC_USE_COUNT;
  792. err = -ENOBUFS;
  793. sk = sk_alloc(PF_PACKET, GFP_KERNEL, 1);
  794. if (sk == NULL)
  795. goto out;
  796. sock->ops = &packet_ops;
  797. #ifdef CONFIG_SOCK_PACKET
  798. if (sock->type == SOCK_PACKET)
  799. sock->ops = &packet_ops_spkt;
  800. #endif
  801. sock_init_data(sock,sk);
  802. sk->protinfo.af_packet = kmalloc(sizeof(struct packet_opt), GFP_KERNEL);
  803. if (sk->protinfo.af_packet == NULL)
  804. goto out_free;
  805. memset(sk->protinfo.af_packet, 0, sizeof(struct packet_opt));
  806. sk->family = PF_PACKET;
  807. sk->num = protocol;
  808. sk->destruct = packet_sock_destruct;
  809. atomic_inc(&packet_socks_nr);
  810. /*
  811.  * Attach a protocol block
  812.  */
  813. spin_lock_init(&sk->protinfo.af_packet->bind_lock);
  814. sk->protinfo.af_packet->prot_hook.func = packet_rcv;
  815. #ifdef CONFIG_SOCK_PACKET
  816. if (sock->type == SOCK_PACKET)
  817. sk->protinfo.af_packet->prot_hook.func = packet_rcv_spkt;
  818. #endif
  819. sk->protinfo.af_packet->prot_hook.data = (void *)sk;
  820. if (protocol) {
  821. sk->protinfo.af_packet->prot_hook.type = protocol;
  822. dev_add_pack(&sk->protinfo.af_packet->prot_hook);
  823. sock_hold(sk);
  824. sk->protinfo.af_packet->running = 1;
  825. }
  826. write_lock_bh(&packet_sklist_lock);
  827. sk->next = packet_sklist;
  828. packet_sklist = sk;
  829. sock_hold(sk);
  830. write_unlock_bh(&packet_sklist_lock);
  831. return(0);
  832. out_free:
  833. sk_free(sk);
  834. out:
  835. MOD_DEC_USE_COUNT;
  836. return err;
  837. }
  838. /*
  839.  * Pull a packet from our receive queue and hand it to the user.
  840.  * If necessary we block.
  841.  */
  842. static int packet_recvmsg(struct socket *sock, struct msghdr *msg, int len,
  843.   int flags, struct scm_cookie *scm)
  844. {
  845. struct sock *sk = sock->sk;
  846. struct sk_buff *skb;
  847. int copied, err;
  848. err = -EINVAL;
  849. if (flags & ~(MSG_PEEK|MSG_DONTWAIT|MSG_TRUNC))
  850. goto out;
  851. #if 0
  852. /* What error should we return now? EUNATTACH? */
  853. if (sk->protinfo.af_packet->ifindex < 0)
  854. return -ENODEV;
  855. #endif
  856. /*
  857.  * If the address length field is there to be filled in, we fill
  858.  * it in now.
  859.  */
  860. if (sock->type == SOCK_PACKET)
  861. msg->msg_namelen = sizeof(struct sockaddr_pkt);
  862. else
  863. msg->msg_namelen = sizeof(struct sockaddr_ll);
  864. /*
  865.  * Call the generic datagram receiver. This handles all sorts
  866.  * of horrible races and re-entrancy so we can forget about it
  867.  * in the protocol layers.
  868.  *
  869.  * Now it will return ENETDOWN, if device have just gone down,
  870.  * but then it will block.
  871.  */
  872. skb=skb_recv_datagram(sk,flags,flags&MSG_DONTWAIT,&err);
  873. /*
  874.  * An error occurred so return it. Because skb_recv_datagram() 
  875.  * handles the blocking we don't see and worry about blocking
  876.  * retries.
  877.  */
  878. if(skb==NULL)
  879. goto out;
  880. /*
  881.  * You lose any data beyond the buffer you gave. If it worries a
  882.  * user program they can ask the device for its MTU anyway.
  883.  */
  884. copied = skb->len;
  885. if (copied > len)
  886. {
  887. copied=len;
  888. msg->msg_flags|=MSG_TRUNC;
  889. }
  890. err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
  891. if (err)
  892. goto out_free;
  893. sock_recv_timestamp(msg, sk, skb);
  894. if (msg->msg_name)
  895. memcpy(msg->msg_name, skb->cb, msg->msg_namelen);
  896. /*
  897.  * Free or return the buffer as appropriate. Again this
  898.  * hides all the races and re-entrancy issues from us.
  899.  */
  900. err = (flags&MSG_TRUNC) ? skb->len : copied;
  901. out_free:
  902. skb_free_datagram(sk, skb);
  903. out:
  904. return err;
  905. }
  906. #ifdef CONFIG_SOCK_PACKET
  907. static int packet_getname_spkt(struct socket *sock, struct sockaddr *uaddr,
  908.        int *uaddr_len, int peer)
  909. {
  910. struct net_device *dev;
  911. struct sock *sk = sock->sk;
  912. if (peer)
  913. return -EOPNOTSUPP;
  914. uaddr->sa_family = AF_PACKET;
  915. dev = dev_get_by_index(sk->protinfo.af_packet->ifindex);
  916. if (dev) {
  917. strncpy(uaddr->sa_data, dev->name, 15);
  918. dev_put(dev);
  919. } else
  920. memset(uaddr->sa_data, 0, 14);
  921. *uaddr_len = sizeof(*uaddr);
  922. return 0;
  923. }
  924. #endif
  925. static int packet_getname(struct socket *sock, struct sockaddr *uaddr,
  926.   int *uaddr_len, int peer)
  927. {
  928. struct net_device *dev;
  929. struct sock *sk = sock->sk;
  930. struct sockaddr_ll *sll = (struct sockaddr_ll*)uaddr;
  931. if (peer)
  932. return -EOPNOTSUPP;
  933. sll->sll_family = AF_PACKET;
  934. sll->sll_ifindex = sk->protinfo.af_packet->ifindex;
  935. sll->sll_protocol = sk->num;
  936. dev = dev_get_by_index(sk->protinfo.af_packet->ifindex);
  937. if (dev) {
  938. sll->sll_hatype = dev->type;
  939. sll->sll_halen = dev->addr_len;
  940. memcpy(sll->sll_addr, dev->dev_addr, dev->addr_len);
  941. dev_put(dev);
  942. } else {
  943. sll->sll_hatype = 0; /* Bad: we have no ARPHRD_UNSPEC */
  944. sll->sll_halen = 0;
  945. }
  946. *uaddr_len = sizeof(*sll);
  947. return 0;
  948. }
  949. #ifdef CONFIG_PACKET_MULTICAST
  950. static void packet_dev_mc(struct net_device *dev, struct packet_mclist *i, int what)
  951. {
  952. switch (i->type) {
  953. case PACKET_MR_MULTICAST:
  954. if (what > 0)
  955. dev_mc_add(dev, i->addr, i->alen, 0);
  956. else
  957. dev_mc_delete(dev, i->addr, i->alen, 0);
  958. break;
  959. case PACKET_MR_PROMISC:
  960. dev_set_promiscuity(dev, what);
  961. break;
  962. case PACKET_MR_ALLMULTI:
  963. dev_set_allmulti(dev, what);
  964. break;
  965. default:;
  966. }
  967. }
  968. static void packet_dev_mclist(struct net_device *dev, struct packet_mclist *i, int what)
  969. {
  970. for ( ; i; i=i->next) {
  971. if (i->ifindex == dev->ifindex)
  972. packet_dev_mc(dev, i, what);
  973. }
  974. }
  975. static int packet_mc_add(struct sock *sk, struct packet_mreq *mreq)
  976. {
  977. struct packet_mclist *ml, *i;
  978. struct net_device *dev;
  979. int err;
  980. rtnl_lock();
  981. err = -ENODEV;
  982. dev = __dev_get_by_index(mreq->mr_ifindex);
  983. if (!dev)
  984. goto done;
  985. err = -EINVAL;
  986. if (mreq->mr_alen > dev->addr_len)
  987. goto done;
  988. err = -ENOBUFS;
  989. i = (struct packet_mclist *)kmalloc(sizeof(*i), GFP_KERNEL);
  990. if (i == NULL)
  991. goto done;
  992. err = 0;
  993. for (ml=sk->protinfo.af_packet->mclist; ml; ml=ml->next) {
  994. if (ml->ifindex == mreq->mr_ifindex &&
  995.     ml->type == mreq->mr_type &&
  996.     ml->alen == mreq->mr_alen &&
  997.     memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
  998. ml->count++;
  999. /* Free the new element ... */
  1000. kfree(i);
  1001. goto done;
  1002. }
  1003. }
  1004. i->type = mreq->mr_type;
  1005. i->ifindex = mreq->mr_ifindex;
  1006. i->alen = mreq->mr_alen;
  1007. memcpy(i->addr, mreq->mr_address, i->alen);
  1008. i->count = 1;
  1009. i->next = sk->protinfo.af_packet->mclist;
  1010. sk->protinfo.af_packet->mclist = i;
  1011. packet_dev_mc(dev, i, +1);
  1012. done:
  1013. rtnl_unlock();
  1014. return err;
  1015. }
  1016. static int packet_mc_drop(struct sock *sk, struct packet_mreq *mreq)
  1017. {
  1018. struct packet_mclist *ml, **mlp;
  1019. rtnl_lock();
  1020. for (mlp=&sk->protinfo.af_packet->mclist; (ml=*mlp)!=NULL; mlp=&ml->next) {
  1021. if (ml->ifindex == mreq->mr_ifindex &&
  1022.     ml->type == mreq->mr_type &&
  1023.     ml->alen == mreq->mr_alen &&
  1024.     memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
  1025. if (--ml->count == 0) {
  1026. struct net_device *dev;
  1027. *mlp = ml->next;
  1028. dev = dev_get_by_index(ml->ifindex);
  1029. if (dev) {
  1030. packet_dev_mc(dev, ml, -1);
  1031. dev_put(dev);
  1032. }
  1033. kfree(ml);
  1034. }
  1035. rtnl_unlock();
  1036. return 0;
  1037. }
  1038. }
  1039. rtnl_unlock();
  1040. return -EADDRNOTAVAIL;
  1041. }
  1042. static void packet_flush_mclist(struct sock *sk)
  1043. {
  1044. struct packet_mclist *ml;
  1045. if (sk->protinfo.af_packet->mclist == NULL)
  1046. return;
  1047. rtnl_lock();
  1048. while ((ml=sk->protinfo.af_packet->mclist) != NULL) {
  1049. struct net_device *dev;
  1050. sk->protinfo.af_packet->mclist = ml->next;
  1051. if ((dev = dev_get_by_index(ml->ifindex)) != NULL) {
  1052. packet_dev_mc(dev, ml, -1);
  1053. dev_put(dev);
  1054. }
  1055. kfree(ml);
  1056. }
  1057. rtnl_unlock();
  1058. }
  1059. #endif
  1060. static int
  1061. packet_setsockopt(struct socket *sock, int level, int optname, char *optval, int optlen)
  1062. {
  1063. struct sock *sk = sock->sk;
  1064. int ret;
  1065. if (level != SOL_PACKET)
  1066. return -ENOPROTOOPT;
  1067. switch(optname) {
  1068. #ifdef CONFIG_PACKET_MULTICAST
  1069. case PACKET_ADD_MEMBERSHIP:
  1070. case PACKET_DROP_MEMBERSHIP:
  1071. {
  1072. struct packet_mreq mreq;
  1073. if (optlen<sizeof(mreq))
  1074. return -EINVAL;
  1075. if (copy_from_user(&mreq,optval,sizeof(mreq)))
  1076. return -EFAULT;
  1077. if (optname == PACKET_ADD_MEMBERSHIP)
  1078. ret = packet_mc_add(sk, &mreq);
  1079. else
  1080. ret = packet_mc_drop(sk, &mreq);
  1081. return ret;
  1082. }
  1083. #endif
  1084. #ifdef CONFIG_PACKET_MMAP
  1085. case PACKET_RX_RING:
  1086. {
  1087. struct tpacket_req req;
  1088. if (optlen<sizeof(req))
  1089. return -EINVAL;
  1090. if (copy_from_user(&req,optval,sizeof(req)))
  1091. return -EFAULT;
  1092. return packet_set_ring(sk, &req, 0);
  1093. }
  1094. case PACKET_COPY_THRESH:
  1095. {
  1096. int val;
  1097. if (optlen!=sizeof(val))
  1098. return -EINVAL;
  1099. if (copy_from_user(&val,optval,sizeof(val)))
  1100. return -EFAULT;
  1101. sk->protinfo.af_packet->copy_thresh = val;
  1102. return 0;
  1103. }
  1104. #endif
  1105. default:
  1106. return -ENOPROTOOPT;
  1107. }
  1108. }
  1109. int packet_getsockopt(struct socket *sock, int level, int optname,
  1110.       char *optval, int *optlen)
  1111. {
  1112. int len;
  1113. struct sock *sk = sock->sk;
  1114. if (level != SOL_PACKET)
  1115. return -ENOPROTOOPT;
  1116.    if (get_user(len,optlen))
  1117.    return -EFAULT;
  1118. if (len < 0)
  1119. return -EINVAL;
  1120. switch(optname) {
  1121. case PACKET_STATISTICS:
  1122. {
  1123. struct tpacket_stats st;
  1124. if (len > sizeof(struct tpacket_stats))
  1125. len = sizeof(struct tpacket_stats);
  1126. spin_lock_bh(&sk->receive_queue.lock);
  1127. st = sk->protinfo.af_packet->stats;
  1128. memset(&sk->protinfo.af_packet->stats, 0, sizeof(st));
  1129. spin_unlock_bh(&sk->receive_queue.lock);
  1130. st.tp_packets += st.tp_drops;
  1131. if (copy_to_user(optval, &st, len))
  1132. return -EFAULT;
  1133. break;
  1134. }
  1135. default:
  1136. return -ENOPROTOOPT;
  1137. }
  1138.    if (put_user(len, optlen))
  1139.    return -EFAULT;
  1140.    return 0;
  1141. }
  1142. static int packet_notifier(struct notifier_block *this, unsigned long msg, void *data)
  1143. {
  1144. struct sock *sk;
  1145. struct packet_opt *po;
  1146. struct net_device *dev = (struct net_device*)data;
  1147. read_lock(&packet_sklist_lock);
  1148. for (sk = packet_sklist; sk; sk = sk->next) {
  1149. po = sk->protinfo.af_packet;
  1150. switch (msg) {
  1151. case NETDEV_DOWN:
  1152. case NETDEV_UNREGISTER:
  1153. if (dev->ifindex == po->ifindex) {
  1154. spin_lock(&po->bind_lock);
  1155. if (po->running) {
  1156. dev_remove_pack(&po->prot_hook);
  1157. __sock_put(sk);
  1158. po->running = 0;
  1159. sk->err = ENETDOWN;
  1160. if (!sk->dead)
  1161. sk->error_report(sk);
  1162. }
  1163. if (msg == NETDEV_UNREGISTER) {
  1164. po->ifindex = -1;
  1165. po->prot_hook.dev = NULL;
  1166. }
  1167. spin_unlock(&po->bind_lock);
  1168. }
  1169. #ifdef CONFIG_PACKET_MULTICAST
  1170. if (po->mclist)
  1171. packet_dev_mclist(dev, po->mclist, -1);
  1172. #endif
  1173. break;
  1174. case NETDEV_UP:
  1175. spin_lock(&po->bind_lock);
  1176. if (dev->ifindex == po->ifindex && sk->num && po->running==0) {
  1177. dev_add_pack(&po->prot_hook);
  1178. sock_hold(sk);
  1179. po->running = 1;
  1180. }
  1181. spin_unlock(&po->bind_lock);
  1182. #ifdef CONFIG_PACKET_MULTICAST
  1183. if (po->mclist)
  1184. packet_dev_mclist(dev, po->mclist, +1);
  1185. #endif
  1186. break;
  1187. }
  1188. }
  1189. read_unlock(&packet_sklist_lock);
  1190. return NOTIFY_DONE;
  1191. }
  1192. static int packet_ioctl(struct socket *sock, unsigned int cmd,
  1193. unsigned long arg)
  1194. {
  1195. struct sock *sk = sock->sk;
  1196. switch(cmd) 
  1197. {
  1198. case SIOCOUTQ:
  1199. {
  1200. int amount = atomic_read(&sk->wmem_alloc);
  1201. return put_user(amount, (int *)arg);
  1202. }
  1203. case SIOCINQ:
  1204. {
  1205. struct sk_buff *skb;
  1206. int amount = 0;
  1207. spin_lock_bh(&sk->receive_queue.lock);
  1208. skb = skb_peek(&sk->receive_queue);
  1209. if (skb)
  1210. amount = skb->len;
  1211. spin_unlock_bh(&sk->receive_queue.lock);
  1212. return put_user(amount, (int *)arg);
  1213. }
  1214. case FIOSETOWN:
  1215. case SIOCSPGRP: {
  1216. int pid;
  1217. if (get_user(pid, (int *) arg))
  1218. return -EFAULT; 
  1219. if (current->pid != pid && current->pgrp != -pid && 
  1220.     !capable(CAP_NET_ADMIN))
  1221. return -EPERM;
  1222. sk->proc = pid;
  1223. break;
  1224. }
  1225. case FIOGETOWN:
  1226. case SIOCGPGRP:
  1227. return put_user(sk->proc, (int *)arg);
  1228. case SIOCGSTAMP:
  1229. if(sk->stamp.tv_sec==0)
  1230. return -ENOENT;
  1231. if (copy_to_user((void *)arg, &sk->stamp,
  1232.  sizeof(struct timeval)))
  1233. return -EFAULT;
  1234. break;
  1235. case SIOCGIFFLAGS:
  1236. #ifndef CONFIG_INET
  1237. case SIOCSIFFLAGS:
  1238. #endif
  1239. case SIOCGIFCONF:
  1240. case SIOCGIFMETRIC:
  1241. case SIOCSIFMETRIC:
  1242. case SIOCGIFMEM:
  1243. case SIOCSIFMEM:
  1244. case SIOCGIFMTU:
  1245. case SIOCSIFMTU:
  1246. case SIOCSIFLINK:
  1247. case SIOCGIFHWADDR:
  1248. case SIOCSIFHWADDR:
  1249. case SIOCSIFMAP:
  1250. case SIOCGIFMAP:
  1251. case SIOCSIFSLAVE:
  1252. case SIOCGIFSLAVE:
  1253. case SIOCGIFINDEX:
  1254. case SIOCGIFNAME:
  1255. case SIOCGIFCOUNT:
  1256. case SIOCSIFHWBROADCAST:
  1257. return(dev_ioctl(cmd,(void *) arg));
  1258. case SIOCGIFBR:
  1259. case SIOCSIFBR:
  1260. #if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
  1261. #ifdef CONFIG_INET
  1262. #ifdef CONFIG_KMOD
  1263. if (br_ioctl_hook == NULL)
  1264. request_module("bridge");
  1265. #endif
  1266. if (br_ioctl_hook != NULL)
  1267. return br_ioctl_hook(arg);
  1268. #endif
  1269. #endif
  1270. return -ENOPKG;
  1271. case SIOCGIFDIVERT:
  1272. case SIOCSIFDIVERT:
  1273. #ifdef CONFIG_NET_DIVERT
  1274. return divert_ioctl(cmd, (struct divert_cf *) arg);
  1275. #else
  1276. return -ENOPKG;
  1277. #endif /* CONFIG_NET_DIVERT */
  1278. #ifdef CONFIG_INET
  1279. case SIOCADDRT:
  1280. case SIOCDELRT:
  1281. case SIOCDARP:
  1282. case SIOCGARP:
  1283. case SIOCSARP:
  1284. case SIOCGIFADDR:
  1285. case SIOCSIFADDR:
  1286. case SIOCGIFBRDADDR:
  1287. case SIOCSIFBRDADDR:
  1288. case SIOCGIFNETMASK:
  1289. case SIOCSIFNETMASK:
  1290. case SIOCGIFDSTADDR:
  1291. case SIOCSIFDSTADDR:
  1292. case SIOCSIFFLAGS:
  1293. case SIOCADDDLCI:
  1294. case SIOCDELDLCI:
  1295. return inet_dgram_ops.ioctl(sock, cmd, arg);
  1296. #endif
  1297. default:
  1298. if ((cmd >= SIOCDEVPRIVATE) &&
  1299.     (cmd <= (SIOCDEVPRIVATE + 15)))
  1300. return(dev_ioctl(cmd,(void *) arg));
  1301. #ifdef CONFIG_NET_RADIO
  1302. if((cmd >= SIOCIWFIRST) && (cmd <= SIOCIWLAST))
  1303. return(dev_ioctl(cmd,(void *) arg));
  1304. #endif
  1305. return -EOPNOTSUPP;
  1306. }
  1307. return 0;
  1308. }
  1309. #ifndef CONFIG_PACKET_MMAP
  1310. #define packet_mmap sock_no_mmap
  1311. #define packet_poll datagram_poll
  1312. #else
  1313. unsigned int packet_poll(struct file * file, struct socket *sock, poll_table *wait)
  1314. {
  1315. struct sock *sk = sock->sk;
  1316. struct packet_opt *po = sk->protinfo.af_packet;
  1317. unsigned int mask = datagram_poll(file, sock, wait);
  1318. spin_lock_bh(&sk->receive_queue.lock);
  1319. if (po->iovec) {
  1320. unsigned last = po->head ? po->head-1 : po->iovmax;
  1321. if (po->iovec[last]->tp_status)
  1322. mask |= POLLIN | POLLRDNORM;
  1323. }
  1324. spin_unlock_bh(&sk->receive_queue.lock);
  1325. return mask;
  1326. }
  1327. /* Dirty? Well, I still did not learn better way to account
  1328.  * for user mmaps.
  1329.  */
  1330. static void packet_mm_open(struct vm_area_struct *vma)
  1331. {
  1332. struct file *file = vma->vm_file;
  1333. struct inode *inode = file->f_dentry->d_inode;
  1334. struct socket * sock = &inode->u.socket_i;
  1335. struct sock *sk = sock->sk;
  1336. if (sk)
  1337. atomic_inc(&sk->protinfo.af_packet->mapped);
  1338. }
  1339. static void packet_mm_close(struct vm_area_struct *vma)
  1340. {
  1341. struct file *file = vma->vm_file;
  1342. struct inode *inode = file->f_dentry->d_inode;
  1343. struct socket * sock = &inode->u.socket_i;
  1344. struct sock *sk = sock->sk;
  1345. if (sk)
  1346. atomic_dec(&sk->protinfo.af_packet->mapped);
  1347. }
  1348. static struct vm_operations_struct packet_mmap_ops = {
  1349. open: packet_mm_open,
  1350. close: packet_mm_close,
  1351. };
  1352. static void free_pg_vec(unsigned long *pg_vec, unsigned order, unsigned len)
  1353. {
  1354. int i;
  1355. for (i=0; i<len; i++) {
  1356. if (pg_vec[i]) {
  1357. struct page *page, *pend;
  1358. pend = virt_to_page(pg_vec[i] + (PAGE_SIZE << order) - 1);
  1359. for (page = virt_to_page(pg_vec[i]); page <= pend; page++)
  1360. ClearPageReserved(page);
  1361. free_pages(pg_vec[i], order);
  1362. }
  1363. }
  1364. kfree(pg_vec);
  1365. }
  1366. static int packet_set_ring(struct sock *sk, struct tpacket_req *req, int closing)
  1367. {
  1368. unsigned long *pg_vec = NULL;
  1369. struct tpacket_hdr **io_vec = NULL;
  1370. struct packet_opt *po = sk->protinfo.af_packet;
  1371. int order = 0;
  1372. int err = 0;
  1373. if (req->tp_block_nr) {
  1374. int i, l;
  1375. int frames_per_block;
  1376. /* Sanity tests and some calculations */
  1377. if ((int)req->tp_block_size <= 0)
  1378. return -EINVAL;
  1379. if (req->tp_block_size&(PAGE_SIZE-1))
  1380. return -EINVAL;
  1381. if (req->tp_frame_size < TPACKET_HDRLEN)
  1382. return -EINVAL;
  1383. if (req->tp_frame_size&(TPACKET_ALIGNMENT-1))
  1384. return -EINVAL;
  1385. frames_per_block = req->tp_block_size/req->tp_frame_size;
  1386. if (frames_per_block <= 0)
  1387. return -EINVAL;
  1388. if (frames_per_block*req->tp_block_nr != req->tp_frame_nr)
  1389. return -EINVAL;
  1390. /* OK! */
  1391. /* Allocate page vector */
  1392. while ((PAGE_SIZE<<order) < req->tp_block_size)
  1393. order++;
  1394. err = -ENOMEM;
  1395. pg_vec = kmalloc(req->tp_block_nr*sizeof(unsigned long*), GFP_KERNEL);
  1396. if (pg_vec == NULL)
  1397. goto out;
  1398. memset(pg_vec, 0, req->tp_block_nr*sizeof(unsigned long*));
  1399. for (i=0; i<req->tp_block_nr; i++) {
  1400. struct page *page, *pend;
  1401. pg_vec[i] = __get_free_pages(GFP_KERNEL, order);
  1402. if (!pg_vec[i])
  1403. goto out_free_pgvec;
  1404. pend = virt_to_page(pg_vec[i] + (PAGE_SIZE << order) - 1);
  1405. for (page = virt_to_page(pg_vec[i]); page <= pend; page++)
  1406. SetPageReserved(page);
  1407. }
  1408. /* Page vector is allocated */
  1409. /* Draw frames */
  1410. io_vec = kmalloc(req->tp_frame_nr*sizeof(struct tpacket_hdr*), GFP_KERNEL);
  1411. if (io_vec == NULL)
  1412. goto out_free_pgvec;
  1413. memset(io_vec, 0, req->tp_frame_nr*sizeof(struct tpacket_hdr*));
  1414. l = 0;
  1415. for (i=0; i<req->tp_block_nr; i++) {
  1416. unsigned long ptr = pg_vec[i];
  1417. int k;
  1418. for (k=0; k<frames_per_block; k++, l++) {
  1419. io_vec[l] = (struct tpacket_hdr*)ptr;
  1420. io_vec[l]->tp_status = TP_STATUS_KERNEL;
  1421. ptr += req->tp_frame_size;
  1422. }
  1423. }
  1424. /* Done */
  1425. } else {
  1426. if (req->tp_frame_nr)
  1427. return -EINVAL;
  1428. }
  1429. lock_sock(sk);
  1430. /* Detach socket from network */
  1431. spin_lock(&po->bind_lock);
  1432. if (po->running)
  1433. dev_remove_pack(&po->prot_hook);
  1434. spin_unlock(&po->bind_lock);
  1435. err = -EBUSY;
  1436. if (closing || atomic_read(&po->mapped) == 0) {
  1437. err = 0;
  1438. #define XC(a, b) ({ __typeof__ ((a)) __t; __t = (a); (a) = (b); __t; })
  1439. spin_lock_bh(&sk->receive_queue.lock);
  1440. pg_vec = XC(po->pg_vec, pg_vec);
  1441. io_vec = XC(po->iovec, io_vec);
  1442. po->iovmax = req->tp_frame_nr-1;
  1443. po->head = 0;
  1444. po->frame_size = req->tp_frame_size;
  1445. spin_unlock_bh(&sk->receive_queue.lock);
  1446. order = XC(po->pg_vec_order, order);
  1447. req->tp_block_nr = XC(po->pg_vec_len, req->tp_block_nr);
  1448. po->pg_vec_pages = req->tp_block_size/PAGE_SIZE;
  1449. po->prot_hook.func = po->iovec ? tpacket_rcv : packet_rcv;
  1450. skb_queue_purge(&sk->receive_queue);
  1451. #undef XC
  1452. if (atomic_read(&po->mapped))
  1453. printk(KERN_DEBUG "packet_mmap: vma is busy: %dn", atomic_read(&po->mapped));
  1454. }
  1455. spin_lock(&po->bind_lock);
  1456. if (po->running)
  1457. dev_add_pack(&po->prot_hook);
  1458. spin_unlock(&po->bind_lock);
  1459. release_sock(sk);
  1460. if (io_vec)
  1461. kfree(io_vec);
  1462. out_free_pgvec:
  1463. if (pg_vec)
  1464. free_pg_vec(pg_vec, order, req->tp_block_nr);
  1465. out:
  1466. return err;
  1467. }
  1468. static int packet_mmap(struct file *file, struct socket *sock, struct vm_area_struct *vma)
  1469. {
  1470. struct sock *sk = sock->sk;
  1471. struct packet_opt *po = sk->protinfo.af_packet;
  1472. unsigned long size;
  1473. unsigned long start;
  1474. int err = -EINVAL;
  1475. int i;
  1476. if (vma->vm_pgoff)
  1477. return -EINVAL;
  1478. size = vma->vm_end - vma->vm_start;
  1479. lock_sock(sk);
  1480. if (po->pg_vec == NULL)
  1481. goto out;
  1482. if (size != po->pg_vec_len*po->pg_vec_pages*PAGE_SIZE)
  1483. goto out;
  1484. atomic_inc(&po->mapped);
  1485. start = vma->vm_start;
  1486. err = -EAGAIN;
  1487. for (i=0; i<po->pg_vec_len; i++) {
  1488. if (remap_page_range(start, __pa(po->pg_vec[i]),
  1489.      po->pg_vec_pages*PAGE_SIZE,
  1490.      vma->vm_page_prot))
  1491. goto out;
  1492. start += po->pg_vec_pages*PAGE_SIZE;
  1493. }
  1494. vma->vm_ops = &packet_mmap_ops;
  1495. err = 0;
  1496. out:
  1497. release_sock(sk);
  1498. return err;
  1499. }
  1500. #endif
  1501. #ifdef CONFIG_SOCK_PACKET
  1502. struct proto_ops packet_ops_spkt = {
  1503. family: PF_PACKET,
  1504. release: packet_release,
  1505. bind: packet_bind_spkt,
  1506. connect: sock_no_connect,
  1507. socketpair: sock_no_socketpair,
  1508. accept: sock_no_accept,
  1509. getname: packet_getname_spkt,
  1510. poll: datagram_poll,
  1511. ioctl: packet_ioctl,
  1512. listen: sock_no_listen,
  1513. shutdown: sock_no_shutdown,
  1514. setsockopt: sock_no_setsockopt,
  1515. getsockopt: sock_no_getsockopt,
  1516. sendmsg: packet_sendmsg_spkt,
  1517. recvmsg: packet_recvmsg,
  1518. mmap: sock_no_mmap,
  1519. sendpage: sock_no_sendpage,
  1520. };
  1521. #endif
  1522. struct proto_ops packet_ops = {
  1523. family: PF_PACKET,
  1524. release: packet_release,
  1525. bind: packet_bind,
  1526. connect: sock_no_connect,
  1527. socketpair: sock_no_socketpair,
  1528. accept: sock_no_accept,
  1529. getname: packet_getname, 
  1530. poll: packet_poll,
  1531. ioctl: packet_ioctl,
  1532. listen: sock_no_listen,
  1533. shutdown: sock_no_shutdown,
  1534. setsockopt: packet_setsockopt,
  1535. getsockopt: packet_getsockopt,
  1536. sendmsg: packet_sendmsg,
  1537. recvmsg: packet_recvmsg,
  1538. mmap: packet_mmap,
  1539. sendpage: sock_no_sendpage,
  1540. };
  1541. static struct net_proto_family packet_family_ops = {
  1542. family: PF_PACKET,
  1543. create: packet_create,
  1544. };
  1545. static struct notifier_block packet_netdev_notifier = {
  1546. notifier_call: packet_notifier,
  1547. };
  1548. #ifdef CONFIG_PROC_FS
  1549. static int packet_read_proc(char *buffer, char **start, off_t offset,
  1550.      int length, int *eof, void *data)
  1551. {
  1552. off_t pos=0;
  1553. off_t begin=0;
  1554. int len=0;
  1555. struct sock *s;
  1556. len+= sprintf(buffer,"sk       RefCnt Type Proto  Iface R Rmem   User   Inoden");
  1557. read_lock(&packet_sklist_lock);
  1558. for (s = packet_sklist; s; s = s->next) {
  1559. len+=sprintf(buffer+len,"%p %-6d %-4d %04x   %-5d %1d %-6u %-6u %-6lu",
  1560.      s,
  1561.      atomic_read(&s->refcnt),
  1562.      s->type,
  1563.      ntohs(s->num),
  1564.      s->protinfo.af_packet->ifindex,
  1565.      s->protinfo.af_packet->running,
  1566.      atomic_read(&s->rmem_alloc),
  1567.      sock_i_uid(s),
  1568.      sock_i_ino(s)
  1569.      );
  1570. buffer[len++]='n';
  1571. pos=begin+len;
  1572. if(pos<offset) {
  1573. len=0;
  1574. begin=pos;
  1575. }
  1576. if(pos>offset+length)
  1577. goto done;
  1578. }
  1579. *eof = 1;
  1580. done:
  1581. read_unlock(&packet_sklist_lock);
  1582. *start=buffer+(offset-begin);
  1583. len-=(offset-begin);
  1584. if(len>length)
  1585. len=length;
  1586. if(len<0)
  1587. len=0;
  1588. return len;
  1589. }
  1590. #endif
  1591. static void __exit packet_exit(void)
  1592. {
  1593. remove_proc_entry("net/packet", 0);
  1594. unregister_netdevice_notifier(&packet_netdev_notifier);
  1595. sock_unregister(PF_PACKET);
  1596. return;
  1597. }
  1598. static int __init packet_init(void)
  1599. {
  1600. sock_register(&packet_family_ops);
  1601. register_netdevice_notifier(&packet_netdev_notifier);
  1602. #ifdef CONFIG_PROC_FS
  1603. create_proc_read_entry("net/packet", 0, 0, packet_read_proc, NULL);
  1604. #endif
  1605. return 0;
  1606. }
  1607. module_init(packet_init);
  1608. module_exit(packet_exit);
  1609. MODULE_LICENSE("GPL");