blob: 29fc48a7079d7898c18f8224ee2054fab9dfc4a7 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * wpa_supplicant/hostapd / Debug prints
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07003 * Copyright (c) 2002-2013, Jouni Malinen <j@w1.fi>
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 */
8
9#ifndef WPA_DEBUG_H
10#define WPA_DEBUG_H
11
12#include "wpabuf.h"
13
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -080014extern int wpa_debug_level;
15extern int wpa_debug_show_keys;
16extern int wpa_debug_timestamp;
Paul Stewart092955c2017-02-06 09:13:09 -080017extern int wpa_debug_syslog;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -080018
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070019/* Debugging function - conditional printf and hex dump. Driver wrappers can
20 * use these for debugging purposes. */
21
22enum {
23 MSG_EXCESSIVE, MSG_MSGDUMP, MSG_DEBUG, MSG_INFO, MSG_WARNING, MSG_ERROR
24};
25
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070026#ifdef CONFIG_NO_STDOUT_DEBUG
27
28#define wpa_debug_print_timestamp() do { } while (0)
29#define wpa_printf(args...) do { } while (0)
30#define wpa_hexdump(l,t,b,le) do { } while (0)
31#define wpa_hexdump_buf(l,t,b) do { } while (0)
32#define wpa_hexdump_key(l,t,b,le) do { } while (0)
33#define wpa_hexdump_buf_key(l,t,b) do { } while (0)
34#define wpa_hexdump_ascii(l,t,b,le) do { } while (0)
35#define wpa_hexdump_ascii_key(l,t,b,le) do { } while (0)
36#define wpa_debug_open_file(p) do { } while (0)
37#define wpa_debug_close_file() do { } while (0)
Dmitry Shmidtfb45fd52015-01-05 13:08:17 -080038#define wpa_debug_setup_stdout() do { } while (0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070039#define wpa_dbg(args...) do { } while (0)
40
41static inline int wpa_debug_reopen_file(void)
42{
43 return 0;
44}
45
46#else /* CONFIG_NO_STDOUT_DEBUG */
47
48int wpa_debug_open_file(const char *path);
49int wpa_debug_reopen_file(void);
50void wpa_debug_close_file(void);
Dmitry Shmidtfb45fd52015-01-05 13:08:17 -080051void wpa_debug_setup_stdout(void);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070052
53/**
54 * wpa_debug_printf_timestamp - Print timestamp for debug output
55 *
56 * This function prints a timestamp in seconds_from_1970.microsoconds
57 * format if debug output has been configured to include timestamps in debug
58 * messages.
59 */
60void wpa_debug_print_timestamp(void);
61
62/**
63 * wpa_printf - conditional printf
64 * @level: priority level (MSG_*) of the message
65 * @fmt: printf format string, followed by optional arguments
66 *
67 * This function is used to print conditional debugging and error messages. The
68 * output may be directed to stdout, stderr, and/or syslog based on
69 * configuration.
70 *
71 * Note: New line '\n' is added to the end of the text when printing to stdout.
72 */
73void wpa_printf(int level, const char *fmt, ...)
74PRINTF_FORMAT(2, 3);
75
76/**
77 * wpa_hexdump - conditional hex dump
78 * @level: priority level (MSG_*) of the message
79 * @title: title of for the message
80 * @buf: data buffer to be dumped
81 * @len: length of the buf
82 *
83 * This function is used to print conditional debugging and error messages. The
84 * output may be directed to stdout, stderr, and/or syslog based on
85 * configuration. The contents of buf is printed out has hex dump.
86 */
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -080087void wpa_hexdump(int level, const char *title, const void *buf, size_t len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070088
89static inline void wpa_hexdump_buf(int level, const char *title,
90 const struct wpabuf *buf)
91{
92 wpa_hexdump(level, title, buf ? wpabuf_head(buf) : NULL,
93 buf ? wpabuf_len(buf) : 0);
94}
95
96/**
97 * wpa_hexdump_key - conditional hex dump, hide keys
98 * @level: priority level (MSG_*) of the message
99 * @title: title of for the message
100 * @buf: data buffer to be dumped
101 * @len: length of the buf
102 *
103 * This function is used to print conditional debugging and error messages. The
104 * output may be directed to stdout, stderr, and/or syslog based on
105 * configuration. The contents of buf is printed out has hex dump. This works
106 * like wpa_hexdump(), but by default, does not include secret keys (passwords,
107 * etc.) in debug output.
108 */
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800109void wpa_hexdump_key(int level, const char *title, const void *buf, size_t len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700110
111static inline void wpa_hexdump_buf_key(int level, const char *title,
112 const struct wpabuf *buf)
113{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800114 wpa_hexdump_key(level, title, buf ? wpabuf_head(buf) : NULL,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700115 buf ? wpabuf_len(buf) : 0);
116}
117
118/**
119 * wpa_hexdump_ascii - conditional hex dump
120 * @level: priority level (MSG_*) of the message
121 * @title: title of for the message
122 * @buf: data buffer to be dumped
123 * @len: length of the buf
124 *
125 * This function is used to print conditional debugging and error messages. The
126 * output may be directed to stdout, stderr, and/or syslog based on
127 * configuration. The contents of buf is printed out has hex dump with both
128 * the hex numbers and ASCII characters (for printable range) are shown. 16
129 * bytes per line will be shown.
130 */
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800131void wpa_hexdump_ascii(int level, const char *title, const void *buf,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700132 size_t len);
133
134/**
135 * wpa_hexdump_ascii_key - conditional hex dump, hide keys
136 * @level: priority level (MSG_*) of the message
137 * @title: title of for the message
138 * @buf: data buffer to be dumped
139 * @len: length of the buf
140 *
141 * This function is used to print conditional debugging and error messages. The
142 * output may be directed to stdout, stderr, and/or syslog based on
143 * configuration. The contents of buf is printed out has hex dump with both
144 * the hex numbers and ASCII characters (for printable range) are shown. 16
145 * bytes per line will be shown. This works like wpa_hexdump_ascii(), but by
146 * default, does not include secret keys (passwords, etc.) in debug output.
147 */
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800148void wpa_hexdump_ascii_key(int level, const char *title, const void *buf,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700149 size_t len);
150
151/*
152 * wpa_dbg() behaves like wpa_msg(), but it can be removed from build to reduce
153 * binary size. As such, it should be used with debugging messages that are not
154 * needed in the control interface while wpa_msg() has to be used for anything
155 * that needs to shown to control interface monitors.
156 */
157#define wpa_dbg(args...) wpa_msg(args)
158
159#endif /* CONFIG_NO_STDOUT_DEBUG */
160
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700161
162#ifdef CONFIG_NO_WPA_MSG
163#define wpa_msg(args...) do { } while (0)
164#define wpa_msg_ctrl(args...) do { } while (0)
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700165#define wpa_msg_global(args...) do { } while (0)
Dmitry Shmidt7f0b69e2014-07-28 10:35:20 -0700166#define wpa_msg_global_ctrl(args...) do { } while (0)
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700167#define wpa_msg_no_global(args...) do { } while (0)
Anton Nayshtutf715e8d2014-11-16 16:52:49 +0200168#define wpa_msg_global_only(args...) do { } while (0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700169#define wpa_msg_register_cb(f) do { } while (0)
Hu Wang7c5a4322021-06-24 17:24:59 +0800170#define wpa_msg_register_aidl_cb(f) do { } while (0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700171#define wpa_msg_register_ifname_cb(f) do { } while (0)
172#else /* CONFIG_NO_WPA_MSG */
173/**
174 * wpa_msg - Conditional printf for default target and ctrl_iface monitors
175 * @ctx: Pointer to context data; this is the ctx variable registered
176 * with struct wpa_driver_ops::init()
177 * @level: priority level (MSG_*) of the message
178 * @fmt: printf format string, followed by optional arguments
179 *
180 * This function is used to print conditional debugging and error messages. The
181 * output may be directed to stdout, stderr, and/or syslog based on
182 * configuration. This function is like wpa_printf(), but it also sends the
183 * same message to all attached ctrl_iface monitors.
184 *
185 * Note: New line '\n' is added to the end of the text when printing to stdout.
186 */
187void wpa_msg(void *ctx, int level, const char *fmt, ...) PRINTF_FORMAT(3, 4);
188
189/**
190 * wpa_msg_ctrl - Conditional printf for ctrl_iface monitors
191 * @ctx: Pointer to context data; this is the ctx variable registered
192 * with struct wpa_driver_ops::init()
193 * @level: priority level (MSG_*) of the message
194 * @fmt: printf format string, followed by optional arguments
195 *
196 * This function is used to print conditional debugging and error messages.
197 * This function is like wpa_msg(), but it sends the output only to the
198 * attached ctrl_iface monitors. In other words, it can be used for frequent
199 * events that do not need to be sent to syslog.
200 */
201void wpa_msg_ctrl(void *ctx, int level, const char *fmt, ...)
202PRINTF_FORMAT(3, 4);
203
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700204/**
205 * wpa_msg_global - Global printf for ctrl_iface monitors
206 * @ctx: Pointer to context data; this is the ctx variable registered
207 * with struct wpa_driver_ops::init()
208 * @level: priority level (MSG_*) of the message
209 * @fmt: printf format string, followed by optional arguments
210 *
211 * This function is used to print conditional debugging and error messages.
212 * This function is like wpa_msg(), but it sends the output as a global event,
213 * i.e., without being specific to an interface. For backwards compatibility,
214 * an old style event is also delivered on one of the interfaces (the one
215 * specified by the context data).
216 */
217void wpa_msg_global(void *ctx, int level, const char *fmt, ...)
218PRINTF_FORMAT(3, 4);
219
220/**
Dmitry Shmidt7f0b69e2014-07-28 10:35:20 -0700221 * wpa_msg_global_ctrl - Conditional global printf for ctrl_iface monitors
222 * @ctx: Pointer to context data; this is the ctx variable registered
223 * with struct wpa_driver_ops::init()
224 * @level: priority level (MSG_*) of the message
225 * @fmt: printf format string, followed by optional arguments
226 *
227 * This function is used to print conditional debugging and error messages.
228 * This function is like wpa_msg_global(), but it sends the output only to the
229 * attached global ctrl_iface monitors. In other words, it can be used for
230 * frequent events that do not need to be sent to syslog.
231 */
232void wpa_msg_global_ctrl(void *ctx, int level, const char *fmt, ...)
233PRINTF_FORMAT(3, 4);
234
235/**
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700236 * wpa_msg_no_global - Conditional printf for ctrl_iface monitors
237 * @ctx: Pointer to context data; this is the ctx variable registered
238 * with struct wpa_driver_ops::init()
239 * @level: priority level (MSG_*) of the message
240 * @fmt: printf format string, followed by optional arguments
241 *
242 * This function is used to print conditional debugging and error messages.
243 * This function is like wpa_msg(), but it does not send the output as a global
244 * event.
245 */
246void wpa_msg_no_global(void *ctx, int level, const char *fmt, ...)
247PRINTF_FORMAT(3, 4);
248
Anton Nayshtutf715e8d2014-11-16 16:52:49 +0200249/**
250 * wpa_msg_global_only - Conditional printf for ctrl_iface monitors
251 * @ctx: Pointer to context data; this is the ctx variable registered
252 * with struct wpa_driver_ops::init()
253 * @level: priority level (MSG_*) of the message
254 * @fmt: printf format string, followed by optional arguments
255 *
256 * This function is used to print conditional debugging and error messages.
257 * This function is like wpa_msg_global(), but it sends the output only as a
258 * global event.
259 */
260void wpa_msg_global_only(void *ctx, int level, const char *fmt, ...)
261PRINTF_FORMAT(3, 4);
262
Dmitry Shmidt7a53dbb2015-06-11 13:13:53 -0700263enum wpa_msg_type {
264 WPA_MSG_PER_INTERFACE,
265 WPA_MSG_GLOBAL,
266 WPA_MSG_NO_GLOBAL,
Anton Nayshtutf715e8d2014-11-16 16:52:49 +0200267 WPA_MSG_ONLY_GLOBAL,
Dmitry Shmidt7a53dbb2015-06-11 13:13:53 -0700268};
269
270typedef void (*wpa_msg_cb_func)(void *ctx, int level, enum wpa_msg_type type,
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700271 const char *txt, size_t len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700272
273/**
274 * wpa_msg_register_cb - Register callback function for wpa_msg() messages
275 * @func: Callback function (%NULL to unregister)
276 */
277void wpa_msg_register_cb(wpa_msg_cb_func func);
Hu Wang7c5a4322021-06-24 17:24:59 +0800278void wpa_msg_register_aidl_cb(wpa_msg_cb_func func);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700279typedef const char * (*wpa_msg_get_ifname_func)(void *ctx);
280void wpa_msg_register_ifname_cb(wpa_msg_get_ifname_func func);
281
282#endif /* CONFIG_NO_WPA_MSG */
283
284#ifdef CONFIG_NO_HOSTAPD_LOGGER
285#define hostapd_logger(args...) do { } while (0)
286#define hostapd_logger_register_cb(f) do { } while (0)
287#else /* CONFIG_NO_HOSTAPD_LOGGER */
288void hostapd_logger(void *ctx, const u8 *addr, unsigned int module, int level,
289 const char *fmt, ...) PRINTF_FORMAT(5, 6);
290
291typedef void (*hostapd_logger_cb_func)(void *ctx, const u8 *addr,
292 unsigned int module, int level,
293 const char *txt, size_t len);
294
295/**
296 * hostapd_logger_register_cb - Register callback function for hostapd_logger()
297 * @func: Callback function (%NULL to unregister)
298 */
299void hostapd_logger_register_cb(hostapd_logger_cb_func func);
300#endif /* CONFIG_NO_HOSTAPD_LOGGER */
301
302#define HOSTAPD_MODULE_IEEE80211 0x00000001
303#define HOSTAPD_MODULE_IEEE8021X 0x00000002
304#define HOSTAPD_MODULE_RADIUS 0x00000004
305#define HOSTAPD_MODULE_WPA 0x00000008
306#define HOSTAPD_MODULE_DRIVER 0x00000010
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700307#define HOSTAPD_MODULE_MLME 0x00000040
308
309enum hostapd_logger_level {
310 HOSTAPD_LEVEL_DEBUG_VERBOSE = 0,
311 HOSTAPD_LEVEL_DEBUG = 1,
312 HOSTAPD_LEVEL_INFO = 2,
313 HOSTAPD_LEVEL_NOTICE = 3,
314 HOSTAPD_LEVEL_WARNING = 4
315};
316
317
318#ifdef CONFIG_DEBUG_SYSLOG
319
320void wpa_debug_open_syslog(void);
321void wpa_debug_close_syslog(void);
322
323#else /* CONFIG_DEBUG_SYSLOG */
324
325static inline void wpa_debug_open_syslog(void)
326{
327}
328
329static inline void wpa_debug_close_syslog(void)
330{
331}
332
333#endif /* CONFIG_DEBUG_SYSLOG */
334
Dmitry Shmidt04949592012-07-19 12:16:46 -0700335#ifdef CONFIG_DEBUG_LINUX_TRACING
336
337int wpa_debug_open_linux_tracing(void);
338void wpa_debug_close_linux_tracing(void);
339
340#else /* CONFIG_DEBUG_LINUX_TRACING */
341
342static inline int wpa_debug_open_linux_tracing(void)
343{
344 return 0;
345}
346
347static inline void wpa_debug_close_linux_tracing(void)
348{
349}
350
351#endif /* CONFIG_DEBUG_LINUX_TRACING */
352
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700353
354#ifdef EAPOL_TEST
355#define WPA_ASSERT(a) \
356 do { \
357 if (!(a)) { \
358 printf("WPA_ASSERT FAILED '" #a "' " \
359 "%s %s:%d\n", \
360 __FUNCTION__, __FILE__, __LINE__); \
361 exit(1); \
362 } \
363 } while (0)
364#else
365#define WPA_ASSERT(a) do { } while (0)
366#endif
367
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800368const char * debug_level_str(int level);
369int str_to_debug_level(const char *s);
370
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700371#endif /* WPA_DEBUG_H */