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" |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 25 | #include "soft-interface.h" |
| 26 | #include "hard-interface.h" |
| 27 | #include "icmp_socket.h" |
| 28 | #include "translation-table.h" |
| 29 | #include "originator.h" |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 30 | #include "vis.h" |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 31 | #include "unicast.h" |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 32 | #include "bat_ogm.h" |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 33 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 34 | void slide_own_bcast_window(struct hard_iface *hard_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 35 | { |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 36 | struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 37 | struct hashtable_t *hash = bat_priv->orig_hash; |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 38 | struct hlist_node *node; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 39 | struct hlist_head *head; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 40 | struct orig_node *orig_node; |
| 41 | unsigned long *word; |
Antonio Quartulli | c90681b | 2011-10-05 17:05:25 +0200 | [diff] [blame] | 42 | uint32_t i; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 43 | size_t word_index; |
| 44 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 45 | for (i = 0; i < hash->size; i++) { |
| 46 | head = &hash->table[i]; |
| 47 | |
Marek Lindner | fb778ea | 2011-01-19 20:01:40 +0000 | [diff] [blame] | 48 | rcu_read_lock(); |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 49 | hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) { |
Marek Lindner | 2ae2daf | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 50 | spin_lock_bh(&orig_node->ogm_cnt_lock); |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 51 | word_index = hard_iface->if_num * NUM_WORDS; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 52 | word = &(orig_node->bcast_own[word_index]); |
| 53 | |
| 54 | bit_get_packet(bat_priv, word, 1, 0); |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 55 | orig_node->bcast_own_sum[hard_iface->if_num] = |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 56 | bit_packet_count(word); |
Marek Lindner | 2ae2daf | 2011-01-19 20:01:42 +0000 | [diff] [blame] | 57 | spin_unlock_bh(&orig_node->ogm_cnt_lock); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 58 | } |
Marek Lindner | fb778ea | 2011-01-19 20:01:40 +0000 | [diff] [blame] | 59 | rcu_read_unlock(); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 60 | } |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 61 | } |
| 62 | |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 63 | static void _update_route(struct bat_priv *bat_priv, |
| 64 | struct orig_node *orig_node, |
| 65 | struct neigh_node *neigh_node) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 66 | { |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 67 | struct neigh_node *curr_router; |
| 68 | |
| 69 | curr_router = orig_node_get_router(orig_node); |
Marek Lindner | a8e7f4b | 2010-12-12 21:57:10 +0000 | [diff] [blame] | 70 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 71 | /* route deleted */ |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 72 | if ((curr_router) && (!neigh_node)) { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 73 | bat_dbg(DBG_ROUTES, bat_priv, "Deleting route towards: %pM\n", |
| 74 | orig_node->orig); |
Antonio Quartulli | 2dafb49 | 2011-05-05 08:42:45 +0200 | [diff] [blame] | 75 | tt_global_del_orig(bat_priv, orig_node, |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 76 | "Deleted route towards originator"); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 77 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 78 | /* route added */ |
| 79 | } else if ((!curr_router) && (neigh_node)) { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 80 | |
| 81 | bat_dbg(DBG_ROUTES, bat_priv, |
| 82 | "Adding route towards: %pM (via %pM)\n", |
| 83 | orig_node->orig, neigh_node->addr); |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 84 | /* route changed */ |
Sven Eckelmann | bb899b8 | 2011-05-10 11:22:37 +0200 | [diff] [blame] | 85 | } else if (neigh_node && curr_router) { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 86 | bat_dbg(DBG_ROUTES, bat_priv, |
| 87 | "Changing route towards: %pM " |
| 88 | "(now via %pM - was via %pM)\n", |
| 89 | orig_node->orig, neigh_node->addr, |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 90 | curr_router->addr); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 91 | } |
| 92 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 93 | if (curr_router) |
| 94 | neigh_node_free_ref(curr_router); |
| 95 | |
| 96 | /* increase refcount of new best neighbor */ |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 97 | if (neigh_node && !atomic_inc_not_zero(&neigh_node->refcount)) |
| 98 | neigh_node = NULL; |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 99 | |
| 100 | spin_lock_bh(&orig_node->neigh_list_lock); |
| 101 | rcu_assign_pointer(orig_node->router, neigh_node); |
| 102 | spin_unlock_bh(&orig_node->neigh_list_lock); |
| 103 | |
| 104 | /* decrease refcount of previous best neighbor */ |
| 105 | if (curr_router) |
| 106 | neigh_node_free_ref(curr_router); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 107 | } |
| 108 | |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 109 | void update_route(struct bat_priv *bat_priv, struct orig_node *orig_node, |
| 110 | struct neigh_node *neigh_node) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 111 | { |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 112 | struct neigh_node *router = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 113 | |
| 114 | if (!orig_node) |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 115 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 116 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 117 | router = orig_node_get_router(orig_node); |
| 118 | |
| 119 | if (router != neigh_node) |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 120 | _update_route(bat_priv, orig_node, neigh_node); |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 121 | |
| 122 | out: |
| 123 | if (router) |
| 124 | neigh_node_free_ref(router); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 125 | } |
| 126 | |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 127 | /* caller must hold the neigh_list_lock */ |
| 128 | void bonding_candidate_del(struct orig_node *orig_node, |
| 129 | struct neigh_node *neigh_node) |
| 130 | { |
| 131 | /* this neighbor is not part of our candidate list */ |
| 132 | if (list_empty(&neigh_node->bonding_list)) |
| 133 | goto out; |
| 134 | |
| 135 | list_del_rcu(&neigh_node->bonding_list); |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 136 | INIT_LIST_HEAD(&neigh_node->bonding_list); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 137 | neigh_node_free_ref(neigh_node); |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 138 | atomic_dec(&orig_node->bond_candidates); |
| 139 | |
| 140 | out: |
| 141 | return; |
| 142 | } |
| 143 | |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 144 | void bonding_candidate_add(struct orig_node *orig_node, |
| 145 | struct neigh_node *neigh_node) |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 146 | { |
| 147 | struct hlist_node *node; |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 148 | struct neigh_node *tmp_neigh_node, *router = NULL; |
| 149 | uint8_t interference_candidate = 0; |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 150 | |
| 151 | spin_lock_bh(&orig_node->neigh_list_lock); |
| 152 | |
| 153 | /* only consider if it has the same primary address ... */ |
Marek Lindner | 39901e7 | 2011-02-18 12:28:08 +0000 | [diff] [blame] | 154 | if (!compare_eth(orig_node->orig, |
| 155 | neigh_node->orig_node->primary_addr)) |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 156 | goto candidate_del; |
| 157 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 158 | router = orig_node_get_router(orig_node); |
| 159 | if (!router) |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 160 | goto candidate_del; |
| 161 | |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 162 | /* ... and is good enough to be considered */ |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 163 | if (neigh_node->tq_avg < router->tq_avg - BONDING_TQ_THRESHOLD) |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 164 | goto candidate_del; |
| 165 | |
| 166 | /** |
| 167 | * check if we have another candidate with the same mac address or |
| 168 | * interface. If we do, we won't select this candidate because of |
| 169 | * possible interference. |
| 170 | */ |
| 171 | hlist_for_each_entry_rcu(tmp_neigh_node, node, |
| 172 | &orig_node->neigh_list, list) { |
| 173 | |
| 174 | if (tmp_neigh_node == neigh_node) |
| 175 | continue; |
| 176 | |
| 177 | /* we only care if the other candidate is even |
| 178 | * considered as candidate. */ |
| 179 | if (list_empty(&tmp_neigh_node->bonding_list)) |
| 180 | continue; |
| 181 | |
| 182 | if ((neigh_node->if_incoming == tmp_neigh_node->if_incoming) || |
Marek Lindner | 39901e7 | 2011-02-18 12:28:08 +0000 | [diff] [blame] | 183 | (compare_eth(neigh_node->addr, tmp_neigh_node->addr))) { |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 184 | interference_candidate = 1; |
| 185 | break; |
| 186 | } |
| 187 | } |
| 188 | |
| 189 | /* don't care further if it is an interference candidate */ |
| 190 | if (interference_candidate) |
| 191 | goto candidate_del; |
| 192 | |
| 193 | /* this neighbor already is part of our candidate list */ |
| 194 | if (!list_empty(&neigh_node->bonding_list)) |
| 195 | goto out; |
| 196 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 197 | if (!atomic_inc_not_zero(&neigh_node->refcount)) |
| 198 | goto out; |
| 199 | |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 200 | list_add_rcu(&neigh_node->bonding_list, &orig_node->bond_list); |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 201 | atomic_inc(&orig_node->bond_candidates); |
| 202 | goto out; |
| 203 | |
| 204 | candidate_del: |
| 205 | bonding_candidate_del(orig_node, neigh_node); |
| 206 | |
| 207 | out: |
| 208 | spin_unlock_bh(&orig_node->neigh_list_lock); |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 209 | |
| 210 | if (router) |
| 211 | neigh_node_free_ref(router); |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | /* copy primary address for bonding */ |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 215 | void bonding_save_primary(const struct orig_node *orig_node, |
| 216 | struct orig_node *orig_neigh_node, |
| 217 | const struct batman_ogm_packet *batman_ogm_packet) |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 218 | { |
Marek Lindner | b6da4bf | 2011-07-29 17:31:50 +0200 | [diff] [blame] | 219 | if (!(batman_ogm_packet->flags & PRIMARIES_FIRST_HOP)) |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 220 | return; |
| 221 | |
| 222 | memcpy(orig_neigh_node->primary_addr, orig_node->orig, ETH_ALEN); |
| 223 | } |
| 224 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 225 | /* checks whether the host restarted and is in the protection time. |
| 226 | * returns: |
| 227 | * 0 if the packet is to be accepted |
| 228 | * 1 if the packet is to be ignored. |
| 229 | */ |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 230 | int window_protected(struct bat_priv *bat_priv, int32_t seq_num_diff, |
| 231 | unsigned long *last_reset) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 232 | { |
| 233 | if ((seq_num_diff <= -TQ_LOCAL_WINDOW_SIZE) |
| 234 | || (seq_num_diff >= EXPECTED_SEQNO_RANGE)) { |
| 235 | if (time_after(jiffies, *last_reset + |
| 236 | msecs_to_jiffies(RESET_PROTECTION_MS))) { |
| 237 | |
| 238 | *last_reset = jiffies; |
| 239 | bat_dbg(DBG_BATMAN, bat_priv, |
| 240 | "old packet received, start protection\n"); |
| 241 | |
| 242 | return 0; |
| 243 | } else |
| 244 | return 1; |
| 245 | } |
| 246 | return 0; |
| 247 | } |
| 248 | |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 249 | int recv_bat_ogm_packet(struct sk_buff *skb, struct hard_iface *hard_iface) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 250 | { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 251 | struct ethhdr *ethhdr; |
| 252 | |
| 253 | /* drop packet if it has not necessary minimum size */ |
Marek Lindner | b6da4bf | 2011-07-29 17:31:50 +0200 | [diff] [blame] | 254 | if (unlikely(!pskb_may_pull(skb, BATMAN_OGM_LEN))) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 255 | return NET_RX_DROP; |
| 256 | |
| 257 | ethhdr = (struct ethhdr *)skb_mac_header(skb); |
| 258 | |
| 259 | /* packet with broadcast indication but unicast recipient */ |
| 260 | if (!is_broadcast_ether_addr(ethhdr->h_dest)) |
| 261 | return NET_RX_DROP; |
| 262 | |
| 263 | /* packet with broadcast sender address */ |
| 264 | if (is_broadcast_ether_addr(ethhdr->h_source)) |
| 265 | return NET_RX_DROP; |
| 266 | |
| 267 | /* create a copy of the skb, if needed, to modify it. */ |
| 268 | if (skb_cow(skb, 0) < 0) |
| 269 | return NET_RX_DROP; |
| 270 | |
| 271 | /* keep skb linear */ |
| 272 | if (skb_linearize(skb) < 0) |
| 273 | return NET_RX_DROP; |
| 274 | |
| 275 | ethhdr = (struct ethhdr *)skb_mac_header(skb); |
| 276 | |
Marek Lindner | fc95727 | 2011-07-30 12:04:12 +0200 | [diff] [blame] | 277 | bat_ogm_receive(ethhdr, skb->data, skb_headlen(skb), hard_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 278 | |
| 279 | kfree_skb(skb); |
| 280 | return NET_RX_SUCCESS; |
| 281 | } |
| 282 | |
| 283 | static int recv_my_icmp_packet(struct bat_priv *bat_priv, |
| 284 | struct sk_buff *skb, size_t icmp_len) |
| 285 | { |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 286 | struct hard_iface *primary_if = NULL; |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 287 | struct orig_node *orig_node = NULL; |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 288 | struct neigh_node *router = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 289 | struct icmp_packet_rr *icmp_packet; |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 290 | int ret = NET_RX_DROP; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 291 | |
| 292 | icmp_packet = (struct icmp_packet_rr *)skb->data; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 293 | |
| 294 | /* add data to device queue */ |
| 295 | if (icmp_packet->msg_type != ECHO_REQUEST) { |
| 296 | bat_socket_receive_packet(icmp_packet, icmp_len); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 297 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 298 | } |
| 299 | |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 300 | primary_if = primary_if_get_selected(bat_priv); |
| 301 | if (!primary_if) |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 302 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 303 | |
| 304 | /* answer echo request (ping) */ |
| 305 | /* get routing information */ |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 306 | orig_node = orig_hash_find(bat_priv, icmp_packet->orig); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 307 | if (!orig_node) |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 308 | goto out; |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 309 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 310 | router = orig_node_get_router(orig_node); |
| 311 | if (!router) |
| 312 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 313 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 314 | /* create a copy of the skb, if needed, to modify it. */ |
| 315 | if (skb_cow(skb, sizeof(struct ethhdr)) < 0) |
| 316 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 317 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 318 | icmp_packet = (struct icmp_packet_rr *)skb->data; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 319 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 320 | memcpy(icmp_packet->dst, icmp_packet->orig, ETH_ALEN); |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 321 | memcpy(icmp_packet->orig, primary_if->net_dev->dev_addr, ETH_ALEN); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 322 | icmp_packet->msg_type = ECHO_REPLY; |
| 323 | icmp_packet->ttl = TTL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 324 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 325 | send_skb_packet(skb, router->if_incoming, router->addr); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 326 | ret = NET_RX_SUCCESS; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 327 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 328 | out: |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 329 | if (primary_if) |
| 330 | hardif_free_ref(primary_if); |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 331 | if (router) |
| 332 | neigh_node_free_ref(router); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 333 | if (orig_node) |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 334 | orig_node_free_ref(orig_node); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 335 | return ret; |
| 336 | } |
| 337 | |
| 338 | static int recv_icmp_ttl_exceeded(struct bat_priv *bat_priv, |
Simon Wunderlich | 74ef115 | 2010-12-29 16:15:19 +0000 | [diff] [blame] | 339 | struct sk_buff *skb) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 340 | { |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 341 | struct hard_iface *primary_if = NULL; |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 342 | struct orig_node *orig_node = NULL; |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 343 | struct neigh_node *router = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 344 | struct icmp_packet *icmp_packet; |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 345 | int ret = NET_RX_DROP; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 346 | |
| 347 | icmp_packet = (struct icmp_packet *)skb->data; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 348 | |
| 349 | /* send TTL exceeded if packet is an echo request (traceroute) */ |
| 350 | if (icmp_packet->msg_type != ECHO_REQUEST) { |
| 351 | pr_debug("Warning - can't forward icmp packet from %pM to " |
| 352 | "%pM: ttl exceeded\n", icmp_packet->orig, |
| 353 | icmp_packet->dst); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 354 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 355 | } |
| 356 | |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 357 | primary_if = primary_if_get_selected(bat_priv); |
| 358 | if (!primary_if) |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 359 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 360 | |
| 361 | /* get routing information */ |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 362 | orig_node = orig_hash_find(bat_priv, icmp_packet->orig); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 363 | if (!orig_node) |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 364 | goto out; |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 365 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 366 | router = orig_node_get_router(orig_node); |
| 367 | if (!router) |
| 368 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 369 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 370 | /* create a copy of the skb, if needed, to modify it. */ |
| 371 | if (skb_cow(skb, sizeof(struct ethhdr)) < 0) |
| 372 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 373 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 374 | icmp_packet = (struct icmp_packet *)skb->data; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 375 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 376 | memcpy(icmp_packet->dst, icmp_packet->orig, ETH_ALEN); |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 377 | memcpy(icmp_packet->orig, primary_if->net_dev->dev_addr, ETH_ALEN); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 378 | icmp_packet->msg_type = TTL_EXCEEDED; |
| 379 | icmp_packet->ttl = TTL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 380 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 381 | send_skb_packet(skb, router->if_incoming, router->addr); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 382 | ret = NET_RX_SUCCESS; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 383 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 384 | out: |
Marek Lindner | 32ae9b2 | 2011-04-20 15:40:58 +0200 | [diff] [blame] | 385 | if (primary_if) |
| 386 | hardif_free_ref(primary_if); |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 387 | if (router) |
| 388 | neigh_node_free_ref(router); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 389 | if (orig_node) |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 390 | orig_node_free_ref(orig_node); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 391 | return ret; |
| 392 | } |
| 393 | |
| 394 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 395 | 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] | 396 | { |
| 397 | struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface); |
| 398 | struct icmp_packet_rr *icmp_packet; |
| 399 | struct ethhdr *ethhdr; |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 400 | struct orig_node *orig_node = NULL; |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 401 | struct neigh_node *router = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 402 | int hdr_size = sizeof(struct icmp_packet); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 403 | int ret = NET_RX_DROP; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 404 | |
| 405 | /** |
| 406 | * we truncate all incoming icmp packets if they don't match our size |
| 407 | */ |
| 408 | if (skb->len >= sizeof(struct icmp_packet_rr)) |
| 409 | hdr_size = sizeof(struct icmp_packet_rr); |
| 410 | |
| 411 | /* drop packet if it has not necessary minimum size */ |
| 412 | if (unlikely(!pskb_may_pull(skb, hdr_size))) |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 413 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 414 | |
| 415 | ethhdr = (struct ethhdr *)skb_mac_header(skb); |
| 416 | |
| 417 | /* packet with unicast indication but broadcast recipient */ |
| 418 | if (is_broadcast_ether_addr(ethhdr->h_dest)) |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 419 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 420 | |
| 421 | /* packet with broadcast sender address */ |
| 422 | if (is_broadcast_ether_addr(ethhdr->h_source)) |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 423 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 424 | |
| 425 | /* not for me */ |
| 426 | if (!is_my_mac(ethhdr->h_dest)) |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 427 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 428 | |
| 429 | icmp_packet = (struct icmp_packet_rr *)skb->data; |
| 430 | |
| 431 | /* add record route information if not full */ |
| 432 | if ((hdr_size == sizeof(struct icmp_packet_rr)) && |
| 433 | (icmp_packet->rr_cur < BAT_RR_LEN)) { |
| 434 | memcpy(&(icmp_packet->rr[icmp_packet->rr_cur]), |
| 435 | ethhdr->h_dest, ETH_ALEN); |
| 436 | icmp_packet->rr_cur++; |
| 437 | } |
| 438 | |
| 439 | /* packet for me */ |
| 440 | if (is_my_mac(icmp_packet->dst)) |
| 441 | return recv_my_icmp_packet(bat_priv, skb, hdr_size); |
| 442 | |
| 443 | /* TTL exceeded */ |
| 444 | if (icmp_packet->ttl < 2) |
Simon Wunderlich | 74ef115 | 2010-12-29 16:15:19 +0000 | [diff] [blame] | 445 | return recv_icmp_ttl_exceeded(bat_priv, skb); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 446 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 447 | /* get routing information */ |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 448 | orig_node = orig_hash_find(bat_priv, icmp_packet->dst); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 449 | if (!orig_node) |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 450 | goto out; |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 451 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 452 | router = orig_node_get_router(orig_node); |
| 453 | if (!router) |
| 454 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 455 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 456 | /* create a copy of the skb, if needed, to modify it. */ |
| 457 | if (skb_cow(skb, sizeof(struct ethhdr)) < 0) |
| 458 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 459 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 460 | icmp_packet = (struct icmp_packet_rr *)skb->data; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 461 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 462 | /* decrement ttl */ |
| 463 | icmp_packet->ttl--; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 464 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 465 | /* route it */ |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 466 | send_skb_packet(skb, router->if_incoming, router->addr); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 467 | ret = NET_RX_SUCCESS; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 468 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 469 | out: |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 470 | if (router) |
| 471 | neigh_node_free_ref(router); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 472 | if (orig_node) |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 473 | orig_node_free_ref(orig_node); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 474 | return ret; |
| 475 | } |
| 476 | |
Linus Lüssing | 5515862 | 2011-03-14 22:43:27 +0000 | [diff] [blame] | 477 | /* In the bonding case, send the packets in a round |
| 478 | * robin fashion over the remaining interfaces. |
| 479 | * |
| 480 | * This method rotates the bonding list and increases the |
| 481 | * returned router's refcount. */ |
| 482 | static struct neigh_node *find_bond_router(struct orig_node *primary_orig, |
Sven Eckelmann | 747e422 | 2011-05-14 23:14:50 +0200 | [diff] [blame] | 483 | const struct hard_iface *recv_if) |
Linus Lüssing | 5515862 | 2011-03-14 22:43:27 +0000 | [diff] [blame] | 484 | { |
| 485 | struct neigh_node *tmp_neigh_node; |
| 486 | struct neigh_node *router = NULL, *first_candidate = NULL; |
| 487 | |
| 488 | rcu_read_lock(); |
| 489 | list_for_each_entry_rcu(tmp_neigh_node, &primary_orig->bond_list, |
| 490 | bonding_list) { |
| 491 | if (!first_candidate) |
| 492 | first_candidate = tmp_neigh_node; |
| 493 | |
| 494 | /* recv_if == NULL on the first node. */ |
| 495 | if (tmp_neigh_node->if_incoming == recv_if) |
| 496 | continue; |
| 497 | |
| 498 | if (!atomic_inc_not_zero(&tmp_neigh_node->refcount)) |
| 499 | continue; |
| 500 | |
| 501 | router = tmp_neigh_node; |
| 502 | break; |
| 503 | } |
| 504 | |
| 505 | /* use the first candidate if nothing was found. */ |
| 506 | if (!router && first_candidate && |
| 507 | atomic_inc_not_zero(&first_candidate->refcount)) |
| 508 | router = first_candidate; |
| 509 | |
| 510 | if (!router) |
| 511 | goto out; |
| 512 | |
| 513 | /* selected should point to the next element |
| 514 | * after the current router */ |
| 515 | spin_lock_bh(&primary_orig->neigh_list_lock); |
| 516 | /* this is a list_move(), which unfortunately |
| 517 | * does not exist as rcu version */ |
| 518 | list_del_rcu(&primary_orig->bond_list); |
| 519 | list_add_rcu(&primary_orig->bond_list, |
| 520 | &router->bonding_list); |
| 521 | spin_unlock_bh(&primary_orig->neigh_list_lock); |
| 522 | |
| 523 | out: |
| 524 | rcu_read_unlock(); |
| 525 | return router; |
| 526 | } |
| 527 | |
| 528 | /* Interface Alternating: Use the best of the |
| 529 | * remaining candidates which are not using |
| 530 | * this interface. |
| 531 | * |
| 532 | * Increases the returned router's refcount */ |
| 533 | static struct neigh_node *find_ifalter_router(struct orig_node *primary_orig, |
Sven Eckelmann | 747e422 | 2011-05-14 23:14:50 +0200 | [diff] [blame] | 534 | const struct hard_iface *recv_if) |
Linus Lüssing | 5515862 | 2011-03-14 22:43:27 +0000 | [diff] [blame] | 535 | { |
| 536 | struct neigh_node *tmp_neigh_node; |
| 537 | struct neigh_node *router = NULL, *first_candidate = NULL; |
| 538 | |
| 539 | rcu_read_lock(); |
| 540 | list_for_each_entry_rcu(tmp_neigh_node, &primary_orig->bond_list, |
| 541 | bonding_list) { |
| 542 | if (!first_candidate) |
| 543 | first_candidate = tmp_neigh_node; |
| 544 | |
| 545 | /* recv_if == NULL on the first node. */ |
| 546 | if (tmp_neigh_node->if_incoming == recv_if) |
| 547 | continue; |
| 548 | |
| 549 | if (!atomic_inc_not_zero(&tmp_neigh_node->refcount)) |
| 550 | continue; |
| 551 | |
| 552 | /* if we don't have a router yet |
| 553 | * or this one is better, choose it. */ |
| 554 | if ((!router) || |
| 555 | (tmp_neigh_node->tq_avg > router->tq_avg)) { |
| 556 | /* decrement refcount of |
| 557 | * previously selected router */ |
| 558 | if (router) |
| 559 | neigh_node_free_ref(router); |
| 560 | |
| 561 | router = tmp_neigh_node; |
| 562 | atomic_inc_not_zero(&router->refcount); |
| 563 | } |
| 564 | |
| 565 | neigh_node_free_ref(tmp_neigh_node); |
| 566 | } |
| 567 | |
| 568 | /* use the first candidate if nothing was found. */ |
| 569 | if (!router && first_candidate && |
| 570 | atomic_inc_not_zero(&first_candidate->refcount)) |
| 571 | router = first_candidate; |
| 572 | |
| 573 | rcu_read_unlock(); |
| 574 | return router; |
| 575 | } |
| 576 | |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 577 | int recv_tt_query(struct sk_buff *skb, struct hard_iface *recv_if) |
| 578 | { |
| 579 | struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface); |
| 580 | struct tt_query_packet *tt_query; |
Antonio Quartulli | 8b7342d | 2011-10-16 20:32:03 +0200 | [diff] [blame] | 581 | uint16_t tt_len; |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 582 | struct ethhdr *ethhdr; |
| 583 | |
| 584 | /* drop packet if it has not necessary minimum size */ |
| 585 | if (unlikely(!pskb_may_pull(skb, sizeof(struct tt_query_packet)))) |
| 586 | goto out; |
| 587 | |
| 588 | /* I could need to modify it */ |
| 589 | if (skb_cow(skb, sizeof(struct tt_query_packet)) < 0) |
| 590 | goto out; |
| 591 | |
| 592 | ethhdr = (struct ethhdr *)skb_mac_header(skb); |
| 593 | |
| 594 | /* packet with unicast indication but broadcast recipient */ |
| 595 | if (is_broadcast_ether_addr(ethhdr->h_dest)) |
| 596 | goto out; |
| 597 | |
| 598 | /* packet with broadcast sender address */ |
| 599 | if (is_broadcast_ether_addr(ethhdr->h_source)) |
| 600 | goto out; |
| 601 | |
| 602 | tt_query = (struct tt_query_packet *)skb->data; |
| 603 | |
| 604 | tt_query->tt_data = ntohs(tt_query->tt_data); |
| 605 | |
| 606 | switch (tt_query->flags & TT_QUERY_TYPE_MASK) { |
| 607 | case TT_REQUEST: |
| 608 | /* If we cannot provide an answer the tt_request is |
| 609 | * forwarded */ |
| 610 | if (!send_tt_response(bat_priv, tt_query)) { |
| 611 | bat_dbg(DBG_TT, bat_priv, |
| 612 | "Routing TT_REQUEST to %pM [%c]\n", |
| 613 | tt_query->dst, |
| 614 | (tt_query->flags & TT_FULL_TABLE ? 'F' : '.')); |
| 615 | tt_query->tt_data = htons(tt_query->tt_data); |
| 616 | return route_unicast_packet(skb, recv_if); |
| 617 | } |
| 618 | break; |
| 619 | case TT_RESPONSE: |
Antonio Quartulli | dc58fe3 | 2011-10-16 20:32:02 +0200 | [diff] [blame] | 620 | if (is_my_mac(tt_query->dst)) { |
| 621 | /* packet needs to be linearized to access the TT |
| 622 | * changes */ |
| 623 | if (skb_linearize(skb) < 0) |
| 624 | goto out; |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 625 | |
Antonio Quartulli | 8b7342d | 2011-10-16 20:32:03 +0200 | [diff] [blame] | 626 | tt_len = tt_query->tt_data * sizeof(struct tt_change); |
| 627 | |
| 628 | /* Ensure we have all the claimed data */ |
| 629 | if (unlikely(skb_headlen(skb) < |
Antonio Quartulli | 69497c1 | 2011-12-02 17:38:52 +0100 | [diff] [blame] | 630 | sizeof(struct tt_query_packet) + tt_len)) |
Antonio Quartulli | 8b7342d | 2011-10-16 20:32:03 +0200 | [diff] [blame] | 631 | goto out; |
| 632 | |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 633 | handle_tt_response(bat_priv, tt_query); |
Antonio Quartulli | dc58fe3 | 2011-10-16 20:32:02 +0200 | [diff] [blame] | 634 | } else { |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 635 | bat_dbg(DBG_TT, bat_priv, |
| 636 | "Routing TT_RESPONSE to %pM [%c]\n", |
| 637 | tt_query->dst, |
| 638 | (tt_query->flags & TT_FULL_TABLE ? 'F' : '.')); |
| 639 | tt_query->tt_data = htons(tt_query->tt_data); |
| 640 | return route_unicast_packet(skb, recv_if); |
| 641 | } |
| 642 | break; |
| 643 | } |
| 644 | |
| 645 | out: |
| 646 | /* returning NET_RX_DROP will make the caller function kfree the skb */ |
| 647 | return NET_RX_DROP; |
| 648 | } |
| 649 | |
Antonio Quartulli | cc47f66 | 2011-04-27 14:27:57 +0200 | [diff] [blame] | 650 | int recv_roam_adv(struct sk_buff *skb, struct hard_iface *recv_if) |
| 651 | { |
| 652 | struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface); |
| 653 | struct roam_adv_packet *roam_adv_packet; |
| 654 | struct orig_node *orig_node; |
| 655 | struct ethhdr *ethhdr; |
| 656 | |
| 657 | /* drop packet if it has not necessary minimum size */ |
| 658 | if (unlikely(!pskb_may_pull(skb, sizeof(struct roam_adv_packet)))) |
| 659 | goto out; |
| 660 | |
| 661 | ethhdr = (struct ethhdr *)skb_mac_header(skb); |
| 662 | |
| 663 | /* packet with unicast indication but broadcast recipient */ |
| 664 | if (is_broadcast_ether_addr(ethhdr->h_dest)) |
| 665 | goto out; |
| 666 | |
| 667 | /* packet with broadcast sender address */ |
| 668 | if (is_broadcast_ether_addr(ethhdr->h_source)) |
| 669 | goto out; |
| 670 | |
| 671 | roam_adv_packet = (struct roam_adv_packet *)skb->data; |
| 672 | |
| 673 | if (!is_my_mac(roam_adv_packet->dst)) |
| 674 | return route_unicast_packet(skb, recv_if); |
| 675 | |
| 676 | orig_node = orig_hash_find(bat_priv, roam_adv_packet->src); |
| 677 | if (!orig_node) |
| 678 | goto out; |
| 679 | |
| 680 | bat_dbg(DBG_TT, bat_priv, "Received ROAMING_ADV from %pM " |
| 681 | "(client %pM)\n", roam_adv_packet->src, |
| 682 | roam_adv_packet->client); |
| 683 | |
| 684 | tt_global_add(bat_priv, orig_node, roam_adv_packet->client, |
Antonio Quartulli | bc27908 | 2011-07-07 15:35:35 +0200 | [diff] [blame] | 685 | atomic_read(&orig_node->last_ttvn) + 1, true, false); |
Antonio Quartulli | cc47f66 | 2011-04-27 14:27:57 +0200 | [diff] [blame] | 686 | |
| 687 | /* Roaming phase starts: I have new information but the ttvn has not |
| 688 | * been incremented yet. This flag will make me check all the incoming |
| 689 | * packets for the correct destination. */ |
| 690 | bat_priv->tt_poss_change = true; |
| 691 | |
| 692 | orig_node_free_ref(orig_node); |
| 693 | out: |
| 694 | /* returning NET_RX_DROP will make the caller function kfree the skb */ |
| 695 | return NET_RX_DROP; |
| 696 | } |
| 697 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 698 | /* find a suitable router for this originator, and use |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 699 | * bonding if possible. increases the found neighbors |
| 700 | * refcount.*/ |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 701 | struct neigh_node *find_router(struct bat_priv *bat_priv, |
| 702 | struct orig_node *orig_node, |
Sven Eckelmann | 747e422 | 2011-05-14 23:14:50 +0200 | [diff] [blame] | 703 | const struct hard_iface *recv_if) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 704 | { |
| 705 | struct orig_node *primary_orig_node; |
| 706 | struct orig_node *router_orig; |
Linus Lüssing | 5515862 | 2011-03-14 22:43:27 +0000 | [diff] [blame] | 707 | struct neigh_node *router; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 708 | static uint8_t zero_mac[ETH_ALEN] = {0, 0, 0, 0, 0, 0}; |
| 709 | int bonding_enabled; |
| 710 | |
| 711 | if (!orig_node) |
| 712 | return NULL; |
| 713 | |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 714 | router = orig_node_get_router(orig_node); |
| 715 | if (!router) |
Marek Lindner | 01df2b6 | 2011-05-05 14:14:46 +0200 | [diff] [blame] | 716 | goto err; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 717 | |
| 718 | /* without bonding, the first node should |
| 719 | * always choose the default router. */ |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 720 | bonding_enabled = atomic_read(&bat_priv->bonding); |
| 721 | |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 722 | rcu_read_lock(); |
| 723 | /* select default router to output */ |
Linus Lüssing | e1a5382 | 2011-03-14 22:43:37 +0000 | [diff] [blame] | 724 | router_orig = router->orig_node; |
Marek Lindner | 01df2b6 | 2011-05-05 14:14:46 +0200 | [diff] [blame] | 725 | if (!router_orig) |
| 726 | goto err_unlock; |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 727 | |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 728 | if ((!recv_if) && (!bonding_enabled)) |
| 729 | goto return_router; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 730 | |
| 731 | /* if we have something in the primary_addr, we can search |
| 732 | * for a potential bonding candidate. */ |
Marek Lindner | 39901e7 | 2011-02-18 12:28:08 +0000 | [diff] [blame] | 733 | if (compare_eth(router_orig->primary_addr, zero_mac)) |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 734 | goto return_router; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 735 | |
| 736 | /* find the orig_node which has the primary interface. might |
| 737 | * even be the same as our router_orig in many cases */ |
| 738 | |
Marek Lindner | 39901e7 | 2011-02-18 12:28:08 +0000 | [diff] [blame] | 739 | if (compare_eth(router_orig->primary_addr, router_orig->orig)) { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 740 | primary_orig_node = router_orig; |
| 741 | } else { |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 742 | primary_orig_node = orig_hash_find(bat_priv, |
| 743 | router_orig->primary_addr); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 744 | if (!primary_orig_node) |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 745 | goto return_router; |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 746 | |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 747 | orig_node_free_ref(primary_orig_node); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 748 | } |
| 749 | |
| 750 | /* with less than 2 candidates, we can't do any |
| 751 | * bonding and prefer the original router. */ |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 752 | if (atomic_read(&primary_orig_node->bond_candidates) < 2) |
| 753 | goto return_router; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 754 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 755 | /* all nodes between should choose a candidate which |
| 756 | * is is not on the interface where the packet came |
| 757 | * in. */ |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 758 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 759 | neigh_node_free_ref(router); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 760 | |
Linus Lüssing | 5515862 | 2011-03-14 22:43:27 +0000 | [diff] [blame] | 761 | if (bonding_enabled) |
| 762 | router = find_bond_router(primary_orig_node, recv_if); |
| 763 | else |
| 764 | router = find_ifalter_router(primary_orig_node, recv_if); |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 765 | |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 766 | return_router: |
Antonio Quartulli | e2cbc11 | 2011-05-08 20:52:57 +0200 | [diff] [blame] | 767 | if (router && router->if_incoming->if_status != IF_ACTIVE) |
| 768 | goto err_unlock; |
| 769 | |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 770 | rcu_read_unlock(); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 771 | return router; |
Marek Lindner | 01df2b6 | 2011-05-05 14:14:46 +0200 | [diff] [blame] | 772 | err_unlock: |
| 773 | rcu_read_unlock(); |
| 774 | err: |
| 775 | if (router) |
| 776 | neigh_node_free_ref(router); |
| 777 | return NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 778 | } |
| 779 | |
| 780 | static int check_unicast_packet(struct sk_buff *skb, int hdr_size) |
| 781 | { |
| 782 | struct ethhdr *ethhdr; |
| 783 | |
| 784 | /* drop packet if it has not necessary minimum size */ |
| 785 | if (unlikely(!pskb_may_pull(skb, hdr_size))) |
| 786 | return -1; |
| 787 | |
| 788 | ethhdr = (struct ethhdr *)skb_mac_header(skb); |
| 789 | |
| 790 | /* packet with unicast indication but broadcast recipient */ |
| 791 | if (is_broadcast_ether_addr(ethhdr->h_dest)) |
| 792 | return -1; |
| 793 | |
| 794 | /* packet with broadcast sender address */ |
| 795 | if (is_broadcast_ether_addr(ethhdr->h_source)) |
| 796 | return -1; |
| 797 | |
| 798 | /* not for me */ |
| 799 | if (!is_my_mac(ethhdr->h_dest)) |
| 800 | return -1; |
| 801 | |
| 802 | return 0; |
| 803 | } |
| 804 | |
Linus Lüssing | 7cefb14 | 2011-03-02 17:39:31 +0000 | [diff] [blame] | 805 | 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] | 806 | { |
| 807 | struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 808 | struct orig_node *orig_node = NULL; |
| 809 | struct neigh_node *neigh_node = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 810 | struct unicast_packet *unicast_packet; |
| 811 | struct ethhdr *ethhdr = (struct ethhdr *)skb_mac_header(skb); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 812 | int ret = NET_RX_DROP; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 813 | struct sk_buff *new_skb; |
| 814 | |
| 815 | unicast_packet = (struct unicast_packet *)skb->data; |
| 816 | |
| 817 | /* TTL exceeded */ |
| 818 | if (unicast_packet->ttl < 2) { |
| 819 | pr_debug("Warning - can't forward unicast packet from %pM to " |
| 820 | "%pM: ttl exceeded\n", ethhdr->h_source, |
| 821 | unicast_packet->dest); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 822 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 823 | } |
| 824 | |
| 825 | /* get routing information */ |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 826 | orig_node = orig_hash_find(bat_priv, unicast_packet->dest); |
| 827 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 828 | if (!orig_node) |
Antonio Quartulli | b5a6f69 | 2011-04-16 11:30:57 +0200 | [diff] [blame] | 829 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 830 | |
Simon Wunderlich | a4c135c | 2011-01-19 20:01:43 +0000 | [diff] [blame] | 831 | /* find_router() increases neigh_nodes refcount if found. */ |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 832 | neigh_node = find_router(bat_priv, orig_node, recv_if); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 833 | |
Marek Lindner | d007260 | 2011-01-19 20:01:44 +0000 | [diff] [blame] | 834 | if (!neigh_node) |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 835 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 836 | |
| 837 | /* create a copy of the skb, if needed, to modify it. */ |
| 838 | if (skb_cow(skb, sizeof(struct ethhdr)) < 0) |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 839 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 840 | |
| 841 | unicast_packet = (struct unicast_packet *)skb->data; |
| 842 | |
| 843 | if (unicast_packet->packet_type == BAT_UNICAST && |
| 844 | atomic_read(&bat_priv->fragmentation) && |
Marek Lindner | d007260 | 2011-01-19 20:01:44 +0000 | [diff] [blame] | 845 | skb->len > neigh_node->if_incoming->net_dev->mtu) { |
| 846 | ret = frag_send_skb(skb, bat_priv, |
| 847 | neigh_node->if_incoming, neigh_node->addr); |
| 848 | goto out; |
| 849 | } |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 850 | |
| 851 | if (unicast_packet->packet_type == BAT_UNICAST_FRAG && |
Marek Lindner | d007260 | 2011-01-19 20:01:44 +0000 | [diff] [blame] | 852 | frag_can_reassemble(skb, neigh_node->if_incoming->net_dev->mtu)) { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 853 | |
| 854 | ret = frag_reassemble_skb(skb, bat_priv, &new_skb); |
| 855 | |
| 856 | if (ret == NET_RX_DROP) |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 857 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 858 | |
| 859 | /* packet was buffered for late merge */ |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 860 | if (!new_skb) { |
| 861 | ret = NET_RX_SUCCESS; |
| 862 | goto out; |
| 863 | } |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 864 | |
| 865 | skb = new_skb; |
| 866 | unicast_packet = (struct unicast_packet *)skb->data; |
| 867 | } |
| 868 | |
| 869 | /* decrement ttl */ |
| 870 | unicast_packet->ttl--; |
| 871 | |
| 872 | /* route it */ |
Marek Lindner | d007260 | 2011-01-19 20:01:44 +0000 | [diff] [blame] | 873 | send_skb_packet(skb, neigh_node->if_incoming, neigh_node->addr); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 874 | ret = NET_RX_SUCCESS; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 875 | |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 876 | out: |
| 877 | if (neigh_node) |
| 878 | neigh_node_free_ref(neigh_node); |
| 879 | if (orig_node) |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 880 | orig_node_free_ref(orig_node); |
Marek Lindner | 44524fc | 2011-02-10 14:33:53 +0000 | [diff] [blame] | 881 | return ret; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 882 | } |
| 883 | |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 884 | static int check_unicast_ttvn(struct bat_priv *bat_priv, |
| 885 | struct sk_buff *skb) { |
| 886 | uint8_t curr_ttvn; |
| 887 | struct orig_node *orig_node; |
| 888 | struct ethhdr *ethhdr; |
| 889 | struct hard_iface *primary_if; |
| 890 | struct unicast_packet *unicast_packet; |
Antonio Quartulli | cc47f66 | 2011-04-27 14:27:57 +0200 | [diff] [blame] | 891 | bool tt_poss_change; |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 892 | |
| 893 | /* I could need to modify it */ |
| 894 | if (skb_cow(skb, sizeof(struct unicast_packet)) < 0) |
| 895 | return 0; |
| 896 | |
| 897 | unicast_packet = (struct unicast_packet *)skb->data; |
| 898 | |
Antonio Quartulli | cc47f66 | 2011-04-27 14:27:57 +0200 | [diff] [blame] | 899 | if (is_my_mac(unicast_packet->dest)) { |
| 900 | tt_poss_change = bat_priv->tt_poss_change; |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 901 | curr_ttvn = (uint8_t)atomic_read(&bat_priv->ttvn); |
Antonio Quartulli | cc47f66 | 2011-04-27 14:27:57 +0200 | [diff] [blame] | 902 | } else { |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 903 | orig_node = orig_hash_find(bat_priv, unicast_packet->dest); |
| 904 | |
| 905 | if (!orig_node) |
| 906 | return 0; |
| 907 | |
| 908 | curr_ttvn = (uint8_t)atomic_read(&orig_node->last_ttvn); |
Antonio Quartulli | cc47f66 | 2011-04-27 14:27:57 +0200 | [diff] [blame] | 909 | tt_poss_change = orig_node->tt_poss_change; |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 910 | orig_node_free_ref(orig_node); |
| 911 | } |
| 912 | |
| 913 | /* Check whether I have to reroute the packet */ |
Antonio Quartulli | cc47f66 | 2011-04-27 14:27:57 +0200 | [diff] [blame] | 914 | if (seq_before(unicast_packet->ttvn, curr_ttvn) || tt_poss_change) { |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 915 | /* Linearize the skb before accessing it */ |
| 916 | if (skb_linearize(skb) < 0) |
| 917 | return 0; |
| 918 | |
| 919 | ethhdr = (struct ethhdr *)(skb->data + |
| 920 | sizeof(struct unicast_packet)); |
Antonio Quartulli | 3d393e4 | 2011-07-07 15:35:37 +0200 | [diff] [blame] | 921 | orig_node = transtable_search(bat_priv, NULL, ethhdr->h_dest); |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 922 | |
| 923 | if (!orig_node) { |
| 924 | if (!is_my_client(bat_priv, ethhdr->h_dest)) |
| 925 | return 0; |
| 926 | primary_if = primary_if_get_selected(bat_priv); |
| 927 | if (!primary_if) |
| 928 | return 0; |
| 929 | memcpy(unicast_packet->dest, |
| 930 | primary_if->net_dev->dev_addr, ETH_ALEN); |
| 931 | hardif_free_ref(primary_if); |
| 932 | } else { |
| 933 | memcpy(unicast_packet->dest, orig_node->orig, |
| 934 | ETH_ALEN); |
| 935 | curr_ttvn = (uint8_t) |
| 936 | atomic_read(&orig_node->last_ttvn); |
| 937 | orig_node_free_ref(orig_node); |
| 938 | } |
| 939 | |
| 940 | bat_dbg(DBG_ROUTES, bat_priv, "TTVN mismatch (old_ttvn %u " |
| 941 | "new_ttvn %u)! Rerouting unicast packet (for %pM) to " |
| 942 | "%pM\n", unicast_packet->ttvn, curr_ttvn, |
| 943 | ethhdr->h_dest, unicast_packet->dest); |
| 944 | |
| 945 | unicast_packet->ttvn = curr_ttvn; |
| 946 | } |
| 947 | return 1; |
| 948 | } |
| 949 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 950 | 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] | 951 | { |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 952 | struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 953 | struct unicast_packet *unicast_packet; |
Sven Eckelmann | 704509b | 2011-05-14 23:14:54 +0200 | [diff] [blame] | 954 | int hdr_size = sizeof(*unicast_packet); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 955 | |
| 956 | if (check_unicast_packet(skb, hdr_size) < 0) |
| 957 | return NET_RX_DROP; |
| 958 | |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 959 | if (!check_unicast_ttvn(bat_priv, skb)) |
| 960 | return NET_RX_DROP; |
| 961 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 962 | unicast_packet = (struct unicast_packet *)skb->data; |
| 963 | |
| 964 | /* packet for me */ |
| 965 | if (is_my_mac(unicast_packet->dest)) { |
| 966 | interface_rx(recv_if->soft_iface, skb, recv_if, hdr_size); |
| 967 | return NET_RX_SUCCESS; |
| 968 | } |
| 969 | |
Linus Lüssing | 7cefb14 | 2011-03-02 17:39:31 +0000 | [diff] [blame] | 970 | return route_unicast_packet(skb, recv_if); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 971 | } |
| 972 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 973 | 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] | 974 | { |
| 975 | struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface); |
| 976 | struct unicast_frag_packet *unicast_packet; |
Sven Eckelmann | 704509b | 2011-05-14 23:14:54 +0200 | [diff] [blame] | 977 | int hdr_size = sizeof(*unicast_packet); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 978 | struct sk_buff *new_skb = NULL; |
| 979 | int ret; |
| 980 | |
| 981 | if (check_unicast_packet(skb, hdr_size) < 0) |
| 982 | return NET_RX_DROP; |
| 983 | |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 984 | if (!check_unicast_ttvn(bat_priv, skb)) |
| 985 | return NET_RX_DROP; |
| 986 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 987 | unicast_packet = (struct unicast_frag_packet *)skb->data; |
| 988 | |
| 989 | /* packet for me */ |
| 990 | if (is_my_mac(unicast_packet->dest)) { |
| 991 | |
| 992 | ret = frag_reassemble_skb(skb, bat_priv, &new_skb); |
| 993 | |
| 994 | if (ret == NET_RX_DROP) |
| 995 | return NET_RX_DROP; |
| 996 | |
| 997 | /* packet was buffered for late merge */ |
| 998 | if (!new_skb) |
| 999 | return NET_RX_SUCCESS; |
| 1000 | |
| 1001 | interface_rx(recv_if->soft_iface, new_skb, recv_if, |
| 1002 | sizeof(struct unicast_packet)); |
| 1003 | return NET_RX_SUCCESS; |
| 1004 | } |
| 1005 | |
Linus Lüssing | 7cefb14 | 2011-03-02 17:39:31 +0000 | [diff] [blame] | 1006 | return route_unicast_packet(skb, recv_if); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1007 | } |
| 1008 | |
| 1009 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 1010 | 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] | 1011 | { |
| 1012 | struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface); |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1013 | struct orig_node *orig_node = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1014 | struct bcast_packet *bcast_packet; |
| 1015 | struct ethhdr *ethhdr; |
Sven Eckelmann | 704509b | 2011-05-14 23:14:54 +0200 | [diff] [blame] | 1016 | int hdr_size = sizeof(*bcast_packet); |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1017 | int ret = NET_RX_DROP; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1018 | int32_t seq_diff; |
| 1019 | |
| 1020 | /* drop packet if it has not necessary minimum size */ |
| 1021 | if (unlikely(!pskb_may_pull(skb, hdr_size))) |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1022 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1023 | |
| 1024 | ethhdr = (struct ethhdr *)skb_mac_header(skb); |
| 1025 | |
| 1026 | /* packet with broadcast indication but unicast recipient */ |
| 1027 | if (!is_broadcast_ether_addr(ethhdr->h_dest)) |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1028 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1029 | |
| 1030 | /* packet with broadcast sender address */ |
| 1031 | if (is_broadcast_ether_addr(ethhdr->h_source)) |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1032 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1033 | |
| 1034 | /* ignore broadcasts sent by myself */ |
| 1035 | if (is_my_mac(ethhdr->h_source)) |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1036 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1037 | |
| 1038 | bcast_packet = (struct bcast_packet *)skb->data; |
| 1039 | |
| 1040 | /* ignore broadcasts originated by myself */ |
| 1041 | if (is_my_mac(bcast_packet->orig)) |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1042 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1043 | |
| 1044 | if (bcast_packet->ttl < 2) |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1045 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1046 | |
Marek Lindner | 7aadf88 | 2011-02-18 12:28:09 +0000 | [diff] [blame] | 1047 | orig_node = orig_hash_find(bat_priv, bcast_packet->orig); |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1048 | |
| 1049 | if (!orig_node) |
Antonio Quartulli | b5a6f69 | 2011-04-16 11:30:57 +0200 | [diff] [blame] | 1050 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1051 | |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1052 | spin_lock_bh(&orig_node->bcast_seqno_lock); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1053 | |
| 1054 | /* check whether the packet is a duplicate */ |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1055 | if (get_bit_status(orig_node->bcast_bits, orig_node->last_bcast_seqno, |
| 1056 | ntohl(bcast_packet->seqno))) |
| 1057 | goto spin_unlock; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1058 | |
| 1059 | seq_diff = ntohl(bcast_packet->seqno) - orig_node->last_bcast_seqno; |
| 1060 | |
| 1061 | /* check whether the packet is old and the host just restarted. */ |
| 1062 | if (window_protected(bat_priv, seq_diff, |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1063 | &orig_node->bcast_seqno_reset)) |
| 1064 | goto spin_unlock; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1065 | |
| 1066 | /* mark broadcast in flood history, update window position |
| 1067 | * if required. */ |
| 1068 | if (bit_get_packet(bat_priv, orig_node->bcast_bits, seq_diff, 1)) |
| 1069 | orig_node->last_bcast_seqno = ntohl(bcast_packet->seqno); |
| 1070 | |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1071 | spin_unlock_bh(&orig_node->bcast_seqno_lock); |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1072 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1073 | /* rebroadcast packet */ |
Antonio Quartulli | 8698529 | 2011-06-25 19:09:12 +0200 | [diff] [blame] | 1074 | add_bcast_packet_to_list(bat_priv, skb, 1); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1075 | |
| 1076 | /* broadcast for me */ |
| 1077 | interface_rx(recv_if->soft_iface, skb, recv_if, hdr_size); |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1078 | ret = NET_RX_SUCCESS; |
| 1079 | goto out; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1080 | |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1081 | spin_unlock: |
| 1082 | spin_unlock_bh(&orig_node->bcast_seqno_lock); |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1083 | out: |
| 1084 | if (orig_node) |
Marek Lindner | 7b36e8e | 2011-02-18 12:28:10 +0000 | [diff] [blame] | 1085 | orig_node_free_ref(orig_node); |
Marek Lindner | f3e0008 | 2011-01-25 21:52:11 +0000 | [diff] [blame] | 1086 | return ret; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1087 | } |
| 1088 | |
Marek Lindner | e6c10f4 | 2011-02-18 12:33:20 +0000 | [diff] [blame] | 1089 | 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] | 1090 | { |
| 1091 | struct vis_packet *vis_packet; |
| 1092 | struct ethhdr *ethhdr; |
| 1093 | struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface); |
Sven Eckelmann | 704509b | 2011-05-14 23:14:54 +0200 | [diff] [blame] | 1094 | int hdr_size = sizeof(*vis_packet); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1095 | |
| 1096 | /* keep skb linear */ |
| 1097 | if (skb_linearize(skb) < 0) |
| 1098 | return NET_RX_DROP; |
| 1099 | |
| 1100 | if (unlikely(!pskb_may_pull(skb, hdr_size))) |
| 1101 | return NET_RX_DROP; |
| 1102 | |
| 1103 | vis_packet = (struct vis_packet *)skb->data; |
| 1104 | ethhdr = (struct ethhdr *)skb_mac_header(skb); |
| 1105 | |
| 1106 | /* not for me */ |
| 1107 | if (!is_my_mac(ethhdr->h_dest)) |
| 1108 | return NET_RX_DROP; |
| 1109 | |
| 1110 | /* ignore own packets */ |
| 1111 | if (is_my_mac(vis_packet->vis_orig)) |
| 1112 | return NET_RX_DROP; |
| 1113 | |
| 1114 | if (is_my_mac(vis_packet->sender_orig)) |
| 1115 | return NET_RX_DROP; |
| 1116 | |
| 1117 | switch (vis_packet->vis_type) { |
| 1118 | case VIS_TYPE_SERVER_SYNC: |
| 1119 | receive_server_sync_packet(bat_priv, vis_packet, |
| 1120 | skb_headlen(skb)); |
| 1121 | break; |
| 1122 | |
| 1123 | case VIS_TYPE_CLIENT_UPDATE: |
| 1124 | receive_client_update_packet(bat_priv, vis_packet, |
| 1125 | skb_headlen(skb)); |
| 1126 | break; |
| 1127 | |
| 1128 | default: /* ignore unknown packet */ |
| 1129 | break; |
| 1130 | } |
| 1131 | |
| 1132 | /* We take a copy of the data in the packet, so we should |
| 1133 | always free the skbuf. */ |
| 1134 | return NET_RX_DROP; |
| 1135 | } |