Loading...
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
18struct 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 */
35static 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
41 WARN_ON_ONCE(!skb_mac_header_was_set(skb));
42 eth_hdr = (struct ethhdr *)skb_mac_header(skb);
43
44 /* Correct addr? */
45 if (!ether_addr_equal(eth_hdr->h_dest,
46 hsr->sup_multicast_addr))
47 return false;
48
49 /* Correct ether type?. */
50 if (!(eth_hdr->h_proto == htons(ETH_P_PRP) ||
51 eth_hdr->h_proto == htons(ETH_P_HSR)))
52 return false;
53
54 /* Get the supervision header from correct location. */
55 if (eth_hdr->h_proto == htons(ETH_P_HSR)) { /* Okay HSRv1. */
56 hsr_V1_hdr = (struct hsrv1_ethhdr_sp *)skb_mac_header(skb);
57 if (hsr_V1_hdr->hsr.encap_proto != htons(ETH_P_PRP))
58 return false;
59
60 hsr_sup_tag = &hsr_V1_hdr->hsr_sup;
61 } else {
62 hsr_sup_tag =
63 &((struct hsrv0_ethhdr_sp *)skb_mac_header(skb))->hsr_sup;
64 }
65
66 if (hsr_sup_tag->HSR_TLV_type != HSR_TLV_ANNOUNCE &&
67 hsr_sup_tag->HSR_TLV_type != HSR_TLV_LIFE_CHECK &&
68 hsr_sup_tag->HSR_TLV_type != PRP_TLV_LIFE_CHECK_DD &&
69 hsr_sup_tag->HSR_TLV_type != PRP_TLV_LIFE_CHECK_DA)
70 return false;
71 if (hsr_sup_tag->HSR_TLV_length != 12 &&
72 hsr_sup_tag->HSR_TLV_length != sizeof(struct hsr_sup_payload))
73 return false;
74
75 return true;
76}
77
78static struct sk_buff *create_stripped_skb_hsr(struct sk_buff *skb_in,
79 struct hsr_frame_info *frame)
80{
81 struct sk_buff *skb;
82 int copylen;
83 unsigned char *dst, *src;
84
85 skb_pull(skb_in, HSR_HLEN);
86 skb = __pskb_copy(skb_in, skb_headroom(skb_in) - HSR_HLEN, GFP_ATOMIC);
87 skb_push(skb_in, HSR_HLEN);
88 if (!skb)
89 return NULL;
90
91 skb_reset_mac_header(skb);
92
93 if (skb->ip_summed == CHECKSUM_PARTIAL)
94 skb->csum_start -= HSR_HLEN;
95
96 copylen = 2 * ETH_ALEN;
97 if (frame->is_vlan)
98 copylen += VLAN_HLEN;
99 src = skb_mac_header(skb_in);
100 dst = skb_mac_header(skb);
101 memcpy(dst, src, copylen);
102
103 skb->protocol = eth_hdr(skb)->h_proto;
104 return skb;
105}
106
107struct sk_buff *hsr_get_untagged_frame(struct hsr_frame_info *frame,
108 struct hsr_port *port)
109{
110 if (!frame->skb_std) {
111 if (frame->skb_hsr) {
112 frame->skb_std =
113 create_stripped_skb_hsr(frame->skb_hsr, frame);
114 } else {
115 /* Unexpected */
116 WARN_ONCE(1, "%s:%d: Unexpected frame received (port_src %s)\n",
117 __FILE__, __LINE__, port->dev->name);
118 return NULL;
119 }
120 }
121
122 return skb_clone(frame->skb_std, GFP_ATOMIC);
123}
124
125struct sk_buff *prp_get_untagged_frame(struct hsr_frame_info *frame,
126 struct hsr_port *port)
127{
128 if (!frame->skb_std) {
129 if (frame->skb_prp) {
130 /* trim the skb by len - HSR_HLEN to exclude RCT */
131 skb_trim(frame->skb_prp,
132 frame->skb_prp->len - HSR_HLEN);
133 frame->skb_std =
134 __pskb_copy(frame->skb_prp,
135 skb_headroom(frame->skb_prp),
136 GFP_ATOMIC);
137 } else {
138 /* Unexpected */
139 WARN_ONCE(1, "%s:%d: Unexpected frame received (port_src %s)\n",
140 __FILE__, __LINE__, port->dev->name);
141 return NULL;
142 }
143 }
144
145 return skb_clone(frame->skb_std, GFP_ATOMIC);
146}
147
148static void prp_set_lan_id(struct prp_rct *trailer,
149 struct hsr_port *port)
150{
151 int lane_id;
152
153 if (port->type == HSR_PT_SLAVE_A)
154 lane_id = 0;
155 else
156 lane_id = 1;
157
158 /* Add net_id in the upper 3 bits of lane_id */
159 lane_id |= port->hsr->net_id;
160 set_prp_lan_id(trailer, lane_id);
161}
162
163/* Tailroom for PRP rct should have been created before calling this */
164static struct sk_buff *prp_fill_rct(struct sk_buff *skb,
165 struct hsr_frame_info *frame,
166 struct hsr_port *port)
167{
168 struct prp_rct *trailer;
169 int min_size = ETH_ZLEN;
170 int lsdu_size;
171
172 if (!skb)
173 return skb;
174
175 if (frame->is_vlan)
176 min_size = VLAN_ETH_ZLEN;
177
178 if (skb_put_padto(skb, min_size))
179 return NULL;
180
181 trailer = (struct prp_rct *)skb_put(skb, HSR_HLEN);
182 lsdu_size = skb->len - 14;
183 if (frame->is_vlan)
184 lsdu_size -= 4;
185 prp_set_lan_id(trailer, port);
186 set_prp_LSDU_size(trailer, lsdu_size);
187 trailer->sequence_nr = htons(frame->sequence_nr);
188 trailer->PRP_suffix = htons(ETH_P_PRP);
189 skb->protocol = eth_hdr(skb)->h_proto;
190
191 return skb;
192}
193
194static void hsr_set_path_id(struct hsr_ethhdr *hsr_ethhdr,
195 struct hsr_port *port)
196{
197 int path_id;
198
199 if (port->type == HSR_PT_SLAVE_A)
200 path_id = 0;
201 else
202 path_id = 1;
203
204 set_hsr_tag_path(&hsr_ethhdr->hsr_tag, path_id);
205}
206
207static struct sk_buff *hsr_fill_tag(struct sk_buff *skb,
208 struct hsr_frame_info *frame,
209 struct hsr_port *port, u8 proto_version)
210{
211 struct hsr_ethhdr *hsr_ethhdr;
212 int lsdu_size;
213
214 /* pad to minimum packet size which is 60 + 6 (HSR tag) */
215 if (skb_put_padto(skb, ETH_ZLEN + HSR_HLEN))
216 return NULL;
217
218 lsdu_size = skb->len - 14;
219 if (frame->is_vlan)
220 lsdu_size -= 4;
221
222 hsr_ethhdr = (struct hsr_ethhdr *)skb_mac_header(skb);
223
224 hsr_set_path_id(hsr_ethhdr, port);
225 set_hsr_tag_LSDU_size(&hsr_ethhdr->hsr_tag, lsdu_size);
226 hsr_ethhdr->hsr_tag.sequence_nr = htons(frame->sequence_nr);
227 hsr_ethhdr->hsr_tag.encap_proto = hsr_ethhdr->ethhdr.h_proto;
228 hsr_ethhdr->ethhdr.h_proto = htons(proto_version ?
229 ETH_P_HSR : ETH_P_PRP);
230 skb->protocol = hsr_ethhdr->ethhdr.h_proto;
231
232 return skb;
233}
234
235/* If the original frame was an HSR tagged frame, just clone it to be sent
236 * unchanged. Otherwise, create a private frame especially tagged for 'port'.
237 */
238struct sk_buff *hsr_create_tagged_frame(struct hsr_frame_info *frame,
239 struct hsr_port *port)
240{
241 unsigned char *dst, *src;
242 struct sk_buff *skb;
243 int movelen;
244
245 if (frame->skb_hsr) {
246 struct hsr_ethhdr *hsr_ethhdr =
247 (struct hsr_ethhdr *)skb_mac_header(frame->skb_hsr);
248
249 /* set the lane id properly */
250 hsr_set_path_id(hsr_ethhdr, port);
251 return skb_clone(frame->skb_hsr, GFP_ATOMIC);
252 } else if (port->dev->features & NETIF_F_HW_HSR_TAG_INS) {
253 return skb_clone(frame->skb_std, GFP_ATOMIC);
254 }
255
256 /* Create the new skb with enough headroom to fit the HSR tag */
257 skb = __pskb_copy(frame->skb_std,
258 skb_headroom(frame->skb_std) + HSR_HLEN, GFP_ATOMIC);
259 if (!skb)
260 return NULL;
261 skb_reset_mac_header(skb);
262
263 if (skb->ip_summed == CHECKSUM_PARTIAL)
264 skb->csum_start += HSR_HLEN;
265
266 movelen = ETH_HLEN;
267 if (frame->is_vlan)
268 movelen += VLAN_HLEN;
269
270 src = skb_mac_header(skb);
271 dst = skb_push(skb, HSR_HLEN);
272 memmove(dst, src, movelen);
273 skb_reset_mac_header(skb);
274
275 /* skb_put_padto free skb on error and hsr_fill_tag returns NULL in
276 * that case
277 */
278 return hsr_fill_tag(skb, frame, port, port->hsr->prot_version);
279}
280
281struct sk_buff *prp_create_tagged_frame(struct hsr_frame_info *frame,
282 struct hsr_port *port)
283{
284 struct sk_buff *skb;
285
286 if (frame->skb_prp) {
287 struct prp_rct *trailer = skb_get_PRP_rct(frame->skb_prp);
288
289 if (trailer) {
290 prp_set_lan_id(trailer, port);
291 } else {
292 WARN_ONCE(!trailer, "errored PRP skb");
293 return NULL;
294 }
295 return skb_clone(frame->skb_prp, GFP_ATOMIC);
296 } else if (port->dev->features & NETIF_F_HW_HSR_TAG_INS) {
297 return skb_clone(frame->skb_std, GFP_ATOMIC);
298 }
299
300 skb = skb_copy_expand(frame->skb_std, 0,
301 skb_tailroom(frame->skb_std) + HSR_HLEN,
302 GFP_ATOMIC);
303 prp_fill_rct(skb, frame, port);
304
305 return skb;
306}
307
308static void hsr_deliver_master(struct sk_buff *skb, struct net_device *dev,
309 struct hsr_node *node_src)
310{
311 bool was_multicast_frame;
312 int res;
313
314 was_multicast_frame = (skb->pkt_type == PACKET_MULTICAST);
315 hsr_addr_subst_source(node_src, skb);
316 skb_pull(skb, ETH_HLEN);
317 res = netif_rx(skb);
318 if (res == NET_RX_DROP) {
319 dev->stats.rx_dropped++;
320 } else {
321 dev->stats.rx_packets++;
322 dev->stats.rx_bytes += skb->len;
323 if (was_multicast_frame)
324 dev->stats.multicast++;
325 }
326}
327
328static int hsr_xmit(struct sk_buff *skb, struct hsr_port *port,
329 struct hsr_frame_info *frame)
330{
331 if (frame->port_rcv->type == HSR_PT_MASTER) {
332 hsr_addr_subst_dest(frame->node_src, skb, port);
333
334 /* Address substitution (IEC62439-3 pp 26, 50): replace mac
335 * address of outgoing frame with that of the outgoing slave's.
336 */
337 ether_addr_copy(eth_hdr(skb)->h_source, port->dev->dev_addr);
338 }
339 return dev_queue_xmit(skb);
340}
341
342bool prp_drop_frame(struct hsr_frame_info *frame, struct hsr_port *port)
343{
344 return ((frame->port_rcv->type == HSR_PT_SLAVE_A &&
345 port->type == HSR_PT_SLAVE_B) ||
346 (frame->port_rcv->type == HSR_PT_SLAVE_B &&
347 port->type == HSR_PT_SLAVE_A));
348}
349
350bool hsr_drop_frame(struct hsr_frame_info *frame, struct hsr_port *port)
351{
352 if (port->dev->features & NETIF_F_HW_HSR_FWD)
353 return prp_drop_frame(frame, port);
354
355 return false;
356}
357
358/* Forward the frame through all devices except:
359 * - Back through the receiving device
360 * - If it's a HSR frame: through a device where it has passed before
361 * - if it's a PRP frame: through another PRP slave device (no bridge)
362 * - To the local HSR master only if the frame is directly addressed to it, or
363 * a non-supervision multicast or broadcast frame.
364 *
365 * HSR slave devices should insert a HSR tag into the frame, or forward the
366 * frame unchanged if it's already tagged. Interlink devices should strip HSR
367 * tags if they're of the non-HSR type (but only after duplicate discard). The
368 * master device always strips HSR tags.
369 */
370static void hsr_forward_do(struct hsr_frame_info *frame)
371{
372 struct hsr_port *port;
373 struct sk_buff *skb;
374 bool sent = false;
375
376 hsr_for_each_port(frame->port_rcv->hsr, port) {
377 struct hsr_priv *hsr = port->hsr;
378 /* Don't send frame back the way it came */
379 if (port == frame->port_rcv)
380 continue;
381
382 /* Don't deliver locally unless we should */
383 if (port->type == HSR_PT_MASTER && !frame->is_local_dest)
384 continue;
385
386 /* Deliver frames directly addressed to us to master only */
387 if (port->type != HSR_PT_MASTER && frame->is_local_exclusive)
388 continue;
389
390 /* If hardware duplicate generation is enabled, only send out
391 * one port.
392 */
393 if ((port->dev->features & NETIF_F_HW_HSR_DUP) && sent)
394 continue;
395
396 /* Don't send frame over port where it has been sent before.
397 * Also fro SAN, this shouldn't be done.
398 */
399 if (!frame->is_from_san &&
400 hsr_register_frame_out(port, frame->node_src,
401 frame->sequence_nr))
402 continue;
403
404 if (frame->is_supervision && port->type == HSR_PT_MASTER) {
405 hsr_handle_sup_frame(frame);
406 continue;
407 }
408
409 /* Check if frame is to be dropped. Eg. for PRP no forward
410 * between ports.
411 */
412 if (hsr->proto_ops->drop_frame &&
413 hsr->proto_ops->drop_frame(frame, port))
414 continue;
415
416 if (port->type != HSR_PT_MASTER)
417 skb = hsr->proto_ops->create_tagged_frame(frame, port);
418 else
419 skb = hsr->proto_ops->get_untagged_frame(frame, port);
420
421 if (!skb) {
422 frame->port_rcv->dev->stats.rx_dropped++;
423 continue;
424 }
425
426 skb->dev = port->dev;
427 if (port->type == HSR_PT_MASTER) {
428 hsr_deliver_master(skb, port->dev, frame->node_src);
429 } else {
430 if (!hsr_xmit(skb, port, frame))
431 sent = true;
432 }
433 }
434}
435
436static void check_local_dest(struct hsr_priv *hsr, struct sk_buff *skb,
437 struct hsr_frame_info *frame)
438{
439 if (hsr_addr_is_self(hsr, eth_hdr(skb)->h_dest)) {
440 frame->is_local_exclusive = true;
441 skb->pkt_type = PACKET_HOST;
442 } else {
443 frame->is_local_exclusive = false;
444 }
445
446 if (skb->pkt_type == PACKET_HOST ||
447 skb->pkt_type == PACKET_MULTICAST ||
448 skb->pkt_type == PACKET_BROADCAST) {
449 frame->is_local_dest = true;
450 } else {
451 frame->is_local_dest = false;
452 }
453}
454
455static void handle_std_frame(struct sk_buff *skb,
456 struct hsr_frame_info *frame)
457{
458 struct hsr_port *port = frame->port_rcv;
459 struct hsr_priv *hsr = port->hsr;
460 unsigned long irqflags;
461
462 frame->skb_hsr = NULL;
463 frame->skb_prp = NULL;
464 frame->skb_std = skb;
465
466 if (port->type != HSR_PT_MASTER) {
467 frame->is_from_san = true;
468 } else {
469 /* Sequence nr for the master node */
470 spin_lock_irqsave(&hsr->seqnr_lock, irqflags);
471 frame->sequence_nr = hsr->sequence_nr;
472 hsr->sequence_nr++;
473 spin_unlock_irqrestore(&hsr->seqnr_lock, irqflags);
474 }
475}
476
477int hsr_fill_frame_info(__be16 proto, struct sk_buff *skb,
478 struct hsr_frame_info *frame)
479{
480 struct hsr_port *port = frame->port_rcv;
481 struct hsr_priv *hsr = port->hsr;
482
483 /* HSRv0 supervisory frames double as a tag so treat them as tagged. */
484 if ((!hsr->prot_version && proto == htons(ETH_P_PRP)) ||
485 proto == htons(ETH_P_HSR)) {
486 /* Check if skb contains hsr_ethhdr */
487 if (skb->mac_len < sizeof(struct hsr_ethhdr))
488 return -EINVAL;
489
490 /* HSR tagged frame :- Data or Supervision */
491 frame->skb_std = NULL;
492 frame->skb_prp = NULL;
493 frame->skb_hsr = skb;
494 frame->sequence_nr = hsr_get_skb_sequence_nr(skb);
495 return 0;
496 }
497
498 /* Standard frame or PRP from master port */
499 handle_std_frame(skb, frame);
500
501 return 0;
502}
503
504int prp_fill_frame_info(__be16 proto, struct sk_buff *skb,
505 struct hsr_frame_info *frame)
506{
507 /* Supervision frame */
508 struct prp_rct *rct = skb_get_PRP_rct(skb);
509
510 if (rct &&
511 prp_check_lsdu_size(skb, rct, frame->is_supervision)) {
512 frame->skb_hsr = NULL;
513 frame->skb_std = NULL;
514 frame->skb_prp = skb;
515 frame->sequence_nr = prp_get_skb_sequence_nr(rct);
516 return 0;
517 }
518 handle_std_frame(skb, frame);
519
520 return 0;
521}
522
523static int fill_frame_info(struct hsr_frame_info *frame,
524 struct sk_buff *skb, struct hsr_port *port)
525{
526 struct hsr_priv *hsr = port->hsr;
527 struct hsr_vlan_ethhdr *vlan_hdr;
528 struct ethhdr *ethhdr;
529 __be16 proto;
530 int ret;
531
532 /* Check if skb contains ethhdr */
533 if (skb->mac_len < sizeof(struct ethhdr))
534 return -EINVAL;
535
536 memset(frame, 0, sizeof(*frame));
537 frame->is_supervision = is_supervision_frame(port->hsr, skb);
538 frame->node_src = hsr_get_node(port, &hsr->node_db, skb,
539 frame->is_supervision,
540 port->type);
541 if (!frame->node_src)
542 return -1; /* Unknown node and !is_supervision, or no mem */
543
544 ethhdr = (struct ethhdr *)skb_mac_header(skb);
545 frame->is_vlan = false;
546 proto = ethhdr->h_proto;
547
548 if (proto == htons(ETH_P_8021Q))
549 frame->is_vlan = true;
550
551 if (frame->is_vlan) {
552 vlan_hdr = (struct hsr_vlan_ethhdr *)ethhdr;
553 proto = vlan_hdr->vlanhdr.h_vlan_encapsulated_proto;
554 /* FIXME: */
555 netdev_warn_once(skb->dev, "VLAN not yet supported");
556 }
557
558 frame->is_from_san = false;
559 frame->port_rcv = port;
560 ret = hsr->proto_ops->fill_frame_info(proto, skb, frame);
561 if (ret)
562 return ret;
563
564 check_local_dest(port->hsr, skb, frame);
565
566 return 0;
567}
568
569/* Must be called holding rcu read lock (because of the port parameter) */
570void hsr_forward_skb(struct sk_buff *skb, struct hsr_port *port)
571{
572 struct hsr_frame_info frame;
573
574 if (fill_frame_info(&frame, skb, port) < 0)
575 goto out_drop;
576
577 hsr_register_frame_in(frame.node_src, port, frame.sequence_nr);
578 hsr_forward_do(&frame);
579 /* Gets called for ingress frames as well as egress from master port.
580 * So check and increment stats for master port only here.
581 */
582 if (port->type == HSR_PT_MASTER) {
583 port->dev->stats.tx_packets++;
584 port->dev->stats.tx_bytes += skb->len;
585 }
586
587 kfree_skb(frame.skb_hsr);
588 kfree_skb(frame.skb_prp);
589 kfree_skb(frame.skb_std);
590 return;
591
592out_drop:
593 port->dev->stats.tx_dropped++;
594 kfree_skb(skb);
595}
1/* Copyright 2011-2014 Autronica Fire and Security AS
2 *
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):
9 * 2011-2014 Arvid Brodin, arvid.brodin@alten.se
10 */
11
12#include "hsr_forward.h"
13#include <linux/types.h>
14#include <linux/skbuff.h>
15#include <linux/etherdevice.h>
16#include <linux/if_vlan.h>
17#include "hsr_main.h"
18#include "hsr_framereg.h"
19
20
21struct hsr_node;
22
23struct hsr_frame_info {
24 struct sk_buff *skb_std;
25 struct sk_buff *skb_hsr;
26 struct hsr_port *port_rcv;
27 struct hsr_node *node_src;
28 u16 sequence_nr;
29 bool is_supervision;
30 bool is_vlan;
31 bool is_local_dest;
32 bool is_local_exclusive;
33};
34
35
36/* The uses I can see for these HSR supervision frames are:
37 * 1) Use the frames that are sent after node initialization ("HSR_TLV.Type =
38 * 22") to reset any sequence_nr counters belonging to that node. Useful if
39 * the other node's counter has been reset for some reason.
40 * --
41 * Or not - resetting the counter and bridging the frame would create a
42 * loop, unfortunately.
43 *
44 * 2) Use the LifeCheck frames to detect ring breaks. I.e. if no LifeCheck
45 * frame is received from a particular node, we know something is wrong.
46 * We just register these (as with normal frames) and throw them away.
47 *
48 * 3) Allow different MAC addresses for the two slave interfaces, using the
49 * MacAddressA field.
50 */
51static bool is_supervision_frame(struct hsr_priv *hsr, struct sk_buff *skb)
52{
53 struct ethhdr *ethHdr;
54 struct hsr_sup_tag *hsrSupTag;
55 struct hsrv1_ethhdr_sp *hsrV1Hdr;
56
57 WARN_ON_ONCE(!skb_mac_header_was_set(skb));
58 ethHdr = (struct ethhdr *) skb_mac_header(skb);
59
60 /* Correct addr? */
61 if (!ether_addr_equal(ethHdr->h_dest,
62 hsr->sup_multicast_addr))
63 return false;
64
65 /* Correct ether type?. */
66 if (!(ethHdr->h_proto == htons(ETH_P_PRP)
67 || ethHdr->h_proto == htons(ETH_P_HSR)))
68 return false;
69
70 /* Get the supervision header from correct location. */
71 if (ethHdr->h_proto == htons(ETH_P_HSR)) { /* Okay HSRv1. */
72 hsrV1Hdr = (struct hsrv1_ethhdr_sp *) skb_mac_header(skb);
73 if (hsrV1Hdr->hsr.encap_proto != htons(ETH_P_PRP))
74 return false;
75
76 hsrSupTag = &hsrV1Hdr->hsr_sup;
77 } else {
78 hsrSupTag = &((struct hsrv0_ethhdr_sp *) skb_mac_header(skb))->hsr_sup;
79 }
80
81 if ((hsrSupTag->HSR_TLV_Type != HSR_TLV_ANNOUNCE) &&
82 (hsrSupTag->HSR_TLV_Type != HSR_TLV_LIFE_CHECK))
83 return false;
84 if ((hsrSupTag->HSR_TLV_Length != 12) &&
85 (hsrSupTag->HSR_TLV_Length !=
86 sizeof(struct hsr_sup_payload)))
87 return false;
88
89 return true;
90}
91
92
93static struct sk_buff *create_stripped_skb(struct sk_buff *skb_in,
94 struct hsr_frame_info *frame)
95{
96 struct sk_buff *skb;
97 int copylen;
98 unsigned char *dst, *src;
99
100 skb_pull(skb_in, HSR_HLEN);
101 skb = __pskb_copy(skb_in, skb_headroom(skb_in) - HSR_HLEN, GFP_ATOMIC);
102 skb_push(skb_in, HSR_HLEN);
103 if (skb == NULL)
104 return NULL;
105
106 skb_reset_mac_header(skb);
107
108 if (skb->ip_summed == CHECKSUM_PARTIAL)
109 skb->csum_start -= HSR_HLEN;
110
111 copylen = 2*ETH_ALEN;
112 if (frame->is_vlan)
113 copylen += VLAN_HLEN;
114 src = skb_mac_header(skb_in);
115 dst = skb_mac_header(skb);
116 memcpy(dst, src, copylen);
117
118 skb->protocol = eth_hdr(skb)->h_proto;
119 return skb;
120}
121
122static struct sk_buff *frame_get_stripped_skb(struct hsr_frame_info *frame,
123 struct hsr_port *port)
124{
125 if (!frame->skb_std)
126 frame->skb_std = create_stripped_skb(frame->skb_hsr, frame);
127 return skb_clone(frame->skb_std, GFP_ATOMIC);
128}
129
130
131static void hsr_fill_tag(struct sk_buff *skb, struct hsr_frame_info *frame,
132 struct hsr_port *port, u8 protoVersion)
133{
134 struct hsr_ethhdr *hsr_ethhdr;
135 int lane_id;
136 int lsdu_size;
137
138 if (port->type == HSR_PT_SLAVE_A)
139 lane_id = 0;
140 else
141 lane_id = 1;
142
143 lsdu_size = skb->len - 14;
144 if (frame->is_vlan)
145 lsdu_size -= 4;
146
147 hsr_ethhdr = (struct hsr_ethhdr *) skb_mac_header(skb);
148
149 set_hsr_tag_path(&hsr_ethhdr->hsr_tag, lane_id);
150 set_hsr_tag_LSDU_size(&hsr_ethhdr->hsr_tag, lsdu_size);
151 hsr_ethhdr->hsr_tag.sequence_nr = htons(frame->sequence_nr);
152 hsr_ethhdr->hsr_tag.encap_proto = hsr_ethhdr->ethhdr.h_proto;
153 hsr_ethhdr->ethhdr.h_proto = htons(protoVersion ?
154 ETH_P_HSR : ETH_P_PRP);
155}
156
157static struct sk_buff *create_tagged_skb(struct sk_buff *skb_o,
158 struct hsr_frame_info *frame,
159 struct hsr_port *port)
160{
161 int movelen;
162 unsigned char *dst, *src;
163 struct sk_buff *skb;
164
165 /* Create the new skb with enough headroom to fit the HSR tag */
166 skb = __pskb_copy(skb_o, skb_headroom(skb_o) + HSR_HLEN, GFP_ATOMIC);
167 if (skb == NULL)
168 return NULL;
169 skb_reset_mac_header(skb);
170
171 if (skb->ip_summed == CHECKSUM_PARTIAL)
172 skb->csum_start += HSR_HLEN;
173
174 movelen = ETH_HLEN;
175 if (frame->is_vlan)
176 movelen += VLAN_HLEN;
177
178 src = skb_mac_header(skb);
179 dst = skb_push(skb, HSR_HLEN);
180 memmove(dst, src, movelen);
181 skb_reset_mac_header(skb);
182
183 hsr_fill_tag(skb, frame, port, port->hsr->protVersion);
184
185 return skb;
186}
187
188/* If the original frame was an HSR tagged frame, just clone it to be sent
189 * unchanged. Otherwise, create a private frame especially tagged for 'port'.
190 */
191static struct sk_buff *frame_get_tagged_skb(struct hsr_frame_info *frame,
192 struct hsr_port *port)
193{
194 if (frame->skb_hsr)
195 return skb_clone(frame->skb_hsr, GFP_ATOMIC);
196
197 if ((port->type != HSR_PT_SLAVE_A) && (port->type != HSR_PT_SLAVE_B)) {
198 WARN_ONCE(1, "HSR: Bug: trying to create a tagged frame for a non-ring port");
199 return NULL;
200 }
201
202 return create_tagged_skb(frame->skb_std, frame, port);
203}
204
205
206static void hsr_deliver_master(struct sk_buff *skb, struct net_device *dev,
207 struct hsr_node *node_src)
208{
209 bool was_multicast_frame;
210 int res;
211
212 was_multicast_frame = (skb->pkt_type == PACKET_MULTICAST);
213 hsr_addr_subst_source(node_src, skb);
214 skb_pull(skb, ETH_HLEN);
215 res = netif_rx(skb);
216 if (res == NET_RX_DROP) {
217 dev->stats.rx_dropped++;
218 } else {
219 dev->stats.rx_packets++;
220 dev->stats.rx_bytes += skb->len;
221 if (was_multicast_frame)
222 dev->stats.multicast++;
223 }
224}
225
226static int hsr_xmit(struct sk_buff *skb, struct hsr_port *port,
227 struct hsr_frame_info *frame)
228{
229 if (frame->port_rcv->type == HSR_PT_MASTER) {
230 hsr_addr_subst_dest(frame->node_src, skb, port);
231
232 /* Address substitution (IEC62439-3 pp 26, 50): replace mac
233 * address of outgoing frame with that of the outgoing slave's.
234 */
235 ether_addr_copy(eth_hdr(skb)->h_source, port->dev->dev_addr);
236 }
237 return dev_queue_xmit(skb);
238}
239
240
241/* Forward the frame through all devices except:
242 * - Back through the receiving device
243 * - If it's a HSR frame: through a device where it has passed before
244 * - To the local HSR master only if the frame is directly addressed to it, or
245 * a non-supervision multicast or broadcast frame.
246 *
247 * HSR slave devices should insert a HSR tag into the frame, or forward the
248 * frame unchanged if it's already tagged. Interlink devices should strip HSR
249 * tags if they're of the non-HSR type (but only after duplicate discard). The
250 * master device always strips HSR tags.
251 */
252static void hsr_forward_do(struct hsr_frame_info *frame)
253{
254 struct hsr_port *port;
255 struct sk_buff *skb;
256
257 hsr_for_each_port(frame->port_rcv->hsr, port) {
258 /* Don't send frame back the way it came */
259 if (port == frame->port_rcv)
260 continue;
261
262 /* Don't deliver locally unless we should */
263 if ((port->type == HSR_PT_MASTER) && !frame->is_local_dest)
264 continue;
265
266 /* Deliver frames directly addressed to us to master only */
267 if ((port->type != HSR_PT_MASTER) && frame->is_local_exclusive)
268 continue;
269
270 /* Don't send frame over port where it has been sent before */
271 if (hsr_register_frame_out(port, frame->node_src,
272 frame->sequence_nr))
273 continue;
274
275 if (frame->is_supervision && (port->type == HSR_PT_MASTER)) {
276 hsr_handle_sup_frame(frame->skb_hsr,
277 frame->node_src,
278 frame->port_rcv);
279 continue;
280 }
281
282 if (port->type != HSR_PT_MASTER)
283 skb = frame_get_tagged_skb(frame, port);
284 else
285 skb = frame_get_stripped_skb(frame, port);
286 if (skb == NULL) {
287 /* FIXME: Record the dropped frame? */
288 continue;
289 }
290
291 skb->dev = port->dev;
292 if (port->type == HSR_PT_MASTER)
293 hsr_deliver_master(skb, port->dev, frame->node_src);
294 else
295 hsr_xmit(skb, port, frame);
296 }
297}
298
299
300static void check_local_dest(struct hsr_priv *hsr, struct sk_buff *skb,
301 struct hsr_frame_info *frame)
302{
303 if (hsr_addr_is_self(hsr, eth_hdr(skb)->h_dest)) {
304 frame->is_local_exclusive = true;
305 skb->pkt_type = PACKET_HOST;
306 } else {
307 frame->is_local_exclusive = false;
308 }
309
310 if ((skb->pkt_type == PACKET_HOST) ||
311 (skb->pkt_type == PACKET_MULTICAST) ||
312 (skb->pkt_type == PACKET_BROADCAST)) {
313 frame->is_local_dest = true;
314 } else {
315 frame->is_local_dest = false;
316 }
317}
318
319
320static int hsr_fill_frame_info(struct hsr_frame_info *frame,
321 struct sk_buff *skb, struct hsr_port *port)
322{
323 struct ethhdr *ethhdr;
324 unsigned long irqflags;
325
326 frame->is_supervision = is_supervision_frame(port->hsr, skb);
327 frame->node_src = hsr_get_node(port, skb, frame->is_supervision);
328 if (frame->node_src == NULL)
329 return -1; /* Unknown node and !is_supervision, or no mem */
330
331 ethhdr = (struct ethhdr *) skb_mac_header(skb);
332 frame->is_vlan = false;
333 if (ethhdr->h_proto == htons(ETH_P_8021Q)) {
334 frame->is_vlan = true;
335 /* FIXME: */
336 WARN_ONCE(1, "HSR: VLAN not yet supported");
337 }
338 if (ethhdr->h_proto == htons(ETH_P_PRP)
339 || ethhdr->h_proto == htons(ETH_P_HSR)) {
340 frame->skb_std = NULL;
341 frame->skb_hsr = skb;
342 frame->sequence_nr = hsr_get_skb_sequence_nr(skb);
343 } else {
344 frame->skb_std = skb;
345 frame->skb_hsr = NULL;
346 /* Sequence nr for the master node */
347 spin_lock_irqsave(&port->hsr->seqnr_lock, irqflags);
348 frame->sequence_nr = port->hsr->sequence_nr;
349 port->hsr->sequence_nr++;
350 spin_unlock_irqrestore(&port->hsr->seqnr_lock, irqflags);
351 }
352
353 frame->port_rcv = port;
354 check_local_dest(port->hsr, skb, frame);
355
356 return 0;
357}
358
359/* Must be called holding rcu read lock (because of the port parameter) */
360void hsr_forward_skb(struct sk_buff *skb, struct hsr_port *port)
361{
362 struct hsr_frame_info frame;
363
364 if (skb_mac_header(skb) != skb->data) {
365 WARN_ONCE(1, "%s:%d: Malformed frame (port_src %s)\n",
366 __FILE__, __LINE__, port->dev->name);
367 goto out_drop;
368 }
369
370 if (hsr_fill_frame_info(&frame, skb, port) < 0)
371 goto out_drop;
372 hsr_register_frame_in(frame.node_src, port, frame.sequence_nr);
373 hsr_forward_do(&frame);
374
375 if (frame.skb_hsr != NULL)
376 kfree_skb(frame.skb_hsr);
377 if (frame.skb_std != NULL)
378 kfree_skb(frame.skb_std);
379 return;
380
381out_drop:
382 port->dev->stats.tx_dropped++;
383 kfree_skb(skb);
384}