123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686 |
- /*shell.c
- *
- * Copyright (C) 2006-2024 wolfSSL Inc.
- *
- * This file is part of wolfSSL.
- *
- * wolfSSL is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * wolfSSL is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
- */
- /*** tiny Shell for wolfSSL apps ***/
- #ifdef HAVE_CONFIG_H
- #include <config.h>
- #endif
- #include "wolfssl/internal.h"
- #include <wolfssl/wolfcrypt/logging.h>
- #if defined(WOLFSSL_MDK_ARM) || defined(WOLFSSL_KEIL_TCP_NET)
- #include <stdio.h>
- #include <string.h>
- #include <stdlib.h>
- #if defined(WOLFSSL_MDK5) || defined(WOLFSSL_KEIL_TCP_NET)
- #include "cmsis_os.h"
- #include "rl_fs.h"
- #else
- #include <rtl.h>
- #endif
- #endif
- #ifdef WOLFSSL_KEIL_TCP_NET
- #include "wolfssl/test.h"
- #else
- typedef struct func_args {
- int argc;
- char** argv;
- int return_code;
- } func_args;
- #endif
- #if defined(WOLFSSL_CMSIS_RTOS)
- #define HAVE_KEIL_RTX
- #endif
- #ifdef NO_ECHOCLIENT
- #define echoclient_test command_not_found
- #endif
- #ifdef NO_ECHOSERVER
- #define echoserver_test command_not_found
- #endif
- #ifdef NO_SIMPLE_CLIENT
- #define client_test command_not_found
- #endif
- #ifdef NO_SIMPLE_SERVER
- #define server_test command_not_found
- #endif
- #ifdef NO_CRYPT_BENCHMARK
- #define benchmark_test command_not_found
- #endif
- #ifdef NO_CRYPT_TEST
- #define ctaocrypt_test command_not_found
- #endif
- #ifndef WOLFSSL_KEIL_TCP_NET
- #define ipaddr_comm command_not_found
- #endif
- #if !defined(HAVE_KEIL_RTX)
- #define stack_comm command_not_found
- #endif
- #if !defined(DEBUG_WOLFSSL)
- #define dbg_comm command_not_found
- #endif
- void command_not_found(void *argv) {
- printf("Command not found\n") ;
- }
- extern void echoclient_test(void *args) ;
- extern void echoserver_test(void *args) ;
- extern void benchmark_test(void *args) ;
- extern void wolfcrypt_test(void *args) ;
- extern void client_test(void *args) ;
- extern void server_test(void *args) ;
- extern void kill_task(void *args) ;
- extern void ipaddr_comm(void *args) ;
- extern void stack_comm(void *args) ;
- extern void for_command(void *args) ;
- extern void dbg_comm(void *arg) ;
- extern void help_comm(void *arg) ;
- #if !defined(NO_CRYPT_TEST)
- #ifndef NO_MD5
- extern void md5_test(void *arg) ;
- #endif
- #ifdef WOLFSSL_MD2
- extern void md2_test(void *arg) ;
- #endif
- #ifndef NO_MD4
- extern void md4_test(void *arg) ;
- #endif
- extern void sha_test(void *arg) ;
- #ifndef NO_SHA256
- extern void sha256_test(void *arg) ;
- #endif
- #ifdef WOLFSSL_SHA384
- extern void sha384_test(void *arg) ;
- #endif
- #ifdef WOLFSSL_SHA512
- extern void sha512_test(void *arg) ;
- #endif
- #ifdef WOLFSSL_RIPEMD
- extern void ripemd_test(void *arg) ;
- #endif
- #ifndef NO_HMAC
- #ifndef NO_MD5
- extern void hmac_md5_test(void *arg) ;
- #endif
- extern void hmac_sha_test(void *arg) ;
- #ifndef NO_SHA256
- extern void hmac_sha256_test(void *arg) ;
- #endif
- #ifdef WOLFSSL_SHA384
- extern void hmac_sha384_test(void *arg) ;
- #endif
- #endif
- #ifndef NO_RC4
- extern void arc4_test(void *arg) ;
- #endif
- #ifndef NO_DES3
- extern void des_test(void *arg) ;
- extern void des3_test(void *arg) ;
- #endif
- #ifndef NO_AES
- extern void aes_test(void *arg) ;
- #ifdef HAVE_AESGCM
- extern void aesgcm_test(void *arg) ;
- #endif
- #ifdef HAVE_AESCCM
- extern void aesccm_test(void *arg) ;
- #endif
- #endif
- #ifdef HAVE_CAMELLIA
- extern void camellia_test(void *arg) ;
- #endif
- extern void random_test(void *arg) ;
- #ifndef NO_RSA
- extern void rsa_test(void *arg) ;
- #endif
- #ifndef NO_DH
- extern void dh_test(void *arg) ;
- #endif
- #ifndef NO_DSA
- extern void dsa_test(void *arg) ;
- #endif
- #ifndef NO_PWDBASED
- extern void pwdbased_test(void *arg) ;
- #endif
- #ifdef OPENSSL_EXTRA
- extern void openssl_test(void *arg) ;
- #endif
- #ifdef HAVE_ECC
- extern void ecc_test(void *arg) ;
- #endif
- #endif /* NO_CRYPT_TEST */
- static struct {
- const char *command ;
- void (*func)(void *args) ;
- } commandTable[] = {
- "echoclient", echoclient_test,
- "echoserver", echoserver_test,
- "benchmark", benchmark_test,
- "test", wolfcrypt_test,
- "client", client_test,
- "server", server_test,
- "ipaddr", ipaddr_comm, /* TBD */
- "stack", stack_comm, /* On/Off check stack size */
- "for", for_command, /* iterate next command X times */
- "debug", dbg_comm, /* On/Off debug message */
- "help", help_comm, /* Brief description about the commands */
- /** short name **/
- "ec", echoclient_test,
- "es", echoserver_test,
- "bm", benchmark_test,
- "te", wolfcrypt_test,
- "cl", client_test,
- "sv", server_test,
- "ip", ipaddr_comm,
- "st", stack_comm,
- "dbg", dbg_comm,
- "?", help_comm,
- /*** test suites ****/
- #if !defined(NO_CRYPT_TEST)
- #ifndef NO_MD5
- "md5", md5_test,
- #endif
- #ifdef WOLFSSL_MD2
- "md2", md2_test,
- #endif
- #ifndef NO_MD4
- "md4", md4_test,
- #endif
- "sha", sha_test,
- #ifndef NO_SHA256
- "sha256", sha256_test,
- #endif
- #ifdef WOLFSSL_SHA384
- "sha384", sha384_test,
- #endif
- #ifdef WOLFSSL_SHA512
- "sha512", sha512_test,
- #endif
- #ifdef WOLFSSL_RIPEMD
- "ripemd", ripemd_test,
- #endif
- #ifndef NO_HMAC
- #ifndef NO_MD5
- "hmac_md5", hmac_md5_test,
- #endif
- "hmac_sha", hmac_sha_test,
- #ifndef NO_SHA256
- "hmac_sha256", hmac_sha256_test,
- #endif
- #ifdef WOLFSSL_SHA384
- "hmac_sha384", hmac_sha384_test,
- #endif
- #endif
- #ifndef NO_RC4
- "arc4", arc4_test,
- #endif
- #ifndef NO_DES3
- "des", des_test,
- "des3", des3_test,
- #endif
- #ifndef NO_AES
- "aes", aes_test,
- #ifdef HAVE_AESGCM
- "aesgcm", aesgcm_test,
- #endif
- #ifdef HAVE_AESCCM
- "aesccm", aesccm_test,
- #endif
- #endif
- #ifdef HAVE_CAMELLIA
- "camellia", camellia_test,
- #endif
- "random", random_test,
- #ifndef NO_RSA
- "rsa", rsa_test,
- #endif
- #ifndef NO_DH
- "dh", dh_test,
- #endif
- #ifndef NO_DSA
- "dsa", dsa_test,
- #endif
- #ifndef NO_PWDBASED
- "pwdbased", pwdbased_test,
- #endif
- #ifdef OPENSSL_EXTRA
- "openssl", openssl_test,
- #endif
- #ifdef HAVE_ECC
- "ecc", ecc_test,
- #endif
- #endif /* NO_CRYPT_TEST */
- "", NULL
- } ;
- enum jobtype { FOREGROUND, BACKGROUND } ;
- #define IF_DELIMITER(ch) ((ch) == ' ' || (ch) == '\n')
- static int BackGround = 0 ; /* 1: background job is running */
- char * wolfssl_fgets ( char * str, int num, FILE * f )
- {
- int i ;
- for(i = 0 ; i< num ; i++) {
- while((str[i] = getchar()) == 0) {
- #if defined (HAVE_KEIL_RTX) && !defined(WOLFSSL_CMSIS_RTOS)
- os_tsk_pass ();
- #else
- osThreadYield ();
- #endif
- }
- if(str[i] == '\n' || str[i] == '\012' || str[i] == '\015') {
- putchar('\n') ;
- str[i++] = '\n' ;
- str[i] = '\0' ;
- break ;
- } else if(str[i] == '\010') { /* BS */
- if(i) { /* erace one char */
- putchar('\010') ; putchar(' ') ; putchar('\010') ;
- i = (i>0 ? (i-2) : -1 ) ;
- continue ;
- }
- } else if(str[i] == '\033' || str[i] == '\004' ) { /* ESC or ^D */
- str[i] = '\0' ;
- return(0) ;
- }
- putchar(str[i]) ;
- }
- return(str) ;
- }
- /******* Get Command Line *****************************/
- static int getline(char * line, int sz, func_args *args, int*bf_flg)
- {
- char * ret ;
- int i ;
- #define MAXARGS 10
- #define MAXARGLEN 30
- static char *argv[MAXARGS] ;
- args->argv = argv ;
- putchar('>') ;
- fflush(stdout) ;
- ret = wolfssl_fgets(line, sz, stdin) ;
- #define SHELL_ERROR_FGETS -102
- if(ret != line) return(SHELL_ERROR_FGETS) ;
- if(line[strlen(line)-2] == '&') {
- (*bf_flg) = BACKGROUND ;
- line[strlen(line)-2] = '\n' ;
- } else {
- (*bf_flg) = FOREGROUND ;
- }
- args->argc = 0 ;
- for(i=0; i<sz; i++) {
- args->argv[args->argc] = &(line[i]) ;
- while(!IF_DELIMITER(line[i])) i++ ;
- args->argc++ ;
- if(line[i] == '\n') {
- line[i] = '\0' ;
- break ;
- } else {
- line[i] = '\0' ;
- }
- }
- return i ;
- }
- /************* Embedded Shell Commands **********************************/
- #define IP_SIZE 16
- #ifdef WOLFSSL_KEIL_TCP_NET
- static void ipaddr_comm(void *args)
- {
- if(((func_args *)args)->argc == 1) {
- printf("IP addr: %s, port %d\n", wolfSSLIP, wolfSSLPort) ;
- } else {
- if(BackGround != 0) {
- printf("Cannot change IP addr while background server is running\n") ;
- } else if(((func_args *)args)->argc == 3 &&
- ((func_args *)args)->argv[1][0] == '-'&&
- ((func_args *)args)->argv[1][1] == 'a' ) {
- /* strcpy(yasslIP, ((func_args *)args)->argv[2]) ; */
- } else if(((func_args *)args)->argc == 3 &&
- ((func_args *)args)->argv[1][0] == '-' &&
- ((func_args *)args)->argv[1][1] == 'p' ) {
- /* yasslPort = atoi(((func_args *)args)->argv[2]) ; */
- } else printf("Invalid argument\n") ;
- }
- }
- #endif
- #if defined(HAVE_KEIL_RTX)
- static int stack_ck = 0 ;
- void stack_comm(void *args)
- {
- if(stack_ck) {
- printf("Stack Check: Off\n") ;
- stack_ck = 0 ;
- } else {
- printf("Stack Check: On\n") ;
- stack_ck = 1 ;
- }
- }
- #define FILL_PATTERN 0xa596695a
- void stack_fill(char * stack, int size)
- {
- int i ;
- if(stack_ck == 0)return ;
- for(i=1; i<size/4-10; i++)
- ((int *)stack)[i] = FILL_PATTERN ;
- }
- void stack_check(char * stack, int size)
- {
- int i ;
- if(stack_ck == 0)return ;
- if(stack_ck == 1) {
- stack_ck ++ ; return ;
- }
- for(i=1; i<size/4 ; i++) {
- if(((int *)stack)[i] != FILL_PATTERN) break ;
- }
- if(i < size/4) {
- printf("Stack is used %d bytes out of %d\n", size - i*4, size) ;
- } else {
- printf("Stack overflow. Stack size: %d\n", size) ;
- }
- }
- #endif /* HAVE_KEIL_RTX */
- static int for_iteration = 1 ;
- static void for_command(void *args)
- {
- if( args == NULL || ((func_args *)args)->argc == 1) {
- printf("For %d times\n", for_iteration) ;
- } else if(((func_args *)args)->argc == 2) {
- for_iteration = atoi(((func_args *)args)->argv[1]) ;
- } else printf("Invalid argument\n") ;
- }
- #if defined(DEBUG_WOLFSSL)
- static int wolfsslDebug = 1 ;
- static void dbg_comm(void *args)
- {
- if(wolfsslDebug == 1) {
- wolfsslDebug = 0 ;
- printf("Turning OFF Debug message\n") ;
- wolfSSL_Debugging_OFF() ;
- } else {
- wolfasslDebug = 1 ;
- printf("Turning ON Debug message\n") ;
- wolfSSL_Debugging_ON() ;
- }
- }
- #endif
- static void help_comm(void *args)
- {
- static char *commands[] = {
- "test",
- "benchmark",
- "echoserver& : simple echo server in background mode",
- "echoclient : simple echo client followed by any input string, or \"quit\", \"break\"",
- "server& : simple server in background mode",
- "client : simple client",
- "client -g -v [0123] -h xxx.xxx.xxx.xxx -p 443 : usage example",
- "server/client -h : help for server/client command",
- "help",
- ""
- } ;
- int i ;
- printf("Commands:\n") ;
- for(i=0; commands[i][0] ; i++)
- printf(" %s\n", commands[i]) ;
- }
- #define BG_JOB_STACK_SIZE 16000
- #if (!defined(NO_SIMPLE_SERVER) && !defined(NO_ECHOSERVER)) && \
- defined(HAVE_KEIL_RTX)
- #if !defined(WOLFSSL_CMSIS_RTOS)
- static char bg_job_stack[BG_JOB_STACK_SIZE] ;
- #endif
- #endif
- #define COMMAND_STACK_SIZE 24000
- #if defined(HAVE_KEIL_RTX) && !defined(WOLFSSL_CMSIS_RTOS)
- static char command_stack[COMMAND_STACK_SIZE] ;
- #endif
- #if defined(HAVE_KEIL_RTX) || defined(WOLFSSL_CMSIS_RTOS)
- static wolfSSL_Mutex command_mutex ;
- #endif
- void exit_command(void) {
- printf("Command Aborted\n") ;
- #ifdef WOLFSSL_CMSIS_RTOS
- osThreadTerminate(osThreadGetId()) ;
- #else
- os_tsk_delete_self() ;
- #endif
- }
- /*********** Invoke Foreground Command *********************/
- static void command_invoke(void const *args)
- {
- void (*func)(void const * ) ;
- int i,iteration ;
- func = (void(*)(void const *))((func_args *)args)->argv[0] ;
- #if defined(HAVE_KEIL_RTX)
- wc_LockMutex((wolfSSL_Mutex *)&command_mutex) ;
- #endif
- iteration = for_iteration ;
- for(i=0; i< iteration; i++) {
- if(iteration > 1) printf("--- Start for %d ---->\n", i) ;
- #if defined(HAVE_KEIL_RTX) && !defined(WOLFSSL_CMSIS_RTOS)
- stack_fill(command_stack, COMMAND_STACK_SIZE) ;
- #endif
- func(args) ; /* invoke command */
- #if defined(HAVE_KEIL_RTX)&& !defined(WOLFSSL_CMSIS_RTOS)
- stack_check(command_stack, COMMAND_STACK_SIZE) ;
- #endif
- }
- if(iteration > 1)
- for_iteration = 1 ;
- osDelay(20000) ;
- #ifdef HAVE_KEIL_RTX
- wc_UnLockMutex((wolfSSL_Mutex *)&command_mutex) ;
- #ifdef WOLFSSL_CMSIS_RTOS
- osThreadTerminate(osThreadGetId()) ;
- #else
- os_tsk_delete_self() ;
- #endif
- #endif
- }
- #if defined(HAVE_KEIL_RTX) || defined(WOLFSSL_CMSIS_RTOS)
- /******* Invoke Background Job *******************************/
- static void bg_job_invoke(void const *args)
- {
- void (*func)(void const * ) ;
- BackGround = 1 ;
- #if defined(HAVE_KEIL_RTX)&& !defined(WOLFSSL_CMSIS_RTOS)
- stack_fill(bg_job_stack, BG_JOB_STACK_SIZE) ;
- #endif
- func = (void(*)(void const *))((func_args *)args)->argv[0] ;
- func(args) ; /* invoke command */
- #if defined(HAVE_KEIL_RTX) && !defined(WOLFSSL_CMSIS_RTOS)
- stack_check(bg_job_stack, BG_JOB_STACK_SIZE) ;
- #endif
- osDelay(20000) ;
- BackGround = 0 ;
- #ifdef WOLFSSL_CMSIS_RTOS
- osThreadTerminate(osThreadGetId()) ;
- #else
- os_tsk_delete_self() ; ;
- #endif
- }
- #endif
- #define LINESIZE 100
- static char line[LINESIZE] ;
- #if defined(WOLFSSL_CMSIS_RTOS)
- osThreadDef (command_invoke, osPriorityAboveNormal , 1, COMMAND_STACK_SIZE) ;
- osThreadDef (bg_job_invoke, osPriorityNormal , 1 , BG_JOB_STACK_SIZE) ;
- #endif
- /********* SHEULL MAIN LOOP ***********************************/
- void shell_main(void *arg) {
- int i ;
- func_args args ;
- int bf_flg ;
- #if defined(WOLFSSL_CMSIS_RTOS)
- osThreadId cmd ;
- #endif
- i = BackGround ;
- /* Dummy for avoiding warning: BackGround is defined but not used. */
- #if defined(HAVE_KEIL_RTX)
- wc_InitMutex(&command_mutex) ;
- #endif
- help_comm(NULL) ;
- printf("Starting Shell\n") ;
- while(1) {
- if(getline(line, LINESIZE, &args, &bf_flg) > 0) {
- for(i=0; commandTable[i].func != NULL; i++) {
- if(strcmp(commandTable[i].command, args.argv[0]) == 0) {
- args.argv[0] = (char *) commandTable[i].func ;
- if(bf_flg == FOREGROUND) {
- #if defined(HAVE_KEIL_RTX) && !defined(WOLFSSL_CMSIS_RTOS)
- wc_UnLockMutex((wolfSSL_Mutex *)&command_mutex) ;
- os_tsk_create_user_ex( (void(*)(void *))&command_invoke, 7,
- command_stack, COMMAND_STACK_SIZE, &args) ;
- os_tsk_pass ();
- #else
- #if defined(WOLFSSL_CMSIS_RTOS)
- wc_UnLockMutex((wolfSSL_Mutex *)&command_mutex) ;
- cmd = osThreadCreate (osThread (command_invoke) , &args);
- if(cmd == NULL) {
- printf("Cannon create command thread\n") ;
- }
- osThreadYield ();
- #else
- command_invoke(&args) ;
- #endif
- #endif
- #ifdef HAVE_KEIL_RTX
- wc_LockMutex((wolfSSL_Mutex *)&command_mutex) ;
- #endif
- } else {
- #if (!defined(NO_SIMPLE_SERVER) && \
- !defined(NO_ECHOSERVER)) && \
- defined(HAVE_KEIL_RTX)
- if(BackGround != 0) {
- printf("Multiple background servers not supported.\n") ;
- } else {
- printf("\"%s\" is running with the background mode.\n",
- commandTable[i].command) ;
- #if defined(HAVE_KEIL_RTX) && !defined(WOLFSSL_CMSIS_RTOS)
- os_tsk_create_user_ex( (void(*)(void *))&bg_job_invoke,
- 6, bg_job_stack, BG_JOB_STACK_SIZE, &args) ;
- #else
- osThreadCreate (osThread (bg_job_invoke), &args);
- osDelay (500) ;
- #endif
- }
- #else
- printf("Invalid Command: no background job\n") ;
- #endif
- }
- break ;
- }
- }
- if(commandTable[i].func == NULL)
- printf("Command not found\n") ;
- }
- }
- }
|