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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Forwarding database
  3.  * Linux ethernet bridge
  4.  *
  5.  * Authors:
  6.  * Lennert Buytenhek <buytenh@gnu.org>
  7.  *
  8.  * $Id: br_fdb.c,v 1.5.2.1 2002/01/17 00:59:01 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/spinlock.h>
  17. #include <linux/if_bridge.h>
  18. #include <asm/atomic.h>
  19. #include <asm/uaccess.h>
  20. #include "br_private.h"
  21. static __inline__ unsigned long __timeout(struct net_bridge *br)
  22. {
  23. unsigned long timeout;
  24. timeout = jiffies - br->ageing_time;
  25. if (br->topology_change)
  26. timeout = jiffies - br->forward_delay;
  27. return timeout;
  28. }
  29. static __inline__ int has_expired(struct net_bridge *br,
  30.   struct net_bridge_fdb_entry *fdb)
  31. {
  32. if (!fdb->is_static &&
  33.     time_before_eq(fdb->ageing_timer, __timeout(br)))
  34. return 1;
  35. return 0;
  36. }
  37. static __inline__ void copy_fdb(struct __fdb_entry *ent, struct net_bridge_fdb_entry *f)
  38. {
  39. memset(ent, 0, sizeof(struct __fdb_entry));
  40. memcpy(ent->mac_addr, f->addr.addr, ETH_ALEN);
  41. ent->port_no = f->dst?f->dst->port_no:0;
  42. ent->is_local = f->is_local;
  43. ent->ageing_timer_value = 0;
  44. if (!f->is_static)
  45. ent->ageing_timer_value = jiffies - f->ageing_timer;
  46. }
  47. static __inline__ int br_mac_hash(unsigned char *mac)
  48. {
  49. unsigned long x;
  50. x = mac[0];
  51. x = (x << 2) ^ mac[1];
  52. x = (x << 2) ^ mac[2];
  53. x = (x << 2) ^ mac[3];
  54. x = (x << 2) ^ mac[4];
  55. x = (x << 2) ^ mac[5];
  56. x ^= x >> 8;
  57. return x & (BR_HASH_SIZE - 1);
  58. }
  59. static __inline__ void __hash_link(struct net_bridge *br,
  60.    struct net_bridge_fdb_entry *ent,
  61.    int hash)
  62. {
  63. ent->next_hash = br->hash[hash];
  64. if (ent->next_hash != NULL)
  65. ent->next_hash->pprev_hash = &ent->next_hash;
  66. br->hash[hash] = ent;
  67. ent->pprev_hash = &br->hash[hash];
  68. }
  69. static __inline__ void __hash_unlink(struct net_bridge_fdb_entry *ent)
  70. {
  71. *(ent->pprev_hash) = ent->next_hash;
  72. if (ent->next_hash != NULL)
  73. ent->next_hash->pprev_hash = ent->pprev_hash;
  74. ent->next_hash = NULL;
  75. ent->pprev_hash = NULL;
  76. }
  77. void br_fdb_changeaddr(struct net_bridge_port *p, unsigned char *newaddr)
  78. {
  79. struct net_bridge *br;
  80. int i;
  81. br = p->br;
  82. write_lock_bh(&br->hash_lock);
  83. for (i=0;i<BR_HASH_SIZE;i++) {
  84. struct net_bridge_fdb_entry *f;
  85. f = br->hash[i];
  86. while (f != NULL) {
  87. if (f->dst == p && f->is_local) {
  88. __hash_unlink(f);
  89. memcpy(f->addr.addr, newaddr, ETH_ALEN);
  90. __hash_link(br, f, br_mac_hash(newaddr));
  91. write_unlock_bh(&br->hash_lock);
  92. return;
  93. }
  94. f = f->next_hash;
  95. }
  96. }
  97. write_unlock_bh(&br->hash_lock);
  98. }
  99. void br_fdb_cleanup(struct net_bridge *br)
  100. {
  101. int i;
  102. unsigned long timeout;
  103. timeout = __timeout(br);
  104. write_lock_bh(&br->hash_lock);
  105. for (i=0;i<BR_HASH_SIZE;i++) {
  106. struct net_bridge_fdb_entry *f;
  107. f = br->hash[i];
  108. while (f != NULL) {
  109. struct net_bridge_fdb_entry *g;
  110. g = f->next_hash;
  111. if (!f->is_static &&
  112.     time_before_eq(f->ageing_timer, timeout)) {
  113. __hash_unlink(f);
  114. br_fdb_put(f);
  115. }
  116. f = g;
  117. }
  118. }
  119. write_unlock_bh(&br->hash_lock);
  120. }
  121. void br_fdb_delete_by_port(struct net_bridge *br, struct net_bridge_port *p)
  122. {
  123. int i;
  124. write_lock_bh(&br->hash_lock);
  125. for (i=0;i<BR_HASH_SIZE;i++) {
  126. struct net_bridge_fdb_entry *f;
  127. f = br->hash[i];
  128. while (f != NULL) {
  129. struct net_bridge_fdb_entry *g;
  130. g = f->next_hash;
  131. if (f->dst == p) {
  132. __hash_unlink(f);
  133. br_fdb_put(f);
  134. }
  135. f = g;
  136. }
  137. }
  138. write_unlock_bh(&br->hash_lock);
  139. }
  140. struct net_bridge_fdb_entry *br_fdb_get(struct net_bridge *br, unsigned char *addr)
  141. {
  142. struct net_bridge_fdb_entry *fdb;
  143. read_lock_bh(&br->hash_lock);
  144. fdb = br->hash[br_mac_hash(addr)];
  145. while (fdb != NULL) {
  146. if (!memcmp(fdb->addr.addr, addr, ETH_ALEN)) {
  147. if (!has_expired(br, fdb)) {
  148. atomic_inc(&fdb->use_count);
  149. read_unlock_bh(&br->hash_lock);
  150. return fdb;
  151. }
  152. read_unlock_bh(&br->hash_lock);
  153. return NULL;
  154. }
  155. fdb = fdb->next_hash;
  156. }
  157. read_unlock_bh(&br->hash_lock);
  158. return NULL;
  159. }
  160. void br_fdb_put(struct net_bridge_fdb_entry *ent)
  161. {
  162. if (atomic_dec_and_test(&ent->use_count))
  163. kfree(ent);
  164. }
  165. int br_fdb_get_entries(struct net_bridge *br,
  166.        unsigned char *_buf,
  167.        int maxnum,
  168.        int offset)
  169. {
  170. int i;
  171. int num;
  172. struct __fdb_entry *walk;
  173. num = 0;
  174. walk = (struct __fdb_entry *)_buf;
  175. read_lock_bh(&br->hash_lock);
  176. for (i=0;i<BR_HASH_SIZE;i++) {
  177. struct net_bridge_fdb_entry *f;
  178. f = br->hash[i];
  179. while (f != NULL && num < maxnum) {
  180. struct __fdb_entry ent;
  181. int err;
  182. struct net_bridge_fdb_entry *g;
  183. struct net_bridge_fdb_entry **pp; 
  184. if (has_expired(br, f)) {
  185. f = f->next_hash;
  186. continue;
  187. }
  188. if (offset) {
  189. offset--;
  190. f = f->next_hash;
  191. continue;
  192. }
  193. copy_fdb(&ent, f);
  194. atomic_inc(&f->use_count);
  195. read_unlock_bh(&br->hash_lock);
  196. err = copy_to_user(walk, &ent, sizeof(struct __fdb_entry));
  197. read_lock_bh(&br->hash_lock);
  198. g = f->next_hash;
  199. pp = f->pprev_hash;
  200. br_fdb_put(f);
  201. if (err)
  202. goto out_fault;
  203. if (g == NULL && pp == NULL)
  204. goto out_disappeared;
  205. num++;
  206. walk++;
  207. f = g;
  208. }
  209. }
  210.  out:
  211. read_unlock_bh(&br->hash_lock);
  212. return num;
  213.  out_disappeared:
  214. num = -EAGAIN;
  215. goto out;
  216.  out_fault:
  217. num = -EFAULT;
  218. goto out;
  219. }
  220. static __inline__ void __fdb_possibly_replace(struct net_bridge_fdb_entry *fdb,
  221.       struct net_bridge_port *source,
  222.       int is_local)
  223. {
  224. if (!fdb->is_static || is_local) {
  225. fdb->dst = source;
  226. fdb->is_local = is_local;
  227. fdb->is_static = is_local;
  228. fdb->ageing_timer = jiffies;
  229. }
  230. }
  231. void br_fdb_insert(struct net_bridge *br,
  232.    struct net_bridge_port *source,
  233.    unsigned char *addr,
  234.    int is_local)
  235. {
  236. struct net_bridge_fdb_entry *fdb;
  237. int hash;
  238. hash = br_mac_hash(addr);
  239. write_lock_bh(&br->hash_lock);
  240. fdb = br->hash[hash];
  241. while (fdb != NULL) {
  242. if (!fdb->is_local &&
  243.     !memcmp(fdb->addr.addr, addr, ETH_ALEN)) {
  244. __fdb_possibly_replace(fdb, source, is_local);
  245. write_unlock_bh(&br->hash_lock);
  246. return;
  247. }
  248. fdb = fdb->next_hash;
  249. }
  250. fdb = kmalloc(sizeof(*fdb), GFP_ATOMIC);
  251. if (fdb == NULL) {
  252. write_unlock_bh(&br->hash_lock);
  253. return;
  254. }
  255. memcpy(fdb->addr.addr, addr, ETH_ALEN);
  256. atomic_set(&fdb->use_count, 1);
  257. fdb->dst = source;
  258. fdb->is_local = is_local;
  259. fdb->is_static = is_local;
  260. fdb->ageing_timer = jiffies;
  261. __hash_link(br, fdb, hash);
  262. write_unlock_bh(&br->hash_lock);
  263. }