1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright 2011-2014 Autronica Fire and Security AS
3 *
4 * Author(s):
5 * 2011-2014 Arvid Brodin, arvid.brodin@alten.se
6 *
7 * Frame router for HSR and PRP.
8 */
9
10 #include "hsr_forward.h"
11 #include <linux/types.h>
12 #include <linux/skbuff.h>
13 #include <linux/etherdevice.h>
14 #include <linux/if_vlan.h>
15 #include "hsr_main.h"
16 #include "hsr_framereg.h"
17
18 struct hsr_node;
19
20 /* The uses I can see for these HSR supervision frames are:
21 * 1) Use the frames that are sent after node initialization ("HSR_TLV.Type =
22 * 22") to reset any sequence_nr counters belonging to that node. Useful if
23 * the other node's counter has been reset for some reason.
24 * --
25 * Or not - resetting the counter and bridging the frame would create a
26 * loop, unfortunately.
27 *
28 * 2) Use the LifeCheck frames to detect ring breaks. I.e. if no LifeCheck
29 * frame is received from a particular node, we know something is wrong.
30 * We just register these (as with normal frames) and throw them away.
31 *
32 * 3) Allow different MAC addresses for the two slave interfaces, using the
33 * MacAddressA field.
34 */
is_supervision_frame(struct hsr_priv * hsr,struct sk_buff * skb)35 static bool is_supervision_frame(struct hsr_priv *hsr, struct sk_buff *skb)
36 {
37 struct ethhdr *eth_hdr;
38 struct hsr_sup_tag *hsr_sup_tag;
39 struct hsrv1_ethhdr_sp *hsr_V1_hdr;
40 struct hsr_sup_tlv *hsr_sup_tlv;
41 u16 total_length = 0;
42
43 WARN_ON_ONCE(!skb_mac_header_was_set(skb));
44 eth_hdr = (struct ethhdr *)skb_mac_header(skb);
45
46 /* Correct addr? */
47 if (!ether_addr_equal(eth_hdr->h_dest,
48 hsr->sup_multicast_addr))
49 return false;
50
51 /* Correct ether type?. */
52 if (!(eth_hdr->h_proto == htons(ETH_P_PRP) ||
53 eth_hdr->h_proto == htons(ETH_P_HSR)))
54 return false;
55
56 /* Get the supervision header from correct location. */
57 if (eth_hdr->h_proto == htons(ETH_P_HSR)) { /* Okay HSRv1. */
58 total_length = sizeof(struct hsrv1_ethhdr_sp);
59 if (!pskb_may_pull(skb, total_length))
60 return false;
61
62 hsr_V1_hdr = (struct hsrv1_ethhdr_sp *)skb_mac_header(skb);
63 if (hsr_V1_hdr->hsr.encap_proto != htons(ETH_P_PRP))
64 return false;
65
66 hsr_sup_tag = &hsr_V1_hdr->hsr_sup;
67 } else {
68 total_length = sizeof(struct hsrv0_ethhdr_sp);
69 if (!pskb_may_pull(skb, total_length))
70 return false;
71
72 hsr_sup_tag =
73 &((struct hsrv0_ethhdr_sp *)skb_mac_header(skb))->hsr_sup;
74 }
75
76 if (hsr_sup_tag->tlv.HSR_TLV_type != HSR_TLV_ANNOUNCE &&
77 hsr_sup_tag->tlv.HSR_TLV_type != HSR_TLV_LIFE_CHECK &&
78 hsr_sup_tag->tlv.HSR_TLV_type != PRP_TLV_LIFE_CHECK_DD &&
79 hsr_sup_tag->tlv.HSR_TLV_type != PRP_TLV_LIFE_CHECK_DA)
80 return false;
81 if (hsr_sup_tag->tlv.HSR_TLV_length != 12 &&
82 hsr_sup_tag->tlv.HSR_TLV_length != sizeof(struct hsr_sup_payload))
83 return false;
84
85 /* Get next tlv */
86 total_length += hsr_sup_tag->tlv.HSR_TLV_length;
87 if (!pskb_may_pull(skb, total_length + sizeof(struct hsr_sup_tlv)))
88 return false;
89 skb_pull(skb, total_length);
90 hsr_sup_tlv = (struct hsr_sup_tlv *)skb->data;
91 skb_push(skb, total_length);
92
93 /* if this is a redbox supervision frame we need to verify
94 * that more data is available
95 */
96 if (hsr_sup_tlv->HSR_TLV_type == PRP_TLV_REDBOX_MAC) {
97 /* tlv length must be a length of a mac address */
98 if (hsr_sup_tlv->HSR_TLV_length != sizeof(struct hsr_sup_payload))
99 return false;
100
101 /* make sure another tlv follows */
102 total_length += sizeof(struct hsr_sup_tlv) + hsr_sup_tlv->HSR_TLV_length;
103 if (!pskb_may_pull(skb, total_length + sizeof(struct hsr_sup_tlv)))
104 return false;
105
106 /* get next tlv */
107 skb_pull(skb, total_length);
108 hsr_sup_tlv = (struct hsr_sup_tlv *)skb->data;
109 skb_push(skb, total_length);
110 }
111
112 /* end of tlvs must follow at the end */
113 if (hsr_sup_tlv->HSR_TLV_type != HSR_TLV_EOT ||
114 hsr_sup_tlv->HSR_TLV_length != 0)
115 return false;
116
117 return true;
118 }
119
is_proxy_supervision_frame(struct hsr_priv * hsr,struct sk_buff * skb)120 static bool is_proxy_supervision_frame(struct hsr_priv *hsr,
121 struct sk_buff *skb)
122 {
123 struct hsr_sup_payload *payload;
124 struct ethhdr *eth_hdr;
125 u16 total_length = 0;
126
127 eth_hdr = (struct ethhdr *)skb_mac_header(skb);
128
129 /* Get the HSR protocol revision. */
130 if (eth_hdr->h_proto == htons(ETH_P_HSR))
131 total_length = sizeof(struct hsrv1_ethhdr_sp);
132 else
133 total_length = sizeof(struct hsrv0_ethhdr_sp);
134
135 if (!pskb_may_pull(skb, total_length + sizeof(struct hsr_sup_payload)))
136 return false;
137
138 skb_pull(skb, total_length);
139 payload = (struct hsr_sup_payload *)skb->data;
140 skb_push(skb, total_length);
141
142 /* For RedBox (HSR-SAN) check if we have received the supervision
143 * frame with MAC addresses from own ProxyNodeTable.
144 */
145 return hsr_is_node_in_db(&hsr->proxy_node_db,
146 payload->macaddress_A);
147 }
148
create_stripped_skb_hsr(struct sk_buff * skb_in,struct hsr_frame_info * frame)149 static struct sk_buff *create_stripped_skb_hsr(struct sk_buff *skb_in,
150 struct hsr_frame_info *frame)
151 {
152 struct sk_buff *skb;
153 int copylen;
154 unsigned char *dst, *src;
155
156 skb_pull(skb_in, HSR_HLEN);
157 skb = __pskb_copy(skb_in, skb_headroom(skb_in) - HSR_HLEN, GFP_ATOMIC);
158 skb_push(skb_in, HSR_HLEN);
159 if (!skb)
160 return NULL;
161
162 skb_reset_mac_header(skb);
163
164 if (skb->ip_summed == CHECKSUM_PARTIAL)
165 skb->csum_start -= HSR_HLEN;
166
167 copylen = 2 * ETH_ALEN;
168 if (frame->is_vlan)
169 copylen += VLAN_HLEN;
170 src = skb_mac_header(skb_in);
171 dst = skb_mac_header(skb);
172 memcpy(dst, src, copylen);
173
174 skb->protocol = eth_hdr(skb)->h_proto;
175 return skb;
176 }
177
hsr_get_untagged_frame(struct hsr_frame_info * frame,struct hsr_port * port)178 struct sk_buff *hsr_get_untagged_frame(struct hsr_frame_info *frame,
179 struct hsr_port *port)
180 {
181 if (!frame->skb_std) {
182 if (frame->skb_hsr)
183 frame->skb_std =
184 create_stripped_skb_hsr(frame->skb_hsr, frame);
185 else
186 netdev_warn_once(port->dev,
187 "Unexpected frame received in %s()\n", __func__);
188
189 if (!frame->skb_std)
190 return NULL;
191 }
192
193 return skb_clone(frame->skb_std, GFP_ATOMIC);
194 }
195
prp_get_untagged_frame(struct hsr_frame_info * frame,struct hsr_port * port)196 struct sk_buff *prp_get_untagged_frame(struct hsr_frame_info *frame,
197 struct hsr_port *port)
198 {
199 if (!frame->skb_std) {
200 if (frame->skb_prp) {
201 /* trim the skb by len - HSR_HLEN to exclude RCT */
202 skb_trim(frame->skb_prp,
203 frame->skb_prp->len - HSR_HLEN);
204 frame->skb_std =
205 __pskb_copy(frame->skb_prp,
206 skb_headroom(frame->skb_prp),
207 GFP_ATOMIC);
208 if (!frame->skb_std)
209 return NULL;
210 } else {
211 /* Unexpected */
212 WARN_ONCE(1, "%s:%d: Unexpected frame received (port_src %s)\n",
213 __FILE__, __LINE__, port->dev->name);
214 return NULL;
215 }
216 }
217
218 return skb_clone(frame->skb_std, GFP_ATOMIC);
219 }
220
prp_set_lan_id(struct prp_rct * trailer,struct hsr_port * port)221 static void prp_set_lan_id(struct prp_rct *trailer,
222 struct hsr_port *port)
223 {
224 int lane_id;
225
226 if (port->type == HSR_PT_SLAVE_A)
227 lane_id = 0;
228 else
229 lane_id = 1;
230
231 /* Add net_id in the upper 3 bits of lane_id */
232 lane_id |= port->hsr->net_id;
233 set_prp_lan_id(trailer, lane_id);
234 }
235
236 /* Tailroom for PRP rct should have been created before calling this */
prp_fill_rct(struct sk_buff * skb,struct hsr_frame_info * frame,struct hsr_port * port)237 static struct sk_buff *prp_fill_rct(struct sk_buff *skb,
238 struct hsr_frame_info *frame,
239 struct hsr_port *port)
240 {
241 struct prp_rct *trailer;
242 int min_size = ETH_ZLEN;
243 int lsdu_size;
244
245 if (!skb)
246 return skb;
247
248 if (frame->is_vlan)
249 min_size = VLAN_ETH_ZLEN;
250
251 if (skb_put_padto(skb, min_size))
252 return NULL;
253
254 trailer = (struct prp_rct *)skb_put(skb, HSR_HLEN);
255 lsdu_size = skb->len - 14;
256 if (frame->is_vlan)
257 lsdu_size -= 4;
258 prp_set_lan_id(trailer, port);
259 set_prp_LSDU_size(trailer, lsdu_size);
260 trailer->sequence_nr = htons(frame->sequence_nr);
261 trailer->PRP_suffix = htons(ETH_P_PRP);
262 skb->protocol = eth_hdr(skb)->h_proto;
263
264 return skb;
265 }
266
hsr_set_path_id(struct hsr_frame_info * frame,struct hsr_ethhdr * hsr_ethhdr,struct hsr_port * port)267 static void hsr_set_path_id(struct hsr_frame_info *frame,
268 struct hsr_ethhdr *hsr_ethhdr,
269 struct hsr_port *port)
270 {
271 int path_id;
272
273 if (port->hsr->prot_version) {
274 if (port->type == HSR_PT_SLAVE_A)
275 path_id = 0;
276 else
277 path_id = 1;
278 } else {
279 if (frame->is_supervision)
280 path_id = 0xf;
281 else
282 path_id = 1;
283 }
284
285 set_hsr_tag_path(&hsr_ethhdr->hsr_tag, path_id);
286 }
287
hsr_fill_tag(struct sk_buff * skb,struct hsr_frame_info * frame,struct hsr_port * port,u8 proto_version)288 static struct sk_buff *hsr_fill_tag(struct sk_buff *skb,
289 struct hsr_frame_info *frame,
290 struct hsr_port *port, u8 proto_version)
291 {
292 struct hsr_ethhdr *hsr_ethhdr;
293 unsigned char *pc;
294 int lsdu_size;
295
296 /* pad to minimum packet size which is 60 + 6 (HSR tag) */
297 if (skb_put_padto(skb, ETH_ZLEN + HSR_HLEN))
298 return NULL;
299
300 lsdu_size = skb->len - 14;
301 if (frame->is_vlan)
302 lsdu_size -= 4;
303
304 pc = skb_mac_header(skb);
305 if (frame->is_vlan)
306 /* This 4-byte shift (size of a vlan tag) does not
307 * mean that the ethhdr starts there. But rather it
308 * provides the proper environment for accessing
309 * the fields, such as hsr_tag etc., just like
310 * when the vlan tag is not there. This is because
311 * the hsr tag is after the vlan tag.
312 */
313 hsr_ethhdr = (struct hsr_ethhdr *)(pc + VLAN_HLEN);
314 else
315 hsr_ethhdr = (struct hsr_ethhdr *)pc;
316
317 hsr_set_path_id(frame, hsr_ethhdr, port);
318 set_hsr_tag_LSDU_size(&hsr_ethhdr->hsr_tag, lsdu_size);
319 hsr_ethhdr->hsr_tag.sequence_nr = htons(frame->sequence_nr);
320 hsr_ethhdr->hsr_tag.encap_proto = hsr_ethhdr->ethhdr.h_proto;
321 hsr_ethhdr->ethhdr.h_proto = htons(proto_version ?
322 ETH_P_HSR : ETH_P_PRP);
323 skb->protocol = hsr_ethhdr->ethhdr.h_proto;
324
325 return skb;
326 }
327
328 /* If the original frame was an HSR tagged frame, just clone it to be sent
329 * unchanged. Otherwise, create a private frame especially tagged for 'port'.
330 */
hsr_create_tagged_frame(struct hsr_frame_info * frame,struct hsr_port * port)331 struct sk_buff *hsr_create_tagged_frame(struct hsr_frame_info *frame,
332 struct hsr_port *port)
333 {
334 unsigned char *dst, *src;
335 struct sk_buff *skb;
336 int movelen;
337
338 if (frame->skb_hsr) {
339 struct hsr_ethhdr *hsr_ethhdr =
340 (struct hsr_ethhdr *)skb_mac_header(frame->skb_hsr);
341
342 /* set the lane id properly */
343 hsr_set_path_id(frame, hsr_ethhdr, port);
344 return skb_clone(frame->skb_hsr, GFP_ATOMIC);
345 } else if (port->dev->features & NETIF_F_HW_HSR_TAG_INS) {
346 return skb_clone(frame->skb_std, GFP_ATOMIC);
347 }
348
349 /* Create the new skb with enough headroom to fit the HSR tag */
350 skb = __pskb_copy(frame->skb_std,
351 skb_headroom(frame->skb_std) + HSR_HLEN, GFP_ATOMIC);
352 if (!skb)
353 return NULL;
354 skb_reset_mac_header(skb);
355
356 if (skb->ip_summed == CHECKSUM_PARTIAL)
357 skb->csum_start += HSR_HLEN;
358
359 movelen = ETH_HLEN;
360 if (frame->is_vlan)
361 movelen += VLAN_HLEN;
362
363 src = skb_mac_header(skb);
364 dst = skb_push(skb, HSR_HLEN);
365 memmove(dst, src, movelen);
366 skb_reset_mac_header(skb);
367
368 /* skb_put_padto free skb on error and hsr_fill_tag returns NULL in
369 * that case
370 */
371 return hsr_fill_tag(skb, frame, port, port->hsr->prot_version);
372 }
373
prp_create_tagged_frame(struct hsr_frame_info * frame,struct hsr_port * port)374 struct sk_buff *prp_create_tagged_frame(struct hsr_frame_info *frame,
375 struct hsr_port *port)
376 {
377 struct sk_buff *skb;
378
379 if (frame->skb_prp) {
380 struct prp_rct *trailer = skb_get_PRP_rct(frame->skb_prp);
381
382 if (trailer) {
383 prp_set_lan_id(trailer, port);
384 } else {
385 WARN_ONCE(!trailer, "errored PRP skb");
386 return NULL;
387 }
388 return skb_clone(frame->skb_prp, GFP_ATOMIC);
389 } else if (port->dev->features & NETIF_F_HW_HSR_TAG_INS) {
390 return skb_clone(frame->skb_std, GFP_ATOMIC);
391 }
392
393 skb = skb_copy_expand(frame->skb_std, skb_headroom(frame->skb_std),
394 skb_tailroom(frame->skb_std) + HSR_HLEN,
395 GFP_ATOMIC);
396 return prp_fill_rct(skb, frame, port);
397 }
398
hsr_deliver_master(struct sk_buff * skb,struct net_device * dev,struct hsr_node * node_src)399 static void hsr_deliver_master(struct sk_buff *skb, struct net_device *dev,
400 struct hsr_node *node_src)
401 {
402 bool was_multicast_frame;
403 int res, recv_len;
404
405 was_multicast_frame = (skb->pkt_type == PACKET_MULTICAST);
406 hsr_addr_subst_source(node_src, skb);
407 skb_pull(skb, ETH_HLEN);
408 recv_len = skb->len;
409 res = netif_rx(skb);
410 if (res == NET_RX_DROP) {
411 dev->stats.rx_dropped++;
412 } else {
413 dev->stats.rx_packets++;
414 dev->stats.rx_bytes += recv_len;
415 if (was_multicast_frame)
416 dev->stats.multicast++;
417 }
418 }
419
hsr_xmit(struct sk_buff * skb,struct hsr_port * port,struct hsr_frame_info * frame)420 static int hsr_xmit(struct sk_buff *skb, struct hsr_port *port,
421 struct hsr_frame_info *frame)
422 {
423 if (frame->port_rcv->type == HSR_PT_MASTER) {
424 hsr_addr_subst_dest(frame->node_src, skb, port);
425
426 /* Address substitution (IEC62439-3 pp 26, 50): replace mac
427 * address of outgoing frame with that of the outgoing slave's.
428 */
429 ether_addr_copy(eth_hdr(skb)->h_source, port->dev->dev_addr);
430 }
431
432 /* When HSR node is used as RedBox - the frame received from HSR ring
433 * requires source MAC address (SA) replacement to one which can be
434 * recognized by SAN devices (otherwise, frames are dropped by switch)
435 */
436 if (port->type == HSR_PT_INTERLINK)
437 ether_addr_copy(eth_hdr(skb)->h_source,
438 port->hsr->macaddress_redbox);
439
440 return dev_queue_xmit(skb);
441 }
442
prp_is_lan_dup(enum hsr_port_type rx,struct hsr_port * port)443 static bool prp_is_lan_dup(enum hsr_port_type rx, struct hsr_port *port)
444 {
445 return (rx == HSR_PT_SLAVE_A && port->type == HSR_PT_SLAVE_B) ||
446 (rx == HSR_PT_SLAVE_B && port->type == HSR_PT_SLAVE_A);
447 }
448
prp_drop_frame(struct hsr_frame_info * frame,struct hsr_port * port)449 bool prp_drop_frame(struct hsr_frame_info *frame, struct hsr_port *port)
450 {
451 enum hsr_port_type rx = frame->port_rcv->type;
452
453 /* Supervision frames are not delivered to a SAN on the interlink. */
454 if (frame->is_supervision && port->type == HSR_PT_INTERLINK)
455 return true;
456
457 if (prp_is_lan_dup(rx, port))
458 return true;
459
460 /* LAN to interlink: keep PRP-network unicast off the SAN segment. */
461 if ((rx == HSR_PT_SLAVE_A || rx == HSR_PT_SLAVE_B) &&
462 port->type == HSR_PT_INTERLINK)
463 return frame->dst_in_node_db;
464
465 /* Interlink to LAN: keep SAN-to-SAN unicast local. */
466 if ((port->type == HSR_PT_SLAVE_A || port->type == HSR_PT_SLAVE_B) &&
467 rx == HSR_PT_INTERLINK)
468 return frame->dst_in_proxy_node_db;
469
470 return false;
471 }
472
hsr_drop_frame(struct hsr_frame_info * frame,struct hsr_port * port)473 bool hsr_drop_frame(struct hsr_frame_info *frame, struct hsr_port *port)
474 {
475 struct sk_buff *skb;
476
477 if (port->dev->features & NETIF_F_HW_HSR_FWD)
478 return prp_is_lan_dup(frame->port_rcv->type, port);
479
480 /* RedBox specific frames dropping policies
481 *
482 * Do not send HSR supervisory frames to SAN devices
483 */
484 if (frame->is_supervision && port->type == HSR_PT_INTERLINK)
485 return true;
486
487 /* Do not forward to other HSR port (A or B) unicast frames which
488 * are addressed to interlink port (and are in the ProxyNodeTable).
489 */
490 skb = frame->skb_hsr;
491 if (skb && prp_is_lan_dup(frame->port_rcv->type, port) &&
492 is_unicast_ether_addr(eth_hdr(skb)->h_dest) &&
493 hsr_is_node_in_db(&port->hsr->proxy_node_db,
494 eth_hdr(skb)->h_dest)) {
495 return true;
496 }
497
498 /* Do not forward to port C (Interlink) frames from nodes A and B
499 * if DA is in NodeTable.
500 */
501 if ((frame->port_rcv->type == HSR_PT_SLAVE_A ||
502 frame->port_rcv->type == HSR_PT_SLAVE_B) &&
503 port->type == HSR_PT_INTERLINK) {
504 skb = frame->skb_hsr;
505 if (skb && is_unicast_ether_addr(eth_hdr(skb)->h_dest) &&
506 hsr_is_node_in_db(&port->hsr->node_db,
507 eth_hdr(skb)->h_dest)) {
508 return true;
509 }
510 }
511
512 /* Do not forward to port A and B unicast frames received on the
513 * interlink port if it is addressed to one of nodes registered in
514 * the ProxyNodeTable.
515 */
516 if ((port->type == HSR_PT_SLAVE_A || port->type == HSR_PT_SLAVE_B) &&
517 frame->port_rcv->type == HSR_PT_INTERLINK) {
518 skb = frame->skb_std;
519 if (skb && is_unicast_ether_addr(eth_hdr(skb)->h_dest) &&
520 hsr_is_node_in_db(&port->hsr->proxy_node_db,
521 eth_hdr(skb)->h_dest)) {
522 return true;
523 }
524 }
525
526 return false;
527 }
528
529 /* Forward the frame through all devices except:
530 * - Back through the receiving device
531 * - If it's a HSR frame: through a device where it has passed before
532 * - if it's a PRP frame: through another PRP slave device (no bridge)
533 * - To the local HSR master only if the frame is directly addressed to it, or
534 * a non-supervision multicast or broadcast frame.
535 *
536 * HSR slave devices should insert a HSR tag into the frame, or forward the
537 * frame unchanged if it's already tagged. Interlink devices should strip HSR
538 * tags if they're of the non-HSR type (but only after duplicate discard). The
539 * master device always strips HSR tags.
540 */
hsr_forward_do(struct hsr_frame_info * frame)541 static void hsr_forward_do(struct hsr_frame_info *frame)
542 {
543 struct hsr_port *port;
544 struct sk_buff *skb;
545 bool sent = false;
546
547 hsr_for_each_port(frame->port_rcv->hsr, port) {
548 struct hsr_priv *hsr = port->hsr;
549 /* Don't send frame back the way it came */
550 if (port == frame->port_rcv)
551 continue;
552
553 /* Don't deliver locally unless we should */
554 if (port->type == HSR_PT_MASTER && !frame->is_local_dest)
555 continue;
556
557 /* Deliver frames directly addressed to us to master only */
558 if (port->type != HSR_PT_MASTER && frame->is_local_exclusive)
559 continue;
560
561 /* If hardware duplicate generation is enabled, only send out
562 * one port.
563 */
564 if ((port->dev->features & NETIF_F_HW_HSR_DUP) && sent)
565 continue;
566
567 /* Don't send frame over port where it has been sent before.
568 * Also for SAN, this shouldn't be done.
569 */
570 if (!frame->is_from_san &&
571 hsr->proto_ops->register_frame_out &&
572 hsr->proto_ops->register_frame_out(port, frame))
573 continue;
574
575 if (frame->is_supervision && port->type == HSR_PT_MASTER &&
576 !frame->is_proxy_supervision) {
577 hsr_handle_sup_frame(frame);
578 continue;
579 }
580
581 /* Check if frame is to be dropped. Eg. for PRP no forward
582 * between ports, or sending HSR supervision to RedBox.
583 */
584 if (hsr->proto_ops->drop_frame &&
585 hsr->proto_ops->drop_frame(frame, port))
586 continue;
587
588 if (port->type == HSR_PT_SLAVE_A ||
589 port->type == HSR_PT_SLAVE_B)
590 skb = hsr->proto_ops->create_tagged_frame(frame, port);
591 else
592 skb = hsr->proto_ops->get_untagged_frame(frame, port);
593
594 if (!skb) {
595 frame->port_rcv->dev->stats.rx_dropped++;
596 continue;
597 }
598
599 skb->dev = port->dev;
600 if (port->type == HSR_PT_MASTER) {
601 hsr_deliver_master(skb, port->dev, frame->node_src);
602 } else {
603 if (!hsr_xmit(skb, port, frame))
604 if (port->type == HSR_PT_SLAVE_A ||
605 port->type == HSR_PT_SLAVE_B)
606 sent = true;
607 }
608 }
609 }
610
check_local_dest(struct hsr_priv * hsr,struct sk_buff * skb,struct hsr_frame_info * frame)611 static void check_local_dest(struct hsr_priv *hsr, struct sk_buff *skb,
612 struct hsr_frame_info *frame)
613 {
614 if (hsr_addr_is_self(hsr, eth_hdr(skb)->h_dest)) {
615 frame->is_local_exclusive = true;
616 skb->pkt_type = PACKET_HOST;
617 } else {
618 frame->is_local_exclusive = false;
619 }
620
621 if (skb->pkt_type == PACKET_HOST ||
622 skb->pkt_type == PACKET_MULTICAST ||
623 skb->pkt_type == PACKET_BROADCAST) {
624 frame->is_local_dest = true;
625 } else {
626 frame->is_local_dest = false;
627 }
628 }
629
handle_std_frame(struct sk_buff * skb,struct hsr_frame_info * frame)630 static void handle_std_frame(struct sk_buff *skb,
631 struct hsr_frame_info *frame)
632 {
633 struct hsr_port *port = frame->port_rcv;
634 struct hsr_priv *hsr = port->hsr;
635
636 frame->skb_hsr = NULL;
637 frame->skb_prp = NULL;
638 frame->skb_std = skb;
639
640 if (port->type != HSR_PT_MASTER)
641 frame->is_from_san = true;
642
643 if (port->type == HSR_PT_MASTER ||
644 port->type == HSR_PT_INTERLINK) {
645 /* Sequence nr for the master/interlink node */
646 lockdep_assert_held(&hsr->seqnr_lock);
647 frame->sequence_nr = hsr->sequence_nr;
648 hsr->sequence_nr++;
649 }
650 }
651
hsr_fill_frame_info(__be16 proto,struct sk_buff * skb,struct hsr_frame_info * frame)652 int hsr_fill_frame_info(__be16 proto, struct sk_buff *skb,
653 struct hsr_frame_info *frame)
654 {
655 struct hsr_port *port = frame->port_rcv;
656 struct hsr_priv *hsr = port->hsr;
657
658 /* HSRv0 supervisory frames double as a tag so treat them as tagged. */
659 if ((!hsr->prot_version && proto == htons(ETH_P_PRP)) ||
660 proto == htons(ETH_P_HSR)) {
661 /* Check if skb contains hsr_ethhdr */
662 if (skb->mac_len < sizeof(struct hsr_ethhdr))
663 return -EINVAL;
664
665 /* HSR tagged frame :- Data or Supervision */
666 frame->skb_std = NULL;
667 frame->skb_prp = NULL;
668 frame->skb_hsr = skb;
669 frame->sequence_nr = hsr_get_skb_sequence_nr(skb);
670 return 0;
671 }
672
673 /* Standard frame or PRP from master port */
674 handle_std_frame(skb, frame);
675
676 return 0;
677 }
678
prp_fill_frame_info(__be16 proto,struct sk_buff * skb,struct hsr_frame_info * frame)679 int prp_fill_frame_info(__be16 proto, struct sk_buff *skb,
680 struct hsr_frame_info *frame)
681 {
682 /* Supervision frame */
683 struct prp_rct *rct = skb_get_PRP_rct(skb);
684
685 if (rct &&
686 prp_check_lsdu_size(skb, rct, frame->is_supervision)) {
687 frame->skb_hsr = NULL;
688 frame->skb_std = NULL;
689 frame->skb_prp = skb;
690 frame->sequence_nr = prp_get_skb_sequence_nr(rct);
691 return 0;
692 }
693 handle_std_frame(skb, frame);
694
695 return 0;
696 }
697
fill_frame_info(struct hsr_frame_info * frame,struct sk_buff * skb,struct hsr_port * port)698 static int fill_frame_info(struct hsr_frame_info *frame,
699 struct sk_buff *skb, struct hsr_port *port)
700 {
701 struct hsr_priv *hsr = port->hsr;
702 struct hsr_vlan_ethhdr *vlan_hdr;
703 struct list_head *n_db;
704 struct ethhdr *ethhdr;
705 __be16 proto;
706 int ret;
707
708 /* Check if skb contains ethhdr */
709 if (skb->mac_len < sizeof(struct ethhdr))
710 return -EINVAL;
711
712 memset(frame, 0, sizeof(*frame));
713 frame->is_supervision = is_supervision_frame(port->hsr, skb);
714 if (frame->is_supervision && hsr->redbox)
715 frame->is_proxy_supervision =
716 is_proxy_supervision_frame(port->hsr, skb);
717
718 n_db = &hsr->node_db;
719 if (port->type == HSR_PT_INTERLINK)
720 n_db = &hsr->proxy_node_db;
721
722 frame->node_src = hsr_get_node(port, n_db, skb,
723 frame->is_supervision, port->type);
724 if (!frame->node_src)
725 return -1; /* Unknown node and !is_supervision, or no mem */
726
727 ethhdr = (struct ethhdr *)skb_mac_header(skb);
728 frame->is_vlan = false;
729 proto = ethhdr->h_proto;
730
731 /* PRP RedBox only: classify the unicast destination once so the
732 * per-egress-port decision in prp_drop_frame() stays O(1). HSR RedBox
733 * does its own classification and must not pay these node-table walks.
734 */
735 if (hsr->prot_version == PRP_V1 && hsr->redbox &&
736 is_unicast_ether_addr(ethhdr->h_dest)) {
737 frame->dst_in_node_db =
738 hsr_is_node_in_db(&hsr->node_db, ethhdr->h_dest);
739 frame->dst_in_proxy_node_db =
740 hsr_is_node_in_db(&hsr->proxy_node_db, ethhdr->h_dest);
741 }
742
743 if (proto == htons(ETH_P_8021Q))
744 frame->is_vlan = true;
745
746 if (frame->is_vlan) {
747 /* Note: skb->mac_len might be wrong here. */
748 if (!pskb_may_pull(skb,
749 skb_mac_offset(skb) +
750 offsetofend(struct hsr_vlan_ethhdr, vlanhdr)))
751 return -EINVAL;
752 vlan_hdr = (struct hsr_vlan_ethhdr *)skb_mac_header(skb);
753 proto = vlan_hdr->vlanhdr.h_vlan_encapsulated_proto;
754 }
755
756 frame->is_from_san = false;
757 frame->port_rcv = port;
758 ret = hsr->proto_ops->fill_frame_info(proto, skb, frame);
759 if (ret)
760 return ret;
761
762 check_local_dest(port->hsr, skb, frame);
763
764 return 0;
765 }
766
767 /* Must be called holding rcu read lock (because of the port parameter) */
hsr_forward_skb(struct sk_buff * skb,struct hsr_port * port)768 void hsr_forward_skb(struct sk_buff *skb, struct hsr_port *port)
769 {
770 struct hsr_frame_info frame;
771
772 rcu_read_lock();
773 if (fill_frame_info(&frame, skb, port) < 0)
774 goto out_drop;
775
776 hsr_register_frame_in(frame.node_src, port, frame.sequence_nr);
777 hsr_forward_do(&frame);
778 rcu_read_unlock();
779 /* Gets called for ingress frames as well as egress from master port.
780 * So check and increment stats for master port only here.
781 */
782 if (port->type == HSR_PT_MASTER || port->type == HSR_PT_INTERLINK) {
783 port->dev->stats.tx_packets++;
784 port->dev->stats.tx_bytes += skb->len;
785 }
786
787 kfree_skb(frame.skb_hsr);
788 kfree_skb(frame.skb_prp);
789 kfree_skb(frame.skb_std);
790 return;
791
792 out_drop:
793 rcu_read_unlock();
794 port->dev->stats.tx_dropped++;
795 kfree_skb(skb);
796 }
797