originator.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /* Copyright (C) 2007-2014 B.A.T.M.A.N. contributors:
  2. *
  3. * Marek Lindner, Simon Wunderlich
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of version 2 of the GNU General Public
  7. * License as published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but
  10. * WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #ifndef _NET_BATMAN_ADV_ORIGINATOR_H_
  18. #define _NET_BATMAN_ADV_ORIGINATOR_H_
  19. #include "hash.h"
  20. int batadv_compare_orig(const struct hlist_node *node, const void *data2);
  21. int batadv_originator_init(struct batadv_priv *bat_priv);
  22. void batadv_originator_free(struct batadv_priv *bat_priv);
  23. void batadv_purge_orig_ref(struct batadv_priv *bat_priv);
  24. void batadv_orig_node_free_ref(struct batadv_orig_node *orig_node);
  25. void batadv_orig_node_free_ref_now(struct batadv_orig_node *orig_node);
  26. struct batadv_orig_node *batadv_orig_node_new(struct batadv_priv *bat_priv,
  27. const uint8_t *addr);
  28. struct batadv_neigh_node *
  29. batadv_neigh_node_get(const struct batadv_orig_node *orig_node,
  30. const struct batadv_hard_iface *hard_iface,
  31. const uint8_t *addr);
  32. struct batadv_neigh_node *
  33. batadv_neigh_node_new(struct batadv_hard_iface *hard_iface,
  34. const uint8_t *neigh_addr,
  35. struct batadv_orig_node *orig_node);
  36. void batadv_neigh_node_free_ref(struct batadv_neigh_node *neigh_node);
  37. struct batadv_neigh_node *
  38. batadv_orig_router_get(struct batadv_orig_node *orig_node,
  39. const struct batadv_hard_iface *if_outgoing);
  40. struct batadv_neigh_ifinfo *
  41. batadv_neigh_ifinfo_new(struct batadv_neigh_node *neigh,
  42. struct batadv_hard_iface *if_outgoing);
  43. struct batadv_neigh_ifinfo *
  44. batadv_neigh_ifinfo_get(struct batadv_neigh_node *neigh,
  45. struct batadv_hard_iface *if_outgoing);
  46. void batadv_neigh_ifinfo_free_ref(struct batadv_neigh_ifinfo *neigh_ifinfo);
  47. struct batadv_orig_ifinfo *
  48. batadv_orig_ifinfo_get(struct batadv_orig_node *orig_node,
  49. struct batadv_hard_iface *if_outgoing);
  50. struct batadv_orig_ifinfo *
  51. batadv_orig_ifinfo_new(struct batadv_orig_node *orig_node,
  52. struct batadv_hard_iface *if_outgoing);
  53. void batadv_orig_ifinfo_free_ref(struct batadv_orig_ifinfo *orig_ifinfo);
  54. int batadv_orig_seq_print_text(struct seq_file *seq, void *offset);
  55. int batadv_orig_hardif_seq_print_text(struct seq_file *seq, void *offset);
  56. int batadv_orig_hash_add_if(struct batadv_hard_iface *hard_iface,
  57. int max_if_num);
  58. int batadv_orig_hash_del_if(struct batadv_hard_iface *hard_iface,
  59. int max_if_num);
  60. struct batadv_orig_node_vlan *
  61. batadv_orig_node_vlan_new(struct batadv_orig_node *orig_node,
  62. unsigned short vid);
  63. struct batadv_orig_node_vlan *
  64. batadv_orig_node_vlan_get(struct batadv_orig_node *orig_node,
  65. unsigned short vid);
  66. void batadv_orig_node_vlan_free_ref(struct batadv_orig_node_vlan *orig_vlan);
  67. /* hashfunction to choose an entry in a hash table of given size
  68. * hash algorithm from http://en.wikipedia.org/wiki/Hash_table
  69. */
  70. static inline uint32_t batadv_choose_orig(const void *data, uint32_t size)
  71. {
  72. const unsigned char *key = data;
  73. uint32_t hash = 0;
  74. size_t i;
  75. for (i = 0; i < 6; i++) {
  76. hash += key[i];
  77. hash += (hash << 10);
  78. hash ^= (hash >> 6);
  79. }
  80. hash += (hash << 3);
  81. hash ^= (hash >> 11);
  82. hash += (hash << 15);
  83. return hash % size;
  84. }
  85. static inline struct batadv_orig_node *
  86. batadv_orig_hash_find(struct batadv_priv *bat_priv, const void *data)
  87. {
  88. struct batadv_hashtable *hash = bat_priv->orig_hash;
  89. struct hlist_head *head;
  90. struct batadv_orig_node *orig_node, *orig_node_tmp = NULL;
  91. int index;
  92. if (!hash)
  93. return NULL;
  94. index = batadv_choose_orig(data, hash->size);
  95. head = &hash->table[index];
  96. rcu_read_lock();
  97. hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
  98. if (!batadv_compare_eth(orig_node, data))
  99. continue;
  100. if (!atomic_inc_not_zero(&orig_node->refcount))
  101. continue;
  102. orig_node_tmp = orig_node;
  103. break;
  104. }
  105. rcu_read_unlock();
  106. return orig_node_tmp;
  107. }
  108. #endif /* _NET_BATMAN_ADV_ORIGINATOR_H_ */