1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (C) 2011-2020 B.A.T.M.A.N. contributors:
7 #ifndef _NET_BATMAN_ADV_DISTRIBUTED_ARP_TABLE_H_
8 #define _NET_BATMAN_ADV_DISTRIBUTED_ARP_TABLE_H_
12 #include <linux/compiler.h>
13 #include <linux/netdevice.h>
14 #include <linux/netlink.h>
15 #include <linux/seq_file.h>
16 #include <linux/skbuff.h>
17 #include <linux/types.h>
18 #include <uapi/linux/batadv_packet.h>
20 #include "originator.h"
22 #ifdef CONFIG_BATMAN_ADV_DAT
24 /* BATADV_DAT_ADDR_MAX - maximum address value in the DHT space */
25 #define BATADV_DAT_ADDR_MAX ((batadv_dat_addr_t)~(batadv_dat_addr_t)0)
27 void batadv_dat_status_update(struct net_device
*net_dev
);
28 bool batadv_dat_snoop_outgoing_arp_request(struct batadv_priv
*bat_priv
,
30 bool batadv_dat_snoop_incoming_arp_request(struct batadv_priv
*bat_priv
,
31 struct sk_buff
*skb
, int hdr_size
);
32 void batadv_dat_snoop_outgoing_arp_reply(struct batadv_priv
*bat_priv
,
34 bool batadv_dat_snoop_incoming_arp_reply(struct batadv_priv
*bat_priv
,
35 struct sk_buff
*skb
, int hdr_size
);
36 void batadv_dat_snoop_outgoing_dhcp_ack(struct batadv_priv
*bat_priv
,
40 void batadv_dat_snoop_incoming_dhcp_ack(struct batadv_priv
*bat_priv
,
41 struct sk_buff
*skb
, int hdr_size
);
42 bool batadv_dat_drop_broadcast_packet(struct batadv_priv
*bat_priv
,
43 struct batadv_forw_packet
*forw_packet
);
46 * batadv_dat_init_orig_node_addr() - assign a DAT address to the orig_node
47 * @orig_node: the node to assign the DAT address to
50 batadv_dat_init_orig_node_addr(struct batadv_orig_node
*orig_node
)
54 addr
= batadv_choose_orig(orig_node
->orig
, BATADV_DAT_ADDR_MAX
);
55 orig_node
->dat_addr
= (batadv_dat_addr_t
)addr
;
59 * batadv_dat_init_own_addr() - assign a DAT address to the node itself
60 * @bat_priv: the bat priv with all the soft interface information
61 * @primary_if: a pointer to the primary interface
64 batadv_dat_init_own_addr(struct batadv_priv
*bat_priv
,
65 struct batadv_hard_iface
*primary_if
)
69 addr
= batadv_choose_orig(primary_if
->net_dev
->dev_addr
,
72 bat_priv
->dat
.addr
= (batadv_dat_addr_t
)addr
;
75 int batadv_dat_init(struct batadv_priv
*bat_priv
);
76 void batadv_dat_free(struct batadv_priv
*bat_priv
);
77 int batadv_dat_cache_seq_print_text(struct seq_file
*seq
, void *offset
);
78 int batadv_dat_cache_dump(struct sk_buff
*msg
, struct netlink_callback
*cb
);
81 * batadv_dat_inc_counter() - increment the correct DAT packet counter
82 * @bat_priv: the bat priv with all the soft interface information
83 * @subtype: the 4addr subtype of the packet to be counted
85 * Updates the ethtool statistics for the received packet if it is a DAT subtype
87 static inline void batadv_dat_inc_counter(struct batadv_priv
*bat_priv
,
91 case BATADV_P_DAT_DHT_GET
:
92 batadv_inc_counter(bat_priv
,
93 BATADV_CNT_DAT_GET_RX
);
95 case BATADV_P_DAT_DHT_PUT
:
96 batadv_inc_counter(bat_priv
,
97 BATADV_CNT_DAT_PUT_RX
);
104 static inline void batadv_dat_status_update(struct net_device
*net_dev
)
109 batadv_dat_snoop_outgoing_arp_request(struct batadv_priv
*bat_priv
,
116 batadv_dat_snoop_incoming_arp_request(struct batadv_priv
*bat_priv
,
117 struct sk_buff
*skb
, int hdr_size
)
123 batadv_dat_snoop_outgoing_arp_reply(struct batadv_priv
*bat_priv
,
130 batadv_dat_snoop_incoming_arp_reply(struct batadv_priv
*bat_priv
,
131 struct sk_buff
*skb
, int hdr_size
)
137 batadv_dat_snoop_outgoing_dhcp_ack(struct batadv_priv
*bat_priv
,
138 struct sk_buff
*skb
, __be16 proto
,
144 batadv_dat_snoop_incoming_dhcp_ack(struct batadv_priv
*bat_priv
,
145 struct sk_buff
*skb
, int hdr_size
)
150 batadv_dat_drop_broadcast_packet(struct batadv_priv
*bat_priv
,
151 struct batadv_forw_packet
*forw_packet
)
157 batadv_dat_init_orig_node_addr(struct batadv_orig_node
*orig_node
)
161 static inline void batadv_dat_init_own_addr(struct batadv_priv
*bat_priv
,
162 struct batadv_hard_iface
*iface
)
166 static inline void batadv_arp_change_timeout(struct net_device
*soft_iface
,
171 static inline int batadv_dat_init(struct batadv_priv
*bat_priv
)
176 static inline void batadv_dat_free(struct batadv_priv
*bat_priv
)
181 batadv_dat_cache_dump(struct sk_buff
*msg
, struct netlink_callback
*cb
)
186 static inline void batadv_dat_inc_counter(struct batadv_priv
*bat_priv
,
191 #endif /* CONFIG_BATMAN_ADV_DAT */
193 #endif /* _NET_BATMAN_ADV_DISTRIBUTED_ARP_TABLE_H_ */