Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1 | /* |
Sven Eckelmann | 64afe35 | 2011-01-27 10:38:15 +0100 | [diff] [blame] | 2 | * Copyright (C) 2007-2011 B.A.T.M.A.N. contributors: |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 3 | * |
| 4 | * Marek Lindner, Simon Wunderlich |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of version 2 of the GNU General Public |
| 8 | * License as published by the Free Software Foundation. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, but |
| 11 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 | * General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
| 18 | * 02110-1301, USA |
| 19 | * |
| 20 | */ |
| 21 | |
| 22 | #include "main.h" |
| 23 | #include "routing.h" |
| 24 | #include "send.h" |
| 25 | #include "hash.h" |
| 26 | #include "soft-interface.h" |
| 27 | #include "hard-interface.h" |
| 28 | #include "icmp_socket.h" |
| 29 | #include "translation-table.h" |
| 30 | #include "originator.h" |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 31 | #include "ring_buffer.h" |
| 32 | #include "vis.h" |
| 33 | #include "aggregation.h" |
| 34 | #include "gateway_common.h" |
| 35 | #include "gateway_client.h" |
| 36 | #include "unicast.h" |
| 37 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 38 | void slide_own_bcast_window(struct hard_iface *hard_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 39 | { |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 40 | struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 41 | struct hashtable_t *hash = bat_priv->orig_hash; |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 42 | struct hlist_node *node; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 43 | struct hlist_head *head; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 44 | struct orig_node *orig_node; |
| 45 | unsigned long *word; |
| 46 | int i; |
| 47 | size_t word_index; |
| 48 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 49 | for (i = 0; i < hash->size; i++) { |
| 50 | head = &hash->table[i]; |
| 51 | |
Marek Lindner | fb778ea | 2011-01-19 20:01:40 +0000 | [diff] [blame] | 52 | rcu_read_lock(); |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 53 | hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) { |
Marek Lindner | 2ae2daf | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 54 | spin_lock_bh(&orig_node->ogm_cnt_lock); |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 55 | word_index = hard_iface->if_num * NUM_WORDS; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 56 | word = &(orig_node->bcast_own[word_index]); |
| 57 | |
| 58 | bit_get_packet(bat_priv, word, 1, 0); |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 59 | orig_node->bcast_own_sum[hard_iface->if_num] = |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 60 | bit_packet_count(word); |
Marek Lindner | 2ae2daf | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 61 | spin_unlock_bh(&orig_node->ogm_cnt_lock); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 62 | } |
Marek Lindner | fb778ea | 2011-01-19 20:01:40 +0000 | [diff] [blame] | 63 | rcu_read_unlock(); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 64 | } |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 65 | } |
| 66 | |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 67 | static void update_TT(struct bat_priv *bat_priv, struct orig_node *orig_node, |
| 68 | unsigned char *tt_buff, int tt_buff_len) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 69 | { |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 70 | if ((tt_buff_len != orig_node->tt_buff_len) || |
| 71 | ((tt_buff_len > 0) && |
| 72 | (orig_node->tt_buff_len > 0) && |
| 73 | (memcmp(orig_node->tt_buff, tt_buff, tt_buff_len) != 0))) { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 74 | |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 75 | if (orig_node->tt_buff_len > 0) |
| 76 | tt_global_del_orig(bat_priv, orig_node, |
| 77 | "originator changed tt"); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 78 | |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 79 | if ((tt_buff_len > 0) && (tt_buff)) |
| 80 | tt_global_add_orig(bat_priv, orig_node, |
| 81 | tt_buff, tt_buff_len); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 82 | } |
| 83 | } |
| 84 | |
| 85 | static void update_route(struct bat_priv *bat_priv, |
| 86 | struct orig_node *orig_node, |
| 87 | struct neigh_node *neigh_node, |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 88 | unsigned char *tt_buff, int tt_buff_len) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 89 | { |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 90 | struct neigh_node *curr_router; |
| 91 | |
| 92 | curr_router = orig_node_get_router(orig_node); |
Marek Lindner | a8e7f4b | 2010-12-12 21:57:10 +0000 | [diff] [blame] | 93 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 94 | /* route deleted */ |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 95 | if ((curr_router) && (!neigh_node)) { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 96 | |
| 97 | bat_dbg(DBG_ROUTES, bat_priv, "Deleting route towards: %pM\n", |
| 98 | orig_node->orig); |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 99 | tt_global_del_orig(bat_priv, orig_node, |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 100 | "originator timed out"); |
| 101 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 102 | /* route added */ |
| 103 | } else if ((!curr_router) && (neigh_node)) { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 104 | |
| 105 | bat_dbg(DBG_ROUTES, bat_priv, |
| 106 | "Adding route towards: %pM (via %pM)\n", |
| 107 | orig_node->orig, neigh_node->addr); |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 108 | tt_global_add_orig(bat_priv, orig_node, |
| 109 | tt_buff, tt_buff_len); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 110 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 111 | /* route changed */ |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 112 | } else { |
| 113 | bat_dbg(DBG_ROUTES, bat_priv, |
| 114 | "Changing route towards: %pM " |
| 115 | "(now via %pM - was via %pM)\n", |
| 116 | orig_node->orig, neigh_node->addr, |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 117 | curr_router->addr); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 118 | } |
| 119 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 120 | if (curr_router) |
| 121 | neigh_node_free_ref(curr_router); |
| 122 | |
| 123 | /* increase refcount of new best neighbor */ |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 124 | if (neigh_node && !atomic_inc_not_zero(&neigh_node->refcount)) |
| 125 | neigh_node = NULL; |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 126 | |
| 127 | spin_lock_bh(&orig_node->neigh_list_lock); |
| 128 | rcu_assign_pointer(orig_node->router, neigh_node); |
| 129 | spin_unlock_bh(&orig_node->neigh_list_lock); |
| 130 | |
| 131 | /* decrease refcount of previous best neighbor */ |
| 132 | if (curr_router) |
| 133 | neigh_node_free_ref(curr_router); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | |
| 137 | void update_routes(struct bat_priv *bat_priv, struct orig_node *orig_node, |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 138 | struct neigh_node *neigh_node, unsigned char *tt_buff, |
| 139 | int tt_buff_len) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 140 | { |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 141 | struct neigh_node *router = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 142 | |
| 143 | if (!orig_node) |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 144 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 145 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 146 | router = orig_node_get_router(orig_node); |
| 147 | |
| 148 | if (router != neigh_node) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 149 | update_route(bat_priv, orig_node, neigh_node, |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 150 | tt_buff, tt_buff_len); |
| 151 | /* may be just TT changed */ |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 152 | else |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 153 | update_TT(bat_priv, orig_node, tt_buff, tt_buff_len); |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 154 | |
| 155 | out: |
| 156 | if (router) |
| 157 | neigh_node_free_ref(router); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | static int is_bidirectional_neigh(struct orig_node *orig_node, |
| 161 | struct orig_node *orig_neigh_node, |
| 162 | struct batman_packet *batman_packet, |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 163 | struct hard_iface *if_incoming) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 164 | { |
| 165 | struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface); |
Marek Lindner | 1605d0d | 2011-02-18 12:28:11 +0000 | [diff] [blame] | 166 | struct neigh_node *neigh_node = NULL, *tmp_neigh_node; |
Marek Lindner | 9591a79 | 2010-12-12 21:57:11 +0000 | [diff] [blame] | 167 | struct hlist_node *node; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 168 | unsigned char total_count; |
Marek Lindner | 0ede9f4 | 2011-01-25 21:52:10 +0000 | [diff] [blame] | 169 | uint8_t orig_eq_count, neigh_rq_count, tq_own; |
| 170 | int tq_asym_penalty, ret = 0; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 171 | |
Daniele Furlan | 27aea21 | 2011-05-07 22:45:19 +0200 | [diff] [blame] | 172 | /* find corresponding one hop neighbor */ |
| 173 | rcu_read_lock(); |
| 174 | hlist_for_each_entry_rcu(tmp_neigh_node, node, |
| 175 | &orig_neigh_node->neigh_list, list) { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 176 | |
Daniele Furlan | 27aea21 | 2011-05-07 22:45:19 +0200 | [diff] [blame] | 177 | if (!compare_eth(tmp_neigh_node->addr, orig_neigh_node->orig)) |
| 178 | continue; |
Marek Lindner | 1605d0d | 2011-02-18 12:28:11 +0000 | [diff] [blame] | 179 | |
Daniele Furlan | 27aea21 | 2011-05-07 22:45:19 +0200 | [diff] [blame] | 180 | if (tmp_neigh_node->if_incoming != if_incoming) |
| 181 | continue; |
Marek Lindner | 1605d0d | 2011-02-18 12:28:11 +0000 | [diff] [blame] | 182 | |
Daniele Furlan | 27aea21 | 2011-05-07 22:45:19 +0200 | [diff] [blame] | 183 | if (!atomic_inc_not_zero(&tmp_neigh_node->refcount)) |
| 184 | continue; |
Marek Lindner | 1605d0d | 2011-02-18 12:28:11 +0000 | [diff] [blame] | 185 | |
Daniele Furlan | 27aea21 | 2011-05-07 22:45:19 +0200 | [diff] [blame] | 186 | neigh_node = tmp_neigh_node; |
| 187 | break; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 188 | } |
Daniele Furlan | 27aea21 | 2011-05-07 22:45:19 +0200 | [diff] [blame] | 189 | rcu_read_unlock(); |
| 190 | |
| 191 | if (!neigh_node) |
| 192 | neigh_node = create_neighbor(orig_neigh_node, |
| 193 | orig_neigh_node, |
| 194 | orig_neigh_node->orig, |
| 195 | if_incoming); |
| 196 | |
| 197 | if (!neigh_node) |
| 198 | goto out; |
| 199 | |
| 200 | /* if orig_node is direct neighbour update neigh_node last_valid */ |
| 201 | if (orig_node == orig_neigh_node) |
| 202 | neigh_node->last_valid = jiffies; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 203 | |
| 204 | orig_node->last_valid = jiffies; |
| 205 | |
Daniele Furlan | 27aea21 | 2011-05-07 22:45:19 +0200 | [diff] [blame] | 206 | /* find packet count of corresponding one hop neighbor */ |
Marek Lindner | 0ede9f4 | 2011-01-25 21:52:10 +0000 | [diff] [blame] | 207 | spin_lock_bh(&orig_node->ogm_cnt_lock); |
| 208 | orig_eq_count = orig_neigh_node->bcast_own_sum[if_incoming->if_num]; |
| 209 | neigh_rq_count = neigh_node->real_packet_count; |
| 210 | spin_unlock_bh(&orig_node->ogm_cnt_lock); |
| 211 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 212 | /* pay attention to not get a value bigger than 100 % */ |
Marek Lindner | 0ede9f4 | 2011-01-25 21:52:10 +0000 | [diff] [blame] | 213 | total_count = (orig_eq_count > neigh_rq_count ? |
| 214 | neigh_rq_count : orig_eq_count); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 215 | |
| 216 | /* if we have too few packets (too less data) we set tq_own to zero */ |
| 217 | /* if we receive too few packets it is not considered bidirectional */ |
| 218 | if ((total_count < TQ_LOCAL_BIDRECT_SEND_MINIMUM) || |
Marek Lindner | 0ede9f4 | 2011-01-25 21:52:10 +0000 | [diff] [blame] | 219 | (neigh_rq_count < TQ_LOCAL_BIDRECT_RECV_MINIMUM)) |
| 220 | tq_own = 0; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 221 | else |
| 222 | /* neigh_node->real_packet_count is never zero as we |
| 223 | * only purge old information when getting new |
| 224 | * information */ |
Marek Lindner | 0ede9f4 | 2011-01-25 21:52:10 +0000 | [diff] [blame] | 225 | tq_own = (TQ_MAX_VALUE * total_count) / neigh_rq_count; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 226 | |
| 227 | /* |
| 228 | * 1 - ((1-x) ** 3), normalized to TQ_MAX_VALUE this does |
| 229 | * affect the nearly-symmetric links only a little, but |
| 230 | * punishes asymmetric links more. This will give a value |
| 231 | * between 0 and TQ_MAX_VALUE |
| 232 | */ |
Marek Lindner | 0ede9f4 | 2011-01-25 21:52:10 +0000 | [diff] [blame] | 233 | tq_asym_penalty = TQ_MAX_VALUE - (TQ_MAX_VALUE * |
| 234 | (TQ_LOCAL_WINDOW_SIZE - neigh_rq_count) * |
| 235 | (TQ_LOCAL_WINDOW_SIZE - neigh_rq_count) * |
| 236 | (TQ_LOCAL_WINDOW_SIZE - neigh_rq_count)) / |
| 237 | (TQ_LOCAL_WINDOW_SIZE * |
| 238 | TQ_LOCAL_WINDOW_SIZE * |
| 239 | TQ_LOCAL_WINDOW_SIZE); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 240 | |
Marek Lindner | 0ede9f4 | 2011-01-25 21:52:10 +0000 | [diff] [blame] | 241 | batman_packet->tq = ((batman_packet->tq * tq_own * tq_asym_penalty) / |
| 242 | (TQ_MAX_VALUE * TQ_MAX_VALUE)); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 243 | |
| 244 | bat_dbg(DBG_BATMAN, bat_priv, |
| 245 | "bidirectional: " |
| 246 | "orig = %-15pM neigh = %-15pM => own_bcast = %2i, " |
| 247 | "real recv = %2i, local tq: %3i, asym_penalty: %3i, " |
| 248 | "total tq: %3i\n", |
| 249 | orig_node->orig, orig_neigh_node->orig, total_count, |
Marek Lindner | 0ede9f4 | 2011-01-25 21:52:10 +0000 | [diff] [blame] | 250 | neigh_rq_count, tq_own, tq_asym_penalty, batman_packet->tq); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 251 | |
| 252 | /* if link has the minimum required transmission quality |
| 253 | * consider it bidirectional */ |
| 254 | if (batman_packet->tq >= TQ_TOTAL_BIDRECT_LIMIT) |
Marek Lindner | a775eb8 | 2011-01-19 20:01:39 +0000 | [diff] [blame] | 255 | ret = 1; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 256 | |
Marek Lindner | a775eb8 | 2011-01-19 20:01:39 +0000 | [diff] [blame] | 257 | out: |
| 258 | if (neigh_node) |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 259 | neigh_node_free_ref(neigh_node); |
Marek Lindner | a775eb8 | 2011-01-19 20:01:39 +0000 | [diff] [blame] | 260 | return ret; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 261 | } |
| 262 | |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 263 | /* caller must hold the neigh_list_lock */ |
| 264 | void bonding_candidate_del(struct orig_node *orig_node, |
| 265 | struct neigh_node *neigh_node) |
| 266 | { |
| 267 | /* this neighbor is not part of our candidate list */ |
| 268 | if (list_empty(&neigh_node->bonding_list)) |
| 269 | goto out; |
| 270 | |
| 271 | list_del_rcu(&neigh_node->bonding_list); |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 272 | INIT_LIST_HEAD(&neigh_node->bonding_list); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 273 | neigh_node_free_ref(neigh_node); |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 274 | atomic_dec(&orig_node->bond_candidates); |
| 275 | |
| 276 | out: |
| 277 | return; |
| 278 | } |
| 279 | |
| 280 | static void bonding_candidate_add(struct orig_node *orig_node, |
| 281 | struct neigh_node *neigh_node) |
| 282 | { |
| 283 | struct hlist_node *node; |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 284 | struct neigh_node *tmp_neigh_node, *router = NULL; |
| 285 | uint8_t interference_candidate = 0; |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 286 | |
| 287 | spin_lock_bh(&orig_node->neigh_list_lock); |
| 288 | |
| 289 | /* only consider if it has the same primary address ... */ |
Marek Lindner | 39901e7 | 2011-02-18 12:28:08 +0000 | [diff] [blame] | 290 | if (!compare_eth(orig_node->orig, |
| 291 | neigh_node->orig_node->primary_addr)) |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 292 | goto candidate_del; |
| 293 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 294 | router = orig_node_get_router(orig_node); |
| 295 | if (!router) |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 296 | goto candidate_del; |
| 297 | |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 298 | /* ... and is good enough to be considered */ |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 299 | if (neigh_node->tq_avg < router->tq_avg - BONDING_TQ_THRESHOLD) |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 300 | goto candidate_del; |
| 301 | |
| 302 | /** |
| 303 | * check if we have another candidate with the same mac address or |
| 304 | * interface. If we do, we won't select this candidate because of |
| 305 | * possible interference. |
| 306 | */ |
| 307 | hlist_for_each_entry_rcu(tmp_neigh_node, node, |
| 308 | &orig_node->neigh_list, list) { |
| 309 | |
| 310 | if (tmp_neigh_node == neigh_node) |
| 311 | continue; |
| 312 | |
| 313 | /* we only care if the other candidate is even |
| 314 | * considered as candidate. */ |
| 315 | if (list_empty(&tmp_neigh_node->bonding_list)) |
| 316 | continue; |
| 317 | |
| 318 | if ((neigh_node->if_incoming == tmp_neigh_node->if_incoming) || |
Marek Lindner | 39901e7 | 2011-02-18 12:28:08 +0000 | [diff] [blame] | 319 | (compare_eth(neigh_node->addr, tmp_neigh_node->addr))) { |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 320 | interference_candidate = 1; |
| 321 | break; |
| 322 | } |
| 323 | } |
| 324 | |
| 325 | /* don't care further if it is an interference candidate */ |
| 326 | if (interference_candidate) |
| 327 | goto candidate_del; |
| 328 | |
| 329 | /* this neighbor already is part of our candidate list */ |
| 330 | if (!list_empty(&neigh_node->bonding_list)) |
| 331 | goto out; |
| 332 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 333 | if (!atomic_inc_not_zero(&neigh_node->refcount)) |
| 334 | goto out; |
| 335 | |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 336 | list_add_rcu(&neigh_node->bonding_list, &orig_node->bond_list); |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 337 | atomic_inc(&orig_node->bond_candidates); |
| 338 | goto out; |
| 339 | |
| 340 | candidate_del: |
| 341 | bonding_candidate_del(orig_node, neigh_node); |
| 342 | |
| 343 | out: |
| 344 | spin_unlock_bh(&orig_node->neigh_list_lock); |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 345 | |
| 346 | if (router) |
| 347 | neigh_node_free_ref(router); |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | /* copy primary address for bonding */ |
| 351 | static void bonding_save_primary(struct orig_node *orig_node, |
| 352 | struct orig_node *orig_neigh_node, |
| 353 | struct batman_packet *batman_packet) |
| 354 | { |
| 355 | if (!(batman_packet->flags & PRIMARIES_FIRST_HOP)) |
| 356 | return; |
| 357 | |
| 358 | memcpy(orig_neigh_node->primary_addr, orig_node->orig, ETH_ALEN); |
| 359 | } |
| 360 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 361 | static void update_orig(struct bat_priv *bat_priv, |
| 362 | struct orig_node *orig_node, |
| 363 | struct ethhdr *ethhdr, |
| 364 | struct batman_packet *batman_packet, |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 365 | struct hard_iface *if_incoming, |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 366 | unsigned char *tt_buff, int tt_buff_len, |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 367 | char is_duplicate) |
| 368 | { |
| 369 | struct neigh_node *neigh_node = NULL, *tmp_neigh_node = NULL; |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 370 | struct neigh_node *router = NULL; |
Marek Lindner | 2ae2daf | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 371 | struct orig_node *orig_node_tmp; |
Marek Lindner | 9591a79 | 2010-12-12 21:57:11 +0000 | [diff] [blame] | 372 | struct hlist_node *node; |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 373 | int tmp_tt_buff_len; |
Marek Lindner | 2ae2daf | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 374 | uint8_t bcast_own_sum_orig, bcast_own_sum_neigh; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 375 | |
| 376 | bat_dbg(DBG_BATMAN, bat_priv, "update_originator(): " |
| 377 | "Searching and updating originator entry of received packet\n"); |
| 378 | |
Marek Lindner | f987ed6 | 2010-12-12 21:57:12 +0000 | [diff] [blame] | 379 | rcu_read_lock(); |
| 380 | hlist_for_each_entry_rcu(tmp_neigh_node, node, |
| 381 | &orig_node->neigh_list, list) { |
Marek Lindner | 39901e7 | 2011-02-18 12:28:08 +0000 | [diff] [blame] | 382 | if (compare_eth(tmp_neigh_node->addr, ethhdr->h_source) && |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 383 | (tmp_neigh_node->if_incoming == if_incoming) && |
| 384 | atomic_inc_not_zero(&tmp_neigh_node->refcount)) { |
| 385 | if (neigh_node) |
| 386 | neigh_node_free_ref(neigh_node); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 387 | neigh_node = tmp_neigh_node; |
| 388 | continue; |
| 389 | } |
| 390 | |
| 391 | if (is_duplicate) |
| 392 | continue; |
| 393 | |
Linus Lüssing | 6800390 | 2011-03-14 22:43:40 +0000 | [diff] [blame] | 394 | spin_lock_bh(&tmp_neigh_node->tq_lock); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 395 | ring_buffer_set(tmp_neigh_node->tq_recv, |
| 396 | &tmp_neigh_node->tq_index, 0); |
| 397 | tmp_neigh_node->tq_avg = |
| 398 | ring_buffer_avg(tmp_neigh_node->tq_recv); |
Linus Lüssing | 6800390 | 2011-03-14 22:43:40 +0000 | [diff] [blame] | 399 | spin_unlock_bh(&tmp_neigh_node->tq_lock); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 400 | } |
| 401 | |
| 402 | if (!neigh_node) { |
| 403 | struct orig_node *orig_tmp; |
| 404 | |
| 405 | orig_tmp = get_orig_node(bat_priv, ethhdr->h_source); |
| 406 | if (!orig_tmp) |
Marek Lindner | a775eb8 | 2011-01-19 20:01:39 +0000 | [diff] [blame] | 407 | goto unlock; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 408 | |
| 409 | neigh_node = create_neighbor(orig_node, orig_tmp, |
| 410 | ethhdr->h_source, if_incoming); |
Marek Lindner | 16b1aba | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 411 | |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 412 | orig_node_free_ref(orig_tmp); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 413 | if (!neigh_node) |
Marek Lindner | a775eb8 | 2011-01-19 20:01:39 +0000 | [diff] [blame] | 414 | goto unlock; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 415 | } else |
| 416 | bat_dbg(DBG_BATMAN, bat_priv, |
| 417 | "Updating existing last-hop neighbor of originator\n"); |
| 418 | |
Marek Lindner | a775eb8 | 2011-01-19 20:01:39 +0000 | [diff] [blame] | 419 | rcu_read_unlock(); |
| 420 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 421 | orig_node->flags = batman_packet->flags; |
| 422 | neigh_node->last_valid = jiffies; |
| 423 | |
Linus Lüssing | 6800390 | 2011-03-14 22:43:40 +0000 | [diff] [blame] | 424 | spin_lock_bh(&neigh_node->tq_lock); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 425 | ring_buffer_set(neigh_node->tq_recv, |
| 426 | &neigh_node->tq_index, |
| 427 | batman_packet->tq); |
| 428 | neigh_node->tq_avg = ring_buffer_avg(neigh_node->tq_recv); |
Linus Lüssing | 6800390 | 2011-03-14 22:43:40 +0000 | [diff] [blame] | 429 | spin_unlock_bh(&neigh_node->tq_lock); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 430 | |
| 431 | if (!is_duplicate) { |
| 432 | orig_node->last_ttl = batman_packet->ttl; |
| 433 | neigh_node->last_ttl = batman_packet->ttl; |
| 434 | } |
| 435 | |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 436 | bonding_candidate_add(orig_node, neigh_node); |
| 437 | |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 438 | tmp_tt_buff_len = (tt_buff_len > batman_packet->num_tt * ETH_ALEN ? |
| 439 | batman_packet->num_tt * ETH_ALEN : tt_buff_len); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 440 | |
| 441 | /* if this neighbor already is our next hop there is nothing |
| 442 | * to change */ |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 443 | router = orig_node_get_router(orig_node); |
| 444 | if (router == neigh_node) |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 445 | goto update_tt; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 446 | |
| 447 | /* if this neighbor does not offer a better TQ we won't consider it */ |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 448 | if (router && (router->tq_avg > neigh_node->tq_avg)) |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 449 | goto update_tt; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 450 | |
| 451 | /* if the TQ is the same and the link not more symetric we |
| 452 | * won't consider it either */ |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 453 | if (router && (neigh_node->tq_avg == router->tq_avg)) { |
| 454 | orig_node_tmp = router->orig_node; |
Marek Lindner | 2ae2daf | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 455 | spin_lock_bh(&orig_node_tmp->ogm_cnt_lock); |
| 456 | bcast_own_sum_orig = |
| 457 | orig_node_tmp->bcast_own_sum[if_incoming->if_num]; |
| 458 | spin_unlock_bh(&orig_node_tmp->ogm_cnt_lock); |
| 459 | |
| 460 | orig_node_tmp = neigh_node->orig_node; |
| 461 | spin_lock_bh(&orig_node_tmp->ogm_cnt_lock); |
| 462 | bcast_own_sum_neigh = |
| 463 | orig_node_tmp->bcast_own_sum[if_incoming->if_num]; |
| 464 | spin_unlock_bh(&orig_node_tmp->ogm_cnt_lock); |
| 465 | |
| 466 | if (bcast_own_sum_orig >= bcast_own_sum_neigh) |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 467 | goto update_tt; |
Marek Lindner | 2ae2daf | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 468 | } |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 469 | |
| 470 | update_routes(bat_priv, orig_node, neigh_node, |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 471 | tt_buff, tmp_tt_buff_len); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 472 | goto update_gw; |
| 473 | |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 474 | update_tt: |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 475 | update_routes(bat_priv, orig_node, router, |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 476 | tt_buff, tmp_tt_buff_len); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 477 | |
| 478 | update_gw: |
| 479 | if (orig_node->gw_flags != batman_packet->gw_flags) |
| 480 | gw_node_update(bat_priv, orig_node, batman_packet->gw_flags); |
| 481 | |
| 482 | orig_node->gw_flags = batman_packet->gw_flags; |
| 483 | |
| 484 | /* restart gateway selection if fast or late switching was enabled */ |
| 485 | if ((orig_node->gw_flags) && |
| 486 | (atomic_read(&bat_priv->gw_mode) == GW_MODE_CLIENT) && |
| 487 | (atomic_read(&bat_priv->gw_sel_class) > 2)) |
| 488 | gw_check_election(bat_priv, orig_node); |
Marek Lindner | a775eb8 | 2011-01-19 20:01:39 +0000 | [diff] [blame] | 489 | |
| 490 | goto out; |
| 491 | |
| 492 | unlock: |
| 493 | rcu_read_unlock(); |
| 494 | out: |
| 495 | if (neigh_node) |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 496 | neigh_node_free_ref(neigh_node); |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 497 | if (router) |
| 498 | neigh_node_free_ref(router); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 499 | } |
| 500 | |
| 501 | /* checks whether the host restarted and is in the protection time. |
| 502 | * returns: |
| 503 | * 0 if the packet is to be accepted |
| 504 | * 1 if the packet is to be ignored. |
| 505 | */ |
| 506 | static int window_protected(struct bat_priv *bat_priv, |
| 507 | int32_t seq_num_diff, |
| 508 | unsigned long *last_reset) |
| 509 | { |
| 510 | if ((seq_num_diff <= -TQ_LOCAL_WINDOW_SIZE) |
| 511 | || (seq_num_diff >= EXPECTED_SEQNO_RANGE)) { |
| 512 | if (time_after(jiffies, *last_reset + |
| 513 | msecs_to_jiffies(RESET_PROTECTION_MS))) { |
| 514 | |
| 515 | *last_reset = jiffies; |
| 516 | bat_dbg(DBG_BATMAN, bat_priv, |
| 517 | "old packet received, start protection\n"); |
| 518 | |
| 519 | return 0; |
| 520 | } else |
| 521 | return 1; |
| 522 | } |
| 523 | return 0; |
| 524 | } |
| 525 | |
| 526 | /* processes a batman packet for all interfaces, adjusts the sequence number and |
| 527 | * finds out whether it is a duplicate. |
| 528 | * returns: |
| 529 | * 1 the packet is a duplicate |
| 530 | * 0 the packet has not yet been received |
| 531 | * -1 the packet is old and has been received while the seqno window |
| 532 | * was protected. Caller should drop it. |
| 533 | */ |
| 534 | static char count_real_packets(struct ethhdr *ethhdr, |
| 535 | struct batman_packet *batman_packet, |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 536 | struct hard_iface *if_incoming) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 537 | { |
| 538 | struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface); |
| 539 | struct orig_node *orig_node; |
| 540 | struct neigh_node *tmp_neigh_node; |
Marek Lindner | 9591a79 | 2010-12-12 21:57:11 +0000 | [diff] [blame] | 541 | struct hlist_node *node; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 542 | char is_duplicate = 0; |
| 543 | int32_t seq_diff; |
| 544 | int need_update = 0; |
Marek Lindner | 0ede9f4 | 2011-01-25 21:52:10 +0000 | [diff] [blame] | 545 | int set_mark, ret = -1; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 546 | |
| 547 | orig_node = get_orig_node(bat_priv, batman_packet->orig); |
| 548 | if (!orig_node) |
| 549 | return 0; |
| 550 | |
Marek Lindner | 0ede9f4 | 2011-01-25 21:52:10 +0000 | [diff] [blame] | 551 | spin_lock_bh(&orig_node->ogm_cnt_lock); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 552 | seq_diff = batman_packet->seqno - orig_node->last_real_seqno; |
| 553 | |
| 554 | /* signalize caller that the packet is to be dropped. */ |
| 555 | if (window_protected(bat_priv, seq_diff, |
| 556 | &orig_node->batman_seqno_reset)) |
Marek Lindner | 0ede9f4 | 2011-01-25 21:52:10 +0000 | [diff] [blame] | 557 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 558 | |
Marek Lindner | f987ed6 | 2010-12-12 21:57:12 +0000 | [diff] [blame] | 559 | rcu_read_lock(); |
| 560 | hlist_for_each_entry_rcu(tmp_neigh_node, node, |
| 561 | &orig_node->neigh_list, list) { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 562 | |
| 563 | is_duplicate |= get_bit_status(tmp_neigh_node->real_bits, |
| 564 | orig_node->last_real_seqno, |
| 565 | batman_packet->seqno); |
| 566 | |
Marek Lindner | 39901e7 | 2011-02-18 12:28:08 +0000 | [diff] [blame] | 567 | if (compare_eth(tmp_neigh_node->addr, ethhdr->h_source) && |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 568 | (tmp_neigh_node->if_incoming == if_incoming)) |
| 569 | set_mark = 1; |
| 570 | else |
| 571 | set_mark = 0; |
| 572 | |
| 573 | /* if the window moved, set the update flag. */ |
| 574 | need_update |= bit_get_packet(bat_priv, |
| 575 | tmp_neigh_node->real_bits, |
| 576 | seq_diff, set_mark); |
| 577 | |
| 578 | tmp_neigh_node->real_packet_count = |
| 579 | bit_packet_count(tmp_neigh_node->real_bits); |
| 580 | } |
Marek Lindner | f987ed6 | 2010-12-12 21:57:12 +0000 | [diff] [blame] | 581 | rcu_read_unlock(); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 582 | |
| 583 | if (need_update) { |
| 584 | bat_dbg(DBG_BATMAN, bat_priv, |
| 585 | "updating last_seqno: old %d, new %d\n", |
| 586 | orig_node->last_real_seqno, batman_packet->seqno); |
| 587 | orig_node->last_real_seqno = batman_packet->seqno; |
| 588 | } |
| 589 | |
Marek Lindner | 0ede9f4 | 2011-01-25 21:52:10 +0000 | [diff] [blame] | 590 | ret = is_duplicate; |
Marek Lindner | 16b1aba | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 591 | |
Marek Lindner | 0ede9f4 | 2011-01-25 21:52:10 +0000 | [diff] [blame] | 592 | out: |
| 593 | spin_unlock_bh(&orig_node->ogm_cnt_lock); |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 594 | orig_node_free_ref(orig_node); |
Marek Lindner | 0ede9f4 | 2011-01-25 21:52:10 +0000 | [diff] [blame] | 595 | return ret; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 596 | } |
| 597 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 598 | void receive_bat_packet(struct ethhdr *ethhdr, |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 599 | struct batman_packet *batman_packet, |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 600 | unsigned char *tt_buff, int tt_buff_len, |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 601 | struct hard_iface *if_incoming) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 602 | { |
| 603 | struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface); |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 604 | struct hard_iface *hard_iface; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 605 | struct orig_node *orig_neigh_node, *orig_node; |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 606 | struct neigh_node *router = NULL, *router_router = NULL; |
| 607 | struct neigh_node *orig_neigh_router = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 608 | char has_directlink_flag; |
| 609 | char is_my_addr = 0, is_my_orig = 0, is_my_oldorig = 0; |
| 610 | char is_broadcast = 0, is_bidirectional, is_single_hop_neigh; |
| 611 | char is_duplicate; |
| 612 | uint32_t if_incoming_seqno; |
| 613 | |
| 614 | /* Silently drop when the batman packet is actually not a |
| 615 | * correct packet. |
| 616 | * |
| 617 | * This might happen if a packet is padded (e.g. Ethernet has a |
| 618 | * minimum frame length of 64 byte) and the aggregation interprets |
| 619 | * it as an additional length. |
| 620 | * |
| 621 | * TODO: A more sane solution would be to have a bit in the |
| 622 | * batman_packet to detect whether the packet is the last |
| 623 | * packet in an aggregation. Here we expect that the padding |
| 624 | * is always zero (or not 0x01) |
| 625 | */ |
| 626 | if (batman_packet->packet_type != BAT_PACKET) |
| 627 | return; |
| 628 | |
| 629 | /* could be changed by schedule_own_packet() */ |
| 630 | if_incoming_seqno = atomic_read(&if_incoming->seqno); |
| 631 | |
| 632 | has_directlink_flag = (batman_packet->flags & DIRECTLINK ? 1 : 0); |
| 633 | |
Marek Lindner | 39901e7 | 2011-02-18 12:28:08 +0000 | [diff] [blame] | 634 | is_single_hop_neigh = (compare_eth(ethhdr->h_source, |
| 635 | batman_packet->orig) ? 1 : 0); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 636 | |
| 637 | bat_dbg(DBG_BATMAN, bat_priv, |
| 638 | "Received BATMAN packet via NB: %pM, IF: %s [%pM] " |
| 639 | "(from OG: %pM, via prev OG: %pM, seqno %d, tq %d, " |
| 640 | "TTL %d, V %d, IDF %d)\n", |
| 641 | ethhdr->h_source, if_incoming->net_dev->name, |
| 642 | if_incoming->net_dev->dev_addr, batman_packet->orig, |
| 643 | batman_packet->prev_sender, batman_packet->seqno, |
| 644 | batman_packet->tq, batman_packet->ttl, batman_packet->version, |
| 645 | has_directlink_flag); |
| 646 | |
| 647 | rcu_read_lock(); |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 648 | list_for_each_entry_rcu(hard_iface, &hardif_list, list) { |
| 649 | if (hard_iface->if_status != IF_ACTIVE) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 650 | continue; |
| 651 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 652 | if (hard_iface->soft_iface != if_incoming->soft_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 653 | continue; |
| 654 | |
Marek Lindner | 39901e7 | 2011-02-18 12:28:08 +0000 | [diff] [blame] | 655 | if (compare_eth(ethhdr->h_source, |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 656 | hard_iface->net_dev->dev_addr)) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 657 | is_my_addr = 1; |
| 658 | |
Marek Lindner | 39901e7 | 2011-02-18 12:28:08 +0000 | [diff] [blame] | 659 | if (compare_eth(batman_packet->orig, |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 660 | hard_iface->net_dev->dev_addr)) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 661 | is_my_orig = 1; |
| 662 | |
Marek Lindner | 39901e7 | 2011-02-18 12:28:08 +0000 | [diff] [blame] | 663 | if (compare_eth(batman_packet->prev_sender, |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 664 | hard_iface->net_dev->dev_addr)) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 665 | is_my_oldorig = 1; |
| 666 | |
Marek Lindner | 39901e7 | 2011-02-18 12:28:08 +0000 | [diff] [blame] | 667 | if (compare_eth(ethhdr->h_source, broadcast_addr)) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 668 | is_broadcast = 1; |
| 669 | } |
| 670 | rcu_read_unlock(); |
| 671 | |
| 672 | if (batman_packet->version != COMPAT_VERSION) { |
| 673 | bat_dbg(DBG_BATMAN, bat_priv, |
| 674 | "Drop packet: incompatible batman version (%i)\n", |
| 675 | batman_packet->version); |
| 676 | return; |
| 677 | } |
| 678 | |
| 679 | if (is_my_addr) { |
| 680 | bat_dbg(DBG_BATMAN, bat_priv, |
| 681 | "Drop packet: received my own broadcast (sender: %pM" |
| 682 | ")\n", |
| 683 | ethhdr->h_source); |
| 684 | return; |
| 685 | } |
| 686 | |
| 687 | if (is_broadcast) { |
| 688 | bat_dbg(DBG_BATMAN, bat_priv, "Drop packet: " |
| 689 | "ignoring all packets with broadcast source addr (sender: %pM" |
| 690 | ")\n", ethhdr->h_source); |
| 691 | return; |
| 692 | } |
| 693 | |
| 694 | if (is_my_orig) { |
| 695 | unsigned long *word; |
| 696 | int offset; |
| 697 | |
| 698 | orig_neigh_node = get_orig_node(bat_priv, ethhdr->h_source); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 699 | if (!orig_neigh_node) |
| 700 | return; |
| 701 | |
| 702 | /* neighbor has to indicate direct link and it has to |
| 703 | * come via the corresponding interface */ |
| 704 | /* if received seqno equals last send seqno save new |
| 705 | * seqno for bidirectional check */ |
| 706 | if (has_directlink_flag && |
Marek Lindner | 39901e7 | 2011-02-18 12:28:08 +0000 | [diff] [blame] | 707 | compare_eth(if_incoming->net_dev->dev_addr, |
| 708 | batman_packet->orig) && |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 709 | (batman_packet->seqno - if_incoming_seqno + 2 == 0)) { |
| 710 | offset = if_incoming->if_num * NUM_WORDS; |
Marek Lindner | 2ae2daf | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 711 | |
| 712 | spin_lock_bh(&orig_neigh_node->ogm_cnt_lock); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 713 | word = &(orig_neigh_node->bcast_own[offset]); |
| 714 | bit_mark(word, 0); |
| 715 | orig_neigh_node->bcast_own_sum[if_incoming->if_num] = |
| 716 | bit_packet_count(word); |
Marek Lindner | 2ae2daf | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 717 | spin_unlock_bh(&orig_neigh_node->ogm_cnt_lock); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 718 | } |
| 719 | |
| 720 | bat_dbg(DBG_BATMAN, bat_priv, "Drop packet: " |
| 721 | "originator packet from myself (via neighbor)\n"); |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 722 | orig_node_free_ref(orig_neigh_node); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 723 | return; |
| 724 | } |
| 725 | |
| 726 | if (is_my_oldorig) { |
| 727 | bat_dbg(DBG_BATMAN, bat_priv, |
| 728 | "Drop packet: ignoring all rebroadcast echos (sender: " |
| 729 | "%pM)\n", ethhdr->h_source); |
| 730 | return; |
| 731 | } |
| 732 | |
| 733 | orig_node = get_orig_node(bat_priv, batman_packet->orig); |
| 734 | if (!orig_node) |
| 735 | return; |
| 736 | |
| 737 | is_duplicate = count_real_packets(ethhdr, batman_packet, if_incoming); |
| 738 | |
| 739 | if (is_duplicate == -1) { |
| 740 | bat_dbg(DBG_BATMAN, bat_priv, |
| 741 | "Drop packet: packet within seqno protection time " |
| 742 | "(sender: %pM)\n", ethhdr->h_source); |
Marek Lindner | 16b1aba | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 743 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 744 | } |
| 745 | |
| 746 | if (batman_packet->tq == 0) { |
| 747 | bat_dbg(DBG_BATMAN, bat_priv, |
| 748 | "Drop packet: originator packet with tq equal 0\n"); |
Marek Lindner | 16b1aba | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 749 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 750 | } |
| 751 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 752 | router = orig_node_get_router(orig_node); |
| 753 | if (router) |
| 754 | router_router = orig_node_get_router(router->orig_node); |
| 755 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 756 | /* avoid temporary routing loops */ |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 757 | if (router && router_router && |
| 758 | (compare_eth(router->addr, batman_packet->prev_sender)) && |
Marek Lindner | 39901e7 | 2011-02-18 12:28:08 +0000 | [diff] [blame] | 759 | !(compare_eth(batman_packet->orig, batman_packet->prev_sender)) && |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 760 | (compare_eth(router->addr, router_router->addr))) { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 761 | bat_dbg(DBG_BATMAN, bat_priv, |
| 762 | "Drop packet: ignoring all rebroadcast packets that " |
| 763 | "may make me loop (sender: %pM)\n", ethhdr->h_source); |
Marek Lindner | 16b1aba | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 764 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 765 | } |
| 766 | |
| 767 | /* if sender is a direct neighbor the sender mac equals |
| 768 | * originator mac */ |
| 769 | orig_neigh_node = (is_single_hop_neigh ? |
| 770 | orig_node : |
| 771 | get_orig_node(bat_priv, ethhdr->h_source)); |
| 772 | if (!orig_neigh_node) |
Marek Lindner | d007260 | 2011-01-19 20:01:44 +0000 | [diff] [blame] | 773 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 774 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 775 | orig_neigh_router = orig_node_get_router(orig_neigh_node); |
| 776 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 777 | /* drop packet if sender is not a direct neighbor and if we |
| 778 | * don't route towards it */ |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 779 | if (!is_single_hop_neigh && (!orig_neigh_router)) { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 780 | bat_dbg(DBG_BATMAN, bat_priv, |
| 781 | "Drop packet: OGM via unknown neighbor!\n"); |
Marek Lindner | 16b1aba | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 782 | goto out_neigh; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 783 | } |
| 784 | |
| 785 | is_bidirectional = is_bidirectional_neigh(orig_node, orig_neigh_node, |
| 786 | batman_packet, if_incoming); |
| 787 | |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 788 | bonding_save_primary(orig_node, orig_neigh_node, batman_packet); |
| 789 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 790 | /* update ranking if it is not a duplicate or has the same |
| 791 | * seqno and similar ttl as the non-duplicate */ |
| 792 | if (is_bidirectional && |
| 793 | (!is_duplicate || |
| 794 | ((orig_node->last_real_seqno == batman_packet->seqno) && |
| 795 | (orig_node->last_ttl - 3 <= batman_packet->ttl)))) |
| 796 | update_orig(bat_priv, orig_node, ethhdr, batman_packet, |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 797 | if_incoming, tt_buff, tt_buff_len, is_duplicate); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 798 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 799 | /* is single hop (direct) neighbor */ |
| 800 | if (is_single_hop_neigh) { |
| 801 | |
| 802 | /* mark direct link on incoming interface */ |
| 803 | schedule_forward_packet(orig_node, ethhdr, batman_packet, |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 804 | 1, tt_buff_len, if_incoming); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 805 | |
| 806 | bat_dbg(DBG_BATMAN, bat_priv, "Forwarding packet: " |
| 807 | "rebroadcast neighbor packet with direct link flag\n"); |
Marek Lindner | 16b1aba | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 808 | goto out_neigh; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 809 | } |
| 810 | |
| 811 | /* multihop originator */ |
| 812 | if (!is_bidirectional) { |
| 813 | bat_dbg(DBG_BATMAN, bat_priv, |
| 814 | "Drop packet: not received via bidirectional link\n"); |
Marek Lindner | 16b1aba | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 815 | goto out_neigh; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 816 | } |
| 817 | |
| 818 | if (is_duplicate) { |
| 819 | bat_dbg(DBG_BATMAN, bat_priv, |
| 820 | "Drop packet: duplicate packet received\n"); |
Marek Lindner | 16b1aba | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 821 | goto out_neigh; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 822 | } |
| 823 | |
| 824 | bat_dbg(DBG_BATMAN, bat_priv, |
| 825 | "Forwarding packet: rebroadcast originator packet\n"); |
| 826 | schedule_forward_packet(orig_node, ethhdr, batman_packet, |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 827 | 0, tt_buff_len, if_incoming); |
Marek Lindner | 16b1aba | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 828 | |
| 829 | out_neigh: |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 830 | if ((orig_neigh_node) && (!is_single_hop_neigh)) |
| 831 | orig_node_free_ref(orig_neigh_node); |
Marek Lindner | 16b1aba | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 832 | out: |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 833 | if (router) |
| 834 | neigh_node_free_ref(router); |
| 835 | if (router_router) |
| 836 | neigh_node_free_ref(router_router); |
| 837 | if (orig_neigh_router) |
| 838 | neigh_node_free_ref(orig_neigh_router); |
| 839 | |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 840 | orig_node_free_ref(orig_node); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 841 | } |
| 842 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 843 | int recv_bat_packet(struct sk_buff *skb, struct hard_iface *hard_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 844 | { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 845 | struct ethhdr *ethhdr; |
| 846 | |
| 847 | /* drop packet if it has not necessary minimum size */ |
| 848 | if (unlikely(!pskb_may_pull(skb, sizeof(struct batman_packet)))) |
| 849 | return NET_RX_DROP; |
| 850 | |
| 851 | ethhdr = (struct ethhdr *)skb_mac_header(skb); |
| 852 | |
| 853 | /* packet with broadcast indication but unicast recipient */ |
| 854 | if (!is_broadcast_ether_addr(ethhdr->h_dest)) |
| 855 | return NET_RX_DROP; |
| 856 | |
| 857 | /* packet with broadcast sender address */ |
| 858 | if (is_broadcast_ether_addr(ethhdr->h_source)) |
| 859 | return NET_RX_DROP; |
| 860 | |
| 861 | /* create a copy of the skb, if needed, to modify it. */ |
| 862 | if (skb_cow(skb, 0) < 0) |
| 863 | return NET_RX_DROP; |
| 864 | |
| 865 | /* keep skb linear */ |
| 866 | if (skb_linearize(skb) < 0) |
| 867 | return NET_RX_DROP; |
| 868 | |
| 869 | ethhdr = (struct ethhdr *)skb_mac_header(skb); |
| 870 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 871 | receive_aggr_bat_packet(ethhdr, |
| 872 | skb->data, |
| 873 | skb_headlen(skb), |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 874 | hard_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 875 | |
| 876 | kfree_skb(skb); |
| 877 | return NET_RX_SUCCESS; |
| 878 | } |
| 879 | |
| 880 | static int recv_my_icmp_packet(struct bat_priv *bat_priv, |
| 881 | struct sk_buff *skb, size_t icmp_len) |
| 882 | { |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 883 | struct hard_iface *primary_if = NULL; |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 884 | struct orig_node *orig_node = NULL; |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 885 | struct neigh_node *router = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 886 | struct icmp_packet_rr *icmp_packet; |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 887 | int ret = NET_RX_DROP; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 888 | |
| 889 | icmp_packet = (struct icmp_packet_rr *)skb->data; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 890 | |
| 891 | /* add data to device queue */ |
| 892 | if (icmp_packet->msg_type != ECHO_REQUEST) { |
| 893 | bat_socket_receive_packet(icmp_packet, icmp_len); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 894 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 895 | } |
| 896 | |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 897 | primary_if = primary_if_get_selected(bat_priv); |
| 898 | if (!primary_if) |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 899 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 900 | |
| 901 | /* answer echo request (ping) */ |
| 902 | /* get routing information */ |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 903 | orig_node = orig_hash_find(bat_priv, icmp_packet->orig); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 904 | if (!orig_node) |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 905 | goto out; |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 906 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 907 | router = orig_node_get_router(orig_node); |
| 908 | if (!router) |
| 909 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 910 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 911 | /* create a copy of the skb, if needed, to modify it. */ |
| 912 | if (skb_cow(skb, sizeof(struct ethhdr)) < 0) |
| 913 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 914 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 915 | icmp_packet = (struct icmp_packet_rr *)skb->data; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 916 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 917 | memcpy(icmp_packet->dst, icmp_packet->orig, ETH_ALEN); |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 918 | memcpy(icmp_packet->orig, primary_if->net_dev->dev_addr, ETH_ALEN); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 919 | icmp_packet->msg_type = ECHO_REPLY; |
| 920 | icmp_packet->ttl = TTL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 921 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 922 | send_skb_packet(skb, router->if_incoming, router->addr); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 923 | ret = NET_RX_SUCCESS; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 924 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 925 | out: |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 926 | if (primary_if) |
| 927 | hardif_free_ref(primary_if); |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 928 | if (router) |
| 929 | neigh_node_free_ref(router); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 930 | if (orig_node) |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 931 | orig_node_free_ref(orig_node); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 932 | return ret; |
| 933 | } |
| 934 | |
| 935 | static int recv_icmp_ttl_exceeded(struct bat_priv *bat_priv, |
Simon Wunderlich | 74ef115 | 2010-12-29 16:15:19 +0000 | [diff] [blame] | 936 | struct sk_buff *skb) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 937 | { |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 938 | struct hard_iface *primary_if = NULL; |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 939 | struct orig_node *orig_node = NULL; |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 940 | struct neigh_node *router = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 941 | struct icmp_packet *icmp_packet; |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 942 | int ret = NET_RX_DROP; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 943 | |
| 944 | icmp_packet = (struct icmp_packet *)skb->data; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 945 | |
| 946 | /* send TTL exceeded if packet is an echo request (traceroute) */ |
| 947 | if (icmp_packet->msg_type != ECHO_REQUEST) { |
| 948 | pr_debug("Warning - can't forward icmp packet from %pM to " |
| 949 | "%pM: ttl exceeded\n", icmp_packet->orig, |
| 950 | icmp_packet->dst); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 951 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 952 | } |
| 953 | |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 954 | primary_if = primary_if_get_selected(bat_priv); |
| 955 | if (!primary_if) |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 956 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 957 | |
| 958 | /* get routing information */ |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 959 | orig_node = orig_hash_find(bat_priv, icmp_packet->orig); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 960 | if (!orig_node) |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 961 | goto out; |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 962 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 963 | router = orig_node_get_router(orig_node); |
| 964 | if (!router) |
| 965 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 966 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 967 | /* create a copy of the skb, if needed, to modify it. */ |
| 968 | if (skb_cow(skb, sizeof(struct ethhdr)) < 0) |
| 969 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 970 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 971 | icmp_packet = (struct icmp_packet *)skb->data; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 972 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 973 | memcpy(icmp_packet->dst, icmp_packet->orig, ETH_ALEN); |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 974 | memcpy(icmp_packet->orig, primary_if->net_dev->dev_addr, ETH_ALEN); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 975 | icmp_packet->msg_type = TTL_EXCEEDED; |
| 976 | icmp_packet->ttl = TTL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 977 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 978 | send_skb_packet(skb, router->if_incoming, router->addr); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 979 | ret = NET_RX_SUCCESS; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 980 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 981 | out: |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 982 | if (primary_if) |
| 983 | hardif_free_ref(primary_if); |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 984 | if (router) |
| 985 | neigh_node_free_ref(router); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 986 | if (orig_node) |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 987 | orig_node_free_ref(orig_node); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 988 | return ret; |
| 989 | } |
| 990 | |
| 991 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 992 | int recv_icmp_packet(struct sk_buff *skb, struct hard_iface *recv_if) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 993 | { |
| 994 | struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface); |
| 995 | struct icmp_packet_rr *icmp_packet; |
| 996 | struct ethhdr *ethhdr; |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 997 | struct orig_node *orig_node = NULL; |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 998 | struct neigh_node *router = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 999 | int hdr_size = sizeof(struct icmp_packet); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1000 | int ret = NET_RX_DROP; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1001 | |
| 1002 | /** |
| 1003 | * we truncate all incoming icmp packets if they don't match our size |
| 1004 | */ |
| 1005 | if (skb->len >= sizeof(struct icmp_packet_rr)) |
| 1006 | hdr_size = sizeof(struct icmp_packet_rr); |
| 1007 | |
| 1008 | /* drop packet if it has not necessary minimum size */ |
| 1009 | if (unlikely(!pskb_may_pull(skb, hdr_size))) |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1010 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1011 | |
| 1012 | ethhdr = (struct ethhdr *)skb_mac_header(skb); |
| 1013 | |
| 1014 | /* packet with unicast indication but broadcast recipient */ |
| 1015 | if (is_broadcast_ether_addr(ethhdr->h_dest)) |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1016 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1017 | |
| 1018 | /* packet with broadcast sender address */ |
| 1019 | if (is_broadcast_ether_addr(ethhdr->h_source)) |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1020 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1021 | |
| 1022 | /* not for me */ |
| 1023 | if (!is_my_mac(ethhdr->h_dest)) |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1024 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1025 | |
| 1026 | icmp_packet = (struct icmp_packet_rr *)skb->data; |
| 1027 | |
| 1028 | /* add record route information if not full */ |
| 1029 | if ((hdr_size == sizeof(struct icmp_packet_rr)) && |
| 1030 | (icmp_packet->rr_cur < BAT_RR_LEN)) { |
| 1031 | memcpy(&(icmp_packet->rr[icmp_packet->rr_cur]), |
| 1032 | ethhdr->h_dest, ETH_ALEN); |
| 1033 | icmp_packet->rr_cur++; |
| 1034 | } |
| 1035 | |
| 1036 | /* packet for me */ |
| 1037 | if (is_my_mac(icmp_packet->dst)) |
| 1038 | return recv_my_icmp_packet(bat_priv, skb, hdr_size); |
| 1039 | |
| 1040 | /* TTL exceeded */ |
| 1041 | if (icmp_packet->ttl < 2) |
Simon Wunderlich | 74ef115 | 2010-12-29 16:15:19 +0000 | [diff] [blame] | 1042 | return recv_icmp_ttl_exceeded(bat_priv, skb); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1043 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1044 | /* get routing information */ |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 1045 | orig_node = orig_hash_find(bat_priv, icmp_packet->dst); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1046 | if (!orig_node) |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 1047 | goto out; |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1048 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 1049 | router = orig_node_get_router(orig_node); |
| 1050 | if (!router) |
| 1051 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1052 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1053 | /* create a copy of the skb, if needed, to modify it. */ |
| 1054 | if (skb_cow(skb, sizeof(struct ethhdr)) < 0) |
| 1055 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1056 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1057 | icmp_packet = (struct icmp_packet_rr *)skb->data; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1058 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1059 | /* decrement ttl */ |
| 1060 | icmp_packet->ttl--; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1061 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1062 | /* route it */ |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 1063 | send_skb_packet(skb, router->if_incoming, router->addr); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1064 | ret = NET_RX_SUCCESS; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1065 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1066 | out: |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 1067 | if (router) |
| 1068 | neigh_node_free_ref(router); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1069 | if (orig_node) |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 1070 | orig_node_free_ref(orig_node); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1071 | return ret; |
| 1072 | } |
| 1073 | |
Linus Lüssing | 5515862 | 2011-03-14 22:43:27 +0000 | [diff] [blame] | 1074 | /* In the bonding case, send the packets in a round |
| 1075 | * robin fashion over the remaining interfaces. |
| 1076 | * |
| 1077 | * This method rotates the bonding list and increases the |
| 1078 | * returned router's refcount. */ |
| 1079 | static struct neigh_node *find_bond_router(struct orig_node *primary_orig, |
| 1080 | struct hard_iface *recv_if) |
| 1081 | { |
| 1082 | struct neigh_node *tmp_neigh_node; |
| 1083 | struct neigh_node *router = NULL, *first_candidate = NULL; |
| 1084 | |
| 1085 | rcu_read_lock(); |
| 1086 | list_for_each_entry_rcu(tmp_neigh_node, &primary_orig->bond_list, |
| 1087 | bonding_list) { |
| 1088 | if (!first_candidate) |
| 1089 | first_candidate = tmp_neigh_node; |
| 1090 | |
| 1091 | /* recv_if == NULL on the first node. */ |
| 1092 | if (tmp_neigh_node->if_incoming == recv_if) |
| 1093 | continue; |
| 1094 | |
| 1095 | if (!atomic_inc_not_zero(&tmp_neigh_node->refcount)) |
| 1096 | continue; |
| 1097 | |
| 1098 | router = tmp_neigh_node; |
| 1099 | break; |
| 1100 | } |
| 1101 | |
| 1102 | /* use the first candidate if nothing was found. */ |
| 1103 | if (!router && first_candidate && |
| 1104 | atomic_inc_not_zero(&first_candidate->refcount)) |
| 1105 | router = first_candidate; |
| 1106 | |
| 1107 | if (!router) |
| 1108 | goto out; |
| 1109 | |
| 1110 | /* selected should point to the next element |
| 1111 | * after the current router */ |
| 1112 | spin_lock_bh(&primary_orig->neigh_list_lock); |
| 1113 | /* this is a list_move(), which unfortunately |
| 1114 | * does not exist as rcu version */ |
| 1115 | list_del_rcu(&primary_orig->bond_list); |
| 1116 | list_add_rcu(&primary_orig->bond_list, |
| 1117 | &router->bonding_list); |
| 1118 | spin_unlock_bh(&primary_orig->neigh_list_lock); |
| 1119 | |
| 1120 | out: |
| 1121 | rcu_read_unlock(); |
| 1122 | return router; |
| 1123 | } |
| 1124 | |
| 1125 | /* Interface Alternating: Use the best of the |
| 1126 | * remaining candidates which are not using |
| 1127 | * this interface. |
| 1128 | * |
| 1129 | * Increases the returned router's refcount */ |
| 1130 | static struct neigh_node *find_ifalter_router(struct orig_node *primary_orig, |
| 1131 | struct hard_iface *recv_if) |
| 1132 | { |
| 1133 | struct neigh_node *tmp_neigh_node; |
| 1134 | struct neigh_node *router = NULL, *first_candidate = NULL; |
| 1135 | |
| 1136 | rcu_read_lock(); |
| 1137 | list_for_each_entry_rcu(tmp_neigh_node, &primary_orig->bond_list, |
| 1138 | bonding_list) { |
| 1139 | if (!first_candidate) |
| 1140 | first_candidate = tmp_neigh_node; |
| 1141 | |
| 1142 | /* recv_if == NULL on the first node. */ |
| 1143 | if (tmp_neigh_node->if_incoming == recv_if) |
| 1144 | continue; |
| 1145 | |
| 1146 | if (!atomic_inc_not_zero(&tmp_neigh_node->refcount)) |
| 1147 | continue; |
| 1148 | |
| 1149 | /* if we don't have a router yet |
| 1150 | * or this one is better, choose it. */ |
| 1151 | if ((!router) || |
| 1152 | (tmp_neigh_node->tq_avg > router->tq_avg)) { |
| 1153 | /* decrement refcount of |
| 1154 | * previously selected router */ |
| 1155 | if (router) |
| 1156 | neigh_node_free_ref(router); |
| 1157 | |
| 1158 | router = tmp_neigh_node; |
| 1159 | atomic_inc_not_zero(&router->refcount); |
| 1160 | } |
| 1161 | |
| 1162 | neigh_node_free_ref(tmp_neigh_node); |
| 1163 | } |
| 1164 | |
| 1165 | /* use the first candidate if nothing was found. */ |
| 1166 | if (!router && first_candidate && |
| 1167 | atomic_inc_not_zero(&first_candidate->refcount)) |
| 1168 | router = first_candidate; |
| 1169 | |
| 1170 | rcu_read_unlock(); |
| 1171 | return router; |
| 1172 | } |
| 1173 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1174 | /* find a suitable router for this originator, and use |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 1175 | * bonding if possible. increases the found neighbors |
| 1176 | * refcount.*/ |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1177 | struct neigh_node *find_router(struct bat_priv *bat_priv, |
| 1178 | struct orig_node *orig_node, |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 1179 | struct hard_iface *recv_if) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1180 | { |
| 1181 | struct orig_node *primary_orig_node; |
| 1182 | struct orig_node *router_orig; |
Linus Lüssing | 5515862 | 2011-03-14 22:43:27 +0000 | [diff] [blame] | 1183 | struct neigh_node *router; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1184 | static uint8_t zero_mac[ETH_ALEN] = {0, 0, 0, 0, 0, 0}; |
| 1185 | int bonding_enabled; |
| 1186 | |
| 1187 | if (!orig_node) |
| 1188 | return NULL; |
| 1189 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 1190 | router = orig_node_get_router(orig_node); |
| 1191 | if (!router) |
Marek Lindner | 01df2b6 | 2011-05-05 14:14:46 +0200 | [diff] [blame] | 1192 | goto err; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1193 | |
| 1194 | /* without bonding, the first node should |
| 1195 | * always choose the default router. */ |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1196 | bonding_enabled = atomic_read(&bat_priv->bonding); |
| 1197 | |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 1198 | rcu_read_lock(); |
| 1199 | /* select default router to output */ |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 1200 | router_orig = router->orig_node; |
Marek Lindner | 01df2b6 | 2011-05-05 14:14:46 +0200 | [diff] [blame] | 1201 | if (!router_orig) |
| 1202 | goto err_unlock; |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 1203 | |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 1204 | if ((!recv_if) && (!bonding_enabled)) |
| 1205 | goto return_router; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1206 | |
| 1207 | /* if we have something in the primary_addr, we can search |
| 1208 | * for a potential bonding candidate. */ |
Marek Lindner | 39901e7 | 2011-02-18 12:28:08 +0000 | [diff] [blame] | 1209 | if (compare_eth(router_orig->primary_addr, zero_mac)) |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 1210 | goto return_router; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1211 | |
| 1212 | /* find the orig_node which has the primary interface. might |
| 1213 | * even be the same as our router_orig in many cases */ |
| 1214 | |
Marek Lindner | 39901e7 | 2011-02-18 12:28:08 +0000 | [diff] [blame] | 1215 | if (compare_eth(router_orig->primary_addr, router_orig->orig)) { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1216 | primary_orig_node = router_orig; |
| 1217 | } else { |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 1218 | primary_orig_node = orig_hash_find(bat_priv, |
| 1219 | router_orig->primary_addr); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1220 | if (!primary_orig_node) |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 1221 | goto return_router; |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 1222 | |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 1223 | orig_node_free_ref(primary_orig_node); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1224 | } |
| 1225 | |
| 1226 | /* with less than 2 candidates, we can't do any |
| 1227 | * bonding and prefer the original router. */ |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 1228 | if (atomic_read(&primary_orig_node->bond_candidates) < 2) |
| 1229 | goto return_router; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1230 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1231 | /* all nodes between should choose a candidate which |
| 1232 | * is is not on the interface where the packet came |
| 1233 | * in. */ |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 1234 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1235 | neigh_node_free_ref(router); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1236 | |
Linus Lüssing | 5515862 | 2011-03-14 22:43:27 +0000 | [diff] [blame] | 1237 | if (bonding_enabled) |
| 1238 | router = find_bond_router(primary_orig_node, recv_if); |
| 1239 | else |
| 1240 | router = find_ifalter_router(primary_orig_node, recv_if); |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 1241 | |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 1242 | return_router: |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 1243 | rcu_read_unlock(); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1244 | return router; |
Marek Lindner | 01df2b6 | 2011-05-05 14:14:46 +0200 | [diff] [blame] | 1245 | err_unlock: |
| 1246 | rcu_read_unlock(); |
| 1247 | err: |
| 1248 | if (router) |
| 1249 | neigh_node_free_ref(router); |
| 1250 | return NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1251 | } |
| 1252 | |
| 1253 | static int check_unicast_packet(struct sk_buff *skb, int hdr_size) |
| 1254 | { |
| 1255 | struct ethhdr *ethhdr; |
| 1256 | |
| 1257 | /* drop packet if it has not necessary minimum size */ |
| 1258 | if (unlikely(!pskb_may_pull(skb, hdr_size))) |
| 1259 | return -1; |
| 1260 | |
| 1261 | ethhdr = (struct ethhdr *)skb_mac_header(skb); |
| 1262 | |
| 1263 | /* packet with unicast indication but broadcast recipient */ |
| 1264 | if (is_broadcast_ether_addr(ethhdr->h_dest)) |
| 1265 | return -1; |
| 1266 | |
| 1267 | /* packet with broadcast sender address */ |
| 1268 | if (is_broadcast_ether_addr(ethhdr->h_source)) |
| 1269 | return -1; |
| 1270 | |
| 1271 | /* not for me */ |
| 1272 | if (!is_my_mac(ethhdr->h_dest)) |
| 1273 | return -1; |
| 1274 | |
| 1275 | return 0; |
| 1276 | } |
| 1277 | |
Linus Lüssing | 7cefb14 | 2011-03-02 17:39:31 +0000 | [diff] [blame] | 1278 | int route_unicast_packet(struct sk_buff *skb, struct hard_iface *recv_if) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1279 | { |
| 1280 | struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1281 | struct orig_node *orig_node = NULL; |
| 1282 | struct neigh_node *neigh_node = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1283 | struct unicast_packet *unicast_packet; |
| 1284 | struct ethhdr *ethhdr = (struct ethhdr *)skb_mac_header(skb); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1285 | int ret = NET_RX_DROP; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1286 | struct sk_buff *new_skb; |
| 1287 | |
| 1288 | unicast_packet = (struct unicast_packet *)skb->data; |
| 1289 | |
| 1290 | /* TTL exceeded */ |
| 1291 | if (unicast_packet->ttl < 2) { |
| 1292 | pr_debug("Warning - can't forward unicast packet from %pM to " |
| 1293 | "%pM: ttl exceeded\n", ethhdr->h_source, |
| 1294 | unicast_packet->dest); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1295 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1296 | } |
| 1297 | |
| 1298 | /* get routing information */ |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 1299 | orig_node = orig_hash_find(bat_priv, unicast_packet->dest); |
| 1300 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1301 | if (!orig_node) |
Antonio Quartulli | b5a6f69 | 2011-04-16 11:30:57 +0200 | [diff] [blame] | 1302 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1303 | |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 1304 | /* find_router() increases neigh_nodes refcount if found. */ |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1305 | neigh_node = find_router(bat_priv, orig_node, recv_if); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1306 | |
Marek Lindner | d007260 | 2011-01-19 20:01:44 +0000 | [diff] [blame] | 1307 | if (!neigh_node) |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1308 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1309 | |
| 1310 | /* create a copy of the skb, if needed, to modify it. */ |
| 1311 | if (skb_cow(skb, sizeof(struct ethhdr)) < 0) |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1312 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1313 | |
| 1314 | unicast_packet = (struct unicast_packet *)skb->data; |
| 1315 | |
| 1316 | if (unicast_packet->packet_type == BAT_UNICAST && |
| 1317 | atomic_read(&bat_priv->fragmentation) && |
Marek Lindner | d007260 | 2011-01-19 20:01:44 +0000 | [diff] [blame] | 1318 | skb->len > neigh_node->if_incoming->net_dev->mtu) { |
| 1319 | ret = frag_send_skb(skb, bat_priv, |
| 1320 | neigh_node->if_incoming, neigh_node->addr); |
| 1321 | goto out; |
| 1322 | } |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1323 | |
| 1324 | if (unicast_packet->packet_type == BAT_UNICAST_FRAG && |
Marek Lindner | d007260 | 2011-01-19 20:01:44 +0000 | [diff] [blame] | 1325 | frag_can_reassemble(skb, neigh_node->if_incoming->net_dev->mtu)) { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1326 | |
| 1327 | ret = frag_reassemble_skb(skb, bat_priv, &new_skb); |
| 1328 | |
| 1329 | if (ret == NET_RX_DROP) |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1330 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1331 | |
| 1332 | /* packet was buffered for late merge */ |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1333 | if (!new_skb) { |
| 1334 | ret = NET_RX_SUCCESS; |
| 1335 | goto out; |
| 1336 | } |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1337 | |
| 1338 | skb = new_skb; |
| 1339 | unicast_packet = (struct unicast_packet *)skb->data; |
| 1340 | } |
| 1341 | |
| 1342 | /* decrement ttl */ |
| 1343 | unicast_packet->ttl--; |
| 1344 | |
| 1345 | /* route it */ |
Marek Lindner | d007260 | 2011-01-19 20:01:44 +0000 | [diff] [blame] | 1346 | send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1347 | ret = NET_RX_SUCCESS; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1348 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1349 | out: |
| 1350 | if (neigh_node) |
| 1351 | neigh_node_free_ref(neigh_node); |
| 1352 | if (orig_node) |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 1353 | orig_node_free_ref(orig_node); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 1354 | return ret; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1355 | } |
| 1356 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 1357 | int recv_unicast_packet(struct sk_buff *skb, struct hard_iface *recv_if) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1358 | { |
| 1359 | struct unicast_packet *unicast_packet; |
| 1360 | int hdr_size = sizeof(struct unicast_packet); |
| 1361 | |
| 1362 | if (check_unicast_packet(skb, hdr_size) < 0) |
| 1363 | return NET_RX_DROP; |
| 1364 | |
| 1365 | unicast_packet = (struct unicast_packet *)skb->data; |
| 1366 | |
| 1367 | /* packet for me */ |
| 1368 | if (is_my_mac(unicast_packet->dest)) { |
| 1369 | interface_rx(recv_if->soft_iface, skb, recv_if, hdr_size); |
| 1370 | return NET_RX_SUCCESS; |
| 1371 | } |
| 1372 | |
Linus Lüssing | 7cefb14 | 2011-03-02 17:39:31 +0000 | [diff] [blame] | 1373 | return route_unicast_packet(skb, recv_if); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1374 | } |
| 1375 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 1376 | int recv_ucast_frag_packet(struct sk_buff *skb, struct hard_iface *recv_if) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1377 | { |
| 1378 | struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface); |
| 1379 | struct unicast_frag_packet *unicast_packet; |
| 1380 | int hdr_size = sizeof(struct unicast_frag_packet); |
| 1381 | struct sk_buff *new_skb = NULL; |
| 1382 | int ret; |
| 1383 | |
| 1384 | if (check_unicast_packet(skb, hdr_size) < 0) |
| 1385 | return NET_RX_DROP; |
| 1386 | |
| 1387 | unicast_packet = (struct unicast_frag_packet *)skb->data; |
| 1388 | |
| 1389 | /* packet for me */ |
| 1390 | if (is_my_mac(unicast_packet->dest)) { |
| 1391 | |
| 1392 | ret = frag_reassemble_skb(skb, bat_priv, &new_skb); |
| 1393 | |
| 1394 | if (ret == NET_RX_DROP) |
| 1395 | return NET_RX_DROP; |
| 1396 | |
| 1397 | /* packet was buffered for late merge */ |
| 1398 | if (!new_skb) |
| 1399 | return NET_RX_SUCCESS; |
| 1400 | |
| 1401 | interface_rx(recv_if->soft_iface, new_skb, recv_if, |
| 1402 | sizeof(struct unicast_packet)); |
| 1403 | return NET_RX_SUCCESS; |
| 1404 | } |
| 1405 | |
Linus Lüssing | 7cefb14 | 2011-03-02 17:39:31 +0000 | [diff] [blame] | 1406 | return route_unicast_packet(skb, recv_if); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1407 | } |
| 1408 | |
| 1409 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 1410 | int recv_bcast_packet(struct sk_buff *skb, struct hard_iface *recv_if) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1411 | { |
| 1412 | struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface); |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1413 | struct orig_node *orig_node = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1414 | struct bcast_packet *bcast_packet; |
| 1415 | struct ethhdr *ethhdr; |
| 1416 | int hdr_size = sizeof(struct bcast_packet); |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1417 | int ret = NET_RX_DROP; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1418 | int32_t seq_diff; |
| 1419 | |
| 1420 | /* drop packet if it has not necessary minimum size */ |
| 1421 | if (unlikely(!pskb_may_pull(skb, hdr_size))) |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1422 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1423 | |
| 1424 | ethhdr = (struct ethhdr *)skb_mac_header(skb); |
| 1425 | |
| 1426 | /* packet with broadcast indication but unicast recipient */ |
| 1427 | if (!is_broadcast_ether_addr(ethhdr->h_dest)) |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1428 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1429 | |
| 1430 | /* packet with broadcast sender address */ |
| 1431 | if (is_broadcast_ether_addr(ethhdr->h_source)) |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1432 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1433 | |
| 1434 | /* ignore broadcasts sent by myself */ |
| 1435 | if (is_my_mac(ethhdr->h_source)) |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1436 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1437 | |
| 1438 | bcast_packet = (struct bcast_packet *)skb->data; |
| 1439 | |
| 1440 | /* ignore broadcasts originated by myself */ |
| 1441 | if (is_my_mac(bcast_packet->orig)) |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1442 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1443 | |
| 1444 | if (bcast_packet->ttl < 2) |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1445 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1446 | |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 1447 | orig_node = orig_hash_find(bat_priv, bcast_packet->orig); |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1448 | |
| 1449 | if (!orig_node) |
Antonio Quartulli | b5a6f69 | 2011-04-16 11:30:57 +0200 | [diff] [blame] | 1450 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1451 | |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1452 | spin_lock_bh(&orig_node->bcast_seqno_lock); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1453 | |
| 1454 | /* check whether the packet is a duplicate */ |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1455 | if (get_bit_status(orig_node->bcast_bits, orig_node->last_bcast_seqno, |
| 1456 | ntohl(bcast_packet->seqno))) |
| 1457 | goto spin_unlock; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1458 | |
| 1459 | seq_diff = ntohl(bcast_packet->seqno) - orig_node->last_bcast_seqno; |
| 1460 | |
| 1461 | /* check whether the packet is old and the host just restarted. */ |
| 1462 | if (window_protected(bat_priv, seq_diff, |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1463 | &orig_node->bcast_seqno_reset)) |
| 1464 | goto spin_unlock; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1465 | |
| 1466 | /* mark broadcast in flood history, update window position |
| 1467 | * if required. */ |
| 1468 | if (bit_get_packet(bat_priv, orig_node->bcast_bits, seq_diff, 1)) |
| 1469 | orig_node->last_bcast_seqno = ntohl(bcast_packet->seqno); |
| 1470 | |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1471 | spin_unlock_bh(&orig_node->bcast_seqno_lock); |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1472 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1473 | /* rebroadcast packet */ |
| 1474 | add_bcast_packet_to_list(bat_priv, skb); |
| 1475 | |
| 1476 | /* broadcast for me */ |
| 1477 | interface_rx(recv_if->soft_iface, skb, recv_if, hdr_size); |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1478 | ret = NET_RX_SUCCESS; |
| 1479 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1480 | |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1481 | spin_unlock: |
| 1482 | spin_unlock_bh(&orig_node->bcast_seqno_lock); |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1483 | out: |
| 1484 | if (orig_node) |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 1485 | orig_node_free_ref(orig_node); |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1486 | return ret; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1487 | } |
| 1488 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 1489 | int recv_vis_packet(struct sk_buff *skb, struct hard_iface *recv_if) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1490 | { |
| 1491 | struct vis_packet *vis_packet; |
| 1492 | struct ethhdr *ethhdr; |
| 1493 | struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface); |
| 1494 | int hdr_size = sizeof(struct vis_packet); |
| 1495 | |
| 1496 | /* keep skb linear */ |
| 1497 | if (skb_linearize(skb) < 0) |
| 1498 | return NET_RX_DROP; |
| 1499 | |
| 1500 | if (unlikely(!pskb_may_pull(skb, hdr_size))) |
| 1501 | return NET_RX_DROP; |
| 1502 | |
| 1503 | vis_packet = (struct vis_packet *)skb->data; |
| 1504 | ethhdr = (struct ethhdr *)skb_mac_header(skb); |
| 1505 | |
| 1506 | /* not for me */ |
| 1507 | if (!is_my_mac(ethhdr->h_dest)) |
| 1508 | return NET_RX_DROP; |
| 1509 | |
| 1510 | /* ignore own packets */ |
| 1511 | if (is_my_mac(vis_packet->vis_orig)) |
| 1512 | return NET_RX_DROP; |
| 1513 | |
| 1514 | if (is_my_mac(vis_packet->sender_orig)) |
| 1515 | return NET_RX_DROP; |
| 1516 | |
| 1517 | switch (vis_packet->vis_type) { |
| 1518 | case VIS_TYPE_SERVER_SYNC: |
| 1519 | receive_server_sync_packet(bat_priv, vis_packet, |
| 1520 | skb_headlen(skb)); |
| 1521 | break; |
| 1522 | |
| 1523 | case VIS_TYPE_CLIENT_UPDATE: |
| 1524 | receive_client_update_packet(bat_priv, vis_packet, |
| 1525 | skb_headlen(skb)); |
| 1526 | break; |
| 1527 | |
| 1528 | default: /* ignore unknown packet */ |
| 1529 | break; |
| 1530 | } |
| 1531 | |
| 1532 | /* We take a copy of the data in the packet, so we should |
| 1533 | always free the skbuf. */ |
| 1534 | return NET_RX_DROP; |
| 1535 | } |