forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshell.c
1800 lines (1485 loc) · 42.1 KB
/
shell.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (c) 2018 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <ctype.h>
#include <stdlib.h>
#include <zephyr/sys/atomic.h>
#include <zephyr/shell/shell.h>
#if defined(CONFIG_SHELL_BACKEND_DUMMY)
#include <zephyr/shell/shell_dummy.h>
#endif
#include "shell_ops.h"
#include "shell_help.h"
#include "shell_utils.h"
#include "shell_vt100.h"
#include "shell_wildcard.h"
/* 2 == 1 char for cmd + 1 char for '\0' */
#if (CONFIG_SHELL_CMD_BUFF_SIZE < 2)
#error too small CONFIG_SHELL_CMD_BUFF_SIZE
#endif
#if (CONFIG_SHELL_PRINTF_BUFF_SIZE < 1)
#error too small SHELL_PRINTF_BUFF_SIZE
#endif
#define SHELL_MSG_CMD_NOT_FOUND ": command not found"
#define SHELL_MSG_BACKEND_NOT_ACTIVE \
"WARNING: A print request was detected on not active shell backend.\n"
#define SHELL_MSG_TOO_MANY_ARGS "Too many arguments in the command.\n"
#define SHELL_INIT_OPTION_PRINTER (NULL)
#define SHELL_THREAD_PRIORITY \
COND_CODE_1(CONFIG_SHELL_THREAD_PRIORITY_OVERRIDE, \
(CONFIG_SHELL_THREAD_PRIORITY), (K_LOWEST_APPLICATION_THREAD_PRIO))
BUILD_ASSERT(SHELL_THREAD_PRIORITY >=
K_HIGHEST_APPLICATION_THREAD_PRIO
&& SHELL_THREAD_PRIORITY <= K_LOWEST_APPLICATION_THREAD_PRIO,
"Invalid range for thread priority");
static inline void receive_state_change(const struct shell *sh,
enum shell_receive_state state)
{
sh->ctx->receive_state = state;
}
static void cmd_buffer_clear(const struct shell *sh)
{
sh->ctx->cmd_buff[0] = '\0'; /* clear command buffer */
sh->ctx->cmd_buff_pos = 0;
sh->ctx->cmd_buff_len = 0;
}
static void shell_internal_help_print(const struct shell *sh)
{
if (!IS_ENABLED(CONFIG_SHELL_HELP)) {
return;
}
z_shell_help_cmd_print(sh, &sh->ctx->active_cmd);
z_shell_help_subcmd_print(sh, &sh->ctx->active_cmd,
"Subcommands:\n");
}
/**
* @brief Prints error message on wrong argument count.
* Optionally, printing help on wrong argument count.
*
* @param[in] shell Pointer to the shell instance.
* @param[in] arg_cnt_ok Flag indicating valid number of arguments.
*
* @return 0 if check passed
* @return -EINVAL if wrong argument count
*/
static int cmd_precheck(const struct shell *sh,
bool arg_cnt_ok)
{
if (!arg_cnt_ok) {
z_shell_fprintf(sh, SHELL_ERROR,
"%s: wrong parameter count\n",
sh->ctx->active_cmd.syntax);
if (IS_ENABLED(CONFIG_SHELL_HELP_ON_WRONG_ARGUMENT_COUNT)) {
shell_internal_help_print(sh);
}
return -EINVAL;
}
return 0;
}
static inline void state_set(const struct shell *sh, enum shell_state state)
{
sh->ctx->state = state;
if (state == SHELL_STATE_ACTIVE && !sh->ctx->bypass) {
cmd_buffer_clear(sh);
if (z_flag_print_noinit_get(sh)) {
z_shell_fprintf(sh, SHELL_WARNING, "%s",
SHELL_MSG_BACKEND_NOT_ACTIVE);
z_flag_print_noinit_set(sh, false);
}
z_shell_print_prompt_and_cmd(sh);
}
}
static inline enum shell_state state_get(const struct shell *sh)
{
return sh->ctx->state;
}
static inline const struct shell_static_entry *
selected_cmd_get(const struct shell *sh)
{
if (IS_ENABLED(CONFIG_SHELL_CMDS_SELECT)
|| (CONFIG_SHELL_CMD_ROOT[0] != 0)) {
return sh->ctx->selected_cmd;
}
return NULL;
}
static void tab_item_print(const struct shell *sh, const char *option,
uint16_t longest_option)
{
static const char *tab = " ";
uint16_t columns;
uint16_t diff;
/* Function initialization has been requested. */
if (option == NULL) {
sh->ctx->vt100_ctx.printed_cmd = 0;
return;
}
longest_option += z_shell_strlen(tab);
columns = (sh->ctx->vt100_ctx.cons.terminal_wid
- z_shell_strlen(tab)) / longest_option;
diff = longest_option - z_shell_strlen(option);
if (sh->ctx->vt100_ctx.printed_cmd++ % columns == 0U) {
z_shell_fprintf(sh, SHELL_OPTION, "\n%s%s", tab, option);
} else {
z_shell_fprintf(sh, SHELL_OPTION, "%s", option);
}
z_shell_op_cursor_horiz_move(sh, diff);
}
static void history_init(const struct shell *sh)
{
if (!IS_ENABLED(CONFIG_SHELL_HISTORY)) {
return;
}
z_shell_history_init(sh->history);
}
static void history_purge(const struct shell *sh)
{
if (!IS_ENABLED(CONFIG_SHELL_HISTORY)) {
return;
}
z_shell_history_purge(sh->history);
}
static void history_mode_exit(const struct shell *sh)
{
if (!IS_ENABLED(CONFIG_SHELL_HISTORY)) {
return;
}
z_flag_history_exit_set(sh, false);
z_shell_history_mode_exit(sh->history);
}
static void history_put(const struct shell *sh, uint8_t *line, size_t length)
{
if (!IS_ENABLED(CONFIG_SHELL_HISTORY)) {
return;
}
z_shell_history_put(sh->history, line, length);
}
static void history_handle(const struct shell *sh, bool up)
{
bool history_mode;
uint16_t len;
/*optional feature */
if (!IS_ENABLED(CONFIG_SHELL_HISTORY)) {
return;
}
/* Checking if history process has been stopped */
if (z_flag_history_exit_get(sh)) {
z_flag_history_exit_set(sh, false);
z_shell_history_mode_exit(sh->history);
}
/* Backup command if history is entered */
if (!z_shell_history_active(sh->history)) {
if (up) {
uint16_t cmd_len = z_shell_strlen(sh->ctx->cmd_buff);
if (cmd_len) {
strcpy(sh->ctx->temp_buff,
sh->ctx->cmd_buff);
} else {
sh->ctx->temp_buff[0] = '\0';
}
} else {
/* Pressing 'down' not in history mode has no effect. */
return;
}
}
/* Start by checking if history is not empty. */
history_mode = z_shell_history_get(sh->history, up,
sh->ctx->cmd_buff, &len);
/* On exiting history mode print backed up command. */
if (!history_mode) {
strcpy(sh->ctx->cmd_buff, sh->ctx->temp_buff);
len = z_shell_strlen(sh->ctx->cmd_buff);
}
z_shell_op_cursor_home_move(sh);
z_clear_eos(sh);
z_shell_print_cmd(sh);
sh->ctx->cmd_buff_pos = len;
sh->ctx->cmd_buff_len = len;
z_shell_op_cond_next_line(sh);
}
static inline uint16_t completion_space_get(const struct shell *sh)
{
uint16_t space = (CONFIG_SHELL_CMD_BUFF_SIZE - 1) -
sh->ctx->cmd_buff_len;
return space;
}
/* Prepare arguments and return number of space available for completion. */
static bool tab_prepare(const struct shell *sh,
const struct shell_static_entry **cmd,
const char ***argv, size_t *argc,
size_t *complete_arg_idx,
struct shell_static_entry *d_entry)
{
uint16_t compl_space = completion_space_get(sh);
size_t search_argc;
if (compl_space == 0U) {
return false;
}
/* Copy command from its beginning to cursor position. */
memcpy(sh->ctx->temp_buff, sh->ctx->cmd_buff,
sh->ctx->cmd_buff_pos);
sh->ctx->temp_buff[sh->ctx->cmd_buff_pos] = '\0';
/* Create argument list. */
(void)z_shell_make_argv(argc, *argv, sh->ctx->temp_buff,
CONFIG_SHELL_ARGC_MAX);
if (*argc > CONFIG_SHELL_ARGC_MAX) {
return false;
}
/* terminate arguments with NULL */
(*argv)[*argc] = NULL;
if ((IS_ENABLED(CONFIG_SHELL_CMDS_SELECT) || (CONFIG_SHELL_CMD_ROOT[0] != 0))
&& (*argc > 0) &&
(strcmp("select", (*argv)[0]) == 0) &&
!z_shell_in_select_mode(sh)) {
*argv = *argv + 1;
*argc = *argc - 1;
}
/* If last command is not completed (followed by space) it is treated
* as uncompleted one.
*/
int space = isspace((int)sh->ctx->cmd_buff[
sh->ctx->cmd_buff_pos - 1]);
/* root command completion */
if ((*argc == 0) || ((space == 0) && (*argc == 1))) {
*complete_arg_idx = Z_SHELL_CMD_ROOT_LVL;
*cmd = selected_cmd_get(sh);
return true;
}
search_argc = space ? *argc : *argc - 1;
*cmd = z_shell_get_last_command(selected_cmd_get(sh), search_argc,
*argv, complete_arg_idx, d_entry,
false);
/* if search_argc == 0 (empty command line) shell_get_last_command will
* return NULL tab is allowed, otherwise not.
*/
if ((*cmd == NULL) && (search_argc != 0)) {
return false;
}
return true;
}
static inline bool is_completion_candidate(const char *candidate,
const char *str, size_t len)
{
return (strncmp(candidate, str, len) == 0) ? true : false;
}
static void find_completion_candidates(const struct shell *sh,
const struct shell_static_entry *cmd,
const char *incompl_cmd,
size_t *first_idx, size_t *cnt,
uint16_t *longest)
{
const struct shell_static_entry *candidate;
struct shell_static_entry dloc;
size_t incompl_cmd_len;
size_t idx = 0;
incompl_cmd_len = z_shell_strlen(incompl_cmd);
*longest = 0U;
*cnt = 0;
while ((candidate = z_shell_cmd_get(cmd, idx, &dloc)) != NULL) {
bool is_candidate;
is_candidate = is_completion_candidate(candidate->syntax,
incompl_cmd, incompl_cmd_len);
if (is_candidate) {
*longest = Z_MAX(strlen(candidate->syntax), *longest);
if (*cnt == 0) {
*first_idx = idx;
}
(*cnt)++;
}
idx++;
}
}
static void autocomplete(const struct shell *sh,
const struct shell_static_entry *cmd,
const char *arg,
size_t subcmd_idx)
{
const struct shell_static_entry *match;
uint16_t cmd_len;
uint16_t arg_len = z_shell_strlen(arg);
/* sh->ctx->active_cmd can be safely used outside of command context
* to save stack
*/
match = z_shell_cmd_get(cmd, subcmd_idx, &sh->ctx->active_cmd);
__ASSERT_NO_MSG(match != NULL);
cmd_len = z_shell_strlen(match->syntax);
if (!IS_ENABLED(CONFIG_SHELL_TAB_AUTOCOMPLETION)) {
/* Add a space if the Tab button is pressed when command is
* complete.
*/
if (cmd_len == arg_len) {
z_shell_op_char_insert(sh, ' ');
}
return;
}
/* no exact match found */
if (cmd_len != arg_len) {
z_shell_op_completion_insert(sh,
match->syntax + arg_len,
cmd_len - arg_len);
}
/* Next character in the buffer is not 'space'. */
if (isspace((int) sh->ctx->cmd_buff[
sh->ctx->cmd_buff_pos]) == 0) {
if (z_flag_insert_mode_get(sh)) {
z_flag_insert_mode_set(sh, false);
z_shell_op_char_insert(sh, ' ');
z_flag_insert_mode_set(sh, true);
} else {
z_shell_op_char_insert(sh, ' ');
}
} else {
/* case:
* | | -> cursor
* cons_name $: valid_cmd valid_sub_cmd| |argument <tab>
*/
z_shell_op_cursor_move(sh, 1);
/* result:
* cons_name $: valid_cmd valid_sub_cmd |a|rgument
*/
}
}
static size_t str_common(const char *s1, const char *s2, size_t n)
{
size_t common = 0;
while ((n > 0) && (*s1 == *s2) && (*s1 != '\0')) {
s1++;
s2++;
n--;
common++;
}
return common;
}
static void tab_options_print(const struct shell *sh,
const struct shell_static_entry *cmd,
const char *str, size_t first, size_t cnt,
uint16_t longest)
{
const struct shell_static_entry *match;
size_t str_len = z_shell_strlen(str);
size_t idx = first;
/* Printing all matching commands (options). */
tab_item_print(sh, SHELL_INIT_OPTION_PRINTER, longest);
while (cnt) {
/* sh->ctx->active_cmd can be safely used outside of command
* context to save stack
*/
match = z_shell_cmd_get(cmd, idx, &sh->ctx->active_cmd);
__ASSERT_NO_MSG(match != NULL);
idx++;
if (str && match->syntax &&
!is_completion_candidate(match->syntax, str, str_len)) {
continue;
}
tab_item_print(sh, match->syntax, longest);
cnt--;
}
z_cursor_next_line_move(sh);
z_shell_print_prompt_and_cmd(sh);
}
static uint16_t common_beginning_find(const struct shell *sh,
const struct shell_static_entry *cmd,
const char **str,
size_t first, size_t cnt, uint16_t arg_len)
{
struct shell_static_entry dynamic_entry;
const struct shell_static_entry *match;
uint16_t common = UINT16_MAX;
size_t idx = first + 1;
__ASSERT_NO_MSG(cnt > 1);
match = z_shell_cmd_get(cmd, first, &dynamic_entry);
__ASSERT_NO_MSG(match);
strncpy(sh->ctx->temp_buff, match->syntax,
sizeof(sh->ctx->temp_buff) - 1);
*str = match->syntax;
while (cnt > 1) {
struct shell_static_entry dynamic_entry2;
const struct shell_static_entry *match2;
int curr_common;
match2 = z_shell_cmd_get(cmd, idx++, &dynamic_entry2);
if (match2 == NULL) {
break;
}
curr_common = str_common(sh->ctx->temp_buff, match2->syntax,
UINT16_MAX);
if ((arg_len == 0U) || (curr_common >= arg_len)) {
--cnt;
common = (curr_common < common) ? curr_common : common;
}
}
return common;
}
static void partial_autocomplete(const struct shell *sh,
const struct shell_static_entry *cmd,
const char *arg,
size_t first, size_t cnt)
{
const char *completion;
uint16_t arg_len = z_shell_strlen(arg);
uint16_t common = common_beginning_find(sh, cmd, &completion, first,
cnt, arg_len);
if (!IS_ENABLED(CONFIG_SHELL_TAB_AUTOCOMPLETION)) {
return;
}
if (common) {
z_shell_op_completion_insert(sh, &completion[arg_len],
common - arg_len);
}
}
static int exec_cmd(const struct shell *sh, size_t argc, const char **argv,
const struct shell_static_entry *help_entry)
{
int ret_val = 0;
if (sh->ctx->active_cmd.handler == NULL) {
if ((help_entry != NULL) && IS_ENABLED(CONFIG_SHELL_HELP)) {
if (help_entry->help == NULL) {
return -ENOEXEC;
}
if (help_entry->help != sh->ctx->active_cmd.help) {
sh->ctx->active_cmd = *help_entry;
}
shell_internal_help_print(sh);
return SHELL_CMD_HELP_PRINTED;
} else {
if (IS_ENABLED(CONFIG_SHELL_MSG_SPECIFY_SUBCOMMAND)) {
z_shell_fprintf(sh, SHELL_ERROR,
SHELL_MSG_SPECIFY_SUBCOMMAND);
}
return -ENOEXEC;
}
}
if (sh->ctx->active_cmd.args.mandatory) {
uint32_t mand = sh->ctx->active_cmd.args.mandatory;
uint8_t opt8 = sh->ctx->active_cmd.args.optional;
uint32_t opt = (opt8 == SHELL_OPT_ARG_CHECK_SKIP) ?
UINT16_MAX : opt8;
const bool in_range = IN_RANGE(argc, mand, mand + opt);
/* Check if argc is within allowed range */
ret_val = cmd_precheck(sh, in_range);
}
if (!ret_val) {
#if CONFIG_SHELL_GETOPT
getopt_init();
#endif
z_flag_cmd_ctx_set(sh, true);
/* Unlock thread mutex in case command would like to borrow
* shell context to other thread to avoid mutex deadlock.
*/
k_mutex_unlock(&sh->ctx->wr_mtx);
ret_val = sh->ctx->active_cmd.handler(sh, argc,
(char **)argv);
/* Bring back mutex to shell thread. */
k_mutex_lock(&sh->ctx->wr_mtx, K_FOREVER);
z_flag_cmd_ctx_set(sh, false);
}
return ret_val;
}
static void active_cmd_prepare(const struct shell_static_entry *entry,
struct shell_static_entry *active_cmd,
struct shell_static_entry *help_entry,
size_t *lvl, size_t *handler_lvl,
size_t *args_left)
{
if (entry->handler) {
*handler_lvl = *lvl;
*active_cmd = *entry;
/* If command is final handler and it has a raw optional argument,
* then set remaining arguments to mandatory - 1 so after processing mandatory
* args, handler is passed remaining raw string
*/
if ((entry->subcmd == NULL)
&& entry->args.optional == SHELL_OPT_ARG_RAW) {
*args_left = entry->args.mandatory - 1;
}
}
if (entry->help) {
*help_entry = *entry;
}
}
static bool wildcard_check_report(const struct shell *sh, bool found,
const struct shell_static_entry *entry)
{
/* An error occurred, fnmatch argument cannot be followed by argument
* with a handler to avoid multiple function calls.
*/
if (IS_ENABLED(CONFIG_SHELL_WILDCARD) && found && entry->handler) {
z_shell_op_cursor_end_move(sh);
z_shell_op_cond_next_line(sh);
z_shell_fprintf(sh, SHELL_ERROR,
"Error: requested multiple function executions\n");
return false;
}
return true;
}
/* Function is analyzing the command buffer to find matching commands. Next, it
* invokes the last recognized command which has a handler and passes the rest
* of command buffer as arguments.
*
* By default command buffer is parsed and spaces are treated by arguments
* separators. Complex arguments are provided in quotation marks with quotation
* marks escaped within the argument. Argument parser is removing quotation
* marks at argument boundary as well as escape characters within the argument.
* However, it is possible to indicate that command shall treat remaining part
* of command buffer as the last argument without parsing. This can be used for
* commands which expects whole command buffer to be passed directly to
* the command handler without any preprocessing.
* Because of that feature, command buffer is processed argument by argument and
* decision on further processing is based on currently processed command.
*/
static int execute(const struct shell *sh)
{
struct shell_static_entry dloc; /* Memory for dynamic commands. */
const char *argv[CONFIG_SHELL_ARGC_MAX + 1] = {0}; /* +1 reserved for NULL */
const struct shell_static_entry *parent = selected_cmd_get(sh);
const struct shell_static_entry *entry = NULL;
struct shell_static_entry help_entry;
size_t cmd_lvl = 0;
size_t cmd_with_handler_lvl = 0;
bool wildcard_found = false;
size_t argc = 0, args_left = SIZE_MAX;
char quote;
const char **argvp;
char *cmd_buf = sh->ctx->cmd_buff;
bool has_last_handler = false;
z_shell_op_cursor_end_move(sh);
if (!z_shell_cursor_in_empty_line(sh)) {
z_cursor_next_line_move(sh);
}
memset(&sh->ctx->active_cmd, 0, sizeof(sh->ctx->active_cmd));
if (IS_ENABLED(CONFIG_SHELL_HISTORY)) {
z_shell_cmd_trim(sh);
history_put(sh, sh->ctx->cmd_buff,
sh->ctx->cmd_buff_len);
}
if (IS_ENABLED(CONFIG_SHELL_WILDCARD)) {
z_shell_wildcard_prepare(sh);
}
/* Parent present means we are in select mode. */
if (parent != NULL) {
argv[0] = parent->syntax;
argv[1] = cmd_buf;
argvp = &argv[1];
active_cmd_prepare(parent, &sh->ctx->active_cmd, &help_entry,
&cmd_lvl, &cmd_with_handler_lvl, &args_left);
cmd_lvl++;
} else {
help_entry.help = NULL;
argvp = &argv[0];
}
/* Below loop is analyzing subcommands of found root command. */
while ((argc != 1) && (cmd_lvl < CONFIG_SHELL_ARGC_MAX)
&& args_left > 0) {
quote = z_shell_make_argv(&argc, argvp, cmd_buf, 2);
cmd_buf = (char *)argvp[1];
if (argc == 0) {
return -ENOEXEC;
} else if ((argc == 1) && (quote != 0)) {
z_shell_fprintf(sh, SHELL_ERROR,
"not terminated: %c\n", quote);
return -ENOEXEC;
}
if (IS_ENABLED(CONFIG_SHELL_HELP) && (cmd_lvl > 0) &&
z_shell_help_request(argvp[0])) {
/* Command called with help option so it makes no sense
* to search deeper commands.
*/
if (help_entry.help) {
sh->ctx->active_cmd = help_entry;
shell_internal_help_print(sh);
return SHELL_CMD_HELP_PRINTED;
}
if (IS_ENABLED(CONFIG_SHELL_MSG_SPECIFY_SUBCOMMAND)) {
z_shell_fprintf(sh, SHELL_ERROR,
SHELL_MSG_SPECIFY_SUBCOMMAND);
}
return -ENOEXEC;
}
if (IS_ENABLED(CONFIG_SHELL_WILDCARD) && (cmd_lvl > 0)) {
enum shell_wildcard_status status;
status = z_shell_wildcard_process(sh, entry,
argvp[0]);
/* Wildcard character found but there is no matching
* command.
*/
if (status == SHELL_WILDCARD_CMD_NO_MATCH_FOUND) {
break;
}
/* Wildcard character was not found function can process
* argument.
*/
if (status != SHELL_WILDCARD_NOT_FOUND) {
++cmd_lvl;
wildcard_found = true;
continue;
}
}
if (has_last_handler == false) {
entry = z_shell_find_cmd(parent, argvp[0], &dloc);
}
argvp++;
args_left--;
if (entry) {
if (wildcard_check_report(sh, wildcard_found, entry)
== false) {
return -ENOEXEC;
}
active_cmd_prepare(entry, &sh->ctx->active_cmd,
&help_entry, &cmd_lvl,
&cmd_with_handler_lvl, &args_left);
parent = entry;
} else {
if (IS_ENABLED(CONFIG_SHELL_MSG_CMD_NOT_FOUND) &&
cmd_lvl == 0 &&
(!z_shell_in_select_mode(sh) ||
sh->ctx->selected_cmd->handler == NULL)) {
z_shell_fprintf(sh, SHELL_ERROR,
"%s%s\n", argv[0],
SHELL_MSG_CMD_NOT_FOUND);
}
/* last handler found - no need to search commands in
* the next iteration.
*/
has_last_handler = true;
}
if (args_left || (argc == 2)) {
cmd_lvl++;
}
}
if ((cmd_lvl >= CONFIG_SHELL_ARGC_MAX) && (argc == 2)) {
/* argc == 2 indicates that when command string was parsed
* there was more characters remaining. It means that number of
* arguments exceeds the limit.
*/
z_shell_fprintf(sh, SHELL_ERROR, "%s\n",
SHELL_MSG_TOO_MANY_ARGS);
return -ENOEXEC;
}
if (IS_ENABLED(CONFIG_SHELL_WILDCARD) && wildcard_found) {
z_shell_wildcard_finalize(sh);
/* cmd_buffer has been overwritten by function finalize function
* with all expanded commands. Hence shell_make_argv needs to
* be called again.
*/
(void)z_shell_make_argv(&cmd_lvl,
&argv[selected_cmd_get(sh) ? 1 : 0],
sh->ctx->cmd_buff,
CONFIG_SHELL_ARGC_MAX);
if (selected_cmd_get(sh)) {
/* Apart from what is in the command buffer, there is
* a selected command.
*/
cmd_lvl++;
}
}
/* If a command was found */
if (parent != NULL) {
/* If the found command uses a raw optional argument and
* we have a remaining unprocessed non-null string,
* then increment command level so handler receives raw string
*/
if (parent->args.optional == SHELL_OPT_ARG_RAW && argv[cmd_lvl] != NULL) {
cmd_lvl++;
}
}
/* Executing the deepest found handler. */
return exec_cmd(sh, cmd_lvl - cmd_with_handler_lvl,
&argv[cmd_with_handler_lvl], &help_entry);
}
static void tab_handle(const struct shell *sh)
{
const char *__argv[CONFIG_SHELL_ARGC_MAX + 1];
/* d_entry - placeholder for dynamic command */
struct shell_static_entry d_entry;
const struct shell_static_entry *cmd;
const char **argv = __argv;
size_t first = 0;
size_t arg_idx;
uint16_t longest;
size_t argc;
size_t cnt;
bool tab_possible = tab_prepare(sh, &cmd, &argv, &argc, &arg_idx,
&d_entry);
if (tab_possible == false) {
return;
}
find_completion_candidates(sh, cmd, argv[arg_idx], &first, &cnt,
&longest);
if (cnt == 1) {
/* Autocompletion.*/
autocomplete(sh, cmd, argv[arg_idx], first);
} else if (cnt > 1) {
tab_options_print(sh, cmd, argv[arg_idx], first, cnt,
longest);
partial_autocomplete(sh, cmd, argv[arg_idx], first, cnt);
}
}
static void alt_metakeys_handle(const struct shell *sh, char data)
{
/* Optional feature */
if (!IS_ENABLED(CONFIG_SHELL_METAKEYS)) {
return;
}
if (data == SHELL_VT100_ASCII_ALT_B) {
z_shell_op_cursor_word_move(sh, -1);
} else if (data == SHELL_VT100_ASCII_ALT_F) {
z_shell_op_cursor_word_move(sh, 1);
} else if (data == SHELL_VT100_ASCII_ALT_R &&
IS_ENABLED(CONFIG_SHELL_CMDS_SELECT)) {
if (selected_cmd_get(sh) != NULL) {
z_shell_cmd_line_erase(sh);
z_shell_fprintf(sh, SHELL_WARNING,
"Restored default root commands\n");
if (CONFIG_SHELL_CMD_ROOT[0]) {
sh->ctx->selected_cmd = root_cmd_find(CONFIG_SHELL_CMD_ROOT);
} else {
sh->ctx->selected_cmd = NULL;
}
z_shell_print_prompt_and_cmd(sh);
}
}
}
static void ctrl_metakeys_handle(const struct shell *sh, char data)
{
/* Optional feature */
if (!IS_ENABLED(CONFIG_SHELL_METAKEYS)) {
return;
}
switch (data) {
case SHELL_VT100_ASCII_CTRL_A: /* CTRL + A */
z_shell_op_cursor_home_move(sh);
break;
case SHELL_VT100_ASCII_CTRL_B: /* CTRL + B */
z_shell_op_left_arrow(sh);
break;
case SHELL_VT100_ASCII_CTRL_C: /* CTRL + C */
z_shell_op_cursor_end_move(sh);
if (!z_shell_cursor_in_empty_line(sh)) {
z_cursor_next_line_move(sh);
}
z_flag_history_exit_set(sh, true);
state_set(sh, SHELL_STATE_ACTIVE);
break;
case SHELL_VT100_ASCII_CTRL_D: /* CTRL + D */
z_shell_op_char_delete(sh);
break;
case SHELL_VT100_ASCII_CTRL_E: /* CTRL + E */
z_shell_op_cursor_end_move(sh);
break;
case SHELL_VT100_ASCII_CTRL_F: /* CTRL + F */
z_shell_op_right_arrow(sh);
break;
case SHELL_VT100_ASCII_CTRL_K: /* CTRL + K */
z_shell_op_delete_from_cursor(sh);
break;
case SHELL_VT100_ASCII_CTRL_L: /* CTRL + L */
Z_SHELL_VT100_CMD(sh, SHELL_VT100_CURSORHOME);
Z_SHELL_VT100_CMD(sh, SHELL_VT100_CLEARSCREEN);
z_shell_print_prompt_and_cmd(sh);
break;
case SHELL_VT100_ASCII_CTRL_N: /* CTRL + N */
history_handle(sh, false);
break;
case SHELL_VT100_ASCII_CTRL_P: /* CTRL + P */
history_handle(sh, true);
break;
case SHELL_VT100_ASCII_CTRL_U: /* CTRL + U */
z_shell_op_cursor_home_move(sh);
cmd_buffer_clear(sh);
z_flag_history_exit_set(sh, true);
z_clear_eos(sh);
break;
case SHELL_VT100_ASCII_CTRL_W: /* CTRL + W */
z_shell_op_word_remove(sh);
z_flag_history_exit_set(sh, true);
break;
default:
break;
}
}
/* Functions returns true if new line character shall be processed */
static bool process_nl(const struct shell *sh, uint8_t data)
{
if ((data != '\r') && (data != '\n')) {
z_flag_last_nl_set(sh, 0);
return false;
}
if ((z_flag_last_nl_get(sh) == 0U) ||
(data == z_flag_last_nl_get(sh))) {
z_flag_last_nl_set(sh, data);
return true;
}
return false;
}
#define SHELL_ASCII_MAX_CHAR (127u)
static inline int ascii_filter(const char data)
{
if (IS_ENABLED(CONFIG_SHELL_ASCII_FILTER)) {
return (uint8_t) data > SHELL_ASCII_MAX_CHAR ? -EINVAL : 0;
} else {
return 0;
}
}
static void state_collect(const struct shell *sh)
{
size_t count = 0;
char data;
while (true) {
shell_bypass_cb_t bypass = sh->ctx->bypass;
if (bypass) {
uint8_t buf[16];
(void)sh->iface->api->read(sh->iface, buf,
sizeof(buf), &count);
if (count) {
z_flag_cmd_ctx_set(sh, true);
bypass(sh, buf, count);
z_flag_cmd_ctx_set(sh, false);
/* Check if bypass mode ended. */
if (!(volatile shell_bypass_cb_t *)sh->ctx->bypass) {
state_set(sh, SHELL_STATE_ACTIVE);
} else {
continue;
}
}
return;
}
(void)sh->iface->api->read(sh->iface, &data,
sizeof(data), &count);
if (count == 0) {
return;
}