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 hsr_ethhdr_sp
*hdr
;
55 WARN_ON_ONCE(!skb_mac_header_was_set(skb
));
56 hdr
= (struct hsr_ethhdr_sp
*) skb_mac_header(skb
);
58 if (!ether_addr_equal(hdr
->ethhdr
.h_dest
,
59 hsr
->sup_multicast_addr
))
62 if (get_hsr_stag_path(&hdr
->hsr_sup
) != 0x0f)
64 if ((hdr
->hsr_sup
.HSR_TLV_Type
!= HSR_TLV_ANNOUNCE
) &&
65 (hdr
->hsr_sup
.HSR_TLV_Type
!= HSR_TLV_LIFE_CHECK
))
67 if (hdr
->hsr_sup
.HSR_TLV_Length
!= 12)
74 static struct sk_buff
*create_stripped_skb(struct sk_buff
*skb_in
,
75 struct hsr_frame_info
*frame
)
79 unsigned char *dst
, *src
;
81 skb_pull(skb_in
, HSR_HLEN
);
82 skb
= __pskb_copy(skb_in
, skb_headroom(skb_in
) - HSR_HLEN
, GFP_ATOMIC
);
83 skb_push(skb_in
, HSR_HLEN
);
87 skb_reset_mac_header(skb
);
89 if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
90 skb
->csum_start
-= HSR_HLEN
;
95 src
= skb_mac_header(skb_in
);
96 dst
= skb_mac_header(skb
);
97 memcpy(dst
, src
, copylen
);
99 skb
->protocol
= eth_hdr(skb
)->h_proto
;
103 static struct sk_buff
*frame_get_stripped_skb(struct hsr_frame_info
*frame
,
104 struct hsr_port
*port
)
107 frame
->skb_std
= create_stripped_skb(frame
->skb_hsr
, frame
);
108 return skb_clone(frame
->skb_std
, GFP_ATOMIC
);
112 static void hsr_fill_tag(struct sk_buff
*skb
, struct hsr_frame_info
*frame
,
113 struct hsr_port
*port
)
115 struct hsr_ethhdr
*hsr_ethhdr
;
119 if (port
->type
== HSR_PT_SLAVE_A
)
124 lsdu_size
= skb
->len
- 14;
128 hsr_ethhdr
= (struct hsr_ethhdr
*) skb_mac_header(skb
);
130 set_hsr_tag_path(&hsr_ethhdr
->hsr_tag
, lane_id
);
131 set_hsr_tag_LSDU_size(&hsr_ethhdr
->hsr_tag
, lsdu_size
);
132 hsr_ethhdr
->hsr_tag
.sequence_nr
= htons(frame
->sequence_nr
);
133 hsr_ethhdr
->hsr_tag
.encap_proto
= hsr_ethhdr
->ethhdr
.h_proto
;
134 hsr_ethhdr
->ethhdr
.h_proto
= htons(ETH_P_PRP
);
137 static struct sk_buff
*create_tagged_skb(struct sk_buff
*skb_o
,
138 struct hsr_frame_info
*frame
,
139 struct hsr_port
*port
)
142 unsigned char *dst
, *src
;
145 /* Create the new skb with enough headroom to fit the HSR tag */
146 skb
= __pskb_copy(skb_o
, skb_headroom(skb_o
) + HSR_HLEN
, GFP_ATOMIC
);
149 skb_reset_mac_header(skb
);
151 if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
152 skb
->csum_start
+= HSR_HLEN
;
156 movelen
+= VLAN_HLEN
;
158 src
= skb_mac_header(skb
);
159 dst
= skb_push(skb
, HSR_HLEN
);
160 memmove(dst
, src
, movelen
);
161 skb_reset_mac_header(skb
);
163 hsr_fill_tag(skb
, frame
, port
);
168 /* If the original frame was an HSR tagged frame, just clone it to be sent
169 * unchanged. Otherwise, create a private frame especially tagged for 'port'.
171 static struct sk_buff
*frame_get_tagged_skb(struct hsr_frame_info
*frame
,
172 struct hsr_port
*port
)
175 return skb_clone(frame
->skb_hsr
, GFP_ATOMIC
);
177 if ((port
->type
!= HSR_PT_SLAVE_A
) && (port
->type
!= HSR_PT_SLAVE_B
)) {
178 WARN_ONCE(1, "HSR: Bug: trying to create a tagged frame for a non-ring port");
182 return create_tagged_skb(frame
->skb_std
, frame
, port
);
186 static void hsr_deliver_master(struct sk_buff
*skb
, struct net_device
*dev
,
187 struct hsr_node
*node_src
)
189 bool was_multicast_frame
;
192 was_multicast_frame
= (skb
->pkt_type
== PACKET_MULTICAST
);
193 hsr_addr_subst_source(node_src
, skb
);
194 skb_pull(skb
, ETH_HLEN
);
196 if (res
== NET_RX_DROP
) {
197 dev
->stats
.rx_dropped
++;
199 dev
->stats
.rx_packets
++;
200 dev
->stats
.rx_bytes
+= skb
->len
;
201 if (was_multicast_frame
)
202 dev
->stats
.multicast
++;
206 static int hsr_xmit(struct sk_buff
*skb
, struct hsr_port
*port
,
207 struct hsr_frame_info
*frame
)
209 if (frame
->port_rcv
->type
== HSR_PT_MASTER
) {
210 hsr_addr_subst_dest(frame
->node_src
, skb
, port
);
212 /* Address substitution (IEC62439-3 pp 26, 50): replace mac
213 * address of outgoing frame with that of the outgoing slave's.
215 ether_addr_copy(eth_hdr(skb
)->h_source
, port
->dev
->dev_addr
);
217 return dev_queue_xmit(skb
);
221 /* Forward the frame through all devices except:
222 * - Back through the receiving device
223 * - If it's a HSR frame: through a device where it has passed before
224 * - To the local HSR master only if the frame is directly addressed to it, or
225 * a non-supervision multicast or broadcast frame.
227 * HSR slave devices should insert a HSR tag into the frame, or forward the
228 * frame unchanged if it's already tagged. Interlink devices should strip HSR
229 * tags if they're of the non-HSR type (but only after duplicate discard). The
230 * master device always strips HSR tags.
232 static void hsr_forward_do(struct hsr_frame_info
*frame
)
234 struct hsr_port
*port
;
237 hsr_for_each_port(frame
->port_rcv
->hsr
, port
) {
238 /* Don't send frame back the way it came */
239 if (port
== frame
->port_rcv
)
242 /* Don't deliver locally unless we should */
243 if ((port
->type
== HSR_PT_MASTER
) && !frame
->is_local_dest
)
246 /* Deliver frames directly addressed to us to master only */
247 if ((port
->type
!= HSR_PT_MASTER
) && frame
->is_local_exclusive
)
250 /* Don't send frame over port where it has been sent before */
251 if (hsr_register_frame_out(port
, frame
->node_src
,
255 if (frame
->is_supervision
&& (port
->type
== HSR_PT_MASTER
)) {
256 hsr_handle_sup_frame(frame
->skb_hsr
,
262 if (port
->type
!= HSR_PT_MASTER
)
263 skb
= frame_get_tagged_skb(frame
, port
);
265 skb
= frame_get_stripped_skb(frame
, port
);
267 /* FIXME: Record the dropped frame? */
271 skb
->dev
= port
->dev
;
272 if (port
->type
== HSR_PT_MASTER
)
273 hsr_deliver_master(skb
, port
->dev
, frame
->node_src
);
275 hsr_xmit(skb
, port
, frame
);
280 static void check_local_dest(struct hsr_priv
*hsr
, struct sk_buff
*skb
,
281 struct hsr_frame_info
*frame
)
283 struct net_device
*master_dev
;
285 master_dev
= hsr_port_get_hsr(hsr
, HSR_PT_MASTER
)->dev
;
287 if (hsr_addr_is_self(hsr
, eth_hdr(skb
)->h_dest
)) {
288 frame
->is_local_exclusive
= true;
289 skb
->pkt_type
= PACKET_HOST
;
291 frame
->is_local_exclusive
= false;
294 if ((skb
->pkt_type
== PACKET_HOST
) ||
295 (skb
->pkt_type
== PACKET_MULTICAST
) ||
296 (skb
->pkt_type
== PACKET_BROADCAST
)) {
297 frame
->is_local_dest
= true;
299 frame
->is_local_dest
= false;
304 static int hsr_fill_frame_info(struct hsr_frame_info
*frame
,
305 struct sk_buff
*skb
, struct hsr_port
*port
)
307 struct ethhdr
*ethhdr
;
308 unsigned long irqflags
;
310 frame
->is_supervision
= is_supervision_frame(port
->hsr
, skb
);
311 frame
->node_src
= hsr_get_node(&port
->hsr
->node_db
, skb
,
312 frame
->is_supervision
);
313 if (frame
->node_src
== NULL
)
314 return -1; /* Unknown node and !is_supervision, or no mem */
316 ethhdr
= (struct ethhdr
*) skb_mac_header(skb
);
317 frame
->is_vlan
= false;
318 if (ethhdr
->h_proto
== htons(ETH_P_8021Q
)) {
319 frame
->is_vlan
= true;
321 WARN_ONCE(1, "HSR: VLAN not yet supported");
323 if (ethhdr
->h_proto
== htons(ETH_P_PRP
)) {
324 frame
->skb_std
= NULL
;
325 frame
->skb_hsr
= skb
;
326 frame
->sequence_nr
= hsr_get_skb_sequence_nr(skb
);
328 frame
->skb_std
= skb
;
329 frame
->skb_hsr
= NULL
;
330 /* Sequence nr for the master node */
331 spin_lock_irqsave(&port
->hsr
->seqnr_lock
, irqflags
);
332 frame
->sequence_nr
= port
->hsr
->sequence_nr
;
333 port
->hsr
->sequence_nr
++;
334 spin_unlock_irqrestore(&port
->hsr
->seqnr_lock
, irqflags
);
337 frame
->port_rcv
= port
;
338 check_local_dest(port
->hsr
, skb
, frame
);
343 /* Must be called holding rcu read lock (because of the port parameter) */
344 void hsr_forward_skb(struct sk_buff
*skb
, struct hsr_port
*port
)
346 struct hsr_frame_info frame
;
348 if (skb_mac_header(skb
) != skb
->data
) {
349 WARN_ONCE(1, "%s:%d: Malformed frame (port_src %s)\n",
350 __FILE__
, __LINE__
, port
->dev
->name
);
354 if (hsr_fill_frame_info(&frame
, skb
, port
) < 0)
356 hsr_register_frame_in(frame
.node_src
, port
, frame
.sequence_nr
);
357 hsr_forward_do(&frame
);
359 if (frame
.skb_hsr
!= NULL
)
360 kfree_skb(frame
.skb_hsr
);
361 if (frame
.skb_std
!= NULL
)
362 kfree_skb(frame
.skb_std
);
366 port
->dev
->stats
.tx_dropped
++;