br_stp_bpdu.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. /*
  2. * Spanning tree protocol; BPDU handling
  3. * Linux ethernet bridge
  4. *
  5. * Authors:
  6. * Lennert Buytenhek <buytenh@gnu.org>
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version
  11. * 2 of the License, or (at your option) any later version.
  12. */
  13. #include <linux/kernel.h>
  14. #include <linux/netfilter_bridge.h>
  15. #include <linux/etherdevice.h>
  16. #include <linux/llc.h>
  17. #include <linux/slab.h>
  18. #include <linux/pkt_sched.h>
  19. #include <net/net_namespace.h>
  20. #include <net/llc.h>
  21. #include <net/llc_pdu.h>
  22. #include <net/stp.h>
  23. #include <asm/unaligned.h>
  24. #include "br_private.h"
  25. #include "br_private_stp.h"
  26. #define STP_HZ 256
  27. #define LLC_RESERVE sizeof(struct llc_pdu_un)
  28. static int br_send_bpdu_finish(struct net *net, struct sock *sk,
  29. struct sk_buff *skb)
  30. {
  31. return dev_queue_xmit(skb);
  32. }
  33. static void br_send_bpdu(struct net_bridge_port *p,
  34. const unsigned char *data, int length)
  35. {
  36. struct sk_buff *skb;
  37. skb = dev_alloc_skb(length+LLC_RESERVE);
  38. if (!skb)
  39. return;
  40. skb->dev = p->dev;
  41. skb->protocol = htons(ETH_P_802_2);
  42. skb->priority = TC_PRIO_CONTROL;
  43. skb_reserve(skb, LLC_RESERVE);
  44. memcpy(__skb_put(skb, length), data, length);
  45. llc_pdu_header_init(skb, LLC_PDU_TYPE_U, LLC_SAP_BSPAN,
  46. LLC_SAP_BSPAN, LLC_PDU_CMD);
  47. llc_pdu_init_as_ui_cmd(skb);
  48. llc_mac_hdr_init(skb, p->dev->dev_addr, p->br->group_addr);
  49. skb_reset_mac_header(skb);
  50. NF_HOOK(NFPROTO_BRIDGE, NF_BR_LOCAL_OUT,
  51. dev_net(p->dev), NULL, skb, NULL, skb->dev,
  52. br_send_bpdu_finish);
  53. }
  54. static inline void br_set_ticks(unsigned char *dest, int j)
  55. {
  56. unsigned long ticks = (STP_HZ * j)/ HZ;
  57. put_unaligned_be16(ticks, dest);
  58. }
  59. static inline int br_get_ticks(const unsigned char *src)
  60. {
  61. unsigned long ticks = get_unaligned_be16(src);
  62. return DIV_ROUND_UP(ticks * HZ, STP_HZ);
  63. }
  64. /* called under bridge lock */
  65. void br_send_config_bpdu(struct net_bridge_port *p, struct br_config_bpdu *bpdu)
  66. {
  67. unsigned char buf[35];
  68. if (p->br->stp_enabled != BR_KERNEL_STP)
  69. return;
  70. buf[0] = 0;
  71. buf[1] = 0;
  72. buf[2] = 0;
  73. buf[3] = BPDU_TYPE_CONFIG;
  74. buf[4] = (bpdu->topology_change ? 0x01 : 0) |
  75. (bpdu->topology_change_ack ? 0x80 : 0);
  76. buf[5] = bpdu->root.prio[0];
  77. buf[6] = bpdu->root.prio[1];
  78. buf[7] = bpdu->root.addr[0];
  79. buf[8] = bpdu->root.addr[1];
  80. buf[9] = bpdu->root.addr[2];
  81. buf[10] = bpdu->root.addr[3];
  82. buf[11] = bpdu->root.addr[4];
  83. buf[12] = bpdu->root.addr[5];
  84. buf[13] = (bpdu->root_path_cost >> 24) & 0xFF;
  85. buf[14] = (bpdu->root_path_cost >> 16) & 0xFF;
  86. buf[15] = (bpdu->root_path_cost >> 8) & 0xFF;
  87. buf[16] = bpdu->root_path_cost & 0xFF;
  88. buf[17] = bpdu->bridge_id.prio[0];
  89. buf[18] = bpdu->bridge_id.prio[1];
  90. buf[19] = bpdu->bridge_id.addr[0];
  91. buf[20] = bpdu->bridge_id.addr[1];
  92. buf[21] = bpdu->bridge_id.addr[2];
  93. buf[22] = bpdu->bridge_id.addr[3];
  94. buf[23] = bpdu->bridge_id.addr[4];
  95. buf[24] = bpdu->bridge_id.addr[5];
  96. buf[25] = (bpdu->port_id >> 8) & 0xFF;
  97. buf[26] = bpdu->port_id & 0xFF;
  98. br_set_ticks(buf+27, bpdu->message_age);
  99. br_set_ticks(buf+29, bpdu->max_age);
  100. br_set_ticks(buf+31, bpdu->hello_time);
  101. br_set_ticks(buf+33, bpdu->forward_delay);
  102. br_send_bpdu(p, buf, 35);
  103. }
  104. /* called under bridge lock */
  105. void br_send_tcn_bpdu(struct net_bridge_port *p)
  106. {
  107. unsigned char buf[4];
  108. if (p->br->stp_enabled != BR_KERNEL_STP)
  109. return;
  110. buf[0] = 0;
  111. buf[1] = 0;
  112. buf[2] = 0;
  113. buf[3] = BPDU_TYPE_TCN;
  114. br_send_bpdu(p, buf, 4);
  115. }
  116. /*
  117. * Called from llc.
  118. *
  119. * NO locks, but rcu_read_lock
  120. */
  121. void br_stp_rcv(const struct stp_proto *proto, struct sk_buff *skb,
  122. struct net_device *dev)
  123. {
  124. const unsigned char *dest = eth_hdr(skb)->h_dest;
  125. struct net_bridge_port *p;
  126. struct net_bridge *br;
  127. const unsigned char *buf;
  128. if (!pskb_may_pull(skb, 4))
  129. goto err;
  130. /* compare of protocol id and version */
  131. buf = skb->data;
  132. if (buf[0] != 0 || buf[1] != 0 || buf[2] != 0)
  133. goto err;
  134. p = br_port_get_check_rcu(dev);
  135. if (!p)
  136. goto err;
  137. br = p->br;
  138. spin_lock(&br->lock);
  139. if (br->stp_enabled != BR_KERNEL_STP)
  140. goto out;
  141. if (!(br->dev->flags & IFF_UP))
  142. goto out;
  143. if (p->state == BR_STATE_DISABLED)
  144. goto out;
  145. if (!ether_addr_equal(dest, br->group_addr))
  146. goto out;
  147. if (p->flags & BR_BPDU_GUARD) {
  148. br_notice(br, "BPDU received on blocked port %u(%s)\n",
  149. (unsigned int) p->port_no, p->dev->name);
  150. br_stp_disable_port(p);
  151. goto out;
  152. }
  153. buf = skb_pull(skb, 3);
  154. if (buf[0] == BPDU_TYPE_CONFIG) {
  155. struct br_config_bpdu bpdu;
  156. if (!pskb_may_pull(skb, 32))
  157. goto out;
  158. buf = skb->data;
  159. bpdu.topology_change = (buf[1] & 0x01) ? 1 : 0;
  160. bpdu.topology_change_ack = (buf[1] & 0x80) ? 1 : 0;
  161. bpdu.root.prio[0] = buf[2];
  162. bpdu.root.prio[1] = buf[3];
  163. bpdu.root.addr[0] = buf[4];
  164. bpdu.root.addr[1] = buf[5];
  165. bpdu.root.addr[2] = buf[6];
  166. bpdu.root.addr[3] = buf[7];
  167. bpdu.root.addr[4] = buf[8];
  168. bpdu.root.addr[5] = buf[9];
  169. bpdu.root_path_cost =
  170. (buf[10] << 24) |
  171. (buf[11] << 16) |
  172. (buf[12] << 8) |
  173. buf[13];
  174. bpdu.bridge_id.prio[0] = buf[14];
  175. bpdu.bridge_id.prio[1] = buf[15];
  176. bpdu.bridge_id.addr[0] = buf[16];
  177. bpdu.bridge_id.addr[1] = buf[17];
  178. bpdu.bridge_id.addr[2] = buf[18];
  179. bpdu.bridge_id.addr[3] = buf[19];
  180. bpdu.bridge_id.addr[4] = buf[20];
  181. bpdu.bridge_id.addr[5] = buf[21];
  182. bpdu.port_id = (buf[22] << 8) | buf[23];
  183. bpdu.message_age = br_get_ticks(buf+24);
  184. bpdu.max_age = br_get_ticks(buf+26);
  185. bpdu.hello_time = br_get_ticks(buf+28);
  186. bpdu.forward_delay = br_get_ticks(buf+30);
  187. if (bpdu.message_age > bpdu.max_age) {
  188. if (net_ratelimit())
  189. br_notice(p->br,
  190. "port %u config from %pM"
  191. " (message_age %ul > max_age %ul)\n",
  192. p->port_no,
  193. eth_hdr(skb)->h_source,
  194. bpdu.message_age, bpdu.max_age);
  195. goto out;
  196. }
  197. br_received_config_bpdu(p, &bpdu);
  198. } else if (buf[0] == BPDU_TYPE_TCN) {
  199. br_received_tcn_bpdu(p);
  200. }
  201. out:
  202. spin_unlock(&br->lock);
  203. err:
  204. kfree_skb(skb);
  205. }