Sven Eckelmann | 7db7d9f | 2017-11-19 15:05:11 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Sven Eckelmann | cfa55c6 | 2021-01-01 00:00:01 +0100 | [diff] [blame] | 2 | /* Copyright (C) B.A.T.M.A.N. contributors: |
Sven Eckelmann | ba41208 | 2016-05-15 23:48:31 +0200 | [diff] [blame] | 3 | * |
| 4 | * Marek Lindner, Simon Wunderlich |
Sven Eckelmann | ba41208 | 2016-05-15 23:48:31 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef _NET_BATMAN_ADV_LOG_H_ |
| 8 | #define _NET_BATMAN_ADV_LOG_H_ |
| 9 | |
| 10 | #include "main.h" |
| 11 | |
Sven Eckelmann | 47d4522 | 2019-05-24 16:51:29 +0200 | [diff] [blame] | 12 | #include <linux/atomic.h> |
Sven Eckelmann | ba41208 | 2016-05-15 23:48:31 +0200 | [diff] [blame] | 13 | #include <linux/bitops.h> |
| 14 | #include <linux/compiler.h> |
| 15 | #include <linux/printk.h> |
| 16 | |
| 17 | #ifdef CONFIG_BATMAN_ADV_DEBUG |
| 18 | |
| 19 | int batadv_debug_log_setup(struct batadv_priv *bat_priv); |
| 20 | void batadv_debug_log_cleanup(struct batadv_priv *bat_priv); |
| 21 | |
| 22 | #else |
| 23 | |
| 24 | static inline int batadv_debug_log_setup(struct batadv_priv *bat_priv) |
| 25 | { |
| 26 | return 0; |
| 27 | } |
| 28 | |
| 29 | static inline void batadv_debug_log_cleanup(struct batadv_priv *bat_priv) |
| 30 | { |
| 31 | } |
| 32 | |
| 33 | #endif |
| 34 | |
| 35 | /** |
| 36 | * enum batadv_dbg_level - available log levels |
Sven Eckelmann | ba41208 | 2016-05-15 23:48:31 +0200 | [diff] [blame] | 37 | */ |
| 38 | enum batadv_dbg_level { |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 39 | /** @BATADV_DBG_BATMAN: OGM and TQ computations related messages */ |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 40 | BATADV_DBG_BATMAN = BIT(0), |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 41 | |
| 42 | /** @BATADV_DBG_ROUTES: route added / changed / deleted */ |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 43 | BATADV_DBG_ROUTES = BIT(1), |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 44 | |
| 45 | /** @BATADV_DBG_TT: translation table messages */ |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 46 | BATADV_DBG_TT = BIT(2), |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 47 | |
| 48 | /** @BATADV_DBG_BLA: bridge loop avoidance messages */ |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 49 | BATADV_DBG_BLA = BIT(3), |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 50 | |
| 51 | /** @BATADV_DBG_DAT: ARP snooping and DAT related messages */ |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 52 | BATADV_DBG_DAT = BIT(4), |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 53 | |
| 54 | /** @BATADV_DBG_NC: network coding related messages */ |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 55 | BATADV_DBG_NC = BIT(5), |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 56 | |
| 57 | /** @BATADV_DBG_MCAST: multicast related messages */ |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 58 | BATADV_DBG_MCAST = BIT(6), |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 59 | |
| 60 | /** @BATADV_DBG_TP_METER: throughput meter messages */ |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 61 | BATADV_DBG_TP_METER = BIT(7), |
Sven Eckelmann | 8b84cc4 | 2017-12-02 19:51:48 +0100 | [diff] [blame] | 62 | |
| 63 | /** @BATADV_DBG_ALL: the union of all the above log levels */ |
Sven Eckelmann | 611b975 | 2016-07-16 21:30:20 +0200 | [diff] [blame] | 64 | BATADV_DBG_ALL = 255, |
Sven Eckelmann | ba41208 | 2016-05-15 23:48:31 +0200 | [diff] [blame] | 65 | }; |
| 66 | |
| 67 | #ifdef CONFIG_BATMAN_ADV_DEBUG |
| 68 | int batadv_debug_log(struct batadv_priv *bat_priv, const char *fmt, ...) |
| 69 | __printf(2, 3); |
| 70 | |
Sven Eckelmann | e57acf8 | 2017-12-02 19:51:52 +0100 | [diff] [blame] | 71 | /** |
Sven Eckelmann | bccb48c | 2020-06-01 20:13:21 +0200 | [diff] [blame] | 72 | * _batadv_dbg() - Store debug output with(out) rate limiting |
Sven Eckelmann | e57acf8 | 2017-12-02 19:51:52 +0100 | [diff] [blame] | 73 | * @type: type of debug message |
| 74 | * @bat_priv: the bat priv with all the soft interface information |
| 75 | * @ratelimited: whether output should be rate limited |
| 76 | * @fmt: format string |
Sven Eckelmann | f4191c6 | 2019-11-14 22:12:37 +0100 | [diff] [blame] | 77 | * @arg: variable arguments |
Sven Eckelmann | e57acf8 | 2017-12-02 19:51:52 +0100 | [diff] [blame] | 78 | */ |
Sven Eckelmann | 4c7da0f | 2016-09-21 09:23:50 +0200 | [diff] [blame] | 79 | #define _batadv_dbg(type, bat_priv, ratelimited, fmt, arg...) \ |
| 80 | do { \ |
Sven Eckelmann | a09c94d | 2017-02-22 17:16:41 +0100 | [diff] [blame] | 81 | struct batadv_priv *__batpriv = (bat_priv); \ |
| 82 | if (atomic_read(&__batpriv->log_level) & (type) && \ |
Sven Eckelmann | 4c7da0f | 2016-09-21 09:23:50 +0200 | [diff] [blame] | 83 | (!(ratelimited) || net_ratelimit())) \ |
Sven Eckelmann | a09c94d | 2017-02-22 17:16:41 +0100 | [diff] [blame] | 84 | batadv_debug_log(__batpriv, fmt, ## arg); \ |
Sven Eckelmann | 4c7da0f | 2016-09-21 09:23:50 +0200 | [diff] [blame] | 85 | } \ |
Sven Eckelmann | ba41208 | 2016-05-15 23:48:31 +0200 | [diff] [blame] | 86 | while (0) |
| 87 | #else /* !CONFIG_BATMAN_ADV_DEBUG */ |
| 88 | __printf(4, 5) |
| 89 | static inline void _batadv_dbg(int type __always_unused, |
| 90 | struct batadv_priv *bat_priv __always_unused, |
| 91 | int ratelimited __always_unused, |
| 92 | const char *fmt __always_unused, ...) |
| 93 | { |
| 94 | } |
| 95 | #endif |
| 96 | |
Sven Eckelmann | e57acf8 | 2017-12-02 19:51:52 +0100 | [diff] [blame] | 97 | /** |
Sven Eckelmann | bccb48c | 2020-06-01 20:13:21 +0200 | [diff] [blame] | 98 | * batadv_dbg() - Store debug output without rate limiting |
Sven Eckelmann | e57acf8 | 2017-12-02 19:51:52 +0100 | [diff] [blame] | 99 | * @type: type of debug message |
| 100 | * @bat_priv: the bat priv with all the soft interface information |
Sven Eckelmann | f4191c6 | 2019-11-14 22:12:37 +0100 | [diff] [blame] | 101 | * @arg: format string and variable arguments |
Sven Eckelmann | e57acf8 | 2017-12-02 19:51:52 +0100 | [diff] [blame] | 102 | */ |
Sven Eckelmann | ba41208 | 2016-05-15 23:48:31 +0200 | [diff] [blame] | 103 | #define batadv_dbg(type, bat_priv, arg...) \ |
| 104 | _batadv_dbg(type, bat_priv, 0, ## arg) |
Sven Eckelmann | e57acf8 | 2017-12-02 19:51:52 +0100 | [diff] [blame] | 105 | |
| 106 | /** |
Sven Eckelmann | bccb48c | 2020-06-01 20:13:21 +0200 | [diff] [blame] | 107 | * batadv_dbg_ratelimited() - Store debug output with rate limiting |
Sven Eckelmann | e57acf8 | 2017-12-02 19:51:52 +0100 | [diff] [blame] | 108 | * @type: type of debug message |
| 109 | * @bat_priv: the bat priv with all the soft interface information |
Sven Eckelmann | f4191c6 | 2019-11-14 22:12:37 +0100 | [diff] [blame] | 110 | * @arg: format string and variable arguments |
Sven Eckelmann | e57acf8 | 2017-12-02 19:51:52 +0100 | [diff] [blame] | 111 | */ |
Sven Eckelmann | ba41208 | 2016-05-15 23:48:31 +0200 | [diff] [blame] | 112 | #define batadv_dbg_ratelimited(type, bat_priv, arg...) \ |
| 113 | _batadv_dbg(type, bat_priv, 1, ## arg) |
| 114 | |
Sven Eckelmann | e57acf8 | 2017-12-02 19:51:52 +0100 | [diff] [blame] | 115 | /** |
| 116 | * batadv_info() - Store message in debug buffer and print it to kmsg buffer |
| 117 | * @net_dev: the soft interface net device |
| 118 | * @fmt: format string |
Sven Eckelmann | f4191c6 | 2019-11-14 22:12:37 +0100 | [diff] [blame] | 119 | * @arg: variable arguments |
Sven Eckelmann | e57acf8 | 2017-12-02 19:51:52 +0100 | [diff] [blame] | 120 | */ |
Sven Eckelmann | ba41208 | 2016-05-15 23:48:31 +0200 | [diff] [blame] | 121 | #define batadv_info(net_dev, fmt, arg...) \ |
| 122 | do { \ |
| 123 | struct net_device *_netdev = (net_dev); \ |
| 124 | struct batadv_priv *_batpriv = netdev_priv(_netdev); \ |
| 125 | batadv_dbg(BATADV_DBG_ALL, _batpriv, fmt, ## arg); \ |
| 126 | pr_info("%s: " fmt, _netdev->name, ## arg); \ |
| 127 | } while (0) |
Sven Eckelmann | e57acf8 | 2017-12-02 19:51:52 +0100 | [diff] [blame] | 128 | |
| 129 | /** |
| 130 | * batadv_err() - Store error in debug buffer and print it to kmsg buffer |
| 131 | * @net_dev: the soft interface net device |
| 132 | * @fmt: format string |
Sven Eckelmann | f4191c6 | 2019-11-14 22:12:37 +0100 | [diff] [blame] | 133 | * @arg: variable arguments |
Sven Eckelmann | e57acf8 | 2017-12-02 19:51:52 +0100 | [diff] [blame] | 134 | */ |
Sven Eckelmann | ba41208 | 2016-05-15 23:48:31 +0200 | [diff] [blame] | 135 | #define batadv_err(net_dev, fmt, arg...) \ |
| 136 | do { \ |
| 137 | struct net_device *_netdev = (net_dev); \ |
| 138 | struct batadv_priv *_batpriv = netdev_priv(_netdev); \ |
| 139 | batadv_dbg(BATADV_DBG_ALL, _batpriv, fmt, ## arg); \ |
| 140 | pr_err("%s: " fmt, _netdev->name, ## arg); \ |
| 141 | } while (0) |
| 142 | |
| 143 | #endif /* _NET_BATMAN_ADV_LOG_H_ */ |