blob: 41116e4c2e34756a2fa81777b1360cd9d52e1b56 [file] [log] [blame]
Sven Eckelmann0046b042016-01-01 00:01:03 +01001/* Copyright (C) 2011-2016 B.A.T.M.A.N. contributors:
Simon Wunderlich23721382012-01-22 20:00:19 +01002 *
3 * Simon Wunderlich
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public
7 * License as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
Antonio Quartulliebf38fb2013-11-03 20:40:48 +010015 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Simon Wunderlich23721382012-01-22 20:00:19 +010016 */
17
Simon Wunderlich23721382012-01-22 20:00:19 +010018#include "bridge_loop_avoidance.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020019#include "main.h"
Simon Wunderlich23721382012-01-22 20:00:19 +010020
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020021#include <linux/atomic.h>
22#include <linux/byteorder/generic.h>
23#include <linux/compiler.h>
Simon Wunderlich23721382012-01-22 20:00:19 +010024#include <linux/crc16.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020025#include <linux/errno.h>
26#include <linux/etherdevice.h>
27#include <linux/fs.h>
Simon Wunderlich23721382012-01-22 20:00:19 +010028#include <linux/if_arp.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020029#include <linux/if_ether.h>
Simon Wunderlich23721382012-01-22 20:00:19 +010030#include <linux/if_vlan.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020031#include <linux/jhash.h>
32#include <linux/jiffies.h>
33#include <linux/kernel.h>
Sven Eckelmann06e56de2016-01-16 10:29:43 +010034#include <linux/kref.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020035#include <linux/list.h>
36#include <linux/lockdep.h>
37#include <linux/netdevice.h>
38#include <linux/rculist.h>
39#include <linux/rcupdate.h>
40#include <linux/seq_file.h>
41#include <linux/skbuff.h>
42#include <linux/slab.h>
43#include <linux/spinlock.h>
44#include <linux/stddef.h>
45#include <linux/string.h>
46#include <linux/workqueue.h>
47#include <net/arp.h>
48
49#include "hard-interface.h"
50#include "hash.h"
51#include "originator.h"
52#include "packet.h"
53#include "translation-table.h"
Simon Wunderlich23721382012-01-22 20:00:19 +010054
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020055static const u8 batadv_announce_mac[4] = {0x43, 0x05, 0x43, 0x05};
Simon Wunderlich23721382012-01-22 20:00:19 +010056
Sven Eckelmann3b300de2012-05-12 18:33:53 +020057static void batadv_bla_periodic_work(struct work_struct *work);
Marek Lindnerbae98772012-12-25 17:03:24 +080058static void
59batadv_bla_send_announce(struct batadv_priv *bat_priv,
60 struct batadv_bla_backbone_gw *backbone_gw);
Simon Wunderlich23721382012-01-22 20:00:19 +010061
Sven Eckelmann62fe7102015-09-15 19:00:48 +020062/**
Simon Wunderlich04e14be2015-11-06 10:45:19 +010063 * batadv_choose_claim - choose the right bucket for a claim.
64 * @data: data to hash
65 * @size: size of the hash table
Sven Eckelmann62fe7102015-09-15 19:00:48 +020066 *
Simon Wunderlich04e14be2015-11-06 10:45:19 +010067 * Return: the hash index of the claim
Sven Eckelmann62fe7102015-09-15 19:00:48 +020068 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020069static inline u32 batadv_choose_claim(const void *data, u32 size)
Simon Wunderlich23721382012-01-22 20:00:19 +010070{
Marek Lindner712bbfe42012-12-25 17:03:25 +080071 struct batadv_bla_claim *claim = (struct batadv_bla_claim *)data;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020072 u32 hash = 0;
Simon Wunderlich23721382012-01-22 20:00:19 +010073
Sven Eckelmann36fd61c2015-03-01 09:46:18 +010074 hash = jhash(&claim->addr, sizeof(claim->addr), hash);
75 hash = jhash(&claim->vid, sizeof(claim->vid), hash);
Simon Wunderlich23721382012-01-22 20:00:19 +010076
77 return hash % size;
78}
79
Sven Eckelmann62fe7102015-09-15 19:00:48 +020080/**
Simon Wunderlich04e14be2015-11-06 10:45:19 +010081 * batadv_choose_backbone_gw - choose the right bucket for a backbone gateway.
82 * @data: data to hash
83 * @size: size of the hash table
Sven Eckelmann62fe7102015-09-15 19:00:48 +020084 *
Simon Wunderlich04e14be2015-11-06 10:45:19 +010085 * Return: the hash index of the backbone gateway
Sven Eckelmann62fe7102015-09-15 19:00:48 +020086 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020087static inline u32 batadv_choose_backbone_gw(const void *data, u32 size)
Simon Wunderlich23721382012-01-22 20:00:19 +010088{
Marek Lindner712bbfe42012-12-25 17:03:25 +080089 const struct batadv_bla_claim *claim = (struct batadv_bla_claim *)data;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020090 u32 hash = 0;
Simon Wunderlich23721382012-01-22 20:00:19 +010091
Sven Eckelmann36fd61c2015-03-01 09:46:18 +010092 hash = jhash(&claim->addr, sizeof(claim->addr), hash);
93 hash = jhash(&claim->vid, sizeof(claim->vid), hash);
Simon Wunderlich23721382012-01-22 20:00:19 +010094
95 return hash % size;
96}
97
Simon Wunderlich04e14be2015-11-06 10:45:19 +010098/**
99 * batadv_compare_backbone_gw - compare address and vid of two backbone gws
100 * @node: list node of the first entry to compare
101 * @data2: pointer to the second backbone gateway
102 *
103 * Return: 1 if the backbones have the same data, 0 otherwise
104 */
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200105static int batadv_compare_backbone_gw(const struct hlist_node *node,
106 const void *data2)
Simon Wunderlich23721382012-01-22 20:00:19 +0100107{
Marek Lindnerbae98772012-12-25 17:03:24 +0800108 const void *data1 = container_of(node, struct batadv_bla_backbone_gw,
Simon Wunderlich23721382012-01-22 20:00:19 +0100109 hash_entry);
Sven Eckelmann4f248cf2015-06-09 20:50:49 +0200110 const struct batadv_bla_backbone_gw *gw1 = data1;
111 const struct batadv_bla_backbone_gw *gw2 = data2;
Simon Wunderlich23721382012-01-22 20:00:19 +0100112
Simon Wunderlichc76d1522012-10-15 22:38:04 +0200113 if (!batadv_compare_eth(gw1->orig, gw2->orig))
114 return 0;
115
116 if (gw1->vid != gw2->vid)
117 return 0;
118
119 return 1;
Simon Wunderlich23721382012-01-22 20:00:19 +0100120}
121
Simon Wunderlich04e14be2015-11-06 10:45:19 +0100122/**
123 * batadv_compare_backbone_gw - compare address and vid of two claims
124 * @node: list node of the first entry to compare
125 * @data2: pointer to the second claims
126 *
127 * Return: 1 if the claim have the same data, 0 otherwise
128 */
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200129static int batadv_compare_claim(const struct hlist_node *node,
130 const void *data2)
Simon Wunderlich23721382012-01-22 20:00:19 +0100131{
Marek Lindner712bbfe42012-12-25 17:03:25 +0800132 const void *data1 = container_of(node, struct batadv_bla_claim,
Simon Wunderlich23721382012-01-22 20:00:19 +0100133 hash_entry);
Sven Eckelmann4f248cf2015-06-09 20:50:49 +0200134 const struct batadv_bla_claim *cl1 = data1;
135 const struct batadv_bla_claim *cl2 = data2;
Simon Wunderlich23721382012-01-22 20:00:19 +0100136
Simon Wunderlichc76d1522012-10-15 22:38:04 +0200137 if (!batadv_compare_eth(cl1->addr, cl2->addr))
138 return 0;
139
140 if (cl1->vid != cl2->vid)
141 return 0;
142
143 return 1;
Simon Wunderlich23721382012-01-22 20:00:19 +0100144}
145
Simon Wunderlich04e14be2015-11-06 10:45:19 +0100146/**
Sven Eckelmann06e56de2016-01-16 10:29:43 +0100147 * batadv_backbone_gw_release - release backbone gw from lists and queue for
148 * free after rcu grace period
149 * @ref: kref pointer of the backbone gw
150 */
151static void batadv_backbone_gw_release(struct kref *ref)
152{
153 struct batadv_bla_backbone_gw *backbone_gw;
154
155 backbone_gw = container_of(ref, struct batadv_bla_backbone_gw,
156 refcount);
157
158 kfree_rcu(backbone_gw, rcu);
159}
160
161/**
162 * batadv_backbone_gw_free_ref - decrement the backbone gw refcounter and
163 * possibly release it
Simon Wunderlich04e14be2015-11-06 10:45:19 +0100164 * @backbone_gw: backbone gateway to be free'd
165 */
Marek Lindnerbae98772012-12-25 17:03:24 +0800166static void
167batadv_backbone_gw_free_ref(struct batadv_bla_backbone_gw *backbone_gw)
Simon Wunderlich23721382012-01-22 20:00:19 +0100168{
Sven Eckelmann06e56de2016-01-16 10:29:43 +0100169 kref_put(&backbone_gw->refcount, batadv_backbone_gw_release);
Simon Wunderlich23721382012-01-22 20:00:19 +0100170}
171
Simon Wunderlich04e14be2015-11-06 10:45:19 +0100172/**
173 * batadv_claim_release - release claim from lists and queue for free after rcu
174 * grace period
175 * @ref: kref pointer of the claim
176 */
Sven Eckelmann63b39922016-01-14 15:28:19 +0100177static void batadv_claim_release(struct batadv_bla_claim *claim)
Simon Wunderlich23721382012-01-22 20:00:19 +0100178{
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200179 batadv_backbone_gw_free_ref(claim->backbone_gw);
Sven Eckelmann63b39922016-01-14 15:28:19 +0100180 kfree_rcu(claim, rcu);
Simon Wunderlich23721382012-01-22 20:00:19 +0100181}
182
Simon Wunderlich04e14be2015-11-06 10:45:19 +0100183/**
Sven Eckelmannec9b83c2016-01-05 12:06:16 +0100184 * batadv_claim_free_ref - decrement the claim refcounter and possibly
185 * release it
Simon Wunderlich04e14be2015-11-06 10:45:19 +0100186 * @claim: claim to be free'd
187 */
Marek Lindner712bbfe42012-12-25 17:03:25 +0800188static void batadv_claim_free_ref(struct batadv_bla_claim *claim)
Simon Wunderlich23721382012-01-22 20:00:19 +0100189{
190 if (atomic_dec_and_test(&claim->refcount))
Sven Eckelmann63b39922016-01-14 15:28:19 +0100191 batadv_claim_release(claim);
Simon Wunderlich23721382012-01-22 20:00:19 +0100192}
193
Simon Wunderlich1b371d12014-01-15 21:17:54 +0100194/**
Simon Wunderlich04e14be2015-11-06 10:45:19 +0100195 * batadv_claim_hash_find - looks for a claim in the claim hash
Simon Wunderlich1b371d12014-01-15 21:17:54 +0100196 * @bat_priv: the bat priv with all the soft interface information
Simon Wunderlich23721382012-01-22 20:00:19 +0100197 * @data: search data (may be local/static data)
198 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200199 * Return: claim if found or NULL otherwise.
Simon Wunderlich23721382012-01-22 20:00:19 +0100200 */
Marek Lindner712bbfe42012-12-25 17:03:25 +0800201static struct batadv_bla_claim
202*batadv_claim_hash_find(struct batadv_priv *bat_priv,
203 struct batadv_bla_claim *data)
Simon Wunderlich23721382012-01-22 20:00:19 +0100204{
Sven Eckelmann807736f2012-07-15 22:26:51 +0200205 struct batadv_hashtable *hash = bat_priv->bla.claim_hash;
Simon Wunderlich23721382012-01-22 20:00:19 +0100206 struct hlist_head *head;
Marek Lindner712bbfe42012-12-25 17:03:25 +0800207 struct batadv_bla_claim *claim;
208 struct batadv_bla_claim *claim_tmp = NULL;
Simon Wunderlich23721382012-01-22 20:00:19 +0100209 int index;
210
211 if (!hash)
212 return NULL;
213
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200214 index = batadv_choose_claim(data, hash->size);
Simon Wunderlich23721382012-01-22 20:00:19 +0100215 head = &hash->table[index];
216
217 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -0800218 hlist_for_each_entry_rcu(claim, head, hash_entry) {
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200219 if (!batadv_compare_claim(&claim->hash_entry, data))
Simon Wunderlich23721382012-01-22 20:00:19 +0100220 continue;
221
222 if (!atomic_inc_not_zero(&claim->refcount))
223 continue;
224
225 claim_tmp = claim;
226 break;
227 }
228 rcu_read_unlock();
229
230 return claim_tmp;
231}
232
Ben Hutchings2c530402012-07-10 10:55:09 +0000233/**
Simon Wunderlich04e14be2015-11-06 10:45:19 +0100234 * batadv_backbone_hash_find - looks for a backbone gateway in the hash
Ben Hutchings2c530402012-07-10 10:55:09 +0000235 * @bat_priv: the bat priv with all the soft interface information
Simon Wunderlich23721382012-01-22 20:00:19 +0100236 * @addr: the address of the originator
237 * @vid: the VLAN ID
238 *
Simon Wunderlich04e14be2015-11-06 10:45:19 +0100239 * Return: backbone gateway if found or NULL otherwise
Simon Wunderlich23721382012-01-22 20:00:19 +0100240 */
Marek Lindnerbae98772012-12-25 17:03:24 +0800241static struct batadv_bla_backbone_gw *
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200242batadv_backbone_hash_find(struct batadv_priv *bat_priv, u8 *addr,
243 unsigned short vid)
Simon Wunderlich23721382012-01-22 20:00:19 +0100244{
Sven Eckelmann807736f2012-07-15 22:26:51 +0200245 struct batadv_hashtable *hash = bat_priv->bla.backbone_hash;
Simon Wunderlich23721382012-01-22 20:00:19 +0100246 struct hlist_head *head;
Marek Lindnerbae98772012-12-25 17:03:24 +0800247 struct batadv_bla_backbone_gw search_entry, *backbone_gw;
248 struct batadv_bla_backbone_gw *backbone_gw_tmp = NULL;
Simon Wunderlich23721382012-01-22 20:00:19 +0100249 int index;
250
251 if (!hash)
252 return NULL;
253
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100254 ether_addr_copy(search_entry.orig, addr);
Simon Wunderlich23721382012-01-22 20:00:19 +0100255 search_entry.vid = vid;
256
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200257 index = batadv_choose_backbone_gw(&search_entry, hash->size);
Simon Wunderlich23721382012-01-22 20:00:19 +0100258 head = &hash->table[index];
259
260 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -0800261 hlist_for_each_entry_rcu(backbone_gw, head, hash_entry) {
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200262 if (!batadv_compare_backbone_gw(&backbone_gw->hash_entry,
263 &search_entry))
Simon Wunderlich23721382012-01-22 20:00:19 +0100264 continue;
265
Sven Eckelmann06e56de2016-01-16 10:29:43 +0100266 if (!kref_get_unless_zero(&backbone_gw->refcount))
Simon Wunderlich23721382012-01-22 20:00:19 +0100267 continue;
268
269 backbone_gw_tmp = backbone_gw;
270 break;
271 }
272 rcu_read_unlock();
273
274 return backbone_gw_tmp;
275}
276
Simon Wunderlich04e14be2015-11-06 10:45:19 +0100277/**
278 * batadv_bla_del_backbone_claims - delete all claims for a backbone
279 * @backbone_gw: backbone gateway where the claims should be removed
280 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200281static void
Marek Lindnerbae98772012-12-25 17:03:24 +0800282batadv_bla_del_backbone_claims(struct batadv_bla_backbone_gw *backbone_gw)
Simon Wunderlich23721382012-01-22 20:00:19 +0100283{
Sven Eckelmann5bf74e92012-06-05 22:31:28 +0200284 struct batadv_hashtable *hash;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800285 struct hlist_node *node_tmp;
Simon Wunderlich23721382012-01-22 20:00:19 +0100286 struct hlist_head *head;
Marek Lindner712bbfe42012-12-25 17:03:25 +0800287 struct batadv_bla_claim *claim;
Simon Wunderlich23721382012-01-22 20:00:19 +0100288 int i;
289 spinlock_t *list_lock; /* protects write access to the hash lists */
290
Sven Eckelmann807736f2012-07-15 22:26:51 +0200291 hash = backbone_gw->bat_priv->bla.claim_hash;
Simon Wunderlich23721382012-01-22 20:00:19 +0100292 if (!hash)
293 return;
294
295 for (i = 0; i < hash->size; i++) {
296 head = &hash->table[i];
297 list_lock = &hash->list_locks[i];
298
299 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800300 hlist_for_each_entry_safe(claim, node_tmp,
Simon Wunderlich23721382012-01-22 20:00:19 +0100301 head, hash_entry) {
Simon Wunderlich23721382012-01-22 20:00:19 +0100302 if (claim->backbone_gw != backbone_gw)
303 continue;
304
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200305 batadv_claim_free_ref(claim);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800306 hlist_del_rcu(&claim->hash_entry);
Simon Wunderlich23721382012-01-22 20:00:19 +0100307 }
308 spin_unlock_bh(list_lock);
309 }
310
Antonio Quartulli3f687852014-11-02 11:29:56 +0100311 /* all claims gone, initialize CRC */
Simon Wunderlich5a1dd8a2015-09-11 18:04:13 +0200312 spin_lock_bh(&backbone_gw->crc_lock);
Sven Eckelmann3964f722012-06-03 22:19:10 +0200313 backbone_gw->crc = BATADV_BLA_CRC_INIT;
Simon Wunderlich5a1dd8a2015-09-11 18:04:13 +0200314 spin_unlock_bh(&backbone_gw->crc_lock);
Simon Wunderlich23721382012-01-22 20:00:19 +0100315}
316
Ben Hutchings2c530402012-07-10 10:55:09 +0000317/**
318 * batadv_bla_send_claim - sends a claim frame according to the provided info
319 * @bat_priv: the bat priv with all the soft interface information
Martin Hundebølle3357182014-07-15 09:41:06 +0200320 * @mac: the mac address to be announced within the claim
Simon Wunderlich23721382012-01-22 20:00:19 +0100321 * @vid: the VLAN ID
322 * @claimtype: the type of the claim (CLAIM, UNCLAIM, ANNOUNCE, ...)
Simon Wunderlich23721382012-01-22 20:00:19 +0100323 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200324static void batadv_bla_send_claim(struct batadv_priv *bat_priv, u8 *mac,
Antonio Quartullieb2deb62013-04-19 18:07:00 +0200325 unsigned short vid, int claimtype)
Simon Wunderlich23721382012-01-22 20:00:19 +0100326{
327 struct sk_buff *skb;
328 struct ethhdr *ethhdr;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200329 struct batadv_hard_iface *primary_if;
Simon Wunderlich23721382012-01-22 20:00:19 +0100330 struct net_device *soft_iface;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200331 u8 *hw_src;
Sven Eckelmann96412692012-06-05 22:31:30 +0200332 struct batadv_bla_claim_dst local_claim_dest;
Al Viro3e2f1a12012-04-22 07:47:50 +0100333 __be32 zeroip = 0;
Simon Wunderlich23721382012-01-22 20:00:19 +0100334
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200335 primary_if = batadv_primary_if_get_selected(bat_priv);
Simon Wunderlich23721382012-01-22 20:00:19 +0100336 if (!primary_if)
337 return;
338
Sven Eckelmann807736f2012-07-15 22:26:51 +0200339 memcpy(&local_claim_dest, &bat_priv->bla.claim_dest,
Simon Wunderlich38ef3d12012-01-22 20:00:26 +0100340 sizeof(local_claim_dest));
Simon Wunderlich23721382012-01-22 20:00:19 +0100341 local_claim_dest.type = claimtype;
342
343 soft_iface = primary_if->soft_iface;
344
345 skb = arp_create(ARPOP_REPLY, ETH_P_ARP,
346 /* IP DST: 0.0.0.0 */
347 zeroip,
348 primary_if->soft_iface,
349 /* IP SRC: 0.0.0.0 */
350 zeroip,
351 /* Ethernet DST: Broadcast */
352 NULL,
353 /* Ethernet SRC/HW SRC: originator mac */
354 primary_if->net_dev->dev_addr,
Simon Wunderlich99e966f2012-06-23 12:34:17 +0200355 /* HW DST: FF:43:05:XX:YY:YY
Simon Wunderlich23721382012-01-22 20:00:19 +0100356 * with XX = claim type
Simon Wunderlich38ef3d12012-01-22 20:00:26 +0100357 * and YY:YY = group id
Simon Wunderlich23721382012-01-22 20:00:19 +0100358 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200359 (u8 *)&local_claim_dest);
Simon Wunderlich23721382012-01-22 20:00:19 +0100360
361 if (!skb)
362 goto out;
363
364 ethhdr = (struct ethhdr *)skb->data;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200365 hw_src = (u8 *)ethhdr + ETH_HLEN + sizeof(struct arphdr);
Simon Wunderlich23721382012-01-22 20:00:19 +0100366
367 /* now we pretend that the client would have sent this ... */
368 switch (claimtype) {
Simon Wunderlich3eb87732012-06-23 12:34:18 +0200369 case BATADV_CLAIM_TYPE_CLAIM:
Simon Wunderlich23721382012-01-22 20:00:19 +0100370 /* normal claim frame
371 * set Ethernet SRC to the clients mac
372 */
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100373 ether_addr_copy(ethhdr->h_source, mac);
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200374 batadv_dbg(BATADV_DBG_BLA, bat_priv,
Antonio Quartulli5f80df62013-04-19 18:07:01 +0200375 "bla_send_claim(): CLAIM %pM on vid %d\n", mac,
376 BATADV_PRINT_VID(vid));
Simon Wunderlich23721382012-01-22 20:00:19 +0100377 break;
Simon Wunderlich3eb87732012-06-23 12:34:18 +0200378 case BATADV_CLAIM_TYPE_UNCLAIM:
Simon Wunderlich23721382012-01-22 20:00:19 +0100379 /* unclaim frame
380 * set HW SRC to the clients mac
381 */
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100382 ether_addr_copy(hw_src, mac);
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200383 batadv_dbg(BATADV_DBG_BLA, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200384 "bla_send_claim(): UNCLAIM %pM on vid %d\n", mac,
Antonio Quartulli5f80df62013-04-19 18:07:01 +0200385 BATADV_PRINT_VID(vid));
Simon Wunderlich23721382012-01-22 20:00:19 +0100386 break;
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200387 case BATADV_CLAIM_TYPE_ANNOUNCE:
Simon Wunderlich23721382012-01-22 20:00:19 +0100388 /* announcement frame
389 * set HW SRC to the special mac containg the crc
390 */
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100391 ether_addr_copy(hw_src, mac);
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200392 batadv_dbg(BATADV_DBG_BLA, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200393 "bla_send_claim(): ANNOUNCE of %pM on vid %d\n",
Antonio Quartulli5f80df62013-04-19 18:07:01 +0200394 ethhdr->h_source, BATADV_PRINT_VID(vid));
Simon Wunderlich23721382012-01-22 20:00:19 +0100395 break;
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200396 case BATADV_CLAIM_TYPE_REQUEST:
Simon Wunderlich23721382012-01-22 20:00:19 +0100397 /* request frame
Simon Wunderlich99e966f2012-06-23 12:34:17 +0200398 * set HW SRC and header destination to the receiving backbone
399 * gws mac
Simon Wunderlich23721382012-01-22 20:00:19 +0100400 */
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100401 ether_addr_copy(hw_src, mac);
402 ether_addr_copy(ethhdr->h_dest, mac);
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200403 batadv_dbg(BATADV_DBG_BLA, bat_priv,
Antonio Quartullieb2deb62013-04-19 18:07:00 +0200404 "bla_send_claim(): REQUEST of %pM to %pM on vid %d\n",
Antonio Quartulli5f80df62013-04-19 18:07:01 +0200405 ethhdr->h_source, ethhdr->h_dest,
406 BATADV_PRINT_VID(vid));
Simon Wunderlich23721382012-01-22 20:00:19 +0100407 break;
Simon Wunderlich23721382012-01-22 20:00:19 +0100408 }
409
Antonio Quartullieb2deb62013-04-19 18:07:00 +0200410 if (vid & BATADV_VLAN_HAS_TAG)
411 skb = vlan_insert_tag(skb, htons(ETH_P_8021Q),
412 vid & VLAN_VID_MASK);
Simon Wunderlich23721382012-01-22 20:00:19 +0100413
414 skb_reset_mac_header(skb);
415 skb->protocol = eth_type_trans(skb, soft_iface);
Marek Lindner1c9b0552012-06-23 11:47:53 +0200416 batadv_inc_counter(bat_priv, BATADV_CNT_RX);
417 batadv_add_counter(bat_priv, BATADV_CNT_RX_BYTES,
418 skb->len + ETH_HLEN);
Simon Wunderlich23721382012-01-22 20:00:19 +0100419 soft_iface->last_rx = jiffies;
420
421 netif_rx(skb);
422out:
423 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200424 batadv_hardif_free_ref(primary_if);
Simon Wunderlich23721382012-01-22 20:00:19 +0100425}
426
Ben Hutchings2c530402012-07-10 10:55:09 +0000427/**
Simon Wunderlich04e14be2015-11-06 10:45:19 +0100428 * batadv_bla_get_backbone_gw - finds or creates a backbone gateway
Ben Hutchings2c530402012-07-10 10:55:09 +0000429 * @bat_priv: the bat priv with all the soft interface information
Simon Wunderlich23721382012-01-22 20:00:19 +0100430 * @orig: the mac address of the originator
431 * @vid: the VLAN ID
Martin Hundebølle3357182014-07-15 09:41:06 +0200432 * @own_backbone: set if the requested backbone is local
Simon Wunderlich23721382012-01-22 20:00:19 +0100433 *
Simon Wunderlich04e14be2015-11-06 10:45:19 +0100434 * Return: the (possibly created) backbone gateway or NULL on error
Simon Wunderlich23721382012-01-22 20:00:19 +0100435 */
Marek Lindnerbae98772012-12-25 17:03:24 +0800436static struct batadv_bla_backbone_gw *
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200437batadv_bla_get_backbone_gw(struct batadv_priv *bat_priv, u8 *orig,
Antonio Quartullieb2deb62013-04-19 18:07:00 +0200438 unsigned short vid, bool own_backbone)
Simon Wunderlich23721382012-01-22 20:00:19 +0100439{
Marek Lindnerbae98772012-12-25 17:03:24 +0800440 struct batadv_bla_backbone_gw *entry;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200441 struct batadv_orig_node *orig_node;
Simon Wunderlich23721382012-01-22 20:00:19 +0100442 int hash_added;
443
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200444 entry = batadv_backbone_hash_find(bat_priv, orig, vid);
Simon Wunderlich23721382012-01-22 20:00:19 +0100445
446 if (entry)
447 return entry;
448
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200449 batadv_dbg(BATADV_DBG_BLA, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200450 "bla_get_backbone_gw(): not found (%pM, %d), creating new entry\n",
Antonio Quartulli5f80df62013-04-19 18:07:01 +0200451 orig, BATADV_PRINT_VID(vid));
Simon Wunderlich23721382012-01-22 20:00:19 +0100452
453 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
454 if (!entry)
455 return NULL;
456
457 entry->vid = vid;
458 entry->lasttime = jiffies;
Sven Eckelmann3964f722012-06-03 22:19:10 +0200459 entry->crc = BATADV_BLA_CRC_INIT;
Simon Wunderlich23721382012-01-22 20:00:19 +0100460 entry->bat_priv = bat_priv;
Simon Wunderlich5a1dd8a2015-09-11 18:04:13 +0200461 spin_lock_init(&entry->crc_lock);
Simon Wunderlich23721382012-01-22 20:00:19 +0100462 atomic_set(&entry->request_sent, 0);
Simon Wunderlich28709872012-09-13 18:18:46 +0200463 atomic_set(&entry->wait_periods, 0);
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100464 ether_addr_copy(entry->orig, orig);
Simon Wunderlich23721382012-01-22 20:00:19 +0100465
466 /* one for the hash, one for returning */
Sven Eckelmann06e56de2016-01-16 10:29:43 +0100467 kref_init(&entry->refcount);
468 kref_get(&entry->refcount);
Simon Wunderlich23721382012-01-22 20:00:19 +0100469
Sven Eckelmann807736f2012-07-15 22:26:51 +0200470 hash_added = batadv_hash_add(bat_priv->bla.backbone_hash,
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200471 batadv_compare_backbone_gw,
472 batadv_choose_backbone_gw, entry,
473 &entry->hash_entry);
Simon Wunderlich23721382012-01-22 20:00:19 +0100474
475 if (unlikely(hash_added != 0)) {
476 /* hash failed, free the structure */
477 kfree(entry);
478 return NULL;
479 }
480
Antonio Quartulli95fb1302013-08-07 18:28:55 +0200481 /* this is a gateway now, remove any TT entry on this VLAN */
Sven Eckelmannda641192012-05-12 13:48:56 +0200482 orig_node = batadv_orig_hash_find(bat_priv, orig);
Simon Wunderlich20ff9d52012-01-22 20:00:23 +0100483 if (orig_node) {
Antonio Quartulli95fb1302013-08-07 18:28:55 +0200484 batadv_tt_global_del_orig(bat_priv, orig_node, vid,
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200485 "became a backbone gateway");
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200486 batadv_orig_node_free_ref(orig_node);
Simon Wunderlich20ff9d52012-01-22 20:00:23 +0100487 }
Simon Wunderlich52aebd62012-09-08 18:02:53 +0200488
Simon Wunderlichd807f272012-09-09 22:27:57 +0200489 if (own_backbone) {
Simon Wunderlich52aebd62012-09-08 18:02:53 +0200490 batadv_bla_send_announce(bat_priv, entry);
491
Simon Wunderlichd807f272012-09-09 22:27:57 +0200492 /* this will be decreased in the worker thread */
493 atomic_inc(&entry->request_sent);
Simon Wunderlich28709872012-09-13 18:18:46 +0200494 atomic_set(&entry->wait_periods, BATADV_BLA_WAIT_PERIODS);
Simon Wunderlichd807f272012-09-09 22:27:57 +0200495 atomic_inc(&bat_priv->bla.num_requests);
496 }
497
Simon Wunderlich23721382012-01-22 20:00:19 +0100498 return entry;
499}
500
Simon Wunderlich04e14be2015-11-06 10:45:19 +0100501/**
502 * batadv_bla_update_own_backbone_gw - updates the own backbone gw for a VLAN
503 * @bat_priv: the bat priv with all the soft interface information
504 * @primary_if: the selected primary interface
505 * @vid: VLAN identifier
506 *
507 * update or add the own backbone gw to make sure we announce
Simon Wunderlich23721382012-01-22 20:00:19 +0100508 * where we receive other backbone gws
509 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200510static void
511batadv_bla_update_own_backbone_gw(struct batadv_priv *bat_priv,
512 struct batadv_hard_iface *primary_if,
Antonio Quartullieb2deb62013-04-19 18:07:00 +0200513 unsigned short vid)
Simon Wunderlich23721382012-01-22 20:00:19 +0100514{
Marek Lindnerbae98772012-12-25 17:03:24 +0800515 struct batadv_bla_backbone_gw *backbone_gw;
Simon Wunderlich23721382012-01-22 20:00:19 +0100516
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200517 backbone_gw = batadv_bla_get_backbone_gw(bat_priv,
518 primary_if->net_dev->dev_addr,
Simon Wunderlich52aebd62012-09-08 18:02:53 +0200519 vid, true);
Simon Wunderlich23721382012-01-22 20:00:19 +0100520 if (unlikely(!backbone_gw))
521 return;
522
523 backbone_gw->lasttime = jiffies;
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200524 batadv_backbone_gw_free_ref(backbone_gw);
Simon Wunderlich23721382012-01-22 20:00:19 +0100525}
526
Simon Wunderlich1b371d12014-01-15 21:17:54 +0100527/**
528 * batadv_bla_answer_request - answer a bla request by sending own claims
529 * @bat_priv: the bat priv with all the soft interface information
Martin Hundebølle3357182014-07-15 09:41:06 +0200530 * @primary_if: interface where the request came on
Simon Wunderlich23721382012-01-22 20:00:19 +0100531 * @vid: the vid where the request came on
532 *
533 * Repeat all of our own claims, and finally send an ANNOUNCE frame
534 * to allow the requester another check if the CRC is correct now.
535 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200536static void batadv_bla_answer_request(struct batadv_priv *bat_priv,
537 struct batadv_hard_iface *primary_if,
Antonio Quartullieb2deb62013-04-19 18:07:00 +0200538 unsigned short vid)
Simon Wunderlich23721382012-01-22 20:00:19 +0100539{
Simon Wunderlich23721382012-01-22 20:00:19 +0100540 struct hlist_head *head;
Sven Eckelmann5bf74e92012-06-05 22:31:28 +0200541 struct batadv_hashtable *hash;
Marek Lindner712bbfe42012-12-25 17:03:25 +0800542 struct batadv_bla_claim *claim;
Marek Lindnerbae98772012-12-25 17:03:24 +0800543 struct batadv_bla_backbone_gw *backbone_gw;
Simon Wunderlich23721382012-01-22 20:00:19 +0100544 int i;
545
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200546 batadv_dbg(BATADV_DBG_BLA, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200547 "bla_answer_request(): received a claim request, send all of our own claims again\n");
Simon Wunderlich23721382012-01-22 20:00:19 +0100548
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200549 backbone_gw = batadv_backbone_hash_find(bat_priv,
550 primary_if->net_dev->dev_addr,
551 vid);
Simon Wunderlich23721382012-01-22 20:00:19 +0100552 if (!backbone_gw)
553 return;
554
Sven Eckelmann807736f2012-07-15 22:26:51 +0200555 hash = bat_priv->bla.claim_hash;
Simon Wunderlich23721382012-01-22 20:00:19 +0100556 for (i = 0; i < hash->size; i++) {
557 head = &hash->table[i];
558
559 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -0800560 hlist_for_each_entry_rcu(claim, head, hash_entry) {
Simon Wunderlich23721382012-01-22 20:00:19 +0100561 /* only own claims are interesting */
562 if (claim->backbone_gw != backbone_gw)
563 continue;
564
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200565 batadv_bla_send_claim(bat_priv, claim->addr, claim->vid,
Simon Wunderlich3eb87732012-06-23 12:34:18 +0200566 BATADV_CLAIM_TYPE_CLAIM);
Simon Wunderlich23721382012-01-22 20:00:19 +0100567 }
568 rcu_read_unlock();
569 }
570
571 /* finally, send an announcement frame */
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200572 batadv_bla_send_announce(bat_priv, backbone_gw);
573 batadv_backbone_gw_free_ref(backbone_gw);
Simon Wunderlich23721382012-01-22 20:00:19 +0100574}
575
Simon Wunderlich1b371d12014-01-15 21:17:54 +0100576/**
577 * batadv_bla_send_request - send a request to repeat claims
578 * @backbone_gw: the backbone gateway from whom we are out of sync
Simon Wunderlich23721382012-01-22 20:00:19 +0100579 *
580 * When the crc is wrong, ask the backbone gateway for a full table update.
581 * After the request, it will repeat all of his own claims and finally
582 * send an announcement claim with which we can check again.
583 */
Marek Lindnerbae98772012-12-25 17:03:24 +0800584static void batadv_bla_send_request(struct batadv_bla_backbone_gw *backbone_gw)
Simon Wunderlich23721382012-01-22 20:00:19 +0100585{
586 /* first, remove all old entries */
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200587 batadv_bla_del_backbone_claims(backbone_gw);
Simon Wunderlich23721382012-01-22 20:00:19 +0100588
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200589 batadv_dbg(BATADV_DBG_BLA, backbone_gw->bat_priv,
590 "Sending REQUEST to %pM\n", backbone_gw->orig);
Simon Wunderlich23721382012-01-22 20:00:19 +0100591
592 /* send request */
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200593 batadv_bla_send_claim(backbone_gw->bat_priv, backbone_gw->orig,
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200594 backbone_gw->vid, BATADV_CLAIM_TYPE_REQUEST);
Simon Wunderlich23721382012-01-22 20:00:19 +0100595
596 /* no local broadcasts should be sent or received, for now. */
597 if (!atomic_read(&backbone_gw->request_sent)) {
Sven Eckelmann807736f2012-07-15 22:26:51 +0200598 atomic_inc(&backbone_gw->bat_priv->bla.num_requests);
Simon Wunderlich23721382012-01-22 20:00:19 +0100599 atomic_set(&backbone_gw->request_sent, 1);
600 }
601}
602
Simon Wunderlich1b371d12014-01-15 21:17:54 +0100603/**
Simon Wunderlich04e14be2015-11-06 10:45:19 +0100604 * batadv_bla_send_announce - Send an announcement frame
Simon Wunderlich1b371d12014-01-15 21:17:54 +0100605 * @bat_priv: the bat priv with all the soft interface information
Simon Wunderlich23721382012-01-22 20:00:19 +0100606 * @backbone_gw: our backbone gateway which should be announced
Simon Wunderlich23721382012-01-22 20:00:19 +0100607 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200608static void batadv_bla_send_announce(struct batadv_priv *bat_priv,
Marek Lindnerbae98772012-12-25 17:03:24 +0800609 struct batadv_bla_backbone_gw *backbone_gw)
Simon Wunderlich23721382012-01-22 20:00:19 +0100610{
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200611 u8 mac[ETH_ALEN];
Al Viro3e2f1a12012-04-22 07:47:50 +0100612 __be16 crc;
Simon Wunderlich23721382012-01-22 20:00:19 +0100613
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200614 memcpy(mac, batadv_announce_mac, 4);
Simon Wunderlich5a1dd8a2015-09-11 18:04:13 +0200615 spin_lock_bh(&backbone_gw->crc_lock);
Simon Wunderlich23721382012-01-22 20:00:19 +0100616 crc = htons(backbone_gw->crc);
Simon Wunderlich5a1dd8a2015-09-11 18:04:13 +0200617 spin_unlock_bh(&backbone_gw->crc_lock);
Al Viro1a5852d2012-04-22 07:50:29 +0100618 memcpy(&mac[4], &crc, 2);
Simon Wunderlich23721382012-01-22 20:00:19 +0100619
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200620 batadv_bla_send_claim(bat_priv, mac, backbone_gw->vid,
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200621 BATADV_CLAIM_TYPE_ANNOUNCE);
Simon Wunderlich23721382012-01-22 20:00:19 +0100622}
623
Ben Hutchings2c530402012-07-10 10:55:09 +0000624/**
625 * batadv_bla_add_claim - Adds a claim in the claim hash
626 * @bat_priv: the bat priv with all the soft interface information
Simon Wunderlich23721382012-01-22 20:00:19 +0100627 * @mac: the mac address of the claim
628 * @vid: the VLAN ID of the frame
629 * @backbone_gw: the backbone gateway which claims it
Simon Wunderlich23721382012-01-22 20:00:19 +0100630 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200631static void batadv_bla_add_claim(struct batadv_priv *bat_priv,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200632 const u8 *mac, const unsigned short vid,
Marek Lindnerbae98772012-12-25 17:03:24 +0800633 struct batadv_bla_backbone_gw *backbone_gw)
Simon Wunderlich23721382012-01-22 20:00:19 +0100634{
Marek Lindner712bbfe42012-12-25 17:03:25 +0800635 struct batadv_bla_claim *claim;
636 struct batadv_bla_claim search_claim;
Simon Wunderlich23721382012-01-22 20:00:19 +0100637 int hash_added;
638
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100639 ether_addr_copy(search_claim.addr, mac);
Simon Wunderlich23721382012-01-22 20:00:19 +0100640 search_claim.vid = vid;
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200641 claim = batadv_claim_hash_find(bat_priv, &search_claim);
Simon Wunderlich23721382012-01-22 20:00:19 +0100642
643 /* create a new claim entry if it does not exist yet. */
644 if (!claim) {
645 claim = kzalloc(sizeof(*claim), GFP_ATOMIC);
646 if (!claim)
647 return;
648
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100649 ether_addr_copy(claim->addr, mac);
Simon Wunderlich23721382012-01-22 20:00:19 +0100650 claim->vid = vid;
651 claim->lasttime = jiffies;
652 claim->backbone_gw = backbone_gw;
653
654 atomic_set(&claim->refcount, 2);
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200655 batadv_dbg(BATADV_DBG_BLA, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200656 "bla_add_claim(): adding new entry %pM, vid %d to hash ...\n",
Antonio Quartulli5f80df62013-04-19 18:07:01 +0200657 mac, BATADV_PRINT_VID(vid));
Sven Eckelmann807736f2012-07-15 22:26:51 +0200658 hash_added = batadv_hash_add(bat_priv->bla.claim_hash,
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200659 batadv_compare_claim,
660 batadv_choose_claim, claim,
661 &claim->hash_entry);
Simon Wunderlich23721382012-01-22 20:00:19 +0100662
663 if (unlikely(hash_added != 0)) {
664 /* only local changes happened. */
665 kfree(claim);
666 return;
667 }
668 } else {
669 claim->lasttime = jiffies;
670 if (claim->backbone_gw == backbone_gw)
671 /* no need to register a new backbone */
672 goto claim_free_ref;
673
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200674 batadv_dbg(BATADV_DBG_BLA, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200675 "bla_add_claim(): changing ownership for %pM, vid %d\n",
Antonio Quartulli5f80df62013-04-19 18:07:01 +0200676 mac, BATADV_PRINT_VID(vid));
Simon Wunderlich23721382012-01-22 20:00:19 +0100677
Simon Wunderlich5a1dd8a2015-09-11 18:04:13 +0200678 spin_lock_bh(&claim->backbone_gw->crc_lock);
Sven Eckelmannbbb1f902012-07-08 17:13:15 +0200679 claim->backbone_gw->crc ^= crc16(0, claim->addr, ETH_ALEN);
Simon Wunderlich5a1dd8a2015-09-11 18:04:13 +0200680 spin_unlock_bh(&claim->backbone_gw->crc_lock);
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200681 batadv_backbone_gw_free_ref(claim->backbone_gw);
Simon Wunderlich23721382012-01-22 20:00:19 +0100682 }
683 /* set (new) backbone gw */
Sven Eckelmann06e56de2016-01-16 10:29:43 +0100684 kref_get(&backbone_gw->refcount);
Simon Wunderlich23721382012-01-22 20:00:19 +0100685 claim->backbone_gw = backbone_gw;
686
Simon Wunderlich5a1dd8a2015-09-11 18:04:13 +0200687 spin_lock_bh(&backbone_gw->crc_lock);
Simon Wunderlich23721382012-01-22 20:00:19 +0100688 backbone_gw->crc ^= crc16(0, claim->addr, ETH_ALEN);
Simon Wunderlich5a1dd8a2015-09-11 18:04:13 +0200689 spin_unlock_bh(&backbone_gw->crc_lock);
Simon Wunderlich23721382012-01-22 20:00:19 +0100690 backbone_gw->lasttime = jiffies;
691
692claim_free_ref:
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200693 batadv_claim_free_ref(claim);
Simon Wunderlich23721382012-01-22 20:00:19 +0100694}
695
Simon Wunderlich04e14be2015-11-06 10:45:19 +0100696/**
697 * batadv_bla_del_claim - delete a claim from the claim hash
698 * @bat_priv: the bat priv with all the soft interface information
699 * @mac: mac address of the claim to be removed
700 * @vid: VLAN id for the claim to be removed
Simon Wunderlich23721382012-01-22 20:00:19 +0100701 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200702static void batadv_bla_del_claim(struct batadv_priv *bat_priv,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200703 const u8 *mac, const unsigned short vid)
Simon Wunderlich23721382012-01-22 20:00:19 +0100704{
Marek Lindner712bbfe42012-12-25 17:03:25 +0800705 struct batadv_bla_claim search_claim, *claim;
Simon Wunderlich23721382012-01-22 20:00:19 +0100706
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100707 ether_addr_copy(search_claim.addr, mac);
Simon Wunderlich23721382012-01-22 20:00:19 +0100708 search_claim.vid = vid;
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200709 claim = batadv_claim_hash_find(bat_priv, &search_claim);
Simon Wunderlich23721382012-01-22 20:00:19 +0100710 if (!claim)
711 return;
712
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200713 batadv_dbg(BATADV_DBG_BLA, bat_priv, "bla_del_claim(): %pM, vid %d\n",
Antonio Quartulli5f80df62013-04-19 18:07:01 +0200714 mac, BATADV_PRINT_VID(vid));
Simon Wunderlich23721382012-01-22 20:00:19 +0100715
Sven Eckelmann807736f2012-07-15 22:26:51 +0200716 batadv_hash_remove(bat_priv->bla.claim_hash, batadv_compare_claim,
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200717 batadv_choose_claim, claim);
718 batadv_claim_free_ref(claim); /* reference from the hash is gone */
Simon Wunderlich23721382012-01-22 20:00:19 +0100719
Simon Wunderlich5a1dd8a2015-09-11 18:04:13 +0200720 spin_lock_bh(&claim->backbone_gw->crc_lock);
Simon Wunderlich23721382012-01-22 20:00:19 +0100721 claim->backbone_gw->crc ^= crc16(0, claim->addr, ETH_ALEN);
Simon Wunderlich5a1dd8a2015-09-11 18:04:13 +0200722 spin_unlock_bh(&claim->backbone_gw->crc_lock);
Simon Wunderlich23721382012-01-22 20:00:19 +0100723
724 /* don't need the reference from hash_find() anymore */
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200725 batadv_claim_free_ref(claim);
Simon Wunderlich23721382012-01-22 20:00:19 +0100726}
727
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200728/**
729 * batadv_handle_announce - check for ANNOUNCE frame
Simon Wunderlich04e14be2015-11-06 10:45:19 +0100730 * @bat_priv: the bat priv with all the soft interface information
731 * @an_addr: announcement mac address (ARP Sender HW address)
732 * @backbone_addr: originator address of the sender (Ethernet source MAC)
733 * @vid: the VLAN ID of the frame
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200734 *
735 * Return: 1 if handled
736 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200737static int batadv_handle_announce(struct batadv_priv *bat_priv, u8 *an_addr,
738 u8 *backbone_addr, unsigned short vid)
Simon Wunderlich23721382012-01-22 20:00:19 +0100739{
Marek Lindnerbae98772012-12-25 17:03:24 +0800740 struct batadv_bla_backbone_gw *backbone_gw;
Simon Wunderlich5a1dd8a2015-09-11 18:04:13 +0200741 u16 backbone_crc, crc;
Simon Wunderlich23721382012-01-22 20:00:19 +0100742
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200743 if (memcmp(an_addr, batadv_announce_mac, 4) != 0)
Simon Wunderlich23721382012-01-22 20:00:19 +0100744 return 0;
745
Simon Wunderlich52aebd62012-09-08 18:02:53 +0200746 backbone_gw = batadv_bla_get_backbone_gw(bat_priv, backbone_addr, vid,
747 false);
Simon Wunderlich23721382012-01-22 20:00:19 +0100748
749 if (unlikely(!backbone_gw))
750 return 1;
751
Simon Wunderlich23721382012-01-22 20:00:19 +0100752 /* handle as ANNOUNCE frame */
753 backbone_gw->lasttime = jiffies;
Al Viro3e2f1a12012-04-22 07:47:50 +0100754 crc = ntohs(*((__be16 *)(&an_addr[4])));
Simon Wunderlich23721382012-01-22 20:00:19 +0100755
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200756 batadv_dbg(BATADV_DBG_BLA, bat_priv,
Antonio Quartulli39a32992012-11-19 09:01:43 +0100757 "handle_announce(): ANNOUNCE vid %d (sent by %pM)... CRC = %#.4x\n",
Antonio Quartulli5f80df62013-04-19 18:07:01 +0200758 BATADV_PRINT_VID(vid), backbone_gw->orig, crc);
Simon Wunderlich23721382012-01-22 20:00:19 +0100759
Simon Wunderlich5a1dd8a2015-09-11 18:04:13 +0200760 spin_lock_bh(&backbone_gw->crc_lock);
761 backbone_crc = backbone_gw->crc;
762 spin_unlock_bh(&backbone_gw->crc_lock);
763
764 if (backbone_crc != crc) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200765 batadv_dbg(BATADV_DBG_BLA, backbone_gw->bat_priv,
Antonio Quartulli39a32992012-11-19 09:01:43 +0100766 "handle_announce(): CRC FAILED for %pM/%d (my = %#.4x, sent = %#.4x)\n",
Antonio Quartulli5f80df62013-04-19 18:07:01 +0200767 backbone_gw->orig,
768 BATADV_PRINT_VID(backbone_gw->vid),
Simon Wunderlich5a1dd8a2015-09-11 18:04:13 +0200769 backbone_crc, crc);
Simon Wunderlich23721382012-01-22 20:00:19 +0100770
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200771 batadv_bla_send_request(backbone_gw);
Simon Wunderlich23721382012-01-22 20:00:19 +0100772 } else {
773 /* if we have sent a request and the crc was OK,
774 * we can allow traffic again.
775 */
776 if (atomic_read(&backbone_gw->request_sent)) {
Sven Eckelmann807736f2012-07-15 22:26:51 +0200777 atomic_dec(&backbone_gw->bat_priv->bla.num_requests);
Simon Wunderlich23721382012-01-22 20:00:19 +0100778 atomic_set(&backbone_gw->request_sent, 0);
779 }
780 }
781
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200782 batadv_backbone_gw_free_ref(backbone_gw);
Simon Wunderlich23721382012-01-22 20:00:19 +0100783 return 1;
784}
785
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200786/**
787 * batadv_handle_request - check for REQUEST frame
Simon Wunderlich04e14be2015-11-06 10:45:19 +0100788 * @bat_priv: the bat priv with all the soft interface information
789 * @primary_if: the primary hard interface of this batman soft interface
790 * @backbone_addr: backbone address to be requested (ARP sender HW MAC)
791 * @ethhdr: ethernet header of a packet
792 * @vid: the VLAN ID of the frame
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200793 *
794 * Return: 1 if handled
795 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200796static int batadv_handle_request(struct batadv_priv *bat_priv,
797 struct batadv_hard_iface *primary_if,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200798 u8 *backbone_addr, struct ethhdr *ethhdr,
799 unsigned short vid)
Simon Wunderlich23721382012-01-22 20:00:19 +0100800{
801 /* check for REQUEST frame */
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200802 if (!batadv_compare_eth(backbone_addr, ethhdr->h_dest))
Simon Wunderlich23721382012-01-22 20:00:19 +0100803 return 0;
804
805 /* sanity check, this should not happen on a normal switch,
806 * we ignore it in this case.
807 */
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200808 if (!batadv_compare_eth(ethhdr->h_dest, primary_if->net_dev->dev_addr))
Simon Wunderlich23721382012-01-22 20:00:19 +0100809 return 1;
810
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200811 batadv_dbg(BATADV_DBG_BLA, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200812 "handle_request(): REQUEST vid %d (sent by %pM)...\n",
Antonio Quartulli5f80df62013-04-19 18:07:01 +0200813 BATADV_PRINT_VID(vid), ethhdr->h_source);
Simon Wunderlich23721382012-01-22 20:00:19 +0100814
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200815 batadv_bla_answer_request(bat_priv, primary_if, vid);
Simon Wunderlich23721382012-01-22 20:00:19 +0100816 return 1;
817}
818
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200819/**
820 * batadv_handle_unclaim - check for UNCLAIM frame
Simon Wunderlich04e14be2015-11-06 10:45:19 +0100821 * @bat_priv: the bat priv with all the soft interface information
822 * @primary_if: the primary hard interface of this batman soft interface
823 * @backbone_addr: originator address of the backbone (Ethernet source)
824 * @claim_addr: Client to be unclaimed (ARP sender HW MAC)
825 * @vid: the VLAN ID of the frame
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200826 *
827 * Return: 1 if handled
828 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200829static int batadv_handle_unclaim(struct batadv_priv *bat_priv,
830 struct batadv_hard_iface *primary_if,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200831 u8 *backbone_addr, u8 *claim_addr,
832 unsigned short vid)
Simon Wunderlich23721382012-01-22 20:00:19 +0100833{
Marek Lindnerbae98772012-12-25 17:03:24 +0800834 struct batadv_bla_backbone_gw *backbone_gw;
Simon Wunderlich23721382012-01-22 20:00:19 +0100835
836 /* unclaim in any case if it is our own */
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200837 if (primary_if && batadv_compare_eth(backbone_addr,
838 primary_if->net_dev->dev_addr))
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200839 batadv_bla_send_claim(bat_priv, claim_addr, vid,
Simon Wunderlich3eb87732012-06-23 12:34:18 +0200840 BATADV_CLAIM_TYPE_UNCLAIM);
Simon Wunderlich23721382012-01-22 20:00:19 +0100841
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200842 backbone_gw = batadv_backbone_hash_find(bat_priv, backbone_addr, vid);
Simon Wunderlich23721382012-01-22 20:00:19 +0100843
844 if (!backbone_gw)
845 return 1;
846
847 /* this must be an UNCLAIM frame */
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200848 batadv_dbg(BATADV_DBG_BLA, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200849 "handle_unclaim(): UNCLAIM %pM on vid %d (sent by %pM)...\n",
Antonio Quartulli5f80df62013-04-19 18:07:01 +0200850 claim_addr, BATADV_PRINT_VID(vid), backbone_gw->orig);
Simon Wunderlich23721382012-01-22 20:00:19 +0100851
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200852 batadv_bla_del_claim(bat_priv, claim_addr, vid);
853 batadv_backbone_gw_free_ref(backbone_gw);
Simon Wunderlich23721382012-01-22 20:00:19 +0100854 return 1;
855}
856
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200857/**
858 * batadv_handle_claim - check for CLAIM frame
Simon Wunderlich04e14be2015-11-06 10:45:19 +0100859 * @bat_priv: the bat priv with all the soft interface information
860 * @primary_if: the primary hard interface of this batman soft interface
861 * @backbone_addr: originator address of the backbone (Ethernet Source)
862 * @claim_addr: client mac address to be claimed (ARP sender HW MAC)
863 * @vid: the VLAN ID of the frame
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200864 *
865 * Return: 1 if handled
866 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200867static int batadv_handle_claim(struct batadv_priv *bat_priv,
868 struct batadv_hard_iface *primary_if,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200869 u8 *backbone_addr, u8 *claim_addr,
Antonio Quartullieb2deb62013-04-19 18:07:00 +0200870 unsigned short vid)
Simon Wunderlich23721382012-01-22 20:00:19 +0100871{
Marek Lindnerbae98772012-12-25 17:03:24 +0800872 struct batadv_bla_backbone_gw *backbone_gw;
Simon Wunderlich23721382012-01-22 20:00:19 +0100873
874 /* register the gateway if not yet available, and add the claim. */
875
Simon Wunderlich52aebd62012-09-08 18:02:53 +0200876 backbone_gw = batadv_bla_get_backbone_gw(bat_priv, backbone_addr, vid,
877 false);
Simon Wunderlich23721382012-01-22 20:00:19 +0100878
879 if (unlikely(!backbone_gw))
880 return 1;
881
882 /* this must be a CLAIM frame */
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200883 batadv_bla_add_claim(bat_priv, claim_addr, vid, backbone_gw);
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200884 if (batadv_compare_eth(backbone_addr, primary_if->net_dev->dev_addr))
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200885 batadv_bla_send_claim(bat_priv, claim_addr, vid,
Simon Wunderlich3eb87732012-06-23 12:34:18 +0200886 BATADV_CLAIM_TYPE_CLAIM);
Simon Wunderlich23721382012-01-22 20:00:19 +0100887
888 /* TODO: we could call something like tt_local_del() here. */
889
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200890 batadv_backbone_gw_free_ref(backbone_gw);
Simon Wunderlich23721382012-01-22 20:00:19 +0100891 return 1;
892}
893
Ben Hutchings2c530402012-07-10 10:55:09 +0000894/**
Simon Wunderlich04e14be2015-11-06 10:45:19 +0100895 * batadv_check_claim_group - check for claim group membership
Ben Hutchings2c530402012-07-10 10:55:09 +0000896 * @bat_priv: the bat priv with all the soft interface information
Martin Hundebølle3357182014-07-15 09:41:06 +0200897 * @primary_if: the primary interface of this batman interface
Simon Wunderlich38ef3d12012-01-22 20:00:26 +0100898 * @hw_src: the Hardware source in the ARP Header
899 * @hw_dst: the Hardware destination in the ARP Header
900 * @ethhdr: pointer to the Ethernet header of the claim frame
901 *
902 * checks if it is a claim packet and if its on the same group.
903 * This function also applies the group ID of the sender
904 * if it is in the same mesh.
905 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200906 * Return:
Simon Wunderlich38ef3d12012-01-22 20:00:26 +0100907 * 2 - if it is a claim packet and on the same group
908 * 1 - if is a claim packet from another group
909 * 0 - if it is not a claim packet
910 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200911static int batadv_check_claim_group(struct batadv_priv *bat_priv,
912 struct batadv_hard_iface *primary_if,
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200913 u8 *hw_src, u8 *hw_dst,
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200914 struct ethhdr *ethhdr)
Simon Wunderlich38ef3d12012-01-22 20:00:26 +0100915{
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200916 u8 *backbone_addr;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200917 struct batadv_orig_node *orig_node;
Sven Eckelmann96412692012-06-05 22:31:30 +0200918 struct batadv_bla_claim_dst *bla_dst, *bla_dst_own;
Simon Wunderlich38ef3d12012-01-22 20:00:26 +0100919
Sven Eckelmann96412692012-06-05 22:31:30 +0200920 bla_dst = (struct batadv_bla_claim_dst *)hw_dst;
Sven Eckelmann807736f2012-07-15 22:26:51 +0200921 bla_dst_own = &bat_priv->bla.claim_dest;
Simon Wunderlich38ef3d12012-01-22 20:00:26 +0100922
Simon Wunderlich38ef3d12012-01-22 20:00:26 +0100923 /* if announcement packet, use the source,
924 * otherwise assume it is in the hw_src
925 */
926 switch (bla_dst->type) {
Simon Wunderlich3eb87732012-06-23 12:34:18 +0200927 case BATADV_CLAIM_TYPE_CLAIM:
Simon Wunderlich38ef3d12012-01-22 20:00:26 +0100928 backbone_addr = hw_src;
929 break;
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200930 case BATADV_CLAIM_TYPE_REQUEST:
931 case BATADV_CLAIM_TYPE_ANNOUNCE:
Simon Wunderlich3eb87732012-06-23 12:34:18 +0200932 case BATADV_CLAIM_TYPE_UNCLAIM:
Simon Wunderlich38ef3d12012-01-22 20:00:26 +0100933 backbone_addr = ethhdr->h_source;
934 break;
935 default:
936 return 0;
937 }
938
939 /* don't accept claim frames from ourselves */
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200940 if (batadv_compare_eth(backbone_addr, primary_if->net_dev->dev_addr))
Simon Wunderlich38ef3d12012-01-22 20:00:26 +0100941 return 0;
942
943 /* if its already the same group, it is fine. */
944 if (bla_dst->group == bla_dst_own->group)
945 return 2;
946
947 /* lets see if this originator is in our mesh */
Sven Eckelmannda641192012-05-12 13:48:56 +0200948 orig_node = batadv_orig_hash_find(bat_priv, backbone_addr);
Simon Wunderlich38ef3d12012-01-22 20:00:26 +0100949
950 /* dont accept claims from gateways which are not in
951 * the same mesh or group.
952 */
953 if (!orig_node)
954 return 1;
955
956 /* if our mesh friends mac is bigger, use it for ourselves. */
957 if (ntohs(bla_dst->group) > ntohs(bla_dst_own->group)) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200958 batadv_dbg(BATADV_DBG_BLA, bat_priv,
Antonio Quartulli39a32992012-11-19 09:01:43 +0100959 "taking other backbones claim group: %#.4x\n",
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200960 ntohs(bla_dst->group));
Simon Wunderlich38ef3d12012-01-22 20:00:26 +0100961 bla_dst_own->group = bla_dst->group;
962 }
963
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200964 batadv_orig_node_free_ref(orig_node);
Simon Wunderlich38ef3d12012-01-22 20:00:26 +0100965
966 return 2;
967}
968
Simon Wunderlich1b371d12014-01-15 21:17:54 +0100969/**
Simon Wunderlich04e14be2015-11-06 10:45:19 +0100970 * batadv_bla_process_claim - Check if this is a claim frame, and process it
Simon Wunderlich1b371d12014-01-15 21:17:54 +0100971 * @bat_priv: the bat priv with all the soft interface information
Martin Hundebølle3357182014-07-15 09:41:06 +0200972 * @primary_if: the primary hard interface of this batman soft interface
Simon Wunderlich23721382012-01-22 20:00:19 +0100973 * @skb: the frame to be checked
974 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200975 * Return: 1 if it was a claim frame, otherwise return 0 to
Simon Wunderlich23721382012-01-22 20:00:19 +0100976 * tell the callee that it can use the frame on its own.
977 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200978static int batadv_bla_process_claim(struct batadv_priv *bat_priv,
979 struct batadv_hard_iface *primary_if,
Sven Eckelmann3b300de2012-05-12 18:33:53 +0200980 struct sk_buff *skb)
Simon Wunderlich23721382012-01-22 20:00:19 +0100981{
Simon Wunderlichd46b6bf2014-06-23 15:55:36 +0200982 struct batadv_bla_claim_dst *bla_dst, *bla_dst_own;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200983 u8 *hw_src, *hw_dst;
Simon Wunderlichd46b6bf2014-06-23 15:55:36 +0200984 struct vlan_hdr *vhdr, vhdr_buf;
Antonio Quartullic018ad32013-06-04 12:11:39 +0200985 struct ethhdr *ethhdr;
986 struct arphdr *arphdr;
987 unsigned short vid;
Simon Wunderlichd46b6bf2014-06-23 15:55:36 +0200988 int vlan_depth = 0;
Antonio Quartulli293e9332013-05-19 12:55:16 +0200989 __be16 proto;
Simon Wunderlich23721382012-01-22 20:00:19 +0100990 int headlen;
Simon Wunderlich38ef3d12012-01-22 20:00:26 +0100991 int ret;
Simon Wunderlich23721382012-01-22 20:00:19 +0100992
Antonio Quartullic018ad32013-06-04 12:11:39 +0200993 vid = batadv_get_vid(skb, 0);
Antonio Quartulli7ed4be92013-04-08 15:08:18 +0200994 ethhdr = eth_hdr(skb);
Simon Wunderlich23721382012-01-22 20:00:19 +0100995
Antonio Quartullic018ad32013-06-04 12:11:39 +0200996 proto = ethhdr->h_proto;
997 headlen = ETH_HLEN;
998 if (vid & BATADV_VLAN_HAS_TAG) {
Simon Wunderlichd46b6bf2014-06-23 15:55:36 +0200999 /* Traverse the VLAN/Ethertypes.
1000 *
1001 * At this point it is known that the first protocol is a VLAN
1002 * header, so start checking at the encapsulated protocol.
1003 *
1004 * The depth of the VLAN headers is recorded to drop BLA claim
1005 * frames encapsulated into multiple VLAN headers (QinQ).
1006 */
1007 do {
1008 vhdr = skb_header_pointer(skb, headlen, VLAN_HLEN,
1009 &vhdr_buf);
1010 if (!vhdr)
1011 return 0;
1012
1013 proto = vhdr->h_vlan_encapsulated_proto;
1014 headlen += VLAN_HLEN;
1015 vlan_depth++;
1016 } while (proto == htons(ETH_P_8021Q));
Simon Wunderlich23721382012-01-22 20:00:19 +01001017 }
1018
Antonio Quartulli293e9332013-05-19 12:55:16 +02001019 if (proto != htons(ETH_P_ARP))
Simon Wunderlich23721382012-01-22 20:00:19 +01001020 return 0; /* not a claim frame */
1021
1022 /* this must be a ARP frame. check if it is a claim. */
1023
1024 if (unlikely(!pskb_may_pull(skb, headlen + arp_hdr_len(skb->dev))))
1025 return 0;
1026
1027 /* pskb_may_pull() may have modified the pointers, get ethhdr again */
Antonio Quartulli7ed4be92013-04-08 15:08:18 +02001028 ethhdr = eth_hdr(skb);
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001029 arphdr = (struct arphdr *)((u8 *)ethhdr + headlen);
Simon Wunderlich23721382012-01-22 20:00:19 +01001030
1031 /* Check whether the ARP frame carries a valid
1032 * IP information
1033 */
Simon Wunderlich23721382012-01-22 20:00:19 +01001034 if (arphdr->ar_hrd != htons(ARPHRD_ETHER))
1035 return 0;
1036 if (arphdr->ar_pro != htons(ETH_P_IP))
1037 return 0;
1038 if (arphdr->ar_hln != ETH_ALEN)
1039 return 0;
1040 if (arphdr->ar_pln != 4)
1041 return 0;
1042
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001043 hw_src = (u8 *)arphdr + sizeof(struct arphdr);
Simon Wunderlich23721382012-01-22 20:00:19 +01001044 hw_dst = hw_src + ETH_ALEN + 4;
Sven Eckelmann96412692012-06-05 22:31:30 +02001045 bla_dst = (struct batadv_bla_claim_dst *)hw_dst;
Simon Wunderlichd46b6bf2014-06-23 15:55:36 +02001046 bla_dst_own = &bat_priv->bla.claim_dest;
1047
1048 /* check if it is a claim frame in general */
1049 if (memcmp(bla_dst->magic, bla_dst_own->magic,
1050 sizeof(bla_dst->magic)) != 0)
1051 return 0;
1052
1053 /* check if there is a claim frame encapsulated deeper in (QinQ) and
1054 * drop that, as this is not supported by BLA but should also not be
1055 * sent via the mesh.
1056 */
1057 if (vlan_depth > 1)
1058 return 1;
Simon Wunderlich23721382012-01-22 20:00:19 +01001059
1060 /* check if it is a claim frame. */
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001061 ret = batadv_check_claim_group(bat_priv, primary_if, hw_src, hw_dst,
1062 ethhdr);
Simon Wunderlich38ef3d12012-01-22 20:00:26 +01001063 if (ret == 1)
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001064 batadv_dbg(BATADV_DBG_BLA, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001065 "bla_process_claim(): received a claim frame from another group. From: %pM on vid %d ...(hw_src %pM, hw_dst %pM)\n",
Antonio Quartulli5f80df62013-04-19 18:07:01 +02001066 ethhdr->h_source, BATADV_PRINT_VID(vid), hw_src,
1067 hw_dst);
Simon Wunderlich38ef3d12012-01-22 20:00:26 +01001068
1069 if (ret < 2)
1070 return ret;
Simon Wunderlich23721382012-01-22 20:00:19 +01001071
1072 /* become a backbone gw ourselves on this vlan if not happened yet */
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001073 batadv_bla_update_own_backbone_gw(bat_priv, primary_if, vid);
Simon Wunderlich23721382012-01-22 20:00:19 +01001074
1075 /* check for the different types of claim frames ... */
1076 switch (bla_dst->type) {
Simon Wunderlich3eb87732012-06-23 12:34:18 +02001077 case BATADV_CLAIM_TYPE_CLAIM:
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001078 if (batadv_handle_claim(bat_priv, primary_if, hw_src,
1079 ethhdr->h_source, vid))
Simon Wunderlich23721382012-01-22 20:00:19 +01001080 return 1;
1081 break;
Simon Wunderlich3eb87732012-06-23 12:34:18 +02001082 case BATADV_CLAIM_TYPE_UNCLAIM:
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001083 if (batadv_handle_unclaim(bat_priv, primary_if,
1084 ethhdr->h_source, hw_src, vid))
Simon Wunderlich23721382012-01-22 20:00:19 +01001085 return 1;
1086 break;
1087
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001088 case BATADV_CLAIM_TYPE_ANNOUNCE:
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001089 if (batadv_handle_announce(bat_priv, hw_src, ethhdr->h_source,
1090 vid))
Simon Wunderlich23721382012-01-22 20:00:19 +01001091 return 1;
1092 break;
Sven Eckelmannacd34af2012-06-03 22:19:21 +02001093 case BATADV_CLAIM_TYPE_REQUEST:
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001094 if (batadv_handle_request(bat_priv, primary_if, hw_src, ethhdr,
1095 vid))
Simon Wunderlich23721382012-01-22 20:00:19 +01001096 return 1;
1097 break;
1098 }
1099
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001100 batadv_dbg(BATADV_DBG_BLA, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001101 "bla_process_claim(): ERROR - this looks like a claim frame, but is useless. eth src %pM on vid %d ...(hw_src %pM, hw_dst %pM)\n",
Antonio Quartulli5f80df62013-04-19 18:07:01 +02001102 ethhdr->h_source, BATADV_PRINT_VID(vid), hw_src, hw_dst);
Simon Wunderlich23721382012-01-22 20:00:19 +01001103 return 1;
1104}
1105
Simon Wunderlich04e14be2015-11-06 10:45:19 +01001106/**
1107 * batadv_bla_purge_backbone_gw - Remove backbone gateways after a timeout or
1108 * immediately
1109 * @bat_priv: the bat priv with all the soft interface information
1110 * @now: whether the whole hash shall be wiped now
1111 *
1112 * Check when we last heard from other nodes, and remove them in case of
Simon Wunderlich23721382012-01-22 20:00:19 +01001113 * a time out, or clean all backbone gws if now is set.
1114 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001115static void batadv_bla_purge_backbone_gw(struct batadv_priv *bat_priv, int now)
Simon Wunderlich23721382012-01-22 20:00:19 +01001116{
Marek Lindnerbae98772012-12-25 17:03:24 +08001117 struct batadv_bla_backbone_gw *backbone_gw;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001118 struct hlist_node *node_tmp;
Simon Wunderlich23721382012-01-22 20:00:19 +01001119 struct hlist_head *head;
Sven Eckelmann5bf74e92012-06-05 22:31:28 +02001120 struct batadv_hashtable *hash;
Simon Wunderlich23721382012-01-22 20:00:19 +01001121 spinlock_t *list_lock; /* protects write access to the hash lists */
1122 int i;
1123
Sven Eckelmann807736f2012-07-15 22:26:51 +02001124 hash = bat_priv->bla.backbone_hash;
Simon Wunderlich23721382012-01-22 20:00:19 +01001125 if (!hash)
1126 return;
1127
1128 for (i = 0; i < hash->size; i++) {
1129 head = &hash->table[i];
1130 list_lock = &hash->list_locks[i];
1131
1132 spin_lock_bh(list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08001133 hlist_for_each_entry_safe(backbone_gw, node_tmp,
Simon Wunderlich23721382012-01-22 20:00:19 +01001134 head, hash_entry) {
1135 if (now)
1136 goto purge_now;
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001137 if (!batadv_has_timed_out(backbone_gw->lasttime,
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001138 BATADV_BLA_BACKBONE_TIMEOUT))
Simon Wunderlich23721382012-01-22 20:00:19 +01001139 continue;
1140
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001141 batadv_dbg(BATADV_DBG_BLA, backbone_gw->bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001142 "bla_purge_backbone_gw(): backbone gw %pM timed out\n",
1143 backbone_gw->orig);
Simon Wunderlich23721382012-01-22 20:00:19 +01001144
1145purge_now:
1146 /* don't wait for the pending request anymore */
1147 if (atomic_read(&backbone_gw->request_sent))
Sven Eckelmann807736f2012-07-15 22:26:51 +02001148 atomic_dec(&bat_priv->bla.num_requests);
Simon Wunderlich23721382012-01-22 20:00:19 +01001149
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001150 batadv_bla_del_backbone_claims(backbone_gw);
Simon Wunderlich23721382012-01-22 20:00:19 +01001151
Sasha Levinb67bfe02013-02-27 17:06:00 -08001152 hlist_del_rcu(&backbone_gw->hash_entry);
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001153 batadv_backbone_gw_free_ref(backbone_gw);
Simon Wunderlich23721382012-01-22 20:00:19 +01001154 }
1155 spin_unlock_bh(list_lock);
1156 }
1157}
1158
Ben Hutchings2c530402012-07-10 10:55:09 +00001159/**
Simon Wunderlich04e14be2015-11-06 10:45:19 +01001160 * batadv_bla_purge_claims - Remove claims after a timeout or immediately
Ben Hutchings2c530402012-07-10 10:55:09 +00001161 * @bat_priv: the bat priv with all the soft interface information
Simon Wunderlich23721382012-01-22 20:00:19 +01001162 * @primary_if: the selected primary interface, may be NULL if now is set
1163 * @now: whether the whole hash shall be wiped now
1164 *
1165 * Check when we heard last time from our own claims, and remove them in case of
1166 * a time out, or clean all claims if now is set
1167 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001168static void batadv_bla_purge_claims(struct batadv_priv *bat_priv,
1169 struct batadv_hard_iface *primary_if,
1170 int now)
Simon Wunderlich23721382012-01-22 20:00:19 +01001171{
Marek Lindner712bbfe42012-12-25 17:03:25 +08001172 struct batadv_bla_claim *claim;
Simon Wunderlich23721382012-01-22 20:00:19 +01001173 struct hlist_head *head;
Sven Eckelmann5bf74e92012-06-05 22:31:28 +02001174 struct batadv_hashtable *hash;
Simon Wunderlich23721382012-01-22 20:00:19 +01001175 int i;
1176
Sven Eckelmann807736f2012-07-15 22:26:51 +02001177 hash = bat_priv->bla.claim_hash;
Simon Wunderlich23721382012-01-22 20:00:19 +01001178 if (!hash)
1179 return;
1180
1181 for (i = 0; i < hash->size; i++) {
1182 head = &hash->table[i];
1183
1184 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001185 hlist_for_each_entry_rcu(claim, head, hash_entry) {
Simon Wunderlich23721382012-01-22 20:00:19 +01001186 if (now)
1187 goto purge_now;
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001188 if (!batadv_compare_eth(claim->backbone_gw->orig,
1189 primary_if->net_dev->dev_addr))
Simon Wunderlich23721382012-01-22 20:00:19 +01001190 continue;
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001191 if (!batadv_has_timed_out(claim->lasttime,
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001192 BATADV_BLA_CLAIM_TIMEOUT))
Simon Wunderlich23721382012-01-22 20:00:19 +01001193 continue;
1194
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001195 batadv_dbg(BATADV_DBG_BLA, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001196 "bla_purge_claims(): %pM, vid %d, time out\n",
1197 claim->addr, claim->vid);
Simon Wunderlich23721382012-01-22 20:00:19 +01001198
1199purge_now:
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001200 batadv_handle_unclaim(bat_priv, primary_if,
1201 claim->backbone_gw->orig,
1202 claim->addr, claim->vid);
Simon Wunderlich23721382012-01-22 20:00:19 +01001203 }
1204 rcu_read_unlock();
1205 }
1206}
1207
Ben Hutchings2c530402012-07-10 10:55:09 +00001208/**
Simon Wunderlich04e14be2015-11-06 10:45:19 +01001209 * batadv_bla_update_orig_address - Update the backbone gateways when the own
1210 * originator address changes
Ben Hutchings2c530402012-07-10 10:55:09 +00001211 * @bat_priv: the bat priv with all the soft interface information
Simon Wunderlich23721382012-01-22 20:00:19 +01001212 * @primary_if: the new selected primary_if
1213 * @oldif: the old primary interface, may be NULL
Simon Wunderlich23721382012-01-22 20:00:19 +01001214 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001215void batadv_bla_update_orig_address(struct batadv_priv *bat_priv,
1216 struct batadv_hard_iface *primary_if,
1217 struct batadv_hard_iface *oldif)
Simon Wunderlich23721382012-01-22 20:00:19 +01001218{
Marek Lindnerbae98772012-12-25 17:03:24 +08001219 struct batadv_bla_backbone_gw *backbone_gw;
Simon Wunderlich23721382012-01-22 20:00:19 +01001220 struct hlist_head *head;
Sven Eckelmann5bf74e92012-06-05 22:31:28 +02001221 struct batadv_hashtable *hash;
Sven Eckelmann807736f2012-07-15 22:26:51 +02001222 __be16 group;
Simon Wunderlich23721382012-01-22 20:00:19 +01001223 int i;
1224
Simon Wunderlich38ef3d12012-01-22 20:00:26 +01001225 /* reset bridge loop avoidance group id */
Sven Eckelmann807736f2012-07-15 22:26:51 +02001226 group = htons(crc16(0, primary_if->net_dev->dev_addr, ETH_ALEN));
1227 bat_priv->bla.claim_dest.group = group;
Simon Wunderlich38ef3d12012-01-22 20:00:26 +01001228
Simon Wunderlichd5b4c932013-06-07 16:52:05 +02001229 /* purge everything when bridge loop avoidance is turned off */
1230 if (!atomic_read(&bat_priv->bridge_loop_avoidance))
1231 oldif = NULL;
1232
Simon Wunderlich23721382012-01-22 20:00:19 +01001233 if (!oldif) {
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001234 batadv_bla_purge_claims(bat_priv, NULL, 1);
1235 batadv_bla_purge_backbone_gw(bat_priv, 1);
Simon Wunderlich23721382012-01-22 20:00:19 +01001236 return;
1237 }
1238
Sven Eckelmann807736f2012-07-15 22:26:51 +02001239 hash = bat_priv->bla.backbone_hash;
Simon Wunderlich23721382012-01-22 20:00:19 +01001240 if (!hash)
1241 return;
1242
1243 for (i = 0; i < hash->size; i++) {
1244 head = &hash->table[i];
1245
1246 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001247 hlist_for_each_entry_rcu(backbone_gw, head, hash_entry) {
Simon Wunderlich23721382012-01-22 20:00:19 +01001248 /* own orig still holds the old value. */
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001249 if (!batadv_compare_eth(backbone_gw->orig,
1250 oldif->net_dev->dev_addr))
Simon Wunderlich23721382012-01-22 20:00:19 +01001251 continue;
1252
Antonio Quartulli8fdd0152014-01-22 00:42:11 +01001253 ether_addr_copy(backbone_gw->orig,
1254 primary_if->net_dev->dev_addr);
Simon Wunderlich23721382012-01-22 20:00:19 +01001255 /* send an announce frame so others will ask for our
1256 * claims and update their tables.
1257 */
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001258 batadv_bla_send_announce(bat_priv, backbone_gw);
Simon Wunderlich23721382012-01-22 20:00:19 +01001259 }
1260 rcu_read_unlock();
1261 }
1262}
1263
Simon Wunderlichd68081a2015-11-09 16:20:52 +01001264/**
1265 * batadv_bla_status_update - purge bla interfaces if necessary
1266 * @net_dev: the soft interface net device
1267 */
1268void batadv_bla_status_update(struct net_device *net_dev)
1269{
1270 struct batadv_priv *bat_priv = netdev_priv(net_dev);
1271 struct batadv_hard_iface *primary_if;
1272
1273 primary_if = batadv_primary_if_get_selected(bat_priv);
1274 if (!primary_if)
1275 return;
1276
1277 /* this function already purges everything when bla is disabled,
1278 * so just call that one.
1279 */
1280 batadv_bla_update_orig_address(bat_priv, primary_if, primary_if);
1281 batadv_hardif_free_ref(primary_if);
1282}
1283
Simon Wunderlich04e14be2015-11-06 10:45:19 +01001284/**
1285 * batadv_bla_periodic_work - performs periodic bla work
1286 * @work: kernel work struct
1287 *
1288 * periodic work to do:
Simon Wunderlich23721382012-01-22 20:00:19 +01001289 * * purge structures when they are too old
1290 * * send announcements
1291 */
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001292static void batadv_bla_periodic_work(struct work_struct *work)
Simon Wunderlich23721382012-01-22 20:00:19 +01001293{
Sven Eckelmannbbb1f902012-07-08 17:13:15 +02001294 struct delayed_work *delayed_work;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001295 struct batadv_priv *bat_priv;
Sven Eckelmann807736f2012-07-15 22:26:51 +02001296 struct batadv_priv_bla *priv_bla;
Simon Wunderlich23721382012-01-22 20:00:19 +01001297 struct hlist_head *head;
Marek Lindnerbae98772012-12-25 17:03:24 +08001298 struct batadv_bla_backbone_gw *backbone_gw;
Sven Eckelmann5bf74e92012-06-05 22:31:28 +02001299 struct batadv_hashtable *hash;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001300 struct batadv_hard_iface *primary_if;
Simon Wunderlich23721382012-01-22 20:00:19 +01001301 int i;
1302
Sven Eckelmannbbb1f902012-07-08 17:13:15 +02001303 delayed_work = container_of(work, struct delayed_work, work);
Sven Eckelmann807736f2012-07-15 22:26:51 +02001304 priv_bla = container_of(delayed_work, struct batadv_priv_bla, work);
1305 bat_priv = container_of(priv_bla, struct batadv_priv, bla);
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001306 primary_if = batadv_primary_if_get_selected(bat_priv);
Simon Wunderlich23721382012-01-22 20:00:19 +01001307 if (!primary_if)
1308 goto out;
1309
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001310 batadv_bla_purge_claims(bat_priv, primary_if, 0);
1311 batadv_bla_purge_backbone_gw(bat_priv, 0);
Simon Wunderlich23721382012-01-22 20:00:19 +01001312
1313 if (!atomic_read(&bat_priv->bridge_loop_avoidance))
1314 goto out;
1315
Sven Eckelmann807736f2012-07-15 22:26:51 +02001316 hash = bat_priv->bla.backbone_hash;
Simon Wunderlich23721382012-01-22 20:00:19 +01001317 if (!hash)
1318 goto out;
1319
1320 for (i = 0; i < hash->size; i++) {
1321 head = &hash->table[i];
1322
1323 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001324 hlist_for_each_entry_rcu(backbone_gw, head, hash_entry) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001325 if (!batadv_compare_eth(backbone_gw->orig,
1326 primary_if->net_dev->dev_addr))
Simon Wunderlich23721382012-01-22 20:00:19 +01001327 continue;
1328
1329 backbone_gw->lasttime = jiffies;
1330
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001331 batadv_bla_send_announce(bat_priv, backbone_gw);
Simon Wunderlichd807f272012-09-09 22:27:57 +02001332
1333 /* request_sent is only set after creation to avoid
1334 * problems when we are not yet known as backbone gw
1335 * in the backbone.
1336 *
Simon Wunderlich28709872012-09-13 18:18:46 +02001337 * We can reset this now after we waited some periods
1338 * to give bridge forward delays and bla group forming
1339 * some grace time.
Simon Wunderlichd807f272012-09-09 22:27:57 +02001340 */
1341
1342 if (atomic_read(&backbone_gw->request_sent) == 0)
1343 continue;
1344
Simon Wunderlich28709872012-09-13 18:18:46 +02001345 if (!atomic_dec_and_test(&backbone_gw->wait_periods))
1346 continue;
1347
Simon Wunderlichd807f272012-09-09 22:27:57 +02001348 atomic_dec(&backbone_gw->bat_priv->bla.num_requests);
1349 atomic_set(&backbone_gw->request_sent, 0);
Simon Wunderlich23721382012-01-22 20:00:19 +01001350 }
1351 rcu_read_unlock();
1352 }
1353out:
1354 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001355 batadv_hardif_free_ref(primary_if);
Simon Wunderlich23721382012-01-22 20:00:19 +01001356
Antonio Quartulli72414442012-12-25 13:14:37 +01001357 queue_delayed_work(batadv_event_workqueue, &bat_priv->bla.work,
1358 msecs_to_jiffies(BATADV_BLA_PERIOD_LENGTH));
Simon Wunderlich23721382012-01-22 20:00:19 +01001359}
1360
Sven Eckelmann5d52dad2012-03-29 12:38:20 +02001361/* The hash for claim and backbone hash receive the same key because they
1362 * are getting initialized by hash_new with the same key. Reinitializing
1363 * them with to different keys to allow nested locking without generating
1364 * lockdep warnings
1365 */
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001366static struct lock_class_key batadv_claim_hash_lock_class_key;
1367static struct lock_class_key batadv_backbone_hash_lock_class_key;
Sven Eckelmann5d52dad2012-03-29 12:38:20 +02001368
Simon Wunderlich04e14be2015-11-06 10:45:19 +01001369/**
1370 * batadv_bla_init - initialize all bla structures
1371 * @bat_priv: the bat priv with all the soft interface information
1372 *
1373 * Return: 0 on success, < 0 on error.
1374 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001375int batadv_bla_init(struct batadv_priv *bat_priv)
Simon Wunderlich23721382012-01-22 20:00:19 +01001376{
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +01001377 int i;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001378 u8 claim_dest[ETH_ALEN] = {0xff, 0x43, 0x05, 0x00, 0x00, 0x00};
Sven Eckelmann56303d32012-06-05 22:31:31 +02001379 struct batadv_hard_iface *primary_if;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001380 u16 crc;
Sven Eckelmann807736f2012-07-15 22:26:51 +02001381 unsigned long entrytime;
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +01001382
Linus Lüssing7dac7b72012-10-17 14:53:05 +02001383 spin_lock_init(&bat_priv->bla.bcast_duplist_lock);
1384
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001385 batadv_dbg(BATADV_DBG_BLA, bat_priv, "bla hash registering\n");
Simon Wunderlich23721382012-01-22 20:00:19 +01001386
Simon Wunderlich38ef3d12012-01-22 20:00:26 +01001387 /* setting claim destination address */
Sven Eckelmann807736f2012-07-15 22:26:51 +02001388 memcpy(&bat_priv->bla.claim_dest.magic, claim_dest, 3);
1389 bat_priv->bla.claim_dest.type = 0;
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001390 primary_if = batadv_primary_if_get_selected(bat_priv);
Simon Wunderlich38ef3d12012-01-22 20:00:26 +01001391 if (primary_if) {
Sven Eckelmann807736f2012-07-15 22:26:51 +02001392 crc = crc16(0, primary_if->net_dev->dev_addr, ETH_ALEN);
1393 bat_priv->bla.claim_dest.group = htons(crc);
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001394 batadv_hardif_free_ref(primary_if);
Simon Wunderlich38ef3d12012-01-22 20:00:26 +01001395 } else {
Sven Eckelmann807736f2012-07-15 22:26:51 +02001396 bat_priv->bla.claim_dest.group = 0; /* will be set later */
Simon Wunderlich38ef3d12012-01-22 20:00:26 +01001397 }
1398
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +01001399 /* initialize the duplicate list */
Sven Eckelmann807736f2012-07-15 22:26:51 +02001400 entrytime = jiffies - msecs_to_jiffies(BATADV_DUPLIST_TIMEOUT);
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001401 for (i = 0; i < BATADV_DUPLIST_SIZE; i++)
Sven Eckelmann807736f2012-07-15 22:26:51 +02001402 bat_priv->bla.bcast_duplist[i].entrytime = entrytime;
1403 bat_priv->bla.bcast_duplist_curr = 0;
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +01001404
Sven Eckelmann807736f2012-07-15 22:26:51 +02001405 if (bat_priv->bla.claim_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +02001406 return 0;
Simon Wunderlich23721382012-01-22 20:00:19 +01001407
Sven Eckelmann807736f2012-07-15 22:26:51 +02001408 bat_priv->bla.claim_hash = batadv_hash_new(128);
1409 bat_priv->bla.backbone_hash = batadv_hash_new(32);
Simon Wunderlich23721382012-01-22 20:00:19 +01001410
Sven Eckelmann807736f2012-07-15 22:26:51 +02001411 if (!bat_priv->bla.claim_hash || !bat_priv->bla.backbone_hash)
Sven Eckelmann5346c352012-05-05 13:27:28 +02001412 return -ENOMEM;
Simon Wunderlich23721382012-01-22 20:00:19 +01001413
Sven Eckelmann807736f2012-07-15 22:26:51 +02001414 batadv_hash_set_lock_class(bat_priv->bla.claim_hash,
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001415 &batadv_claim_hash_lock_class_key);
Sven Eckelmann807736f2012-07-15 22:26:51 +02001416 batadv_hash_set_lock_class(bat_priv->bla.backbone_hash,
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001417 &batadv_backbone_hash_lock_class_key);
Sven Eckelmann5d52dad2012-03-29 12:38:20 +02001418
Sven Eckelmann39c75a52012-06-03 22:19:22 +02001419 batadv_dbg(BATADV_DBG_BLA, bat_priv, "bla hashes initialized\n");
Simon Wunderlich23721382012-01-22 20:00:19 +01001420
Antonio Quartulli72414442012-12-25 13:14:37 +01001421 INIT_DELAYED_WORK(&bat_priv->bla.work, batadv_bla_periodic_work);
1422
1423 queue_delayed_work(batadv_event_workqueue, &bat_priv->bla.work,
1424 msecs_to_jiffies(BATADV_BLA_PERIOD_LENGTH));
Sven Eckelmann5346c352012-05-05 13:27:28 +02001425 return 0;
Simon Wunderlich23721382012-01-22 20:00:19 +01001426}
1427
Ben Hutchings2c530402012-07-10 10:55:09 +00001428/**
Simon Wunderlich04e14be2015-11-06 10:45:19 +01001429 * batadv_bla_check_bcast_duplist - Check if a frame is in the broadcast dup.
Ben Hutchings2c530402012-07-10 10:55:09 +00001430 * @bat_priv: the bat priv with all the soft interface information
Simon Wunderlich004e86f2012-10-18 13:47:42 +02001431 * @skb: contains the bcast_packet to be checked
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +01001432 *
1433 * check if it is on our broadcast list. Another gateway might
1434 * have sent the same packet because it is connected to the same backbone,
1435 * so we have to remove this duplicate.
1436 *
1437 * This is performed by checking the CRC, which will tell us
1438 * with a good chance that it is the same packet. If it is furthermore
1439 * sent by another host, drop it. We allow equal packets from
1440 * the same host however as this might be intended.
Simon Wunderlich04e14be2015-11-06 10:45:19 +01001441 *
1442 * Return: 1 if a packet is in the duplicate list, 0 otherwise.
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001443 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001444int batadv_bla_check_bcast_duplist(struct batadv_priv *bat_priv,
Simon Wunderlich004e86f2012-10-18 13:47:42 +02001445 struct sk_buff *skb)
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +01001446{
Simon Wunderlich004e86f2012-10-18 13:47:42 +02001447 int i, curr, ret = 0;
1448 __be32 crc;
1449 struct batadv_bcast_packet *bcast_packet;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001450 struct batadv_bcast_duplist_entry *entry;
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +01001451
Simon Wunderlich004e86f2012-10-18 13:47:42 +02001452 bcast_packet = (struct batadv_bcast_packet *)skb->data;
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +01001453
1454 /* calculate the crc ... */
Simon Wunderlich004e86f2012-10-18 13:47:42 +02001455 crc = batadv_skb_crc32(skb, (u8 *)(bcast_packet + 1));
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +01001456
Linus Lüssing7dac7b72012-10-17 14:53:05 +02001457 spin_lock_bh(&bat_priv->bla.bcast_duplist_lock);
1458
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001459 for (i = 0; i < BATADV_DUPLIST_SIZE; i++) {
Sven Eckelmann807736f2012-07-15 22:26:51 +02001460 curr = (bat_priv->bla.bcast_duplist_curr + i);
1461 curr %= BATADV_DUPLIST_SIZE;
1462 entry = &bat_priv->bla.bcast_duplist[curr];
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +01001463
1464 /* we can stop searching if the entry is too old ;
1465 * later entries will be even older
1466 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001467 if (batadv_has_timed_out(entry->entrytime,
1468 BATADV_DUPLIST_TIMEOUT))
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +01001469 break;
1470
1471 if (entry->crc != crc)
1472 continue;
1473
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001474 if (batadv_compare_eth(entry->orig, bcast_packet->orig))
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +01001475 continue;
1476
1477 /* this entry seems to match: same crc, not too old,
1478 * and from another gw. therefore return 1 to forbid it.
1479 */
Linus Lüssing7dac7b72012-10-17 14:53:05 +02001480 ret = 1;
1481 goto out;
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +01001482 }
Linus Lüssing7dac7b72012-10-17 14:53:05 +02001483 /* not found, add a new entry (overwrite the oldest entry)
Antonio Quartulli3f687852014-11-02 11:29:56 +01001484 * and allow it, its the first occurrence.
Linus Lüssing7dac7b72012-10-17 14:53:05 +02001485 */
Sven Eckelmann807736f2012-07-15 22:26:51 +02001486 curr = (bat_priv->bla.bcast_duplist_curr + BATADV_DUPLIST_SIZE - 1);
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001487 curr %= BATADV_DUPLIST_SIZE;
Sven Eckelmann807736f2012-07-15 22:26:51 +02001488 entry = &bat_priv->bla.bcast_duplist[curr];
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +01001489 entry->crc = crc;
1490 entry->entrytime = jiffies;
Antonio Quartulli8fdd0152014-01-22 00:42:11 +01001491 ether_addr_copy(entry->orig, bcast_packet->orig);
Sven Eckelmann807736f2012-07-15 22:26:51 +02001492 bat_priv->bla.bcast_duplist_curr = curr;
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +01001493
Linus Lüssing7dac7b72012-10-17 14:53:05 +02001494out:
1495 spin_unlock_bh(&bat_priv->bla.bcast_duplist_lock);
1496
1497 return ret;
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +01001498}
1499
Simon Wunderlich1b371d12014-01-15 21:17:54 +01001500/**
Simon Wunderlich04e14be2015-11-06 10:45:19 +01001501 * batadv_bla_is_backbone_gw_orig - Check if the originator is a gateway for
1502 * the VLAN identified by vid.
Simon Wunderlich1b371d12014-01-15 21:17:54 +01001503 * @bat_priv: the bat priv with all the soft interface information
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01001504 * @orig: originator mac address
Antonio Quartullicfd4f752013-08-07 18:28:56 +02001505 * @vid: VLAN identifier
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01001506 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02001507 * Return: true if orig is a backbone for this vid, false otherwise.
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01001508 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001509bool batadv_bla_is_backbone_gw_orig(struct batadv_priv *bat_priv, u8 *orig,
Antonio Quartullicfd4f752013-08-07 18:28:56 +02001510 unsigned short vid)
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01001511{
Sven Eckelmann807736f2012-07-15 22:26:51 +02001512 struct batadv_hashtable *hash = bat_priv->bla.backbone_hash;
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01001513 struct hlist_head *head;
Marek Lindnerbae98772012-12-25 17:03:24 +08001514 struct batadv_bla_backbone_gw *backbone_gw;
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01001515 int i;
1516
1517 if (!atomic_read(&bat_priv->bridge_loop_avoidance))
Antonio Quartullicfd4f752013-08-07 18:28:56 +02001518 return false;
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01001519
1520 if (!hash)
Antonio Quartullicfd4f752013-08-07 18:28:56 +02001521 return false;
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01001522
1523 for (i = 0; i < hash->size; i++) {
1524 head = &hash->table[i];
1525
1526 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001527 hlist_for_each_entry_rcu(backbone_gw, head, hash_entry) {
Antonio Quartullicfd4f752013-08-07 18:28:56 +02001528 if (batadv_compare_eth(backbone_gw->orig, orig) &&
1529 backbone_gw->vid == vid) {
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01001530 rcu_read_unlock();
Antonio Quartullicfd4f752013-08-07 18:28:56 +02001531 return true;
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01001532 }
1533 }
1534 rcu_read_unlock();
1535 }
1536
Antonio Quartullicfd4f752013-08-07 18:28:56 +02001537 return false;
Simon Wunderlich20ff9d52012-01-22 20:00:23 +01001538}
1539
Ben Hutchings2c530402012-07-10 10:55:09 +00001540/**
Simon Wunderlich04e14be2015-11-06 10:45:19 +01001541 * batadv_bla_is_backbone_gw - check if originator is a backbone gw for a VLAN.
Ben Hutchings2c530402012-07-10 10:55:09 +00001542 * @skb: the frame to be checked
Simon Wunderlich23721382012-01-22 20:00:19 +01001543 * @orig_node: the orig_node of the frame
1544 * @hdr_size: maximum length of the frame
1545 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02001546 * Return: 1 if the orig_node is also a gateway on the soft interface, otherwise
1547 * it returns 0.
Simon Wunderlich23721382012-01-22 20:00:19 +01001548 */
Sven Eckelmann08adf152012-05-12 13:38:47 +02001549int batadv_bla_is_backbone_gw(struct sk_buff *skb,
Sven Eckelmann56303d32012-06-05 22:31:31 +02001550 struct batadv_orig_node *orig_node, int hdr_size)
Simon Wunderlich23721382012-01-22 20:00:19 +01001551{
Marek Lindnerbae98772012-12-25 17:03:24 +08001552 struct batadv_bla_backbone_gw *backbone_gw;
Antonio Quartullic018ad32013-06-04 12:11:39 +02001553 unsigned short vid;
Simon Wunderlich23721382012-01-22 20:00:19 +01001554
1555 if (!atomic_read(&orig_node->bat_priv->bridge_loop_avoidance))
1556 return 0;
1557
1558 /* first, find out the vid. */
Antonio Quartulli0d125072012-02-18 11:27:34 +01001559 if (!pskb_may_pull(skb, hdr_size + ETH_HLEN))
Simon Wunderlich23721382012-01-22 20:00:19 +01001560 return 0;
1561
Antonio Quartullic018ad32013-06-04 12:11:39 +02001562 vid = batadv_get_vid(skb, hdr_size);
Simon Wunderlich23721382012-01-22 20:00:19 +01001563
1564 /* see if this originator is a backbone gw for this VLAN */
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001565 backbone_gw = batadv_backbone_hash_find(orig_node->bat_priv,
1566 orig_node->orig, vid);
Simon Wunderlich23721382012-01-22 20:00:19 +01001567 if (!backbone_gw)
1568 return 0;
1569
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001570 batadv_backbone_gw_free_ref(backbone_gw);
Simon Wunderlich23721382012-01-22 20:00:19 +01001571 return 1;
1572}
1573
Simon Wunderlich04e14be2015-11-06 10:45:19 +01001574/**
1575 * batadv_bla_init - free all bla structures
1576 * @bat_priv: the bat priv with all the soft interface information
1577 *
1578 * for softinterface free or module unload
1579 */
Sven Eckelmann56303d32012-06-05 22:31:31 +02001580void batadv_bla_free(struct batadv_priv *bat_priv)
Simon Wunderlich23721382012-01-22 20:00:19 +01001581{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001582 struct batadv_hard_iface *primary_if;
Simon Wunderlich23721382012-01-22 20:00:19 +01001583
Sven Eckelmann807736f2012-07-15 22:26:51 +02001584 cancel_delayed_work_sync(&bat_priv->bla.work);
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001585 primary_if = batadv_primary_if_get_selected(bat_priv);
Simon Wunderlich23721382012-01-22 20:00:19 +01001586
Sven Eckelmann807736f2012-07-15 22:26:51 +02001587 if (bat_priv->bla.claim_hash) {
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001588 batadv_bla_purge_claims(bat_priv, primary_if, 1);
Sven Eckelmann807736f2012-07-15 22:26:51 +02001589 batadv_hash_destroy(bat_priv->bla.claim_hash);
1590 bat_priv->bla.claim_hash = NULL;
Simon Wunderlich23721382012-01-22 20:00:19 +01001591 }
Sven Eckelmann807736f2012-07-15 22:26:51 +02001592 if (bat_priv->bla.backbone_hash) {
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001593 batadv_bla_purge_backbone_gw(bat_priv, 1);
Sven Eckelmann807736f2012-07-15 22:26:51 +02001594 batadv_hash_destroy(bat_priv->bla.backbone_hash);
1595 bat_priv->bla.backbone_hash = NULL;
Simon Wunderlich23721382012-01-22 20:00:19 +01001596 }
1597 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001598 batadv_hardif_free_ref(primary_if);
Simon Wunderlich23721382012-01-22 20:00:19 +01001599}
1600
Ben Hutchings2c530402012-07-10 10:55:09 +00001601/**
Simon Wunderlich04e14be2015-11-06 10:45:19 +01001602 * batadv_bla_rx - check packets coming from the mesh.
Ben Hutchings2c530402012-07-10 10:55:09 +00001603 * @bat_priv: the bat priv with all the soft interface information
Simon Wunderlich23721382012-01-22 20:00:19 +01001604 * @skb: the frame to be checked
1605 * @vid: the VLAN ID of the frame
Simon Wunderlich2d3f6cc2012-07-04 20:38:19 +02001606 * @is_bcast: the packet came in a broadcast packet type.
Simon Wunderlich23721382012-01-22 20:00:19 +01001607 *
Simon Wunderlich04e14be2015-11-06 10:45:19 +01001608 * batadv_bla_rx avoidance checks if:
Simon Wunderlich23721382012-01-22 20:00:19 +01001609 * * we have to race for a claim
1610 * * if the frame is allowed on the LAN
1611 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02001612 * in these cases, the skb is further handled by this function
1613 *
1614 * Return: 1 if handled, otherwise it returns 0 and the caller shall further
Simon Wunderlich23721382012-01-22 20:00:19 +01001615 * process the skb.
Simon Wunderlich23721382012-01-22 20:00:19 +01001616 */
Antonio Quartullieb2deb62013-04-19 18:07:00 +02001617int batadv_bla_rx(struct batadv_priv *bat_priv, struct sk_buff *skb,
1618 unsigned short vid, bool is_bcast)
Simon Wunderlich23721382012-01-22 20:00:19 +01001619{
1620 struct ethhdr *ethhdr;
Marek Lindner712bbfe42012-12-25 17:03:25 +08001621 struct batadv_bla_claim search_claim, *claim = NULL;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001622 struct batadv_hard_iface *primary_if;
Simon Wunderlich23721382012-01-22 20:00:19 +01001623 int ret;
1624
Antonio Quartulli7ed4be92013-04-08 15:08:18 +02001625 ethhdr = eth_hdr(skb);
Simon Wunderlich23721382012-01-22 20:00:19 +01001626
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001627 primary_if = batadv_primary_if_get_selected(bat_priv);
Simon Wunderlich23721382012-01-22 20:00:19 +01001628 if (!primary_if)
1629 goto handled;
1630
1631 if (!atomic_read(&bat_priv->bridge_loop_avoidance))
1632 goto allow;
1633
Sven Eckelmann807736f2012-07-15 22:26:51 +02001634 if (unlikely(atomic_read(&bat_priv->bla.num_requests)))
Simon Wunderlich23721382012-01-22 20:00:19 +01001635 /* don't allow broadcasts while requests are in flight */
Simon Wunderlich2d3f6cc2012-07-04 20:38:19 +02001636 if (is_multicast_ether_addr(ethhdr->h_dest) && is_bcast)
Simon Wunderlich23721382012-01-22 20:00:19 +01001637 goto handled;
1638
Antonio Quartulli8fdd0152014-01-22 00:42:11 +01001639 ether_addr_copy(search_claim.addr, ethhdr->h_source);
Simon Wunderlich23721382012-01-22 20:00:19 +01001640 search_claim.vid = vid;
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001641 claim = batadv_claim_hash_find(bat_priv, &search_claim);
Simon Wunderlich23721382012-01-22 20:00:19 +01001642
1643 if (!claim) {
1644 /* possible optimization: race for a claim */
1645 /* No claim exists yet, claim it for us!
1646 */
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001647 batadv_handle_claim(bat_priv, primary_if,
1648 primary_if->net_dev->dev_addr,
1649 ethhdr->h_source, vid);
Simon Wunderlich23721382012-01-22 20:00:19 +01001650 goto allow;
1651 }
1652
1653 /* if it is our own claim ... */
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001654 if (batadv_compare_eth(claim->backbone_gw->orig,
1655 primary_if->net_dev->dev_addr)) {
Simon Wunderlich23721382012-01-22 20:00:19 +01001656 /* ... allow it in any case */
1657 claim->lasttime = jiffies;
1658 goto allow;
1659 }
1660
1661 /* if it is a broadcast ... */
Simon Wunderlich2d3f6cc2012-07-04 20:38:19 +02001662 if (is_multicast_ether_addr(ethhdr->h_dest) && is_bcast) {
1663 /* ... drop it. the responsible gateway is in charge.
1664 *
1665 * We need to check is_bcast because with the gateway
1666 * feature, broadcasts (like DHCP requests) may be sent
1667 * using a unicast packet type.
1668 */
Simon Wunderlich23721382012-01-22 20:00:19 +01001669 goto handled;
1670 } else {
1671 /* seems the client considers us as its best gateway.
1672 * send a claim and update the claim table
1673 * immediately.
1674 */
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001675 batadv_handle_claim(bat_priv, primary_if,
1676 primary_if->net_dev->dev_addr,
1677 ethhdr->h_source, vid);
Simon Wunderlich23721382012-01-22 20:00:19 +01001678 goto allow;
1679 }
1680allow:
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001681 batadv_bla_update_own_backbone_gw(bat_priv, primary_if, vid);
Simon Wunderlich23721382012-01-22 20:00:19 +01001682 ret = 0;
1683 goto out;
1684
1685handled:
1686 kfree_skb(skb);
1687 ret = 1;
1688
1689out:
1690 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001691 batadv_hardif_free_ref(primary_if);
Simon Wunderlich23721382012-01-22 20:00:19 +01001692 if (claim)
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001693 batadv_claim_free_ref(claim);
Simon Wunderlich23721382012-01-22 20:00:19 +01001694 return ret;
1695}
1696
Ben Hutchings2c530402012-07-10 10:55:09 +00001697/**
Simon Wunderlich04e14be2015-11-06 10:45:19 +01001698 * batadv_bla_tx - check packets going into the mesh
Ben Hutchings2c530402012-07-10 10:55:09 +00001699 * @bat_priv: the bat priv with all the soft interface information
Simon Wunderlich23721382012-01-22 20:00:19 +01001700 * @skb: the frame to be checked
1701 * @vid: the VLAN ID of the frame
1702 *
Simon Wunderlich04e14be2015-11-06 10:45:19 +01001703 * batadv_bla_tx checks if:
Simon Wunderlich23721382012-01-22 20:00:19 +01001704 * * a claim was received which has to be processed
1705 * * the frame is allowed on the mesh
1706 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +02001707 * in these cases, the skb is further handled by this function.
Linus Lüssing9d2c9482013-08-06 20:21:15 +02001708 *
1709 * This call might reallocate skb data.
Sven Eckelmann62fe7102015-09-15 19:00:48 +02001710 *
1711 * Return: 1 if handled, otherwise it returns 0 and the caller shall further
1712 * process the skb.
Simon Wunderlich23721382012-01-22 20:00:19 +01001713 */
Antonio Quartullieb2deb62013-04-19 18:07:00 +02001714int batadv_bla_tx(struct batadv_priv *bat_priv, struct sk_buff *skb,
1715 unsigned short vid)
Simon Wunderlich23721382012-01-22 20:00:19 +01001716{
1717 struct ethhdr *ethhdr;
Marek Lindner712bbfe42012-12-25 17:03:25 +08001718 struct batadv_bla_claim search_claim, *claim = NULL;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001719 struct batadv_hard_iface *primary_if;
Simon Wunderlich23721382012-01-22 20:00:19 +01001720 int ret = 0;
1721
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001722 primary_if = batadv_primary_if_get_selected(bat_priv);
Simon Wunderlich23721382012-01-22 20:00:19 +01001723 if (!primary_if)
1724 goto out;
1725
1726 if (!atomic_read(&bat_priv->bridge_loop_avoidance))
1727 goto allow;
1728
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001729 if (batadv_bla_process_claim(bat_priv, primary_if, skb))
Simon Wunderlich23721382012-01-22 20:00:19 +01001730 goto handled;
1731
Antonio Quartulli7ed4be92013-04-08 15:08:18 +02001732 ethhdr = eth_hdr(skb);
Simon Wunderlich23721382012-01-22 20:00:19 +01001733
Sven Eckelmann807736f2012-07-15 22:26:51 +02001734 if (unlikely(atomic_read(&bat_priv->bla.num_requests)))
Simon Wunderlich23721382012-01-22 20:00:19 +01001735 /* don't allow broadcasts while requests are in flight */
1736 if (is_multicast_ether_addr(ethhdr->h_dest))
1737 goto handled;
1738
Antonio Quartulli8fdd0152014-01-22 00:42:11 +01001739 ether_addr_copy(search_claim.addr, ethhdr->h_source);
Simon Wunderlich23721382012-01-22 20:00:19 +01001740 search_claim.vid = vid;
1741
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001742 claim = batadv_claim_hash_find(bat_priv, &search_claim);
Simon Wunderlich23721382012-01-22 20:00:19 +01001743
1744 /* if no claim exists, allow it. */
1745 if (!claim)
1746 goto allow;
1747
1748 /* check if we are responsible. */
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001749 if (batadv_compare_eth(claim->backbone_gw->orig,
1750 primary_if->net_dev->dev_addr)) {
Simon Wunderlich23721382012-01-22 20:00:19 +01001751 /* if yes, the client has roamed and we have
1752 * to unclaim it.
1753 */
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001754 batadv_handle_unclaim(bat_priv, primary_if,
1755 primary_if->net_dev->dev_addr,
1756 ethhdr->h_source, vid);
Simon Wunderlich23721382012-01-22 20:00:19 +01001757 goto allow;
1758 }
1759
1760 /* check if it is a multicast/broadcast frame */
1761 if (is_multicast_ether_addr(ethhdr->h_dest)) {
1762 /* drop it. the responsible gateway has forwarded it into
1763 * the backbone network.
1764 */
1765 goto handled;
1766 } else {
1767 /* we must allow it. at least if we are
1768 * responsible for the DESTINATION.
1769 */
1770 goto allow;
1771 }
1772allow:
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001773 batadv_bla_update_own_backbone_gw(bat_priv, primary_if, vid);
Simon Wunderlich23721382012-01-22 20:00:19 +01001774 ret = 0;
1775 goto out;
1776handled:
1777 ret = 1;
1778out:
1779 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001780 batadv_hardif_free_ref(primary_if);
Simon Wunderlich23721382012-01-22 20:00:19 +01001781 if (claim)
Sven Eckelmann3b300de2012-05-12 18:33:53 +02001782 batadv_claim_free_ref(claim);
Simon Wunderlich23721382012-01-22 20:00:19 +01001783 return ret;
1784}
Simon Wunderlich9bf8e4d2012-01-22 20:00:21 +01001785
Simon Wunderlich04e14be2015-11-06 10:45:19 +01001786/**
1787 * batadv_bla_claim_table_seq_print_text - print the claim table in a seq file
1788 * @seq: seq file to print on
1789 * @offset: not used
1790 *
1791 * Return: always 0
1792 */
Sven Eckelmann08adf152012-05-12 13:38:47 +02001793int batadv_bla_claim_table_seq_print_text(struct seq_file *seq, void *offset)
Simon Wunderlich9bf8e4d2012-01-22 20:00:21 +01001794{
1795 struct net_device *net_dev = (struct net_device *)seq->private;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001796 struct batadv_priv *bat_priv = netdev_priv(net_dev);
Sven Eckelmann807736f2012-07-15 22:26:51 +02001797 struct batadv_hashtable *hash = bat_priv->bla.claim_hash;
Marek Lindner712bbfe42012-12-25 17:03:25 +08001798 struct batadv_bla_claim *claim;
Sven Eckelmann56303d32012-06-05 22:31:31 +02001799 struct batadv_hard_iface *primary_if;
Simon Wunderlich9bf8e4d2012-01-22 20:00:21 +01001800 struct hlist_head *head;
Simon Wunderlich5a1dd8a2015-09-11 18:04:13 +02001801 u16 backbone_crc;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001802 u32 i;
Simon Wunderlich9bf8e4d2012-01-22 20:00:21 +01001803 bool is_own;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001804 u8 *primary_addr;
Simon Wunderlich9bf8e4d2012-01-22 20:00:21 +01001805
Marek Lindner30da63a2012-08-03 17:15:46 +02001806 primary_if = batadv_seq_print_text_primary_if_get(seq);
1807 if (!primary_if)
Simon Wunderlich9bf8e4d2012-01-22 20:00:21 +01001808 goto out;
Simon Wunderlich9bf8e4d2012-01-22 20:00:21 +01001809
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001810 primary_addr = primary_if->net_dev->dev_addr;
Simon Wunderlich38ef3d12012-01-22 20:00:26 +01001811 seq_printf(seq,
Antonio Quartulli39a32992012-11-19 09:01:43 +01001812 "Claims announced for the mesh %s (orig %pM, group id %#.4x)\n",
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001813 net_dev->name, primary_addr,
Sven Eckelmann807736f2012-07-15 22:26:51 +02001814 ntohs(bat_priv->bla.claim_dest.group));
Antonio Quartulli39a32992012-11-19 09:01:43 +01001815 seq_printf(seq, " %-17s %-5s %-17s [o] (%-6s)\n",
Simon Wunderlich9bf8e4d2012-01-22 20:00:21 +01001816 "Client", "VID", "Originator", "CRC");
1817 for (i = 0; i < hash->size; i++) {
1818 head = &hash->table[i];
1819
1820 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001821 hlist_for_each_entry_rcu(claim, head, hash_entry) {
Sven Eckelmann1eda58b2012-05-12 13:48:58 +02001822 is_own = batadv_compare_eth(claim->backbone_gw->orig,
1823 primary_addr);
Simon Wunderlich5a1dd8a2015-09-11 18:04:13 +02001824
1825 spin_lock_bh(&claim->backbone_gw->crc_lock);
1826 backbone_crc = claim->backbone_gw->crc;
1827 spin_unlock_bh(&claim->backbone_gw->crc_lock);
Antonio Quartullieb2deb62013-04-19 18:07:00 +02001828 seq_printf(seq, " * %pM on %5d by %pM [%c] (%#.4x)\n",
Antonio Quartulli5f80df62013-04-19 18:07:01 +02001829 claim->addr, BATADV_PRINT_VID(claim->vid),
Simon Wunderlich9bf8e4d2012-01-22 20:00:21 +01001830 claim->backbone_gw->orig,
1831 (is_own ? 'x' : ' '),
Simon Wunderlich5a1dd8a2015-09-11 18:04:13 +02001832 backbone_crc);
Simon Wunderlich9bf8e4d2012-01-22 20:00:21 +01001833 }
1834 rcu_read_unlock();
1835 }
1836out:
1837 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +02001838 batadv_hardif_free_ref(primary_if);
Marek Lindner30da63a2012-08-03 17:15:46 +02001839 return 0;
Simon Wunderlich9bf8e4d2012-01-22 20:00:21 +01001840}
Simon Wunderlich536a23f2012-06-18 18:39:26 +02001841
Simon Wunderlich04e14be2015-11-06 10:45:19 +01001842/**
1843 * batadv_bla_backbone_table_seq_print_text - print the backbone table in a seq
1844 * file
1845 * @seq: seq file to print on
1846 * @offset: not used
1847 *
1848 * Return: always 0
1849 */
Simon Wunderlich536a23f2012-06-18 18:39:26 +02001850int batadv_bla_backbone_table_seq_print_text(struct seq_file *seq, void *offset)
1851{
1852 struct net_device *net_dev = (struct net_device *)seq->private;
1853 struct batadv_priv *bat_priv = netdev_priv(net_dev);
Sven Eckelmann807736f2012-07-15 22:26:51 +02001854 struct batadv_hashtable *hash = bat_priv->bla.backbone_hash;
Marek Lindnerbae98772012-12-25 17:03:24 +08001855 struct batadv_bla_backbone_gw *backbone_gw;
Simon Wunderlich536a23f2012-06-18 18:39:26 +02001856 struct batadv_hard_iface *primary_if;
Simon Wunderlich536a23f2012-06-18 18:39:26 +02001857 struct hlist_head *head;
1858 int secs, msecs;
Simon Wunderlich5a1dd8a2015-09-11 18:04:13 +02001859 u16 backbone_crc;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001860 u32 i;
Simon Wunderlich536a23f2012-06-18 18:39:26 +02001861 bool is_own;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +02001862 u8 *primary_addr;
Simon Wunderlich536a23f2012-06-18 18:39:26 +02001863
Marek Lindner30da63a2012-08-03 17:15:46 +02001864 primary_if = batadv_seq_print_text_primary_if_get(seq);
1865 if (!primary_if)
Simon Wunderlich536a23f2012-06-18 18:39:26 +02001866 goto out;
Simon Wunderlich536a23f2012-06-18 18:39:26 +02001867
1868 primary_addr = primary_if->net_dev->dev_addr;
1869 seq_printf(seq,
Antonio Quartulli39a32992012-11-19 09:01:43 +01001870 "Backbones announced for the mesh %s (orig %pM, group id %#.4x)\n",
Simon Wunderlich536a23f2012-06-18 18:39:26 +02001871 net_dev->name, primary_addr,
Sven Eckelmann807736f2012-07-15 22:26:51 +02001872 ntohs(bat_priv->bla.claim_dest.group));
Antonio Quartulli39a32992012-11-19 09:01:43 +01001873 seq_printf(seq, " %-17s %-5s %-9s (%-6s)\n",
Simon Wunderlich536a23f2012-06-18 18:39:26 +02001874 "Originator", "VID", "last seen", "CRC");
1875 for (i = 0; i < hash->size; i++) {
1876 head = &hash->table[i];
1877
1878 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001879 hlist_for_each_entry_rcu(backbone_gw, head, hash_entry) {
Simon Wunderlich536a23f2012-06-18 18:39:26 +02001880 msecs = jiffies_to_msecs(jiffies -
1881 backbone_gw->lasttime);
1882 secs = msecs / 1000;
1883 msecs = msecs % 1000;
1884
1885 is_own = batadv_compare_eth(backbone_gw->orig,
1886 primary_addr);
1887 if (is_own)
1888 continue;
1889
Simon Wunderlich5a1dd8a2015-09-11 18:04:13 +02001890 spin_lock_bh(&backbone_gw->crc_lock);
1891 backbone_crc = backbone_gw->crc;
1892 spin_unlock_bh(&backbone_gw->crc_lock);
1893
Antonio Quartullieb2deb62013-04-19 18:07:00 +02001894 seq_printf(seq, " * %pM on %5d %4i.%03is (%#.4x)\n",
Antonio Quartulli5f80df62013-04-19 18:07:01 +02001895 backbone_gw->orig,
1896 BATADV_PRINT_VID(backbone_gw->vid), secs,
Simon Wunderlich5a1dd8a2015-09-11 18:04:13 +02001897 msecs, backbone_crc);
Simon Wunderlich536a23f2012-06-18 18:39:26 +02001898 }
1899 rcu_read_unlock();
1900 }
1901out:
1902 if (primary_if)
1903 batadv_hardif_free_ref(primary_if);
Marek Lindner30da63a2012-08-03 17:15:46 +02001904 return 0;
Simon Wunderlich536a23f2012-06-18 18:39:26 +02001905}