shell_log_backend.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <shell/shell_log_backend.h>
  7. #include <shell/shell.h>
  8. #include "shell_ops.h"
  9. #include <logging/log_ctrl.h>
  10. static bool process_msg2_from_buffer(const struct shell *shell);
  11. int z_shell_log_backend_output_func(uint8_t *data, size_t length, void *ctx)
  12. {
  13. z_shell_print_stream(ctx, data, length);
  14. return length;
  15. }
  16. static struct log_msg *msg_from_fifo(const struct shell_log_backend *backend)
  17. {
  18. struct shell_log_backend_msg msg;
  19. int err;
  20. err = k_msgq_get(backend->msgq, &msg, K_NO_WAIT);
  21. return (err == 0) ? msg.msg : NULL;
  22. }
  23. /* Set fifo clean state (in case of deferred mode). */
  24. static void fifo_reset(const struct shell_log_backend *backend)
  25. {
  26. if (IS_ENABLED(CONFIG_LOG2_MODE_DEFERRED)) {
  27. mpsc_pbuf_init(backend->mpsc_buffer,
  28. backend->mpsc_buffer_config);
  29. return;
  30. }
  31. /* Flush pending log messages without processing. */
  32. if (IS_ENABLED(CONFIG_LOG_MODE_DEFERRED)) {
  33. struct log_msg *msg;
  34. while ((msg = msg_from_fifo(backend)) != NULL) {
  35. log_msg_put(msg);
  36. }
  37. }
  38. }
  39. void z_shell_log_backend_enable(const struct shell_log_backend *backend,
  40. void *ctx, uint32_t init_log_level)
  41. {
  42. int err = 0;
  43. if (IS_ENABLED(CONFIG_LOG_IMMEDIATE)) {
  44. const struct shell *shell;
  45. shell = (const struct shell *)ctx;
  46. /* Reenable transport in blocking mode */
  47. err = shell->iface->api->enable(shell->iface, true);
  48. }
  49. if (err == 0) {
  50. fifo_reset(backend);
  51. log_backend_enable(backend->backend, ctx, init_log_level);
  52. log_output_ctx_set(backend->log_output, ctx);
  53. backend->control_block->dropped_cnt = 0;
  54. backend->control_block->state = SHELL_LOG_BACKEND_ENABLED;
  55. }
  56. }
  57. static void flush_expired_messages(const struct shell *shell)
  58. {
  59. int err;
  60. struct shell_log_backend_msg msg;
  61. struct k_msgq *msgq = shell->log_backend->msgq;
  62. uint32_t timeout = shell->log_backend->timeout;
  63. uint32_t now = k_uptime_get_32();
  64. while (1) {
  65. err = k_msgq_peek(msgq, &msg);
  66. if (err == 0 && ((now - msg.timestamp) > timeout)) {
  67. (void)k_msgq_get(msgq, &msg, K_NO_WAIT);
  68. log_msg_put(msg.msg);
  69. if (IS_ENABLED(CONFIG_SHELL_STATS)) {
  70. atomic_inc(&shell->stats->log_lost_cnt);
  71. }
  72. } else {
  73. break;
  74. }
  75. }
  76. }
  77. static void msg_to_fifo(const struct shell *shell,
  78. struct log_msg *msg)
  79. {
  80. int err;
  81. bool cont;
  82. struct shell_log_backend_msg t_msg = {
  83. .msg = msg,
  84. .timestamp = k_uptime_get_32()
  85. };
  86. do {
  87. cont = false;
  88. err = k_msgq_put(shell->log_backend->msgq, &t_msg,
  89. K_MSEC(shell->log_backend->timeout));
  90. switch (err) {
  91. case 0:
  92. break;
  93. case -EAGAIN:
  94. case -ENOMSG:
  95. {
  96. /* Attempt to drop old message. */
  97. flush_expired_messages(shell);
  98. /* Retry putting message. */
  99. cont = true;
  100. break;
  101. }
  102. default:
  103. /* Other errors are not expected. */
  104. __ASSERT_NO_MSG(0);
  105. break;
  106. }
  107. } while (cont);
  108. }
  109. void z_shell_log_backend_disable(const struct shell_log_backend *backend)
  110. {
  111. log_backend_disable(backend->backend);
  112. backend->control_block->state = SHELL_LOG_BACKEND_DISABLED;
  113. }
  114. static void msg_process(const struct log_output *log_output,
  115. struct log_msg *msg, bool colors)
  116. {
  117. uint32_t flags = LOG_OUTPUT_FLAG_LEVEL |
  118. LOG_OUTPUT_FLAG_TIMESTAMP |
  119. LOG_OUTPUT_FLAG_FORMAT_TIMESTAMP;
  120. if (colors) {
  121. flags |= LOG_OUTPUT_FLAG_COLORS;
  122. }
  123. log_output_msg_process(log_output, msg, flags);
  124. log_msg_put(msg);
  125. }
  126. bool z_shell_log_backend_process(const struct shell_log_backend *backend)
  127. {
  128. const struct shell *shell =
  129. (const struct shell *)backend->backend->cb->ctx;
  130. uint32_t dropped;
  131. bool colors = IS_ENABLED(CONFIG_SHELL_VT100_COLORS) &&
  132. shell->ctx->internal.flags.use_colors;
  133. dropped = atomic_set(&backend->control_block->dropped_cnt, 0);
  134. if (dropped) {
  135. struct shell_vt100_colors col;
  136. if (colors) {
  137. z_shell_vt100_colors_store(shell, &col);
  138. z_shell_vt100_color_set(shell, SHELL_VT100_COLOR_RED);
  139. }
  140. log_output_dropped_process(backend->log_output, dropped);
  141. if (colors) {
  142. z_shell_vt100_colors_restore(shell, &col);
  143. }
  144. }
  145. if (IS_ENABLED(CONFIG_LOG2_MODE_DEFERRED)) {
  146. return process_msg2_from_buffer(shell);
  147. }
  148. struct log_msg *msg = msg_from_fifo(backend);
  149. if (!msg) {
  150. return false;
  151. }
  152. msg_process(shell->log_backend->log_output, msg, colors);
  153. return true;
  154. }
  155. static void put(const struct log_backend *const backend, struct log_msg *msg)
  156. {
  157. const struct shell *shell = (const struct shell *)backend->cb->ctx;
  158. bool colors = IS_ENABLED(CONFIG_SHELL_VT100_COLORS) &&
  159. shell->ctx->internal.flags.use_colors;
  160. struct k_poll_signal *signal;
  161. log_msg_get(msg);
  162. switch (shell->log_backend->control_block->state) {
  163. case SHELL_LOG_BACKEND_ENABLED:
  164. msg_to_fifo(shell, msg);
  165. if (IS_ENABLED(CONFIG_MULTITHREADING)) {
  166. signal = &shell->ctx->signals[SHELL_SIGNAL_LOG_MSG];
  167. k_poll_signal_raise(signal, 0);
  168. }
  169. break;
  170. case SHELL_LOG_BACKEND_PANIC:
  171. z_shell_cmd_line_erase(shell);
  172. msg_process(shell->log_backend->log_output, msg, colors);
  173. break;
  174. case SHELL_LOG_BACKEND_DISABLED:
  175. __fallthrough;
  176. default:
  177. /* Discard message. */
  178. log_msg_put(msg);
  179. }
  180. }
  181. static void put_sync_string(const struct log_backend *const backend,
  182. struct log_msg_ids src_level, uint32_t timestamp,
  183. const char *fmt, va_list ap)
  184. {
  185. const struct shell *shell = (const struct shell *)backend->cb->ctx;
  186. uint32_t key;
  187. uint32_t flags = LOG_OUTPUT_FLAG_LEVEL |
  188. LOG_OUTPUT_FLAG_TIMESTAMP |
  189. LOG_OUTPUT_FLAG_FORMAT_TIMESTAMP;
  190. if (IS_ENABLED(CONFIG_SHELL_VT100_COLORS)) {
  191. flags |= LOG_OUTPUT_FLAG_COLORS;
  192. }
  193. key = irq_lock();
  194. if (!z_flag_cmd_ctx_get(shell)) {
  195. z_shell_cmd_line_erase(shell);
  196. }
  197. log_output_string(shell->log_backend->log_output, src_level, timestamp,
  198. fmt, ap, flags);
  199. if (!z_flag_cmd_ctx_get(shell)) {
  200. z_shell_print_prompt_and_cmd(shell);
  201. }
  202. irq_unlock(key);
  203. }
  204. static void put_sync_hexdump(const struct log_backend *const backend,
  205. struct log_msg_ids src_level, uint32_t timestamp,
  206. const char *metadata, const uint8_t *data,
  207. uint32_t length)
  208. {
  209. const struct shell *shell = (const struct shell *)backend->cb->ctx;
  210. uint32_t key;
  211. uint32_t flags = LOG_OUTPUT_FLAG_LEVEL |
  212. LOG_OUTPUT_FLAG_TIMESTAMP |
  213. LOG_OUTPUT_FLAG_FORMAT_TIMESTAMP;
  214. if (IS_ENABLED(CONFIG_SHELL_VT100_COLORS)) {
  215. flags |= LOG_OUTPUT_FLAG_COLORS;
  216. }
  217. key = irq_lock();
  218. if (!z_flag_cmd_ctx_get(shell)) {
  219. z_shell_cmd_line_erase(shell);
  220. }
  221. log_output_hexdump(shell->log_backend->log_output, src_level,
  222. timestamp, metadata, data, length, flags);
  223. if (!z_flag_cmd_ctx_get(shell)) {
  224. z_shell_print_prompt_and_cmd(shell);
  225. }
  226. irq_unlock(key);
  227. }
  228. static void panic(const struct log_backend *const backend)
  229. {
  230. const struct shell *shell = (const struct shell *)backend->cb->ctx;
  231. int err;
  232. if (IS_ENABLED(CONFIG_LOG_IMMEDIATE)) {
  233. return;
  234. }
  235. err = shell->iface->api->enable(shell->iface, true);
  236. if (err == 0) {
  237. shell->log_backend->control_block->state =
  238. SHELL_LOG_BACKEND_PANIC;
  239. /* Move to the start of next line. */
  240. z_shell_multiline_data_calc(&shell->ctx->vt100_ctx.cons,
  241. shell->ctx->cmd_buff_pos,
  242. shell->ctx->cmd_buff_len);
  243. z_shell_op_cursor_vert_move(shell, -1);
  244. z_shell_op_cursor_horiz_move(shell,
  245. -shell->ctx->vt100_ctx.cons.cur_x);
  246. if (IS_ENABLED(CONFIG_LOG2_MODE_DEFERRED)) {
  247. while (process_msg2_from_buffer(shell)) {
  248. /* empty */
  249. }
  250. } else if (IS_ENABLED(CONFIG_LOG_MODE_DEFERRED)) {
  251. while (z_shell_log_backend_process(
  252. shell->log_backend)) {
  253. /* empty */
  254. }
  255. }
  256. } else {
  257. z_shell_log_backend_disable(shell->log_backend);
  258. }
  259. }
  260. static void dropped(const struct log_backend *const backend, uint32_t cnt)
  261. {
  262. const struct shell *shell = (const struct shell *)backend->cb->ctx;
  263. const struct shell_log_backend *log_backend = shell->log_backend;
  264. atomic_add(&shell->stats->log_lost_cnt, cnt);
  265. atomic_add(&log_backend->control_block->dropped_cnt, cnt);
  266. }
  267. static void copy_to_pbuffer(struct mpsc_pbuf_buffer *mpsc_buffer,
  268. union log_msg2_generic *msg, uint32_t timeout)
  269. {
  270. size_t wlen;
  271. union mpsc_pbuf_generic *dst;
  272. wlen = log_msg2_generic_get_wlen((union mpsc_pbuf_generic *)msg);
  273. dst = mpsc_pbuf_alloc(mpsc_buffer, wlen, K_MSEC(timeout));
  274. if (!dst) {
  275. /* No space to store the log */
  276. return;
  277. }
  278. /* First word contains intenal mpsc packet flags and when copying
  279. * those flags must be omitted.
  280. */
  281. uint8_t *dst_data = (uint8_t *)dst + sizeof(struct mpsc_pbuf_hdr);
  282. uint8_t *src_data = (uint8_t *)msg + sizeof(struct mpsc_pbuf_hdr);
  283. size_t hdr_wlen = ceiling_fraction(sizeof(struct mpsc_pbuf_hdr),
  284. sizeof(uint32_t));
  285. dst->hdr.data = msg->buf.hdr.data;
  286. memcpy(dst_data, src_data, (wlen - hdr_wlen) * sizeof(uint32_t));
  287. mpsc_pbuf_commit(mpsc_buffer, dst);
  288. }
  289. static void process_log_msg2(const struct shell *shell,
  290. const struct log_output *log_output,
  291. union log_msg2_generic *msg,
  292. bool locked, bool colors)
  293. {
  294. unsigned int key;
  295. uint32_t flags = LOG_OUTPUT_FLAG_LEVEL |
  296. LOG_OUTPUT_FLAG_TIMESTAMP |
  297. LOG_OUTPUT_FLAG_FORMAT_TIMESTAMP;
  298. if (colors) {
  299. flags |= LOG_OUTPUT_FLAG_COLORS;
  300. }
  301. if (locked) {
  302. key = irq_lock();
  303. if (!z_flag_cmd_ctx_get(shell)) {
  304. z_shell_cmd_line_erase(shell);
  305. }
  306. }
  307. log_output_msg2_process(log_output, &msg->log, flags);
  308. if (locked) {
  309. if (!z_flag_cmd_ctx_get(shell)) {
  310. z_shell_print_prompt_and_cmd(shell);
  311. }
  312. irq_unlock(key);
  313. }
  314. }
  315. static bool process_msg2_from_buffer(const struct shell *shell)
  316. {
  317. const struct shell_log_backend *log_backend = shell->log_backend;
  318. struct mpsc_pbuf_buffer *mpsc_buffer = log_backend->mpsc_buffer;
  319. const struct log_output *log_output = log_backend->log_output;
  320. union log_msg2_generic *msg;
  321. bool colors = IS_ENABLED(CONFIG_SHELL_VT100_COLORS) &&
  322. shell->ctx->internal.flags.use_colors;
  323. msg = (union log_msg2_generic *)mpsc_pbuf_claim(mpsc_buffer);
  324. if (!msg) {
  325. return false;
  326. }
  327. process_log_msg2(shell, log_output, msg, false, colors);
  328. mpsc_pbuf_free(mpsc_buffer, &msg->buf);
  329. return true;
  330. }
  331. static void log2_process(const struct log_backend *const backend,
  332. union log_msg2_generic *msg)
  333. {
  334. const struct shell *shell = (const struct shell *)backend->cb->ctx;
  335. const struct shell_log_backend *log_backend = shell->log_backend;
  336. struct mpsc_pbuf_buffer *mpsc_buffer = log_backend->mpsc_buffer;
  337. const struct log_output *log_output = log_backend->log_output;
  338. bool colors = IS_ENABLED(CONFIG_SHELL_VT100_COLORS) &&
  339. shell->ctx->internal.flags.use_colors;
  340. struct k_poll_signal *signal;
  341. switch (shell->log_backend->control_block->state) {
  342. case SHELL_LOG_BACKEND_ENABLED:
  343. if (IS_ENABLED(CONFIG_LOG_IMMEDIATE)) {
  344. process_log_msg2(shell, log_output, msg, true, colors);
  345. } else {
  346. copy_to_pbuffer(mpsc_buffer, msg,
  347. log_backend->timeout);
  348. if (IS_ENABLED(CONFIG_MULTITHREADING)) {
  349. signal =
  350. &shell->ctx->signals[SHELL_SIGNAL_LOG_MSG];
  351. k_poll_signal_raise(signal, 0);
  352. }
  353. }
  354. break;
  355. case SHELL_LOG_BACKEND_PANIC:
  356. z_shell_cmd_line_erase(shell);
  357. process_log_msg2(shell, log_output, msg, true, colors);
  358. break;
  359. case SHELL_LOG_BACKEND_DISABLED:
  360. __fallthrough;
  361. default:
  362. break;
  363. }
  364. }
  365. const struct log_backend_api log_backend_shell_api = {
  366. .process = IS_ENABLED(CONFIG_LOG2) ? log2_process : NULL,
  367. .put = IS_ENABLED(CONFIG_LOG_MODE_DEFERRED) ? put : NULL,
  368. .put_sync_string = IS_ENABLED(CONFIG_LOG_MODE_IMMEDIATE) ?
  369. put_sync_string : NULL,
  370. .put_sync_hexdump = IS_ENABLED(CONFIG_LOG_MODE_IMMEDIATE) ?
  371. put_sync_hexdump : NULL,
  372. .dropped = dropped,
  373. .panic = panic,
  374. };