shellmatta.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. /*
  2. * Copyright (c) 2019 - 2021 Stefan Strobel <stefan.strobel@shimatta.net>
  3. *
  4. * This Source Code Form is subject to the terms of the Mozilla Public
  5. * License, v. 2.0. If a copy of the MPL was not distributed with this
  6. * file, You can obtain one at https://mozilla.org/MPL/2.0/.
  7. */
  8. /**
  9. * @file shellmatta.h
  10. * @brief API definition of the Shellmatta terminal implementation
  11. * @author Stefan Strobel <stefan.strobel@shimatta.net>
  12. */
  13. /**
  14. * @addtogroup shellmatta_api Shellmatta API description
  15. * @{
  16. */
  17. #ifndef _SHELLMATTA_H_
  18. #define _SHELLMATTA_H_
  19. #include <stdint.h>
  20. #include <stdbool.h>
  21. /* global defines */
  22. /**
  23. * @brief definition of a shellmatta handle
  24. */
  25. typedef void* shellmatta_handle_t;
  26. /**
  27. * @brief definition of shellmatta return codes
  28. */
  29. typedef enum
  30. {
  31. SHELLMATTA_OK = 0u, /**< everything is OK */
  32. SHELLMATTA_ERROR , /**< error occured */
  33. SHELLMATTA_CONTINUE , /**< the function is not over */
  34. SHELLMATTA_USE_FAULT , /**< parameter error - wrong usage */
  35. SHELLMATTA_DUPLICATE , /**< duplicate command */
  36. SHELLMATTA_BUSY /**< command is busy keep calling */
  37. } shellmatta_retCode_t;
  38. /**
  39. * @brief definition of shellmatta insert mode
  40. */
  41. typedef enum
  42. {
  43. SHELLMATTA_MODE_INSERT = 0u, /**< insert mode */
  44. SHELLMATTA_MODE_OVERWRITE , /**< overwrite mode */
  45. } shellmatta_mode_t;
  46. /**
  47. * @brief definition of shellmatta optionparser agument type
  48. */
  49. typedef enum
  50. {
  51. SHELLMATTA_OPT_ARG_NONE = 0u, /**< no argument expected */
  52. SHELLMATTA_OPT_ARG_REQUIRED, /**< argument is required */
  53. SHELLMATTA_OPT_ARG_OPTIONAL, /**< argument is optional */
  54. } shellmatta_opt_argtype_t;
  55. /**
  56. * @brief definition of shellmatta optionparser agument type
  57. */
  58. typedef struct
  59. {
  60. const char *paramLong; /**< long parameter string */
  61. const char paramShort; /**< short parameter char */
  62. shellmatta_opt_argtype_t argtype; /**< argument type expected */
  63. } shellmatta_opt_long_t;
  64. /**
  65. * @brief definition of shellmatta optionparser structure
  66. */
  67. typedef struct
  68. {
  69. uint32_t argStart; /**< start of the arguments of the command */
  70. uint32_t offset; /**< current offset of the option parser */
  71. uint32_t nextOffset; /**< offset of the next hunk */
  72. uint32_t len; /**< length of the current hunk */
  73. } shellmatta_opt_t;
  74. /**
  75. * @brief shellmatta command function definition
  76. * @param[in] handle pointer to the instance which is calling the cmd
  77. * @param[in] arguments argument string called to run this command beginning
  78. * with the command itself
  79. * @param[in] length length of the argument string
  80. */
  81. typedef shellmatta_retCode_t (*shellmatta_cmdFct_t)(const shellmatta_handle_t handle,
  82. const char *arguments,
  83. uint32_t length);
  84. /**
  85. * @brief shellmatta write function definition
  86. * @param[in] data data to be written to the output
  87. * @param[in] length length of the data to be written
  88. */
  89. typedef shellmatta_retCode_t (*shellmatta_write_t)(const char* data, uint32_t length);
  90. #ifdef SHELLMATTA_AUTHENTICATION
  91. /**
  92. * @brief user role matrix
  93. */
  94. typedef struct
  95. {
  96. uint32_t userId; /**< id of the user (!= 0) */
  97. bool superuser; /**< allow the user to access all commands */
  98. const char *username; /**< name of the user role */
  99. const char *password; /**< password of the user role or NULL (custom auth) */
  100. } shellmatta_auth_user_t;
  101. /**
  102. * @brief typedefinition of one line of the authentication table
  103. */
  104. typedef struct
  105. {
  106. const char* cmd; /**< command to grand access to */
  107. const uint32_t *userIds; /**< list of user ids with access to the cmd */
  108. const uint32_t userIdslength; /**< length of the user list */
  109. } shellmatta_auth_perm_t;
  110. /**
  111. * @brief custom shellmatta authentication method
  112. * @param[in] userId user id to log in (name of the user role)
  113. * @param[in] password password for the login
  114. * @return userId if password was correct - otherwise 0
  115. */
  116. typedef shellmatta_retCode_t (*shellmatta_auth_check_t)(const uint32_t userId, const char* password);
  117. /**
  118. * @brief shellmatta authentication log method - will be called whenever a login attempt is done
  119. * @param[in] userId userId to be logged in (0 on unknown user)
  120. * @param[in] success true: the login succeeded
  121. */
  122. typedef void (*shellmatta_auth_log_t)(const uint32_t userId, bool success);
  123. /**
  124. * @brief login states
  125. */
  126. typedef enum
  127. {
  128. SHELLMATTA_AUTH_IDLE, /**< authentication system waits */
  129. SHELLMATTA_AUTH_USERNAME, /**< input of username */
  130. SHELLMATTA_AUTH_PASSWORD /**< input of password */
  131. } shellmatta_auth_state_t;
  132. #endif
  133. /**
  134. * @brief structure of one shellmatta command
  135. */
  136. typedef struct shellmatta_cmd
  137. {
  138. char *cmd; /**< command name */
  139. char *cmdAlias; /**< command alias */
  140. char *helpText; /**< help text to print in "help" command */
  141. char *usageText; /**< usage text - printed on "help cmd" */
  142. shellmatta_cmdFct_t cmdFct; /**< pointer to the cmd callack function */
  143. struct shellmatta_cmd *next; /**< pointer to next command or NULL */
  144. #ifdef SHELLMATTA_AUTHENTICATION
  145. shellmatta_auth_perm_t *authLink; /**< internally used - pointer to perm list */
  146. #endif
  147. } shellmatta_cmd_t;
  148. /**
  149. * @brief structure of one shellmatta instance
  150. */
  151. typedef struct
  152. {
  153. uint32_t magic; /**< magic number to check if initialized */
  154. char *buffer; /**< input buffer */
  155. uint32_t bufferSize; /**< size of the input buffer */
  156. uint32_t inputCount; /**< offset of the current write operation */
  157. uint32_t byteCounter; /**< counter used to loop over input data */
  158. uint32_t lastNewlineIdx; /**< index of the lest newline */
  159. uint32_t cursor; /**< offset where the cursor is at */
  160. uint32_t stdinIdx; /**< start index of stdin in buffer */
  161. uint32_t stdinLength; /**< length of the stdin data */
  162. char *historyBuffer; /**< buffer to store the last commands */
  163. uint32_t historyBufferSize; /**< size of the history buffer */
  164. uint32_t historyStart; /**< index of the oldest stored command */
  165. uint32_t historyEnd; /**< index of the newest stored command */
  166. uint32_t historyRead; /**< index of the current search */
  167. bool historyReadUp; /**< flag to show the last history dir */
  168. uint32_t tabCounter; /**< counts the tabulator key presses */
  169. uint32_t escapeCounter; /**< counts the characters of an escape seq */
  170. char escapeChars[4u]; /**< buffer to save the escape characters */
  171. uint32_t hereStartIdx; /**< heredoc start of "<<" */
  172. uint32_t hereDelimiterIdx; /**< heredoc delimiter index in input */
  173. uint32_t hereLength; /**< length of the heredoc delimiter */
  174. bool echoEnabled; /**< if true the input is printed */
  175. bool dirty; /**< dirty flag to show changes */
  176. const char *prompt; /**< prompt is printed after every command */
  177. char delimiter; /**< delimiter (return) to terminate a cmd */
  178. shellmatta_mode_t mode; /**< mode of the shell */
  179. shellmatta_write_t write; /**< pointer to write function */
  180. shellmatta_cmd_t helpCmd; /**< help command structure */
  181. shellmatta_cmd_t *cmdList; /**< pointer to the first command */
  182. shellmatta_cmd_t *continuousCmd; /**< command to be called continuously */
  183. shellmatta_cmd_t *busyCmd; /**< command to be polled (busy mode) */
  184. bool cmdListIsConst; /**< true if the #cmdList was passed during
  185. initialization */
  186. shellmatta_opt_t optionParser; /**< option parser sructure */
  187. #ifdef SHELLMATTA_AUTHENTICATION
  188. shellmatta_auth_state_t loginState; /**< state variable of the login cmd */
  189. shellmatta_cmd_t loginCmd; /**< login command structure */
  190. shellmatta_cmd_t logoutCmd; /**< logout command structure */
  191. uint32_t userId; /**< user ID of the current session */
  192. uint32_t tmpUserId; /**< remporary user ID during input */
  193. shellmatta_auth_user_t *userPointer; /**< pointer to the user in the user list */
  194. shellmatta_auth_user_t *userList; /**< user list */
  195. uint32_t userListLength; /**< length of the user list */
  196. shellmatta_auth_perm_t *permList; /**< permission list */
  197. uint32_t permListLength; /**< length of the permission list */
  198. shellmatta_auth_check_t checkFct; /**< custom credential check function */
  199. shellmatta_auth_log_t logFct; /**< login log function */
  200. #endif
  201. } shellmatta_instance_t;
  202. shellmatta_retCode_t shellmatta_doInit( shellmatta_instance_t *inst,
  203. shellmatta_handle_t *handle,
  204. char *buffer,
  205. uint32_t bufferSize,
  206. char *historyBuffer,
  207. uint32_t historyBufferSize,
  208. const char *prompt,
  209. const shellmatta_cmd_t *cmdList,
  210. shellmatta_write_t writeFct);
  211. shellmatta_retCode_t shellmatta_resetShell( shellmatta_handle_t handle,
  212. bool printPrompt);
  213. shellmatta_retCode_t shellmatta_addCmd( shellmatta_handle_t handle,
  214. shellmatta_cmd_t *cmd);
  215. shellmatta_retCode_t shellmatta_removeCmd( shellmatta_handle_t handle,
  216. shellmatta_cmd_t *cmd);
  217. shellmatta_retCode_t shellmatta_configure( shellmatta_handle_t handle,
  218. shellmatta_mode_t mode,
  219. bool echoEnabled,
  220. char delimiter);
  221. shellmatta_retCode_t shellmatta_processData(shellmatta_handle_t handle,
  222. char *data,
  223. uint32_t size);
  224. shellmatta_retCode_t shellmatta_write( shellmatta_handle_t handle,
  225. char *data,
  226. uint32_t length);
  227. shellmatta_retCode_t shellmatta_read( shellmatta_handle_t handle,
  228. char **data,
  229. uint32_t *length);
  230. shellmatta_retCode_t shellmatta_opt( shellmatta_handle_t handle,
  231. const char *optionString,
  232. char *option,
  233. char **argument,
  234. uint32_t *argLen);
  235. shellmatta_retCode_t shellmatta_opt_long( shellmatta_handle_t handle,
  236. const shellmatta_opt_long_t *longOptions,
  237. char *option,
  238. char **argument,
  239. uint32_t *argLen);
  240. #ifndef SHELLMATTA_STRIP_PRINTF
  241. shellmatta_retCode_t shellmatta_printf( shellmatta_handle_t handle,
  242. const char *fmt,
  243. ...);
  244. #endif
  245. #ifdef SHELLMATTA_AUTHENTICATION
  246. shellmatta_retCode_t shellmatta_auth_init( shellmatta_handle_t handle,
  247. shellmatta_auth_user_t *userList,
  248. uint32_t userListLength,
  249. shellmatta_auth_perm_t *permList,
  250. uint32_t permListLength,
  251. bool customLogin,
  252. shellmatta_auth_check_t checkFct,
  253. shellmatta_auth_log_t logFct);
  254. shellmatta_retCode_t shellmatta_auth_login( shellmatta_handle_t handle,
  255. uint32_t userId);
  256. shellmatta_retCode_t shellmatta_auth_logout( shellmatta_handle_t handle);
  257. uint32_t shellmatta_auth_getLoggedInUserId( shellmatta_handle_t handle);
  258. shellmatta_retCode_t shellmatta_auth_getLoggedInUserName( shellmatta_handle_t handle,
  259. char *data,
  260. uint32_t *length);
  261. shellmatta_retCode_t shellmatta_auth_chpasswd( shellmatta_handle_t handle,
  262. const char *username,
  263. const char *password);
  264. #endif
  265. #endif
  266. /** @} */