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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Spanning tree protocol; BPDU handling
  3.  * Linux ethernet bridge
  4.  *
  5.  * Authors:
  6.  * Lennert Buytenhek <buytenh@gnu.org>
  7.  *
  8.  * $Id: br_stp_bpdu.c,v 1.3 2001/11/10 02:35:25 davem Exp $
  9.  *
  10.  * This program is free software; you can redistribute it and/or
  11.  * modify it under the terms of the GNU General Public License
  12.  * as published by the Free Software Foundation; either version
  13.  * 2 of the License, or (at your option) any later version.
  14.  */
  15. #include <linux/kernel.h>
  16. #include <linux/if_ether.h>
  17. #include <linux/if_bridge.h>
  18. #include "br_private.h"
  19. #include "br_private_stp.h"
  20. #define JIFFIES_TO_TICKS(j) (((j) << 8) / HZ)
  21. #define TICKS_TO_JIFFIES(j) (((j) * HZ) >> 8)
  22. static void br_send_bpdu(struct net_bridge_port *p, unsigned char *data, int length)
  23. {
  24. struct net_device *dev;
  25. struct sk_buff *skb;
  26. int size;
  27. if (!p->br->stp_enabled)
  28. return;
  29. size = length + 2*ETH_ALEN + 2;
  30. if (size < 60)
  31. size = 60;
  32. dev = p->dev;
  33. if ((skb = dev_alloc_skb(size)) == NULL) {
  34. printk(KERN_INFO "br: memory squeeze!n");
  35. return;
  36. }
  37. skb->dev = dev;
  38. skb->protocol = htons(ETH_P_802_2);
  39. skb->mac.raw = skb_put(skb, size);
  40. memcpy(skb->mac.raw, bridge_ula, ETH_ALEN);
  41. memcpy(skb->mac.raw+ETH_ALEN, dev->dev_addr, ETH_ALEN);
  42. skb->mac.raw[2*ETH_ALEN] = 0;
  43. skb->mac.raw[2*ETH_ALEN+1] = length;
  44. skb->nh.raw = skb->mac.raw + 2*ETH_ALEN + 2;
  45. memcpy(skb->nh.raw, data, length);
  46. memset(skb->nh.raw + length, 0xa5, size - length - 2*ETH_ALEN - 2);
  47. dev_queue_xmit(skb);
  48. }
  49. static __inline__ void br_set_ticks(unsigned char *dest, int jiff)
  50. {
  51. __u16 ticks;
  52. ticks = JIFFIES_TO_TICKS(jiff);
  53. dest[0] = (ticks >> 8) & 0xFF;
  54. dest[1] = ticks & 0xFF;
  55. }
  56. static __inline__ int br_get_ticks(unsigned char *dest)
  57. {
  58. return TICKS_TO_JIFFIES((dest[0] << 8) | dest[1]);
  59. }
  60. /* called under bridge lock */
  61. void br_send_config_bpdu(struct net_bridge_port *p, struct br_config_bpdu *bpdu)
  62. {
  63. unsigned char buf[38];
  64. buf[0] = 0x42;
  65. buf[1] = 0x42;
  66. buf[2] = 0x03;
  67. buf[3] = 0;
  68. buf[4] = 0;
  69. buf[5] = 0;
  70. buf[6] = BPDU_TYPE_CONFIG;
  71. buf[7] = (bpdu->topology_change ? 0x01 : 0) |
  72. (bpdu->topology_change_ack ? 0x80 : 0);
  73. buf[8] = bpdu->root.prio[0];
  74. buf[9] = bpdu->root.prio[1];
  75. buf[10] = bpdu->root.addr[0];
  76. buf[11] = bpdu->root.addr[1];
  77. buf[12] = bpdu->root.addr[2];
  78. buf[13] = bpdu->root.addr[3];
  79. buf[14] = bpdu->root.addr[4];
  80. buf[15] = bpdu->root.addr[5];
  81. buf[16] = (bpdu->root_path_cost >> 24) & 0xFF;
  82. buf[17] = (bpdu->root_path_cost >> 16) & 0xFF;
  83. buf[18] = (bpdu->root_path_cost >> 8) & 0xFF;
  84. buf[19] = bpdu->root_path_cost & 0xFF;
  85. buf[20] = bpdu->bridge_id.prio[0];
  86. buf[21] = bpdu->bridge_id.prio[1];
  87. buf[22] = bpdu->bridge_id.addr[0];
  88. buf[23] = bpdu->bridge_id.addr[1];
  89. buf[24] = bpdu->bridge_id.addr[2];
  90. buf[25] = bpdu->bridge_id.addr[3];
  91. buf[26] = bpdu->bridge_id.addr[4];
  92. buf[27] = bpdu->bridge_id.addr[5];
  93. buf[28] = (bpdu->port_id >> 8) & 0xFF;
  94. buf[29] = bpdu->port_id & 0xFF;
  95. br_set_ticks(buf+30, bpdu->message_age);
  96. br_set_ticks(buf+32, bpdu->max_age);
  97. br_set_ticks(buf+34, bpdu->hello_time);
  98. br_set_ticks(buf+36, bpdu->forward_delay);
  99. br_send_bpdu(p, buf, 38);
  100. }
  101. /* called under bridge lock */
  102. void br_send_tcn_bpdu(struct net_bridge_port *p)
  103. {
  104. unsigned char buf[7];
  105. buf[0] = 0x42;
  106. buf[1] = 0x42;
  107. buf[2] = 0x03;
  108. buf[3] = 0;
  109. buf[4] = 0;
  110. buf[5] = 0;
  111. buf[6] = BPDU_TYPE_TCN;
  112. br_send_bpdu(p, buf, 7);
  113. }
  114. static unsigned char header[6] = {0x42, 0x42, 0x03, 0x00, 0x00, 0x00};
  115. /* called under bridge lock */
  116. void br_stp_handle_bpdu(struct sk_buff *skb)
  117. {
  118. unsigned char *buf;
  119. struct net_bridge_port *p;
  120. buf = skb->mac.raw + 14;
  121. p = skb->dev->br_port;
  122. if (!p->br->stp_enabled || memcmp(buf, header, 6)) {
  123. kfree_skb(skb);
  124. return;
  125. }
  126. if (buf[6] == BPDU_TYPE_CONFIG) {
  127. struct br_config_bpdu bpdu;
  128. bpdu.topology_change = (buf[7] & 0x01) ? 1 : 0;
  129. bpdu.topology_change_ack = (buf[7] & 0x80) ? 1 : 0;
  130. bpdu.root.prio[0] = buf[8];
  131. bpdu.root.prio[1] = buf[9];
  132. bpdu.root.addr[0] = buf[10];
  133. bpdu.root.addr[1] = buf[11];
  134. bpdu.root.addr[2] = buf[12];
  135. bpdu.root.addr[3] = buf[13];
  136. bpdu.root.addr[4] = buf[14];
  137. bpdu.root.addr[5] = buf[15];
  138. bpdu.root_path_cost =
  139. (buf[16] << 24) |
  140. (buf[17] << 16) |
  141. (buf[18] << 8) |
  142. buf[19];
  143. bpdu.bridge_id.prio[0] = buf[20];
  144. bpdu.bridge_id.prio[1] = buf[21];
  145. bpdu.bridge_id.addr[0] = buf[22];
  146. bpdu.bridge_id.addr[1] = buf[23];
  147. bpdu.bridge_id.addr[2] = buf[24];
  148. bpdu.bridge_id.addr[3] = buf[25];
  149. bpdu.bridge_id.addr[4] = buf[26];
  150. bpdu.bridge_id.addr[5] = buf[27];
  151. bpdu.port_id = (buf[28] << 8) | buf[29];
  152. bpdu.message_age = br_get_ticks(buf+30);
  153. bpdu.max_age = br_get_ticks(buf+32);
  154. bpdu.hello_time = br_get_ticks(buf+34);
  155. bpdu.forward_delay = br_get_ticks(buf+36);
  156. kfree_skb(skb);
  157. br_received_config_bpdu(p, &bpdu);
  158. return;
  159. }
  160. if (buf[6] == BPDU_TYPE_TCN) {
  161. br_received_tcn_bpdu(p);
  162. kfree_skb(skb);
  163. return;
  164. }
  165. kfree_skb(skb);
  166. }