originator.c 17.1 KB
Newer Older
1
/* Copyright (C) 2009-2012 B.A.T.M.A.N. contributors:
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 *
 * 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
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301, USA
 */

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

32
static void batadv_purge_orig(struct work_struct *work);
33

34
static void batadv_start_purge_timer(struct batadv_priv *bat_priv)
35
{
36
	INIT_DELAYED_WORK(&bat_priv->orig_work, batadv_purge_orig);
37
	queue_delayed_work(batadv_event_workqueue,
38
			   &bat_priv->orig_work, msecs_to_jiffies(1000));
39 40
}

41
/* returns 1 if they are the same originator */
42
static int batadv_compare_orig(const struct hlist_node *node, const void *data2)
43
{
44 45
	const void *data1 = container_of(node, struct batadv_orig_node,
					 hash_entry);
46 47 48 49

	return (memcmp(data1, data2, ETH_ALEN) == 0 ? 1 : 0);
}

50
int batadv_originator_init(struct batadv_priv *bat_priv)
51 52
{
	if (bat_priv->orig_hash)
53
		return 0;
54

55
	bat_priv->orig_hash = batadv_hash_new(1024);
56 57 58 59

	if (!bat_priv->orig_hash)
		goto err;

60
	batadv_start_purge_timer(bat_priv);
61
	return 0;
62 63

err:
64
	return -ENOMEM;
65 66
}

67
void batadv_neigh_node_free_ref(struct batadv_neigh_node *neigh_node)
68
{
69
	if (atomic_dec_and_test(&neigh_node->refcount))
70
		kfree_rcu(neigh_node, rcu);
71 72
}

73
/* increases the refcounter of a found router */
74 75
struct batadv_neigh_node *
batadv_orig_node_get_router(struct batadv_orig_node *orig_node)
76
{
77
	struct batadv_neigh_node *router;
78 79 80 81 82 83 84 85 86 87 88

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

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

	rcu_read_unlock();
	return router;
}

89 90 91
struct batadv_neigh_node *
batadv_neigh_node_new(struct batadv_hard_iface *hard_iface,
		      const uint8_t *neigh_addr, uint32_t seqno)
92
{
93 94
	struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
	struct batadv_neigh_node *neigh_node;
95

96
	neigh_node = kzalloc(sizeof(*neigh_node), GFP_ATOMIC);
97
	if (!neigh_node)
98
		goto out;
99

100
	INIT_HLIST_NODE(&neigh_node->list);
101

102
	memcpy(neigh_node->addr, neigh_addr, ETH_ALEN);
103
	spin_lock_init(&neigh_node->lq_update_lock);
104 105 106

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

108
	batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
109 110
		   "Creating new neighbor %pM, initial seqno %d\n",
		   neigh_addr, seqno);
111 112

out:
113 114 115
	return neigh_node;
}

116
static void batadv_orig_node_free_rcu(struct rcu_head *rcu)
117
{
118
	struct hlist_node *node, *node_tmp;
119 120
	struct batadv_neigh_node *neigh_node, *tmp_neigh_node;
	struct batadv_orig_node *orig_node;
121

122
	orig_node = container_of(rcu, struct batadv_orig_node, rcu);
123

124 125
	spin_lock_bh(&orig_node->neigh_list_lock);

126 127 128 129
	/* for all bonding members ... */
	list_for_each_entry_safe(neigh_node, tmp_neigh_node,
				 &orig_node->bond_list, bonding_list) {
		list_del_rcu(&neigh_node->bonding_list);
130
		batadv_neigh_node_free_ref(neigh_node);
131 132
	}

133
	/* for all neighbors towards this originator ... */
134 135
	hlist_for_each_entry_safe(neigh_node, node, node_tmp,
				  &orig_node->neigh_list, list) {
136
		hlist_del_rcu(&neigh_node->list);
137
		batadv_neigh_node_free_ref(neigh_node);
138 139
	}

140 141
	spin_unlock_bh(&orig_node->neigh_list_lock);

142
	batadv_frag_list_free(&orig_node->frag_list);
143 144
	batadv_tt_global_del_orig(orig_node->bat_priv, orig_node,
				  "originator timed out");
145

146
	kfree(orig_node->tt_buff);
147 148 149 150 151
	kfree(orig_node->bcast_own);
	kfree(orig_node->bcast_own_sum);
	kfree(orig_node);
}

152
void batadv_orig_node_free_ref(struct batadv_orig_node *orig_node)
153 154
{
	if (atomic_dec_and_test(&orig_node->refcount))
155
		call_rcu(&orig_node->rcu, batadv_orig_node_free_rcu);
156 157
}

158
void batadv_originator_free(struct batadv_priv *bat_priv)
159
{
160
	struct batadv_hashtable *hash = bat_priv->orig_hash;
161
	struct hlist_node *node, *node_tmp;
162 163
	struct hlist_head *head;
	spinlock_t *list_lock; /* spinlock to protect write access */
164
	struct batadv_orig_node *orig_node;
165
	uint32_t i;
166 167

	if (!hash)
168 169 170 171 172
		return;

	cancel_delayed_work_sync(&bat_priv->orig_work);

	bat_priv->orig_hash = NULL;
173 174 175 176 177 178

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

		spin_lock_bh(list_lock);
179 180
		hlist_for_each_entry_safe(orig_node, node, node_tmp,
					  head, hash_entry) {
181

182
			hlist_del_rcu(node);
183
			batadv_orig_node_free_ref(orig_node);
184 185 186 187
		}
		spin_unlock_bh(list_lock);
	}

188
	batadv_hash_destroy(hash);
189 190 191
}

/* this function finds or creates an originator entry for the given
192 193
 * address if it does not exits
 */
194 195
struct batadv_orig_node *batadv_get_orig_node(struct batadv_priv *bat_priv,
					      const uint8_t *addr)
196
{
197
	struct batadv_orig_node *orig_node;
198 199
	int size;
	int hash_added;
200
	unsigned long reset_time;
201

202
	orig_node = batadv_orig_hash_find(bat_priv, addr);
203
	if (orig_node)
204 205
		return orig_node;

206 207
	batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
		   "Creating new originator: %pM\n", addr);
208

209
	orig_node = kzalloc(sizeof(*orig_node), GFP_ATOMIC);
210 211 212
	if (!orig_node)
		return NULL;

213
	INIT_HLIST_HEAD(&orig_node->neigh_list);
214
	INIT_LIST_HEAD(&orig_node->bond_list);
215
	spin_lock_init(&orig_node->ogm_cnt_lock);
216
	spin_lock_init(&orig_node->bcast_seqno_lock);
217
	spin_lock_init(&orig_node->neigh_list_lock);
218
	spin_lock_init(&orig_node->tt_buff_lock);
219 220 221

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

223
	orig_node->tt_initialised = false;
224
	orig_node->bat_priv = bat_priv;
225
	memcpy(orig_node->orig, addr, ETH_ALEN);
226
	batadv_dat_init_orig_node_addr(orig_node);
227
	orig_node->router = NULL;
228 229
	orig_node->tt_crc = 0;
	atomic_set(&orig_node->last_ttvn, 0);
230
	orig_node->tt_buff = NULL;
231 232
	orig_node->tt_buff_len = 0;
	atomic_set(&orig_node->tt_size, 0);
233 234 235
	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;
236

237 238
	atomic_set(&orig_node->bond_candidates, 0);

239
	size = bat_priv->num_ifaces * sizeof(unsigned long) * BATADV_NUM_WORDS;
240 241 242 243 244 245 246 247 248 249 250 251 252 253

	orig_node->bcast_own = kzalloc(size, GFP_ATOMIC);
	if (!orig_node->bcast_own)
		goto free_orig_node;

	size = bat_priv->num_ifaces * sizeof(uint8_t);
	orig_node->bcast_own_sum = kzalloc(size, GFP_ATOMIC);

	INIT_LIST_HEAD(&orig_node->frag_list);
	orig_node->last_frag_packet = 0;

	if (!orig_node->bcast_own_sum)
		goto free_bcast_own;

254
	hash_added = batadv_hash_add(bat_priv->orig_hash, batadv_compare_orig,
255
				     batadv_choose_orig, orig_node,
256
				     &orig_node->hash_entry);
257
	if (hash_added != 0)
258 259 260 261 262 263 264 265 266 267 268 269
		goto free_bcast_own_sum;

	return orig_node;
free_bcast_own_sum:
	kfree(orig_node->bcast_own_sum);
free_bcast_own:
	kfree(orig_node->bcast_own);
free_orig_node:
	kfree(orig_node);
	return NULL;
}

270 271 272 273
static bool
batadv_purge_orig_neighbors(struct batadv_priv *bat_priv,
			    struct batadv_orig_node *orig_node,
			    struct batadv_neigh_node **best_neigh_node)
274
{
275
	struct hlist_node *node, *node_tmp;
276
	struct batadv_neigh_node *neigh_node;
277
	bool neigh_purged = false;
278
	unsigned long last_seen;
279
	struct batadv_hard_iface *if_incoming;
280 281 282

	*best_neigh_node = NULL;

283 284
	spin_lock_bh(&orig_node->neigh_list_lock);

285
	/* for all neighbors towards this originator ... */
286 287
	hlist_for_each_entry_safe(neigh_node, node, node_tmp,
				  &orig_node->neigh_list, list) {
288

289 290 291
		last_seen = neigh_node->last_seen;
		if_incoming = neigh_node->if_incoming;

292
		if ((batadv_has_timed_out(last_seen, BATADV_PURGE_TIMEOUT)) ||
293 294 295
		    (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)) {
296

297 298 299
			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))
300
				batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
301 302 303
					   "neighbor purge: originator %pM, neighbor: %pM, iface: %s\n",
					   orig_node->orig, neigh_node->addr,
					   if_incoming->net_dev->name);
304
			else
305
				batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
306 307 308
					   "neighbor timeout: originator %pM, neighbor: %pM, last_seen: %u\n",
					   orig_node->orig, neigh_node->addr,
					   jiffies_to_msecs(last_seen));
309 310

			neigh_purged = true;
311

312
			hlist_del_rcu(&neigh_node->list);
313
			batadv_bonding_candidate_del(orig_node, neigh_node);
314
			batadv_neigh_node_free_ref(neigh_node);
315 316 317 318 319 320
		} else {
			if ((!*best_neigh_node) ||
			    (neigh_node->tq_avg > (*best_neigh_node)->tq_avg))
				*best_neigh_node = neigh_node;
		}
	}
321 322

	spin_unlock_bh(&orig_node->neigh_list_lock);
323 324 325
	return neigh_purged;
}

326 327
static bool batadv_purge_orig_node(struct batadv_priv *bat_priv,
				   struct batadv_orig_node *orig_node)
328
{
329
	struct batadv_neigh_node *best_neigh_node;
330

331 332
	if (batadv_has_timed_out(orig_node->last_seen,
				 2 * BATADV_PURGE_TIMEOUT)) {
333
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
334 335 336
			   "Originator timeout: originator %pM, last_seen %u\n",
			   orig_node->orig,
			   jiffies_to_msecs(orig_node->last_seen));
337 338
		return true;
	} else {
339 340
		if (batadv_purge_orig_neighbors(bat_priv, orig_node,
						&best_neigh_node))
341 342
			batadv_update_route(bat_priv, orig_node,
					    best_neigh_node);
343 344 345 346 347
	}

	return false;
}

348
static void _batadv_purge_orig(struct batadv_priv *bat_priv)
349
{
350
	struct batadv_hashtable *hash = bat_priv->orig_hash;
351
	struct hlist_node *node, *node_tmp;
352
	struct hlist_head *head;
353
	spinlock_t *list_lock; /* spinlock to protect write access */
354
	struct batadv_orig_node *orig_node;
355
	uint32_t i;
356 357 358 359 360 361 362

	if (!hash)
		return;

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

365
		spin_lock_bh(list_lock);
366 367
		hlist_for_each_entry_safe(orig_node, node, node_tmp,
					  head, hash_entry) {
368
			if (batadv_purge_orig_node(bat_priv, orig_node)) {
369
				if (orig_node->gw_flags)
370 371
					batadv_gw_node_delete(bat_priv,
							      orig_node);
372
				hlist_del_rcu(node);
373
				batadv_orig_node_free_ref(orig_node);
374
				continue;
375 376
			}

377
			if (batadv_has_timed_out(orig_node->last_frag_packet,
378
						 BATADV_FRAG_TIMEOUT))
379
				batadv_frag_list_free(&orig_node->frag_list);
380
		}
381
		spin_unlock_bh(list_lock);
382 383
	}

384 385
	batadv_gw_node_purge(bat_priv);
	batadv_gw_election(bat_priv);
386 387
}

388
static void batadv_purge_orig(struct work_struct *work)
389
{
390 391
	struct delayed_work *delayed_work;
	struct batadv_priv *bat_priv;
392

393 394
	delayed_work = container_of(work, struct delayed_work, work);
	bat_priv = container_of(delayed_work, struct batadv_priv, orig_work);
395 396
	_batadv_purge_orig(bat_priv);
	batadv_start_purge_timer(bat_priv);
397 398
}

399
void batadv_purge_orig_ref(struct batadv_priv *bat_priv)
400
{
401
	_batadv_purge_orig(bat_priv);
402 403
}

404
int batadv_orig_seq_print_text(struct seq_file *seq, void *offset)
405 406
{
	struct net_device *net_dev = (struct net_device *)seq->private;
407
	struct batadv_priv *bat_priv = netdev_priv(net_dev);
408
	struct batadv_hashtable *hash = bat_priv->orig_hash;
409
	struct hlist_node *node, *node_tmp;
410
	struct hlist_head *head;
411 412 413
	struct batadv_hard_iface *primary_if;
	struct batadv_orig_node *orig_node;
	struct batadv_neigh_node *neigh_node, *neigh_node_tmp;
414 415 416
	int batman_count = 0;
	int last_seen_secs;
	int last_seen_msecs;
417
	unsigned long last_seen_jiffies;
418
	uint32_t i;
419

420 421
	primary_if = batadv_seq_print_text_primary_if_get(seq);
	if (!primary_if)
422
		goto out;
423

424
	seq_printf(seq, "[B.A.T.M.A.N. adv %s, MainIF/MAC: %s/%pM (%s)]\n",
425
		   BATADV_SOURCE_VERSION, primary_if->net_dev->name,
426
		   primary_if->net_dev->dev_addr, net_dev->name);
427
	seq_printf(seq, "  %-15s %s (%s/%i) %17s [%10s]: %20s ...\n",
428 429
		   "Originator", "last-seen", "#", BATADV_TQ_MAX_VALUE,
		   "Nexthop", "outgoingIF", "Potential nexthops");
430 431 432 433

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

434
		rcu_read_lock();
435
		hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
436
			neigh_node = batadv_orig_node_get_router(orig_node);
437
			if (!neigh_node)
438 439
				continue;

440 441
			if (neigh_node->tq_avg == 0)
				goto next;
442

443 444 445 446
			last_seen_jiffies = jiffies - orig_node->last_seen;
			last_seen_msecs = jiffies_to_msecs(last_seen_jiffies);
			last_seen_secs = last_seen_msecs / 1000;
			last_seen_msecs = last_seen_msecs % 1000;
447 448 449 450 451 452 453

			seq_printf(seq, "%pM %4i.%03is   (%3i) %pM [%10s]:",
				   orig_node->orig, last_seen_secs,
				   last_seen_msecs, neigh_node->tq_avg,
				   neigh_node->addr,
				   neigh_node->if_incoming->net_dev->name);

454
			hlist_for_each_entry_rcu(neigh_node_tmp, node_tmp,
455
						 &orig_node->neigh_list, list) {
456 457 458
				seq_printf(seq, " %pM (%3i)",
					   neigh_node_tmp->addr,
					   neigh_node_tmp->tq_avg);
459 460 461 462
			}

			seq_printf(seq, "\n");
			batman_count++;
463 464

next:
465
			batadv_neigh_node_free_ref(neigh_node);
466
		}
467
		rcu_read_unlock();
468 469
	}

470
	if (batman_count == 0)
471 472
		seq_printf(seq, "No batman nodes in range ...\n");

473 474
out:
	if (primary_if)
475
		batadv_hardif_free_ref(primary_if);
476
	return 0;
477 478
}

479 480
static int batadv_orig_node_add_if(struct batadv_orig_node *orig_node,
				   int max_if_num)
481 482
{
	void *data_ptr;
483
	size_t data_size, old_size;
484

485 486 487
	data_size = max_if_num * sizeof(unsigned long) * BATADV_NUM_WORDS;
	old_size = (max_if_num - 1) * sizeof(unsigned long) * BATADV_NUM_WORDS;
	data_ptr = kmalloc(data_size, GFP_ATOMIC);
488
	if (!data_ptr)
489
		return -ENOMEM;
490

491
	memcpy(data_ptr, orig_node->bcast_own, old_size);
492 493 494 495
	kfree(orig_node->bcast_own);
	orig_node->bcast_own = data_ptr;

	data_ptr = kmalloc(max_if_num * sizeof(uint8_t), GFP_ATOMIC);
496
	if (!data_ptr)
497
		return -ENOMEM;
498 499 500 501 502 503 504 505 506

	memcpy(data_ptr, orig_node->bcast_own_sum,
	       (max_if_num - 1) * sizeof(uint8_t));
	kfree(orig_node->bcast_own_sum);
	orig_node->bcast_own_sum = data_ptr;

	return 0;
}

507 508
int batadv_orig_hash_add_if(struct batadv_hard_iface *hard_iface,
			    int max_if_num)
509
{
510
	struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
511
	struct batadv_hashtable *hash = bat_priv->orig_hash;
512
	struct hlist_node *node;
513
	struct hlist_head *head;
514
	struct batadv_orig_node *orig_node;
515 516
	uint32_t i;
	int ret;
517 518

	/* resize all orig nodes because orig_node->bcast_own(_sum) depend on
519 520
	 * if_num
	 */
521 522 523
	for (i = 0; i < hash->size; i++) {
		head = &hash->table[i];

524
		rcu_read_lock();
525
		hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
526
			spin_lock_bh(&orig_node->ogm_cnt_lock);
527
			ret = batadv_orig_node_add_if(orig_node, max_if_num);
528 529
			spin_unlock_bh(&orig_node->ogm_cnt_lock);

530
			if (ret == -ENOMEM)
531 532
				goto err;
		}
533
		rcu_read_unlock();
534 535 536 537 538
	}

	return 0;

err:
539
	rcu_read_unlock();
540 541 542
	return -ENOMEM;
}

543
static int batadv_orig_node_del_if(struct batadv_orig_node *orig_node,
544
				   int max_if_num, int del_if_num)
545 546 547 548 549 550 551 552
{
	void *data_ptr = NULL;
	int chunk_size;

	/* last interface was removed */
	if (max_if_num == 0)
		goto free_bcast_own;

553
	chunk_size = sizeof(unsigned long) * BATADV_NUM_WORDS;
554
	data_ptr = kmalloc(max_if_num * chunk_size, GFP_ATOMIC);
555
	if (!data_ptr)
556
		return -ENOMEM;
557 558 559 560 561

	/* copy first part */
	memcpy(data_ptr, orig_node->bcast_own, del_if_num * chunk_size);

	/* copy second part */
562
	memcpy((char *)data_ptr + del_if_num * chunk_size,
563 564 565 566 567 568 569 570 571 572 573
	       orig_node->bcast_own + ((del_if_num + 1) * chunk_size),
	       (max_if_num - del_if_num) * chunk_size);

free_bcast_own:
	kfree(orig_node->bcast_own);
	orig_node->bcast_own = data_ptr;

	if (max_if_num == 0)
		goto free_own_sum;

	data_ptr = kmalloc(max_if_num * sizeof(uint8_t), GFP_ATOMIC);
574
	if (!data_ptr)
575
		return -ENOMEM;
576 577 578 579

	memcpy(data_ptr, orig_node->bcast_own_sum,
	       del_if_num * sizeof(uint8_t));

580
	memcpy((char *)data_ptr + del_if_num * sizeof(uint8_t),
581 582 583 584 585 586 587 588 589 590
	       orig_node->bcast_own_sum + ((del_if_num + 1) * sizeof(uint8_t)),
	       (max_if_num - del_if_num) * sizeof(uint8_t));

free_own_sum:
	kfree(orig_node->bcast_own_sum);
	orig_node->bcast_own_sum = data_ptr;

	return 0;
}

591 592
int batadv_orig_hash_del_if(struct batadv_hard_iface *hard_iface,
			    int max_if_num)
593
{
594
	struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
595
	struct batadv_hashtable *hash = bat_priv->orig_hash;
596
	struct hlist_node *node;
597
	struct hlist_head *head;
598 599
	struct batadv_hard_iface *hard_iface_tmp;
	struct batadv_orig_node *orig_node;
600 601
	uint32_t i;
	int ret;
602 603

	/* resize all orig nodes because orig_node->bcast_own(_sum) depend on
604 605
	 * if_num
	 */
606 607 608
	for (i = 0; i < hash->size; i++) {
		head = &hash->table[i];

609
		rcu_read_lock();
610
		hlist_for_each_entry_rcu(orig_node, node, head, hash_entry) {
611
			spin_lock_bh(&orig_node->ogm_cnt_lock);
612 613
			ret = batadv_orig_node_del_if(orig_node, max_if_num,
						      hard_iface->if_num);
614
			spin_unlock_bh(&orig_node->ogm_cnt_lock);
615

616
			if (ret == -ENOMEM)
617 618
				goto err;
		}
619
		rcu_read_unlock();
620 621 622 623
	}

	/* renumber remaining batman interfaces _inside_ of orig_hash_lock */
	rcu_read_lock();
624
	list_for_each_entry_rcu(hard_iface_tmp, &batadv_hardif_list, list) {
625
		if (hard_iface_tmp->if_status == BATADV_IF_NOT_IN_USE)
626 627
			continue;

628
		if (hard_iface == hard_iface_tmp)
629 630
			continue;

631
		if (hard_iface->soft_iface != hard_iface_tmp->soft_iface)
632 633
			continue;

634 635
		if (hard_iface_tmp->if_num > hard_iface->if_num)
			hard_iface_tmp->if_num--;
636 637 638
	}
	rcu_read_unlock();

639
	hard_iface->if_num = -1;
640 641 642
	return 0;

err:
643
	rcu_read_unlock();
644 645
	return -ENOMEM;
}