/* * Copyright (c) 2019 - 2024 Stefan Strobel * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ /** * @file shellmatta.h * @brief API definition of the Shellmatta terminal implementation * @author Stefan Strobel */ /** * @addtogroup shellmatta_api Shellmatta API description * @{ */ #ifndef _SHELLMATTA_H_ #define _SHELLMATTA_H_ #include #include /* global defines */ /* * Define the printf format specifier for all GCC versions > 3.3 * This will let the compiler know that shelmatta_printf() is a function taking printf-like format specifiers. */ #ifndef SHELLMATTA_ATTR_FORMAT # if ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3))) # define SHELLMATTA_ATTR_FORMAT(fmt, args) __attribute__((__format__(__printf__, fmt, args))) # else # define SHELLMATTA_ATTR_FORMAT(fmt, args) # endif #else # define SHELLMATTA_ATTR_FORMAT(fmt, args) #endif /** * @brief definition of a shellmatta handle */ typedef void* shellmatta_handle_t; /** * @brief definition of shellmatta return codes */ typedef enum { SHELLMATTA_OK = 0u, /**< everything is OK */ SHELLMATTA_ERROR , /**< error occured */ SHELLMATTA_CONTINUE , /**< the function is not over */ SHELLMATTA_USE_FAULT , /**< parameter error - wrong usage */ SHELLMATTA_DUPLICATE , /**< duplicate command */ SHELLMATTA_BUSY /**< command is busy keep calling */ } shellmatta_retCode_t; /** * @brief definition of shellmatta insert mode */ typedef enum { SHELLMATTA_MODE_INSERT = 0u, /**< insert mode */ SHELLMATTA_MODE_OVERWRITE , /**< overwrite mode */ } shellmatta_mode_t; /** * @brief definition of shellmatta optionparser agument type */ typedef enum { SHELLMATTA_OPT_ARG_NONE = 0u, /**< no argument expected */ SHELLMATTA_OPT_ARG_REQUIRED, /**< argument is required */ SHELLMATTA_OPT_ARG_OPTIONAL, /**< argument is optional */ } shellmatta_opt_argtype_t; /** * @brief definition of shellmatta optionparser agument type */ typedef struct { const char *paramLong; /**< long parameter string */ const char paramShort; /**< short parameter char */ shellmatta_opt_argtype_t argtype; /**< argument type expected */ } shellmatta_opt_long_t; /** * @brief definition of shellmatta optionparser structure */ typedef struct { uint32_t argStart; /**< start of the arguments of the command */ uint32_t offset; /**< current offset of the option parser */ uint32_t nextOffset; /**< offset of the next hunk */ uint32_t len; /**< length of the current hunk */ } shellmatta_opt_t; /** * @brief shellmatta command function definition * @param[in] handle pointer to the instance which is calling the cmd * @param[in] arguments argument string called to run this command beginning * with the command itself * @param[in] length length of the argument string */ typedef shellmatta_retCode_t (*shellmatta_cmdFct_t)(const shellmatta_handle_t handle, const char *arguments, uint32_t length); /** * @brief shellmatta write function definition * @param[in] data data to be written to the output * @param[in] length length of the data to be written */ typedef shellmatta_retCode_t (*shellmatta_write_t)(const char* data, uint32_t length); #ifdef SHELLMATTA_AUTHENTICATION /** * @brief user role matrix */ typedef struct { uint32_t userId; /**< id of the user (!= 0) */ bool superuser; /**< allow the user to access all commands */ const char *username; /**< name of the user role */ const char *password; /**< password of the user role or NULL (custom auth) */ } shellmatta_auth_user_t; /** * @brief typedefinition of one line of the authentication table */ typedef struct { const char* cmd; /**< command to grand access to */ const uint32_t *userIds; /**< list of user ids with access to the cmd */ const uint32_t userIdslength; /**< length of the user list */ } shellmatta_auth_perm_t; /** * @brief login states */ typedef enum { SHELLMATTA_AUTH_IDLE, /**< authentication system waits */ SHELLMATTA_AUTH_USERNAME, /**< input of username */ SHELLMATTA_AUTH_PASSWORD /**< input of password */ } shellmatta_auth_state_t; /** * @brief log actions - passed to the log function */ typedef enum { SHELLMATTA_AUTH_EVENT_NONE, /**< no event (init value) */ SHELLMATTA_AUTH_EVENT_LOGIN, /**< successful login event */ SHELLMATTA_AUTH_EVENT_LOGIN_FAILED, /**< failed login event */ SHELLMATTA_AUTH_EVENT_LOGOUT, /**< succesful logout event */ } shellmatta_auth_log_event_t; /** * @brief custom shellmatta authentication method * @param[in] userId user id to log in (name of the user role) * @param[in] password password for the login * @return userId if password was correct - otherwise 0 */ typedef shellmatta_retCode_t (*shellmatta_auth_check_t)(const uint32_t userId, const char* password); /** * @brief shellmatta authentication log method - will be called whenever a login attempt is done * @param[in] userId userId to be logged in (0 on unknown user) * @param[in] event event type to be logged (e.g. successful login) */ typedef void (*shellmatta_auth_log_t)(const uint32_t userId, shellmatta_auth_log_event_t event); #endif /** * @brief structure of one shellmatta command */ typedef struct shellmatta_cmd { char *cmd; /**< command name */ char *cmdAlias; /**< command alias */ char *helpText; /**< help text to print in "help" command */ char *usageText; /**< usage text - printed on "help cmd" */ shellmatta_cmdFct_t cmdFct; /**< pointer to the cmd callack function */ #ifdef SHELLMATTA_AUTHENTICATION shellmatta_auth_perm_t *authLink; /**< internally used - pointer to perm list */ #endif struct shellmatta_cmd *next; /**< pointer to next command or NULL */ } shellmatta_cmd_t; /** * @brief structure of one shellmatta instance */ typedef struct { uint32_t magic; /**< magic number to check if initialized */ char *buffer; /**< input buffer */ uint32_t bufferSize; /**< size of the input buffer */ uint32_t inputCount; /**< offset of the current write operation */ uint32_t byteCounter; /**< counter used to loop over input data */ uint32_t lastNewlineIdx; /**< index of the lest newline */ uint32_t cursor; /**< offset where the cursor is at */ uint32_t stdinIdx; /**< start index of stdin in buffer */ uint32_t stdinLength; /**< length of the stdin data */ char *historyBuffer; /**< buffer to store the last commands */ uint32_t historyBufferSize; /**< size of the history buffer */ uint32_t historyStart; /**< index of the oldest stored command */ uint32_t historyEnd; /**< index of the newest stored command */ uint32_t historyRead; /**< index of the current search */ bool historyReadUp; /**< flag to show the last history dir */ uint32_t tabCounter; /**< counts the tabulator key presses */ uint32_t escapeCounter; /**< counts the characters of an escape seq */ char escapeChars[4u]; /**< buffer to save the escape characters */ uint32_t hereStartIdx; /**< heredoc start of "<<" */ uint32_t hereDelimiterIdx; /**< heredoc delimiter index in input */ uint32_t hereLength; /**< length of the heredoc delimiter */ bool echoEnabled; /**< if true the input is printed */ bool dirty; /**< dirty flag to show changes */ const char *prompt; /**< prompt is printed after every command */ char delimiter; /**< delimiter (return) to terminate a cmd */ shellmatta_mode_t mode; /**< mode of the shell */ shellmatta_write_t write; /**< pointer to write function */ shellmatta_cmd_t helpCmd; /**< help command structure */ shellmatta_cmd_t *cmdList; /**< pointer to the first command */ shellmatta_cmd_t *continuousCmd; /**< command to be called continuously */ shellmatta_cmd_t *busyCmd; /**< command to be polled (busy mode) */ bool cmdListIsConst; /**< true if the #cmdList was passed during initialization */ shellmatta_opt_t optionParser; /**< option parser sructure */ #ifdef SHELLMATTA_AUTHENTICATION shellmatta_auth_state_t loginState; /**< state variable of the login cmd */ shellmatta_cmd_t loginCmd; /**< login command structure */ shellmatta_cmd_t logoutCmd; /**< logout command structure */ uint32_t userId; /**< user ID of the current session */ uint32_t tmpUserId; /**< remporary user ID during input */ shellmatta_auth_user_t *userPointer; /**< pointer to the user in the user list */ shellmatta_auth_user_t *userList; /**< user list */ uint32_t userListLength; /**< length of the user list */ shellmatta_auth_perm_t *permList; /**< permission list */ uint32_t permListLength; /**< length of the permission list */ shellmatta_auth_check_t checkFct; /**< custom credential check function */ shellmatta_auth_log_t logFct; /**< auth log function */ #endif } shellmatta_instance_t; shellmatta_retCode_t shellmatta_doInit( shellmatta_instance_t *inst, shellmatta_handle_t *handle, char *buffer, uint32_t bufferSize, char *historyBuffer, uint32_t historyBufferSize, const char *prompt, const shellmatta_cmd_t *cmdList, shellmatta_write_t writeFct); shellmatta_retCode_t shellmatta_resetShell( shellmatta_handle_t handle, bool printPrompt); shellmatta_retCode_t shellmatta_addCmd( shellmatta_handle_t handle, shellmatta_cmd_t *cmd); shellmatta_retCode_t shellmatta_removeCmd( shellmatta_handle_t handle, const shellmatta_cmd_t *cmd); shellmatta_retCode_t shellmatta_configure( shellmatta_handle_t handle, shellmatta_mode_t mode, bool echoEnabled, char delimiter); shellmatta_retCode_t shellmatta_processData(shellmatta_handle_t handle, char *data, uint32_t size); shellmatta_retCode_t shellmatta_write( shellmatta_handle_t handle, char *data, uint32_t length); shellmatta_retCode_t shellmatta_read( shellmatta_handle_t handle, char **data, uint32_t *length); shellmatta_retCode_t shellmatta_opt( shellmatta_handle_t handle, const char *optionString, char *option, char **argument, uint32_t *argLen); shellmatta_retCode_t shellmatta_opt_long( shellmatta_handle_t handle, const shellmatta_opt_long_t *longOptions, char *option, char **argument, uint32_t *argLen); #ifndef SHELLMATTA_STRIP_PRINTF shellmatta_retCode_t shellmatta_printf( shellmatta_handle_t handle, const char *fmt, ...) SHELLMATTA_ATTR_FORMAT(2, 3); #endif #ifdef SHELLMATTA_AUTHENTICATION shellmatta_retCode_t shellmatta_auth_init( shellmatta_handle_t handle, shellmatta_auth_user_t *userList, uint32_t userListLength, shellmatta_auth_perm_t *permList, uint32_t permListLength, bool customLogin, shellmatta_auth_check_t checkFct, shellmatta_auth_log_t logFct); shellmatta_retCode_t shellmatta_auth_login( shellmatta_handle_t handle, uint32_t userId); shellmatta_retCode_t shellmatta_auth_logout( shellmatta_handle_t handle); uint32_t shellmatta_auth_getLoggedInUserId( shellmatta_handle_t handle); shellmatta_retCode_t shellmatta_auth_getLoggedInUserName( shellmatta_handle_t handle, char *data, uint32_t *length); shellmatta_retCode_t shellmatta_auth_chpasswd( shellmatta_handle_t handle, const char *username, const char *password); #endif #endif /** @} */