2017-11-19 17:05:11 +03:00
/* SPDX-License-Identifier: GPL-2.0 */
2021-01-01 02:00:01 +03:00
/* Copyright (C) B.A.T.M.A.N. contributors:
2016-05-16 00:48:31 +03:00
*
* Marek Lindner , Simon Wunderlich
*/
# ifndef _NET_BATMAN_ADV_LOG_H_
# define _NET_BATMAN_ADV_LOG_H_
# include "main.h"
2019-05-24 17:51:29 +03:00
# include <linux/atomic.h>
2016-05-16 00:48:31 +03:00
# include <linux/bitops.h>
# include <linux/compiler.h>
# include <linux/printk.h>
# ifdef CONFIG_BATMAN_ADV_DEBUG
int batadv_debug_log_setup ( struct batadv_priv * bat_priv ) ;
void batadv_debug_log_cleanup ( struct batadv_priv * bat_priv ) ;
# else
static inline int batadv_debug_log_setup ( struct batadv_priv * bat_priv )
{
return 0 ;
}
static inline void batadv_debug_log_cleanup ( struct batadv_priv * bat_priv )
{
}
# endif
/**
* enum batadv_dbg_level - available log levels
*/
enum batadv_dbg_level {
2017-12-02 21:51:48 +03:00
/** @BATADV_DBG_BATMAN: OGM and TQ computations related messages */
2016-05-05 14:09:43 +03:00
BATADV_DBG_BATMAN = BIT ( 0 ) ,
2017-12-02 21:51:48 +03:00
/** @BATADV_DBG_ROUTES: route added / changed / deleted */
2016-05-05 14:09:43 +03:00
BATADV_DBG_ROUTES = BIT ( 1 ) ,
2017-12-02 21:51:48 +03:00
/** @BATADV_DBG_TT: translation table messages */
2016-05-05 14:09:43 +03:00
BATADV_DBG_TT = BIT ( 2 ) ,
2017-12-02 21:51:48 +03:00
/** @BATADV_DBG_BLA: bridge loop avoidance messages */
2016-05-05 14:09:43 +03:00
BATADV_DBG_BLA = BIT ( 3 ) ,
2017-12-02 21:51:48 +03:00
/** @BATADV_DBG_DAT: ARP snooping and DAT related messages */
2016-05-05 14:09:43 +03:00
BATADV_DBG_DAT = BIT ( 4 ) ,
2017-12-02 21:51:48 +03:00
/** @BATADV_DBG_NC: network coding related messages */
2016-05-05 14:09:43 +03:00
BATADV_DBG_NC = BIT ( 5 ) ,
2017-12-02 21:51:48 +03:00
/** @BATADV_DBG_MCAST: multicast related messages */
2016-05-05 14:09:43 +03:00
BATADV_DBG_MCAST = BIT ( 6 ) ,
2017-12-02 21:51:48 +03:00
/** @BATADV_DBG_TP_METER: throughput meter messages */
2016-05-05 14:09:43 +03:00
BATADV_DBG_TP_METER = BIT ( 7 ) ,
2017-12-02 21:51:48 +03:00
/** @BATADV_DBG_ALL: the union of all the above log levels */
2016-07-16 22:30:20 +03:00
BATADV_DBG_ALL = 255 ,
2016-05-16 00:48:31 +03:00
} ;
# ifdef CONFIG_BATMAN_ADV_DEBUG
int batadv_debug_log ( struct batadv_priv * bat_priv , const char * fmt , . . . )
__printf ( 2 , 3 ) ;
2017-12-02 21:51:52 +03:00
/**
2020-06-01 21:13:21 +03:00
* _batadv_dbg ( ) - Store debug output with ( out ) rate limiting
2017-12-02 21:51:52 +03:00
* @ type : type of debug message
* @ bat_priv : the bat priv with all the soft interface information
* @ ratelimited : whether output should be rate limited
* @ fmt : format string
2019-11-15 00:12:37 +03:00
* @ arg : variable arguments
2017-12-02 21:51:52 +03:00
*/
2016-09-21 10:23:50 +03:00
# define _batadv_dbg(type, bat_priv, ratelimited, fmt, arg...) \
do { \
2017-02-22 19:16:41 +03:00
struct batadv_priv * __batpriv = ( bat_priv ) ; \
if ( atomic_read ( & __batpriv - > log_level ) & ( type ) & & \
2016-09-21 10:23:50 +03:00
( ! ( ratelimited ) | | net_ratelimit ( ) ) ) \
2017-02-22 19:16:41 +03:00
batadv_debug_log ( __batpriv , fmt , # # arg ) ; \
2016-09-21 10:23:50 +03:00
} \
2016-05-16 00:48:31 +03:00
while ( 0 )
# else /* !CONFIG_BATMAN_ADV_DEBUG */
__printf ( 4 , 5 )
static inline void _batadv_dbg ( int type __always_unused ,
struct batadv_priv * bat_priv __always_unused ,
int ratelimited __always_unused ,
const char * fmt __always_unused , . . . )
{
}
# endif
2017-12-02 21:51:52 +03:00
/**
2020-06-01 21:13:21 +03:00
* batadv_dbg ( ) - Store debug output without rate limiting
2017-12-02 21:51:52 +03:00
* @ type : type of debug message
* @ bat_priv : the bat priv with all the soft interface information
2019-11-15 00:12:37 +03:00
* @ arg : format string and variable arguments
2017-12-02 21:51:52 +03:00
*/
2016-05-16 00:48:31 +03:00
# define batadv_dbg(type, bat_priv, arg...) \
_batadv_dbg ( type , bat_priv , 0 , # # arg )
2017-12-02 21:51:52 +03:00
/**
2020-06-01 21:13:21 +03:00
* batadv_dbg_ratelimited ( ) - Store debug output with rate limiting
2017-12-02 21:51:52 +03:00
* @ type : type of debug message
* @ bat_priv : the bat priv with all the soft interface information
2019-11-15 00:12:37 +03:00
* @ arg : format string and variable arguments
2017-12-02 21:51:52 +03:00
*/
2016-05-16 00:48:31 +03:00
# define batadv_dbg_ratelimited(type, bat_priv, arg...) \
_batadv_dbg ( type , bat_priv , 1 , # # arg )
2017-12-02 21:51:52 +03:00
/**
* batadv_info ( ) - Store message in debug buffer and print it to kmsg buffer
* @ net_dev : the soft interface net device
* @ fmt : format string
2019-11-15 00:12:37 +03:00
* @ arg : variable arguments
2017-12-02 21:51:52 +03:00
*/
2016-05-16 00:48:31 +03:00
# define batadv_info(net_dev, fmt, arg...) \
do { \
struct net_device * _netdev = ( net_dev ) ; \
struct batadv_priv * _batpriv = netdev_priv ( _netdev ) ; \
batadv_dbg ( BATADV_DBG_ALL , _batpriv , fmt , # # arg ) ; \
pr_info ( " %s: " fmt , _netdev - > name , # # arg ) ; \
} while ( 0 )
2017-12-02 21:51:52 +03:00
/**
* batadv_err ( ) - Store error in debug buffer and print it to kmsg buffer
* @ net_dev : the soft interface net device
* @ fmt : format string
2019-11-15 00:12:37 +03:00
* @ arg : variable arguments
2017-12-02 21:51:52 +03:00
*/
2016-05-16 00:48:31 +03:00
# define batadv_err(net_dev, fmt, arg...) \
do { \
struct net_device * _netdev = ( net_dev ) ; \
struct batadv_priv * _batpriv = netdev_priv ( _netdev ) ; \
batadv_dbg ( BATADV_DBG_ALL , _batpriv , fmt , # # arg ) ; \
pr_err ( " %s: " fmt , _netdev - > name , # # arg ) ; \
} while ( 0 )
# endif /* _NET_BATMAN_ADV_LOG_H_ */