blob: 13b2190e6556e859570e52fc67f286f0f35aa7a8 [file] [log] [blame]
Murali Karicheri0e7623b2019-04-05 13:31:34 -04001// SPDX-License-Identifier: GPL-2.0
Arvid Brodin70ebe4a2014-07-04 23:34:38 +02002/* Copyright 2011-2014 Autronica Fire and Security AS
Arvid Brodinf4214362013-10-30 21:10:47 +01003 *
Arvid Brodinf4214362013-10-30 21:10:47 +01004 * Author(s):
Arvid Brodin70ebe4a2014-07-04 23:34:38 +02005 * 2011-2014 Arvid Brodin, arvid.brodin@alten.se
Arvid Brodinf4214362013-10-30 21:10:47 +01006 *
7 * The HSR spec says never to forward the same frame twice on the same
8 * interface. A frame is identified by its source MAC address and its HSR
9 * sequence number. This code keeps track of senders and their sequence numbers
10 * to allow filtering of duplicate frames, and to detect HSR ring errors.
Murali Karicheri8f4c0e02020-07-22 10:40:16 -040011 * Same code handles filtering of duplicates for PRP as well.
Arvid Brodinf4214362013-10-30 21:10:47 +010012 */
13
14#include <linux/if_ether.h>
15#include <linux/etherdevice.h>
16#include <linux/slab.h>
17#include <linux/rculist.h>
18#include "hsr_main.h"
19#include "hsr_framereg.h"
20#include "hsr_netlink.h"
21
Arvid Brodinf4214362013-10-30 21:10:47 +010022/* TODO: use hash lists for mac addresses (linux/jhash.h)? */
23
Arvid Brodinf266a682014-07-04 23:41:03 +020024/* seq_nr_after(a, b) - return true if a is after (higher in sequence than) b,
25 * false otherwise.
26 */
27static bool seq_nr_after(u16 a, u16 b)
28{
29 /* Remove inconsistency where
30 * seq_nr_after(a, b) == seq_nr_before(a, b)
31 */
Murali Karicheri5fa96772019-04-05 13:31:29 -040032 if ((int)b - a == 32768)
Arvid Brodinf266a682014-07-04 23:41:03 +020033 return false;
34
Murali Karicheri5fa96772019-04-05 13:31:29 -040035 return (((s16)(b - a)) < 0);
Arvid Brodinf266a682014-07-04 23:41:03 +020036}
Murali Karicheri9f73c2b2019-04-05 13:31:33 -040037
Arvid Brodinf266a682014-07-04 23:41:03 +020038#define seq_nr_before(a, b) seq_nr_after((b), (a))
Arvid Brodinf266a682014-07-04 23:41:03 +020039#define seq_nr_before_or_eq(a, b) (!seq_nr_after((a), (b)))
40
Arvid Brodinf266a682014-07-04 23:41:03 +020041bool hsr_addr_is_self(struct hsr_priv *hsr, unsigned char *addr)
42{
43 struct hsr_node *node;
44
45 node = list_first_or_null_rcu(&hsr->self_node_db, struct hsr_node,
46 mac_list);
47 if (!node) {
48 WARN_ONCE(1, "HSR: No self node\n");
49 return false;
50 }
51
Murali Karicherib1b4aa92019-04-05 13:31:32 -040052 if (ether_addr_equal(addr, node->macaddress_A))
Arvid Brodinf266a682014-07-04 23:41:03 +020053 return true;
Murali Karicherib1b4aa92019-04-05 13:31:32 -040054 if (ether_addr_equal(addr, node->macaddress_B))
Arvid Brodinf266a682014-07-04 23:41:03 +020055 return true;
56
57 return false;
58}
Arvid Brodinf4214362013-10-30 21:10:47 +010059
60/* Search for mac entry. Caller must hold rcu read lock.
61 */
Murali Karicherib1b4aa92019-04-05 13:31:32 -040062static struct hsr_node *find_node_by_addr_A(struct list_head *node_db,
63 const unsigned char addr[ETH_ALEN])
Arvid Brodinf4214362013-10-30 21:10:47 +010064{
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020065 struct hsr_node *node;
Arvid Brodinf4214362013-10-30 21:10:47 +010066
67 list_for_each_entry_rcu(node, node_db, mac_list) {
Murali Karicherib1b4aa92019-04-05 13:31:32 -040068 if (ether_addr_equal(node->macaddress_A, addr))
Arvid Brodinf4214362013-10-30 21:10:47 +010069 return node;
70 }
71
72 return NULL;
73}
74
Arvid Brodinf4214362013-10-30 21:10:47 +010075/* Helper for device init; the self_node_db is used in hsr_rcv() to recognize
76 * frames from self that's been looped over the HSR ring.
77 */
Taehee Yoo92a35672019-12-22 11:26:54 +000078int hsr_create_self_node(struct hsr_priv *hsr,
Arvid Brodinf4214362013-10-30 21:10:47 +010079 unsigned char addr_a[ETH_ALEN],
80 unsigned char addr_b[ETH_ALEN])
81{
Taehee Yoo92a35672019-12-22 11:26:54 +000082 struct list_head *self_node_db = &hsr->self_node_db;
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020083 struct hsr_node *node, *oldnode;
Arvid Brodinf4214362013-10-30 21:10:47 +010084
85 node = kmalloc(sizeof(*node), GFP_KERNEL);
86 if (!node)
87 return -ENOMEM;
88
Murali Karicherib1b4aa92019-04-05 13:31:32 -040089 ether_addr_copy(node->macaddress_A, addr_a);
90 ether_addr_copy(node->macaddress_B, addr_b);
Arvid Brodinf4214362013-10-30 21:10:47 +010091
Taehee Yoo92a35672019-12-22 11:26:54 +000092 spin_lock_bh(&hsr->list_lock);
Arvid Brodinf4214362013-10-30 21:10:47 +010093 oldnode = list_first_or_null_rcu(self_node_db,
Murali Karicheri4fe25bd2019-04-05 13:31:26 -040094 struct hsr_node, mac_list);
Arvid Brodinf4214362013-10-30 21:10:47 +010095 if (oldnode) {
96 list_replace_rcu(&oldnode->mac_list, &node->mac_list);
Taehee Yoo92a35672019-12-22 11:26:54 +000097 spin_unlock_bh(&hsr->list_lock);
98 kfree_rcu(oldnode, rcu_head);
Arvid Brodinf4214362013-10-30 21:10:47 +010099 } else {
Arvid Brodinf4214362013-10-30 21:10:47 +0100100 list_add_tail_rcu(&node->mac_list, self_node_db);
Taehee Yoo92a35672019-12-22 11:26:54 +0000101 spin_unlock_bh(&hsr->list_lock);
Arvid Brodinf4214362013-10-30 21:10:47 +0100102 }
103
104 return 0;
105}
106
Taehee Yoo92a35672019-12-22 11:26:54 +0000107void hsr_del_self_node(struct hsr_priv *hsr)
Mao Wenan6caabe72019-03-06 22:45:01 +0800108{
Taehee Yoo92a35672019-12-22 11:26:54 +0000109 struct list_head *self_node_db = &hsr->self_node_db;
Mao Wenan6caabe72019-03-06 22:45:01 +0800110 struct hsr_node *node;
111
Taehee Yoo92a35672019-12-22 11:26:54 +0000112 spin_lock_bh(&hsr->list_lock);
Mao Wenan6caabe72019-03-06 22:45:01 +0800113 node = list_first_or_null_rcu(self_node_db, struct hsr_node, mac_list);
Mao Wenan6caabe72019-03-06 22:45:01 +0800114 if (node) {
115 list_del_rcu(&node->mac_list);
Taehee Yoo92a35672019-12-22 11:26:54 +0000116 kfree_rcu(node, rcu_head);
Mao Wenan6caabe72019-03-06 22:45:01 +0800117 }
Taehee Yoo92a35672019-12-22 11:26:54 +0000118 spin_unlock_bh(&hsr->list_lock);
Mao Wenan6caabe72019-03-06 22:45:01 +0800119}
Arvid Brodinf4214362013-10-30 21:10:47 +0100120
Cong Wangb9a1e622019-07-03 17:21:13 -0700121void hsr_del_nodes(struct list_head *node_db)
122{
123 struct hsr_node *node;
124 struct hsr_node *tmp;
125
126 list_for_each_entry_safe(node, tmp, node_db, mac_list)
127 kfree(node);
128}
129
Murali Karicherib1b4aa92019-04-05 13:31:32 -0400130/* Allocate an hsr_node and add it to node_db. 'addr' is the node's address_A;
Arvid Brodinf266a682014-07-04 23:41:03 +0200131 * seq_out is used to initialize filtering of outgoing duplicate frames
132 * originating from the newly added node.
Arvid Brodinf4214362013-10-30 21:10:47 +0100133 */
Taehee Yoo92a35672019-12-22 11:26:54 +0000134static struct hsr_node *hsr_add_node(struct hsr_priv *hsr,
135 struct list_head *node_db,
136 unsigned char addr[],
137 u16 seq_out)
Arvid Brodinf4214362013-10-30 21:10:47 +0100138{
Taehee Yoo92a35672019-12-22 11:26:54 +0000139 struct hsr_node *new_node, *node;
Arvid Brodinf4214362013-10-30 21:10:47 +0100140 unsigned long now;
Arvid Brodinf266a682014-07-04 23:41:03 +0200141 int i;
Arvid Brodinf4214362013-10-30 21:10:47 +0100142
Taehee Yoo92a35672019-12-22 11:26:54 +0000143 new_node = kzalloc(sizeof(*new_node), GFP_ATOMIC);
144 if (!new_node)
Arvid Brodinf4214362013-10-30 21:10:47 +0100145 return NULL;
146
Taehee Yoo92a35672019-12-22 11:26:54 +0000147 ether_addr_copy(new_node->macaddress_A, addr);
Arvid Brodinf4214362013-10-30 21:10:47 +0100148
149 /* We are only interested in time diffs here, so use current jiffies
150 * as initialization. (0 could trigger an spurious ring error warning).
151 */
152 now = jiffies;
Arvid Brodinc5a75912014-07-04 23:38:05 +0200153 for (i = 0; i < HSR_PT_PORTS; i++)
Taehee Yoo92a35672019-12-22 11:26:54 +0000154 new_node->time_in[i] = now;
Arvid Brodinc5a75912014-07-04 23:38:05 +0200155 for (i = 0; i < HSR_PT_PORTS; i++)
Taehee Yoo92a35672019-12-22 11:26:54 +0000156 new_node->seq_out[i] = seq_out;
Arvid Brodinf4214362013-10-30 21:10:47 +0100157
Taehee Yoo92a35672019-12-22 11:26:54 +0000158 spin_lock_bh(&hsr->list_lock);
Amol Grovera7a94562020-02-19 15:30:11 +0530159 list_for_each_entry_rcu(node, node_db, mac_list,
160 lockdep_is_held(&hsr->list_lock)) {
Taehee Yoo92a35672019-12-22 11:26:54 +0000161 if (ether_addr_equal(node->macaddress_A, addr))
162 goto out;
163 if (ether_addr_equal(node->macaddress_B, addr))
164 goto out;
165 }
166 list_add_tail_rcu(&new_node->mac_list, node_db);
167 spin_unlock_bh(&hsr->list_lock);
168 return new_node;
169out:
170 spin_unlock_bh(&hsr->list_lock);
171 kfree(new_node);
Arvid Brodinf4214362013-10-30 21:10:47 +0100172 return node;
173}
174
Arvid Brodinf266a682014-07-04 23:41:03 +0200175/* Get the hsr_node from which 'skb' was sent.
176 */
Karicheri, Muralidharan675c8da2017-06-12 15:06:26 -0400177struct hsr_node *hsr_get_node(struct hsr_port *port, struct sk_buff *skb,
Arvid Brodinf266a682014-07-04 23:41:03 +0200178 bool is_sup)
179{
Karicheri, Muralidharan675c8da2017-06-12 15:06:26 -0400180 struct list_head *node_db = &port->hsr->node_db;
Taehee Yoo92a35672019-12-22 11:26:54 +0000181 struct hsr_priv *hsr = port->hsr;
Arvid Brodinf266a682014-07-04 23:41:03 +0200182 struct hsr_node *node;
183 struct ethhdr *ethhdr;
184 u16 seq_out;
185
186 if (!skb_mac_header_was_set(skb))
187 return NULL;
188
Murali Karicheri5fa96772019-04-05 13:31:29 -0400189 ethhdr = (struct ethhdr *)skb_mac_header(skb);
Arvid Brodinf266a682014-07-04 23:41:03 +0200190
191 list_for_each_entry_rcu(node, node_db, mac_list) {
Murali Karicherib1b4aa92019-04-05 13:31:32 -0400192 if (ether_addr_equal(node->macaddress_A, ethhdr->h_source))
Arvid Brodinf266a682014-07-04 23:41:03 +0200193 return node;
Murali Karicherib1b4aa92019-04-05 13:31:32 -0400194 if (ether_addr_equal(node->macaddress_B, ethhdr->h_source))
Arvid Brodinf266a682014-07-04 23:41:03 +0200195 return node;
196 }
197
Peter Heiseee1c2792016-04-13 13:52:22 +0200198 /* Everyone may create a node entry, connected node to a HSR device. */
Arvid Brodinf266a682014-07-04 23:41:03 +0200199
Murali Karicheri05947782019-04-05 13:31:30 -0400200 if (ethhdr->h_proto == htons(ETH_P_PRP) ||
201 ethhdr->h_proto == htons(ETH_P_HSR)) {
Arvid Brodinf266a682014-07-04 23:41:03 +0200202 /* Use the existing sequence_nr from the tag as starting point
203 * for filtering duplicate frames.
204 */
205 seq_out = hsr_get_skb_sequence_nr(skb) - 1;
206 } else {
Karicheri, Muralidharan675c8da2017-06-12 15:06:26 -0400207 /* this is called also for frames from master port and
208 * so warn only for non master ports
209 */
210 if (port->type != HSR_PT_MASTER)
211 WARN_ONCE(1, "%s: Non-HSR frame\n", __func__);
Peter Heiseee1c2792016-04-13 13:52:22 +0200212 seq_out = HSR_SEQNR_START;
Arvid Brodinf266a682014-07-04 23:41:03 +0200213 }
214
Taehee Yoo92a35672019-12-22 11:26:54 +0000215 return hsr_add_node(hsr, node_db, ethhdr->h_source, seq_out);
Arvid Brodinf266a682014-07-04 23:41:03 +0200216}
217
Murali Karicherib1b4aa92019-04-05 13:31:32 -0400218/* Use the Supervision frame's info about an eventual macaddress_B for merging
219 * nodes that has previously had their macaddress_B registered as a separate
Arvid Brodinf266a682014-07-04 23:41:03 +0200220 * node.
221 */
222void hsr_handle_sup_frame(struct sk_buff *skb, struct hsr_node *node_curr,
223 struct hsr_port *port_rcv)
224{
Taehee Yoo92a35672019-12-22 11:26:54 +0000225 struct hsr_priv *hsr = port_rcv->hsr;
Arvid Brodinf266a682014-07-04 23:41:03 +0200226 struct hsr_sup_payload *hsr_sp;
Taehee Yoo92a35672019-12-22 11:26:54 +0000227 struct hsr_node *node_real;
Arvid Brodinf266a682014-07-04 23:41:03 +0200228 struct list_head *node_db;
Taehee Yoo92a35672019-12-22 11:26:54 +0000229 struct ethhdr *ethhdr;
Arvid Brodinf266a682014-07-04 23:41:03 +0200230 int i;
231
Murali Karicheri5fa96772019-04-05 13:31:29 -0400232 ethhdr = (struct ethhdr *)skb_mac_header(skb);
Arvid Brodinf266a682014-07-04 23:41:03 +0200233
Peter Heiseee1c2792016-04-13 13:52:22 +0200234 /* Leave the ethernet header. */
235 skb_pull(skb, sizeof(struct ethhdr));
236
237 /* And leave the HSR tag. */
238 if (ethhdr->h_proto == htons(ETH_P_HSR))
239 skb_pull(skb, sizeof(struct hsr_tag));
240
241 /* And leave the HSR sup tag. */
242 skb_pull(skb, sizeof(struct hsr_sup_tag));
243
Murali Karicheri5fa96772019-04-05 13:31:29 -0400244 hsr_sp = (struct hsr_sup_payload *)skb->data;
Arvid Brodinf266a682014-07-04 23:41:03 +0200245
Murali Karicherib1b4aa92019-04-05 13:31:32 -0400246 /* Merge node_curr (registered on macaddress_B) into node_real */
Arvid Brodinf266a682014-07-04 23:41:03 +0200247 node_db = &port_rcv->hsr->node_db;
Murali Karicherib1b4aa92019-04-05 13:31:32 -0400248 node_real = find_node_by_addr_A(node_db, hsr_sp->macaddress_A);
Arvid Brodinf266a682014-07-04 23:41:03 +0200249 if (!node_real)
250 /* No frame received from AddrA of this node yet */
Taehee Yoo92a35672019-12-22 11:26:54 +0000251 node_real = hsr_add_node(hsr, node_db, hsr_sp->macaddress_A,
Arvid Brodinf266a682014-07-04 23:41:03 +0200252 HSR_SEQNR_START - 1);
253 if (!node_real)
254 goto done; /* No mem */
255 if (node_real == node_curr)
256 /* Node has already been merged */
257 goto done;
258
Murali Karicherib1b4aa92019-04-05 13:31:32 -0400259 ether_addr_copy(node_real->macaddress_B, ethhdr->h_source);
Arvid Brodinf266a682014-07-04 23:41:03 +0200260 for (i = 0; i < HSR_PT_PORTS; i++) {
261 if (!node_curr->time_in_stale[i] &&
262 time_after(node_curr->time_in[i], node_real->time_in[i])) {
263 node_real->time_in[i] = node_curr->time_in[i];
Murali Karicherid595b852019-04-05 13:31:23 -0400264 node_real->time_in_stale[i] =
265 node_curr->time_in_stale[i];
Arvid Brodinf266a682014-07-04 23:41:03 +0200266 }
267 if (seq_nr_after(node_curr->seq_out[i], node_real->seq_out[i]))
268 node_real->seq_out[i] = node_curr->seq_out[i];
269 }
Murali Karicherib1b4aa92019-04-05 13:31:32 -0400270 node_real->addr_B_port = port_rcv->type;
Arvid Brodinf266a682014-07-04 23:41:03 +0200271
Taehee Yoo92a35672019-12-22 11:26:54 +0000272 spin_lock_bh(&hsr->list_lock);
Arvid Brodinf266a682014-07-04 23:41:03 +0200273 list_del_rcu(&node_curr->mac_list);
Taehee Yoo92a35672019-12-22 11:26:54 +0000274 spin_unlock_bh(&hsr->list_lock);
Arvid Brodinf266a682014-07-04 23:41:03 +0200275 kfree_rcu(node_curr, rcu_head);
276
277done:
Peter Heiseee1c2792016-04-13 13:52:22 +0200278 skb_push(skb, sizeof(struct hsrv1_ethhdr_sp));
Arvid Brodinf266a682014-07-04 23:41:03 +0200279}
280
Arvid Brodinf4214362013-10-30 21:10:47 +0100281/* 'skb' is a frame meant for this host, that is to be passed to upper layers.
282 *
Arvid Brodinf266a682014-07-04 23:41:03 +0200283 * If the frame was sent by a node's B interface, replace the source
Murali Karicherib1b4aa92019-04-05 13:31:32 -0400284 * address with that node's "official" address (macaddress_A) so that upper
Arvid Brodinf4214362013-10-30 21:10:47 +0100285 * layers recognize where it came from.
286 */
Arvid Brodinf266a682014-07-04 23:41:03 +0200287void hsr_addr_subst_source(struct hsr_node *node, struct sk_buff *skb)
Arvid Brodinf4214362013-10-30 21:10:47 +0100288{
Arvid Brodinf4214362013-10-30 21:10:47 +0100289 if (!skb_mac_header_was_set(skb)) {
290 WARN_ONCE(1, "%s: Mac header not set\n", __func__);
291 return;
292 }
Arvid Brodinf4214362013-10-30 21:10:47 +0100293
Murali Karicherib1b4aa92019-04-05 13:31:32 -0400294 memcpy(&eth_hdr(skb)->h_source, node->macaddress_A, ETH_ALEN);
Arvid Brodinf4214362013-10-30 21:10:47 +0100295}
296
Arvid Brodinf4214362013-10-30 21:10:47 +0100297/* 'skb' is a frame meant for another host.
Arvid Brodinf266a682014-07-04 23:41:03 +0200298 * 'port' is the outgoing interface
Arvid Brodinf4214362013-10-30 21:10:47 +0100299 *
300 * Substitute the target (dest) MAC address if necessary, so the it matches the
301 * recipient interface MAC address, regardless of whether that is the
302 * recipient's A or B interface.
303 * This is needed to keep the packets flowing through switches that learn on
304 * which "side" the different interfaces are.
305 */
Arvid Brodinf266a682014-07-04 23:41:03 +0200306void hsr_addr_subst_dest(struct hsr_node *node_src, struct sk_buff *skb,
Arvid Brodinc5a75912014-07-04 23:38:05 +0200307 struct hsr_port *port)
Arvid Brodinf4214362013-10-30 21:10:47 +0100308{
Arvid Brodinf266a682014-07-04 23:41:03 +0200309 struct hsr_node *node_dst;
Arvid Brodinf4214362013-10-30 21:10:47 +0100310
Arvid Brodinf266a682014-07-04 23:41:03 +0200311 if (!skb_mac_header_was_set(skb)) {
312 WARN_ONCE(1, "%s: Mac header not set\n", __func__);
313 return;
314 }
315
316 if (!is_unicast_ether_addr(eth_hdr(skb)->h_dest))
317 return;
318
Murali Karicherib1b4aa92019-04-05 13:31:32 -0400319 node_dst = find_node_by_addr_A(&port->hsr->node_db,
320 eth_hdr(skb)->h_dest);
Arvid Brodinf266a682014-07-04 23:41:03 +0200321 if (!node_dst) {
Taehee Yoo4b793ac2020-02-28 18:01:46 +0000322 if (net_ratelimit())
323 netdev_err(skb->dev, "%s: Unknown node\n", __func__);
Arvid Brodinf266a682014-07-04 23:41:03 +0200324 return;
325 }
Murali Karicherib1b4aa92019-04-05 13:31:32 -0400326 if (port->type != node_dst->addr_B_port)
Arvid Brodinf266a682014-07-04 23:41:03 +0200327 return;
Arvid Brodinf266a682014-07-04 23:41:03 +0200328
Murali Karicherieea9f732020-07-17 10:55:10 -0400329 if (is_valid_ether_addr(node_dst->macaddress_B))
330 ether_addr_copy(eth_hdr(skb)->h_dest, node_dst->macaddress_B);
Arvid Brodinf4214362013-10-30 21:10:47 +0100331}
332
Arvid Brodinf266a682014-07-04 23:41:03 +0200333void hsr_register_frame_in(struct hsr_node *node, struct hsr_port *port,
334 u16 sequence_nr)
Arvid Brodinf4214362013-10-30 21:10:47 +0100335{
Arvid Brodinf266a682014-07-04 23:41:03 +0200336 /* Don't register incoming frames without a valid sequence number. This
337 * ensures entries of restarted nodes gets pruned so that they can
338 * re-register and resume communications.
Arvid Brodin213e3bc2013-11-29 23:37:07 +0100339 */
Arvid Brodinf266a682014-07-04 23:41:03 +0200340 if (seq_nr_before(sequence_nr, node->seq_out[port->type]))
341 return;
Arvid Brodinf4214362013-10-30 21:10:47 +0100342
Arvid Brodinc5a75912014-07-04 23:38:05 +0200343 node->time_in[port->type] = jiffies;
344 node->time_in_stale[port->type] = false;
Arvid Brodinf4214362013-10-30 21:10:47 +0100345}
346
Arvid Brodinf4214362013-10-30 21:10:47 +0100347/* 'skb' is a HSR Ethernet frame (with a HSR tag inserted), with a valid
348 * ethhdr->h_source address and skb->mac_header set.
349 *
350 * Return:
351 * 1 if frame can be shown to have been sent recently on this interface,
352 * 0 otherwise, or
353 * negative error code on error
354 */
Arvid Brodinf266a682014-07-04 23:41:03 +0200355int hsr_register_frame_out(struct hsr_port *port, struct hsr_node *node,
356 u16 sequence_nr)
Arvid Brodinf4214362013-10-30 21:10:47 +0100357{
Arvid Brodinc5a75912014-07-04 23:38:05 +0200358 if (seq_nr_before_or_eq(sequence_nr, node->seq_out[port->type]))
Arvid Brodinf4214362013-10-30 21:10:47 +0100359 return 1;
360
Arvid Brodinc5a75912014-07-04 23:38:05 +0200361 node->seq_out[port->type] = sequence_nr;
Arvid Brodinf4214362013-10-30 21:10:47 +0100362 return 0;
363}
364
Arvid Brodinc5a75912014-07-04 23:38:05 +0200365static struct hsr_port *get_late_port(struct hsr_priv *hsr,
366 struct hsr_node *node)
Arvid Brodinf4214362013-10-30 21:10:47 +0100367{
Arvid Brodinc5a75912014-07-04 23:38:05 +0200368 if (node->time_in_stale[HSR_PT_SLAVE_A])
369 return hsr_port_get_hsr(hsr, HSR_PT_SLAVE_A);
370 if (node->time_in_stale[HSR_PT_SLAVE_B])
371 return hsr_port_get_hsr(hsr, HSR_PT_SLAVE_B);
Arvid Brodinf4214362013-10-30 21:10:47 +0100372
Arvid Brodinc5a75912014-07-04 23:38:05 +0200373 if (time_after(node->time_in[HSR_PT_SLAVE_B],
374 node->time_in[HSR_PT_SLAVE_A] +
375 msecs_to_jiffies(MAX_SLAVE_DIFF)))
376 return hsr_port_get_hsr(hsr, HSR_PT_SLAVE_A);
377 if (time_after(node->time_in[HSR_PT_SLAVE_A],
378 node->time_in[HSR_PT_SLAVE_B] +
379 msecs_to_jiffies(MAX_SLAVE_DIFF)))
380 return hsr_port_get_hsr(hsr, HSR_PT_SLAVE_B);
Arvid Brodinf4214362013-10-30 21:10:47 +0100381
Arvid Brodinc5a75912014-07-04 23:38:05 +0200382 return NULL;
Arvid Brodinf4214362013-10-30 21:10:47 +0100383}
384
Arvid Brodinf4214362013-10-30 21:10:47 +0100385/* Remove stale sequence_nr records. Called by timer every
386 * HSR_LIFE_CHECK_INTERVAL (two seconds or so).
387 */
Kees Cookdda436b2017-10-24 01:46:16 -0700388void hsr_prune_nodes(struct timer_list *t)
Arvid Brodinf4214362013-10-30 21:10:47 +0100389{
Kees Cookdda436b2017-10-24 01:46:16 -0700390 struct hsr_priv *hsr = from_timer(hsr, t, prune_timer);
Arvid Brodin70ebe4a2014-07-04 23:34:38 +0200391 struct hsr_node *node;
Taehee Yoo92a35672019-12-22 11:26:54 +0000392 struct hsr_node *tmp;
Arvid Brodinc5a75912014-07-04 23:38:05 +0200393 struct hsr_port *port;
Arvid Brodinf4214362013-10-30 21:10:47 +0100394 unsigned long timestamp;
395 unsigned long time_a, time_b;
396
Taehee Yoo92a35672019-12-22 11:26:54 +0000397 spin_lock_bh(&hsr->list_lock);
398 list_for_each_entry_safe(node, tmp, &hsr->node_db, mac_list) {
Andreas Oetkend2daa122019-05-23 13:57:14 +0200399 /* Don't prune own node. Neither time_in[HSR_PT_SLAVE_A]
400 * nor time_in[HSR_PT_SLAVE_B], will ever be updated for
401 * the master port. Thus the master node will be repeatedly
402 * pruned leading to packet loss.
403 */
404 if (hsr_addr_is_self(hsr, node->macaddress_A))
405 continue;
406
Arvid Brodinf4214362013-10-30 21:10:47 +0100407 /* Shorthand */
Arvid Brodinc5a75912014-07-04 23:38:05 +0200408 time_a = node->time_in[HSR_PT_SLAVE_A];
409 time_b = node->time_in[HSR_PT_SLAVE_B];
Arvid Brodinf4214362013-10-30 21:10:47 +0100410
411 /* Check for timestamps old enough to risk wrap-around */
Murali Karicherid131fcc2019-04-05 13:31:31 -0400412 if (time_after(jiffies, time_a + MAX_JIFFY_OFFSET / 2))
Arvid Brodinc5a75912014-07-04 23:38:05 +0200413 node->time_in_stale[HSR_PT_SLAVE_A] = true;
Murali Karicherid131fcc2019-04-05 13:31:31 -0400414 if (time_after(jiffies, time_b + MAX_JIFFY_OFFSET / 2))
Arvid Brodinc5a75912014-07-04 23:38:05 +0200415 node->time_in_stale[HSR_PT_SLAVE_B] = true;
Arvid Brodinf4214362013-10-30 21:10:47 +0100416
417 /* Get age of newest frame from node.
418 * At least one time_in is OK here; nodes get pruned long
419 * before both time_ins can get stale
420 */
421 timestamp = time_a;
Arvid Brodinc5a75912014-07-04 23:38:05 +0200422 if (node->time_in_stale[HSR_PT_SLAVE_A] ||
423 (!node->time_in_stale[HSR_PT_SLAVE_B] &&
Arvid Brodinf4214362013-10-30 21:10:47 +0100424 time_after(time_b, time_a)))
425 timestamp = time_b;
426
427 /* Warn of ring error only as long as we get frames at all */
428 if (time_is_after_jiffies(timestamp +
Murali Karicherid131fcc2019-04-05 13:31:31 -0400429 msecs_to_jiffies(1.5 * MAX_SLAVE_DIFF))) {
Arvid Brodinc5a75912014-07-04 23:38:05 +0200430 rcu_read_lock();
431 port = get_late_port(hsr, node);
Murali Karicheri05ca6e62019-04-05 13:31:28 -0400432 if (port)
Murali Karicherib1b4aa92019-04-05 13:31:32 -0400433 hsr_nl_ringerror(hsr, node->macaddress_A, port);
Arvid Brodinc5a75912014-07-04 23:38:05 +0200434 rcu_read_unlock();
Arvid Brodinf4214362013-10-30 21:10:47 +0100435 }
436
437 /* Prune old entries */
438 if (time_is_before_jiffies(timestamp +
Murali Karicherid595b852019-04-05 13:31:23 -0400439 msecs_to_jiffies(HSR_NODE_FORGET_TIME))) {
Murali Karicherib1b4aa92019-04-05 13:31:32 -0400440 hsr_nl_nodedown(hsr, node->macaddress_A);
Arvid Brodinf4214362013-10-30 21:10:47 +0100441 list_del_rcu(&node->mac_list);
442 /* Note that we need to free this entry later: */
Wei Yongjun1aee6cc2013-12-16 14:05:50 +0800443 kfree_rcu(node, rcu_head);
Arvid Brodinf4214362013-10-30 21:10:47 +0100444 }
445 }
Taehee Yoo92a35672019-12-22 11:26:54 +0000446 spin_unlock_bh(&hsr->list_lock);
Aaron Kramer5150b452019-04-05 13:31:36 -0400447
448 /* Restart timer */
449 mod_timer(&hsr->prune_timer,
450 jiffies + msecs_to_jiffies(PRUNE_PERIOD));
Arvid Brodinf4214362013-10-30 21:10:47 +0100451}
452
Arvid Brodin70ebe4a2014-07-04 23:34:38 +0200453void *hsr_get_next_node(struct hsr_priv *hsr, void *_pos,
Arvid Brodinf4214362013-10-30 21:10:47 +0100454 unsigned char addr[ETH_ALEN])
455{
Arvid Brodin70ebe4a2014-07-04 23:34:38 +0200456 struct hsr_node *node;
Arvid Brodinf4214362013-10-30 21:10:47 +0100457
458 if (!_pos) {
Arvid Brodin70ebe4a2014-07-04 23:34:38 +0200459 node = list_first_or_null_rcu(&hsr->node_db,
460 struct hsr_node, mac_list);
Arvid Brodinf4214362013-10-30 21:10:47 +0100461 if (node)
Murali Karicherib1b4aa92019-04-05 13:31:32 -0400462 ether_addr_copy(addr, node->macaddress_A);
Arvid Brodinf4214362013-10-30 21:10:47 +0100463 return node;
464 }
465
466 node = _pos;
Arvid Brodin70ebe4a2014-07-04 23:34:38 +0200467 list_for_each_entry_continue_rcu(node, &hsr->node_db, mac_list) {
Murali Karicherib1b4aa92019-04-05 13:31:32 -0400468 ether_addr_copy(addr, node->macaddress_A);
Arvid Brodinf4214362013-10-30 21:10:47 +0100469 return node;
470 }
471
472 return NULL;
473}
474
Arvid Brodin70ebe4a2014-07-04 23:34:38 +0200475int hsr_get_node_data(struct hsr_priv *hsr,
Arvid Brodinf4214362013-10-30 21:10:47 +0100476 const unsigned char *addr,
477 unsigned char addr_b[ETH_ALEN],
478 unsigned int *addr_b_ifindex,
479 int *if1_age,
480 u16 *if1_seq,
481 int *if2_age,
482 u16 *if2_seq)
483{
Arvid Brodin70ebe4a2014-07-04 23:34:38 +0200484 struct hsr_node *node;
Arvid Brodinc5a75912014-07-04 23:38:05 +0200485 struct hsr_port *port;
Arvid Brodinf4214362013-10-30 21:10:47 +0100486 unsigned long tdiff;
487
Murali Karicherib1b4aa92019-04-05 13:31:32 -0400488 node = find_node_by_addr_A(&hsr->node_db, addr);
Taehee Yoo173756b2020-03-13 06:50:14 +0000489 if (!node)
490 return -ENOENT;
Arvid Brodinf4214362013-10-30 21:10:47 +0100491
Murali Karicherib1b4aa92019-04-05 13:31:32 -0400492 ether_addr_copy(addr_b, node->macaddress_B);
Arvid Brodinf4214362013-10-30 21:10:47 +0100493
Arvid Brodinc5a75912014-07-04 23:38:05 +0200494 tdiff = jiffies - node->time_in[HSR_PT_SLAVE_A];
495 if (node->time_in_stale[HSR_PT_SLAVE_A])
Arvid Brodinf4214362013-10-30 21:10:47 +0100496 *if1_age = INT_MAX;
497#if HZ <= MSEC_PER_SEC
498 else if (tdiff > msecs_to_jiffies(INT_MAX))
499 *if1_age = INT_MAX;
500#endif
501 else
502 *if1_age = jiffies_to_msecs(tdiff);
503
Arvid Brodinc5a75912014-07-04 23:38:05 +0200504 tdiff = jiffies - node->time_in[HSR_PT_SLAVE_B];
505 if (node->time_in_stale[HSR_PT_SLAVE_B])
Arvid Brodinf4214362013-10-30 21:10:47 +0100506 *if2_age = INT_MAX;
507#if HZ <= MSEC_PER_SEC
508 else if (tdiff > msecs_to_jiffies(INT_MAX))
509 *if2_age = INT_MAX;
510#endif
511 else
512 *if2_age = jiffies_to_msecs(tdiff);
513
514 /* Present sequence numbers as if they were incoming on interface */
Arvid Brodinc5a75912014-07-04 23:38:05 +0200515 *if1_seq = node->seq_out[HSR_PT_SLAVE_B];
516 *if2_seq = node->seq_out[HSR_PT_SLAVE_A];
Arvid Brodinf4214362013-10-30 21:10:47 +0100517
Murali Karicherib1b4aa92019-04-05 13:31:32 -0400518 if (node->addr_B_port != HSR_PT_NONE) {
519 port = hsr_port_get_hsr(hsr, node->addr_B_port);
Arvid Brodinc5a75912014-07-04 23:38:05 +0200520 *addr_b_ifindex = port->dev->ifindex;
521 } else {
Arvid Brodinf4214362013-10-30 21:10:47 +0100522 *addr_b_ifindex = -1;
Arvid Brodinc5a75912014-07-04 23:38:05 +0200523 }
Arvid Brodinf4214362013-10-30 21:10:47 +0100524
Arvid Brodinf4214362013-10-30 21:10:47 +0100525 return 0;
526}