log.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_LOGGING_LOG_H_
  7. #define ZEPHYR_INCLUDE_LOGGING_LOG_H_
  8. #include <logging/log_instance.h>
  9. #include <logging/log_core.h>
  10. #if defined(CONFIG_ACTLOG)
  11. #include <logging/act_log.h>
  12. #endif
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. /**
  17. * @brief Logging
  18. * @defgroup logging Logging
  19. * @{
  20. * @}
  21. */
  22. /**
  23. * @brief Logger API
  24. * @defgroup log_api Logging API
  25. * @ingroup logger
  26. * @{
  27. */
  28. /**
  29. * @brief Writes an ERROR level message to the log.
  30. *
  31. * @details It's meant to report severe errors, such as those from which it's
  32. * not possible to recover.
  33. *
  34. * @param ... A string optionally containing printk valid conversion specifier,
  35. * followed by as many values as specifiers.
  36. */
  37. #if defined(CONFIG_ACTLOG)
  38. #define LOG_ERR(...) ACT_LOG(LOG_LEVEL_ERR, __VA_ARGS__)
  39. #else
  40. #define LOG_ERR(...) Z_LOG(LOG_LEVEL_ERR, __VA_ARGS__)
  41. #endif
  42. /**
  43. * @brief Writes a WARNING level message to the log.
  44. *
  45. * @details It's meant to register messages related to unusual situations that
  46. * are not necessarily errors.
  47. *
  48. * @param ... A string optionally containing printk valid conversion specifier,
  49. * followed by as many values as specifiers.
  50. */
  51. #if defined(CONFIG_ACTLOG)
  52. #define LOG_WRN(...) ACT_LOG(LOG_LEVEL_WRN, __VA_ARGS__)
  53. #else
  54. #define LOG_WRN(...) Z_LOG(LOG_LEVEL_WRN, __VA_ARGS__)
  55. #endif
  56. /**
  57. * @brief Writes an INFO level message to the log.
  58. *
  59. * @details It's meant to write generic user oriented messages.
  60. *
  61. * @param ... A string optionally containing printk valid conversion specifier,
  62. * followed by as many values as specifiers.
  63. */
  64. #if defined(CONFIG_ACTLOG)
  65. #define LOG_INF(...) ACT_LOG(LOG_LEVEL_INF, __VA_ARGS__)
  66. #else
  67. #define LOG_INF(...) Z_LOG(LOG_LEVEL_INF, __VA_ARGS__)
  68. #endif
  69. /**
  70. * @brief Writes a DEBUG level message to the log.
  71. *
  72. * @details It's meant to write developer oriented information.
  73. *
  74. * @param ... A string optionally containing printk valid conversion specifier,
  75. * followed by as many values as specifiers.
  76. */
  77. #if defined(CONFIG_ACTLOG)
  78. #define LOG_DBG(...) ACT_LOG(LOG_LEVEL_DBG, __VA_ARGS__)
  79. #else
  80. #define LOG_DBG(...) Z_LOG(LOG_LEVEL_DBG, __VA_ARGS__)
  81. #endif
  82. /**
  83. * @brief Unconditionally print raw log message.
  84. *
  85. * The result is same as if printk was used but it goes through logging
  86. * infrastructure thus utilizes logging mode, e.g. deferred mode.
  87. *
  88. * @param ... A string optionally containing printk valid conversion specifier,
  89. * followed by as many values as specifiers.
  90. */
  91. #define LOG_PRINTK(...) Z_LOG_PRINTK(__VA_ARGS__)
  92. /**
  93. * @brief Writes an ERROR level message associated with the instance to the log.
  94. *
  95. * Message is associated with specific instance of the module which has
  96. * independent filtering settings (if runtime filtering is enabled) and
  97. * message prefix (\<module_name\>.\<instance_name\>). It's meant to report
  98. * severe errors, such as those from which it's not possible to recover.
  99. *
  100. * @param _log_inst Pointer to the log structure associated with the instance.
  101. * @param ... A string optionally containing printk valid conversion specifier,
  102. * followed by as many values as specifiers.
  103. */
  104. #define LOG_INST_ERR(_log_inst, ...) \
  105. Z_LOG_INSTANCE(LOG_LEVEL_ERR, _log_inst, __VA_ARGS__)
  106. /**
  107. * @brief Writes a WARNING level message associated with the instance to the
  108. * log.
  109. *
  110. * Message is associated with specific instance of the module which has
  111. * independent filtering settings (if runtime filtering is enabled) and
  112. * message prefix (\<module_name\>.\<instance_name\>). It's meant to register
  113. * messages related to unusual situations that are not necessarily errors.
  114. *
  115. * @param _log_inst Pointer to the log structure associated with the instance.
  116. * @param ... A string optionally containing printk valid conversion
  117. * specifier, followed by as many values as specifiers.
  118. */
  119. #define LOG_INST_WRN(_log_inst, ...) \
  120. Z_LOG_INSTANCE(LOG_LEVEL_WRN, _log_inst, __VA_ARGS__)
  121. /**
  122. * @brief Writes an INFO level message associated with the instance to the log.
  123. *
  124. * Message is associated with specific instance of the module which has
  125. * independent filtering settings (if runtime filtering is enabled) and
  126. * message prefix (\<module_name\>.\<instance_name\>). It's meant to write
  127. * generic user oriented messages.
  128. *
  129. * @param _log_inst Pointer to the log structure associated with the instance.
  130. * @param ... A string optionally containing printk valid conversion specifier,
  131. * followed by as many values as specifiers.
  132. */
  133. #define LOG_INST_INF(_log_inst, ...) \
  134. Z_LOG_INSTANCE(LOG_LEVEL_INF, _log_inst, __VA_ARGS__)
  135. /**
  136. * @brief Writes a DEBUG level message associated with the instance to the log.
  137. *
  138. * Message is associated with specific instance of the module which has
  139. * independent filtering settings (if runtime filtering is enabled) and
  140. * message prefix (\<module_name\>.\<instance_name\>). It's meant to write
  141. * developer oriented information.
  142. *
  143. * @param _log_inst Pointer to the log structure associated with the instance.
  144. * @param ... A string optionally containing printk valid conversion specifier,
  145. * followed by as many values as specifiers.
  146. */
  147. #define LOG_INST_DBG(_log_inst, ...) \
  148. Z_LOG_INSTANCE(LOG_LEVEL_DBG, _log_inst, __VA_ARGS__)
  149. /**
  150. * @brief Writes an ERROR level hexdump message to the log.
  151. *
  152. * @details It's meant to report severe errors, such as those from which it's
  153. * not possible to recover.
  154. *
  155. * @param _data Pointer to the data to be logged.
  156. * @param _length Length of data (in bytes).
  157. * @param _str Persistent, raw string.
  158. */
  159. #define LOG_HEXDUMP_ERR(_data, _length, _str) \
  160. Z_LOG_HEXDUMP(LOG_LEVEL_ERR, _data, _length, _str)
  161. /**
  162. * @brief Writes a WARNING level message to the log.
  163. *
  164. * @details It's meant to register messages related to unusual situations that
  165. * are not necessarily errors.
  166. *
  167. * @param _data Pointer to the data to be logged.
  168. * @param _length Length of data (in bytes).
  169. * @param _str Persistent, raw string.
  170. */
  171. #define LOG_HEXDUMP_WRN(_data, _length, _str) \
  172. Z_LOG_HEXDUMP(LOG_LEVEL_WRN, _data, _length, _str)
  173. /**
  174. * @brief Writes an INFO level message to the log.
  175. *
  176. * @details It's meant to write generic user oriented messages.
  177. *
  178. * @param _data Pointer to the data to be logged.
  179. * @param _length Length of data (in bytes).
  180. * @param _str Persistent, raw string.
  181. */
  182. #define LOG_HEXDUMP_INF(_data, _length, _str) \
  183. Z_LOG_HEXDUMP(LOG_LEVEL_INF, _data, _length, _str)
  184. /**
  185. * @brief Writes a DEBUG level message to the log.
  186. *
  187. * @details It's meant to write developer oriented information.
  188. *
  189. * @param _data Pointer to the data to be logged.
  190. * @param _length Length of data (in bytes).
  191. * @param _str Persistent, raw string.
  192. */
  193. #define LOG_HEXDUMP_DBG(_data, _length, _str) \
  194. Z_LOG_HEXDUMP(LOG_LEVEL_DBG, _data, _length, _str)
  195. /**
  196. * @brief Writes an ERROR hexdump message associated with the instance to the
  197. * log.
  198. *
  199. * Message is associated with specific instance of the module which has
  200. * independent filtering settings (if runtime filtering is enabled) and
  201. * message prefix (\<module_name\>.\<instance_name\>). It's meant to report
  202. * severe errors, such as those from which it's not possible to recover.
  203. *
  204. * @param _log_inst Pointer to the log structure associated with the instance.
  205. * @param _data Pointer to the data to be logged.
  206. * @param _length Length of data (in bytes).
  207. * @param _str Persistent, raw string.
  208. */
  209. #define LOG_INST_HEXDUMP_ERR(_log_inst, _data, _length, _str) \
  210. Z_LOG_HEXDUMP_INSTANCE(LOG_LEVEL_ERR, _log_inst, _data, _length, _str)
  211. /**
  212. * @brief Writes a WARNING level hexdump message associated with the instance to
  213. * the log.
  214. *
  215. * @details It's meant to register messages related to unusual situations that
  216. * are not necessarily errors.
  217. *
  218. * @param _log_inst Pointer to the log structure associated with the instance.
  219. * @param _data Pointer to the data to be logged.
  220. * @param _length Length of data (in bytes).
  221. * @param _str Persistent, raw string.
  222. */
  223. #define LOG_INST_HEXDUMP_WRN(_log_inst, _data, _length, _str) \
  224. Z_LOG_HEXDUMP_INSTANCE(LOG_LEVEL_WRN, _log_inst, _data, _length, _str)
  225. /**
  226. * @brief Writes an INFO level hexdump message associated with the instance to
  227. * the log.
  228. *
  229. * @details It's meant to write generic user oriented messages.
  230. *
  231. * @param _log_inst Pointer to the log structure associated with the instance.
  232. * @param _data Pointer to the data to be logged.
  233. * @param _length Length of data (in bytes).
  234. * @param _str Persistent, raw string.
  235. */
  236. #define LOG_INST_HEXDUMP_INF(_log_inst, _data, _length, _str) \
  237. Z_LOG_HEXDUMP_INSTANCE(LOG_LEVEL_INF, _log_inst, _data, _length, _str)
  238. /**
  239. * @brief Writes a DEBUG level hexdump message associated with the instance to
  240. * the log.
  241. *
  242. * @details It's meant to write developer oriented information.
  243. *
  244. * @param _log_inst Pointer to the log structure associated with the instance.
  245. * @param _data Pointer to the data to be logged.
  246. * @param _length Length of data (in bytes).
  247. * @param _str Persistent, raw string.
  248. */
  249. #define LOG_INST_HEXDUMP_DBG(_log_inst, _data, _length, _str) \
  250. Z_LOG_HEXDUMP_INSTANCE(LOG_LEVEL_DBG, _log_inst, _data, _length, _str)
  251. /**
  252. * @brief Writes an formatted string to the log.
  253. *
  254. * @details Conditionally compiled (see CONFIG_LOG_PRINTK). Function provides
  255. * printk functionality. It is inefficient compared to standard logging
  256. * because string formatting is performed in the call context and not deferred
  257. * to the log processing context (@ref log_process).
  258. *
  259. * @param fmt Formatted string to output.
  260. * @param ap Variable parameters.
  261. */
  262. void z_log_printk(const char *fmt, va_list ap);
  263. static inline void log_printk(const char *fmt, va_list ap)
  264. {
  265. z_log_printk(fmt, ap);
  266. }
  267. /** @brief Copy transient string to a buffer from internal, logger pool.
  268. *
  269. * Function should be used when transient string is intended to be logged.
  270. * Logger allocates a buffer and copies input string returning a pointer to the
  271. * copy. Logger ensures that buffer is freed when logger message is freed.
  272. *
  273. * Depending on configuration, this function may do nothing and just pass
  274. * along the supplied string pointer. Do not rely on this function to always
  275. * make a copy!
  276. *
  277. * @param str Transient string.
  278. *
  279. * @return Copy of the string or default string if buffer could not be
  280. * allocated. String may be truncated if input string does not fit in
  281. * a buffer from the pool (see CONFIG_LOG_STRDUP_MAX_STRING). In
  282. * some configurations, the original string pointer is returned.
  283. */
  284. char *z_log_strdup(const char *str);
  285. static inline char *log_strdup(const char *str)
  286. {
  287. if (IS_ENABLED(CONFIG_LOG_MINIMAL) || IS_ENABLED(CONFIG_LOG2)) {
  288. return (char *)str;
  289. }
  290. #ifdef CONFIG_LOG
  291. return z_log_strdup(str);
  292. #else
  293. return (char *)str;
  294. #endif
  295. }
  296. #ifdef __cplusplus
  297. }
  298. #define LOG_IN_CPLUSPLUS 1
  299. #endif
  300. /* Macro expects that optionally on second argument local log level is provided.
  301. * If provided it is returned, otherwise default log level is returned or
  302. * LOG_LEVEL, if it was locally defined.
  303. */
  304. #if !defined(CONFIG_LOG)
  305. #define _LOG_LEVEL_RESOLVE(...) LOG_LEVEL_NONE
  306. #else
  307. #define _LOG_LEVEL_RESOLVE(...) \
  308. Z_LOG_EVAL(LOG_LEVEL, \
  309. (GET_ARG_N(2, __VA_ARGS__, LOG_LEVEL)), \
  310. (GET_ARG_N(2, __VA_ARGS__, CONFIG_LOG_DEFAULT_LEVEL)))
  311. #endif
  312. /* Return first argument */
  313. #define _LOG_ARG1(arg1, ...) arg1
  314. #define _LOG_MODULE_CONST_DATA_CREATE(_name, _level) \
  315. IF_ENABLED(LOG_IN_CPLUSPLUS, (extern)) \
  316. const struct log_source_const_data LOG_ITEM_CONST_DATA(_name) \
  317. __attribute__ ((section("." STRINGIFY(LOG_ITEM_CONST_DATA(_name))))) \
  318. __attribute__((used)) = { \
  319. .name = STRINGIFY(_name), \
  320. .level = _level \
  321. }
  322. #define _LOG_MODULE_DYNAMIC_DATA_CREATE(_name) \
  323. struct log_source_dynamic_data LOG_ITEM_DYNAMIC_DATA(_name) \
  324. __attribute__ ((section("." STRINGIFY( \
  325. LOG_ITEM_DYNAMIC_DATA(_name)))) \
  326. ) \
  327. __attribute__((used))
  328. #define _LOG_MODULE_DYNAMIC_DATA_COND_CREATE(_name) \
  329. IF_ENABLED(CONFIG_LOG_RUNTIME_FILTERING, \
  330. (_LOG_MODULE_DYNAMIC_DATA_CREATE(_name);))
  331. #define _LOG_MODULE_DATA_CREATE(_name, _level) \
  332. _LOG_MODULE_CONST_DATA_CREATE(_name, _level); \
  333. _LOG_MODULE_DYNAMIC_DATA_COND_CREATE(_name)
  334. /**
  335. * @brief Create module-specific state and register the module with Logger.
  336. *
  337. * This macro normally must be used after including <logging/log.h> to
  338. * complete the initialization of the module.
  339. *
  340. * Module registration can be skipped in two cases:
  341. *
  342. * - The module consists of more than one file, and another file
  343. * invokes this macro. (LOG_MODULE_DECLARE() should be used instead
  344. * in all of the module's other files.)
  345. * - Instance logging is used and there is no need to create module entry. In
  346. * that case LOG_LEVEL_SET() should be used to set log level used within the
  347. * file.
  348. *
  349. * Macro accepts one or two parameters:
  350. * - module name
  351. * - optional log level. If not provided then default log level is used in
  352. * the file.
  353. *
  354. * Example usage:
  355. * - LOG_MODULE_REGISTER(foo, CONFIG_FOO_LOG_LEVEL)
  356. * - LOG_MODULE_REGISTER(foo)
  357. *
  358. *
  359. * @note The module's state is defined, and the module is registered,
  360. * only if LOG_LEVEL for the current source file is non-zero or
  361. * it is not defined and CONFIG_LOG_DEFAULT_LEVEL is non-zero.
  362. * In other cases, this macro has no effect.
  363. * @see LOG_MODULE_DECLARE
  364. */
  365. #define LOG_MODULE_REGISTER(...) \
  366. Z_LOG_EVAL( \
  367. _LOG_LEVEL_RESOLVE(__VA_ARGS__), \
  368. (_LOG_MODULE_DATA_CREATE(GET_ARG_N(1, __VA_ARGS__), \
  369. _LOG_LEVEL_RESOLVE(__VA_ARGS__))),\
  370. ()/*Empty*/ \
  371. ) \
  372. LOG_MODULE_DECLARE(__VA_ARGS__)
  373. /**
  374. * @brief Macro for declaring a log module (not registering it).
  375. *
  376. * Modules which are split up over multiple files must have exactly
  377. * one file use LOG_MODULE_REGISTER() to create module-specific state
  378. * and register the module with the logger core.
  379. *
  380. * The other files in the module should use this macro instead to
  381. * declare that same state. (Otherwise, LOG_INF() etc. will not be
  382. * able to refer to module-specific state variables.)
  383. *
  384. * Macro accepts one or two parameters:
  385. * - module name
  386. * - optional log level. If not provided then default log level is used in
  387. * the file.
  388. *
  389. * Example usage:
  390. * - LOG_MODULE_DECLARE(foo, CONFIG_FOO_LOG_LEVEL)
  391. * - LOG_MODULE_DECLARE(foo)
  392. *
  393. * @note The module's state is declared only if LOG_LEVEL for the
  394. * current source file is non-zero or it is not defined and
  395. * CONFIG_LOG_DEFAULT_LEVEL is non-zero. In other cases,
  396. * this macro has no effect.
  397. * @see LOG_MODULE_REGISTER
  398. */
  399. #define LOG_MODULE_DECLARE(...) \
  400. extern const struct log_source_const_data \
  401. LOG_ITEM_CONST_DATA(GET_ARG_N(1, __VA_ARGS__)); \
  402. extern struct log_source_dynamic_data \
  403. LOG_ITEM_DYNAMIC_DATA(GET_ARG_N(1, __VA_ARGS__)); \
  404. \
  405. static const struct log_source_const_data * \
  406. __log_current_const_data __unused = \
  407. _LOG_LEVEL_RESOLVE(__VA_ARGS__) ? \
  408. &LOG_ITEM_CONST_DATA(GET_ARG_N(1, __VA_ARGS__)) : \
  409. NULL; \
  410. \
  411. static struct log_source_dynamic_data * \
  412. __log_current_dynamic_data __unused = \
  413. (_LOG_LEVEL_RESOLVE(__VA_ARGS__) && \
  414. IS_ENABLED(CONFIG_LOG_RUNTIME_FILTERING)) ? \
  415. &LOG_ITEM_DYNAMIC_DATA(GET_ARG_N(1, __VA_ARGS__)) : \
  416. NULL; \
  417. \
  418. static const uint32_t __log_level __unused = \
  419. _LOG_LEVEL_RESOLVE(__VA_ARGS__)
  420. /**
  421. * @brief Macro for setting log level in the file or function where instance
  422. * logging API is used.
  423. *
  424. * @param level Level used in file or in function.
  425. *
  426. */
  427. #define LOG_LEVEL_SET(level) static const uint32_t __log_level __unused = \
  428. Z_LOG_RESOLVED_LEVEL(level, 0)
  429. /*
  430. * Eclipse CDT parser is sometimes confused by logging API code and freezes the
  431. * whole IDE. Following lines hides LOG_x macros from CDT.
  432. */
  433. #if defined(__CDT_PARSER__)
  434. #undef LOG_ERR
  435. #undef LOG_WRN
  436. #undef LOG_INF
  437. #undef LOG_DBG
  438. #undef LOG_HEXDUMP_ERR
  439. #undef LOG_HEXDUMP_WRN
  440. #undef LOG_HEXDUMP_INF
  441. #undef LOG_HEXDUMP_DBG
  442. #define LOG_ERR(...) (void) 0
  443. #define LOG_WRN(...) (void) 0
  444. #define LOG_DBG(...) (void) 0
  445. #define LOG_INF(...) (void) 0
  446. #define LOG_HEXDUMP_ERR(...) (void) 0
  447. #define LOG_HEXDUMP_WRN(...) (void) 0
  448. #define LOG_HEXDUMP_DBG(...) (void) 0
  449. #define LOG_HEXDUMP_INF(...) (void) 0
  450. #endif
  451. /**
  452. * @}
  453. */
  454. #endif /* ZEPHYR_INCLUDE_LOGGING_LOG_H_ */