originator.c 16.4 KB
Newer Older
1
/* Copyright (C) 2009-2013 B.A.T.M.A.N. contributors:
2 3 4 5 6 7 8 9 10 11 12 13 14
 *
 * Marek Lindner, Simon Wunderlich
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of version 2 of the GNU General Public
 * License as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
15
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
16 17 18
 */

#include "main.h"
19
#include "distributed-arp-table.h"
20 21 22 23 24 25 26
#include "originator.h"
#include "hash.h"
#include "translation-table.h"
#include "routing.h"
#include "gateway_client.h"
#include "hard-interface.h"
#include "soft-interface.h"
27
#include "bridge_loop_avoidance.h"
28
#include "network-coding.h"
29
#include "fragmentation.h"
30

31 32 33
/* hash class keys */
static struct lock_class_key batadv_orig_hash_lock_class_key;

34
static void batadv_purge_orig(struct work_struct *work);
35

36
/* returns 1 if they are the same originator */
37
int batadv_compare_orig(const struct hlist_node *node, const void *data2)
38
{
39 40
	const void *data1 = container_of(node, struct batadv_orig_node,
					 hash_entry);
41

42
	return batadv_compare_eth(data1, data2);
43 44
}

45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
/**
 * batadv_orig_node_vlan_get - get an orig_node_vlan object
 * @orig_node: the originator serving the VLAN
 * @vid: the VLAN identifier
 *
 * Returns the vlan object identified by vid and belonging to orig_node or NULL
 * if it does not exist.
 */
struct batadv_orig_node_vlan *
batadv_orig_node_vlan_get(struct batadv_orig_node *orig_node,
			  unsigned short vid)
{
	struct batadv_orig_node_vlan *vlan = NULL, *tmp;

	rcu_read_lock();
	list_for_each_entry_rcu(tmp, &orig_node->vlan_list, list) {
		if (tmp->vid != vid)
			continue;

		if (!atomic_inc_not_zero(&tmp->refcount))
			continue;

		vlan = tmp;

		break;
	}
	rcu_read_unlock();

	return vlan;
}

/**
 * batadv_orig_node_vlan_new - search and possibly create an orig_node_vlan
 *  object
 * @orig_node: the originator serving the VLAN
 * @vid: the VLAN identifier
 *
 * Returns NULL in case of failure or the vlan object identified by vid and
 * belonging to orig_node otherwise. The object is created and added to the list
 * if it does not exist.
 *
 * The object is returned with refcounter increased by 1.
 */
struct batadv_orig_node_vlan *
batadv_orig_node_vlan_new(struct batadv_orig_node *orig_node,
			  unsigned short vid)
{
	struct batadv_orig_node_vlan *vlan;

	spin_lock_bh(&orig_node->vlan_list_lock);

	/* first look if an object for this vid already exists */
	vlan = batadv_orig_node_vlan_get(orig_node, vid);
	if (vlan)
		goto out;

	vlan = kzalloc(sizeof(*vlan), GFP_ATOMIC);
	if (!vlan)
		goto out;

	atomic_set(&vlan->refcount, 2);
	vlan->vid = vid;

	list_add_rcu(&vlan->list, &orig_node->vlan_list);

out:
	spin_unlock_bh(&orig_node->vlan_list_lock);

	return vlan;
}

/**
 * batadv_orig_node_vlan_free_ref - decrement the refcounter and possibly free
 *  the originator-vlan object
 * @orig_vlan: the originator-vlan object to release
 */
void batadv_orig_node_vlan_free_ref(struct batadv_orig_node_vlan *orig_vlan)
{
	if (atomic_dec_and_test(&orig_vlan->refcount))
		kfree_rcu(orig_vlan, rcu);
}

127
int batadv_originator_init(struct batadv_priv *bat_priv)
128 129
{
	if (bat_priv->orig_hash)
130
		return 0;
131

132
	bat_priv->orig_hash = batadv_hash_new(1024);
133 134 135 136

	if (!bat_priv->orig_hash)
		goto err;

137 138 139
	batadv_hash_set_lock_class(bat_priv->orig_hash,
				   &batadv_orig_hash_lock_class_key);

140 141 142 143 144
	INIT_DELAYED_WORK(&bat_priv->orig_work, batadv_purge_orig);
	queue_delayed_work(batadv_event_workqueue,
			   &bat_priv->orig_work,
			   msecs_to_jiffies(BATADV_ORIG_WORK_PERIOD));

145
	return 0;
146 147

err:
148
	return -ENOMEM;
149 150
}

151
void batadv_neigh_node_free_ref(struct batadv_neigh_node *neigh_node)
152
{
153
	if (atomic_dec_and_test(&neigh_node->refcount))
154
		kfree_rcu(neigh_node, rcu);
155 156
}

157
/* increases the refcounter of a found router */
158 159
struct batadv_neigh_node *
batadv_orig_node_get_router(struct batadv_orig_node *orig_node)
160
{
161
	struct batadv_neigh_node *router;
162 163 164 165 166 167 168 169 170 171 172

	rcu_read_lock();
	router = rcu_dereference(orig_node->router);

	if (router && !atomic_inc_not_zero(&router->refcount))
		router = NULL;

	rcu_read_unlock();
	return router;
}

173 174 175 176 177 178 179 180 181
/**
 * batadv_neigh_node_new - create and init a new neigh_node object
 * @hard_iface: the interface where the neighbour is connected to
 * @neigh_addr: the mac address of the neighbour interface
 * @orig_node: originator object representing the neighbour
 *
 * Allocates a new neigh_node object and initialises all the generic fields.
 * Returns the new object or NULL on failure.
 */
182 183
struct batadv_neigh_node *
batadv_neigh_node_new(struct batadv_hard_iface *hard_iface,
184 185
		      const uint8_t *neigh_addr,
		      struct batadv_orig_node *orig_node)
186
{
187
	struct batadv_neigh_node *neigh_node;
188

189
	neigh_node = kzalloc(sizeof(*neigh_node), GFP_ATOMIC);
190
	if (!neigh_node)
191
		goto out;
192

193
	INIT_HLIST_NODE(&neigh_node->list);
194

195
	memcpy(neigh_node->addr, neigh_addr, ETH_ALEN);
196 197 198
	neigh_node->if_incoming = hard_iface;
	neigh_node->orig_node = orig_node;

199 200
	/* extra reference for return */
	atomic_set(&neigh_node->refcount, 2);
201

202
out:
203 204 205
	return neigh_node;
}

206
static void batadv_orig_node_free_rcu(struct rcu_head *rcu)
207
{
208
	struct hlist_node *node_tmp;
209
	struct batadv_neigh_node *neigh_node;
210
	struct batadv_orig_node *orig_node;
211

212
	orig_node = container_of(rcu, struct batadv_orig_node, rcu);
213

214 215
	spin_lock_bh(&orig_node->neigh_list_lock);

216
	/* for all neighbors towards this originator ... */
217
	hlist_for_each_entry_safe(neigh_node, node_tmp,
218
				  &orig_node->neigh_list, list) {
219
		hlist_del_rcu(&neigh_node->list);
220
		batadv_neigh_node_free_ref(neigh_node);
221 222
	}

223 224
	spin_unlock_bh(&orig_node->neigh_list_lock);

225 226 227
	/* Free nc_nodes */
	batadv_nc_purge_orig(orig_node->bat_priv, orig_node, NULL);

228 229
	batadv_frag_purge_orig(orig_node, NULL);

230
	batadv_tt_global_del_orig(orig_node->bat_priv, orig_node, -1,
231
				  "originator timed out");
232

233 234 235
	if (orig_node->bat_priv->bat_algo_ops->bat_orig_free)
		orig_node->bat_priv->bat_algo_ops->bat_orig_free(orig_node);

236
	kfree(orig_node->tt_buff);
237 238 239
	kfree(orig_node);
}

240 241 242 243 244
/**
 * batadv_orig_node_free_ref - decrement the orig node refcounter and possibly
 * schedule an rcu callback for freeing it
 * @orig_node: the orig node to free
 */
245
void batadv_orig_node_free_ref(struct batadv_orig_node *orig_node)
246 247
{
	if (atomic_dec_and_test(&orig_node->refcount))
248
		call_rcu(&orig_node->rcu, batadv_orig_node_free_rcu);
249 250
}

251 252 253 254 255 256 257 258 259 260 261
/**
 * batadv_orig_node_free_ref_now - decrement the orig node refcounter and
 * possibly free it (without rcu callback)
 * @orig_node: the orig node to free
 */
void batadv_orig_node_free_ref_now(struct batadv_orig_node *orig_node)
{
	if (atomic_dec_and_test(&orig_node->refcount))
		batadv_orig_node_free_rcu(&orig_node->rcu);
}

262
void batadv_originator_free(struct batadv_priv *bat_priv)
263
{
264
	struct batadv_hashtable *hash = bat_priv->orig_hash;
265
	struct hlist_node *node_tmp;
266 267
	struct hlist_head *head;
	spinlock_t *list_lock; /* spinlock to protect write access */
268
	struct batadv_orig_node *orig_node;
269
	uint32_t i;
270 271

	if (!hash)
272 273 274 275 276
		return;

	cancel_delayed_work_sync(&bat_priv->orig_work);

	bat_priv->orig_hash = NULL;
277 278 279 280 281 282

	for (i = 0; i < hash->size; i++) {
		head = &hash->table[i];
		list_lock = &hash->list_locks[i];

		spin_lock_bh(list_lock);
283
		hlist_for_each_entry_safe(orig_node, node_tmp,
284
					  head, hash_entry) {
285
			hlist_del_rcu(&orig_node->hash_entry);
286
			batadv_orig_node_free_ref(orig_node);
287 288 289 290
		}
		spin_unlock_bh(list_lock);
	}

291
	batadv_hash_destroy(hash);
292 293
}

294 295 296 297 298 299 300 301
/**
 * batadv_orig_node_new - creates a new orig_node
 * @bat_priv: the bat priv with all the soft interface information
 * @addr: the mac address of the originator
 *
 * Creates a new originator object and initialise all the generic fields.
 * The new object is not added to the originator list.
 * Returns the newly created object or NULL on failure.
302
 */
303
struct batadv_orig_node *batadv_orig_node_new(struct batadv_priv *bat_priv,
304
					      const uint8_t *addr)
305
{
306
	struct batadv_orig_node *orig_node;
307
	struct batadv_orig_node_vlan *vlan;
308
	unsigned long reset_time;
309
	int i;
310

311 312
	batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
		   "Creating new originator: %pM\n", addr);
313

314
	orig_node = kzalloc(sizeof(*orig_node), GFP_ATOMIC);
315 316 317
	if (!orig_node)
		return NULL;

318
	INIT_HLIST_HEAD(&orig_node->neigh_list);
319
	INIT_LIST_HEAD(&orig_node->vlan_list);
320
	spin_lock_init(&orig_node->bcast_seqno_lock);
321
	spin_lock_init(&orig_node->neigh_list_lock);
322
	spin_lock_init(&orig_node->tt_buff_lock);
323
	spin_lock_init(&orig_node->tt_lock);
324
	spin_lock_init(&orig_node->vlan_list_lock);
325

326 327
	batadv_nc_init_orig(orig_node);

328 329
	/* extra reference for return */
	atomic_set(&orig_node->refcount, 2);
330

331
	orig_node->tt_initialised = false;
332
	orig_node->bat_priv = bat_priv;
333
	memcpy(orig_node->orig, addr, ETH_ALEN);
334
	batadv_dat_init_orig_node_addr(orig_node);
335
	orig_node->router = NULL;
336
	atomic_set(&orig_node->last_ttvn, 0);
337
	orig_node->tt_buff = NULL;
338
	orig_node->tt_buff_len = 0;
339 340 341
	reset_time = jiffies - 1 - msecs_to_jiffies(BATADV_RESET_PROTECTION_MS);
	orig_node->bcast_seqno_reset = reset_time;
	orig_node->batman_seqno_reset = reset_time;
342

343 344 345 346 347 348 349 350 351 352
	/* create a vlan object for the "untagged" LAN */
	vlan = batadv_orig_node_vlan_new(orig_node, BATADV_NO_FLAGS);
	if (!vlan)
		goto free_orig_node;
	/* batadv_orig_node_vlan_new() increases the refcounter.
	 * Immediately release vlan since it is not needed anymore in this
	 * context
	 */
	batadv_orig_node_vlan_free_ref(vlan);

353 354 355 356 357 358
	for (i = 0; i < BATADV_FRAG_BUFFER_COUNT; i++) {
		INIT_HLIST_HEAD(&orig_node->fragments[i].head);
		spin_lock_init(&orig_node->fragments[i].lock);
		orig_node->fragments[i].size = 0;
	}

359 360 361 362 363 364
	return orig_node;
free_orig_node:
	kfree(orig_node);
	return NULL;
}

365 366 367
static bool
batadv_purge_orig_neighbors(struct batadv_priv *bat_priv,
			    struct batadv_orig_node *orig_node,
368
			    struct batadv_neigh_node **best_neigh)
369
{
370
	struct batadv_algo_ops *bao = bat_priv->bat_algo_ops;
371
	struct hlist_node *node_tmp;
372
	struct batadv_neigh_node *neigh_node;
373
	bool neigh_purged = false;
374
	unsigned long last_seen;
375
	struct batadv_hard_iface *if_incoming;
376

377
	*best_neigh = NULL;
378

379 380
	spin_lock_bh(&orig_node->neigh_list_lock);

381
	/* for all neighbors towards this originator ... */
382
	hlist_for_each_entry_safe(neigh_node, node_tmp,
383
				  &orig_node->neigh_list, list) {
384 385 386
		last_seen = neigh_node->last_seen;
		if_incoming = neigh_node->if_incoming;

387
		if ((batadv_has_timed_out(last_seen, BATADV_PURGE_TIMEOUT)) ||
388 389 390 391 392 393
		    (if_incoming->if_status == BATADV_IF_INACTIVE) ||
		    (if_incoming->if_status == BATADV_IF_NOT_IN_USE) ||
		    (if_incoming->if_status == BATADV_IF_TO_BE_REMOVED)) {
			if ((if_incoming->if_status == BATADV_IF_INACTIVE) ||
			    (if_incoming->if_status == BATADV_IF_NOT_IN_USE) ||
			    (if_incoming->if_status == BATADV_IF_TO_BE_REMOVED))
394
				batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
395 396 397
					   "neighbor purge: originator %pM, neighbor: %pM, iface: %s\n",
					   orig_node->orig, neigh_node->addr,
					   if_incoming->net_dev->name);
398
			else
399
				batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
400 401 402
					   "neighbor timeout: originator %pM, neighbor: %pM, last_seen: %u\n",
					   orig_node->orig, neigh_node->addr,
					   jiffies_to_msecs(last_seen));
403 404

			neigh_purged = true;
405

406
			hlist_del_rcu(&neigh_node->list);
407
			batadv_neigh_node_free_ref(neigh_node);
408
		} else {
409 410 411 412 413 414
			/* store the best_neighbour if this is the first
			 * iteration or if a better neighbor has been found
			 */
			if (!*best_neigh ||
			    bao->bat_neigh_cmp(neigh_node, *best_neigh) > 0)
				*best_neigh = neigh_node;
415 416
		}
	}
417 418

	spin_unlock_bh(&orig_node->neigh_list_lock);
419 420 421
	return neigh_purged;
}

422 423
static bool batadv_purge_orig_node(struct batadv_priv *bat_priv,
				   struct batadv_orig_node *orig_node)
424
{
425
	struct batadv_neigh_node *best_neigh_node;
426

427 428
	if (batadv_has_timed_out(orig_node->last_seen,
				 2 * BATADV_PURGE_TIMEOUT)) {
429
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
430 431 432
			   "Originator timeout: originator %pM, last_seen %u\n",
			   orig_node->orig,
			   jiffies_to_msecs(orig_node->last_seen));
433 434
		return true;
	} else {
435 436
		if (batadv_purge_orig_neighbors(bat_priv, orig_node,
						&best_neigh_node))
437 438
			batadv_update_route(bat_priv, orig_node,
					    best_neigh_node);
439 440 441 442 443
	}

	return false;
}

444
static void _batadv_purge_orig(struct batadv_priv *bat_priv)
445
{
446
	struct batadv_hashtable *hash = bat_priv->orig_hash;
447
	struct hlist_node *node_tmp;
448
	struct hlist_head *head;
449
	spinlock_t *list_lock; /* spinlock to protect write access */
450
	struct batadv_orig_node *orig_node;
451
	uint32_t i;
452 453 454 455 456 457 458

	if (!hash)
		return;

	/* for all origins... */
	for (i = 0; i < hash->size; i++) {
		head = &hash->table[i];
459
		list_lock = &hash->list_locks[i];
460

461
		spin_lock_bh(list_lock);
462
		hlist_for_each_entry_safe(orig_node, node_tmp,
463
					  head, hash_entry) {
464
			if (batadv_purge_orig_node(bat_priv, orig_node)) {
465
				batadv_gw_node_delete(bat_priv, orig_node);
466
				hlist_del_rcu(&orig_node->hash_entry);
467
				batadv_orig_node_free_ref(orig_node);
468
				continue;
469
			}
470 471 472

			batadv_frag_purge_orig(orig_node,
					       batadv_frag_check_entry);
473
		}
474
		spin_unlock_bh(list_lock);
475 476
	}

477 478
	batadv_gw_node_purge(bat_priv);
	batadv_gw_election(bat_priv);
479 480
}

481
static void batadv_purge_orig(struct work_struct *work)
482
{
483 484
	struct delayed_work *delayed_work;
	struct batadv_priv *bat_priv;
485

486 487
	delayed_work = container_of(work, struct delayed_work, work);
	bat_priv = container_of(delayed_work, struct batadv_priv, orig_work);
488
	_batadv_purge_orig(bat_priv);
489 490 491
	queue_delayed_work(batadv_event_workqueue,
			   &bat_priv->orig_work,
			   msecs_to_jiffies(BATADV_ORIG_WORK_PERIOD));
492 493
}

494
void batadv_purge_orig_ref(struct batadv_priv *bat_priv)
495
{
496
	_batadv_purge_orig(bat_priv);
497 498
}

499
int batadv_orig_seq_print_text(struct seq_file *seq, void *offset)
500 501
{
	struct net_device *net_dev = (struct net_device *)seq->private;
502 503
	struct batadv_priv *bat_priv = netdev_priv(net_dev);
	struct batadv_hard_iface *primary_if;
504

505 506
	primary_if = batadv_seq_print_text_primary_if_get(seq);
	if (!primary_if)
507
		return 0;
508

509
	seq_printf(seq, "[B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s %s)]\n",
510
		   BATADV_SOURCE_VERSION, primary_if->net_dev->name,
511 512
		   primary_if->net_dev->dev_addr, net_dev->name,
		   bat_priv->bat_algo_ops->name);
513

514
	batadv_hardif_free_ref(primary_if);
515

516 517 518 519
	if (!bat_priv->bat_algo_ops->bat_orig_print) {
		seq_puts(seq,
			 "No printing function for this routing protocol\n");
		return 0;
520 521
	}

522
	bat_priv->bat_algo_ops->bat_orig_print(bat_priv, seq);
523

524
	return 0;
525 526
}

527 528
int batadv_orig_hash_add_if(struct batadv_hard_iface *hard_iface,
			    int max_if_num)
529
{
530
	struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
531
	struct batadv_algo_ops *bao = bat_priv->bat_algo_ops;
532
	struct batadv_hashtable *hash = bat_priv->orig_hash;
533
	struct hlist_head *head;
534
	struct batadv_orig_node *orig_node;
535 536
	uint32_t i;
	int ret;
537 538

	/* resize all orig nodes because orig_node->bcast_own(_sum) depend on
539 540
	 * if_num
	 */
541 542 543
	for (i = 0; i < hash->size; i++) {
		head = &hash->table[i];

544
		rcu_read_lock();
545
		hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
546 547 548 549
			ret = 0;
			if (bao->bat_orig_add_if)
				ret = bao->bat_orig_add_if(orig_node,
							   max_if_num);
550
			if (ret == -ENOMEM)
551 552
				goto err;
		}
553
		rcu_read_unlock();
554 555 556 557 558
	}

	return 0;

err:
559
	rcu_read_unlock();
560 561 562
	return -ENOMEM;
}

563 564
int batadv_orig_hash_del_if(struct batadv_hard_iface *hard_iface,
			    int max_if_num)
565
{
566
	struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
567
	struct batadv_hashtable *hash = bat_priv->orig_hash;
568
	struct hlist_head *head;
569 570
	struct batadv_hard_iface *hard_iface_tmp;
	struct batadv_orig_node *orig_node;
571
	struct batadv_algo_ops *bao = bat_priv->bat_algo_ops;
572 573
	uint32_t i;
	int ret;
574 575

	/* resize all orig nodes because orig_node->bcast_own(_sum) depend on
576 577
	 * if_num
	 */
578 579 580
	for (i = 0; i < hash->size; i++) {
		head = &hash->table[i];

581
		rcu_read_lock();
582
		hlist_for_each_entry_rcu(orig_node, head, hash_entry) {
583 584 585 586 587
			ret = 0;
			if (bao->bat_orig_del_if)
				ret = bao->bat_orig_del_if(orig_node,
							   max_if_num,
							   hard_iface->if_num);
588
			if (ret == -ENOMEM)
589 590
				goto err;
		}
591
		rcu_read_unlock();
592 593 594 595
	}

	/* renumber remaining batman interfaces _inside_ of orig_hash_lock */
	rcu_read_lock();
596
	list_for_each_entry_rcu(hard_iface_tmp, &batadv_hardif_list, list) {
597
		if (hard_iface_tmp->if_status == BATADV_IF_NOT_IN_USE)
598 599
			continue;

600
		if (hard_iface == hard_iface_tmp)
601 602
			continue;

603
		if (hard_iface->soft_iface != hard_iface_tmp->soft_iface)
604 605
			continue;

606 607
		if (hard_iface_tmp->if_num > hard_iface->if_num)
			hard_iface_tmp->if_num--;
608 609 610
	}
	rcu_read_unlock();

611
	hard_iface->if_num = -1;
612 613 614
	return 0;

err:
615
	rcu_read_unlock();
616 617
	return -ENOMEM;
}