shell_utils.c 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <ctype.h>
  7. #include <device.h>
  8. #include "shell_utils.h"
  9. #include "shell_wildcard.h"
  10. extern const struct shell_cmd_entry __shell_root_cmds_start[];
  11. extern const struct shell_cmd_entry __shell_root_cmds_end[];
  12. static inline const struct shell_cmd_entry *shell_root_cmd_get(uint32_t id)
  13. {
  14. return &__shell_root_cmds_start[id];
  15. }
  16. /* Calculates relative line number of given position in buffer */
  17. static uint32_t line_num_with_buffer_offset_get(struct shell_multiline_cons *cons,
  18. uint16_t buffer_pos)
  19. {
  20. return ((buffer_pos + cons->name_len) / cons->terminal_wid);
  21. }
  22. /* Calculates column number of given position in buffer */
  23. static uint32_t col_num_with_buffer_offset_get(struct shell_multiline_cons *cons,
  24. uint16_t buffer_pos)
  25. {
  26. /* columns are counted from 1 */
  27. return (1 + ((buffer_pos + cons->name_len) % cons->terminal_wid));
  28. }
  29. int32_t z_column_span_with_buffer_offsets_get(struct shell_multiline_cons *cons,
  30. uint16_t offset1,
  31. uint16_t offset2)
  32. {
  33. return col_num_with_buffer_offset_get(cons, offset2)
  34. - col_num_with_buffer_offset_get(cons, offset1);
  35. }
  36. int32_t z_row_span_with_buffer_offsets_get(struct shell_multiline_cons *cons,
  37. uint16_t offset1,
  38. uint16_t offset2)
  39. {
  40. return line_num_with_buffer_offset_get(cons, offset2)
  41. - line_num_with_buffer_offset_get(cons, offset1);
  42. }
  43. void z_shell_multiline_data_calc(struct shell_multiline_cons *cons,
  44. uint16_t buff_pos, uint16_t buff_len)
  45. {
  46. /* Current cursor position in command.
  47. * +1 -> because home position is (1, 1)
  48. */
  49. cons->cur_x = (buff_pos + cons->name_len) % cons->terminal_wid + 1;
  50. cons->cur_y = (buff_pos + cons->name_len) / cons->terminal_wid + 1;
  51. /* Extreme position when cursor is at the end of command. */
  52. cons->cur_y_end = (buff_len + cons->name_len) / cons->terminal_wid + 1;
  53. cons->cur_x_end = (buff_len + cons->name_len) % cons->terminal_wid + 1;
  54. }
  55. static char make_argv(char **ppcmd, uint8_t c)
  56. {
  57. char *cmd = *ppcmd;
  58. char quote = 0;
  59. while (1) {
  60. c = *cmd;
  61. if (c == '\0') {
  62. break;
  63. }
  64. if (!quote) {
  65. switch (c) {
  66. case '\\':
  67. memmove(cmd, cmd + 1,
  68. z_shell_strlen(cmd));
  69. cmd += 1;
  70. continue;
  71. case '\'':
  72. case '\"':
  73. memmove(cmd, cmd + 1,
  74. z_shell_strlen(cmd));
  75. quote = c;
  76. continue;
  77. default:
  78. break;
  79. }
  80. }
  81. if (quote == c) {
  82. memmove(cmd, cmd + 1, z_shell_strlen(cmd));
  83. quote = 0;
  84. continue;
  85. }
  86. if (quote && c == '\\') {
  87. char t = *(cmd + 1);
  88. if (t == quote) {
  89. memmove(cmd, cmd + 1,
  90. z_shell_strlen(cmd));
  91. cmd += 1;
  92. continue;
  93. }
  94. if (t == '0') {
  95. uint8_t i;
  96. uint8_t v = 0U;
  97. for (i = 2U; i < (2 + 3); i++) {
  98. t = *(cmd + i);
  99. if (t >= '0' && t <= '7') {
  100. v = (v << 3) | (t - '0');
  101. } else {
  102. break;
  103. }
  104. }
  105. if (i > 2) {
  106. memmove(cmd, cmd + (i - 1),
  107. z_shell_strlen(cmd) - (i - 2));
  108. *cmd++ = v;
  109. continue;
  110. }
  111. }
  112. if (t == 'x') {
  113. uint8_t i;
  114. uint8_t v = 0U;
  115. for (i = 2U; i < (2 + 2); i++) {
  116. t = *(cmd + i);
  117. if (t >= '0' && t <= '9') {
  118. v = (v << 4) | (t - '0');
  119. } else if ((t >= 'a') &&
  120. (t <= 'f')) {
  121. v = (v << 4) | (t - 'a' + 10);
  122. } else if ((t >= 'A') && (t <= 'F')) {
  123. v = (v << 4) | (t - 'A' + 10);
  124. } else {
  125. break;
  126. }
  127. }
  128. if (i > 2) {
  129. memmove(cmd, cmd + (i - 1),
  130. z_shell_strlen(cmd) - (i - 2));
  131. *cmd++ = v;
  132. continue;
  133. }
  134. }
  135. }
  136. if (!quote && isspace((int) c)) {
  137. break;
  138. }
  139. cmd += 1;
  140. }
  141. *ppcmd = cmd;
  142. return quote;
  143. }
  144. char z_shell_make_argv(size_t *argc, const char **argv, char *cmd,
  145. uint8_t max_argc)
  146. {
  147. char quote = 0;
  148. char c;
  149. *argc = 0;
  150. do {
  151. c = *cmd;
  152. if (c == '\0') {
  153. break;
  154. }
  155. if (isspace((int) c)) {
  156. *cmd++ = '\0';
  157. continue;
  158. }
  159. argv[(*argc)++] = cmd;
  160. if (*argc == max_argc) {
  161. break;
  162. }
  163. quote = make_argv(&cmd, c);
  164. } while (true);
  165. return quote;
  166. }
  167. void z_shell_pattern_remove(char *buff, uint16_t *buff_len, const char *pattern)
  168. {
  169. char *pattern_addr = strstr(buff, pattern);
  170. uint16_t shift;
  171. uint16_t pattern_len = z_shell_strlen(pattern);
  172. if (!pattern_addr) {
  173. return;
  174. }
  175. if (pattern_addr > buff) {
  176. if (*(pattern_addr - 1) == ' ') {
  177. pattern_len++; /* space needs to be removed as well */
  178. pattern_addr--; /* set pointer to space */
  179. }
  180. }
  181. shift = z_shell_strlen(pattern_addr) - pattern_len + 1; /* +1 for EOS */
  182. *buff_len -= pattern_len;
  183. memmove(pattern_addr, pattern_addr + pattern_len, shift);
  184. }
  185. static inline uint32_t shell_root_cmd_count(void)
  186. {
  187. return ((uint8_t *)__shell_root_cmds_end -
  188. (uint8_t *)__shell_root_cmds_start)/
  189. sizeof(struct shell_cmd_entry);
  190. }
  191. /* Function returning pointer to parent command matching requested syntax. */
  192. const struct shell_static_entry *root_cmd_find(const char *syntax)
  193. {
  194. const size_t cmd_count = shell_root_cmd_count();
  195. const struct shell_cmd_entry *cmd;
  196. for (size_t cmd_idx = 0; cmd_idx < cmd_count; ++cmd_idx) {
  197. cmd = shell_root_cmd_get(cmd_idx);
  198. if (strcmp(syntax, cmd->u.entry->syntax) == 0) {
  199. return cmd->u.entry;
  200. }
  201. }
  202. return NULL;
  203. }
  204. const struct shell_static_entry *z_shell_cmd_get(
  205. const struct shell_static_entry *parent,
  206. size_t idx,
  207. struct shell_static_entry *dloc)
  208. {
  209. const struct shell_static_entry *res = NULL;
  210. if (parent == NULL) {
  211. return (idx < shell_root_cmd_count()) ?
  212. shell_root_cmd_get(idx)->u.entry : NULL;
  213. }
  214. __ASSERT_NO_MSG(dloc != NULL);
  215. if (parent->subcmd) {
  216. if (parent->subcmd->is_dynamic) {
  217. parent->subcmd->u.dynamic_get(idx, dloc);
  218. if (dloc->syntax != NULL) {
  219. res = dloc;
  220. }
  221. } else {
  222. if (parent->subcmd->u.entry[idx].syntax != NULL) {
  223. res = &parent->subcmd->u.entry[idx];
  224. }
  225. }
  226. }
  227. return res;
  228. }
  229. /* Function returns pointer to a command matching given pattern.
  230. *
  231. * @param cmd Pointer to commands array that will be searched.
  232. * @param lvl Root command indicator. If set to 0 shell will search
  233. * for pattern in parent commands.
  234. * @param cmd_str Command pattern to be found.
  235. * @param dloc Shell static command descriptor.
  236. *
  237. * @return Pointer to found command.
  238. */
  239. const struct shell_static_entry *z_shell_find_cmd(
  240. const struct shell_static_entry *parent,
  241. const char *cmd_str,
  242. struct shell_static_entry *dloc)
  243. {
  244. const struct shell_static_entry *entry;
  245. struct shell_static_entry parent_cpy;
  246. size_t idx = 0;
  247. /* Dynamic command operates on shared memory. If we are processing two
  248. * dynamic commands at the same time (current and subcommand) they
  249. * will operate on the same memory region what can cause undefined
  250. * behaviour.
  251. * Hence we need a separate memory for each of them.
  252. */
  253. if (parent) {
  254. memcpy(&parent_cpy, parent, sizeof(struct shell_static_entry));
  255. parent = &parent_cpy;
  256. }
  257. while ((entry = z_shell_cmd_get(parent, idx++, dloc)) != NULL) {
  258. if (strcmp(cmd_str, entry->syntax) == 0) {
  259. return entry;
  260. }
  261. }
  262. return NULL;
  263. }
  264. const struct shell_static_entry *z_shell_get_last_command(
  265. const struct shell_static_entry *entry,
  266. size_t argc,
  267. const char *argv[],
  268. size_t *match_arg,
  269. struct shell_static_entry *dloc,
  270. bool only_static)
  271. {
  272. const struct shell_static_entry *prev_entry = NULL;
  273. *match_arg = Z_SHELL_CMD_ROOT_LVL;
  274. while (*match_arg < argc) {
  275. if (IS_ENABLED(CONFIG_SHELL_WILDCARD)) {
  276. /* ignore wildcard argument */
  277. if (z_shell_has_wildcard(argv[*match_arg])) {
  278. (*match_arg)++;
  279. continue;
  280. }
  281. }
  282. prev_entry = entry;
  283. entry = z_shell_find_cmd(entry, argv[*match_arg], dloc);
  284. if (entry) {
  285. (*match_arg)++;
  286. } else {
  287. entry = prev_entry;
  288. break;
  289. }
  290. if (only_static && (entry == dloc)) {
  291. (*match_arg)--;
  292. return NULL;
  293. }
  294. }
  295. return entry;
  296. }
  297. int shell_set_root_cmd(const char *cmd)
  298. {
  299. const struct shell_static_entry *entry;
  300. entry = cmd ? root_cmd_find(cmd) : NULL;
  301. if (cmd && (entry == NULL)) {
  302. return -EINVAL;
  303. }
  304. STRUCT_SECTION_FOREACH(shell, sh) {
  305. sh->ctx->selected_cmd = entry;
  306. }
  307. return 0;
  308. }
  309. void z_shell_spaces_trim(char *str)
  310. {
  311. uint16_t len = z_shell_strlen(str);
  312. uint16_t shift = 0U;
  313. if (!str) {
  314. return;
  315. }
  316. for (uint16_t i = 0; i < len - 1; i++) {
  317. if (isspace((int)str[i])) {
  318. for (uint16_t j = i + 1; j < len; j++) {
  319. if (isspace((int)str[j])) {
  320. shift++;
  321. continue;
  322. }
  323. if (shift > 0) {
  324. /* +1 for EOS */
  325. memmove(&str[i + 1],
  326. &str[j],
  327. len - j + 1);
  328. len -= shift;
  329. shift = 0U;
  330. }
  331. break;
  332. }
  333. }
  334. }
  335. }
  336. /** @brief Remove white chars from beginning and end of command buffer.
  337. *
  338. */
  339. static void buffer_trim(char *buff, uint16_t *buff_len)
  340. {
  341. uint16_t i = 0U;
  342. /* no command in the buffer */
  343. if (buff[0] == '\0') {
  344. return;
  345. }
  346. while (isspace((int) buff[*buff_len - 1U])) {
  347. *buff_len -= 1U;
  348. if (*buff_len == 0U) {
  349. buff[0] = '\0';
  350. return;
  351. }
  352. }
  353. buff[*buff_len] = '\0';
  354. /* Counting whitespace characters starting from beginning of the
  355. * command.
  356. */
  357. while (isspace((int) buff[i++])) {
  358. }
  359. /* Removing counted whitespace characters. */
  360. if (--i > 0) {
  361. memmove(buff, buff + i, (*buff_len + 1U) - i); /* +1 for '\0' */
  362. *buff_len = *buff_len - i;
  363. }
  364. }
  365. void z_shell_cmd_trim(const struct shell *shell)
  366. {
  367. buffer_trim(shell->ctx->cmd_buff, &shell->ctx->cmd_buff_len);
  368. shell->ctx->cmd_buff_pos = shell->ctx->cmd_buff_len;
  369. }
  370. const struct device *shell_device_lookup(size_t idx,
  371. const char *prefix)
  372. {
  373. size_t match_idx = 0;
  374. const struct device *dev;
  375. size_t len = z_device_get_all_static(&dev);
  376. const struct device *dev_end = dev + len;
  377. while (dev < dev_end) {
  378. if (device_is_ready(dev)
  379. && (dev->name != NULL)
  380. && (strlen(dev->name) != 0)
  381. && ((prefix == NULL)
  382. || (strncmp(prefix, dev->name,
  383. strlen(prefix)) == 0))) {
  384. if (match_idx == idx) {
  385. return dev;
  386. }
  387. ++match_idx;
  388. }
  389. ++dev;
  390. }
  391. return NULL;
  392. }