br2684.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:22k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2. Experimental ethernet netdevice using ATM AAL5 as underlying carrier
  3. (RFC1483 obsoleted by RFC2684) for Linux 2.4
  4. Author: Marcell GAL, 2000, XDSL Ltd, Hungary
  5. */
  6. #include <linux/module.h>
  7. #include <linux/config.h>
  8. #include <linux/init.h>
  9. #include <linux/kernel.h>
  10. #include <linux/list.h>
  11. #include <linux/netdevice.h>
  12. #include <linux/skbuff.h>
  13. #include <linux/etherdevice.h>
  14. #include <linux/rtnetlink.h>
  15. #include <linux/ip.h>
  16. #include <asm/uaccess.h>
  17. #include <net/arp.h>
  18. #include <linux/atmbr2684.h>
  19. #include "ipcommon.h"
  20. /*
  21.  * Define this to use a version of the code which interacts with the higher
  22.  * layers in a more intellegent way, by always reserving enough space for
  23.  * our header at the begining of the packet.  However, there may still be
  24.  * some problems with programs like tcpdump.  In 2.5 we'll sort out what
  25.  * we need to do to get this perfect.  For now we just will copy the packet
  26.  * if we need space for the header
  27.  */
  28. /* #define FASTER_VERSION */
  29. #ifdef DEBUG
  30. #define DPRINTK(format, args...) printk(KERN_DEBUG "br2684: " format, ##args)
  31. #else
  32. #define DPRINTK(format, args...)
  33. #endif
  34. #ifdef SKB_DEBUG
  35. static void skb_debug(const struct sk_buff *skb)
  36. {
  37. #define NUM2PRINT 50
  38. char buf[NUM2PRINT * 3 + 1]; /* 3 chars per byte */
  39. int i = 0;
  40. for (i = 0; i < skb->len && i < NUM2PRINT; i++) {
  41. sprintf(buf + i * 3, "%2.2x ", 0xff & skb->data[i]);
  42. }
  43. printk(KERN_DEBUG "br2684: skb: %sn", buf);
  44. }
  45. #else
  46. #define skb_debug(skb) do {} while (0)
  47. #endif
  48. static unsigned char llc_oui_pid_pad[] =
  49.     { 0xAA, 0xAA, 0x03, 0x00, 0x80, 0xC2, 0x00, 0x07, 0x00, 0x00 };
  50. #define PADLEN (2)
  51. enum br2684_encaps {
  52. e_vc  = BR2684_ENCAPS_VC,
  53. e_llc = BR2684_ENCAPS_LLC,
  54. };
  55. struct br2684_vcc {
  56. struct atm_vcc  *atmvcc;
  57. struct br2684_dev *brdev;
  58. /* keep old push,pop functions for chaining */
  59. void (*old_push)(struct atm_vcc *vcc,struct sk_buff *skb);
  60. /* void (*old_pop)(struct atm_vcc *vcc,struct sk_buff *skb); */
  61. enum br2684_encaps encaps;
  62. struct list_head brvccs;
  63. #ifdef CONFIG_ATM_BR2684_IPFILTER
  64. struct br2684_filter filter;
  65. #endif /* CONFIG_ATM_BR2684_IPFILTER */
  66. #ifndef FASTER_VERSION
  67. unsigned copies_needed, copies_failed;
  68. #endif /* FASTER_VERSION */
  69. };
  70. struct br2684_dev {
  71. struct net_device net_dev;
  72. struct list_head br2684_devs;
  73. int number;
  74. struct list_head brvccs; /* one device <=> one vcc (before xmas) */
  75. struct net_device_stats stats;
  76. int mac_was_set;
  77. };
  78. /*
  79.  * This lock should be held for writing any time the list of devices or
  80.  * their attached vcc's could be altered.  It should be held for reading
  81.  * any time these are being queried.  Note that we sometimes need to
  82.  * do read-locking under interrupt context, so write locking must block
  83.  * the current CPU's interrupts
  84.  */
  85. static rwlock_t devs_lock = RW_LOCK_UNLOCKED;
  86. static LIST_HEAD(br2684_devs);
  87. static inline struct br2684_dev *BRPRIV(const struct net_device *net_dev)
  88. {
  89. return (struct br2684_dev *) ((char *) (net_dev) -
  90.     (unsigned long) (&((struct br2684_dev *) 0)->net_dev));
  91. }
  92. static inline struct br2684_dev *list_entry_brdev(const struct list_head *le)
  93. {
  94. return list_entry(le, struct br2684_dev, br2684_devs);
  95. }
  96. static inline struct br2684_vcc *BR2684_VCC(const struct atm_vcc *atmvcc)
  97. {
  98. return (struct br2684_vcc *) (atmvcc->user_back);
  99. }
  100. static inline struct br2684_vcc *list_entry_brvcc(const struct list_head *le)
  101. {
  102. return list_entry(le, struct br2684_vcc, brvccs);
  103. }
  104. /* Caller should hold read_lock(&devs_lock) */
  105. static struct br2684_dev *br2684_find_dev(const struct br2684_if_spec *s)
  106. {
  107. struct list_head *lh;
  108. struct br2684_dev *brdev;
  109. switch (s->method) {
  110. case BR2684_FIND_BYNUM:
  111. list_for_each(lh, &br2684_devs) {
  112. brdev = list_entry_brdev(lh);
  113. if (brdev->number == s->spec.devnum)
  114. return brdev;
  115. }
  116. break;
  117. case BR2684_FIND_BYIFNAME:
  118. list_for_each(lh, &br2684_devs) {
  119. brdev = list_entry_brdev(lh);
  120. if (!strncmp(brdev->net_dev.name, s->spec.ifname,
  121.     sizeof brdev->net_dev.name))
  122. return brdev;
  123. }
  124. break;
  125. }
  126. return NULL;
  127. }
  128. /*
  129.  * Send a packet out a particular vcc.  Not to useful right now, but paves
  130.  * the way for multiple vcc's per itf.  Returns true if we can send,
  131.  * otherwise false
  132.  */
  133. static int br2684_xmit_vcc(struct sk_buff *skb, struct br2684_dev *brdev,
  134. struct br2684_vcc *brvcc)
  135. {
  136. struct atm_vcc *atmvcc;
  137. #ifdef FASTER_VERSION
  138. if (brvcc->encaps == e_llc)
  139. memcpy(skb_push(skb, 8), llc_oui_pid_pad, 8);
  140. /* last 2 bytes of llc_oui_pid_pad are managed by header routines;
  141.    yes, you got it: 8 + 2 = sizeof(llc_oui_pid_pad)
  142.  */
  143. #else
  144. int minheadroom = (brvcc->encaps == e_llc) ? 10 : 2;
  145. if (skb_headroom(skb) < minheadroom) {
  146. struct sk_buff *skb2 = skb_realloc_headroom(skb, minheadroom);
  147. brvcc->copies_needed++;
  148. dev_kfree_skb(skb);
  149. if (skb2 == NULL) {
  150. brvcc->copies_failed++;
  151. return 0;
  152. }
  153. skb = skb2;
  154. }
  155. skb_push(skb, minheadroom);
  156. if (brvcc->encaps == e_llc)
  157. memcpy(skb->data, llc_oui_pid_pad, 10);
  158. else
  159. memset(skb->data, 0, 2);
  160. #endif /* FASTER_VERSION */
  161. skb_debug(skb);
  162. ATM_SKB(skb)->vcc = atmvcc = brvcc->atmvcc;
  163. DPRINTK("atm_skb(%p)->vcc(%p)->dev(%p)n", skb, atmvcc, atmvcc->dev);
  164. if (!atm_may_send(atmvcc, skb->truesize)) {
  165. /* we free this here for now, because we cannot know in a higher 
  166. layer whether the skb point it supplied wasn't freed yet.
  167. now, it always is.
  168. */
  169. dev_kfree_skb(skb);
  170. return 0;
  171. }
  172. atomic_add(skb->truesize, &atmvcc->tx_inuse);
  173. ATM_SKB(skb)->iovcnt = 0;
  174. ATM_SKB(skb)->atm_options = atmvcc->atm_options;
  175. brdev->stats.tx_packets++;
  176. brdev->stats.tx_bytes += skb->len;
  177. atmvcc->send(atmvcc, skb);
  178. return 1;
  179. }
  180. static inline struct br2684_vcc *pick_outgoing_vcc(struct sk_buff *skb,
  181. struct br2684_dev *brdev)
  182. {
  183. return list_empty(&brdev->brvccs) ? NULL :
  184.     list_entry_brvcc(brdev->brvccs.next); /* 1 vcc/dev right now */
  185. }
  186. static int br2684_start_xmit(struct sk_buff *skb, struct net_device *dev)
  187. {
  188. struct br2684_dev *brdev = BRPRIV(dev);
  189. struct br2684_vcc *brvcc;
  190. DPRINTK("br2684_start_xmit, skb->dst=%pn", skb->dst);
  191. read_lock(&devs_lock);
  192. brvcc = pick_outgoing_vcc(skb, brdev);
  193. if (brvcc == NULL) {
  194. DPRINTK("no vcc attached to dev %sn", dev->name);
  195. brdev->stats.tx_errors++;
  196. brdev->stats.tx_carrier_errors++;
  197. /* netif_stop_queue(dev); */
  198. dev_kfree_skb(skb);
  199. read_unlock(&devs_lock);
  200. return -EUNATCH;
  201. }
  202. if (!br2684_xmit_vcc(skb, brdev, brvcc)) {
  203. /*
  204.  * We should probably use netif_*_queue() here, but that
  205.  * involves added complication.  We need to walk before
  206.  * we can run
  207.  */
  208. /* don't free here! this pointer might be no longer valid!
  209. dev_kfree_skb(skb);
  210. */
  211. brdev->stats.tx_errors++;
  212. brdev->stats.tx_fifo_errors++;
  213. }
  214. read_unlock(&devs_lock);
  215. return 0;
  216. }
  217. static struct net_device_stats *br2684_get_stats(struct net_device *dev)
  218. {
  219. DPRINTK("br2684_get_statsn");
  220. return &BRPRIV(dev)->stats;
  221. }
  222. #ifdef FASTER_VERSION
  223. /*
  224.  * These mirror eth_header and eth_header_cache.  They are not usually
  225.  * exported for use in modules, so we grab them from net_device
  226.  * after ether_setup() is done with it.  Bit of a hack.
  227.  */
  228. static int (*my_eth_header)(struct sk_buff *, struct net_device *,
  229. unsigned short, void *, void *, unsigned);
  230. static int (*my_eth_header_cache)(struct neighbour *, struct hh_cache *);
  231. static int
  232. br2684_header(struct sk_buff *skb, struct net_device *dev,
  233.       unsigned short type, void *daddr, void *saddr, unsigned len)
  234. {
  235. u16 *pad_before_eth;
  236. int t = my_eth_header(skb, dev, type, daddr, saddr, len);
  237. if (t > 0) {
  238. pad_before_eth = (u16 *) skb_push(skb, 2);
  239. *pad_before_eth = 0;
  240. return dev->hard_header_len; /* or return 16; ? */
  241. } else
  242. return t;
  243. }
  244. static int
  245. br2684_header_cache(struct neighbour *neigh, struct hh_cache *hh)
  246. {
  247. /* hh_data is 16 bytes long. if encaps is ether-llc we need 24, so
  248. xmit will add the additional header part in that case */
  249. u16 *pad_before_eth = (u16 *)(hh->hh_data);
  250. int t = my_eth_header_cache(neigh, hh);
  251. DPRINTK("br2684_header_cache, neigh=%p, hh_cache=%pn", neigh, hh);
  252. if (t < 0)
  253. return t;
  254. else {
  255. *pad_before_eth = 0;
  256. hh->hh_len = PADLEN + ETH_HLEN;
  257. }
  258. return 0;
  259. }
  260. /*
  261.  * This is similar to eth_type_trans, which cannot be used because of
  262.  * our dev->hard_header_len
  263.  */
  264. static inline unsigned short br_type_trans(struct sk_buff *skb,
  265.        struct net_device *dev)
  266. {
  267. struct ethhdr *eth;
  268. unsigned char *rawp;
  269. eth = skb->mac.ethernet;
  270. if (*eth->h_dest & 1) {
  271. if (memcmp(eth->h_dest, dev->broadcast, ETH_ALEN) == 0)
  272. skb->pkt_type = PACKET_BROADCAST;
  273. else
  274. skb->pkt_type = PACKET_MULTICAST;
  275. }
  276. else if (memcmp(eth->h_dest, dev->dev_addr, ETH_ALEN))
  277. skb->pkt_type = PACKET_OTHERHOST;
  278. if (ntohs(eth->h_proto) >= 1536)
  279. return eth->h_proto;
  280. rawp = skb->data;
  281. /*
  282.  * This is a magic hack to spot IPX packets. Older Novell breaks
  283.  * the protocol design and runs IPX over 802.3 without an 802.2 LLC
  284.  * layer. We look for FFFF which isn't a used 802.2 SSAP/DSAP. This
  285.  * won't work for fault tolerant netware but does for the rest.
  286.  */
  287. if (*(unsigned short *) rawp == 0xFFFF)
  288. return htons(ETH_P_802_3);
  289. /*
  290.  * Real 802.2 LLC
  291.  */
  292. return htons(ETH_P_802_2);
  293. }
  294. #endif /* FASTER_VERSION */
  295. /*
  296.  * We remember when the MAC gets set, so we don't override it later with
  297.  * the ESI of the ATM card of the first VC
  298.  */
  299. static int (*my_eth_mac_addr)(struct net_device *, void *);
  300. static int br2684_mac_addr(struct net_device *dev, void *p)
  301. {
  302. int err = my_eth_mac_addr(dev, p);
  303. if (!err)
  304. BRPRIV(dev)->mac_was_set = 1;
  305. return err;
  306. }
  307. #ifdef CONFIG_ATM_BR2684_IPFILTER
  308. /* this IOCTL is experimental. */
  309. static int br2684_setfilt(struct atm_vcc *atmvcc, unsigned long arg)
  310. {
  311. struct br2684_vcc *brvcc;
  312. struct br2684_filter_set fs;
  313. if (copy_from_user(&fs, (void *) arg, sizeof fs))
  314. return -EFAULT;
  315. if (fs.ifspec.method != BR2684_FIND_BYNOTHING) {
  316. /*
  317.  * This is really a per-vcc thing, but we can also search
  318.  * by device
  319.  */
  320. struct br2684_dev *brdev;
  321. read_lock(&devs_lock);
  322. brdev = br2684_find_dev(&fs.ifspec);
  323. if (brdev == NULL || list_empty(&brdev->brvccs) ||
  324.     brdev->brvccs.next != brdev->brvccs.prev)  /* >1 VCC */
  325. brvcc = NULL;
  326. else
  327. brvcc = list_entry_brvcc(brdev->brvccs.next);
  328. read_unlock(&devs_lock);
  329. if (brvcc == NULL)
  330. return -ESRCH;
  331. } else
  332. brvcc = BR2684_VCC(atmvcc);
  333. memcpy(&brvcc->filter, &fs.filter, sizeof(brvcc->filter));
  334. return 0;
  335. }
  336. /* Returns 1 if packet should be dropped */
  337. static inline int
  338. packet_fails_filter(u16 type, struct br2684_vcc *brvcc, struct sk_buff *skb)
  339. {
  340. if (brvcc->filter.netmask == 0)
  341. return 0; /* no filter in place */
  342. if (type == __constant_htons(ETH_P_IP) &&
  343.     (((struct iphdr *) (skb->data))->daddr & brvcc->filter.
  344.      netmask) == brvcc->filter.prefix)
  345. return 0;
  346. if (type == __constant_htons(ETH_P_ARP))
  347. return 0;
  348. /* TODO: we should probably filter ARPs too.. don't want to have
  349.  *   them returning values that don't make sense, or is that ok?
  350.  */
  351. return 1; /* drop */
  352. }
  353. #endif /* CONFIG_ATM_BR2684_IPFILTER */
  354. static void br2684_close_vcc(struct br2684_vcc *brvcc)
  355. {
  356. DPRINTK("removing VCC %p from dev %pn", brvcc, brvcc->brdev);
  357. write_lock_irq(&devs_lock);
  358. list_del(&brvcc->brvccs);
  359. write_unlock_irq(&devs_lock);
  360. brvcc->atmvcc->user_back = NULL; /* what about vcc->recvq ??? */
  361. brvcc->old_push(brvcc->atmvcc, NULL); /* pass on the bad news */
  362. kfree(brvcc);
  363. MOD_DEC_USE_COUNT;
  364. }
  365. /* when AAL5 PDU comes in: */
  366. static void br2684_push(struct atm_vcc *atmvcc, struct sk_buff *skb)
  367. {
  368. struct br2684_vcc *brvcc = BR2684_VCC(atmvcc);
  369. struct br2684_dev *brdev = brvcc->brdev;
  370. int plen = sizeof(llc_oui_pid_pad) + ETH_HLEN;
  371. DPRINTK("br2684_pushn");
  372. if (skb == NULL) { /* skb==NULL means VCC is being destroyed */
  373. br2684_close_vcc(brvcc);
  374. if (list_empty(&brdev->brvccs)) {
  375. read_lock(&devs_lock);
  376. list_del(&brdev->br2684_devs);
  377. read_unlock(&devs_lock);
  378. unregister_netdev(&brdev->net_dev);
  379. kfree(brdev);
  380. }
  381. return;
  382. }
  383. skb_debug(skb);
  384. atm_return(atmvcc, skb->truesize);
  385. DPRINTK("skb from brdev %pn", brdev);
  386. if (brvcc->encaps == e_llc) {
  387. /* let us waste some time for checking the encapsulation.
  388.    Note, that only 7 char is checked so frames with a valid FCS
  389.    are also accepted (but FCS is not checked of course) */
  390. if (memcmp(skb->data, llc_oui_pid_pad, 7)) {
  391. brdev->stats.rx_errors++;
  392. dev_kfree_skb(skb);
  393. return;
  394. }
  395. } else {
  396. plen = PADLEN + ETH_HLEN; /* pad, dstmac,srcmac, ethtype */
  397. /* first 2 chars should be 0 */
  398. if (*((u16 *) (skb->data)) != 0) {
  399. brdev->stats.rx_errors++;
  400. dev_kfree_skb(skb);
  401. return;
  402. }
  403. }
  404. if (skb->len < plen) {
  405. brdev->stats.rx_errors++;
  406. dev_kfree_skb(skb); /* dev_ not needed? */
  407. return;
  408. }
  409. #ifdef FASTER_VERSION
  410. /* FIXME: tcpdump shows that pointer to mac header is 2 bytes earlier,
  411.    than should be. What else should I set? */
  412. skb_pull(skb, plen);
  413. skb->mac.raw = ((char *) (skb->data)) - ETH_HLEN;
  414. skb->pkt_type = PACKET_HOST;
  415. #ifdef CONFIG_BR2684_FAST_TRANS
  416. skb->protocol = ((u16 *) skb->data)[-1];
  417. #else /* some protocols might require this: */
  418. skb->protocol = br_type_trans(skb, &brdev->net_dev);
  419. #endif /* CONFIG_BR2684_FAST_TRANS */
  420. #else
  421. skb_pull(skb, plen - ETH_HLEN);
  422. skb->protocol = eth_type_trans(skb, &brdev->net_dev);
  423. #endif /* FASTER_VERSION */
  424. #ifdef CONFIG_ATM_BR2684_IPFILTER
  425. if (packet_fails_filter(skb->protocol, brvcc, skb)) {
  426. brdev->stats.rx_dropped++;
  427. dev_kfree_skb(skb);
  428. return;
  429. }
  430. #endif /* CONFIG_ATM_BR2684_IPFILTER */
  431. skb->dev = &brdev->net_dev;
  432. ATM_SKB(skb)->vcc = atmvcc; /* needed ? */
  433. DPRINTK("received packet's protocol: %xn", ntohs(skb->protocol));
  434. skb_debug(skb);
  435. if (!(brdev->net_dev.flags & IFF_UP)) { /* sigh, interface is down */
  436. brdev->stats.rx_dropped++;
  437. dev_kfree_skb(skb);
  438. return;
  439. }
  440. brdev->stats.rx_packets++;
  441. brdev->stats.rx_bytes += skb->len;
  442. netif_rx(skb);
  443. }
  444. static int br2684_regvcc(struct atm_vcc *atmvcc, unsigned long arg)
  445. {
  446. /* assign a vcc to a dev
  447. Note: we do not have explicit unassign, but look at _push()
  448. */
  449. int err;
  450. struct br2684_vcc *brvcc;
  451. struct sk_buff_head copy;
  452. struct sk_buff *skb;
  453. struct br2684_dev *brdev;
  454. struct atm_backend_br2684 be;
  455. MOD_INC_USE_COUNT;
  456. if (copy_from_user(&be, (void *) arg, sizeof be)) {
  457. MOD_DEC_USE_COUNT;
  458. return -EFAULT;
  459. }
  460. write_lock_irq(&devs_lock);
  461. brdev = br2684_find_dev(&be.ifspec);
  462. if (brdev == NULL) {
  463. printk(KERN_ERR
  464.     "br2684: tried to attach to non-existant devicen");
  465. err = -ENXIO;
  466. goto error;
  467. }
  468. if (atmvcc->push == NULL) {
  469. err = -EBADFD;
  470. goto error;
  471. }
  472. if (!list_empty(&brdev->brvccs)) { /* Only 1 VCC/dev right now */
  473. err = -EEXIST;
  474. goto error;
  475. }
  476. if (be.fcs_in != BR2684_FCSIN_NO || be.fcs_out != BR2684_FCSOUT_NO ||
  477.     be.fcs_auto || be.has_vpiid || be.send_padding || (be.encaps !=
  478.     BR2684_ENCAPS_VC && be.encaps != BR2684_ENCAPS_LLC) ||
  479.     be.min_size != 0) {
  480. err = -EINVAL;
  481. goto error;
  482. }
  483. brvcc = kmalloc(sizeof(struct br2684_vcc), GFP_KERNEL);
  484. if (!brvcc) {
  485. err = -ENOMEM;
  486. goto error;
  487. }
  488. memset(brvcc, 0, sizeof(struct br2684_vcc));
  489. DPRINTK("br2684_regvcc vcc=%p, encaps=%d, brvcc=%pn", atmvcc, be.encaps,
  490. brvcc);
  491. if (list_empty(&brdev->brvccs) && !brdev->mac_was_set) {
  492. unsigned char *esi = atmvcc->dev->esi;
  493. if (esi[0] | esi[1] | esi[2] | esi[3] | esi[4] | esi[5])
  494. memcpy(brdev->net_dev.dev_addr, esi,
  495.     brdev->net_dev.addr_len);
  496. else
  497. brdev->net_dev.dev_addr[2] = 1;
  498. }
  499. list_add(&brvcc->brvccs, &brdev->brvccs);
  500. write_unlock_irq(&devs_lock);
  501. brvcc->brdev = brdev;
  502. brvcc->atmvcc = atmvcc;
  503. atmvcc->user_back = brvcc;
  504. brvcc->encaps = (enum br2684_encaps) be.encaps;
  505. brvcc->old_push = atmvcc->push;
  506. barrier();
  507. atmvcc->push = br2684_push;
  508. skb_queue_head_init(&copy);
  509. skb_migrate(&atmvcc->recvq, &copy);
  510. while ((skb = skb_dequeue(&copy))) {
  511. BRPRIV(skb->dev)->stats.rx_bytes -= skb->len;
  512. BRPRIV(skb->dev)->stats.rx_packets--;
  513. br2684_push(atmvcc, skb);
  514. }
  515. return 0;
  516.     error:
  517. write_unlock_irq(&devs_lock);
  518. MOD_DEC_USE_COUNT;
  519. return err;
  520. }
  521. static int br2684_create(unsigned long arg)
  522. {
  523. int err;
  524. struct br2684_dev *brdev;
  525. struct atm_newif_br2684 ni;
  526. DPRINTK("br2684_createn");
  527. /*
  528.  * We track module use by vcc's NOT the devices they're on.  We're
  529.  * protected here against module death by the kernel_lock, but if
  530.  * we need to sleep we should make sure that the module doesn't
  531.  * disappear under us.
  532.  */
  533. MOD_INC_USE_COUNT;
  534. if (copy_from_user(&ni, (void *) arg, sizeof ni)) {
  535. MOD_DEC_USE_COUNT;
  536. return -EFAULT;
  537. }
  538. if (ni.media != BR2684_MEDIA_ETHERNET || ni.mtu != 1500) {
  539. MOD_DEC_USE_COUNT;
  540. return -EINVAL;
  541. }
  542. if ((brdev = kmalloc(sizeof(struct br2684_dev), GFP_KERNEL)) == NULL) {
  543. MOD_DEC_USE_COUNT;
  544. return -ENOMEM;
  545. }
  546. memset(brdev, 0, sizeof(struct br2684_dev));
  547. INIT_LIST_HEAD(&brdev->brvccs);
  548. write_lock_irq(&devs_lock);
  549. brdev->number = list_empty(&br2684_devs) ? 1 :
  550.     list_entry_brdev(br2684_devs.prev)->number + 1;
  551. list_add_tail(&brdev->br2684_devs, &br2684_devs);
  552. write_unlock_irq(&devs_lock);
  553. if (ni.ifname[0] != '') {
  554. memcpy(brdev->net_dev.name, ni.ifname,
  555.     sizeof(brdev->net_dev.name));
  556. brdev->net_dev.name[sizeof(brdev->net_dev.name) - 1] = '';
  557. } else
  558. sprintf(brdev->net_dev.name, "nas%d", brdev->number);
  559. DPRINTK("registered netdev %sn", brdev->net_dev.name);
  560. ether_setup(&brdev->net_dev);
  561. brdev->mac_was_set = 0;
  562. #ifdef FASTER_VERSION
  563. my_eth_header = brdev->net_dev.hard_header;
  564. brdev->net_dev.hard_header = br2684_header;
  565. my_eth_header_cache = brdev->net_dev.hard_header_cache;
  566. brdev->net_dev.hard_header_cache = br2684_header_cache;
  567. brdev->net_dev.hard_header_len = sizeof(llc_oui_pid_pad) + ETH_HLEN; /* 10 + 14 */
  568. #endif
  569. my_eth_mac_addr = brdev->net_dev.set_mac_address;
  570. brdev->net_dev.set_mac_address = br2684_mac_addr;
  571. brdev->net_dev.hard_start_xmit = br2684_start_xmit;
  572. brdev->net_dev.get_stats = br2684_get_stats;
  573. /* open, stop, do_ioctl ? */
  574. err = register_netdev(&brdev->net_dev);
  575. MOD_DEC_USE_COUNT;
  576. if (err < 0) {
  577. printk(KERN_ERR "br2684_create: register_netdev failedn");
  578. write_lock_irq(&devs_lock);
  579. list_del(&brdev->br2684_devs);
  580. write_unlock_irq(&devs_lock);
  581. kfree(brdev);
  582. return err;
  583. }
  584. return 0;
  585. }
  586. /*
  587.  * This handles ioctls actually performed on our vcc - we must return
  588.  * -ENOIOCTLCMD for any unrecognized ioctl
  589.  */
  590. static int br2684_ioctl(struct atm_vcc *atmvcc, unsigned int cmd,
  591. unsigned long arg)
  592. {
  593. int err;
  594. switch(cmd) {
  595. case ATM_SETBACKEND:
  596. case ATM_NEWBACKENDIF: {
  597. atm_backend_t b;
  598. MOD_INC_USE_COUNT;
  599. err = get_user(b, (atm_backend_t *) arg);
  600. MOD_DEC_USE_COUNT;
  601. if (err)
  602. return -EFAULT;
  603. if (b != ATM_BACKEND_BR2684)
  604. return -ENOIOCTLCMD;
  605. if (!capable(CAP_NET_ADMIN))
  606. return -EPERM;
  607. if (cmd == ATM_SETBACKEND)
  608. return br2684_regvcc(atmvcc, arg);
  609. else
  610. return br2684_create(arg);
  611. }
  612. #ifdef CONFIG_ATM_BR2684_IPFILTER
  613. case BR2684_SETFILT:
  614. if (atmvcc->push != br2684_push)
  615. return -ENOIOCTLCMD;
  616. if (!capable(CAP_NET_ADMIN))
  617. return -EPERM;
  618. MOD_INC_USE_COUNT;
  619. err = br2684_setfilt(atmvcc, arg);
  620. MOD_DEC_USE_COUNT;
  621. return err;
  622. #endif /* CONFIG_ATM_BR2684_IPFILTER */
  623. }
  624. return -ENOIOCTLCMD;
  625. }
  626. /* Never put more than 256 bytes in at once */
  627. static int br2684_proc_engine(loff_t pos, char *buf)
  628. {
  629. struct list_head *lhd, *lhc;
  630. struct br2684_dev *brdev;
  631. struct br2684_vcc *brvcc;
  632. list_for_each(lhd, &br2684_devs) {
  633. brdev = list_entry_brdev(lhd);
  634. if (pos-- == 0)
  635. return sprintf(buf, "dev %.16s: num=%d, mac=%02X:%02X:"
  636.     "%02X:%02X:%02X:%02X (%s)n", brdev->net_dev.name,
  637.     brdev->number,
  638.     brdev->net_dev.dev_addr[0],
  639.     brdev->net_dev.dev_addr[1],
  640.     brdev->net_dev.dev_addr[2],
  641.     brdev->net_dev.dev_addr[3],
  642.     brdev->net_dev.dev_addr[4],
  643.     brdev->net_dev.dev_addr[5],
  644.     brdev->mac_was_set ? "set" : "auto");
  645. list_for_each(lhc, &brdev->brvccs) {
  646. brvcc = list_entry_brvcc(lhc);
  647. if (pos-- == 0)
  648. return sprintf(buf, "  vcc %d.%d.%d: encaps=%s"
  649. #ifndef FASTER_VERSION
  650.     ", failed copies %u/%u"
  651. #endif /* FASTER_VERSION */
  652.     "n", brvcc->atmvcc->dev->number,
  653.     brvcc->atmvcc->vpi, brvcc->atmvcc->vci,
  654.     (brvcc->encaps == e_llc) ? "LLC" : "VC"
  655. #ifndef FASTER_VERSION
  656.     , brvcc->copies_failed
  657.     , brvcc->copies_needed
  658. #endif /* FASTER_VERSION */
  659.     );
  660. #ifdef CONFIG_ATM_BR2684_IPFILTER
  661. #define b1(var, byte) ((u8 *) &brvcc->filter.var)[byte]
  662. #define bs(var) b1(var, 0), b1(var, 1), b1(var, 2), b1(var, 3)
  663. if (brvcc->filter.netmask != 0 && pos-- == 0)
  664. return sprintf(buf, "    filter=%d.%d.%d.%d/"
  665.     "%d.%d.%d.%dn", bs(prefix), bs(netmask));
  666. #undef bs
  667. #undef b1
  668. #endif /* CONFIG_ATM_BR2684_IPFILTER */
  669. }
  670. }
  671. return 0;
  672. }
  673. static ssize_t br2684_proc_read(struct file *file, char *buf, size_t count,
  674. loff_t *pos)
  675. {
  676. unsigned long page;
  677. int len = 0, x, left;
  678. page = get_free_page(GFP_KERNEL);
  679. if (!page)
  680. return -ENOMEM;
  681. left = PAGE_SIZE - 256;
  682. if (count < left)
  683. left = count;
  684. read_lock(&devs_lock);
  685. for (;;) {
  686. x = br2684_proc_engine(*pos, &((char *) page)[len]);
  687. if (x == 0)
  688. break;
  689. if (x > left)
  690. /*
  691.  * This should only happen if the user passed in
  692.  * a "count" too small for even one line
  693.  */
  694. x = -EINVAL;
  695. if (x < 0) {
  696. len = x;
  697. break;
  698. }
  699. len += x;
  700. left -= x;
  701. (*pos)++;
  702. if (left < 256)
  703. break;
  704. }
  705. read_unlock(&devs_lock);
  706. if (len > 0 && copy_to_user(buf, (char *) page, len))
  707. len = -EFAULT;
  708. free_page(page);
  709. return len;
  710. }
  711. static struct file_operations br2684_proc_operations = {
  712. read: br2684_proc_read,
  713. };
  714. extern struct proc_dir_entry *atm_proc_root; /* from proc.c */
  715. extern int (*br2684_ioctl_hook)(struct atm_vcc *, unsigned int, unsigned long);
  716. /* the following avoids some spurious warnings from the compiler */
  717. #define UNUSED __attribute__((unused))
  718. static int __init UNUSED br2684_init(void)
  719. {
  720. struct proc_dir_entry *p;
  721. if ((p = create_proc_entry("br2684", 0, atm_proc_root)) == NULL)
  722. return -ENOMEM;
  723. p->proc_fops = &br2684_proc_operations;
  724. br2684_ioctl_hook = br2684_ioctl;
  725. return 0;
  726. }
  727. static void __exit UNUSED br2684_exit(void)
  728. {
  729. struct br2684_dev *brdev;
  730. br2684_ioctl_hook = NULL;
  731. remove_proc_entry("br2684", atm_proc_root);
  732. while (!list_empty(&br2684_devs)) {
  733. brdev = list_entry_brdev(br2684_devs.next);
  734. unregister_netdev(&brdev->net_dev);
  735. list_del(&brdev->br2684_devs);
  736. kfree(brdev);
  737. }
  738. }
  739. module_init(br2684_init);
  740. module_exit(br2684_exit);
  741. MODULE_AUTHOR("Marcell GAL");
  742. MODULE_DESCRIPTION("RFC2684 bridged protocols over ATM/AAL5");
  743. MODULE_LICENSE("GPL");