blob: c87f36fc154c0fda62f76c927a9177c1b8a1ecb1 [file] [log] [blame]
Arvid Brodin70ebe4a2014-07-04 23:34:38 +02001/* Copyright 2011-2014 Autronica Fire and Security AS
Arvid Brodinf4214362013-10-30 21:10:47 +01002 *
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):
Arvid Brodin70ebe4a2014-07-04 23:34:38 +02009 * 2011-2014 Arvid Brodin, arvid.brodin@alten.se
Arvid Brodinf4214362013-10-30 21:10:47 +010010 */
11
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020012#ifndef __HSR_FRAMEREG_H
13#define __HSR_FRAMEREG_H
Arvid Brodinf4214362013-10-30 21:10:47 +010014
15#include "hsr_main.h"
16
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020017struct hsr_node;
Arvid Brodinf4214362013-10-30 21:10:47 +010018
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020019struct hsr_node *hsr_find_node(struct list_head *node_db, struct sk_buff *skb);
Arvid Brodinf4214362013-10-30 21:10:47 +010020
Arvid Brodinc5a75912014-07-04 23:38:05 +020021struct hsr_node *hsr_merge_node(struct hsr_node *node, struct sk_buff *skb,
22 struct hsr_port *port);
Arvid Brodinf4214362013-10-30 21:10:47 +010023
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020024void hsr_addr_subst_source(struct hsr_priv *hsr, struct sk_buff *skb);
25void hsr_addr_subst_dest(struct hsr_priv *hsr, struct ethhdr *ethhdr,
Arvid Brodinc5a75912014-07-04 23:38:05 +020026 struct hsr_port *port);
Arvid Brodinf4214362013-10-30 21:10:47 +010027
Arvid Brodinc5a75912014-07-04 23:38:05 +020028void hsr_register_frame_in(struct hsr_node *node, struct hsr_port *port);
Arvid Brodinf4214362013-10-30 21:10:47 +010029
Arvid Brodinc5a75912014-07-04 23:38:05 +020030int hsr_register_frame_out(struct hsr_node *node, struct hsr_port *port,
Arvid Brodinf4214362013-10-30 21:10:47 +010031 struct sk_buff *skb);
32
Arvid Brodinabff7162014-07-04 23:35:47 +020033void hsr_prune_nodes(unsigned long data);
Arvid Brodinf4214362013-10-30 21:10:47 +010034
35int hsr_create_self_node(struct list_head *self_node_db,
36 unsigned char addr_a[ETH_ALEN],
37 unsigned char addr_b[ETH_ALEN]);
38
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020039void *hsr_get_next_node(struct hsr_priv *hsr, void *_pos,
Arvid Brodinf4214362013-10-30 21:10:47 +010040 unsigned char addr[ETH_ALEN]);
41
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020042int hsr_get_node_data(struct hsr_priv *hsr,
Arvid Brodinf4214362013-10-30 21:10:47 +010043 const unsigned char *addr,
44 unsigned char addr_b[ETH_ALEN],
45 unsigned int *addr_b_ifindex,
46 int *if1_age,
47 u16 *if1_seq,
48 int *if2_age,
49 u16 *if2_seq);
50
Arvid Brodin70ebe4a2014-07-04 23:34:38 +020051#endif /* __HSR_FRAMEREG_H */