diff options
author | Marek Lindner <lindner_marek@yahoo.de> | 2010-12-12 16:57:10 -0500 |
---|---|---|
committer | Marek Lindner <lindner_marek@yahoo.de> | 2011-03-05 06:49:52 -0500 |
commit | a8e7f4bc38c4a90ee308cd7f1f8604f71db59d05 (patch) | |
tree | eaad8069534691aaa06b316ce42fbeb81f380b20 /net/batman-adv/originator.c | |
parent | 8d689218568174955129d0f0e9e4370a391b3609 (diff) |
batman-adv: protect neighbor nodes with reference counters
Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
Diffstat (limited to 'net/batman-adv/originator.c')
-rw-r--r-- | net/batman-adv/originator.c | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/net/batman-adv/originator.c b/net/batman-adv/originator.c index 54863c9385de..b1b1773afa0b 100644 --- a/net/batman-adv/originator.c +++ b/net/batman-adv/originator.c | |||
@@ -59,9 +59,18 @@ err: | |||
59 | return 0; | 59 | return 0; |
60 | } | 60 | } |
61 | 61 | ||
62 | struct neigh_node * | 62 | void neigh_node_free_ref(struct kref *refcount) |
63 | create_neighbor(struct orig_node *orig_node, struct orig_node *orig_neigh_node, | 63 | { |
64 | uint8_t *neigh, struct batman_if *if_incoming) | 64 | struct neigh_node *neigh_node; |
65 | |||
66 | neigh_node = container_of(refcount, struct neigh_node, refcount); | ||
67 | kfree(neigh_node); | ||
68 | } | ||
69 | |||
70 | struct neigh_node *create_neighbor(struct orig_node *orig_node, | ||
71 | struct orig_node *orig_neigh_node, | ||
72 | uint8_t *neigh, | ||
73 | struct batman_if *if_incoming) | ||
65 | { | 74 | { |
66 | struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface); | 75 | struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface); |
67 | struct neigh_node *neigh_node; | 76 | struct neigh_node *neigh_node; |
@@ -78,6 +87,7 @@ create_neighbor(struct orig_node *orig_node, struct orig_node *orig_neigh_node, | |||
78 | memcpy(neigh_node->addr, neigh, ETH_ALEN); | 87 | memcpy(neigh_node->addr, neigh, ETH_ALEN); |
79 | neigh_node->orig_node = orig_neigh_node; | 88 | neigh_node->orig_node = orig_neigh_node; |
80 | neigh_node->if_incoming = if_incoming; | 89 | neigh_node->if_incoming = if_incoming; |
90 | kref_init(&neigh_node->refcount); | ||
81 | 91 | ||
82 | list_add_tail(&neigh_node->list, &orig_node->neigh_list); | 92 | list_add_tail(&neigh_node->list, &orig_node->neigh_list); |
83 | return neigh_node; | 93 | return neigh_node; |
@@ -95,7 +105,7 @@ static void free_orig_node(void *data, void *arg) | |||
95 | neigh_node = list_entry(list_pos, struct neigh_node, list); | 105 | neigh_node = list_entry(list_pos, struct neigh_node, list); |
96 | 106 | ||
97 | list_del(list_pos); | 107 | list_del(list_pos); |
98 | kfree(neigh_node); | 108 | kref_put(&neigh_node->refcount, neigh_node_free_ref); |
99 | } | 109 | } |
100 | 110 | ||
101 | frag_list_free(&orig_node->frag_list); | 111 | frag_list_free(&orig_node->frag_list); |
@@ -216,7 +226,7 @@ static bool purge_orig_neighbors(struct bat_priv *bat_priv, | |||
216 | 226 | ||
217 | neigh_purged = true; | 227 | neigh_purged = true; |
218 | list_del(list_pos); | 228 | list_del(list_pos); |
219 | kfree(neigh_node); | 229 | kref_put(&neigh_node->refcount, neigh_node_free_ref); |
220 | } else { | 230 | } else { |
221 | if ((!*best_neigh_node) || | 231 | if ((!*best_neigh_node) || |
222 | (neigh_node->tq_avg > (*best_neigh_node)->tq_avg)) | 232 | (neigh_node->tq_avg > (*best_neigh_node)->tq_avg)) |