-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshell.c
573 lines (439 loc) · 14.2 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
/*
* shell.c
*
* Created on: 29 mar 2016
* Author: MateuszPiesta
*/
#include <cmds/common_cmds.h>
#include <cmds/fs_cmds.h>
#include "shell.h"
#include "shell_conf.h"
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include "history_list.h"
#include "FreeRTOS_CLI.h"
#include "common.h"
#include "shell_portable.h"
#define SHOW_PASSWORD 0
/* Prompt code */
const char* shell_prompt = ">";
const char* shell_auth_prompt = "Please type password:";
const char* shell_auth_failed_prompt = "Wrong password!:";
typedef enum {
LINE_BUFF_OK = 0,
LINE_BUFF_FULL = 1,
LINE_BUFF_EMPTY = 2,
LINE_BUFF_REACH_MIN = 3,
LINE_BUFF_REACH_MAX = 4,
LINE_BUFF_UNSPECIFIED_CMD = 5
} lbuff_e;
typedef enum {
LINE_BUFF_ADD_CHAR = 0,
LINE_BUFF_BS = 1,
LINE_BUFF_CLEAR_WHOLE = 2,
LINE_BUFF_POS_LEFT = 3,
LINE_BUFF_POS_RIGHT = 4,
LINE_BUFF_ADD_STR = 5
} lbuff_action;
/* Forward declarations */
static void shell_write_clearline(shell_t* shell);
static void shell_write_escape_sequence(shell_t* shell, const char* byte);
static const char* shell_ReturnLineBuff(shell_t* shell);
static void shell_write_prompt(shell_t* shell);
uint8_t shell_RegisterCmd( const shell_cmd_t * const pxCommandToRegister );
#ifdef PLATFORM_EXT_IMPLEMENTATION
char platform_shell_BS = '\b';
char* platform_shell_NEWLINE = "\n";
char* platform_shell_ARROW_LEFT = "D";
char* platform_shell_ARROW_RIGHT = "C";
char* platform_shell_ARROW_UP = "A";
char* platform_shell_ARROW_DOWN = "B";
char* platform_shell_start_of_escape_seq = "\e";
char* platform_shell_CLEAR_LINE ="2K";
#endif
static hlist_t history = {0};
static char response_output_buff[SHELL_MAX_OUTPUT_BUFFER_SIZE] = {0};
static char read_buffer[SHELL_READ_BUFFER_LEN];
static char* linebuff_temp = NULL;
extern char shell_password[SHELL_MAX_PASSWORD_LEN];
extern auth_action auth_state;
sherr_t shell_Init(shell_t* shell, size_t linebuf_len) {
SHELL_ASSERT(shell != NULL);
memset(shell, 0, sizeof(*shell));
if ((shell->line_buff = malloc(linebuf_len)) == NULL) {
return SHELL_ERR_MEM;
}
shell->line_buff_size = linebuf_len;
memset(shell->line_buff, 0, linebuf_len);
history_list_Init(&history,SHELL_CMD_HISTORY_DEPTH);
shell->line_prompt = (char*) shell_prompt;
shell->bs_code = (char*) &portable_shell_BS;
shell->newline_code = (char*) portable_shell_NEWLINE;
shell->arrowd_code = (char*) portable_shell_ARROW_DOWN;
shell->arrowl_code = (char*) portable_shell_ARROW_LEFT;
shell->arrowr_code = (char*) portable_shell_ARROW_RIGHT;
shell->arrowu_code = (char*) portable_shell_ARROW_UP;
auth_state = AUTH_IN_PROGRESS;
/*TODO: Only for tests */
encryptDecrypt("pass",shell_password);
/* Register common basic commands */
uint8_t cnt = 0;
for(cnt=0;cnt<common_cmds_tabsize;cnt++){
shell_RegisterCmd(&common_cmds_tab[cnt]);
}
#if (SHELL_USE_FS == 1)
for(cnt=0;cnt<fs_cmds_tab_size;cnt++){
shell_RegisterCmd(&fs_cmds_tab[cnt]);
}
#endif
portable_init();
shell_RegisterIOFunctions(shell,portable_write,portable_read);
linebuff_temp = calloc(shell->line_buff_size,sizeof(char));
if(linebuff_temp == NULL){
return SHELL_ERR_MEM;
}else{
return SHELL_OK;
}
}
uint8_t shell_RegisterCmd( const shell_cmd_t * const pxCommandToRegister )
{
return (uint8_t)FreeRTOS_CLIRegisterCommand(pxCommandToRegister);
}
void shell_RegisterIOFunctions(shell_t* shell,
shell_write_t write,
shell_read_t read) {
SHELL_ASSERT(shell != NULL);
SHELL_ASSERT(write != NULL);
SHELL_ASSERT(read != NULL);
shell->write = write;
shell->read = read;
}
void shell_PassParam(shell_t* shell,void* param, size_t param_len)
{
//TODO: this function has to be thread safe also whole shell module will have to be adapted
// to multi-thread environment
// some kind of mutex
memcpy(shell->param,param,param_len);
}
// inserts into subject[] at position pos
static void append(uint32_t buf_size,char subject[], const char insert[],uint32_t insert_len, uint32_t pos) {
memset(linebuff_temp,0,buf_size);
strncpy(linebuff_temp, subject, pos); // copy at most first pos characters
size_t len = strlen(linebuff_temp);
strncpy(linebuff_temp+len, insert,insert_len); // copy all of insert[] at the end
len += insert_len; // increase the length by length of insert[]
strcpy(linebuff_temp+len, subject+pos); // copy the rest
strcpy(subject, linebuff_temp); // copy it back to subject
}
static const char* shell_ReturnLineBuff(shell_t* shell)
{
return shell->line_buff;
}
static lbuff_e shell_MngtLineBuff(shell_t* shell,const char* str, uint32_t str_len,
lbuff_action action) {
lbuff_e ret = LINE_BUFF_UNSPECIFIED_CMD;
switch (action) {
case LINE_BUFF_ADD_CHAR:
if (shell->line_buff_pos >= shell->line_buff_size) {
shell->line_buff_pos = 0;
memset(shell->line_buff, 0, shell->line_buff_size); // clear character buffer
shell->line_buff[0] = '\0';
ret = LINE_BUFF_FULL;
}
/* User moved cursor and now it points somewhere between beg and end of linebuff */
else if (shell->line_buff_pos < strlen(shell->line_buff)){
if (strlen(shell->line_buff) >= shell->line_buff_size) {
ret = LINE_BUFF_FULL;
}else{
ret = LINE_BUFF_OK;
append(shell->line_buff_size,shell->line_buff,str,str_len,shell->line_buff_pos);
shell_write_clearline(shell);
shell->write("\r",1,shell->param);
shell_write_prompt(shell);
shell->write(shell->line_buff,strlen(shell->line_buff),shell->param);
uint32_t temp2 = strlen(shell->line_buff) - shell->line_buff_pos;
while(temp2--){
shell_write_escape_sequence(shell, shell->arrowl_code);
}
shell->line_buff_pos++;
}
}
else {
shell->line_buff[shell->line_buff_pos] = *str;
shell->line_buff_pos++;
shell->line_buff[shell->line_buff_pos] = '\0';
if (shell->line_buff_pos == strlen(shell->line_buff)) {
shell->line_buff[shell->line_buff_pos] = '\0';
}
ret = LINE_BUFF_OK;
}
break;
case LINE_BUFF_BS:
if (shell->line_buff_pos > 0) {
uint32_t curr_pos_temp = shell->line_buff_pos;
uint32_t temp = shell->line_buff_pos - 1;
uint32_t line_buff_len = strlen(shell->line_buff);
/* Move characters on the right in line buffer */
while(temp != line_buff_len){
shell->line_buff[temp] = shell->line_buff[temp+1];
temp++;
}
shell_write_clearline(shell);
shell->write("\r",1,shell->param);
shell_write_prompt(shell);
shell->write(shell->line_buff,strlen(shell->line_buff),shell->param);
uint32_t temp2 = line_buff_len - curr_pos_temp;
while(temp2--){
shell_write_escape_sequence(shell, shell->arrowl_code);
}
shell->line_buff_pos--;
ret = LINE_BUFF_OK;
} else {
ret = LINE_BUFF_EMPTY;
}
break;
case LINE_BUFF_CLEAR_WHOLE:
memset(shell->line_buff, 0, shell->line_buff_size); // clear character buffer
shell->line_buff[0] = '\0';
shell->line_buff_pos = 0;
ret = LINE_BUFF_OK;
break;
case LINE_BUFF_POS_LEFT:
if (shell->line_buff_pos == 0) {
return LINE_BUFF_REACH_MIN;
} else {
shell->line_buff_pos--;
shell_write_escape_sequence(shell, shell->arrowl_code);
ret = LINE_BUFF_OK;
}
break;
case LINE_BUFF_POS_RIGHT:
if (shell->line_buff_pos == strlen(shell->line_buff)) {
ret = LINE_BUFF_REACH_MAX;
} else {
shell->line_buff_pos++;
shell_write_escape_sequence(shell, shell->arrowr_code);
ret = LINE_BUFF_OK;
}
break;
case LINE_BUFF_ADD_STR:
if(str_len <= shell->line_buff_size){
/* Clear current terminal cmd. */
shell_write_clearline(shell);
shell->write("\r",1,shell->param);
shell_write_prompt(shell);
shell->line_buff_pos = 0;
memset(shell->line_buff, 0, shell->line_buff_size); // clear character buffer
shell->line_buff[0] = '\0';
memcpy(shell->line_buff,str,str_len);
shell->line_buff_pos +=str_len;
shell->write(str,str_len,shell->param);
}
break;
default:
ret = LINE_BUFF_UNSPECIFIED_CMD;
break;
}
return ret;
}
static void shell_write_newline(shell_t* shell) {
shell->write(shell->newline_code, strlen(shell->newline_code),shell->param);
//shell->write(shell->line_prefix, strlen(shell->line_prefix));
}
static void shell_write_prompt(shell_t* shell) {
shell->write(shell->line_prompt, strlen(shell->line_prompt),shell->param);
}
static void shell_write_escape_sequence(shell_t* shell,const char* byte) {
char buff[4] = { *portable_shell_start_of_escape_seq, '[', 0,'\0' };
buff[2] = *byte;
shell->write(buff, sizeof(buff),shell->param);
}
static void shell_write_clearline(shell_t* shell) {
char buff[5] = { *portable_shell_start_of_escape_seq, '[', *portable_shell_CLEAR_LINE,*(portable_shell_CLEAR_LINE+1),'\0' };
shell->write(buff, sizeof(buff),shell->param);
}
static void shell_NL_Action(shell_t* shell)
{
shell_write_newline(shell);
/* If line buffer is empty it means that user typed only enter without providing command */
if(strcmp(shell_ReturnLineBuff(shell),"\0") != 0){
/* Add typed cmd into history list only if it is new element
* (we don't want to have several the same commands stored in history list) */
history_list_AddBeg(&history,shell_ReturnLineBuff(shell));
BaseType_t ret;
do
{
ret = FreeRTOS_CLIProcessCommand(shell_ReturnLineBuff(shell),response_output_buff,SHELL_MAX_OUTPUT_BUFFER_SIZE);
/* Output cmd response if any */
if(response_output_buff[0] != '\0'){
shell->write(response_output_buff, strlen(response_output_buff),shell->param);
shell_write_newline(shell);
}
}while(ret != pdFALSE );
}
shell_write_prompt(shell);
shell_MngtLineBuff(shell, NULL,0, LINE_BUFF_CLEAR_WHOLE);
}
/* When authorization is in progress do not echo typed keys.
* */
static void shell_auth_inprogress(shell_t* shell,char byte)
{
static char password_buff[SHELL_MAX_PASSWORD_LEN] ={0};
static uint16_t buff_pos = 0;
char encrypted_pass[SHELL_MAX_PASSWORD_LEN] ={0};
/* During login user pressed enter */
if(byte == *shell->newline_code){
/* Check if password stored in internal buffer match one saved in NVM/RAM memory */
encryptDecrypt(password_buff,encrypted_pass);
uint32_t pass_typed_len = strlen(password_buff);
uint32_t pass_stored_len = strlen(shell_password);
/* password is already encrypted */
if( (pass_typed_len == pass_stored_len) &&(memcmp(encrypted_pass,shell_password,pass_typed_len) == 0) ){
/* User passed correct password */
shell_write_newline(shell);
shell_write_prompt(shell);
auth_state = AUTH_PASSED;
/* Clear temporary buffers*/
buff_pos = 0;
memset(password_buff,0,sizeof(password_buff));
memset(encrypted_pass,0,sizeof(encrypted_pass));
}
else{
/* Send prompt if passwords didn't match */
shell_write_newline(shell);
shell->write(shell_auth_prompt,strlen(shell_auth_prompt),shell->param);
/* Clear temporary buffers*/
buff_pos = 0;
memset(password_buff,0,sizeof(password_buff));
memset(encrypted_pass,0,sizeof(encrypted_pass));
}
}else{
if ((byte >= 0x20) && (byte <= 0x7E))
{
if(buff_pos < SHELL_MAX_PASSWORD_LEN){
#if SHOW_PASSWORD == 1
shell->write(&byte,1,shell->param);
#endif
password_buff[buff_pos++] = byte;
}else{
/* Send prompt if passwords didn't match */
shell_write_newline(shell);
shell->write(shell_auth_prompt,strlen(shell_auth_prompt),shell->param);
/* Clear temporary buffers*/
buff_pos = 0;
memset(password_buff,0,sizeof(password_buff));
memset(encrypted_pass,0,sizeof(encrypted_pass));
}
}
}
}
static void shell_auth_passed(shell_t* shell,char byte)
{
static char escape_sequence_start = 0;
/*
* Start of escape sequence
*/
if (byte == *portable_shell_start_of_escape_seq){
escape_sequence_start = 1;
}
else if ((escape_sequence_start == 1) && (byte == '[')) {
// omit this byte
}
/*
* New Line
*/
else if (*shell->newline_code == byte) {
shell_NL_Action(shell);
}
/*
* Backspace
*/
else if (*shell->bs_code == byte) {
shell_MngtLineBuff(shell, NULL,0, LINE_BUFF_BS);
}
/*
* Arrow UP
*/
else if ((*shell->arrowu_code == byte) && (escape_sequence_start == 1)) {
escape_sequence_start = 0;
const char* dptr = history_list_TraverseUp(&history);
if(dptr != NULL){
shell_MngtLineBuff(shell,dptr,strlen(dptr),LINE_BUFF_ADD_STR);
}
}
/*
* Arrow DOWN
*/
else if ((*shell->arrowd_code == byte) && (escape_sequence_start == 1)) {
escape_sequence_start = 0;
const char* dptr = history_list_TraverseDown(&history);
if(dptr != NULL){
shell_MngtLineBuff(shell,dptr,strlen(dptr),LINE_BUFF_ADD_STR);
}
}
/*
* Arrow LEFT
*/
else if ((*shell->arrowl_code == byte) && (escape_sequence_start == 1)) {
escape_sequence_start = 0;
shell_MngtLineBuff(shell, NULL,0, LINE_BUFF_POS_LEFT);
}
/*
* Arrow RIGHT
*/
else if ((*shell->arrowr_code == byte) && (escape_sequence_start == 1)) {
escape_sequence_start = 0;
shell_MngtLineBuff(shell, NULL,0, LINE_BUFF_POS_RIGHT);
}
/*
* All ascii characters available from standard keyboard
*/
else if ((byte >= 0x20) && (byte <= 0x7E))
{
if (shell_MngtLineBuff(shell, &byte,1, LINE_BUFF_ADD_CHAR) == LINE_BUFF_OK) {
shell->write(&byte, sizeof(byte),shell->param);
} else {
// line buffer full, clear it and then proceed to next line
shell_MngtLineBuff(shell, NULL,0, LINE_BUFF_CLEAR_WHOLE); // clears line buff
shell_write_newline(shell);
shell_write_prompt(shell);
}
}
//CTRL + U == clear line to prompt
else if(byte == '\025'){
shell_MngtLineBuff(shell, NULL,0, LINE_BUFF_CLEAR_WHOLE); // clears line buff
shell_write_clearline(shell);
shell->write("\r",1,shell->param);
shell_write_prompt(shell);
}
}
void shell_RunPeriodic(shell_t* shell) {
SHELL_ASSERT(shell != NULL);
uint32_t len=0;
/* Read method can be either blocking or non-blocking */
shell->read(read_buffer,&len,shell->param);
if(len > SHELL_READ_BUFFER_LEN){
shell_MngtLineBuff(shell, NULL,0, LINE_BUFF_CLEAR_WHOLE); // clears line buff
shell_write_newline(shell);
shell_write_prompt(shell);
return;
}
uint32_t i;
/* Received block of data can be longer than 1 byte but no bigger than SHELL_READ_BUFFER_LEN.
* In this case split entire buffer into separate characters and process them one by one. */
for(i=0;i<len;++i){
if (read_buffer[i] != '\0') {
switch(auth_state)
{
case AUTH_IN_PROGRESS:
shell_auth_inprogress(shell,read_buffer[i]);
break;
case AUTH_PASSED:
shell_auth_passed(shell,read_buffer[i]);
break;
}
}
}
}