2 * net/core/dev_addr_lists.c - Functions for handling net device lists
3 * Copyright (c) 2010 Jiri Pirko <jpirko@redhat.com>
5 * This file contains functions for working with unicast, multicast and device
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.
14 #include <linux/netdevice.h>
15 #include <linux/rtnetlink.h>
16 #include <linux/export.h>
17 #include <linux/list.h>
20 * General list handling functions
23 static 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
,
28 struct netdev_hw_addr
*ha
;
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
);
37 memcpy(ha
->addr
, addr
, addr_len
);
40 ha
->global_use
= global
;
41 ha
->synced
= sync
? 1 : 0;
43 list_add_tail_rcu(&ha
->list
, &list
->list
);
49 static 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
,
54 struct netdev_hw_addr
*ha
;
56 if (addr_len
> MAX_ADDR_LEN
)
59 list_for_each_entry(ha
, &list
->list
, list
) {
60 if (!memcmp(ha
->addr
, addr
, addr_len
) &&
61 ha
->type
== addr_type
) {
63 /* check if addr is already used as global */
67 ha
->global_use
= true;
70 if (ha
->synced
&& sync_count
)
80 return __hw_addr_create_ex(list
, addr
, addr_len
, addr_type
, global
,
84 static int __hw_addr_add(struct netdev_hw_addr_list
*list
,
85 const unsigned char *addr
, int addr_len
,
86 unsigned char addr_type
)
88 return __hw_addr_add_ex(list
, addr
, addr_len
, addr_type
, false, false,
92 static int __hw_addr_del_entry(struct netdev_hw_addr_list
*list
,
93 struct netdev_hw_addr
*ha
, bool global
,
96 if (global
&& !ha
->global_use
)
99 if (sync
&& !ha
->synced
)
103 ha
->global_use
= false;
110 list_del_rcu(&ha
->list
);
111 kfree_rcu(ha
, rcu_head
);
116 static 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
)
120 struct netdev_hw_addr
*ha
;
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
);
130 static int __hw_addr_del(struct netdev_hw_addr_list
*list
,
131 const unsigned char *addr
, int addr_len
,
132 unsigned char addr_type
)
134 return __hw_addr_del_ex(list
, addr
, addr_len
, addr_type
, false, false);
137 static int __hw_addr_sync_one(struct netdev_hw_addr_list
*to_list
,
138 struct netdev_hw_addr
*ha
,
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
)
156 static 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
,
163 err
= __hw_addr_del_ex(to_list
, ha
->addr
, addr_len
, ha
->type
,
168 /* address on from list is not marked synced */
169 __hw_addr_del_entry(from_list
, ha
, false, false);
172 static int __hw_addr_sync_multiple(struct netdev_hw_addr_list
*to_list
,
173 struct netdev_hw_addr_list
*from_list
,
177 struct netdev_hw_addr
*ha
, *tmp
;
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
);
183 err
= __hw_addr_sync_one(to_list
, ha
, addr_len
);
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().
196 int __hw_addr_sync(struct netdev_hw_addr_list
*to_list
,
197 struct netdev_hw_addr_list
*from_list
,
201 struct netdev_hw_addr
*ha
, *tmp
;
203 list_for_each_entry_safe(ha
, tmp
, &from_list
->list
, list
) {
205 err
= __hw_addr_sync_one(to_list
, ha
, addr_len
);
208 } else if (ha
->refcount
== 1)
209 __hw_addr_unsync_one(to_list
, from_list
, ha
, addr_len
);
213 EXPORT_SYMBOL(__hw_addr_sync
);
215 void __hw_addr_unsync(struct netdev_hw_addr_list
*to_list
,
216 struct netdev_hw_addr_list
*from_list
,
219 struct netdev_hw_addr
*ha
, *tmp
;
221 list_for_each_entry_safe(ha
, tmp
, &from_list
->list
, list
) {
223 __hw_addr_unsync_one(to_list
, from_list
, ha
, addr_len
);
226 EXPORT_SYMBOL(__hw_addr_unsync
);
228 static void __hw_addr_flush(struct netdev_hw_addr_list
*list
)
230 struct netdev_hw_addr
*ha
, *tmp
;
232 list_for_each_entry_safe(ha
, tmp
, &list
->list
, list
) {
233 list_del_rcu(&ha
->list
);
234 kfree_rcu(ha
, rcu_head
);
239 void __hw_addr_init(struct netdev_hw_addr_list
*list
)
241 INIT_LIST_HEAD(&list
->list
);
244 EXPORT_SYMBOL(__hw_addr_init
);
247 * Device addresses handling functions
251 * dev_addr_flush - Flush device address list
254 * Flush device address list and reset ->dev_addr.
256 * The caller must hold the rtnl_mutex.
258 void dev_addr_flush(struct net_device
*dev
)
260 /* rtnl_mutex must be held here */
262 __hw_addr_flush(&dev
->dev_addrs
);
263 dev
->dev_addr
= NULL
;
265 EXPORT_SYMBOL(dev_addr_flush
);
268 * dev_addr_init - Init device address list
271 * Init device address list and create the first element,
272 * used by ->dev_addr.
274 * The caller must hold the rtnl_mutex.
276 int dev_addr_init(struct net_device
*dev
)
278 unsigned char addr
[MAX_ADDR_LEN
];
279 struct netdev_hw_addr
*ha
;
282 /* rtnl_mutex must be held here */
284 __hw_addr_init(&dev
->dev_addrs
);
285 memset(addr
, 0, sizeof(addr
));
286 err
= __hw_addr_add(&dev
->dev_addrs
, addr
, sizeof(addr
),
287 NETDEV_HW_ADDR_T_LAN
);
290 * Get the first (previously created) address from the list
291 * and set dev_addr pointer to this location.
293 ha
= list_first_entry(&dev
->dev_addrs
.list
,
294 struct netdev_hw_addr
, list
);
295 dev
->dev_addr
= ha
->addr
;
299 EXPORT_SYMBOL(dev_addr_init
);
302 * dev_addr_add - Add a device address
304 * @addr: address to add
305 * @addr_type: address type
307 * Add a device address to the device or increase the reference count if
310 * The caller must hold the rtnl_mutex.
312 int dev_addr_add(struct net_device
*dev
, const unsigned char *addr
,
313 unsigned char addr_type
)
319 err
= __hw_addr_add(&dev
->dev_addrs
, addr
, dev
->addr_len
, addr_type
);
321 call_netdevice_notifiers(NETDEV_CHANGEADDR
, dev
);
324 EXPORT_SYMBOL(dev_addr_add
);
327 * dev_addr_del - Release a device address.
329 * @addr: address to delete
330 * @addr_type: address type
332 * Release reference to a device address and remove it from the device
333 * if the reference count drops to zero.
335 * The caller must hold the rtnl_mutex.
337 int dev_addr_del(struct net_device
*dev
, const unsigned char *addr
,
338 unsigned char addr_type
)
341 struct netdev_hw_addr
*ha
;
346 * We can not remove the first address from the list because
347 * dev->dev_addr points to that.
349 ha
= list_first_entry(&dev
->dev_addrs
.list
,
350 struct netdev_hw_addr
, list
);
351 if (!memcmp(ha
->addr
, addr
, dev
->addr_len
) &&
352 ha
->type
== addr_type
&& ha
->refcount
== 1)
355 err
= __hw_addr_del(&dev
->dev_addrs
, addr
, dev
->addr_len
,
358 call_netdevice_notifiers(NETDEV_CHANGEADDR
, dev
);
361 EXPORT_SYMBOL(dev_addr_del
);
364 * Unicast list handling functions
368 * dev_uc_add_excl - Add a global secondary unicast address
370 * @addr: address to add
372 int dev_uc_add_excl(struct net_device
*dev
, const unsigned char *addr
)
374 struct netdev_hw_addr
*ha
;
377 netif_addr_lock_bh(dev
);
378 list_for_each_entry(ha
, &dev
->uc
.list
, list
) {
379 if (!memcmp(ha
->addr
, addr
, dev
->addr_len
) &&
380 ha
->type
== NETDEV_HW_ADDR_T_UNICAST
) {
385 err
= __hw_addr_create_ex(&dev
->uc
, addr
, dev
->addr_len
,
386 NETDEV_HW_ADDR_T_UNICAST
, true, false);
388 __dev_set_rx_mode(dev
);
390 netif_addr_unlock_bh(dev
);
393 EXPORT_SYMBOL(dev_uc_add_excl
);
396 * dev_uc_add - Add a secondary unicast address
398 * @addr: address to add
400 * Add a secondary unicast address to the device or increase
401 * the reference count if it already exists.
403 int dev_uc_add(struct net_device
*dev
, const unsigned char *addr
)
407 netif_addr_lock_bh(dev
);
408 err
= __hw_addr_add(&dev
->uc
, addr
, dev
->addr_len
,
409 NETDEV_HW_ADDR_T_UNICAST
);
411 __dev_set_rx_mode(dev
);
412 netif_addr_unlock_bh(dev
);
415 EXPORT_SYMBOL(dev_uc_add
);
418 * dev_uc_del - Release secondary unicast address.
420 * @addr: address to delete
422 * Release reference to a secondary unicast address and remove it
423 * from the device if the reference count drops to zero.
425 int dev_uc_del(struct net_device
*dev
, const unsigned char *addr
)
429 netif_addr_lock_bh(dev
);
430 err
= __hw_addr_del(&dev
->uc
, addr
, dev
->addr_len
,
431 NETDEV_HW_ADDR_T_UNICAST
);
433 __dev_set_rx_mode(dev
);
434 netif_addr_unlock_bh(dev
);
437 EXPORT_SYMBOL(dev_uc_del
);
440 * dev_uc_sync - Synchronize device's unicast list to another device
441 * @to: destination device
442 * @from: source device
444 * Add newly added addresses to the destination device and release
445 * addresses that have no users left. The source device must be
446 * locked by netif_addr_lock_bh.
448 * This function is intended to be called from the dev->set_rx_mode
449 * function of layered software devices. This function assumes that
450 * addresses will only ever be synced to the @to devices and no other.
452 int dev_uc_sync(struct net_device
*to
, struct net_device
*from
)
456 if (to
->addr_len
!= from
->addr_len
)
459 netif_addr_lock_nested(to
);
460 err
= __hw_addr_sync(&to
->uc
, &from
->uc
, to
->addr_len
);
462 __dev_set_rx_mode(to
);
463 netif_addr_unlock(to
);
466 EXPORT_SYMBOL(dev_uc_sync
);
469 * dev_uc_sync_multiple - Synchronize device's unicast list to another
470 * device, but allow for multiple calls to sync to multiple devices.
471 * @to: destination device
472 * @from: source device
474 * Add newly added addresses to the destination device and release
475 * addresses that have been deleted from the source. The source device
476 * must be locked by netif_addr_lock_bh.
478 * This function is intended to be called from the dev->set_rx_mode
479 * function of layered software devices. It allows for a single source
480 * device to be synced to multiple destination devices.
482 int dev_uc_sync_multiple(struct net_device
*to
, struct net_device
*from
)
486 if (to
->addr_len
!= from
->addr_len
)
489 netif_addr_lock_nested(to
);
490 err
= __hw_addr_sync_multiple(&to
->uc
, &from
->uc
, to
->addr_len
);
492 __dev_set_rx_mode(to
);
493 netif_addr_unlock(to
);
496 EXPORT_SYMBOL(dev_uc_sync_multiple
);
499 * dev_uc_unsync - Remove synchronized addresses from the destination device
500 * @to: destination device
501 * @from: source device
503 * Remove all addresses that were added to the destination device by
504 * dev_uc_sync(). This function is intended to be called from the
505 * dev->stop function of layered software devices.
507 void dev_uc_unsync(struct net_device
*to
, struct net_device
*from
)
509 if (to
->addr_len
!= from
->addr_len
)
512 netif_addr_lock_bh(from
);
513 netif_addr_lock_nested(to
);
514 __hw_addr_unsync(&to
->uc
, &from
->uc
, to
->addr_len
);
515 __dev_set_rx_mode(to
);
516 netif_addr_unlock(to
);
517 netif_addr_unlock_bh(from
);
519 EXPORT_SYMBOL(dev_uc_unsync
);
522 * dev_uc_flush - Flush unicast addresses
525 * Flush unicast addresses.
527 void dev_uc_flush(struct net_device
*dev
)
529 netif_addr_lock_bh(dev
);
530 __hw_addr_flush(&dev
->uc
);
531 netif_addr_unlock_bh(dev
);
533 EXPORT_SYMBOL(dev_uc_flush
);
536 * dev_uc_flush - Init unicast address list
539 * Init unicast address list.
541 void dev_uc_init(struct net_device
*dev
)
543 __hw_addr_init(&dev
->uc
);
545 EXPORT_SYMBOL(dev_uc_init
);
548 * Multicast list handling functions
552 * dev_mc_add_excl - Add a global secondary multicast address
554 * @addr: address to add
556 int dev_mc_add_excl(struct net_device
*dev
, const unsigned char *addr
)
558 struct netdev_hw_addr
*ha
;
561 netif_addr_lock_bh(dev
);
562 list_for_each_entry(ha
, &dev
->mc
.list
, list
) {
563 if (!memcmp(ha
->addr
, addr
, dev
->addr_len
) &&
564 ha
->type
== NETDEV_HW_ADDR_T_MULTICAST
) {
569 err
= __hw_addr_create_ex(&dev
->mc
, addr
, dev
->addr_len
,
570 NETDEV_HW_ADDR_T_MULTICAST
, true, false);
572 __dev_set_rx_mode(dev
);
574 netif_addr_unlock_bh(dev
);
577 EXPORT_SYMBOL(dev_mc_add_excl
);
579 static int __dev_mc_add(struct net_device
*dev
, const unsigned char *addr
,
584 netif_addr_lock_bh(dev
);
585 err
= __hw_addr_add_ex(&dev
->mc
, addr
, dev
->addr_len
,
586 NETDEV_HW_ADDR_T_MULTICAST
, global
, false, 0);
588 __dev_set_rx_mode(dev
);
589 netif_addr_unlock_bh(dev
);
593 * dev_mc_add - Add a multicast address
595 * @addr: address to add
597 * Add a multicast address to the device or increase
598 * the reference count if it already exists.
600 int dev_mc_add(struct net_device
*dev
, const unsigned char *addr
)
602 return __dev_mc_add(dev
, addr
, false);
604 EXPORT_SYMBOL(dev_mc_add
);
607 * dev_mc_add_global - Add a global multicast address
609 * @addr: address to add
611 * Add a global multicast address to the device.
613 int dev_mc_add_global(struct net_device
*dev
, const unsigned char *addr
)
615 return __dev_mc_add(dev
, addr
, true);
617 EXPORT_SYMBOL(dev_mc_add_global
);
619 static int __dev_mc_del(struct net_device
*dev
, const unsigned char *addr
,
624 netif_addr_lock_bh(dev
);
625 err
= __hw_addr_del_ex(&dev
->mc
, addr
, dev
->addr_len
,
626 NETDEV_HW_ADDR_T_MULTICAST
, global
, false);
628 __dev_set_rx_mode(dev
);
629 netif_addr_unlock_bh(dev
);
634 * dev_mc_del - Delete a multicast address.
636 * @addr: address to delete
638 * Release reference to a multicast address and remove it
639 * from the device if the reference count drops to zero.
641 int dev_mc_del(struct net_device
*dev
, const unsigned char *addr
)
643 return __dev_mc_del(dev
, addr
, false);
645 EXPORT_SYMBOL(dev_mc_del
);
648 * dev_mc_del_global - Delete a global multicast address.
650 * @addr: address to delete
652 * Release reference to a multicast address and remove it
653 * from the device if the reference count drops to zero.
655 int dev_mc_del_global(struct net_device
*dev
, const unsigned char *addr
)
657 return __dev_mc_del(dev
, addr
, true);
659 EXPORT_SYMBOL(dev_mc_del_global
);
662 * dev_mc_sync - Synchronize device's multicast list to another device
663 * @to: destination device
664 * @from: source device
666 * Add newly added addresses to the destination device and release
667 * addresses that have no users left. The source device must be
668 * locked by netif_addr_lock_bh.
670 * This function is intended to be called from the ndo_set_rx_mode
671 * function of layered software devices.
673 int dev_mc_sync(struct net_device
*to
, struct net_device
*from
)
677 if (to
->addr_len
!= from
->addr_len
)
680 netif_addr_lock_nested(to
);
681 err
= __hw_addr_sync(&to
->mc
, &from
->mc
, to
->addr_len
);
683 __dev_set_rx_mode(to
);
684 netif_addr_unlock(to
);
687 EXPORT_SYMBOL(dev_mc_sync
);
690 * dev_mc_sync_multiple - Synchronize device's multicast list to another
691 * device, but allow for multiple calls to sync to multiple devices.
692 * @to: destination device
693 * @from: source device
695 * Add newly added addresses to the destination device and release
696 * addresses that have no users left. The source device must be
697 * locked by netif_addr_lock_bh.
699 * This function is intended to be called from the ndo_set_rx_mode
700 * function of layered software devices. It allows for a single
701 * source device to be synced to multiple destination devices.
703 int dev_mc_sync_multiple(struct net_device
*to
, struct net_device
*from
)
707 if (to
->addr_len
!= from
->addr_len
)
710 netif_addr_lock_nested(to
);
711 err
= __hw_addr_sync_multiple(&to
->mc
, &from
->mc
, to
->addr_len
);
713 __dev_set_rx_mode(to
);
714 netif_addr_unlock(to
);
717 EXPORT_SYMBOL(dev_mc_sync_multiple
);
720 * dev_mc_unsync - Remove synchronized addresses from the destination device
721 * @to: destination device
722 * @from: source device
724 * Remove all addresses that were added to the destination device by
725 * dev_mc_sync(). This function is intended to be called from the
726 * dev->stop function of layered software devices.
728 void dev_mc_unsync(struct net_device
*to
, struct net_device
*from
)
730 if (to
->addr_len
!= from
->addr_len
)
733 netif_addr_lock_bh(from
);
734 netif_addr_lock_nested(to
);
735 __hw_addr_unsync(&to
->mc
, &from
->mc
, to
->addr_len
);
736 __dev_set_rx_mode(to
);
737 netif_addr_unlock(to
);
738 netif_addr_unlock_bh(from
);
740 EXPORT_SYMBOL(dev_mc_unsync
);
743 * dev_mc_flush - Flush multicast addresses
746 * Flush multicast addresses.
748 void dev_mc_flush(struct net_device
*dev
)
750 netif_addr_lock_bh(dev
);
751 __hw_addr_flush(&dev
->mc
);
752 netif_addr_unlock_bh(dev
);
754 EXPORT_SYMBOL(dev_mc_flush
);
757 * dev_mc_flush - Init multicast address list
760 * Init multicast address list.
762 void dev_mc_init(struct net_device
*dev
)
764 __hw_addr_init(&dev
->mc
);
766 EXPORT_SYMBOL(dev_mc_init
);