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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * NET3: Support for 802.2 demultiplexing off Ethernet (Token ring
  3.  * is kept separate see p8022tr.c)
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version
  7.  * 2 of the License, or (at your option) any later version.
  8.  *
  9.  * Demultiplex 802.2 encoded protocols. We match the entry by the
  10.  * SSAP/DSAP pair and then deliver to the registered datalink that
  11.  * matches. The control byte is ignored and handling of such items
  12.  * is up to the routine passed the frame.
  13.  *
  14.  * Unlike the 802.3 datalink we have a list of 802.2 entries as there
  15.  * are multiple protocols to demux. The list is currently short (3 or
  16.  * 4 entries at most). The current demux assumes this.
  17.  */
  18. #include <linux/module.h>
  19. #include <linux/netdevice.h>
  20. #include <linux/skbuff.h>
  21. #include <net/datalink.h>
  22. #include <linux/mm.h>
  23. #include <linux/in.h>
  24. #include <linux/init.h>
  25. #include <net/p8022.h>
  26. static struct datalink_proto *p8022_list = NULL;
  27. /*
  28.  * We don't handle the loopback SAP stuff, the extended
  29.  * 802.2 command set, multicast SAP identifiers and non UI
  30.  * frames. We have the absolute minimum needed for IPX,
  31.  * IP and Appletalk phase 2. See the llc_* routines for
  32.  * support libraries if your protocol needs these.
  33.  */
  34. static struct datalink_proto *find_8022_client(unsigned char type)
  35. {
  36. struct datalink_proto *proto;
  37. for (proto = p8022_list;
  38. ((proto != NULL) && (*(proto->type) != type));
  39. proto = proto->next)
  40. ;
  41. return proto;
  42. }
  43. int p8022_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt)
  44. {
  45. struct datalink_proto *proto;
  46. proto = find_8022_client(*(skb->h.raw));
  47. if (proto != NULL) 
  48. {
  49. skb->h.raw += 3;
  50. skb->nh.raw += 3;
  51. skb_pull(skb,3);
  52. return proto->rcvfunc(skb, dev, pt);
  53. }
  54. skb->sk = NULL;
  55. kfree_skb(skb);
  56. return 0;
  57. }
  58. static void p8022_datalink_header(struct datalink_proto *dl,
  59. struct sk_buff *skb, unsigned char *dest_node)
  60. {
  61. struct net_device *dev = skb->dev;
  62. unsigned char *rawp;
  63. rawp = skb_push(skb,3);
  64. *rawp++ = dl->type[0];
  65. *rawp++ = dl->type[0];
  66. *rawp = 0x03; /* UI */
  67. dev->hard_header(skb, dev, ETH_P_802_3, dest_node, NULL, skb->len);
  68. }
  69. static struct packet_type p8022_packet_type =
  70. {
  71. 0, /* MUTTER ntohs(ETH_P_8022),*/
  72. NULL, /* All devices */
  73. p8022_rcv,
  74. NULL,
  75. NULL,
  76. };
  77. EXPORT_SYMBOL(register_8022_client);
  78. EXPORT_SYMBOL(unregister_8022_client);
  79. static int __init p8022_init(void)
  80. {
  81. p8022_packet_type.type=htons(ETH_P_802_2);
  82. dev_add_pack(&p8022_packet_type);
  83. return 0;
  84. }
  85. module_init(p8022_init);
  86. struct datalink_proto *register_8022_client(unsigned char type, int (*rcvfunc)(struct sk_buff *, struct net_device *, struct packet_type *))
  87. {
  88. struct datalink_proto *proto;
  89. if (find_8022_client(type) != NULL)
  90. return NULL;
  91. proto = (struct datalink_proto *) kmalloc(sizeof(*proto), GFP_ATOMIC);
  92. if (proto != NULL) {
  93. proto->type[0] = type;
  94. proto->type_len = 1;
  95. proto->rcvfunc = rcvfunc;
  96. proto->header_length = 3;
  97. proto->datalink_header = p8022_datalink_header;
  98. proto->string_name = "802.2";
  99. proto->next = p8022_list;
  100. p8022_list = proto;
  101. }
  102. return proto;
  103. }
  104. void unregister_8022_client(unsigned char type)
  105. {
  106. struct datalink_proto *tmp, **clients = &p8022_list;
  107. unsigned long flags;
  108. save_flags(flags);
  109. cli();
  110. while ((tmp = *clients) != NULL)
  111. {
  112. if (tmp->type[0] == type) {
  113. *clients = tmp->next;
  114. kfree(tmp);
  115. break;
  116. } else {
  117. clients = &tmp->next;
  118. }
  119. }
  120. restore_flags(flags);
  121. }