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