wpa_debug.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. /*
  2. * wpa_supplicant/hostapd / Debug prints
  3. * Copyright (c) 2002-2013, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #ifndef WPA_DEBUG_H
  9. #define WPA_DEBUG_H
  10. #include "wpabuf.h"
  11. extern int wpa_debug_level;
  12. extern int wpa_debug_show_keys;
  13. extern int wpa_debug_timestamp;
  14. #ifdef CONFIG_DEBUG_SYSLOG
  15. extern int wpa_debug_syslog;
  16. #endif /* CONFIG_DEBUG_SYSLOG */
  17. /* Debugging function - conditional printf and hex dump. Driver wrappers can
  18. * use these for debugging purposes. */
  19. enum {
  20. MSG_EXCESSIVE, MSG_MSGDUMP, MSG_DEBUG, MSG_INFO, MSG_WARNING, MSG_ERROR
  21. };
  22. #ifdef CONFIG_NO_STDOUT_DEBUG
  23. #define wpa_debug_print_timestamp() do { } while (0)
  24. #define wpa_printf(args...) do { } while (0)
  25. #define wpa_hexdump(l,t,b,le) do { } while (0)
  26. #define wpa_hexdump_buf(l,t,b) do { } while (0)
  27. #define wpa_hexdump_key(l,t,b,le) do { } while (0)
  28. #define wpa_hexdump_buf_key(l,t,b) do { } while (0)
  29. #define wpa_hexdump_ascii(l,t,b,le) do { } while (0)
  30. #define wpa_hexdump_ascii_key(l,t,b,le) do { } while (0)
  31. #define wpa_debug_open_file(p) do { } while (0)
  32. #define wpa_debug_close_file() do { } while (0)
  33. #define wpa_debug_setup_stdout() do { } while (0)
  34. #define wpa_dbg(args...) do { } while (0)
  35. static inline int wpa_debug_reopen_file(void)
  36. {
  37. return 0;
  38. }
  39. #else /* CONFIG_NO_STDOUT_DEBUG */
  40. int wpa_debug_open_file(const char *path);
  41. int wpa_debug_reopen_file(void);
  42. void wpa_debug_close_file(void);
  43. void wpa_debug_setup_stdout(void);
  44. /**
  45. * wpa_debug_printf_timestamp - Print timestamp for debug output
  46. *
  47. * This function prints a timestamp in seconds_from_1970.microsoconds
  48. * format if debug output has been configured to include timestamps in debug
  49. * messages.
  50. */
  51. void wpa_debug_print_timestamp(void);
  52. /**
  53. * wpa_printf - conditional printf
  54. * @level: priority level (MSG_*) of the message
  55. * @fmt: printf format string, followed by optional arguments
  56. *
  57. * This function is used to print conditional debugging and error messages. The
  58. * output may be directed to stdout, stderr, and/or syslog based on
  59. * configuration.
  60. *
  61. * Note: New line '\n' is added to the end of the text when printing to stdout.
  62. */
  63. void wpa_printf(int level, const char *fmt, ...)
  64. PRINTF_FORMAT(2, 3);
  65. /**
  66. * wpa_hexdump - conditional hex dump
  67. * @level: priority level (MSG_*) of the message
  68. * @title: title of for the message
  69. * @buf: data buffer to be dumped
  70. * @len: length of the buf
  71. *
  72. * This function is used to print conditional debugging and error messages. The
  73. * output may be directed to stdout, stderr, and/or syslog based on
  74. * configuration. The contents of buf is printed out has hex dump.
  75. */
  76. void wpa_hexdump(int level, const char *title, const void *buf, size_t len);
  77. static inline void wpa_hexdump_buf(int level, const char *title,
  78. const struct wpabuf *buf)
  79. {
  80. wpa_hexdump(level, title, buf ? wpabuf_head(buf) : NULL,
  81. buf ? wpabuf_len(buf) : 0);
  82. }
  83. /**
  84. * wpa_hexdump_key - conditional hex dump, hide keys
  85. * @level: priority level (MSG_*) of the message
  86. * @title: title of for the message
  87. * @buf: data buffer to be dumped
  88. * @len: length of the buf
  89. *
  90. * This function is used to print conditional debugging and error messages. The
  91. * output may be directed to stdout, stderr, and/or syslog based on
  92. * configuration. The contents of buf is printed out has hex dump. This works
  93. * like wpa_hexdump(), but by default, does not include secret keys (passwords,
  94. * etc.) in debug output.
  95. */
  96. void wpa_hexdump_key(int level, const char *title, const void *buf, size_t len);
  97. static inline void wpa_hexdump_buf_key(int level, const char *title,
  98. const struct wpabuf *buf)
  99. {
  100. wpa_hexdump_key(level, title, buf ? wpabuf_head(buf) : NULL,
  101. buf ? wpabuf_len(buf) : 0);
  102. }
  103. /**
  104. * wpa_hexdump_ascii - conditional hex dump
  105. * @level: priority level (MSG_*) of the message
  106. * @title: title of for the message
  107. * @buf: data buffer to be dumped
  108. * @len: length of the buf
  109. *
  110. * This function is used to print conditional debugging and error messages. The
  111. * output may be directed to stdout, stderr, and/or syslog based on
  112. * configuration. The contents of buf is printed out has hex dump with both
  113. * the hex numbers and ASCII characters (for printable range) are shown. 16
  114. * bytes per line will be shown.
  115. */
  116. void wpa_hexdump_ascii(int level, const char *title, const void *buf,
  117. size_t len);
  118. /**
  119. * wpa_hexdump_ascii_key - conditional hex dump, hide keys
  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. This works like wpa_hexdump_ascii(), but by
  130. * default, does not include secret keys (passwords, etc.) in debug output.
  131. */
  132. void wpa_hexdump_ascii_key(int level, const char *title, const void *buf,
  133. size_t len);
  134. /*
  135. * wpa_dbg() behaves like wpa_msg(), but it can be removed from build to reduce
  136. * binary size. As such, it should be used with debugging messages that are not
  137. * needed in the control interface while wpa_msg() has to be used for anything
  138. * that needs to shown to control interface monitors.
  139. */
  140. #define wpa_dbg(args...) wpa_msg(args)
  141. #endif /* CONFIG_NO_STDOUT_DEBUG */
  142. #ifdef CONFIG_NO_WPA_MSG
  143. #define wpa_msg(args...) do { } while (0)
  144. #define wpa_msg_ctrl(args...) do { } while (0)
  145. #define wpa_msg_global(args...) do { } while (0)
  146. #define wpa_msg_global_ctrl(args...) do { } while (0)
  147. #define wpa_msg_no_global(args...) do { } while (0)
  148. #define wpa_msg_global_only(args...) do { } while (0)
  149. #define wpa_msg_register_cb(f) do { } while (0)
  150. #define wpa_msg_register_ifname_cb(f) do { } while (0)
  151. #else /* CONFIG_NO_WPA_MSG */
  152. /**
  153. * wpa_msg - Conditional printf for default target and ctrl_iface monitors
  154. * @ctx: Pointer to context data; this is the ctx variable registered
  155. * with struct wpa_driver_ops::init()
  156. * @level: priority level (MSG_*) of the message
  157. * @fmt: printf format string, followed by optional arguments
  158. *
  159. * This function is used to print conditional debugging and error messages. The
  160. * output may be directed to stdout, stderr, and/or syslog based on
  161. * configuration. This function is like wpa_printf(), but it also sends the
  162. * same message to all attached ctrl_iface monitors.
  163. *
  164. * Note: New line '\n' is added to the end of the text when printing to stdout.
  165. */
  166. void wpa_msg(void *ctx, int level, const char *fmt, ...) PRINTF_FORMAT(3, 4);
  167. /**
  168. * wpa_msg_ctrl - Conditional printf for ctrl_iface monitors
  169. * @ctx: Pointer to context data; this is the ctx variable registered
  170. * with struct wpa_driver_ops::init()
  171. * @level: priority level (MSG_*) of the message
  172. * @fmt: printf format string, followed by optional arguments
  173. *
  174. * This function is used to print conditional debugging and error messages.
  175. * This function is like wpa_msg(), but it sends the output only to the
  176. * attached ctrl_iface monitors. In other words, it can be used for frequent
  177. * events that do not need to be sent to syslog.
  178. */
  179. void wpa_msg_ctrl(void *ctx, int level, const char *fmt, ...)
  180. PRINTF_FORMAT(3, 4);
  181. /**
  182. * wpa_msg_global - Global printf for ctrl_iface monitors
  183. * @ctx: Pointer to context data; this is the ctx variable registered
  184. * with struct wpa_driver_ops::init()
  185. * @level: priority level (MSG_*) of the message
  186. * @fmt: printf format string, followed by optional arguments
  187. *
  188. * This function is used to print conditional debugging and error messages.
  189. * This function is like wpa_msg(), but it sends the output as a global event,
  190. * i.e., without being specific to an interface. For backwards compatibility,
  191. * an old style event is also delivered on one of the interfaces (the one
  192. * specified by the context data).
  193. */
  194. void wpa_msg_global(void *ctx, int level, const char *fmt, ...)
  195. PRINTF_FORMAT(3, 4);
  196. /**
  197. * wpa_msg_global_ctrl - Conditional global printf for ctrl_iface monitors
  198. * @ctx: Pointer to context data; this is the ctx variable registered
  199. * with struct wpa_driver_ops::init()
  200. * @level: priority level (MSG_*) of the message
  201. * @fmt: printf format string, followed by optional arguments
  202. *
  203. * This function is used to print conditional debugging and error messages.
  204. * This function is like wpa_msg_global(), but it sends the output only to the
  205. * attached global ctrl_iface monitors. In other words, it can be used for
  206. * frequent events that do not need to be sent to syslog.
  207. */
  208. void wpa_msg_global_ctrl(void *ctx, int level, const char *fmt, ...)
  209. PRINTF_FORMAT(3, 4);
  210. /**
  211. * wpa_msg_no_global - Conditional printf for ctrl_iface monitors
  212. * @ctx: Pointer to context data; this is the ctx variable registered
  213. * with struct wpa_driver_ops::init()
  214. * @level: priority level (MSG_*) of the message
  215. * @fmt: printf format string, followed by optional arguments
  216. *
  217. * This function is used to print conditional debugging and error messages.
  218. * This function is like wpa_msg(), but it does not send the output as a global
  219. * event.
  220. */
  221. void wpa_msg_no_global(void *ctx, int level, const char *fmt, ...)
  222. PRINTF_FORMAT(3, 4);
  223. /**
  224. * wpa_msg_global_only - Conditional printf for ctrl_iface monitors
  225. * @ctx: Pointer to context data; this is the ctx variable registered
  226. * with struct wpa_driver_ops::init()
  227. * @level: priority level (MSG_*) of the message
  228. * @fmt: printf format string, followed by optional arguments
  229. *
  230. * This function is used to print conditional debugging and error messages.
  231. * This function is like wpa_msg_global(), but it sends the output only as a
  232. * global event.
  233. */
  234. void wpa_msg_global_only(void *ctx, int level, const char *fmt, ...)
  235. PRINTF_FORMAT(3, 4);
  236. enum wpa_msg_type {
  237. WPA_MSG_PER_INTERFACE,
  238. WPA_MSG_GLOBAL,
  239. WPA_MSG_NO_GLOBAL,
  240. WPA_MSG_ONLY_GLOBAL,
  241. };
  242. typedef void (*wpa_msg_cb_func)(void *ctx, int level, enum wpa_msg_type type,
  243. const char *txt, size_t len);
  244. /**
  245. * wpa_msg_register_cb - Register callback function for wpa_msg() messages
  246. * @func: Callback function (%NULL to unregister)
  247. */
  248. void wpa_msg_register_cb(wpa_msg_cb_func func);
  249. typedef const char * (*wpa_msg_get_ifname_func)(void *ctx);
  250. void wpa_msg_register_ifname_cb(wpa_msg_get_ifname_func func);
  251. #endif /* CONFIG_NO_WPA_MSG */
  252. #ifdef CONFIG_NO_HOSTAPD_LOGGER
  253. #define hostapd_logger(args...) do { } while (0)
  254. #define hostapd_logger_register_cb(f) do { } while (0)
  255. #else /* CONFIG_NO_HOSTAPD_LOGGER */
  256. void hostapd_logger(void *ctx, const u8 *addr, unsigned int module, int level,
  257. const char *fmt, ...) PRINTF_FORMAT(5, 6);
  258. typedef void (*hostapd_logger_cb_func)(void *ctx, const u8 *addr,
  259. unsigned int module, int level,
  260. const char *txt, size_t len);
  261. /**
  262. * hostapd_logger_register_cb - Register callback function for hostapd_logger()
  263. * @func: Callback function (%NULL to unregister)
  264. */
  265. void hostapd_logger_register_cb(hostapd_logger_cb_func func);
  266. #endif /* CONFIG_NO_HOSTAPD_LOGGER */
  267. #define HOSTAPD_MODULE_IEEE80211 0x00000001
  268. #define HOSTAPD_MODULE_IEEE8021X 0x00000002
  269. #define HOSTAPD_MODULE_RADIUS 0x00000004
  270. #define HOSTAPD_MODULE_WPA 0x00000008
  271. #define HOSTAPD_MODULE_DRIVER 0x00000010
  272. #define HOSTAPD_MODULE_IAPP 0x00000020
  273. #define HOSTAPD_MODULE_MLME 0x00000040
  274. enum hostapd_logger_level {
  275. HOSTAPD_LEVEL_DEBUG_VERBOSE = 0,
  276. HOSTAPD_LEVEL_DEBUG = 1,
  277. HOSTAPD_LEVEL_INFO = 2,
  278. HOSTAPD_LEVEL_NOTICE = 3,
  279. HOSTAPD_LEVEL_WARNING = 4
  280. };
  281. #ifdef CONFIG_DEBUG_SYSLOG
  282. void wpa_debug_open_syslog(void);
  283. void wpa_debug_close_syslog(void);
  284. #else /* CONFIG_DEBUG_SYSLOG */
  285. static inline void wpa_debug_open_syslog(void)
  286. {
  287. }
  288. static inline void wpa_debug_close_syslog(void)
  289. {
  290. }
  291. #endif /* CONFIG_DEBUG_SYSLOG */
  292. #ifdef CONFIG_DEBUG_LINUX_TRACING
  293. int wpa_debug_open_linux_tracing(void);
  294. void wpa_debug_close_linux_tracing(void);
  295. #else /* CONFIG_DEBUG_LINUX_TRACING */
  296. static inline int wpa_debug_open_linux_tracing(void)
  297. {
  298. return 0;
  299. }
  300. static inline void wpa_debug_close_linux_tracing(void)
  301. {
  302. }
  303. #endif /* CONFIG_DEBUG_LINUX_TRACING */
  304. #ifdef EAPOL_TEST
  305. #define WPA_ASSERT(a) \
  306. do { \
  307. if (!(a)) { \
  308. printf("WPA_ASSERT FAILED '" #a "' " \
  309. "%s %s:%d\n", \
  310. __FUNCTION__, __FILE__, __LINE__); \
  311. exit(1); \
  312. } \
  313. } while (0)
  314. #else
  315. #define WPA_ASSERT(a) do { } while (0)
  316. #endif
  317. const char * debug_level_str(int level);
  318. int str_to_debug_level(const char *s);
  319. #endif /* WPA_DEBUG_H */