xtscrpt.c
上传用户:duobangkj
上传日期:2007-01-07
资源大小:70k
文件大小:44k
源码类别:

Telnet客户端

开发平台:

Unix_Linux

  1. /*  xtscrpt.c -- scripting for XT
  2. This file uses 4-character tabstops
  3. Author: larry gensch, December 1987
  4. Major rewrite: fred buck, Jan 1989
  5. Binding code: larry gensch, September 1991
  6. This code is released to the public domain
  7. */
  8. #include <stdio.h>
  9. #include <string.h>
  10. #include <sys/types.h>
  11. #include <sys/timeb.h>
  12. #include <time.h>
  13. #include <ctype.h>
  14. #include <signal.h>
  15. #include <setjmp.h>
  16. #include <sys/stat.h>
  17. #include "xt.h"
  18. jmp_buf here;
  19. extern FILE *cfp;
  20. short ttyflag, debugflag, scriptflag,
  21. mrbstart, /* ring buffer start pointer */
  22. mrbcount, /* ring buffer counter */
  23. BREAK = 0; /* a hook for a later 'trap' keyword */
  24. extern short eofflag;
  25. extern int s_set(), s_exit();
  26. extern void divert(), set_onoff();
  27. int my_escape = 1; /* Control-A; resettable at run-time */
  28. char mringbuf[LG_BUFF]; /* ring buffer for modem input */
  29. static S_abort();
  30. static void unsetall(), S_bombout(), S_call();
  31. static char *NO_ARG = "%s command must have an argument";
  32. static bindfunc_t   find_function(); /* bindfunc_t : see xt.h */
  33. binding_t *first_binding = NIL(binding_t);
  34. static bindstr_t function_list[] = {
  35. {ENDCHAR, "endchar", "Exit terminal mode"},
  36. {QUITCHR, "quitchr", "Quit program"},
  37. {CAPTYES, "captyes", "Turn on terminal mode capture"},
  38. {CAPTEND, "captend", "Turn off terminal mode capture"},
  39. {DIVCHAR, "divchar", "Send file through modem"},
  40. {SCRPCHR, "scrpchr", "Prompt for script file"},
  41. {HLPCHAR, "hlpchar", "Display terminal mode key bindings"},
  42. {EMITSTR, "emitstr", "Emit string"},
  43. {DOSCRPT, "doscrpt", "Execute script file"}
  44. };
  45. #define FUNCTION_COUNT (sizeof(function_list) / sizeof(function_list[0]))
  46. static RETSIGTYPE 
  47. newsigint(junk)
  48. int junk;
  49. {
  50. eofflag++;
  51. show_abort();
  52. S_bombout();
  53. longjmp(here,1);
  54. }
  55. void 
  56. do_script(file)
  57. char *file;
  58. {
  59. RETSIGTYPE (*oldvec)();
  60. capture = eofflag = FALSE;
  61. scriptflag = TRUE;
  62. oldvec = signal(SIGINT, newsigint);
  63. if (!setjmp(here))
  64. S_call(file);
  65. unsetall();
  66. if (capture)
  67. capture = FALSE,
  68. fclose(cfp);
  69. scriptflag = FALSE;
  70. signal(SIGINT, oldvec);
  71. }
  72. static 
  73. k_seen(bytes,fword)
  74. long bytes;
  75. char *fword;
  76. {
  77. int i, j, k=0;
  78. char *ptr;
  79. sprintf(line,""%s"",fword);
  80. lptr = line;
  81. getword();
  82. lc_word(word);
  83. ptr = fword;
  84. if (!fword || !*fword){
  85. sprintf(Msg,NO_ARG,"SEEN");
  86. S2(Msg);
  87. return FAILURE;
  88. }
  89. j = mrbstart - 1;
  90. if (bytes>0 && bytes<LG_BUFF)
  91. k = mrbcount - bytes; /* check only most recent 'bytes' bytes */
  92. i = 0;
  93. while ((i++)<mrbcount){
  94. ++j;
  95. j = j % LG_BUFF;
  96. if (i<k)
  97. continue;
  98. if (tolower(mringbuf[j]) != *ptr){
  99. ptr = word;
  100. continue;
  101. }
  102. if (*(++ptr)=='')
  103. return SUCCESS;
  104. }
  105. return FAILURE;
  106. }
  107. k_waitfor(interval,fword)
  108. long interval;
  109. char *fword;
  110. {
  111. register int c, i = -1 ;
  112. register time_t limit, waitfor_msec = 0;
  113. char *ptr;
  114. mrbstart = mrbcount = 0;
  115. sprintf(line,""%s"",fword);
  116. lptr = line;
  117. getword();
  118. lc_word(word);
  119. ptr = word;
  120. if (interval < -1){
  121. waitfor_msec = -interval;
  122. goto SPITOUT;
  123. }
  124. if (!fword || word[0] == ''){
  125. sprintf(Msg,NO_ARG,"WAITFOR");
  126. S2(Msg);
  127. return FAILURE;
  128. }
  129. waitfor_msec = 1000 * ((interval > 0) ? interval : 30);
  130. eofflag = FALSE;
  131. SPITOUT: limit = mtime() + waitfor_msec;
  132. while (limit >= mtime() && !eofflag){
  133. if ((c = readbyte(1)) == -1)
  134. continue;
  135. if (cismode && c==ENQ){
  136. s_cis();
  137. goto SPITOUT;
  138. }
  139. ++i;
  140. i = i % LG_BUFF;
  141. mringbuf[i] = c;
  142. mrbstart = mrbstart % LG_BUFF;
  143. if (mrbcount<LG_BUFF)
  144. ++mrbcount;
  145. else
  146. ++mrbstart,
  147. mrbstart = mrbstart % LG_BUFF;
  148. if (ttyflag)
  149. fputc(c,tfp);
  150. if (capture && c != 'r')
  151. fputc(c,cfp);
  152. if (tolower(c) != *ptr){
  153. ptr = word;
  154. continue;
  155. }
  156. if (*++ptr == '')
  157. return SUCCESS;
  158. }
  159. return FAILURE;
  160. }
  161. static 
  162. k_transmit(junk,fword)
  163. long junk;
  164. char *fword;
  165. {
  166. sprintf(line,""%s"",fword);
  167. lptr = line;
  168. getword();
  169. if (!fword || word[0] == ''){
  170. sprintf(Msg,NO_ARG,"TRANSMIT");
  171. S2(Msg);
  172. return FAILURE;
  173. }
  174. send_string(word, strlen(word));
  175. return SUCCESS;
  176. }
  177. static 
  178. k_pause(pause_time,junk)
  179. long pause_time;
  180. char *junk;
  181. {
  182. pause_time = pause_time ? pause_time : 5;
  183. sleep((unsigned)pause_time);
  184. return SUCCESS;
  185. }
  186. static
  187. k_host(junk,fword)
  188. long junk;
  189. char *fword;
  190. {
  191. sprintf(line,""%s"",fword);
  192.     lptr = line;
  193.     getword();
  194.     if (!fword || word[0] == ''){
  195.         sprintf(Msg,NO_ARG,"HOST");
  196.         S2(Msg);
  197.         return FAILURE;
  198.     }
  199. sprintf(hostname,"%s",word);
  200.     xttn();
  201.     return SUCCESS;
  202. }
  203. static 
  204. k_capture(junk,fword)
  205. long junk;
  206. char *fword;
  207. {
  208. int val = capture;
  209. sprintf(word,"capture");
  210. sprintf(line,"%s",fword);
  211. lptr = line;
  212. set_onoff(&capture);
  213. if (val == capture)
  214. return SUCCESS;
  215. if (!capture)
  216. fclose(cfp);
  217. else {
  218. if (!(cfp = fopen(captfile, "a"))){
  219. sprintf(Msg,"Can't open capture file %s",captfile);
  220. S2(Msg);
  221. eofflag++;
  222. return FAILURE;
  223. }
  224. }
  225. return SUCCESS;
  226. }
  227. static 
  228. k_debug(junk,fword)
  229. long junk;
  230. char *fword;
  231. {
  232. sprintf(word,"debug");
  233. sprintf(line,"%s",fword);
  234. lptr = line;
  235. set_onoff(&debugflag);
  236. return SUCCESS;
  237. }
  238. static 
  239. k_tty(junk,fword)
  240. long junk;
  241. char *fword;
  242. {
  243. sprintf(word,"tty");
  244. sprintf(line,"%s",fword);
  245. lptr = line;
  246. set_onoff(&ttyflag);
  247. return SUCCESS;
  248. }
  249. static 
  250. k_type(junk,fword)
  251. long junk;
  252. char *fword;
  253. {
  254. sprintf(line,"%s",fword);
  255. lptr = line;
  256. getword();
  257. if (!fword || word[0] == ''){
  258. sprintf(Msg,NO_ARG,"TYPE");
  259. S2(Msg);
  260. return FAILURE;
  261. }
  262. divert(TRUE);
  263. return SUCCESS;
  264. }
  265. /* unbind_key() removes the binding attached to the keycode specified by (c).*/
  266. static void 
  267. unbind_key(c)
  268. int c;
  269. {
  270. binding_t *ptr = first_binding, *prev = NIL(binding_t);
  271. if (!ptr)
  272. return;
  273. while (ptr) {
  274. if (ptr->bs_c == c) {
  275. if (ptr->bs_string)
  276. free(ptr->bs_string);
  277. if (prev)
  278. prev->bs_next = ptr->bs_next;
  279. else
  280. first_binding->bs_next = ptr->bs_next;
  281. free(ptr);
  282. return;
  283. }
  284. prev = ptr;
  285. ptr = ptr->bs_next;
  286. }
  287. }
  288. /* bind_key() binds the key whose ASCII code is specified by (c) to the
  289. function whose code is specified by (function). Emit strings
  290. (for EMITSTR) and script names (for DOSCRPT) are specified by (string).
  291. */
  292. static void 
  293. bind_key(c,function,string)
  294. int c;
  295. int function;
  296. char *string;
  297. {
  298. binding_t *ptr = (binding_t *) malloc(sizeof(binding_t)), *curr, *prev;
  299. if (!ptr) {
  300. S2("BIND_KEY allocation error");
  301. S_abort();
  302. }
  303. unbind_key(c);
  304. ptr->bs_c = c;
  305. ptr->bs_function = function;
  306. ptr->bs_string = strdup(string);
  307. /* The following is an insertion sort to ensure that the bindings are
  308.    stored in ascending sequence by key code.  This makes
  309.    show_bindings()'s display easier to read. -lg
  310. */
  311. for (prev = NIL(binding_t), curr = first_binding;
  312. curr != NIL(binding_t);
  313. prev = curr, curr = curr->bs_next) {
  314. if (ptr->bs_c < curr->bs_c) {
  315. if (!prev) {
  316. ptr->bs_next = first_binding;
  317. first_binding = ptr;
  318. break;
  319. } else {
  320. ptr->bs_next = curr;
  321. prev->bs_next = ptr;
  322. break;
  323. }
  324. }
  325. }
  326. if (curr == NIL(binding_t)) {
  327. if (!prev)
  328. first_binding = ptr;
  329. else
  330. prev->bs_next = ptr;
  331. ptr->bs_next = NIL(binding_t);
  332. }
  333. }
  334. /* bind_function() Binds the key whose code is represented by the value in
  335. (n) to execute the XT builtin function whose name is pointed to be (cptr).
  336. Any previous binding of the specified keycode is forgotten.
  337. This routine is designed to be an XT script builtin.
  338. */
  339. static 
  340. bind_function(n,cptr)
  341. long n;
  342. char *cptr;
  343. {
  344. int c;
  345. bindfunc_t code;
  346. if (n < 1L || n > 127L) {
  347. sprintf(Msg,"Invalid key code %d in BIND_FUNCTION command",n);
  348. S2(Msg);
  349. return FAILURE;
  350. }
  351. c = tolower((int) n);
  352. sprintf(line, ""%s"", cptr);
  353. lptr = line;
  354. getword();
  355. if (cptr && cptr[0] != '') {
  356. lc_word(word);
  357. code = find_function(word);
  358. if (code == BADFUNC) {
  359. sprintf(Msg,"Invalid function name '%s' in BIND_FUNCTION command",
  360. word);
  361. S2(Msg);
  362. return FAILURE;
  363. }
  364. bind_key(c, code, word);
  365. } else {
  366. sprintf(Msg,NO_ARG,"BIND_FUNCTION");
  367. S2(Msg);
  368. return FAILURE;
  369. }
  370. return SUCCESS;
  371. }
  372. /* bind_string() binds the key whose code is represented by the
  373. decimal value in (n) to emit the string pointed to by (cptr).
  374. Any previous binding of the specified keycode is forgotten.
  375. This routine is designed to be an XT script builtin.
  376. */
  377. static 
  378. bind_string(n,cptr)
  379. long n;
  380. char *cptr;
  381. {
  382. int c;
  383. if (n < 1L || n > 127L) {
  384. sprintf(Msg,"Invalid key code %d in BIND_STRING command",n);
  385. S2(Msg);
  386. return FAILURE;
  387. }
  388. c = tolower((int) n);
  389. sprintf(line, ""%s"", cptr);
  390. lptr = line;
  391. getword();
  392. if (cptr && cptr[0] != '')
  393. bind_key(c, EMITSTR, word);
  394. else {
  395. sprintf(Msg,NO_ARG,"BIND_STRING");
  396. S2(Msg);
  397. return FAILURE;
  398. }
  399. return SUCCESS;
  400. }
  401. /* bind_script() binds the key whose code is represented by the value in
  402. (n) to execute the XT script whose name is pointed to by (cptr).
  403. Any previous binding of the specified keycode is forgotten.
  404. This routine is designed to be an XT script builtin.
  405. */
  406. static 
  407. bind_script(n,cptr)
  408. long n;
  409. char *cptr;
  410. {
  411. int c;
  412. if (n < 1L || n > 127L) {
  413. sprintf(Msg,"Invalid key code %d in BIND_STRING command",n);
  414. S2(Msg);
  415. return FAILURE;
  416. }
  417. c = tolower((int) n);
  418. sprintf(line, ""%s"", cptr);
  419. lptr = line;
  420. getword();
  421. if (cptr && cptr[0] != '')
  422. bind_key(c, DOSCRPT, word);
  423. else {
  424. sprintf(Msg,NO_ARG,"BIND_SCRIPT");
  425. S2(Msg);
  426. return FAILURE;
  427. }
  428. return SUCCESS;
  429. }
  430. /* Variables Section */
  431. /* Most of the variable-handling logic is credit: Steve Manes 1987 */
  432. #define VNAMELEN 16 /* maximum name length for variables */
  433. #define VMAXSIZE 256 /* maximum length for CHAR variable */
  434. #define VMAXVARS 30 /* maximum number of user variables */
  435. #define VCHAR 'C' /* CHARACTER variable type */
  436. #define VNUM 'N' /* NUMERIC variable type (always 'long') */
  437. /* Variable structure */
  438. typedef struct var {
  439. char name[VNAMELEN+1]; /* variable name */
  440. struct var *next; /* ptr to next structure in var_list */
  441. char type; /* variable type */
  442. union { /* pointer to CHAR or NUM/DATE */
  443. char str[VMAXSIZE+1];
  444. long num;
  445. } u;
  446. } VAR;
  447. static VAR *Varlist = NIL(VAR); /* top of variable list */
  448. static VAR *Lastvar = NIL(VAR); /* bottom of variable list */
  449. /* Valid variable name characters */
  450. unchar 
  451. OKname[]= {
  452.  /* control characters */
  453.   0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
  454.  /* ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ */
  455. 1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,
  456.  /* A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [  ] ^ _ ` */
  457. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,
  458.  /* a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~    */
  459. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0
  460. };
  461. /* Return pointer to VAR structure for User or System variable
  462. 'name', otherwise return NIL(VAR).
  463. Variable contents in vp->u.[str|num]
  464. */
  465. static VAR *
  466. findvar(name)
  467. char *name;
  468. {
  469. static VAR *vp; /* pointer to output structure */
  470. if (!name || !*name || !Varlist)
  471. return NIL(VAR);
  472. vp = Varlist;
  473. while (vp){
  474. if (!strncmp(name, vp->name, VNAMELEN) )
  475. return vp;
  476. vp = vp->next;
  477. }
  478. return NIL(VAR); /* not found */
  479. }
  480. /* Delete User variable 'name' from VAR list.
  481. If variable doesn't exist, no error is returned
  482. */
  483. static void 
  484. unsetvar(name)
  485. char *name;
  486. {
  487. VAR *p;
  488. VAR *lastp;
  489. if (!name || !*name)
  490. return;
  491. for (p=Varlist; p; lastp = p, p = p->next){
  492. if (!strncmp(name, p->name, VNAMELEN) ){ /* name match? */
  493. if (Varlist == Lastvar) /* only 1 variable */
  494. Varlist = Lastvar = NIL(VAR); /* in list */
  495. else if (p == Varlist) /* first variable */
  496. Varlist = p->next;
  497. else {
  498. lastp->next = p->next; /* dump variable in middle
  499.    of list */
  500. if (p == Lastvar) /* or last object */
  501. Lastvar = lastp; /* in list */
  502. }
  503. free(p); /* reclaim memory */
  504. break;
  505. }
  506. }
  507. }
  508. /* Set the value of User variable 'name' to 'val' with 'type'.
  509. If variable exists, change its contents. Otherwise, create it.
  510. Returns: FAILURE or SUCCESS
  511. */
  512. static 
  513. setvar(name,type,str,val)
  514. char *name;
  515. char type;
  516. char *str;
  517. long *val;
  518. {
  519. VAR *vp;
  520. short i;
  521. if (!name || !*name)
  522. return FAILURE;
  523. if (!(vp = findvar(name))){ /* create new variable */
  524. for (i=0; i < VNAMELEN && name[i]; i++){
  525. if( !OKname[(name[i] & 0x7F)] || isdigit(name[0]) ){
  526. sprintf(Msg,"Illegal variable name '%s'",name);
  527. S_abort();
  528. }
  529. }
  530. if (!(vp = (VAR *)malloc(sizeof(VAR)))){
  531. sprintf(Msg,"%s: allocation error",name);
  532. S2(Msg);
  533. return FAILURE;
  534. }
  535. lc_word(name);
  536. strncpy(vp->name, name, VNAMELEN); /* set vari name */
  537. vp->next = NIL(VAR); /* flag 'no next' */
  538. if (!Varlist)
  539. Varlist = vp; /* first variable */
  540. else
  541. Lastvar->next = vp; /* add this to the list */
  542. Lastvar = vp; /* set 'last' pointer */
  543. }
  544. if (type == VCHAR)
  545. strncpy(vp->u.str, str, VMAXSIZE);
  546. else
  547. vp->u.num = *val;
  548. vp->type = type;
  549. return SUCCESS;
  550. }
  551. /* Unset all user variables, deallocating memory.
  552. No error returned
  553. */
  554. static void 
  555. unsetall()
  556. {
  557. VAR *p;
  558. VAR *nextp;
  559. if (!Varlist)
  560. return;
  561. p = Varlist;
  562. while (p->next){
  563. nextp = p->next;
  564. free(p);
  565. p = nextp;
  566. }
  567. Varlist = Lastvar = NIL(VAR);
  568. }
  569. /* end variables section */
  570. /* Action Primitives */
  571. static struct {
  572. char *name;
  573. int (*funcptr)();
  574. } s_acttab[] = {
  575. {"beep", beep},
  576. {"bind_function", bind_function},
  577. {"bind_script", bind_script},
  578. {"bind_string", bind_string},
  579. {"capture", k_capture},
  580. {"debug", k_debug},
  581. {"host", k_host},
  582. {"pause", k_pause},
  583. {"quit", s_exit},
  584. {"seen", k_seen},
  585. {"transmit", k_transmit},
  586. {"tty", k_tty},
  587. {"type", k_type},
  588. {"waitfor", k_waitfor},
  589. {NIL(char), 0}
  590. };
  591. /* end of primitives */
  592. /* token types */
  593. typedef enum {
  594. NULLTOK, /* terminating '' in script buffer */
  595. ACTION, /* an action (primitive or script cmd) */
  596. AFFIRM, /* script 'affirm' */
  597. BACKQUOT, /* script command substitution */
  598. SBREAK, /* script 'break' */
  599. CALL, /* script 'call' */
  600. COMMENT, /* comment */
  601. SCONTNUE, /* script 'continue' */
  602. DECR, /* script 'decr' */
  603. DO, /* script 'do' */
  604. DONE, /* script 'done' */
  605. ECHOS, /* script 'echo' */
  606. EFLAG, /* '-n' switch for script 'echo' cmd */
  607. ELSE, /* script 'else' */
  608. ENDIF, /* script 'endif' */
  609. ENDTRAP, /* script 'endtrap' */
  610. EQ, /* operator "equals" */
  611. EXIT, /* script 'exit' */
  612. SFILE, /* script 'file' */
  613. SFALSE, /* script 'false' */
  614. IF, /* script 'if' */
  615. INCR, /* script 'incr' */
  616. LESSTHAN, /* operator "less than" */
  617. LITERAL, /* a literal string (e.g. "abcde") */
  618. MORETHAN, /* operator "greater than" */
  619. NEGATE, /* negation operator for comparisons */
  620. NEQ, /* operator "not equal to" */
  621. NUMBER, /* a numeric constant (e.g. 12345) */
  622. PIPE, /* script 'pipe' */
  623. READ, /* script 'read' */
  624. SHELL, /* script 'shell' */
  625. SET, /* script 'assign' */
  626. STRAP, /* script 'trap' */
  627. TERMINAT, /* statement terminators (';' and 'n') */
  628. THEN, /* script 'then' */
  629. STRUE, /* script 'true' */
  630. UNSET, /* script 'unset' */
  631. UNTRAP, /* script 'untrap' */
  632. XTSET, /* xt 'set' command */
  633. VARNAME, /* a variable name */
  634. WHILE, /* script 'while' */
  635. TTERROR, /* unrecognizable token */
  636. TIMEOUT /* script 'timeout' */
  637. } TOK_TYPE;
  638. /* token table */
  639. static struct {
  640. char *name;
  641. TOK_TYPE token;
  642. } s_toktab[] = {
  643. {"NULLTOK", NULLTOK},
  644. {"ACTION", ACTION},
  645. {"affirm", AFFIRM},
  646. {"BACKQUOT", BACKQUOT},
  647. {"break", SBREAK},
  648. {"call", CALL},
  649. {"COMMENT", COMMENT},
  650. {"continue", SCONTNUE},
  651. {"decr", DECR},
  652. {"do", DO},
  653. {"done", DONE},
  654. {"echo", ECHOS},
  655. {"-n", EFLAG},
  656. {"else", ELSE},
  657. {"endif", ENDIF},
  658. {"fi", ENDIF},
  659. {"ENDTRAP", ENDTRAP},
  660. {"eq", EQ},
  661. {"exit", EXIT},
  662. {"false", SFALSE},
  663. {"file", SFILE},
  664. {"if", IF},
  665. {"incr", INCR},
  666. {"lessthan", LESSTHAN},
  667. {"LITERAL", LITERAL},
  668. {"morethan", MORETHAN},
  669. {"!", NEGATE},
  670. {"neq", NEQ},
  671. {"NUMBER", NUMBER},
  672. {"pipe", PIPE},
  673. {"read", READ},
  674. {"assign", SET},
  675. {"shell", SHELL},
  676. {"TRAP", STRAP}, /* 'trap' keyword left for later dev't */
  677. {"TERMINAT", TERMINAT},
  678. {"then", THEN},
  679. {"timeout", TIMEOUT},
  680. {"true", STRUE},
  681. {"unassign", UNSET},
  682. {"UNTRAP", UNTRAP},
  683. {"set", XTSET},
  684. {"VARNAME", VARNAME},
  685. {"while", WHILE},
  686. {"", TTERROR}
  687. };
  688. /* end token types */
  689. /* tok_value is set by lexan() in the following instances:
  690.  TOK_TYPE NUMBER:  (long) value of number
  691.  TOK_TYPE LITERAL:  pointer to beginning of quoted string
  692.  TOK_TYPE ACTION:  function pointer to appropriate vector
  693.  TOK_TYPE VARNAME:  pointer to VAR struct
  694.  TOK_TYPE TTERROR:  pointer to strange construction in script
  695. All other values of TOK_TYPE don't require further information.
  696. */
  697. static union {
  698. long numval; /* numbers */
  699. char *strptr; /* for literal strings (points to initial '"') */
  700. int (*funcptr)(); /* vector for primitives */
  701. VAR *varptr; /* for variables */
  702. } tok_value;
  703. /* lexan() is the lexical analyzer, which translates words
  704. into token types and sets tok_value appropriately. It's
  705. called repeatedly by the language parser, S_parse().
  706. */
  707. static TOK_TYPE
  708. lexan(pcptr)
  709. char **pcptr; /* address of script program counter */
  710. {
  711. long nvalue, negpos = 1;
  712. VAR *varptr;
  713. FILE *bqpipe;
  714. int i, c; /* really a char, but 'int' to spot EOF */
  715. static char *cptr, *lasttok,
  716. latoken[VNAMELEN+1], temp[VMAXSIZE+1], bqcmd[VMAXSIZE+1];
  717. extern FILE *popen();
  718. /* if in debug mode, echo script line to tfp */
  719. if (debugflag && *pcptr>lasttok){
  720. cptr = *pcptr - 1;
  721. while (*cptr==' ' || *cptr=='t') --cptr;
  722. if (*cptr=='n'){
  723. fputs("+ ",tfp);
  724. ++cptr;
  725. while (*cptr!='n' && *cptr)
  726. fputc(*(cptr++),tfp);
  727. fputc('r',tfp),
  728. fputc('n',tfp);
  729. }
  730. }
  731. /* skip to beginning of next token */
  732. while (**pcptr==' ' || **pcptr=='t') ++(*pcptr);
  733. tok_value.strptr = cptr = lasttok = *pcptr; /* save place */
  734. /* negation operator for comparisons */
  735. if (*cptr=='!' && (*(cptr+1)==' ' || *(cptr+1)=='t')){
  736. ++cptr;
  737. *pcptr = cptr;
  738. return NEGATE;
  739. }
  740. /* comment in script */
  741. if (*cptr=='#'){
  742. while (*cptr && *cptr!='n') ++cptr;
  743. *pcptr = cptr;
  744. return TERMINAT;
  745. }
  746. /* statement terminator */
  747. if (*cptr==';' || *cptr=='n'){
  748. ++cptr;
  749. *pcptr = cptr;
  750. return TERMINAT;
  751. }
  752. /* end of script */
  753. if (*cptr=='')
  754. return NULLTOK;
  755. /* quoted literal string */
  756. if (*cptr=='"'){
  757. ++cptr;
  758. while (*cptr && *cptr!='n' && !(*cptr=='"' && *(cptr-1)!='\'))
  759. ++cptr;
  760. if (*cptr=='"'){
  761. ++cptr;
  762. *pcptr = cptr;
  763. return LITERAL;
  764. }
  765. sprintf(Msg,"Unmatched quote");
  766. S_abort();
  767. }
  768. /* environment variable (treat as a literal) */
  769. if (*cptr=='$'){
  770. ++cptr;
  771. for (i=0; i<VMAXSIZE; ++i){
  772. if (!*cptr || *cptr==' ' || *cptr=='t' || *cptr=='n'
  773. || *cptr=='r' || *cptr==';')
  774. break;
  775. temp[i] = *(cptr++);
  776. }
  777. temp[i] = '';
  778. tok_value.strptr = getenv(temp);
  779. if (!tok_value.strptr)
  780. tok_value.strptr = temp,
  781. sprintf(Msg,"%s: no such environment variable",temp),
  782. S2(Msg),
  783. tok_value.strptr = "";
  784. *pcptr = cptr;
  785. return LITERAL;
  786. }
  787. /* back-quoted shell command (treat like env var) */
  788. if (*cptr=='`'){
  789. ++cptr;
  790. i = 0;
  791. while (*cptr && *cptr!='n' && *cptr!='`' && (++i)<VMAXSIZE)
  792. ++cptr;
  793. if (*cptr=='`'){
  794. for (i=0; i<VMAXSIZE; ++i){ /* tok_value ptr points */
  795. bqcmd[i] = tok_value.strptr[i+1]; /* to leading '`' */
  796. if (bqcmd[i]=='`'){
  797. bqcmd[i] = '';
  798. break;
  799. }
  800. }
  801. bqcmd[i] = '';
  802. signal(SIGCLD,SIG_DFL);
  803. if (!(bqpipe=popen(bqcmd,"r"))){
  804. sprintf(Msg,"%s: cannot create pipe",bqcmd);
  805. S_abort();
  806. }
  807. else {
  808. temp[0] = '';
  809. i = 0;
  810. while (i<=VMAXSIZE && (c=fgetc(bqpipe))!=EOF && c!='n')
  811. temp[i++] = c;
  812. fflush(bqpipe);
  813. pclose(bqpipe);
  814. temp[i] = '';
  815. tok_value.strptr = temp;
  816. *pcptr = cptr + 1;
  817. return LITERAL;
  818. }
  819. }
  820. else {
  821. sprintf(Msg,"Unmatched back-quote:");
  822. S_abort();
  823. }
  824. }
  825. /* leading hyphen, maybe a negative number? */
  826. if (*cptr=='-')
  827. negpos = (-1),
  828. ++cptr;
  829. /* string beginning with a digit */
  830. if (isdigit(*cptr)){
  831. nvalue = (*cptr - '0') * negpos;
  832. while (*(++cptr)){
  833. if (isdigit(*cptr)){
  834. nvalue *= 10;
  835. nvalue += (*cptr - '0');
  836. if (nvalue>0) nvalue *= negpos;
  837. continue;
  838. }
  839. else if (strchr(" tn;",*cptr)){
  840. tok_value.numval = nvalue;
  841. *pcptr = cptr;
  842. return NUMBER;
  843. }
  844. sprintf(Msg,"Variable name cannot begin with a digit: ");
  845. S_abort();
  846. }
  847. tok_value.numval = nvalue;
  848. *pcptr = cptr;
  849. return NUMBER;
  850. }
  851. /* check for '-n' switch for echo (type EFLAG) */
  852. if (negpos<0){
  853. if (*cptr=='N' || *cptr=='n'){
  854. while (*cptr && !strchr(" tn;",*cptr)) ++cptr;
  855. *pcptr = cptr;
  856. return EFLAG;
  857. }
  858. sprintf(Msg,"Bad option to ECHO command");
  859. S_abort();
  860. }
  861. /* impermissible initial character */
  862. if (!isalpha(*cptr)){
  863. sprintf(Msg,"bad initial character: %c", *cptr);
  864. S_abort();
  865. }
  866. /* remember that tok_value.strptr points to start of token */
  867. for (i=1; i<(VNAMELEN+1); ++i){ /* jump to next field separator */
  868. ++cptr;
  869. if (*cptr=='' || strchr(" tn;",*cptr))
  870. break;
  871. }
  872. if (i>VNAMELEN){ /* word too long */
  873. sprintf(Msg,"Variable name too long");
  874. S_abort();
  875. }
  876. strncpy(latoken,tok_value.strptr,i); /* copy word to array 'latoken' */
  877. latoken[i] = '';
  878. lc_word(latoken); /* cvt to lowercase */
  879. /* script keywords */
  880. /* scan table for keyword match */
  881. for (i=0; *(s_toktab[i].name) && strcmp(latoken,s_toktab[i].name); ++i)
  882. ;
  883. if (*s_toktab[i].name) { /* lc keyword recognized */
  884. if (s_toktab[i].token==STRUE)
  885. tok_value.numval = TRUE;
  886. if (s_toktab[i].token==SFALSE)
  887. tok_value.numval = FALSE;
  888. *pcptr = cptr;
  889. return s_toktab[i].token;
  890. }
  891. /* system primitive (ACTION) */
  892. /* scan table for keyword match */
  893. for (i=0;s_acttab[i].name && strcmp(latoken,s_acttab[i].name);++i)
  894. ;
  895. if (s_acttab[i].name){ /* primitive recognized */
  896. tok_value.funcptr = s_acttab[i].funcptr;
  897. *pcptr = cptr;
  898. return ACTION;
  899. }
  900. /* user variable name */
  901. if ((varptr=findvar(latoken))){ /* existing user variable */
  902. tok_value.varptr = varptr;
  903. *pcptr = cptr;
  904. return VARNAME;
  905. }
  906. /* could this be the name of a new variable? */
  907. tok_value.strptr = latoken; /* just in case this is 'on', 'off', etc. */
  908. if (!setvar(latoken,VCHAR,"",0)) /* can't create it */
  909. return TTERROR;
  910. if (!(varptr=findvar(latoken))) /* can't retrieve it */
  911. return TTERROR;
  912. else { /* got it */
  913. tok_value.varptr = varptr;
  914. *pcptr = cptr;
  915. return VARNAME;
  916. }
  917. }
  918. /* utility routines called by S_parse() */
  919. /* S_affirm is a placeholder. It's the function to get a yes or no
  920. response from the user.
  921. */
  922. static 
  923. S_affirm()
  924. {
  925. char c, junk;
  926. c = getchar();
  927. fputc(c,tfp);
  928. while ((junk=getchar()) !='n' && junk !='r')
  929. fputc(junk,tfp);
  930. fputc('r',tfp),
  931. fputc('n',tfp);
  932. return(c=='y' || c=='Y');
  933. }
  934. /* S_addsub increments or decrements a numeric variable.
  935. It assumes that since the INCR or DECR directives call
  936. lexan() for the variable just before coming here, the
  937. tok_value structure contains a pointer to the variable
  938. whose value is to be changed.
  939. */
  940. static 
  941. S_addsub(direction)
  942. int direction;
  943. {
  944. long oldval = tok_value.varptr->u.num;
  945. oldval += direction;
  946. if (!setvar(tok_value.varptr->name,VNUM,"",&oldval)){
  947. sprintf(Msg,"Error setting variable '%s'", tok_value.varptr->name);
  948. S_abort();
  949. }
  950. return(tok_value.varptr->u.num ? SUCCESS : FAILURE);
  951. }
  952. /* S_qstrip returns a pointer to a (static) string with leading and
  953. trailing double-quote marks removed. If the string happens to
  954. lack a leading or trailing double-quote mark, then the string
  955. will be returned with its beginning unchanged, and its length
  956. equal to VMAXSIZE or the length of the string, whichever is
  957. shorter. Double-quote marks escaped with a backslash are included
  958. in the returned string and the backslash is excised.
  959. */
  960. static char *
  961. S_qstrip(strptr)
  962. char *strptr;
  963. {
  964. int i;
  965. static char strbuf[VMAXSIZE+2];
  966. if (*strptr=='"')
  967. ++strptr;
  968. for (i=0; i<VMAXSIZE+1; ++i){
  969. if (*strptr=='\' && *(strptr+1)=='"' && *(strptr-1)!='\')
  970. ++strptr;
  971. if ((*strptr=='"' && *(strptr-1)!='\') || !*strptr || *strptr=='n')
  972. break;
  973. strbuf[i] = *strptr;
  974. ++strptr;
  975. }
  976. strbuf[i] = '';
  977. return strbuf;
  978. }
  979. /* S_read does the parsing grunts for the script 'read' directive. On
  980. entry, the 'read' token has been parsed, but that's all.
  981. */
  982. static 
  983. S_read(pcptr)
  984. char **pcptr;
  985. {
  986. int i;
  987. VAR *varptr1;
  988. static char strbuf[VMAXSIZE+2];
  989. if (lexan(pcptr)!=VARNAME)
  990. S_abort();
  991. varptr1 = tok_value.varptr;
  992. strbuf[0] = '';
  993. for (i=0; i<VMAXSIZE; ++i){
  994. strbuf[i] = getchar();
  995. if (strbuf[i]==BS){
  996. if (i>0)
  997. fputs("b b",tfp),
  998. i -= 2;
  999. else
  1000. i = -1;
  1001. continue;
  1002. }
  1003. fputc(strbuf[i],tfp);
  1004. if (strbuf[i]=='n' || strbuf[i]=='r'){
  1005. strbuf[i] = '';
  1006. break;
  1007. }
  1008. }
  1009. strbuf[VMAXSIZE] = '';
  1010. fputc('r',tfp),
  1011. fputc('n',tfp);
  1012. return(setvar(varptr1->name,VCHAR,strbuf,0));
  1013. }
  1014. /* S_perform invokes a system primitive and returns SUCCESS if the
  1015. primitive succeeds, FAILURE if it fails. On entry, only the ACTION
  1016. token has been parsed.
  1017. */
  1018. static 
  1019. S_perform(pcptr)
  1020. char **pcptr;
  1021. {
  1022. int (*fptr)();
  1023. char *cptr;
  1024. VAR *varptr1;
  1025. long n = -1;
  1026. fptr = tok_value.funcptr;
  1027. cptr = NIL(char);
  1028. while (TRUE){
  1029. switch (lexan(pcptr)){
  1030. case TERMINAT:
  1031. break;
  1032. case NUMBER:
  1033. if (n != -1)
  1034. S_abort();
  1035. n = tok_value.numval;
  1036. continue;
  1037. case LITERAL:
  1038. case TTERROR:
  1039. cptr = S_qstrip(tok_value.strptr);
  1040. continue;
  1041. case VARNAME:
  1042. varptr1 = tok_value.varptr;
  1043. if (varptr1->type==VCHAR){
  1044. cptr = varptr1->u.str;
  1045. break;
  1046. }
  1047. if (n != -1)
  1048. S_abort();
  1049. n = varptr1->u.num;
  1050. continue;
  1051. default:
  1052. S_abort();
  1053. }
  1054. break;
  1055. }
  1056. return (*fptr)(n,cptr);
  1057. }
  1058. /* S_set does the parsing grunts for the script 'assign' directive. It's
  1059. a separate function mostly to keep from cluttering up S_parse()
  1060. too much. On entry, only the 'set' token has been received from
  1061. the directive containing it.
  1062. */
  1063. static
  1064. S_set(pcptr)
  1065. char **pcptr; /* S_parse()'s program counter (p_pc) */
  1066. {
  1067. TOK_TYPE nexttype;
  1068. VAR *varptr1, *varptr2;
  1069. char *setstr, szTmp[11];
  1070. static char strbuf[VMAXSIZE+1];
  1071. int iValueCount;
  1072. long lNum;
  1073. if ((nexttype=lexan(pcptr))!=VARNAME)
  1074. S_abort();
  1075. varptr1 = tok_value.varptr;
  1076. if ((nexttype=lexan(pcptr))!=EQ)
  1077. S_abort();
  1078. strbuf[0] = 0;
  1079. for (iValueCount = 0; nexttype != TERMINAT; iValueCount++){
  1080. switch (nexttype = lexan(pcptr)){
  1081. case LITERAL:
  1082. setstr = S_qstrip(tok_value.strptr);
  1083. if (strlen(strbuf) + strlen(setstr) <= VMAXSIZE)
  1084. strcat(strbuf, setstr );
  1085. break;
  1086. case ACTION:
  1087. case AFFIRM:
  1088. if (nexttype==ACTION)
  1089. tok_value.numval = (long) S_perform(pcptr);
  1090. else
  1091. tok_value.numval = (long) S_affirm();
  1092. case NUMBER:
  1093. case STRUE:
  1094. case SFALSE:
  1095. if (iValueCount > 0){
  1096. sprintf(szTmp, "%ld", tok_value.numval);
  1097. if (strlen(strbuf) + strlen(szTmp) <= VMAXSIZE){
  1098. strcat( strbuf, szTmp );
  1099. break;
  1100. }
  1101. else
  1102. S_abort();
  1103. }
  1104. return(setvar(varptr1->name,VNUM,"",&tok_value.numval));
  1105. case VARNAME:
  1106. varptr2 = tok_value.varptr;
  1107. switch (varptr2->type){
  1108. case VCHAR:
  1109. if (strlen(strbuf) + strlen(varptr2->u.str)<= VMAXSIZE)
  1110. strcat(strbuf,varptr2->u.str);
  1111. else
  1112. S_abort();
  1113. break;
  1114. default:
  1115. if (iValueCount > 0) {
  1116. sprintf (szTmp, "%ld", varptr2->u.num);
  1117. if (strlen(strbuf) + strlen(szTmp) 
  1118. <= VMAXSIZE ) {
  1119. strcat( strbuf, szTmp );
  1120. break;
  1121. }
  1122. else {
  1123. S_abort();
  1124. }
  1125. }
  1126. return (setvar(varptr1->name,
  1127. VNUM,"",&(varptr2->u.num)));
  1128. }
  1129. break;
  1130. case TERMINAT:
  1131. if (iValueCount)
  1132. break;
  1133. default:
  1134. S_abort();
  1135. }
  1136. }
  1137. return(setvar(varptr1->name,VCHAR,strbuf,0));
  1138. }
  1139. /* S_varcmp() compares a variable's value with a string or numeric
  1140. literal, or with the value of a second variable. Once again,
  1141. this function does parsing grunts for S_parse().
  1142. */
  1143. static
  1144. S_varcmp(varptr1, pcptr)
  1145. VAR *varptr1;
  1146. char **pcptr;
  1147. {
  1148. TOK_TYPE compmode;
  1149. long testnum;
  1150. static char strbuf[VMAXSIZE+1];
  1151. char *cmpstr;
  1152. int status, numvar;
  1153. VAR *varptr2;
  1154. numvar = (varptr1->type!=VCHAR);
  1155. compmode = lexan(pcptr);
  1156. switch (compmode){
  1157. case EQ:
  1158. case NEQ:
  1159. case MORETHAN:
  1160. case LESSTHAN:
  1161. break;
  1162. case TERMINAT:
  1163. if (numvar)
  1164. return(varptr1->u.num ? TRUE : FALSE);
  1165. else
  1166. return(*varptr1->u.str ? TRUE : FALSE);
  1167. default:
  1168. S_abort();
  1169. }
  1170. switch (lexan(pcptr)){
  1171. case LITERAL:
  1172. if (numvar){
  1173. sprintf(Msg,"Error: %s is a numeric variable",varptr1->name);
  1174. S_abort();
  1175. }
  1176. ++tok_value.strptr;
  1177. strncpy(strbuf,tok_value.strptr,VMAXSIZE);
  1178. *(strchr(strbuf,'"')) = '';
  1179. cmpstr = strbuf;
  1180. break;
  1181. case NUMBER:
  1182. case STRUE:
  1183. case SFALSE:
  1184. if (!numvar){
  1185. sprintf(Msg,"Error: %s is a string variable",varptr1->name);
  1186. S_abort();
  1187. }
  1188. testnum = tok_value.numval;
  1189. break;
  1190. case VARNAME:
  1191. varptr2 = tok_value.varptr;
  1192. if (numvar && varptr2->type==VCHAR){
  1193. sprintf(Msg,"Error: %s and %s are of different types",
  1194. varptr1->name, varptr2->name);
  1195. S_abort();
  1196. }
  1197. if (numvar)
  1198. testnum = varptr2->u.num;
  1199. else
  1200. cmpstr = varptr2->u.str;
  1201. break;
  1202. default:
  1203. S_abort();
  1204. }
  1205. if (numvar){
  1206. status = (varptr1->u.num==testnum);
  1207. if (compmode==EQ)
  1208. return status;
  1209. if (compmode==NEQ)
  1210. return !status;
  1211. status = (varptr1->u.num > testnum);
  1212. if (compmode==MORETHAN)
  1213. return status;
  1214. else
  1215. return !status;
  1216. }
  1217. status = strcmp(varptr1->u.str,cmpstr);
  1218. if (compmode==EQ)
  1219. return(status==0);
  1220. if (compmode==NEQ)
  1221. return status;
  1222. if (compmode==MORETHAN)
  1223. return(status>0);
  1224. else
  1225. return(status<0);
  1226. }
  1227. static char *
  1228. S_construct(pcptr)
  1229. char **pcptr;
  1230. {
  1231. char *cptr;
  1232. static char newstring[VMAXSIZE+10];
  1233. TOK_TYPE nexttype;
  1234. newstring[0] = '';
  1235. cptr = newstring;
  1236. while ((nexttype=lexan(pcptr))!=NULLTOK){
  1237. if (strlen(newstring)>VMAXSIZE){
  1238. newstring[VMAXSIZE] = '';
  1239. break;
  1240. }
  1241. switch (nexttype){
  1242. case TERMINAT:
  1243. break;
  1244. case NUMBER:
  1245. sprintf(cptr,"%ld",tok_value.numval);
  1246. cptr += strlen(cptr);
  1247. continue;
  1248. case LITERAL:
  1249. sprintf(cptr,"%s",S_qstrip(tok_value.strptr));
  1250. cptr += strlen(cptr);
  1251. continue;
  1252. case VARNAME:
  1253. if (tok_value.varptr->type != VCHAR)
  1254. sprintf(cptr,"%ld",tok_value.varptr->u.num);
  1255. else
  1256. sprintf(cptr,"%s",tok_value.varptr->u.str);
  1257. cptr += strlen(cptr);
  1258. continue;
  1259. default:
  1260. S_abort();
  1261. }
  1262. break;
  1263. }
  1264. return newstring;
  1265. }
  1266. /* stack protection and break/continue stuff */
  1267. static int nest_while, /* number of nested loops */
  1268. nest_parse, /* number of nested calls to S_parse() */
  1269. nest_cmd; /* number of nested commands */
  1270. static time_t deadline; /* deadline for 'timeout' keyword */
  1271. jmp_buf env; /* cell for environment, setjmp */
  1272. #define CMDNEST 8 /* max number of nested scripts */
  1273. #define PARSNEST 50 /* max number of nested calls to parser */
  1274. static char *areas[CMDNEST];
  1275. #define DNP --nest_parse
  1276. #define BCCHK(x) if(x==SBREAK||x==SCONTNUE){DNP;return(nest_while?x:S_abort());}
  1277. /* cleanup any debris left after a non-trapped keyboard interrupt */
  1278. static void 
  1279. S_bombout()
  1280. {
  1281. int i;
  1282. for (i=0; i<nest_cmd; ++i){
  1283. if (areas[i])
  1284. free(areas[i]),
  1285. areas[i] = NIL(char);
  1286. }
  1287. nest_cmd = nest_while = nest_parse = 0;
  1288. deadline = 0;
  1289. }
  1290. /* S_parse() */
  1291. static char *intercom, /* last previous value of S_parse program ctr */
  1292. *tvector; /* trap vector */
  1293. static FILE *savetfp; /* to stash tfp when tfp redirected */
  1294. static 
  1295. S_parse(p_pc, t_invoke)
  1296. char *p_pc;
  1297. TOK_TYPE t_invoke;
  1298. {
  1299. long n; /* "leading" number for primitives */
  1300. int i,
  1301. status, /* status of last performed operation */
  1302. retval, /* value to be returned by this function */
  1303. testing, /* flag set if within 'if' or 'while' clause */
  1304. direction, /* if 1, increment, if -1, decrement */
  1305. w_status, /* used to correct nest_parse in 'while' */
  1306. counter, /* for WHILE and IF, to track keywords */
  1307. negating; /* ! operator in effect for comparisons */
  1308. char *cptr, *S_WHILE, *S_DO, *S_DONE;
  1309. TOK_TYPE nexttype;
  1310. VAR *varptr1;
  1311. ++nest_parse;
  1312. testing = (t_invoke==THEN || t_invoke==DO);
  1313. retval = status = negating = FALSE;
  1314. n = -1;
  1315. counter = 0;
  1316. while (TRUE){
  1317. /* we come through here only at the beginning of expressions */
  1318. if (deadline){
  1319. if (time(0)>deadline){ /* deadline; exit current script */
  1320. deadline = 0;
  1321. longjmp(env,TIMEOUT);
  1322. }
  1323. }
  1324. if (BREAK && tvector && t_invoke!=ENDTRAP) /* interrupt trap */
  1325. BREAK = FALSE,
  1326. cptr = tvector,
  1327. status = S_parse(cptr,ENDTRAP),
  1328. DNP;
  1329. BREAK = FALSE;
  1330. retval = testing ? (retval || status) : status;
  1331. direction = 1;
  1332. intercom = p_pc;
  1333. nexttype = lexan(&p_pc);
  1334. /* check for list terminator */
  1335. if (nexttype==t_invoke || (t_invoke==ENDIF && nexttype==ELSE)){
  1336. if (debugflag && testing)
  1337. fprintf(tfp,"rntttttttCondition: %srn",
  1338. retval ? "TRUE" : "FALSE");
  1339. return retval;
  1340. }
  1341. switch (nexttype){
  1342. case NULLTOK: /* inconsistent list terminators */
  1343. case DO: /**/
  1344. case DONE: /**/
  1345. case THEN: /**/
  1346. case ELSE: /**/
  1347. case ENDIF: /**/
  1348. case TTERROR: /**/
  1349. case EFLAG: /* not at beginning of expressions */
  1350. case EQ: /**/
  1351. case NEQ: /**/
  1352. case MORETHAN: /**/
  1353. case LESSTHAN: /**/
  1354. S_abort();
  1355. case LITERAL:
  1356. if (!testing)
  1357. S_abort();
  1358. status = !!strlen(tok_value.strptr);
  1359. if (negating)
  1360. status = !status;
  1361. continue;
  1362. case NEGATE:
  1363. if (!testing || negating)
  1364. S_abort();
  1365. negating = 1;
  1366. continue;
  1367. case NUMBER:
  1368. if (n!=(-1))
  1369. S_abort();
  1370. n = tok_value.numval;
  1371. continue;
  1372. case TERMINAT:
  1373. negating = 0;
  1374. continue;
  1375. case ACTION:
  1376. status = S_perform(&p_pc);
  1377. if (negating)
  1378. status = !status;
  1379. break;
  1380. case AFFIRM:
  1381. status = S_affirm();
  1382. if (negating)
  1383. status = !status;
  1384. break;
  1385. case SBREAK:
  1386. case SCONTNUE:
  1387. if (testing || t_invoke==NULLTOK)
  1388. S_abort();
  1389. return(nexttype==SBREAK ? SBREAK : SCONTNUE);
  1390. case CALL:
  1391. lexan(&p_pc);
  1392. i = nest_while;
  1393. nest_while = 0;
  1394. S_call(S_qstrip(tok_value.strptr));
  1395. DNP;
  1396. nest_while = i;
  1397. break;
  1398. case COMMENT:
  1399. continue;
  1400. case DECR:
  1401. direction = (-1); /* and fall through to... */
  1402. case INCR:
  1403. if ((nexttype=lexan(&p_pc))!=VARNAME)
  1404. S_abort();
  1405. if ((tok_value.varptr->type) != VNUM){
  1406. sprintf(Msg,"Error: %s is not a numeric variable",
  1407. tok_value.varptr->name);
  1408. S_abort();
  1409. }
  1410. status = S_addsub(direction);
  1411. if (negating) status =
  1412. !status;
  1413. break;
  1414. case ECHOS:
  1415. status = 1;
  1416. if ((nexttype = lexan(&p_pc))==EFLAG)
  1417. status = 0;
  1418. else
  1419. p_pc = intercom,
  1420. lexan(&p_pc);
  1421. cptr = S_construct(&p_pc);
  1422. fprintf(tfp,"%s",cptr);
  1423. if (status){
  1424. if (tfp != cfp)
  1425. fputc('r',tfp);
  1426. fputc('n',tfp);
  1427. }
  1428. status = 1;
  1429. break;
  1430. case EXIT:
  1431. longjmp(env,EXIT);
  1432. case READ:
  1433. status = S_read(&p_pc);
  1434. break;
  1435. case SET:
  1436. status = S_set(&p_pc);
  1437. if (negating)
  1438. status = !status;
  1439. break;
  1440. case SHELL:
  1441. sprintf(word,"!");
  1442. sprintf(line,"%s",S_construct(&p_pc));
  1443. if (tfp==cfp)
  1444. sprintf(&line[strlen(line)]," >>%s",captfile);
  1445. lptr = line;
  1446. status = !s_shell();
  1447. if (negating)
  1448. status = !status;
  1449. break;
  1450. case PIPE:
  1451. sprintf(word,"$");
  1452. sprintf(line,"%s",S_construct(&p_pc));
  1453. lptr = line;
  1454. status = !s_shell();
  1455. if (negating)
  1456. status = !status;
  1457. break;
  1458. case SFILE:
  1459. savetfp = tfp;
  1460. if (!capture){
  1461. S2("Capture option not on");
  1462. while ((nexttype=lexan(&p_pc))!=TERMINAT &&
  1463. nexttype != NULLTOK);
  1464. break;
  1465. }
  1466. tfp = cfp;
  1467. status = S_parse(p_pc,TERMINAT);
  1468. if (negating)
  1469. status = !status;
  1470. DNP;
  1471. while ((nexttype=lexan(&p_pc)) !=TERMINAT &&
  1472. nexttype != NULLTOK)
  1473. ;
  1474. tfp = savetfp;
  1475. fseek(cfp,0L,2);
  1476. break;
  1477. case STRUE:
  1478. case SFALSE:
  1479. status = (nexttype==STRUE);
  1480. intercom = p_pc;
  1481. if ((nexttype=(lexan(&p_pc)))!=TERMINAT && nexttype!=NULLTOK)
  1482. S_abort();
  1483. if (negating)
  1484. status = !status;
  1485. break;
  1486. case STRAP:
  1487. tvector = p_pc;
  1488. cptr = tvector;
  1489. while ((nexttype=lexan(&p_pc))!=ENDTRAP)
  1490. if (nexttype==NULLTOK)
  1491. S_abort();
  1492. break;
  1493. case TIMEOUT:
  1494. if ((nexttype=lexan(&p_pc))!=NUMBER)
  1495. S_abort();
  1496. if (tok_value.numval>=0){
  1497. deadline = 0;
  1498. if (tok_value.numval)
  1499. deadline = time(0) + (tok_value.numval*60);
  1500. }
  1501. while ((nexttype=lexan(&p_pc))!=TERMINAT && nexttype!=NULLTOK)
  1502. ;
  1503. break;
  1504. case UNSET:
  1505. if ((nexttype=lexan(&p_pc))!=VARNAME)
  1506. S_abort();
  1507. status = 1;
  1508. unsetvar(tok_value.varptr->name);
  1509. break;
  1510. case UNTRAP:
  1511. tvector = NIL(char);
  1512. if ((nexttype=lexan(&p_pc))!=TERMINAT)
  1513. S_abort();
  1514. break;
  1515. case XTSET:
  1516. i = 0;
  1517. line[0] = '';
  1518. while (*p_pc!='n')
  1519. line[i++] = *(p_pc++);
  1520. line[i] = '';
  1521. lptr = line;
  1522. s_set();
  1523. break;
  1524. case VARNAME:
  1525. varptr1 = tok_value.varptr;
  1526. if (!testing){
  1527. if (varptr1->type==VCHAR || n!=(-1))
  1528. S_abort();
  1529. n = varptr1->u.num;
  1530. continue;
  1531. }
  1532. status = S_varcmp(varptr1,&p_pc);
  1533. if (negating)
  1534. status = !status;
  1535. break;
  1536. case IF:
  1537. if (nest_parse > PARSNEST){
  1538. sprintf(Msg,"Nesting level too deep");
  1539. S_abort();
  1540. }
  1541. status = S_parse(p_pc,THEN);
  1542. DNP;
  1543. if (status==TRUE){
  1544. lexan(&intercom);
  1545. p_pc = intercom;
  1546. status = S_parse(p_pc,ENDIF);
  1547. BCCHK(status)
  1548. DNP;
  1549. cptr = intercom;
  1550. nexttype = lexan(&cptr);
  1551. p_pc = cptr;
  1552. if (nexttype==ELSE){
  1553. counter = 0;
  1554. while (TRUE){
  1555. switch ((nexttype=lexan(&cptr))){
  1556. case IF:
  1557. ++counter;
  1558. continue;
  1559. case ENDIF:
  1560. if (counter){
  1561. --counter;
  1562. continue;
  1563. }
  1564. p_pc = cptr;
  1565. break;
  1566. case NULLTOK:
  1567. S_abort();
  1568. default:
  1569. continue;
  1570. }
  1571. break;
  1572. } /* now p_pc points to just after matching 'endif' */
  1573. }
  1574. }
  1575. else { /* intercom is now the THEN token */
  1576. counter = 0;
  1577. cptr = intercom;
  1578. while (TRUE){
  1579. switch ((nexttype=lexan(&cptr))){
  1580. case IF:
  1581. ++counter;
  1582. continue;
  1583. case ELSE:
  1584.   if (counter)
  1585. continue;
  1586.   p_pc = cptr;
  1587.   break;
  1588. case ENDIF:
  1589. if (counter){
  1590. --counter;
  1591. continue;
  1592. }
  1593. p_pc = cptr;
  1594. break;
  1595. case NULLTOK:
  1596. S_abort();
  1597. default:
  1598. continue;
  1599. }
  1600. break;
  1601. }
  1602. if (nexttype==ELSE){
  1603. status = S_parse(p_pc,ENDIF);
  1604. BCCHK(status)
  1605. DNP;
  1606. p_pc = intercom;
  1607. lexan(&p_pc);
  1608. }
  1609. /* p_pc now points to just after ENDIF */
  1610. }
  1611. break;
  1612. case WHILE:
  1613. if (nest_parse > PARSNEST){
  1614. sprintf(Msg,"Nesting level too deep");
  1615. S_abort();
  1616. }
  1617. S_WHILE = p_pc;
  1618. S_DO = S_DONE = NIL(char);
  1619. while ((w_status=S_parse(S_WHILE,DO))==TRUE){
  1620. DNP;
  1621. --nest_while;
  1622. if (!S_DO)
  1623. lexan(&intercom),
  1624. S_DO = intercom;
  1625. status = S_parse(S_DO,DONE);
  1626. DNP;
  1627. --nest_while;
  1628. if (status == SBREAK){
  1629. status = 0;
  1630. break;
  1631. } /* note SCONTNUE is automatic */
  1632. if (!S_DONE && status!=SCONTNUE)
  1633. lexan(&intercom),
  1634. S_DONE = intercom;
  1635. }
  1636. if (S_DONE)
  1637. p_pc = S_DONE;
  1638. else {
  1639. cptr = S_DO ? S_DO : S_WHILE;
  1640. while (TRUE){
  1641. switch ((nexttype=lexan(&cptr))){
  1642. case WHILE:
  1643. ++counter;
  1644. continue;
  1645. case DONE:
  1646. if (counter){
  1647. --counter;
  1648. continue;
  1649. }
  1650. p_pc = cptr;
  1651. break;
  1652. case NULLTOK:
  1653. S_abort();
  1654. default:
  1655. continue;
  1656. }
  1657. break;
  1658. }
  1659. /* p_pc now points to just after matching 'done' */
  1660. }
  1661. if (w_status==FALSE)
  1662. DNP;
  1663. break;
  1664. } /* end of main switch, whew */
  1665. if (t_invoke==TERMINAT)
  1666. return status;
  1667. n = -1;
  1668. }
  1669. }
  1670. /* load a script and call S_parse to run it */
  1671. static void 
  1672. S_call(scriptname)
  1673. char *scriptname;
  1674. {
  1675. int i;
  1676. jmp_buf senv;
  1677. char *oldtvec, *newptr, *oldptr, script[SM_BUFF];
  1678. long filesize;
  1679. FILE *scriptfp;
  1680. static struct stat statbuf;
  1681. strcpy(script, scriptname);
  1682. if (++nest_cmd>CMDNEST){
  1683. S2("Too many nested scripts");
  1684. --nest_cmd;
  1685. return;
  1686. }
  1687. if (!(scriptfp = openfile(script))){
  1688. sprintf(Msg,"Can't open '%s'",script);
  1689. S2(Msg);
  1690. --nest_cmd;
  1691. return;
  1692. }
  1693. /* this succeeds, openfile() has called isregfile() to stat the file */
  1694. fstat(fileno(scriptfp),&statbuf);
  1695. filesize = statbuf.st_size;
  1696. areas[nest_cmd - 1] = NIL(char);
  1697. if (!(areas[nest_cmd-1]=(char*)calloc((unsigned)filesize+10,1))){
  1698. sprintf(Msg,"%s: allocation error",script);
  1699. S2(Msg);
  1700. fclose(scriptfp);
  1701. --nest_cmd;
  1702. return;
  1703. }
  1704. if (strcmp(STARTUP,script))
  1705. sprintf(Msg,"Running %s",script),
  1706. S2(Msg);
  1707. *(areas[nest_cmd - 1]) = 'n';
  1708. fread((areas[nest_cmd - 1] + 1),filesize,1,scriptfp);
  1709. *(areas[nest_cmd - 1] + filesize + 1) = '';
  1710. fclose(scriptfp);
  1711. oldtvec = tvector;
  1712. tvector = NIL(char);
  1713. newptr = (char *)senv;
  1714. oldptr = (char *)env;
  1715. for (i=0; i<sizeof(env); ++i)
  1716. *(newptr++) = *(oldptr++);
  1717. if ((i=setjmp(env))==0)
  1718. S_parse(areas[nest_cmd - 1],NULLTOK);
  1719. else if (i==TTERROR)
  1720. S2("Abnormal script termination");
  1721. else if (i==TIMEOUT)
  1722. S2("Timeout");
  1723. else if (i==EXIT)
  1724. S2("Script encountered 'exit'");
  1725. tvector = oldtvec;
  1726. newptr = (char *)env;
  1727. oldptr = (char *)senv;
  1728. for (i=0; i<sizeof(env); ++i)
  1729. *(newptr++) = *(oldptr++);
  1730. --nest_cmd;
  1731. if (areas[nest_cmd])
  1732. free(areas[nest_cmd]);
  1733. if (strcmp(STARTUP,script))
  1734. sprintf(Msg,"%s COMPLETE",script),
  1735. S2(Msg);
  1736. }
  1737. static 
  1738. S_abort()
  1739. {
  1740. char *cptr;
  1741. if (*Msg)
  1742. S2(Msg);
  1743. cptr = intercom;
  1744. while (*cptr && *cptr!='n')
  1745. --cptr;
  1746. ++cptr;
  1747. while (*cptr && *cptr!='n')
  1748. fputc(*(cptr++),tfp);
  1749. fputc('r',tfp),
  1750. fputc('n',tfp);
  1751. if (tfp==cfp)
  1752. tfp = savetfp;
  1753. unsetall();
  1754. longjmp(env,TTERROR);
  1755. }
  1756. /* get_bound_char() get a character from the user's keyboard.  If the terminal
  1757. mode escape character is seen, look ahead to the next character and act on
  1758. it. If unrecognized, simply swallow the escape character and return the
  1759. second character. Returns ASCII character code, or XTBIND function code
  1760. */
  1761. get_bound_char()
  1762. {
  1763. int c, lc;
  1764. binding_t *ptr;
  1765. static char *emit_string = NIL(char);
  1766. if (emit_string) {
  1767. c = *(emit_string++);
  1768. if (!c)
  1769. emit_string = NIL(char);
  1770. }
  1771. if (!emit_string) {
  1772. c = getchar();
  1773. if (c == my_escape) {
  1774. lc = tolower(c=getchar());
  1775. for (ptr = first_binding; ptr; ptr = ptr->bs_next){
  1776. if (ptr->bs_c == lc){
  1777. switch (ptr->bs_function){
  1778. case EMITSTR:
  1779. emit_string = ptr->bs_string;
  1780. return *(emit_string++);
  1781. case DOSCRPT:
  1782. strcpy(ddsname, ptr->bs_string);
  1783. return DOSCRPT;
  1784. default:
  1785. return ptr->bs_function;
  1786. }
  1787. }
  1788. }
  1789. }
  1790. }
  1791. return c;
  1792. }
  1793. /* default_bindings restores XT to its default key bindings.
  1794. Uppercase keys are mapped to lower case.
  1795. */
  1796. void 
  1797. default_bindings()
  1798. {
  1799. bind_key('/', HLPCHAR, "");
  1800. bind_key('?', HLPCHAR, "");
  1801. bind_key('f', DIVCHAR, "");
  1802. bind_key('n', CAPTEND, "");
  1803. bind_key('q', QUITCHR, "");
  1804. bind_key('s', SCRPCHR, "");
  1805. bind_key('x', ENDCHAR, "");
  1806. bind_key('y', CAPTYES, "");
  1807. }
  1808. /* show_emit() performs an unctrl() operation on an entire buffer. */
  1809. static void 
  1810. show_emit(str)
  1811. char *str;
  1812. {
  1813. while (*str)
  1814. fprintf(tfp,"%s", unctrl(*str++));
  1815. }
  1816. /* get_function() returns the description corresponding to the function code
  1817. specified by (code).
  1818. */
  1819. static char *
  1820. get_function(code)
  1821. int code;
  1822. {
  1823. bindstr_t *ptr = function_list;
  1824. int i;
  1825. for (i = 0; i < FUNCTION_COUNT; i++, ptr++)
  1826. if ((int) ptr->bf_function == code)
  1827. return ptr->bf_string;
  1828. return "???";
  1829. }
  1830. show_bindings()
  1831. {
  1832. binding_t *ptr = first_binding;
  1833. char *escape_str = strdup(unctrl(my_escape));
  1834. int curline = 0;
  1835. cls();
  1836. fprintf(tfp,"tTERMINAL mode escape character is %s.rnrn", escape_str);
  1837. curline += 2;
  1838. while (ptr){
  1839. if (curline >= LI - 2){
  1840. S0("PRESS ENTER");
  1841. getline();
  1842. cls();
  1843. curline = 0;
  1844. }
  1845. fprintf(tfp,"t%s - %-3.3s %s", escape_str, unctrl(ptr->bs_c),
  1846. get_function(ptr->bs_function));
  1847. switch (ptr->bs_function){
  1848. case EMITSTR:
  1849. case DOSCRPT:
  1850. fputc(' ',tfp);
  1851. fputc('"',tfp);
  1852. show_emit(ptr->bs_string);
  1853. fputc('"',tfp);
  1854. break;
  1855. }
  1856. fputc('r',tfp);
  1857. fputc('n',tfp);
  1858. curline++;
  1859. ptr = ptr->bs_next;
  1860. }
  1861. free(escape_str);
  1862. }
  1863. /* find_function() returns the function code referenced by the name
  1864. pointed to by (name).  Returns BADFUNC if the name is unrecognized.
  1865. */
  1866. static 
  1867. bindfunc_t find_function(name)
  1868. char *name;
  1869. {
  1870. bindstr_t *ptr = function_list;
  1871. int i;
  1872. for (i = 0; i < FUNCTION_COUNT; i++, ptr++)
  1873. if (strcmp(ptr->bf_name, name) == 0)
  1874. return ptr->bf_function;
  1875. return BADFUNC;
  1876. }