Linux Audio

Check our new training course

Loading...
v4.6
 
  1/*
  2 * net/core/dev_addr_lists.c - Functions for handling net device lists
  3 * Copyright (c) 2010 Jiri Pirko <jpirko@redhat.com>
  4 *
  5 * This file contains functions for working with unicast, multicast and device
  6 * addresses lists.
  7 *
  8 * This program is free software; you can redistribute it and/or modify
  9 * it under the terms of the GNU General Public License as published by
 10 * the Free Software Foundation; either version 2 of the License, or
 11 * (at your option) any later version.
 12 */
 13
 14#include <linux/netdevice.h>
 15#include <linux/rtnetlink.h>
 16#include <linux/export.h>
 17#include <linux/list.h>
 18
 
 
 19/*
 20 * General list handling functions
 21 */
 22
 23static int __hw_addr_create_ex(struct netdev_hw_addr_list *list,
 24			       const unsigned char *addr, int addr_len,
 25			       unsigned char addr_type, bool global,
 26			       bool sync)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 27{
 28	struct netdev_hw_addr *ha;
 29	int alloc_size;
 30
 31	alloc_size = sizeof(*ha);
 32	if (alloc_size < L1_CACHE_BYTES)
 33		alloc_size = L1_CACHE_BYTES;
 34	ha = kmalloc(alloc_size, GFP_ATOMIC);
 35	if (!ha)
 36		return -ENOMEM;
 37	memcpy(ha->addr, addr, addr_len);
 38	ha->type = addr_type;
 39	ha->refcount = 1;
 40	ha->global_use = global;
 41	ha->synced = sync ? 1 : 0;
 42	ha->sync_cnt = 0;
 43	list_add_tail_rcu(&ha->list, &list->list);
 44	list->count++;
 45
 46	return 0;
 47}
 48
 49static int __hw_addr_add_ex(struct netdev_hw_addr_list *list,
 50			    const unsigned char *addr, int addr_len,
 51			    unsigned char addr_type, bool global, bool sync,
 52			    int sync_count)
 53{
 
 54	struct netdev_hw_addr *ha;
 55
 56	if (addr_len > MAX_ADDR_LEN)
 57		return -EINVAL;
 58
 59	list_for_each_entry(ha, &list->list, list) {
 60		if (!memcmp(ha->addr, addr, addr_len) &&
 61		    ha->type == addr_type) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 62			if (global) {
 63				/* check if addr is already used as global */
 64				if (ha->global_use)
 65					return 0;
 66				else
 67					ha->global_use = true;
 68			}
 69			if (sync) {
 70				if (ha->synced && sync_count)
 71					return -EEXIST;
 72				else
 73					ha->synced++;
 74			}
 75			ha->refcount++;
 76			return 0;
 77		}
 78	}
 79
 80	return __hw_addr_create_ex(list, addr, addr_len, addr_type, global,
 81				   sync);
 
 
 
 
 
 
 
 
 
 82}
 83
 84static int __hw_addr_add(struct netdev_hw_addr_list *list,
 85			 const unsigned char *addr, int addr_len,
 86			 unsigned char addr_type)
 87{
 88	return __hw_addr_add_ex(list, addr, addr_len, addr_type, false, false,
 89				0);
 90}
 91
 92static int __hw_addr_del_entry(struct netdev_hw_addr_list *list,
 93			       struct netdev_hw_addr *ha, bool global,
 94			       bool sync)
 95{
 96	if (global && !ha->global_use)
 97		return -ENOENT;
 98
 99	if (sync && !ha->synced)
100		return -ENOENT;
101
102	if (global)
103		ha->global_use = false;
104
105	if (sync)
106		ha->synced--;
107
108	if (--ha->refcount)
109		return 0;
 
 
 
110	list_del_rcu(&ha->list);
111	kfree_rcu(ha, rcu_head);
112	list->count--;
113	return 0;
114}
115
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116static int __hw_addr_del_ex(struct netdev_hw_addr_list *list,
117			    const unsigned char *addr, int addr_len,
118			    unsigned char addr_type, bool global, bool sync)
119{
120	struct netdev_hw_addr *ha;
121
122	list_for_each_entry(ha, &list->list, list) {
123		if (!memcmp(ha->addr, addr, addr_len) &&
124		    (ha->type == addr_type || !addr_type))
125			return __hw_addr_del_entry(list, ha, global, sync);
126	}
127	return -ENOENT;
128}
129
130static int __hw_addr_del(struct netdev_hw_addr_list *list,
131			 const unsigned char *addr, int addr_len,
132			 unsigned char addr_type)
133{
134	return __hw_addr_del_ex(list, addr, addr_len, addr_type, false, false);
135}
136
137static int __hw_addr_sync_one(struct netdev_hw_addr_list *to_list,
138			       struct netdev_hw_addr *ha,
139			       int addr_len)
140{
141	int err;
142
143	err = __hw_addr_add_ex(to_list, ha->addr, addr_len, ha->type,
144			       false, true, ha->sync_cnt);
145	if (err && err != -EEXIST)
146		return err;
147
148	if (!err) {
149		ha->sync_cnt++;
150		ha->refcount++;
151	}
152
153	return 0;
154}
155
156static void __hw_addr_unsync_one(struct netdev_hw_addr_list *to_list,
157				 struct netdev_hw_addr_list *from_list,
158				 struct netdev_hw_addr *ha,
159				 int addr_len)
160{
161	int err;
162
163	err = __hw_addr_del_ex(to_list, ha->addr, addr_len, ha->type,
164			       false, true);
165	if (err)
166		return;
167	ha->sync_cnt--;
168	/* address on from list is not marked synced */
169	__hw_addr_del_entry(from_list, ha, false, false);
170}
171
172static int __hw_addr_sync_multiple(struct netdev_hw_addr_list *to_list,
173				   struct netdev_hw_addr_list *from_list,
174				   int addr_len)
175{
176	int err = 0;
177	struct netdev_hw_addr *ha, *tmp;
178
179	list_for_each_entry_safe(ha, tmp, &from_list->list, list) {
180		if (ha->sync_cnt == ha->refcount) {
181			__hw_addr_unsync_one(to_list, from_list, ha, addr_len);
182		} else {
183			err = __hw_addr_sync_one(to_list, ha, addr_len);
184			if (err)
185				break;
186		}
187	}
188	return err;
189}
190
191/* This function only works where there is a strict 1-1 relationship
192 * between source and destionation of they synch. If you ever need to
193 * sync addresses to more then 1 destination, you need to use
194 * __hw_addr_sync_multiple().
195 */
196int __hw_addr_sync(struct netdev_hw_addr_list *to_list,
197		   struct netdev_hw_addr_list *from_list,
198		   int addr_len)
199{
200	int err = 0;
201	struct netdev_hw_addr *ha, *tmp;
202
203	list_for_each_entry_safe(ha, tmp, &from_list->list, list) {
204		if (!ha->sync_cnt) {
205			err = __hw_addr_sync_one(to_list, ha, addr_len);
206			if (err)
207				break;
208		} else if (ha->refcount == 1)
209			__hw_addr_unsync_one(to_list, from_list, ha, addr_len);
210	}
211	return err;
212}
213EXPORT_SYMBOL(__hw_addr_sync);
214
215void __hw_addr_unsync(struct netdev_hw_addr_list *to_list,
216		      struct netdev_hw_addr_list *from_list,
217		      int addr_len)
218{
219	struct netdev_hw_addr *ha, *tmp;
220
221	list_for_each_entry_safe(ha, tmp, &from_list->list, list) {
222		if (ha->sync_cnt)
223			__hw_addr_unsync_one(to_list, from_list, ha, addr_len);
224	}
225}
226EXPORT_SYMBOL(__hw_addr_unsync);
227
228/**
229 *  __hw_addr_sync_dev - Synchonize device's multicast list
230 *  @list: address list to syncronize
231 *  @dev:  device to sync
232 *  @sync: function to call if address should be added
233 *  @unsync: function to call if address should be removed
234 *
235 *  This funciton is intended to be called from the ndo_set_rx_mode
236 *  function of devices that require explicit address add/remove
237 *  notifications.  The unsync function may be NULL in which case
238 *  the addresses requiring removal will simply be removed without
239 *  any notification to the device.
240 **/
241int __hw_addr_sync_dev(struct netdev_hw_addr_list *list,
242		       struct net_device *dev,
243		       int (*sync)(struct net_device *, const unsigned char *),
244		       int (*unsync)(struct net_device *,
245				     const unsigned char *))
246{
247	struct netdev_hw_addr *ha, *tmp;
248	int err;
249
250	/* first go through and flush out any stale entries */
251	list_for_each_entry_safe(ha, tmp, &list->list, list) {
252		if (!ha->sync_cnt || ha->refcount != 1)
253			continue;
254
255		/* if unsync is defined and fails defer unsyncing address */
256		if (unsync && unsync(dev, ha->addr))
257			continue;
258
259		ha->sync_cnt--;
260		__hw_addr_del_entry(list, ha, false, false);
261	}
262
263	/* go through and sync new entries to the list */
264	list_for_each_entry_safe(ha, tmp, &list->list, list) {
265		if (ha->sync_cnt)
266			continue;
267
268		err = sync(dev, ha->addr);
269		if (err)
270			return err;
271
272		ha->sync_cnt++;
273		ha->refcount++;
274	}
275
276	return 0;
277}
278EXPORT_SYMBOL(__hw_addr_sync_dev);
279
280/**
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
281 *  __hw_addr_unsync_dev - Remove synchronized addresses from device
282 *  @list: address list to remove synchronized addresses from
283 *  @dev:  device to sync
284 *  @unsync: function to call if address should be removed
285 *
286 *  Remove all addresses that were added to the device by __hw_addr_sync_dev().
287 *  This function is intended to be called from the ndo_stop or ndo_open
288 *  functions on devices that require explicit address add/remove
289 *  notifications.  If the unsync function pointer is NULL then this function
290 *  can be used to just reset the sync_cnt for the addresses in the list.
291 **/
292void __hw_addr_unsync_dev(struct netdev_hw_addr_list *list,
293			  struct net_device *dev,
294			  int (*unsync)(struct net_device *,
295					const unsigned char *))
296{
297	struct netdev_hw_addr *ha, *tmp;
298
299	list_for_each_entry_safe(ha, tmp, &list->list, list) {
300		if (!ha->sync_cnt)
301			continue;
302
303		/* if unsync is defined and fails defer unsyncing address */
304		if (unsync && unsync(dev, ha->addr))
305			continue;
306
307		ha->sync_cnt--;
308		__hw_addr_del_entry(list, ha, false, false);
309	}
310}
311EXPORT_SYMBOL(__hw_addr_unsync_dev);
312
313static void __hw_addr_flush(struct netdev_hw_addr_list *list)
314{
315	struct netdev_hw_addr *ha, *tmp;
316
 
317	list_for_each_entry_safe(ha, tmp, &list->list, list) {
318		list_del_rcu(&ha->list);
319		kfree_rcu(ha, rcu_head);
320	}
321	list->count = 0;
322}
323
324void __hw_addr_init(struct netdev_hw_addr_list *list)
325{
326	INIT_LIST_HEAD(&list->list);
327	list->count = 0;
 
328}
329EXPORT_SYMBOL(__hw_addr_init);
330
331/*
332 * Device addresses handling functions
333 */
334
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
335/**
336 *	dev_addr_flush - Flush device address list
337 *	@dev: device
338 *
339 *	Flush device address list and reset ->dev_addr.
340 *
341 *	The caller must hold the rtnl_mutex.
342 */
343void dev_addr_flush(struct net_device *dev)
344{
345	/* rtnl_mutex must be held here */
 
346
347	__hw_addr_flush(&dev->dev_addrs);
348	dev->dev_addr = NULL;
349}
350EXPORT_SYMBOL(dev_addr_flush);
351
352/**
353 *	dev_addr_init - Init device address list
354 *	@dev: device
355 *
356 *	Init device address list and create the first element,
357 *	used by ->dev_addr.
358 *
359 *	The caller must hold the rtnl_mutex.
360 */
361int dev_addr_init(struct net_device *dev)
362{
363	unsigned char addr[MAX_ADDR_LEN];
364	struct netdev_hw_addr *ha;
365	int err;
366
367	/* rtnl_mutex must be held here */
368
369	__hw_addr_init(&dev->dev_addrs);
370	memset(addr, 0, sizeof(addr));
371	err = __hw_addr_add(&dev->dev_addrs, addr, sizeof(addr),
372			    NETDEV_HW_ADDR_T_LAN);
373	if (!err) {
374		/*
375		 * Get the first (previously created) address from the list
376		 * and set dev_addr pointer to this location.
377		 */
378		ha = list_first_entry(&dev->dev_addrs.list,
379				      struct netdev_hw_addr, list);
380		dev->dev_addr = ha->addr;
381	}
382	return err;
383}
384EXPORT_SYMBOL(dev_addr_init);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
385
386/**
387 *	dev_addr_add - Add a device address
388 *	@dev: device
389 *	@addr: address to add
390 *	@addr_type: address type
391 *
392 *	Add a device address to the device or increase the reference count if
393 *	it already exists.
394 *
395 *	The caller must hold the rtnl_mutex.
396 */
397int dev_addr_add(struct net_device *dev, const unsigned char *addr,
398		 unsigned char addr_type)
399{
400	int err;
401
402	ASSERT_RTNL();
403
 
 
 
404	err = __hw_addr_add(&dev->dev_addrs, addr, dev->addr_len, addr_type);
405	if (!err)
406		call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
407	return err;
408}
409EXPORT_SYMBOL(dev_addr_add);
410
411/**
412 *	dev_addr_del - Release a device address.
413 *	@dev: device
414 *	@addr: address to delete
415 *	@addr_type: address type
416 *
417 *	Release reference to a device address and remove it from the device
418 *	if the reference count drops to zero.
419 *
420 *	The caller must hold the rtnl_mutex.
421 */
422int dev_addr_del(struct net_device *dev, const unsigned char *addr,
423		 unsigned char addr_type)
424{
425	int err;
426	struct netdev_hw_addr *ha;
427
428	ASSERT_RTNL();
429
430	/*
431	 * We can not remove the first address from the list because
432	 * dev->dev_addr points to that.
433	 */
434	ha = list_first_entry(&dev->dev_addrs.list,
435			      struct netdev_hw_addr, list);
436	if (!memcmp(ha->addr, addr, dev->addr_len) &&
437	    ha->type == addr_type && ha->refcount == 1)
438		return -ENOENT;
439
440	err = __hw_addr_del(&dev->dev_addrs, addr, dev->addr_len,
441			    addr_type);
442	if (!err)
443		call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
444	return err;
445}
446EXPORT_SYMBOL(dev_addr_del);
447
448/*
449 * Unicast list handling functions
450 */
451
452/**
453 *	dev_uc_add_excl - Add a global secondary unicast address
454 *	@dev: device
455 *	@addr: address to add
456 */
457int dev_uc_add_excl(struct net_device *dev, const unsigned char *addr)
458{
459	struct netdev_hw_addr *ha;
460	int err;
461
462	netif_addr_lock_bh(dev);
463	list_for_each_entry(ha, &dev->uc.list, list) {
464		if (!memcmp(ha->addr, addr, dev->addr_len) &&
465		    ha->type == NETDEV_HW_ADDR_T_UNICAST) {
466			err = -EEXIST;
467			goto out;
468		}
469	}
470	err = __hw_addr_create_ex(&dev->uc, addr, dev->addr_len,
471				  NETDEV_HW_ADDR_T_UNICAST, true, false);
472	if (!err)
473		__dev_set_rx_mode(dev);
474out:
475	netif_addr_unlock_bh(dev);
476	return err;
477}
478EXPORT_SYMBOL(dev_uc_add_excl);
479
480/**
481 *	dev_uc_add - Add a secondary unicast address
482 *	@dev: device
483 *	@addr: address to add
484 *
485 *	Add a secondary unicast address to the device or increase
486 *	the reference count if it already exists.
487 */
488int dev_uc_add(struct net_device *dev, const unsigned char *addr)
489{
490	int err;
491
492	netif_addr_lock_bh(dev);
493	err = __hw_addr_add(&dev->uc, addr, dev->addr_len,
494			    NETDEV_HW_ADDR_T_UNICAST);
495	if (!err)
496		__dev_set_rx_mode(dev);
497	netif_addr_unlock_bh(dev);
498	return err;
499}
500EXPORT_SYMBOL(dev_uc_add);
501
502/**
503 *	dev_uc_del - Release secondary unicast address.
504 *	@dev: device
505 *	@addr: address to delete
506 *
507 *	Release reference to a secondary unicast address and remove it
508 *	from the device if the reference count drops to zero.
509 */
510int dev_uc_del(struct net_device *dev, const unsigned char *addr)
511{
512	int err;
513
514	netif_addr_lock_bh(dev);
515	err = __hw_addr_del(&dev->uc, addr, dev->addr_len,
516			    NETDEV_HW_ADDR_T_UNICAST);
517	if (!err)
518		__dev_set_rx_mode(dev);
519	netif_addr_unlock_bh(dev);
520	return err;
521}
522EXPORT_SYMBOL(dev_uc_del);
523
524/**
525 *	dev_uc_sync - Synchronize device's unicast list to another device
526 *	@to: destination device
527 *	@from: source device
528 *
529 *	Add newly added addresses to the destination device and release
530 *	addresses that have no users left. The source device must be
531 *	locked by netif_addr_lock_bh.
532 *
533 *	This function is intended to be called from the dev->set_rx_mode
534 *	function of layered software devices.  This function assumes that
535 *	addresses will only ever be synced to the @to devices and no other.
536 */
537int dev_uc_sync(struct net_device *to, struct net_device *from)
538{
539	int err = 0;
540
541	if (to->addr_len != from->addr_len)
542		return -EINVAL;
543
544	netif_addr_lock_nested(to);
545	err = __hw_addr_sync(&to->uc, &from->uc, to->addr_len);
546	if (!err)
547		__dev_set_rx_mode(to);
548	netif_addr_unlock(to);
549	return err;
550}
551EXPORT_SYMBOL(dev_uc_sync);
552
553/**
554 *	dev_uc_sync_multiple - Synchronize device's unicast list to another
555 *	device, but allow for multiple calls to sync to multiple devices.
556 *	@to: destination device
557 *	@from: source device
558 *
559 *	Add newly added addresses to the destination device and release
560 *	addresses that have been deleted from the source. The source device
561 *	must be locked by netif_addr_lock_bh.
562 *
563 *	This function is intended to be called from the dev->set_rx_mode
564 *	function of layered software devices.  It allows for a single source
565 *	device to be synced to multiple destination devices.
566 */
567int dev_uc_sync_multiple(struct net_device *to, struct net_device *from)
568{
569	int err = 0;
570
571	if (to->addr_len != from->addr_len)
572		return -EINVAL;
573
574	netif_addr_lock_nested(to);
575	err = __hw_addr_sync_multiple(&to->uc, &from->uc, to->addr_len);
576	if (!err)
577		__dev_set_rx_mode(to);
578	netif_addr_unlock(to);
579	return err;
580}
581EXPORT_SYMBOL(dev_uc_sync_multiple);
582
583/**
584 *	dev_uc_unsync - Remove synchronized addresses from the destination device
585 *	@to: destination device
586 *	@from: source device
587 *
588 *	Remove all addresses that were added to the destination device by
589 *	dev_uc_sync(). This function is intended to be called from the
590 *	dev->stop function of layered software devices.
591 */
592void dev_uc_unsync(struct net_device *to, struct net_device *from)
593{
594	if (to->addr_len != from->addr_len)
595		return;
596
 
 
 
 
 
 
 
 
 
597	netif_addr_lock_bh(from);
598	netif_addr_lock_nested(to);
599	__hw_addr_unsync(&to->uc, &from->uc, to->addr_len);
600	__dev_set_rx_mode(to);
601	netif_addr_unlock(to);
602	netif_addr_unlock_bh(from);
603}
604EXPORT_SYMBOL(dev_uc_unsync);
605
606/**
607 *	dev_uc_flush - Flush unicast addresses
608 *	@dev: device
609 *
610 *	Flush unicast addresses.
611 */
612void dev_uc_flush(struct net_device *dev)
613{
614	netif_addr_lock_bh(dev);
615	__hw_addr_flush(&dev->uc);
616	netif_addr_unlock_bh(dev);
617}
618EXPORT_SYMBOL(dev_uc_flush);
619
620/**
621 *	dev_uc_flush - Init unicast address list
622 *	@dev: device
623 *
624 *	Init unicast address list.
625 */
626void dev_uc_init(struct net_device *dev)
627{
628	__hw_addr_init(&dev->uc);
629}
630EXPORT_SYMBOL(dev_uc_init);
631
632/*
633 * Multicast list handling functions
634 */
635
636/**
637 *	dev_mc_add_excl - Add a global secondary multicast address
638 *	@dev: device
639 *	@addr: address to add
640 */
641int dev_mc_add_excl(struct net_device *dev, const unsigned char *addr)
642{
643	struct netdev_hw_addr *ha;
644	int err;
645
646	netif_addr_lock_bh(dev);
647	list_for_each_entry(ha, &dev->mc.list, list) {
648		if (!memcmp(ha->addr, addr, dev->addr_len) &&
649		    ha->type == NETDEV_HW_ADDR_T_MULTICAST) {
650			err = -EEXIST;
651			goto out;
652		}
653	}
654	err = __hw_addr_create_ex(&dev->mc, addr, dev->addr_len,
655				  NETDEV_HW_ADDR_T_MULTICAST, true, false);
656	if (!err)
657		__dev_set_rx_mode(dev);
658out:
659	netif_addr_unlock_bh(dev);
660	return err;
661}
662EXPORT_SYMBOL(dev_mc_add_excl);
663
664static int __dev_mc_add(struct net_device *dev, const unsigned char *addr,
665			bool global)
666{
667	int err;
668
669	netif_addr_lock_bh(dev);
670	err = __hw_addr_add_ex(&dev->mc, addr, dev->addr_len,
671			       NETDEV_HW_ADDR_T_MULTICAST, global, false, 0);
 
672	if (!err)
673		__dev_set_rx_mode(dev);
674	netif_addr_unlock_bh(dev);
675	return err;
676}
677/**
678 *	dev_mc_add - Add a multicast address
679 *	@dev: device
680 *	@addr: address to add
681 *
682 *	Add a multicast address to the device or increase
683 *	the reference count if it already exists.
684 */
685int dev_mc_add(struct net_device *dev, const unsigned char *addr)
686{
687	return __dev_mc_add(dev, addr, false);
688}
689EXPORT_SYMBOL(dev_mc_add);
690
691/**
692 *	dev_mc_add_global - Add a global multicast address
693 *	@dev: device
694 *	@addr: address to add
695 *
696 *	Add a global multicast address to the device.
697 */
698int dev_mc_add_global(struct net_device *dev, const unsigned char *addr)
699{
700	return __dev_mc_add(dev, addr, true);
701}
702EXPORT_SYMBOL(dev_mc_add_global);
703
704static int __dev_mc_del(struct net_device *dev, const unsigned char *addr,
705			bool global)
706{
707	int err;
708
709	netif_addr_lock_bh(dev);
710	err = __hw_addr_del_ex(&dev->mc, addr, dev->addr_len,
711			       NETDEV_HW_ADDR_T_MULTICAST, global, false);
712	if (!err)
713		__dev_set_rx_mode(dev);
714	netif_addr_unlock_bh(dev);
715	return err;
716}
717
718/**
719 *	dev_mc_del - Delete a multicast address.
720 *	@dev: device
721 *	@addr: address to delete
722 *
723 *	Release reference to a multicast address and remove it
724 *	from the device if the reference count drops to zero.
725 */
726int dev_mc_del(struct net_device *dev, const unsigned char *addr)
727{
728	return __dev_mc_del(dev, addr, false);
729}
730EXPORT_SYMBOL(dev_mc_del);
731
732/**
733 *	dev_mc_del_global - Delete a global multicast address.
734 *	@dev: device
735 *	@addr: address to delete
736 *
737 *	Release reference to a multicast address and remove it
738 *	from the device if the reference count drops to zero.
739 */
740int dev_mc_del_global(struct net_device *dev, const unsigned char *addr)
741{
742	return __dev_mc_del(dev, addr, true);
743}
744EXPORT_SYMBOL(dev_mc_del_global);
745
746/**
747 *	dev_mc_sync - Synchronize device's multicast list to another device
748 *	@to: destination device
749 *	@from: source device
750 *
751 *	Add newly added addresses to the destination device and release
752 *	addresses that have no users left. The source device must be
753 *	locked by netif_addr_lock_bh.
754 *
755 *	This function is intended to be called from the ndo_set_rx_mode
756 *	function of layered software devices.
757 */
758int dev_mc_sync(struct net_device *to, struct net_device *from)
759{
760	int err = 0;
761
762	if (to->addr_len != from->addr_len)
763		return -EINVAL;
764
765	netif_addr_lock_nested(to);
766	err = __hw_addr_sync(&to->mc, &from->mc, to->addr_len);
767	if (!err)
768		__dev_set_rx_mode(to);
769	netif_addr_unlock(to);
770	return err;
771}
772EXPORT_SYMBOL(dev_mc_sync);
773
774/**
775 *	dev_mc_sync_multiple - Synchronize device's multicast list to another
776 *	device, but allow for multiple calls to sync to multiple devices.
777 *	@to: destination device
778 *	@from: source device
779 *
780 *	Add newly added addresses to the destination device and release
781 *	addresses that have no users left. The source device must be
782 *	locked by netif_addr_lock_bh.
783 *
784 *	This function is intended to be called from the ndo_set_rx_mode
785 *	function of layered software devices.  It allows for a single
786 *	source device to be synced to multiple destination devices.
787 */
788int dev_mc_sync_multiple(struct net_device *to, struct net_device *from)
789{
790	int err = 0;
791
792	if (to->addr_len != from->addr_len)
793		return -EINVAL;
794
795	netif_addr_lock_nested(to);
796	err = __hw_addr_sync_multiple(&to->mc, &from->mc, to->addr_len);
797	if (!err)
798		__dev_set_rx_mode(to);
799	netif_addr_unlock(to);
800	return err;
801}
802EXPORT_SYMBOL(dev_mc_sync_multiple);
803
804/**
805 *	dev_mc_unsync - Remove synchronized addresses from the destination device
806 *	@to: destination device
807 *	@from: source device
808 *
809 *	Remove all addresses that were added to the destination device by
810 *	dev_mc_sync(). This function is intended to be called from the
811 *	dev->stop function of layered software devices.
812 */
813void dev_mc_unsync(struct net_device *to, struct net_device *from)
814{
815	if (to->addr_len != from->addr_len)
816		return;
817
 
818	netif_addr_lock_bh(from);
819	netif_addr_lock_nested(to);
820	__hw_addr_unsync(&to->mc, &from->mc, to->addr_len);
821	__dev_set_rx_mode(to);
822	netif_addr_unlock(to);
823	netif_addr_unlock_bh(from);
824}
825EXPORT_SYMBOL(dev_mc_unsync);
826
827/**
828 *	dev_mc_flush - Flush multicast addresses
829 *	@dev: device
830 *
831 *	Flush multicast addresses.
832 */
833void dev_mc_flush(struct net_device *dev)
834{
835	netif_addr_lock_bh(dev);
836	__hw_addr_flush(&dev->mc);
837	netif_addr_unlock_bh(dev);
838}
839EXPORT_SYMBOL(dev_mc_flush);
840
841/**
842 *	dev_mc_flush - Init multicast address list
843 *	@dev: device
844 *
845 *	Init multicast address list.
846 */
847void dev_mc_init(struct net_device *dev)
848{
849	__hw_addr_init(&dev->mc);
850}
851EXPORT_SYMBOL(dev_mc_init);
v6.13.7
   1// SPDX-License-Identifier: GPL-2.0-or-later
   2/*
   3 * net/core/dev_addr_lists.c - Functions for handling net device lists
   4 * Copyright (c) 2010 Jiri Pirko <jpirko@redhat.com>
   5 *
   6 * This file contains functions for working with unicast, multicast and device
   7 * addresses lists.
 
 
 
 
 
   8 */
   9
  10#include <linux/netdevice.h>
  11#include <linux/rtnetlink.h>
  12#include <linux/export.h>
  13#include <linux/list.h>
  14
  15#include "dev.h"
  16
  17/*
  18 * General list handling functions
  19 */
  20
  21static int __hw_addr_insert(struct netdev_hw_addr_list *list,
  22			    struct netdev_hw_addr *new, int addr_len)
  23{
  24	struct rb_node **ins_point = &list->tree.rb_node, *parent = NULL;
  25	struct netdev_hw_addr *ha;
  26
  27	while (*ins_point) {
  28		int diff;
  29
  30		ha = rb_entry(*ins_point, struct netdev_hw_addr, node);
  31		diff = memcmp(new->addr, ha->addr, addr_len);
  32		if (diff == 0)
  33			diff = memcmp(&new->type, &ha->type, sizeof(new->type));
  34
  35		parent = *ins_point;
  36		if (diff < 0)
  37			ins_point = &parent->rb_left;
  38		else if (diff > 0)
  39			ins_point = &parent->rb_right;
  40		else
  41			return -EEXIST;
  42	}
  43
  44	rb_link_node_rcu(&new->node, parent, ins_point);
  45	rb_insert_color(&new->node, &list->tree);
  46
  47	return 0;
  48}
  49
  50static struct netdev_hw_addr*
  51__hw_addr_create(const unsigned char *addr, int addr_len,
  52		 unsigned char addr_type, bool global, bool sync)
  53{
  54	struct netdev_hw_addr *ha;
  55	int alloc_size;
  56
  57	alloc_size = sizeof(*ha);
  58	if (alloc_size < L1_CACHE_BYTES)
  59		alloc_size = L1_CACHE_BYTES;
  60	ha = kmalloc(alloc_size, GFP_ATOMIC);
  61	if (!ha)
  62		return NULL;
  63	memcpy(ha->addr, addr, addr_len);
  64	ha->type = addr_type;
  65	ha->refcount = 1;
  66	ha->global_use = global;
  67	ha->synced = sync ? 1 : 0;
  68	ha->sync_cnt = 0;
 
 
  69
  70	return ha;
  71}
  72
  73static int __hw_addr_add_ex(struct netdev_hw_addr_list *list,
  74			    const unsigned char *addr, int addr_len,
  75			    unsigned char addr_type, bool global, bool sync,
  76			    int sync_count, bool exclusive)
  77{
  78	struct rb_node **ins_point = &list->tree.rb_node, *parent = NULL;
  79	struct netdev_hw_addr *ha;
  80
  81	if (addr_len > MAX_ADDR_LEN)
  82		return -EINVAL;
  83
  84	while (*ins_point) {
  85		int diff;
  86
  87		ha = rb_entry(*ins_point, struct netdev_hw_addr, node);
  88		diff = memcmp(addr, ha->addr, addr_len);
  89		if (diff == 0)
  90			diff = memcmp(&addr_type, &ha->type, sizeof(addr_type));
  91
  92		parent = *ins_point;
  93		if (diff < 0) {
  94			ins_point = &parent->rb_left;
  95		} else if (diff > 0) {
  96			ins_point = &parent->rb_right;
  97		} else {
  98			if (exclusive)
  99				return -EEXIST;
 100			if (global) {
 101				/* check if addr is already used as global */
 102				if (ha->global_use)
 103					return 0;
 104				else
 105					ha->global_use = true;
 106			}
 107			if (sync) {
 108				if (ha->synced && sync_count)
 109					return -EEXIST;
 110				else
 111					ha->synced++;
 112			}
 113			ha->refcount++;
 114			return 0;
 115		}
 116	}
 117
 118	ha = __hw_addr_create(addr, addr_len, addr_type, global, sync);
 119	if (!ha)
 120		return -ENOMEM;
 121
 122	rb_link_node(&ha->node, parent, ins_point);
 123	rb_insert_color(&ha->node, &list->tree);
 124
 125	list_add_tail_rcu(&ha->list, &list->list);
 126	list->count++;
 127
 128	return 0;
 129}
 130
 131static int __hw_addr_add(struct netdev_hw_addr_list *list,
 132			 const unsigned char *addr, int addr_len,
 133			 unsigned char addr_type)
 134{
 135	return __hw_addr_add_ex(list, addr, addr_len, addr_type, false, false,
 136				0, false);
 137}
 138
 139static int __hw_addr_del_entry(struct netdev_hw_addr_list *list,
 140			       struct netdev_hw_addr *ha, bool global,
 141			       bool sync)
 142{
 143	if (global && !ha->global_use)
 144		return -ENOENT;
 145
 146	if (sync && !ha->synced)
 147		return -ENOENT;
 148
 149	if (global)
 150		ha->global_use = false;
 151
 152	if (sync)
 153		ha->synced--;
 154
 155	if (--ha->refcount)
 156		return 0;
 157
 158	rb_erase(&ha->node, &list->tree);
 159
 160	list_del_rcu(&ha->list);
 161	kfree_rcu(ha, rcu_head);
 162	list->count--;
 163	return 0;
 164}
 165
 166static struct netdev_hw_addr *__hw_addr_lookup(struct netdev_hw_addr_list *list,
 167					       const unsigned char *addr, int addr_len,
 168					       unsigned char addr_type)
 169{
 170	struct rb_node *node;
 171
 172	node = list->tree.rb_node;
 173
 174	while (node) {
 175		struct netdev_hw_addr *ha = rb_entry(node, struct netdev_hw_addr, node);
 176		int diff = memcmp(addr, ha->addr, addr_len);
 177
 178		if (diff == 0 && addr_type)
 179			diff = memcmp(&addr_type, &ha->type, sizeof(addr_type));
 180
 181		if (diff < 0)
 182			node = node->rb_left;
 183		else if (diff > 0)
 184			node = node->rb_right;
 185		else
 186			return ha;
 187	}
 188
 189	return NULL;
 190}
 191
 192static int __hw_addr_del_ex(struct netdev_hw_addr_list *list,
 193			    const unsigned char *addr, int addr_len,
 194			    unsigned char addr_type, bool global, bool sync)
 195{
 196	struct netdev_hw_addr *ha = __hw_addr_lookup(list, addr, addr_len, addr_type);
 197
 198	if (!ha)
 199		return -ENOENT;
 200	return __hw_addr_del_entry(list, ha, global, sync);
 
 
 
 201}
 202
 203static int __hw_addr_del(struct netdev_hw_addr_list *list,
 204			 const unsigned char *addr, int addr_len,
 205			 unsigned char addr_type)
 206{
 207	return __hw_addr_del_ex(list, addr, addr_len, addr_type, false, false);
 208}
 209
 210static int __hw_addr_sync_one(struct netdev_hw_addr_list *to_list,
 211			       struct netdev_hw_addr *ha,
 212			       int addr_len)
 213{
 214	int err;
 215
 216	err = __hw_addr_add_ex(to_list, ha->addr, addr_len, ha->type,
 217			       false, true, ha->sync_cnt, false);
 218	if (err && err != -EEXIST)
 219		return err;
 220
 221	if (!err) {
 222		ha->sync_cnt++;
 223		ha->refcount++;
 224	}
 225
 226	return 0;
 227}
 228
 229static void __hw_addr_unsync_one(struct netdev_hw_addr_list *to_list,
 230				 struct netdev_hw_addr_list *from_list,
 231				 struct netdev_hw_addr *ha,
 232				 int addr_len)
 233{
 234	int err;
 235
 236	err = __hw_addr_del_ex(to_list, ha->addr, addr_len, ha->type,
 237			       false, true);
 238	if (err)
 239		return;
 240	ha->sync_cnt--;
 241	/* address on from list is not marked synced */
 242	__hw_addr_del_entry(from_list, ha, false, false);
 243}
 244
 245static int __hw_addr_sync_multiple(struct netdev_hw_addr_list *to_list,
 246				   struct netdev_hw_addr_list *from_list,
 247				   int addr_len)
 248{
 249	int err = 0;
 250	struct netdev_hw_addr *ha, *tmp;
 251
 252	list_for_each_entry_safe(ha, tmp, &from_list->list, list) {
 253		if (ha->sync_cnt == ha->refcount) {
 254			__hw_addr_unsync_one(to_list, from_list, ha, addr_len);
 255		} else {
 256			err = __hw_addr_sync_one(to_list, ha, addr_len);
 257			if (err)
 258				break;
 259		}
 260	}
 261	return err;
 262}
 263
 264/* This function only works where there is a strict 1-1 relationship
 265 * between source and destination of they synch. If you ever need to
 266 * sync addresses to more then 1 destination, you need to use
 267 * __hw_addr_sync_multiple().
 268 */
 269int __hw_addr_sync(struct netdev_hw_addr_list *to_list,
 270		   struct netdev_hw_addr_list *from_list,
 271		   int addr_len)
 272{
 273	int err = 0;
 274	struct netdev_hw_addr *ha, *tmp;
 275
 276	list_for_each_entry_safe(ha, tmp, &from_list->list, list) {
 277		if (!ha->sync_cnt) {
 278			err = __hw_addr_sync_one(to_list, ha, addr_len);
 279			if (err)
 280				break;
 281		} else if (ha->refcount == 1)
 282			__hw_addr_unsync_one(to_list, from_list, ha, addr_len);
 283	}
 284	return err;
 285}
 286EXPORT_SYMBOL(__hw_addr_sync);
 287
 288void __hw_addr_unsync(struct netdev_hw_addr_list *to_list,
 289		      struct netdev_hw_addr_list *from_list,
 290		      int addr_len)
 291{
 292	struct netdev_hw_addr *ha, *tmp;
 293
 294	list_for_each_entry_safe(ha, tmp, &from_list->list, list) {
 295		if (ha->sync_cnt)
 296			__hw_addr_unsync_one(to_list, from_list, ha, addr_len);
 297	}
 298}
 299EXPORT_SYMBOL(__hw_addr_unsync);
 300
 301/**
 302 *  __hw_addr_sync_dev - Synchronize device's multicast list
 303 *  @list: address list to synchronize
 304 *  @dev:  device to sync
 305 *  @sync: function to call if address should be added
 306 *  @unsync: function to call if address should be removed
 307 *
 308 *  This function is intended to be called from the ndo_set_rx_mode
 309 *  function of devices that require explicit address add/remove
 310 *  notifications.  The unsync function may be NULL in which case
 311 *  the addresses requiring removal will simply be removed without
 312 *  any notification to the device.
 313 **/
 314int __hw_addr_sync_dev(struct netdev_hw_addr_list *list,
 315		       struct net_device *dev,
 316		       int (*sync)(struct net_device *, const unsigned char *),
 317		       int (*unsync)(struct net_device *,
 318				     const unsigned char *))
 319{
 320	struct netdev_hw_addr *ha, *tmp;
 321	int err;
 322
 323	/* first go through and flush out any stale entries */
 324	list_for_each_entry_safe(ha, tmp, &list->list, list) {
 325		if (!ha->sync_cnt || ha->refcount != 1)
 326			continue;
 327
 328		/* if unsync is defined and fails defer unsyncing address */
 329		if (unsync && unsync(dev, ha->addr))
 330			continue;
 331
 332		ha->sync_cnt--;
 333		__hw_addr_del_entry(list, ha, false, false);
 334	}
 335
 336	/* go through and sync new entries to the list */
 337	list_for_each_entry_safe(ha, tmp, &list->list, list) {
 338		if (ha->sync_cnt)
 339			continue;
 340
 341		err = sync(dev, ha->addr);
 342		if (err)
 343			return err;
 344
 345		ha->sync_cnt++;
 346		ha->refcount++;
 347	}
 348
 349	return 0;
 350}
 351EXPORT_SYMBOL(__hw_addr_sync_dev);
 352
 353/**
 354 *  __hw_addr_ref_sync_dev - Synchronize device's multicast address list taking
 355 *  into account references
 356 *  @list: address list to synchronize
 357 *  @dev:  device to sync
 358 *  @sync: function to call if address or reference on it should be added
 359 *  @unsync: function to call if address or some reference on it should removed
 360 *
 361 *  This function is intended to be called from the ndo_set_rx_mode
 362 *  function of devices that require explicit address or references on it
 363 *  add/remove notifications. The unsync function may be NULL in which case
 364 *  the addresses or references on it requiring removal will simply be
 365 *  removed without any notification to the device. That is responsibility of
 366 *  the driver to identify and distribute address or references on it between
 367 *  internal address tables.
 368 **/
 369int __hw_addr_ref_sync_dev(struct netdev_hw_addr_list *list,
 370			   struct net_device *dev,
 371			   int (*sync)(struct net_device *,
 372				       const unsigned char *, int),
 373			   int (*unsync)(struct net_device *,
 374					 const unsigned char *, int))
 375{
 376	struct netdev_hw_addr *ha, *tmp;
 377	int err, ref_cnt;
 378
 379	/* first go through and flush out any unsynced/stale entries */
 380	list_for_each_entry_safe(ha, tmp, &list->list, list) {
 381		/* sync if address is not used */
 382		if ((ha->sync_cnt << 1) <= ha->refcount)
 383			continue;
 384
 385		/* if fails defer unsyncing address */
 386		ref_cnt = ha->refcount - ha->sync_cnt;
 387		if (unsync && unsync(dev, ha->addr, ref_cnt))
 388			continue;
 389
 390		ha->refcount = (ref_cnt << 1) + 1;
 391		ha->sync_cnt = ref_cnt;
 392		__hw_addr_del_entry(list, ha, false, false);
 393	}
 394
 395	/* go through and sync updated/new entries to the list */
 396	list_for_each_entry_safe(ha, tmp, &list->list, list) {
 397		/* sync if address added or reused */
 398		if ((ha->sync_cnt << 1) >= ha->refcount)
 399			continue;
 400
 401		ref_cnt = ha->refcount - ha->sync_cnt;
 402		err = sync(dev, ha->addr, ref_cnt);
 403		if (err)
 404			return err;
 405
 406		ha->refcount = ref_cnt << 1;
 407		ha->sync_cnt = ref_cnt;
 408	}
 409
 410	return 0;
 411}
 412EXPORT_SYMBOL(__hw_addr_ref_sync_dev);
 413
 414/**
 415 *  __hw_addr_ref_unsync_dev - Remove synchronized addresses and references on
 416 *  it from device
 417 *  @list: address list to remove synchronized addresses (references on it) from
 418 *  @dev:  device to sync
 419 *  @unsync: function to call if address and references on it should be removed
 420 *
 421 *  Remove all addresses that were added to the device by
 422 *  __hw_addr_ref_sync_dev(). This function is intended to be called from the
 423 *  ndo_stop or ndo_open functions on devices that require explicit address (or
 424 *  references on it) add/remove notifications. If the unsync function pointer
 425 *  is NULL then this function can be used to just reset the sync_cnt for the
 426 *  addresses in the list.
 427 **/
 428void __hw_addr_ref_unsync_dev(struct netdev_hw_addr_list *list,
 429			      struct net_device *dev,
 430			      int (*unsync)(struct net_device *,
 431					    const unsigned char *, int))
 432{
 433	struct netdev_hw_addr *ha, *tmp;
 434
 435	list_for_each_entry_safe(ha, tmp, &list->list, list) {
 436		if (!ha->sync_cnt)
 437			continue;
 438
 439		/* if fails defer unsyncing address */
 440		if (unsync && unsync(dev, ha->addr, ha->sync_cnt))
 441			continue;
 442
 443		ha->refcount -= ha->sync_cnt - 1;
 444		ha->sync_cnt = 0;
 445		__hw_addr_del_entry(list, ha, false, false);
 446	}
 447}
 448EXPORT_SYMBOL(__hw_addr_ref_unsync_dev);
 449
 450/**
 451 *  __hw_addr_unsync_dev - Remove synchronized addresses from device
 452 *  @list: address list to remove synchronized addresses from
 453 *  @dev:  device to sync
 454 *  @unsync: function to call if address should be removed
 455 *
 456 *  Remove all addresses that were added to the device by __hw_addr_sync_dev().
 457 *  This function is intended to be called from the ndo_stop or ndo_open
 458 *  functions on devices that require explicit address add/remove
 459 *  notifications.  If the unsync function pointer is NULL then this function
 460 *  can be used to just reset the sync_cnt for the addresses in the list.
 461 **/
 462void __hw_addr_unsync_dev(struct netdev_hw_addr_list *list,
 463			  struct net_device *dev,
 464			  int (*unsync)(struct net_device *,
 465					const unsigned char *))
 466{
 467	struct netdev_hw_addr *ha, *tmp;
 468
 469	list_for_each_entry_safe(ha, tmp, &list->list, list) {
 470		if (!ha->sync_cnt)
 471			continue;
 472
 473		/* if unsync is defined and fails defer unsyncing address */
 474		if (unsync && unsync(dev, ha->addr))
 475			continue;
 476
 477		ha->sync_cnt--;
 478		__hw_addr_del_entry(list, ha, false, false);
 479	}
 480}
 481EXPORT_SYMBOL(__hw_addr_unsync_dev);
 482
 483static void __hw_addr_flush(struct netdev_hw_addr_list *list)
 484{
 485	struct netdev_hw_addr *ha, *tmp;
 486
 487	list->tree = RB_ROOT;
 488	list_for_each_entry_safe(ha, tmp, &list->list, list) {
 489		list_del_rcu(&ha->list);
 490		kfree_rcu(ha, rcu_head);
 491	}
 492	list->count = 0;
 493}
 494
 495void __hw_addr_init(struct netdev_hw_addr_list *list)
 496{
 497	INIT_LIST_HEAD(&list->list);
 498	list->count = 0;
 499	list->tree = RB_ROOT;
 500}
 501EXPORT_SYMBOL(__hw_addr_init);
 502
 503/*
 504 * Device addresses handling functions
 505 */
 506
 507/* Check that netdev->dev_addr is not written to directly as this would
 508 * break the rbtree layout. All changes should go thru dev_addr_set() and co.
 509 * Remove this check in mid-2024.
 510 */
 511void dev_addr_check(struct net_device *dev)
 512{
 513	if (!memcmp(dev->dev_addr, dev->dev_addr_shadow, MAX_ADDR_LEN))
 514		return;
 515
 516	netdev_warn(dev, "Current addr:  %*ph\n", MAX_ADDR_LEN, dev->dev_addr);
 517	netdev_warn(dev, "Expected addr: %*ph\n",
 518		    MAX_ADDR_LEN, dev->dev_addr_shadow);
 519	netdev_WARN(dev, "Incorrect netdev->dev_addr\n");
 520}
 521
 522/**
 523 *	dev_addr_flush - Flush device address list
 524 *	@dev: device
 525 *
 526 *	Flush device address list and reset ->dev_addr.
 527 *
 528 *	The caller must hold the rtnl_mutex.
 529 */
 530void dev_addr_flush(struct net_device *dev)
 531{
 532	/* rtnl_mutex must be held here */
 533	dev_addr_check(dev);
 534
 535	__hw_addr_flush(&dev->dev_addrs);
 536	dev->dev_addr = NULL;
 537}
 
 538
 539/**
 540 *	dev_addr_init - Init device address list
 541 *	@dev: device
 542 *
 543 *	Init device address list and create the first element,
 544 *	used by ->dev_addr.
 545 *
 546 *	The caller must hold the rtnl_mutex.
 547 */
 548int dev_addr_init(struct net_device *dev)
 549{
 550	unsigned char addr[MAX_ADDR_LEN];
 551	struct netdev_hw_addr *ha;
 552	int err;
 553
 554	/* rtnl_mutex must be held here */
 555
 556	__hw_addr_init(&dev->dev_addrs);
 557	memset(addr, 0, sizeof(addr));
 558	err = __hw_addr_add(&dev->dev_addrs, addr, sizeof(addr),
 559			    NETDEV_HW_ADDR_T_LAN);
 560	if (!err) {
 561		/*
 562		 * Get the first (previously created) address from the list
 563		 * and set dev_addr pointer to this location.
 564		 */
 565		ha = list_first_entry(&dev->dev_addrs.list,
 566				      struct netdev_hw_addr, list);
 567		dev->dev_addr = ha->addr;
 568	}
 569	return err;
 570}
 571
 572void dev_addr_mod(struct net_device *dev, unsigned int offset,
 573		  const void *addr, size_t len)
 574{
 575	struct netdev_hw_addr *ha;
 576
 577	dev_addr_check(dev);
 578
 579	ha = container_of(dev->dev_addr, struct netdev_hw_addr, addr[0]);
 580	rb_erase(&ha->node, &dev->dev_addrs.tree);
 581	memcpy(&ha->addr[offset], addr, len);
 582	memcpy(&dev->dev_addr_shadow[offset], addr, len);
 583	WARN_ON(__hw_addr_insert(&dev->dev_addrs, ha, dev->addr_len));
 584}
 585EXPORT_SYMBOL(dev_addr_mod);
 586
 587/**
 588 *	dev_addr_add - Add a device address
 589 *	@dev: device
 590 *	@addr: address to add
 591 *	@addr_type: address type
 592 *
 593 *	Add a device address to the device or increase the reference count if
 594 *	it already exists.
 595 *
 596 *	The caller must hold the rtnl_mutex.
 597 */
 598int dev_addr_add(struct net_device *dev, const unsigned char *addr,
 599		 unsigned char addr_type)
 600{
 601	int err;
 602
 603	ASSERT_RTNL();
 604
 605	err = dev_pre_changeaddr_notify(dev, addr, NULL);
 606	if (err)
 607		return err;
 608	err = __hw_addr_add(&dev->dev_addrs, addr, dev->addr_len, addr_type);
 609	if (!err)
 610		call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
 611	return err;
 612}
 613EXPORT_SYMBOL(dev_addr_add);
 614
 615/**
 616 *	dev_addr_del - Release a device address.
 617 *	@dev: device
 618 *	@addr: address to delete
 619 *	@addr_type: address type
 620 *
 621 *	Release reference to a device address and remove it from the device
 622 *	if the reference count drops to zero.
 623 *
 624 *	The caller must hold the rtnl_mutex.
 625 */
 626int dev_addr_del(struct net_device *dev, const unsigned char *addr,
 627		 unsigned char addr_type)
 628{
 629	int err;
 630	struct netdev_hw_addr *ha;
 631
 632	ASSERT_RTNL();
 633
 634	/*
 635	 * We can not remove the first address from the list because
 636	 * dev->dev_addr points to that.
 637	 */
 638	ha = list_first_entry(&dev->dev_addrs.list,
 639			      struct netdev_hw_addr, list);
 640	if (!memcmp(ha->addr, addr, dev->addr_len) &&
 641	    ha->type == addr_type && ha->refcount == 1)
 642		return -ENOENT;
 643
 644	err = __hw_addr_del(&dev->dev_addrs, addr, dev->addr_len,
 645			    addr_type);
 646	if (!err)
 647		call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
 648	return err;
 649}
 650EXPORT_SYMBOL(dev_addr_del);
 651
 652/*
 653 * Unicast list handling functions
 654 */
 655
 656/**
 657 *	dev_uc_add_excl - Add a global secondary unicast address
 658 *	@dev: device
 659 *	@addr: address to add
 660 */
 661int dev_uc_add_excl(struct net_device *dev, const unsigned char *addr)
 662{
 
 663	int err;
 664
 665	netif_addr_lock_bh(dev);
 666	err = __hw_addr_add_ex(&dev->uc, addr, dev->addr_len,
 667			       NETDEV_HW_ADDR_T_UNICAST, true, false,
 668			       0, true);
 
 
 
 
 
 
 669	if (!err)
 670		__dev_set_rx_mode(dev);
 
 671	netif_addr_unlock_bh(dev);
 672	return err;
 673}
 674EXPORT_SYMBOL(dev_uc_add_excl);
 675
 676/**
 677 *	dev_uc_add - Add a secondary unicast address
 678 *	@dev: device
 679 *	@addr: address to add
 680 *
 681 *	Add a secondary unicast address to the device or increase
 682 *	the reference count if it already exists.
 683 */
 684int dev_uc_add(struct net_device *dev, const unsigned char *addr)
 685{
 686	int err;
 687
 688	netif_addr_lock_bh(dev);
 689	err = __hw_addr_add(&dev->uc, addr, dev->addr_len,
 690			    NETDEV_HW_ADDR_T_UNICAST);
 691	if (!err)
 692		__dev_set_rx_mode(dev);
 693	netif_addr_unlock_bh(dev);
 694	return err;
 695}
 696EXPORT_SYMBOL(dev_uc_add);
 697
 698/**
 699 *	dev_uc_del - Release secondary unicast address.
 700 *	@dev: device
 701 *	@addr: address to delete
 702 *
 703 *	Release reference to a secondary unicast address and remove it
 704 *	from the device if the reference count drops to zero.
 705 */
 706int dev_uc_del(struct net_device *dev, const unsigned char *addr)
 707{
 708	int err;
 709
 710	netif_addr_lock_bh(dev);
 711	err = __hw_addr_del(&dev->uc, addr, dev->addr_len,
 712			    NETDEV_HW_ADDR_T_UNICAST);
 713	if (!err)
 714		__dev_set_rx_mode(dev);
 715	netif_addr_unlock_bh(dev);
 716	return err;
 717}
 718EXPORT_SYMBOL(dev_uc_del);
 719
 720/**
 721 *	dev_uc_sync - Synchronize device's unicast list to another device
 722 *	@to: destination device
 723 *	@from: source device
 724 *
 725 *	Add newly added addresses to the destination device and release
 726 *	addresses that have no users left. The source device must be
 727 *	locked by netif_addr_lock_bh.
 728 *
 729 *	This function is intended to be called from the dev->set_rx_mode
 730 *	function of layered software devices.  This function assumes that
 731 *	addresses will only ever be synced to the @to devices and no other.
 732 */
 733int dev_uc_sync(struct net_device *to, struct net_device *from)
 734{
 735	int err = 0;
 736
 737	if (to->addr_len != from->addr_len)
 738		return -EINVAL;
 739
 740	netif_addr_lock(to);
 741	err = __hw_addr_sync(&to->uc, &from->uc, to->addr_len);
 742	if (!err)
 743		__dev_set_rx_mode(to);
 744	netif_addr_unlock(to);
 745	return err;
 746}
 747EXPORT_SYMBOL(dev_uc_sync);
 748
 749/**
 750 *	dev_uc_sync_multiple - Synchronize device's unicast list to another
 751 *	device, but allow for multiple calls to sync to multiple devices.
 752 *	@to: destination device
 753 *	@from: source device
 754 *
 755 *	Add newly added addresses to the destination device and release
 756 *	addresses that have been deleted from the source. The source device
 757 *	must be locked by netif_addr_lock_bh.
 758 *
 759 *	This function is intended to be called from the dev->set_rx_mode
 760 *	function of layered software devices.  It allows for a single source
 761 *	device to be synced to multiple destination devices.
 762 */
 763int dev_uc_sync_multiple(struct net_device *to, struct net_device *from)
 764{
 765	int err = 0;
 766
 767	if (to->addr_len != from->addr_len)
 768		return -EINVAL;
 769
 770	netif_addr_lock(to);
 771	err = __hw_addr_sync_multiple(&to->uc, &from->uc, to->addr_len);
 772	if (!err)
 773		__dev_set_rx_mode(to);
 774	netif_addr_unlock(to);
 775	return err;
 776}
 777EXPORT_SYMBOL(dev_uc_sync_multiple);
 778
 779/**
 780 *	dev_uc_unsync - Remove synchronized addresses from the destination device
 781 *	@to: destination device
 782 *	@from: source device
 783 *
 784 *	Remove all addresses that were added to the destination device by
 785 *	dev_uc_sync(). This function is intended to be called from the
 786 *	dev->stop function of layered software devices.
 787 */
 788void dev_uc_unsync(struct net_device *to, struct net_device *from)
 789{
 790	if (to->addr_len != from->addr_len)
 791		return;
 792
 793	/* netif_addr_lock_bh() uses lockdep subclass 0, this is okay for two
 794	 * reasons:
 795	 * 1) This is always called without any addr_list_lock, so as the
 796	 *    outermost one here, it must be 0.
 797	 * 2) This is called by some callers after unlinking the upper device,
 798	 *    so the dev->lower_level becomes 1 again.
 799	 * Therefore, the subclass for 'from' is 0, for 'to' is either 1 or
 800	 * larger.
 801	 */
 802	netif_addr_lock_bh(from);
 803	netif_addr_lock(to);
 804	__hw_addr_unsync(&to->uc, &from->uc, to->addr_len);
 805	__dev_set_rx_mode(to);
 806	netif_addr_unlock(to);
 807	netif_addr_unlock_bh(from);
 808}
 809EXPORT_SYMBOL(dev_uc_unsync);
 810
 811/**
 812 *	dev_uc_flush - Flush unicast addresses
 813 *	@dev: device
 814 *
 815 *	Flush unicast addresses.
 816 */
 817void dev_uc_flush(struct net_device *dev)
 818{
 819	netif_addr_lock_bh(dev);
 820	__hw_addr_flush(&dev->uc);
 821	netif_addr_unlock_bh(dev);
 822}
 823EXPORT_SYMBOL(dev_uc_flush);
 824
 825/**
 826 *	dev_uc_init - Init unicast address list
 827 *	@dev: device
 828 *
 829 *	Init unicast address list.
 830 */
 831void dev_uc_init(struct net_device *dev)
 832{
 833	__hw_addr_init(&dev->uc);
 834}
 835EXPORT_SYMBOL(dev_uc_init);
 836
 837/*
 838 * Multicast list handling functions
 839 */
 840
 841/**
 842 *	dev_mc_add_excl - Add a global secondary multicast address
 843 *	@dev: device
 844 *	@addr: address to add
 845 */
 846int dev_mc_add_excl(struct net_device *dev, const unsigned char *addr)
 847{
 
 848	int err;
 849
 850	netif_addr_lock_bh(dev);
 851	err = __hw_addr_add_ex(&dev->mc, addr, dev->addr_len,
 852			       NETDEV_HW_ADDR_T_MULTICAST, true, false,
 853			       0, true);
 
 
 
 
 
 
 854	if (!err)
 855		__dev_set_rx_mode(dev);
 
 856	netif_addr_unlock_bh(dev);
 857	return err;
 858}
 859EXPORT_SYMBOL(dev_mc_add_excl);
 860
 861static int __dev_mc_add(struct net_device *dev, const unsigned char *addr,
 862			bool global)
 863{
 864	int err;
 865
 866	netif_addr_lock_bh(dev);
 867	err = __hw_addr_add_ex(&dev->mc, addr, dev->addr_len,
 868			       NETDEV_HW_ADDR_T_MULTICAST, global, false,
 869			       0, false);
 870	if (!err)
 871		__dev_set_rx_mode(dev);
 872	netif_addr_unlock_bh(dev);
 873	return err;
 874}
 875/**
 876 *	dev_mc_add - Add a multicast address
 877 *	@dev: device
 878 *	@addr: address to add
 879 *
 880 *	Add a multicast address to the device or increase
 881 *	the reference count if it already exists.
 882 */
 883int dev_mc_add(struct net_device *dev, const unsigned char *addr)
 884{
 885	return __dev_mc_add(dev, addr, false);
 886}
 887EXPORT_SYMBOL(dev_mc_add);
 888
 889/**
 890 *	dev_mc_add_global - Add a global multicast address
 891 *	@dev: device
 892 *	@addr: address to add
 893 *
 894 *	Add a global multicast address to the device.
 895 */
 896int dev_mc_add_global(struct net_device *dev, const unsigned char *addr)
 897{
 898	return __dev_mc_add(dev, addr, true);
 899}
 900EXPORT_SYMBOL(dev_mc_add_global);
 901
 902static int __dev_mc_del(struct net_device *dev, const unsigned char *addr,
 903			bool global)
 904{
 905	int err;
 906
 907	netif_addr_lock_bh(dev);
 908	err = __hw_addr_del_ex(&dev->mc, addr, dev->addr_len,
 909			       NETDEV_HW_ADDR_T_MULTICAST, global, false);
 910	if (!err)
 911		__dev_set_rx_mode(dev);
 912	netif_addr_unlock_bh(dev);
 913	return err;
 914}
 915
 916/**
 917 *	dev_mc_del - Delete a multicast address.
 918 *	@dev: device
 919 *	@addr: address to delete
 920 *
 921 *	Release reference to a multicast address and remove it
 922 *	from the device if the reference count drops to zero.
 923 */
 924int dev_mc_del(struct net_device *dev, const unsigned char *addr)
 925{
 926	return __dev_mc_del(dev, addr, false);
 927}
 928EXPORT_SYMBOL(dev_mc_del);
 929
 930/**
 931 *	dev_mc_del_global - Delete a global multicast address.
 932 *	@dev: device
 933 *	@addr: address to delete
 934 *
 935 *	Release reference to a multicast address and remove it
 936 *	from the device if the reference count drops to zero.
 937 */
 938int dev_mc_del_global(struct net_device *dev, const unsigned char *addr)
 939{
 940	return __dev_mc_del(dev, addr, true);
 941}
 942EXPORT_SYMBOL(dev_mc_del_global);
 943
 944/**
 945 *	dev_mc_sync - Synchronize device's multicast list to another device
 946 *	@to: destination device
 947 *	@from: source device
 948 *
 949 *	Add newly added addresses to the destination device and release
 950 *	addresses that have no users left. The source device must be
 951 *	locked by netif_addr_lock_bh.
 952 *
 953 *	This function is intended to be called from the ndo_set_rx_mode
 954 *	function of layered software devices.
 955 */
 956int dev_mc_sync(struct net_device *to, struct net_device *from)
 957{
 958	int err = 0;
 959
 960	if (to->addr_len != from->addr_len)
 961		return -EINVAL;
 962
 963	netif_addr_lock(to);
 964	err = __hw_addr_sync(&to->mc, &from->mc, to->addr_len);
 965	if (!err)
 966		__dev_set_rx_mode(to);
 967	netif_addr_unlock(to);
 968	return err;
 969}
 970EXPORT_SYMBOL(dev_mc_sync);
 971
 972/**
 973 *	dev_mc_sync_multiple - Synchronize device's multicast list to another
 974 *	device, but allow for multiple calls to sync to multiple devices.
 975 *	@to: destination device
 976 *	@from: source device
 977 *
 978 *	Add newly added addresses to the destination device and release
 979 *	addresses that have no users left. The source device must be
 980 *	locked by netif_addr_lock_bh.
 981 *
 982 *	This function is intended to be called from the ndo_set_rx_mode
 983 *	function of layered software devices.  It allows for a single
 984 *	source device to be synced to multiple destination devices.
 985 */
 986int dev_mc_sync_multiple(struct net_device *to, struct net_device *from)
 987{
 988	int err = 0;
 989
 990	if (to->addr_len != from->addr_len)
 991		return -EINVAL;
 992
 993	netif_addr_lock(to);
 994	err = __hw_addr_sync_multiple(&to->mc, &from->mc, to->addr_len);
 995	if (!err)
 996		__dev_set_rx_mode(to);
 997	netif_addr_unlock(to);
 998	return err;
 999}
1000EXPORT_SYMBOL(dev_mc_sync_multiple);
1001
1002/**
1003 *	dev_mc_unsync - Remove synchronized addresses from the destination device
1004 *	@to: destination device
1005 *	@from: source device
1006 *
1007 *	Remove all addresses that were added to the destination device by
1008 *	dev_mc_sync(). This function is intended to be called from the
1009 *	dev->stop function of layered software devices.
1010 */
1011void dev_mc_unsync(struct net_device *to, struct net_device *from)
1012{
1013	if (to->addr_len != from->addr_len)
1014		return;
1015
1016	/* See the above comments inside dev_uc_unsync(). */
1017	netif_addr_lock_bh(from);
1018	netif_addr_lock(to);
1019	__hw_addr_unsync(&to->mc, &from->mc, to->addr_len);
1020	__dev_set_rx_mode(to);
1021	netif_addr_unlock(to);
1022	netif_addr_unlock_bh(from);
1023}
1024EXPORT_SYMBOL(dev_mc_unsync);
1025
1026/**
1027 *	dev_mc_flush - Flush multicast addresses
1028 *	@dev: device
1029 *
1030 *	Flush multicast addresses.
1031 */
1032void dev_mc_flush(struct net_device *dev)
1033{
1034	netif_addr_lock_bh(dev);
1035	__hw_addr_flush(&dev->mc);
1036	netif_addr_unlock_bh(dev);
1037}
1038EXPORT_SYMBOL(dev_mc_flush);
1039
1040/**
1041 *	dev_mc_init - Init multicast address list
1042 *	@dev: device
1043 *
1044 *	Init multicast address list.
1045 */
1046void dev_mc_init(struct net_device *dev)
1047{
1048	__hw_addr_init(&dev->mc);
1049}
1050EXPORT_SYMBOL(dev_mc_init);