blob: b5abe26f7b4c45751309a3874d3fd9f8a0f2f324 [file] [log] [blame]
Arvid Brodin70ebe4a2014-07-04 23:34:38 +02001/* Copyright 2011-2014 Autronica Fire and Security AS
Arvid Brodinf4214362013-10-30 21:10:47 +01002 *
3 * This program is free software; you can redistribute it and/or modify it
4 * under the terms of the GNU General Public License as published by the Free
5 * Software Foundation; either version 2 of the License, or (at your option)
6 * any later version.
7 *
8 * Author(s):
Arvid Brodin70ebe4a2014-07-04 23:34:38 +02009 * 2011-2014 Arvid Brodin, arvid.brodin@alten.se
Arvid Brodinf4214362013-10-30 21:10:47 +010010 */
11
12#include <linux/netdevice.h>
13#include <linux/rculist.h>
14#include <linux/timer.h>
15#include <linux/etherdevice.h>
16#include "hsr_main.h"
17#include "hsr_device.h"
18#include "hsr_netlink.h"
19#include "hsr_framereg.h"
Arvid Brodin51f3c602014-07-04 23:37:27 +020020#include "hsr_slave.h"
Arvid Brodinf4214362013-10-30 21:10:47 +010021
22
23/* List of all registered virtual HSR devices */
24static LIST_HEAD(hsr_list);
25
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020026void register_hsr_master(struct hsr_priv *hsr)
Arvid Brodinf4214362013-10-30 21:10:47 +010027{
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020028 list_add_tail_rcu(&hsr->hsr_list, &hsr_list);
Arvid Brodinf4214362013-10-30 21:10:47 +010029}
30
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020031void unregister_hsr_master(struct hsr_priv *hsr)
Arvid Brodinf4214362013-10-30 21:10:47 +010032{
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020033 struct hsr_priv *hsr_it;
Arvid Brodinf4214362013-10-30 21:10:47 +010034
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020035 list_for_each_entry(hsr_it, &hsr_list, hsr_list)
36 if (hsr_it == hsr) {
37 list_del_rcu(&hsr_it->hsr_list);
Arvid Brodinf4214362013-10-30 21:10:47 +010038 return;
39 }
40}
41
42bool is_hsr_slave(struct net_device *dev)
43{
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020044 struct hsr_priv *hsr_it;
Arvid Brodinf4214362013-10-30 21:10:47 +010045
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020046 list_for_each_entry_rcu(hsr_it, &hsr_list, hsr_list) {
47 if (dev == hsr_it->slave[0])
Arvid Brodinf4214362013-10-30 21:10:47 +010048 return true;
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020049 if (dev == hsr_it->slave[1])
Arvid Brodinf4214362013-10-30 21:10:47 +010050 return true;
51 }
52
53 return false;
54}
55
Arvid Brodinf4214362013-10-30 21:10:47 +010056/* If dev is a HSR slave device, return the virtual master device. Return NULL
57 * otherwise.
58 */
Arvid Brodin81ba6af2014-07-04 23:35:24 +020059struct hsr_priv *get_hsr_master(struct net_device *dev)
Arvid Brodinf4214362013-10-30 21:10:47 +010060{
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020061 struct hsr_priv *hsr;
Arvid Brodinf4214362013-10-30 21:10:47 +010062
63 rcu_read_lock();
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020064 list_for_each_entry_rcu(hsr, &hsr_list, hsr_list)
65 if ((dev == hsr->slave[0]) ||
66 (dev == hsr->slave[1])) {
Arvid Brodinf4214362013-10-30 21:10:47 +010067 rcu_read_unlock();
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020068 return hsr;
Arvid Brodinf4214362013-10-30 21:10:47 +010069 }
70
71 rcu_read_unlock();
72 return NULL;
73}
74
Arvid Brodinf4214362013-10-30 21:10:47 +010075/* If dev is a HSR slave device, return the other slave device. Return NULL
76 * otherwise.
77 */
Arvid Brodin81ba6af2014-07-04 23:35:24 +020078struct net_device *get_other_slave(struct hsr_priv *hsr,
79 struct net_device *dev)
Arvid Brodinf4214362013-10-30 21:10:47 +010080{
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020081 if (dev == hsr->slave[0])
82 return hsr->slave[1];
83 if (dev == hsr->slave[1])
84 return hsr->slave[0];
Arvid Brodinf4214362013-10-30 21:10:47 +010085
86 return NULL;
87}
88
89
90static int hsr_netdev_notify(struct notifier_block *nb, unsigned long event,
91 void *ptr)
92{
93 struct net_device *slave, *other_slave;
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020094 struct hsr_priv *hsr;
Arvid Brodinf4214362013-10-30 21:10:47 +010095 int mtu_max;
96 int res;
97 struct net_device *dev;
98
99 dev = netdev_notifier_info_to_dev(ptr);
100
Arvid Brodin70ebe4a2014-07-04 23:34:38 +0200101 hsr = get_hsr_master(dev);
102 if (hsr) {
Arvid Brodinf4214362013-10-30 21:10:47 +0100103 /* dev is a slave device */
104 slave = dev;
Arvid Brodin70ebe4a2014-07-04 23:34:38 +0200105 other_slave = get_other_slave(hsr, slave);
Arvid Brodinf4214362013-10-30 21:10:47 +0100106 } else {
107 if (!is_hsr_master(dev))
108 return NOTIFY_DONE;
Arvid Brodin70ebe4a2014-07-04 23:34:38 +0200109 hsr = netdev_priv(dev);
110 slave = hsr->slave[0];
111 other_slave = hsr->slave[1];
Arvid Brodinf4214362013-10-30 21:10:47 +0100112 }
113
114 switch (event) {
115 case NETDEV_UP: /* Administrative state DOWN */
116 case NETDEV_DOWN: /* Administrative state UP */
117 case NETDEV_CHANGE: /* Link (carrier) state changes */
Arvid Brodine9aae562014-07-04 23:36:40 +0200118 hsr_check_carrier_and_operstate(hsr);
Arvid Brodinf4214362013-10-30 21:10:47 +0100119 break;
120 case NETDEV_CHANGEADDR:
121
122 /* This should not happen since there's no ndo_set_mac_address()
123 * for HSR devices - i.e. not supported.
124 */
Arvid Brodin70ebe4a2014-07-04 23:34:38 +0200125 if (dev == hsr->dev)
Arvid Brodinf4214362013-10-30 21:10:47 +0100126 break;
127
Arvid Brodin51f3c602014-07-04 23:37:27 +0200128 if (dev == hsr->slave[0]) {
129 ether_addr_copy(hsr->dev->dev_addr, dev->dev_addr);
130 call_netdevice_notifiers(NETDEV_CHANGEADDR, hsr->dev);
131 }
Arvid Brodinf4214362013-10-30 21:10:47 +0100132
133 /* Make sure we recognize frames from ourselves in hsr_rcv() */
Arvid Brodin51f3c602014-07-04 23:37:27 +0200134 other_slave = hsr->slave[1];
Arvid Brodin70ebe4a2014-07-04 23:34:38 +0200135 res = hsr_create_self_node(&hsr->self_node_db,
136 hsr->dev->dev_addr,
Arvid Brodin51f3c602014-07-04 23:37:27 +0200137 other_slave ?
138 other_slave->dev_addr :
Arvid Brodin70ebe4a2014-07-04 23:34:38 +0200139 hsr->dev->dev_addr);
Arvid Brodinf4214362013-10-30 21:10:47 +0100140 if (res)
Arvid Brodin70ebe4a2014-07-04 23:34:38 +0200141 netdev_warn(hsr->dev,
Arvid Brodinf4214362013-10-30 21:10:47 +0100142 "Could not update HSR node address.\n");
Arvid Brodinf4214362013-10-30 21:10:47 +0100143 break;
144 case NETDEV_CHANGEMTU:
Arvid Brodin70ebe4a2014-07-04 23:34:38 +0200145 if (dev == hsr->dev)
Arvid Brodinf4214362013-10-30 21:10:47 +0100146 break; /* Handled in ndo_change_mtu() */
Arvid Brodin70ebe4a2014-07-04 23:34:38 +0200147 mtu_max = hsr_get_max_mtu(hsr);
148 if (hsr->dev->mtu > mtu_max)
149 dev_set_mtu(hsr->dev, mtu_max);
Arvid Brodinf4214362013-10-30 21:10:47 +0100150 break;
151 case NETDEV_UNREGISTER:
Arvid Brodin51f3c602014-07-04 23:37:27 +0200152 if (dev == hsr->slave[0]) {
Arvid Brodin70ebe4a2014-07-04 23:34:38 +0200153 hsr->slave[0] = NULL;
Arvid Brodin51f3c602014-07-04 23:37:27 +0200154 hsr_del_slave(hsr, 0);
155 }
156 if (dev == hsr->slave[1]) {
Arvid Brodin70ebe4a2014-07-04 23:34:38 +0200157 hsr->slave[1] = NULL;
Arvid Brodin51f3c602014-07-04 23:37:27 +0200158 hsr_del_slave(hsr, 1);
159 }
Arvid Brodinf4214362013-10-30 21:10:47 +0100160
161 /* There should really be a way to set a new slave device... */
162
163 break;
164 case NETDEV_PRE_TYPE_CHANGE:
165 /* HSR works only on Ethernet devices. Refuse slave to change
166 * its type.
167 */
168 return NOTIFY_BAD;
169 }
170
171 return NOTIFY_DONE;
172}
173
174
Arvid Brodinf4214362013-10-30 21:10:47 +0100175static struct notifier_block hsr_nb = {
176 .notifier_call = hsr_netdev_notify, /* Slave event notifications */
177};
178
179
180static int __init hsr_init(void)
181{
182 int res;
183
Arvid Brodin70ebe4a2014-07-04 23:34:38 +0200184 BUILD_BUG_ON(sizeof(struct hsr_tag) != HSR_HLEN);
Arvid Brodinf4214362013-10-30 21:10:47 +0100185
Arvid Brodinf4214362013-10-30 21:10:47 +0100186 register_netdevice_notifier(&hsr_nb);
Arvid Brodinf4214362013-10-30 21:10:47 +0100187 res = hsr_netlink_init();
188
189 return res;
190}
191
192static void __exit hsr_exit(void)
193{
194 unregister_netdevice_notifier(&hsr_nb);
Arvid Brodinf4214362013-10-30 21:10:47 +0100195 hsr_netlink_exit();
Arvid Brodinf4214362013-10-30 21:10:47 +0100196}
197
198module_init(hsr_init);
199module_exit(hsr_exit);
200MODULE_LICENSE("GPL");