1 /* Copyright 2011-2014 Autronica Fire and Security AS
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)
9 * 2011-2014 Arvid Brodin, arvid.brodin@alten.se
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>
18 #include "hsr_framereg.h"
23 struct 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
;
32 bool is_local_exclusive
;
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.
41 * Or not - resetting the counter and bridging the frame would create a
42 * loop, unfortunately.
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.
48 * 3) Allow different MAC addresses for the two slave interfaces, using the
51 static bool is_supervision_frame(struct hsr_priv
*hsr
, struct sk_buff
*skb
)
53 struct ethhdr
*ethHdr
;
54 struct hsr_sup_tag
*hsrSupTag
;
55 struct hsrv1_ethhdr_sp
*hsrV1Hdr
;
57 WARN_ON_ONCE(!skb_mac_header_was_set(skb
));
58 ethHdr
= (struct ethhdr
*) skb_mac_header(skb
);
61 if (!ether_addr_equal(ethHdr
->h_dest
,
62 hsr
->sup_multicast_addr
))
65 /* Correct ether type?. */
66 if (!(ethHdr
->h_proto
== htons(ETH_P_PRP
)
67 || ethHdr
->h_proto
== htons(ETH_P_HSR
)))
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
))
76 hsrSupTag
= &hsrV1Hdr
->hsr_sup
;
78 hsrSupTag
= &((struct hsrv0_ethhdr_sp
*) skb_mac_header(skb
))->hsr_sup
;
81 if ((hsrSupTag
->HSR_TLV_Type
!= HSR_TLV_ANNOUNCE
) &&
82 (hsrSupTag
->HSR_TLV_Type
!= HSR_TLV_LIFE_CHECK
))
84 if ((hsrSupTag
->HSR_TLV_Length
!= 12) &&
85 (hsrSupTag
->HSR_TLV_Length
!=
86 sizeof(struct hsr_sup_payload
)))
93 static struct sk_buff
*create_stripped_skb(struct sk_buff
*skb_in
,
94 struct hsr_frame_info
*frame
)
98 unsigned char *dst
, *src
;
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
);
106 skb_reset_mac_header(skb
);
108 if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
109 skb
->csum_start
-= HSR_HLEN
;
111 copylen
= 2*ETH_ALEN
;
113 copylen
+= VLAN_HLEN
;
114 src
= skb_mac_header(skb_in
);
115 dst
= skb_mac_header(skb
);
116 memcpy(dst
, src
, copylen
);
118 skb
->protocol
= eth_hdr(skb
)->h_proto
;
122 static struct sk_buff
*frame_get_stripped_skb(struct hsr_frame_info
*frame
,
123 struct hsr_port
*port
)
126 frame
->skb_std
= create_stripped_skb(frame
->skb_hsr
, frame
);
127 return skb_clone(frame
->skb_std
, GFP_ATOMIC
);
131 static void hsr_fill_tag(struct sk_buff
*skb
, struct hsr_frame_info
*frame
,
132 struct hsr_port
*port
, u8 protoVersion
)
134 struct hsr_ethhdr
*hsr_ethhdr
;
138 if (port
->type
== HSR_PT_SLAVE_A
)
143 lsdu_size
= skb
->len
- 14;
147 hsr_ethhdr
= (struct hsr_ethhdr
*) skb_mac_header(skb
);
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
);
157 static struct sk_buff
*create_tagged_skb(struct sk_buff
*skb_o
,
158 struct hsr_frame_info
*frame
,
159 struct hsr_port
*port
)
162 unsigned char *dst
, *src
;
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
);
169 skb_reset_mac_header(skb
);
171 if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
172 skb
->csum_start
+= HSR_HLEN
;
176 movelen
+= VLAN_HLEN
;
178 src
= skb_mac_header(skb
);
179 dst
= skb_push(skb
, HSR_HLEN
);
180 memmove(dst
, src
, movelen
);
181 skb_reset_mac_header(skb
);
183 hsr_fill_tag(skb
, frame
, port
, port
->hsr
->protVersion
);
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'.
191 static struct sk_buff
*frame_get_tagged_skb(struct hsr_frame_info
*frame
,
192 struct hsr_port
*port
)
195 return skb_clone(frame
->skb_hsr
, GFP_ATOMIC
);
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");
202 return create_tagged_skb(frame
->skb_std
, frame
, port
);
206 static void hsr_deliver_master(struct sk_buff
*skb
, struct net_device
*dev
,
207 struct hsr_node
*node_src
)
209 bool was_multicast_frame
;
212 was_multicast_frame
= (skb
->pkt_type
== PACKET_MULTICAST
);
213 hsr_addr_subst_source(node_src
, skb
);
214 skb_pull(skb
, ETH_HLEN
);
216 if (res
== NET_RX_DROP
) {
217 dev
->stats
.rx_dropped
++;
219 dev
->stats
.rx_packets
++;
220 dev
->stats
.rx_bytes
+= skb
->len
;
221 if (was_multicast_frame
)
222 dev
->stats
.multicast
++;
226 static int hsr_xmit(struct sk_buff
*skb
, struct hsr_port
*port
,
227 struct hsr_frame_info
*frame
)
229 if (frame
->port_rcv
->type
== HSR_PT_MASTER
) {
230 hsr_addr_subst_dest(frame
->node_src
, skb
, port
);
232 /* Address substitution (IEC62439-3 pp 26, 50): replace mac
233 * address of outgoing frame with that of the outgoing slave's.
235 ether_addr_copy(eth_hdr(skb
)->h_source
, port
->dev
->dev_addr
);
237 return dev_queue_xmit(skb
);
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.
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.
252 static void hsr_forward_do(struct hsr_frame_info
*frame
)
254 struct hsr_port
*port
;
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
)
262 /* Don't deliver locally unless we should */
263 if ((port
->type
== HSR_PT_MASTER
) && !frame
->is_local_dest
)
266 /* Deliver frames directly addressed to us to master only */
267 if ((port
->type
!= HSR_PT_MASTER
) && frame
->is_local_exclusive
)
270 /* Don't send frame over port where it has been sent before */
271 if (hsr_register_frame_out(port
, frame
->node_src
,
275 if (frame
->is_supervision
&& (port
->type
== HSR_PT_MASTER
)) {
276 hsr_handle_sup_frame(frame
->skb_hsr
,
282 if (port
->type
!= HSR_PT_MASTER
)
283 skb
= frame_get_tagged_skb(frame
, port
);
285 skb
= frame_get_stripped_skb(frame
, port
);
287 /* FIXME: Record the dropped frame? */
291 skb
->dev
= port
->dev
;
292 if (port
->type
== HSR_PT_MASTER
)
293 hsr_deliver_master(skb
, port
->dev
, frame
->node_src
);
295 hsr_xmit(skb
, port
, frame
);
300 static void check_local_dest(struct hsr_priv
*hsr
, struct sk_buff
*skb
,
301 struct hsr_frame_info
*frame
)
303 struct net_device
*master_dev
;
305 master_dev
= hsr_port_get_hsr(hsr
, HSR_PT_MASTER
)->dev
;
307 if (hsr_addr_is_self(hsr
, eth_hdr(skb
)->h_dest
)) {
308 frame
->is_local_exclusive
= true;
309 skb
->pkt_type
= PACKET_HOST
;
311 frame
->is_local_exclusive
= false;
314 if ((skb
->pkt_type
== PACKET_HOST
) ||
315 (skb
->pkt_type
== PACKET_MULTICAST
) ||
316 (skb
->pkt_type
== PACKET_BROADCAST
)) {
317 frame
->is_local_dest
= true;
319 frame
->is_local_dest
= false;
324 static int hsr_fill_frame_info(struct hsr_frame_info
*frame
,
325 struct sk_buff
*skb
, struct hsr_port
*port
)
327 struct ethhdr
*ethhdr
;
328 unsigned long irqflags
;
330 frame
->is_supervision
= is_supervision_frame(port
->hsr
, skb
);
331 frame
->node_src
= hsr_get_node(&port
->hsr
->node_db
, skb
,
332 frame
->is_supervision
);
333 if (frame
->node_src
== NULL
)
334 return -1; /* Unknown node and !is_supervision, or no mem */
336 ethhdr
= (struct ethhdr
*) skb_mac_header(skb
);
337 frame
->is_vlan
= false;
338 if (ethhdr
->h_proto
== htons(ETH_P_8021Q
)) {
339 frame
->is_vlan
= true;
341 WARN_ONCE(1, "HSR: VLAN not yet supported");
343 if (ethhdr
->h_proto
== htons(ETH_P_PRP
)
344 || ethhdr
->h_proto
== htons(ETH_P_HSR
)) {
345 frame
->skb_std
= NULL
;
346 frame
->skb_hsr
= skb
;
347 frame
->sequence_nr
= hsr_get_skb_sequence_nr(skb
);
349 frame
->skb_std
= skb
;
350 frame
->skb_hsr
= NULL
;
351 /* Sequence nr for the master node */
352 spin_lock_irqsave(&port
->hsr
->seqnr_lock
, irqflags
);
353 frame
->sequence_nr
= port
->hsr
->sequence_nr
;
354 port
->hsr
->sequence_nr
++;
355 spin_unlock_irqrestore(&port
->hsr
->seqnr_lock
, irqflags
);
358 frame
->port_rcv
= port
;
359 check_local_dest(port
->hsr
, skb
, frame
);
364 /* Must be called holding rcu read lock (because of the port parameter) */
365 void hsr_forward_skb(struct sk_buff
*skb
, struct hsr_port
*port
)
367 struct hsr_frame_info frame
;
369 if (skb_mac_header(skb
) != skb
->data
) {
370 WARN_ONCE(1, "%s:%d: Malformed frame (port_src %s)\n",
371 __FILE__
, __LINE__
, port
->dev
->name
);
375 if (hsr_fill_frame_info(&frame
, skb
, port
) < 0)
377 hsr_register_frame_in(frame
.node_src
, port
, frame
.sequence_nr
);
378 hsr_forward_do(&frame
);
380 if (frame
.skb_hsr
!= NULL
)
381 kfree_skb(frame
.skb_hsr
);
382 if (frame
.skb_std
!= NULL
)
383 kfree_skb(frame
.skb_std
);
387 port
->dev
->stats
.tx_dropped
++;