2017-11-19 15:05:11 +01:00
/* SPDX-License-Identifier: GPL-2.0 */
2021-01-01 00:00:01 +01:00
/* Copyright (C) B.A.T.M.A.N. contributors:
2014-02-15 17:47:49 +01:00
*
* Linus Lüssing
*/
# ifndef _NET_BATMAN_ADV_MULTICAST_H_
# define _NET_BATMAN_ADV_MULTICAST_H_
2015-04-17 19:40:28 +02:00
# include "main.h"
2019-05-24 20:11:17 +02:00
# include <linux/netlink.h>
# include <linux/skbuff.h>
2023-09-07 03:09:09 +02:00
# include <linux/types.h>
2015-04-17 19:40:28 +02:00
2014-02-15 17:47:52 +01:00
/**
2015-09-06 21:38:49 +02:00
* enum batadv_forw_mode - the way a packet should be forwarded as
2014-02-15 17:47:52 +01:00
*/
enum batadv_forw_mode {
2017-12-02 19:51:48 +01:00
/**
2022-12-27 20:34:05 +01:00
* @ BATADV_FORW_BCAST : forward the packet to all nodes via a batman - adv
* broadcast packet
2017-12-02 19:51:48 +01:00
*/
2022-12-27 20:34:05 +01:00
BATADV_FORW_BCAST ,
2017-12-02 19:51:48 +01:00
2019-03-23 05:47:41 +01:00
/**
2022-12-27 20:34:05 +01:00
* @ BATADV_FORW_UCASTS : forward the packet to some nodes via one
* or more batman - adv unicast packets
2019-03-23 05:47:41 +01:00
*/
2022-12-27 20:34:05 +01:00
BATADV_FORW_UCASTS ,
2017-12-02 19:51:48 +01:00
2023-09-07 03:09:09 +02:00
/**
* @ BATADV_FORW_MCAST : forward the packet to some nodes via a
* batman - adv multicast packet
*/
BATADV_FORW_MCAST ,
2017-12-02 19:51:48 +01:00
/** @BATADV_FORW_NONE: don't forward, drop it */
2014-02-15 17:47:52 +01:00
BATADV_FORW_NONE ,
} ;
2014-02-15 17:47:49 +01:00
# ifdef CONFIG_BATMAN_ADV_MCAST
2014-02-15 17:47:52 +01:00
enum batadv_forw_mode
batadv_mcast_forw_mode ( struct batadv_priv * bat_priv , struct sk_buff * skb ,
2023-09-07 03:09:09 +02:00
unsigned short vid , int * is_routable ) ;
2014-02-15 17:47:52 +01:00
2019-03-23 05:47:41 +01:00
int batadv_mcast_forw_send ( struct batadv_priv * bat_priv , struct sk_buff * skb ,
2022-01-01 06:27:13 +01:00
unsigned short vid , int is_routable ) ;
2019-03-23 05:47:41 +01:00
2014-02-15 17:47:51 +01:00
void batadv_mcast_init ( struct batadv_priv * bat_priv ) ;
2018-03-13 11:41:13 +01:00
int batadv_mcast_mesh_info_put ( struct sk_buff * msg ,
struct batadv_priv * bat_priv ) ;
int batadv_mcast_flags_dump ( struct sk_buff * msg , struct netlink_callback * cb ) ;
2014-02-15 17:47:49 +01:00
void batadv_mcast_free ( struct batadv_priv * bat_priv ) ;
2014-02-15 17:47:51 +01:00
void batadv_mcast_purge_orig ( struct batadv_orig_node * orig_node ) ;
2023-09-07 03:09:08 +02:00
/* multicast_forw.c */
int batadv_mcast_forw_tracker_tvlv_handler ( struct batadv_priv * bat_priv ,
struct sk_buff * skb ) ;
2023-09-07 03:09:09 +02:00
unsigned int batadv_mcast_forw_packet_hdrlen ( unsigned int num_dests ) ;
bool batadv_mcast_forw_push ( struct batadv_priv * bat_priv , struct sk_buff * skb ,
unsigned short vid , int is_routable , int count ) ;
int batadv_mcast_forw_mcsend ( struct batadv_priv * bat_priv , struct sk_buff * skb ) ;
2014-02-15 17:47:49 +01:00
# else
2014-02-15 17:47:52 +01:00
static inline enum batadv_forw_mode
batadv_mcast_forw_mode ( struct batadv_priv * bat_priv , struct sk_buff * skb ,
2023-09-07 03:09:09 +02:00
unsigned short vid , int * is_routable )
2014-02-15 17:47:52 +01:00
{
2022-12-27 20:34:05 +01:00
return BATADV_FORW_BCAST ;
2020-09-15 09:54:08 +02:00
}
2019-03-23 05:47:41 +01:00
static inline int
batadv_mcast_forw_send ( struct batadv_priv * bat_priv , struct sk_buff * skb ,
2022-01-01 06:27:13 +01:00
unsigned short vid , int is_routable )
2019-03-23 05:47:41 +01:00
{
kfree_skb ( skb ) ;
return NET_XMIT_DROP ;
}
2014-02-15 17:47:51 +01:00
static inline int batadv_mcast_init ( struct batadv_priv * bat_priv )
{
return 0 ;
}
2018-03-13 11:41:13 +01:00
static inline int
batadv_mcast_mesh_info_put ( struct sk_buff * msg , struct batadv_priv * bat_priv )
{
return 0 ;
}
static inline int batadv_mcast_flags_dump ( struct sk_buff * msg ,
struct netlink_callback * cb )
{
return - EOPNOTSUPP ;
}
2014-02-15 17:47:49 +01:00
static inline void batadv_mcast_free ( struct batadv_priv * bat_priv )
{
}
2014-02-15 17:47:51 +01:00
static inline void batadv_mcast_purge_orig ( struct batadv_orig_node * orig_node )
{
}
2023-09-07 03:09:09 +02:00
static inline int batadv_mcast_forw_mcsend ( struct batadv_priv * bat_priv ,
struct sk_buff * skb )
{
kfree_skb ( skb ) ;
return NET_XMIT_DROP ;
}
2014-02-15 17:47:49 +01:00
# endif /* CONFIG_BATMAN_ADV_MCAST */
# endif /* _NET_BATMAN_ADV_MULTICAST_H_ */