shell_var.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486
  1. /*
  2. * shell_var.c
  3. */
  4. #include <stdlib.h>
  5. #include <assert.h>
  6. #include <string.h>
  7. #include <ctype.h>
  8. #include "lub/string.h"
  9. #include "private.h"
  10. /*----------------------------------------------------------- */
  11. /*
  12. * search the current viewid string for a variable
  13. */
  14. void clish_shell__expand_viewid(const char *viewid, lub_bintree_t *tree,
  15. clish_context_t *context)
  16. {
  17. char *expanded;
  18. char *q, *saveptr;
  19. expanded = clish_shell_expand(viewid, SHELL_VAR_NONE, context);
  20. if (!expanded)
  21. return;
  22. for (q = strtok_r(expanded, ";", &saveptr);
  23. q; q = strtok_r(NULL, ";", &saveptr)) {
  24. char *value;
  25. clish_var_t *var;
  26. value = strchr(q, '=');
  27. if (!value)
  28. continue;
  29. *value = '\0';
  30. value++;
  31. /* Create var instance */
  32. var = clish_var_new(q);
  33. lub_bintree_insert(tree, var);
  34. clish_var__set_value(var, value);
  35. }
  36. lub_string_free(expanded);
  37. }
  38. /*----------------------------------------------------------- */
  39. /*
  40. * expand context dependent fixed-name variables
  41. */
  42. static char *find_context_var(const char *name, clish_context_t *this)
  43. {
  44. char *result = NULL;
  45. clish_shell_t *shell = this->shell;
  46. if (!lub_string_nocasecmp(name, "_width")) {
  47. char tmp[5];
  48. snprintf(tmp, sizeof(tmp), "%u",
  49. tinyrl__get_width(shell->tinyrl));
  50. tmp[sizeof(tmp) - 1] = '\0';
  51. result = strdup(tmp);
  52. } else if (!lub_string_nocasecmp(name, "_height")) {
  53. char tmp[5];
  54. snprintf(tmp, sizeof(tmp), "%u",
  55. tinyrl__get_height(shell->tinyrl));
  56. tmp[sizeof(tmp) - 1] = '\0';
  57. result = strdup(tmp);
  58. } else if (!lub_string_nocasecmp(name, "_watchdog_timeout")) {
  59. char tmp[5];
  60. snprintf(tmp, sizeof(tmp), "%u", shell->wdog_timeout);
  61. tmp[sizeof(tmp) - 1] = '\0';
  62. result = strdup(tmp);
  63. } else if (!this->cmd) { /* The vars dependent on command */
  64. return NULL;
  65. } else if (!lub_string_nocasecmp(name, "_full_cmd")) {
  66. result = lub_string_dup(clish_command__get_name(this->cmd));
  67. } else if (!lub_string_nocasecmp(name, "_cmd")) {
  68. result = lub_string_dup(clish_command__get_name(
  69. clish_command__get_cmd(this->cmd)));
  70. } else if (!lub_string_nocasecmp(name, "_orig_cmd")) {
  71. result = lub_string_dup(clish_command__get_name(
  72. clish_command__get_orig(this->cmd)));
  73. } else if (!lub_string_nocasecmp(name, "_line")) {
  74. result = clish_shell__get_line(this);
  75. } else if (!lub_string_nocasecmp(name, "_full_line")) {
  76. result = clish_shell__get_full_line(this);
  77. } else if (!lub_string_nocasecmp(name, "_params")) {
  78. if (this->pargv)
  79. result = clish_shell__get_params(this);
  80. } else if (!lub_string_nocasecmp(name, "_interactive")) {
  81. if (clish_shell__get_interactive(this->shell))
  82. result = strdup("1");
  83. else
  84. result = strdup("0");
  85. } else if (!lub_string_nocasecmp(name, "_isatty")) {
  86. if (tinyrl__get_isatty(this->shell->tinyrl))
  87. result = strdup("1");
  88. else
  89. result = strdup("0");
  90. } else if (lub_string_nocasestr(name, "_prefix") == name) {
  91. int idx = 0;
  92. int pnum = 0;
  93. pnum = lub_string_wordcount(clish_command__get_name(this->cmd)) -
  94. lub_string_wordcount(clish_command__get_name(
  95. clish_command__get_cmd(this->cmd)));
  96. idx = atoi(name + strlen("_prefix"));
  97. if (idx < pnum) {
  98. lub_argv_t *argv = lub_argv_new(
  99. clish_command__get_name(this->cmd), 0);
  100. result = lub_string_dup(lub_argv__get_arg(argv, idx));
  101. lub_argv_delete(argv);
  102. }
  103. }
  104. return result;
  105. }
  106. /*--------------------------------------------------------- */
  107. static char *find_var(const char *name, lub_bintree_t *tree, clish_context_t *context)
  108. {
  109. clish_var_t *var = lub_bintree_find(tree, name);
  110. char *value;
  111. bool_t dynamic;
  112. char *res = NULL;
  113. if (!var)
  114. return NULL;
  115. /* Try to get saved value for static var */
  116. dynamic = clish_var__get_dynamic(var);
  117. if (!dynamic) {
  118. char *saved = clish_var__get_saved(var);
  119. if (saved)
  120. return lub_string_dup(saved);
  121. }
  122. /* Try to expand value field */
  123. value = clish_var__get_value(var);
  124. if (value)
  125. res = clish_shell_expand(value, SHELL_VAR_NONE, context);
  126. /* Try to execute ACTION */
  127. if (!res) {
  128. char *out = NULL;
  129. clish_context__set_action(context, clish_var__get_action(var));
  130. if (clish_shell_exec_action(context, &out)) {
  131. lub_string_free(out);
  132. return NULL;
  133. }
  134. res = out;
  135. }
  136. /* Save value for static var */
  137. if (!dynamic && res)
  138. clish_var__set_saved(var, res);
  139. return res;
  140. }
  141. /*--------------------------------------------------------- */
  142. static char *find_global_var(const char *name, clish_context_t *context)
  143. {
  144. clish_shell_t *shell = clish_context__get_shell(context);
  145. return find_var(name, &shell->var_tree, context);
  146. }
  147. /*--------------------------------------------------------- */
  148. static char *find_viewid_var(const char *name, clish_context_t *context)
  149. {
  150. clish_shell_t *shell = clish_context__get_shell(context);
  151. int depth = clish_shell__get_depth(shell);
  152. if (depth < 0)
  153. return NULL;
  154. return find_var(name, &shell->pwdv[depth]->viewid, context);
  155. }
  156. static char * chardiff(const char *syms, const char *minus)
  157. {
  158. char *dst = malloc(strlen(syms) + 1);
  159. char *p = dst;
  160. const char *src;
  161. for (src = syms; *src; src++) {
  162. if (!strchr(minus, *src))
  163. *(p++) = *src;
  164. }
  165. *p = '\0';
  166. return dst;
  167. }
  168. /*--------------------------------------------------------- */
  169. /*
  170. * return the next segment of text from the provided string
  171. * segments are delimited by variables within the string.
  172. */
  173. static char *expand_nextsegment(const char **string, const char *escape_chars,
  174. clish_context_t *this)
  175. {
  176. const char *p = *string;
  177. char *result = NULL;
  178. size_t len = 0;
  179. if (!p)
  180. return NULL;
  181. if (*p && (p[0] == '$') && (p[1] == '{')) {
  182. /* start of a variable */
  183. const char *tmp;
  184. p += 2;
  185. tmp = p;
  186. /*
  187. * find the end of the variable
  188. */
  189. while (*p && p++[0] != '}')
  190. len++;
  191. /* ignore non-terminated variables */
  192. if (p[-1] == '}') {
  193. bool_t valid = BOOL_FALSE;
  194. char *text, *q;
  195. char *saveptr;
  196. /* get the variable text */
  197. text = lub_string_dupn(tmp, len);
  198. /*
  199. * tokenise this INTO ':' separated words
  200. * and either expand or duplicate into the result string.
  201. * Only return a result if at least
  202. * of the words is an expandable variable
  203. */
  204. for (q = strtok_r(text, ":", &saveptr);
  205. q; q = strtok_r(NULL, ":", &saveptr)) {
  206. char *var;
  207. int mod_quote = 0; /* quote modifier */
  208. int mod_esc = 0; /* internal escape modifier */
  209. int mod_esc_chars = 1; /* escaping */
  210. int mod_esc_dec = 0; /* remove internal chars from escaping */
  211. char *space;
  212. char *all_esc = NULL;
  213. /* Search for modifiers */
  214. while (*q && !isalpha(*q)) {
  215. if ('#' == *q) {
  216. mod_quote = 1;
  217. mod_esc = 1;
  218. } else if ('\\' == *q) {
  219. mod_esc = 1;
  220. } else if ('!' == *q) {
  221. mod_quote = 1;
  222. mod_esc = 1;
  223. mod_esc_chars = 0;
  224. } else if ('~' == *q) {
  225. mod_esc = 1;
  226. mod_esc_chars = 0;
  227. } else if (('_' == *q) && ('_' == *(q+1))) {
  228. mod_esc_dec = 1;
  229. q++;
  230. break;
  231. } else
  232. break;
  233. q++;
  234. }
  235. /* Get clean variable value */
  236. var = clish_shell_expand_var(q, this);
  237. if (!var) {
  238. lub_string_cat(&result, q);
  239. continue;
  240. }
  241. valid = BOOL_TRUE;
  242. /* Quoting */
  243. if (mod_quote)
  244. space = strchr(var, ' ');
  245. if (mod_quote && space)
  246. lub_string_cat(&result, "\"");
  247. /* Escape special chars */
  248. if (escape_chars && mod_esc_chars) {
  249. /* Remove internal esc from escape chars */
  250. if (mod_esc_dec)
  251. all_esc = chardiff(escape_chars,
  252. lub_string_esc_quoted);
  253. else
  254. all_esc = lub_string_dup(escape_chars);
  255. }
  256. /* Internal escaping */
  257. if (mod_esc)
  258. lub_string_cat(&all_esc,
  259. lub_string_esc_quoted);
  260. /* Real escaping */
  261. if (all_esc) {
  262. char *tstr = lub_string_encode(var,
  263. all_esc);
  264. lub_string_free(var);
  265. var = tstr;
  266. lub_string_free(all_esc);
  267. }
  268. /* copy the expansion or the raw word */
  269. lub_string_cat(&result, var);
  270. /* Quoting */
  271. if (mod_quote && space)
  272. lub_string_cat(&result, "\"");
  273. lub_string_free(var);
  274. }
  275. if (!valid) {
  276. /* not a valid variable expansion */
  277. lub_string_free(result);
  278. result = lub_string_dup("");
  279. }
  280. /* finished with the variable text */
  281. lub_string_free(text);
  282. }
  283. } else {
  284. /* find the start of a variable */
  285. while (*p) {
  286. if ((p[0] == '$') && (p[1] == '{'))
  287. break;
  288. len++;
  289. p++;
  290. }
  291. if (len > 0)
  292. result = lub_string_dupn(*string, len);
  293. }
  294. /* move the string pointer on for next time... */
  295. *string = p;
  296. return result;
  297. }
  298. /*--------------------------------------------------------- */
  299. /*
  300. * This function builds a dynamic string based on that provided
  301. * subtituting each occurance of a "${FRED}" type variable sub-string
  302. * with the appropriate value.
  303. */
  304. char *clish_shell_expand(const char *str, clish_shell_var_t vtype, clish_context_t *context)
  305. {
  306. char *seg, *result = NULL;
  307. const char *escape_chars = NULL;
  308. const clish_command_t *cmd = clish_context__get_cmd(context);
  309. /* Escape special characters */
  310. if (SHELL_VAR_REGEX == vtype) {
  311. if (cmd)
  312. escape_chars = clish_command__get_regex_chars(cmd);
  313. if (!escape_chars)
  314. escape_chars = lub_string_esc_regex;
  315. } else if (SHELL_VAR_ACTION == vtype) {
  316. if (cmd)
  317. escape_chars = clish_command__get_escape_chars(cmd);
  318. if (!escape_chars)
  319. escape_chars = lub_string_esc_default;
  320. }
  321. /* read each segment and extend the result */
  322. while ((seg = expand_nextsegment(&str, escape_chars, context))) {
  323. lub_string_cat(&result, seg);
  324. lub_string_free(seg);
  325. }
  326. return result;
  327. }
  328. /*--------------------------------------------------------- */
  329. char *clish_shell__get_params(clish_context_t *context)
  330. {
  331. clish_pargv_t *pargv = clish_context__get_pargv(context);
  332. char *line = NULL;
  333. unsigned i, cnt;
  334. const clish_param_t *param;
  335. const clish_parg_t *parg;
  336. char *request = NULL;
  337. if (!pargv)
  338. return NULL;
  339. cnt = clish_pargv__get_count(pargv);
  340. for (i = 0; i < cnt; i++) {
  341. param = clish_pargv__get_param(pargv, i);
  342. if (clish_param__get_hidden(param))
  343. continue;
  344. parg = clish_pargv__get_parg(pargv, i);
  345. if (request)
  346. lub_string_cat(&request, " ");
  347. lub_string_cat(&request, "${!");
  348. lub_string_cat(&request, clish_parg__get_name(parg));
  349. lub_string_cat(&request, "}");
  350. }
  351. line = clish_shell_expand(request, SHELL_VAR_NONE, context);
  352. lub_string_free(request);
  353. return line;
  354. }
  355. /*--------------------------------------------------------- */
  356. static char *internal_get_line(clish_context_t *context, int cmd_type)
  357. {
  358. const clish_command_t *cmd = clish_context__get_cmd(context);
  359. clish_pargv_t *pargv = clish_context__get_pargv(context);
  360. char *line = NULL;
  361. char *params = NULL;
  362. if (0 == cmd_type) /* __cmd */
  363. lub_string_cat(&line, clish_command__get_name(
  364. clish_command__get_cmd(cmd)));
  365. else /* __full_cmd */
  366. lub_string_cat(&line, clish_command__get_name(cmd));
  367. if (!pargv)
  368. return line;
  369. params = clish_shell__get_params(context);
  370. if (params) {
  371. lub_string_cat(&line, " ");
  372. lub_string_cat(&line, params);
  373. }
  374. lub_string_free(params);
  375. return line;
  376. }
  377. /*--------------------------------------------------------- */
  378. char *clish_shell__get_line(clish_context_t *context)
  379. {
  380. return internal_get_line(context, 0); /* __cmd */
  381. }
  382. /*--------------------------------------------------------- */
  383. char *clish_shell__get_full_line(clish_context_t *context)
  384. {
  385. return internal_get_line(context, 1); /* __full_cmd */
  386. }
  387. /*--------------------------------------------------------- */
  388. char *clish_shell_expand_var(const char *name, clish_context_t *context)
  389. {
  390. clish_shell_t *this;
  391. const clish_command_t *cmd;
  392. clish_pargv_t *pargv;
  393. const char *tmp = NULL;
  394. char *string = NULL;
  395. assert(name);
  396. if (!context)
  397. return NULL;
  398. this = clish_context__get_shell(context);
  399. cmd = clish_context__get_cmd(context);
  400. pargv = clish_context__get_pargv(context);
  401. /* try and substitute a parameter value */
  402. if (pargv) {
  403. const clish_parg_t *parg = clish_pargv_find_arg(pargv, name);
  404. if (parg)
  405. tmp = clish_parg__get_value(parg);
  406. }
  407. /* try and substitute the param's default */
  408. if (!tmp && cmd)
  409. tmp = clish_paramv_find_default(
  410. clish_command__get_paramv(cmd), name);
  411. /* try and substitute a viewId variable */
  412. if (!tmp && this)
  413. tmp = string = find_viewid_var(name, context);
  414. /* try and substitute context fixed variable */
  415. if (!tmp)
  416. tmp = string = find_context_var(name, context);
  417. /* try and substitute a global var value */
  418. if (!tmp && this)
  419. tmp = string = find_global_var(name, context);
  420. /* get the contents of an environment variable */
  421. if (!tmp)
  422. tmp = getenv(name);
  423. if (string)
  424. return string;
  425. return lub_string_dup(tmp);
  426. }
  427. /*----------------------------------------------------------- */