mystic.c 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <unistd.h> // usleep()
  4. #include <fcntl.h>
  5. #include <pty.h>
  6. #include <termios.h>
  7. #include <sys/select.h>
  8. #include <sys/wait.h>
  9. #include <signal.h> // handle Ctrl-C/SIGINT
  10. #include <strings.h> // strcasecmp
  11. #include <time.h> // usleep(), nanonsleep() ?
  12. #include <ctype.h>
  13. #include <stdlib.h> // random()
  14. #include <regex.h>
  15. // LOGGING with file output
  16. #include "zf_log.h"
  17. #include <stdio.h>
  18. #include <stdlib.h>
  19. FILE *g_log_file;
  20. static void file_output_callback(const zf_log_message *msg, void *arg) {
  21. (void)arg;
  22. *msg->p = '\n';
  23. fwrite(msg->buf, msg->p - msg->buf + 1, 1, g_log_file);
  24. fflush(g_log_file);
  25. }
  26. static void file_output_close(void) { fclose(g_log_file); }
  27. static void file_output_open(const char *const log_path) {
  28. g_log_file = fopen(log_path, "a");
  29. if (!g_log_file) {
  30. ZF_LOGW("Failed to open log file %s", log_path);
  31. return;
  32. }
  33. atexit(file_output_close);
  34. zf_log_set_output_v(ZF_LOG_PUT_STD, 0, file_output_callback);
  35. }
  36. // END LOGGING
  37. /*
  38. What is the name of the actual, real Mystic executable
  39. that we'll be executing and mangling?
  40. */
  41. #define TARGET "./mySTIC"
  42. // Size of our input and output buffers.
  43. #define BSIZE 128
  44. /*
  45. // Don't need this, zf_log does date/time stamps on output.
  46. const char * it_is_now(void) {
  47. static char buffer[100];
  48. time_t timer;
  49. struct tm* tm_info;
  50. timer = time(NULL);
  51. tm_info = localtime(&timer);
  52. strftime(buffer, sizeof(buffer), "%Y-%m-%d %H:%M:%S", tm_info);
  53. return buffer;
  54. }
  55. void slow_write(int fd, int speed, char * buffer, int len) {
  56. int x;
  57. for( x = 0; x < len; x++) {
  58. usleep(speed);
  59. write( fd, &buffer[x], 1);
  60. }
  61. }
  62. */
  63. /**
  64. * Display a repr of the given string.
  65. *
  66. * This converts most \n\r\v\f\t codes,
  67. * defaults to \xHH (hex value).
  68. */
  69. const char *repr(const char *data) {
  70. static char buffer[4096];
  71. char *cp;
  72. strcpy(buffer, data);
  73. cp = buffer;
  74. while (*cp != 0) {
  75. char c = *cp;
  76. if (isspace(c)) {
  77. if (c == ' ') {
  78. cp++;
  79. continue;
  80. };
  81. /* Ok, it's form-feed ('\f'), newline ('\n'), carriage return ('\r'),
  82. * horizontal tab ('\t'), and vertical tab ('\v') */
  83. memmove(cp + 1, cp, strlen(cp) + 1);
  84. *cp = '\\';
  85. cp++;
  86. switch (c) {
  87. case '\f':
  88. *cp = 'f';
  89. cp++;
  90. break;
  91. case '\n':
  92. *cp = 'n';
  93. cp++;
  94. break;
  95. case '\r':
  96. *cp = 'r';
  97. cp++;
  98. break;
  99. case '\t':
  100. *cp = 't';
  101. cp++;
  102. break;
  103. case '\v':
  104. *cp = 'v';
  105. cp++;
  106. break;
  107. default:
  108. *cp = '?';
  109. cp++;
  110. break;
  111. }
  112. continue;
  113. }
  114. if (isprint(c)) {
  115. cp++;
  116. continue;
  117. };
  118. // Ok, default to \xHH output.
  119. memmove(cp + 3, cp, strlen(cp) + 1);
  120. *cp = '\\';
  121. cp++;
  122. *cp = 'x';
  123. cp++;
  124. char buffer[3];
  125. sprintf(buffer, "%02x", (int)c & 0xff);
  126. *cp = buffer[0];
  127. cp++;
  128. *cp = buffer[1];
  129. cp++;
  130. continue;
  131. }
  132. return buffer;
  133. }
  134. struct render {
  135. int speed;
  136. int effect;
  137. } current_render;
  138. int render_overlimit = 0;
  139. void reset_render(void) {
  140. current_render.speed = 0;
  141. current_render.effect = 0;
  142. render_overlimit = 0;
  143. }
  144. #define TRIGGER "^"
  145. // Max limit we'll sleep before ignoring effects/speed.
  146. #define SLEEP_LIMIT 30
  147. int ms_sleep(unsigned int ms) {
  148. int result = 0;
  149. struct timespec ts = {ms / 1000, (ms % 1000) * 1000000L};
  150. do {
  151. struct timespec ts_sleep = ts;
  152. result = nanosleep(&ts_sleep, &ts);
  153. } while ((-1 == result));
  154. return result;
  155. }
  156. void render_sleep(void) {
  157. if (render_overlimit)
  158. return;
  159. if (current_render.speed) { // * 100 still too slow.
  160. ms_sleep(current_render.speed * 10);
  161. }
  162. }
  163. /*
  164. Terminal tracking
  165. */
  166. struct console_details {
  167. int posx, posy;
  168. int savedx, savedy;
  169. char ansi[20]; // current ANSI command being processed.
  170. int in_ansi;
  171. int fgcolor; // 0-15
  172. int bgcolor; // 0-7
  173. int status; // 0 or 5 (Blink)
  174. } console;
  175. void console_init(struct console_details *cdp) {
  176. cdp->posx = 0;
  177. cdp->posy = 0;
  178. cdp->savedx = 0;
  179. cdp->savedy = 0;
  180. cdp->in_ansi = 0;
  181. cdp->fgcolor = 0;
  182. cdp->bgcolor = 0;
  183. cdp->status = 0;
  184. }
  185. void console_ansi(const char *ansi) {
  186. int understood = 0;
  187. const char *cp = ansi;
  188. const char *last = ansi + strlen(ansi) - 1;
  189. int number, number2;
  190. if (*cp == '\x1b') {
  191. cp++;
  192. // Ok, that's expected.
  193. if (*cp == '[') {
  194. cp++;
  195. // https://en.wikipedia.org/wiki/ANSI_escape_code#CSI_sequences
  196. switch (*last) {
  197. case 'A':
  198. // cursor up
  199. if (cp == last) {
  200. number = 1;
  201. } else {
  202. number = atoi(cp);
  203. if (number < 1) {
  204. ZF_LOGD("console_ansi( %s ): number error (%d)", repr(ansi), number);
  205. number = 1;
  206. }
  207. };
  208. console.posy -= number;
  209. if (console.posy < 0) {
  210. console.posy = 0;
  211. ZF_LOGD("console_ansi( %s ): attempt to move above top of screen (%d)", repr(ansi), number);
  212. }
  213. understood = 1;
  214. return;
  215. case 'B':
  216. // cursor down
  217. if (cp == last) {
  218. number = 1;
  219. } else {
  220. number = atoi(cp);
  221. if (number < 1) {
  222. ZF_LOGD("console_ansi( %s ): number error (%d)", repr(ansi), number);
  223. number = 1;
  224. }
  225. };
  226. console.posy += number;
  227. // check range/"scroll"
  228. understood = 1;
  229. return;
  230. case 'C':
  231. // cursor forward
  232. if (cp == last) {
  233. number = 1;
  234. } else {
  235. number = atoi(cp);
  236. if (number < 1) {
  237. ZF_LOGD("console_ansi( %s ): number error (%d)", repr(ansi), number);
  238. number = 1;
  239. }
  240. };
  241. console.posx += number;
  242. // Well. According to the "spec", the screen limits are hard
  243. // If the cursor is already at the edge of the screen, this has no effect.
  244. // ^ This is *NOT* how any ANSI BBS terminal program acts!
  245. while (console.posx > 79) {
  246. console.posy++;
  247. // check range/"scroll"
  248. console.posx -= 79;
  249. }
  250. understood = 1;
  251. return;
  252. case 'D':
  253. // cursor backwards
  254. if (cp == last) {
  255. number = 1;
  256. } else {
  257. number = atoi(cp);
  258. if (number < 1) {
  259. ZF_LOGD("console_ansi( %s ): number error (%d)", repr(ansi), number);
  260. number = 1;
  261. }
  262. };
  263. console.posx -= number;
  264. // Well. According to the "spec", the screen limits are hard
  265. // If the cursor is already at the edge of the screen, this has no effect.
  266. // ^ This is *NOT* how any ANSI BBS terminal program acts!
  267. while (console.posx < 0) {
  268. console.posy--;
  269. if (console.posy < 0 ) {
  270. console.posy = 0;
  271. }
  272. console.posx += 79;
  273. }
  274. understood = 1;
  275. return;
  276. case 'H':
  277. // cursor position
  278. if (*cp == ';') {
  279. // Missing first number
  280. number = 1;
  281. cp++;
  282. if (cp == last) {
  283. // missing 2nd number as well?
  284. number2 = 1;
  285. } else {
  286. number2 = atoi(cp);
  287. }
  288. } else {
  289. // Ok, find the first number
  290. number = atoi(cp);
  291. cp = strchr(cp, ';');
  292. if ( cp == NULL) {
  293. // Missing 2nd number
  294. number2 = 1;
  295. } else {
  296. // 2nd number found, maybe.
  297. cp++;
  298. if (cp == last) {
  299. number2 = 1;
  300. } else {
  301. number2 = atoi(cp);
  302. }
  303. }
  304. }
  305. // Our positions start at zero, not one.
  306. console.posx = number - 1;
  307. console.posy = number2 - 1;
  308. understood = 1;
  309. break;
  310. case 'J':
  311. // clear
  312. if (cp == last) {
  313. number = 0;
  314. } else {
  315. number = atoi(cp);
  316. };
  317. // clears ... part of the screen.
  318. if (number == 2 ) {
  319. console.posx = 0;
  320. console.posy = 0;
  321. };
  322. understood = 1;
  323. break;
  324. default:
  325. // unsure -- possibly not important
  326. ZF_LOGD("console_ansi( %s ): ???", repr(ansi));
  327. understood = 0;
  328. }
  329. }
  330. };
  331. if (!understood) {
  332. ZF_LOGD("console_ansi( %s ): was not understood.", repr(ansi));
  333. }
  334. }
  335. void console_char(char ch) {
  336. char *cp;
  337. if (console.in_ansi) {
  338. // Ok, append this char
  339. cp = console.ansi + strlen(console.ansi);
  340. *cp = ch;
  341. cp++;
  342. *cp = 0;
  343. if (isalpha(ch)) {
  344. // Ok!
  345. console_ansi(console.ansi);
  346. console.in_ansi = 0;
  347. console.ansi[0] = 0;
  348. return;
  349. }
  350. } else {
  351. if (ch == '\x1b') {
  352. cp = console.ansi;
  353. *cp = ch;
  354. cp++;
  355. *cp = 0;
  356. console.in_ansi = 1;
  357. return;
  358. }
  359. if (ch == '\r') {
  360. // Carriage return
  361. console.posx = 0;
  362. return;
  363. }
  364. if (ch == '\n') {
  365. console.posy++;
  366. // check range/"scroll"
  367. return;
  368. }
  369. if (ch == '\b') {
  370. // Backspace.
  371. if (console.posx > 0) {
  372. console.posx--;
  373. }
  374. return;
  375. }
  376. if (ch == '\f') {
  377. // form feed
  378. // treat as clear screen
  379. console.posx = 0;
  380. console.posy = 0;
  381. return;
  382. }
  383. /*
  384. I don't believe that anything else can possibly be here, other then an
  385. actual printable character. So!
  386. */
  387. console.posx++;
  388. if (console.posx > 79) {
  389. console.posx = 0;
  390. console.posy++;
  391. // check range/"scroll"
  392. }
  393. }
  394. }
  395. void console_string(const char *chars) {
  396. int x;
  397. for (x = 0; x < strlen(chars); x++) {
  398. console_char(chars[x]);
  399. }
  400. }
  401. void console_receive(const char *chars, int len) {
  402. int x;
  403. for (x = 0; x < len; x++) {
  404. console_char(chars[x]);
  405. }
  406. }
  407. /*
  408. Well SNAP! Mystic numbers don't remotely match ANSI color codes.
  409. 00 : Sets the current foreground to Black 0;30
  410. 01 : Sets the current foreground to Dark Blue 0;34
  411. 02 : Sets the current foreground to Dark Green 0;32
  412. 03 : Sets the current foreground to Dark Cyan 0;36
  413. 04 : Sets the current foreground to Dark Red 0;31
  414. 05 : Sets the current foreground to Dark Magenta 0;35
  415. 06 : Sets the current foreground to Brown 0;33
  416. 07 : Sets the current foreground to Grey 0;37
  417. 08 : Sets the current foreground to Dark Grey 1;30
  418. 09 : Sets the current foreground to Light Blue 1;34
  419. 10 : Sets the current foreground to Light Green 1;32
  420. 11 : Sets the current foreground to Light Cyan 1;36
  421. 12 : Sets the current foreground to Light Red 1;31
  422. 13 : Sets the current foreground to Light Magenta 1;35
  423. 14 : Sets the current foreground to Yellow 1;33
  424. 15 : Sets the current foreground to White 1;37
  425. 16 : Sets the current background to Black 40
  426. 17 : Sets the current background to Blue 44
  427. 18 : Sets the current background to Green 42
  428. 19 : Sets the current background to Cyan 46
  429. 20 : Sets the current background to Red 41
  430. 21 : Sets the current background to Magenta 45
  431. 22 : Sets the current background to Brown 43
  432. 23 : Sets the current background to Grey 47
  433. 24 : Sets the current background to black with blinking foreground 5;40
  434. 25 : Sets the current background to blue with blinking foreground 5;44
  435. 26 : Sets the current background to green with blinking foreground 5;42
  436. 27 : Sets the current background to cyan with blinking foreground 5;46
  437. 28 : Sets the current background to red with blinking foreground 5;41
  438. 29 : Sets the current background to magenta with blinking foreground 5;45
  439. 30 : Sets the current background to brown with blinking foreground 5;43
  440. 31 : Sets the current background to grey with blinking foreground 5;47
  441. Other things that Mystic does ...
  442. [A## - Move the cursor up ## lines
  443. [B## - Move the cursor down ## lines
  444. [C## - Move the cursor forward (to the right) ## columns
  445. [D## - Move the cursor backwards (to the left) ## columns
  446. [K - Clear from the current cursor position to the end of the line
  447. [L - Move cursor and erase data backwards from current column to column ##
  448. [X## - Move cursor to X coordinate ##
  449. [Y## - Move cursor to Y coordinate ##
  450. BS - Sends 1 destructive backspace sequence (ASCII 8-32-8)
  451. CL - Clears the screen (ANSI 1,1 locate and [2J or ASCII 12)
  452. CR - Send a carrage return and line feed (move to next line)
  453. RA - Restore the saved text attribute color
  454. RS - Restore the saved user's terminal screen
  455. SA - Save the current text attribute color
  456. SS - Save the entire user's terminal screen
  457. */
  458. // Covert MYSTIC color to (Proper) ANSI COLOR.
  459. const int MYSTIC[] = {0, 4, 2, 6, 1, 5, 3, 7};
  460. // ANSI_color = MYSTIC[ odd_mystic_color % 8 ]
  461. void write_color(int fd, int color) {
  462. char buffer[10];
  463. switch (color) {
  464. case 0:
  465. case 1:
  466. case 2:
  467. case 3:
  468. case 4:
  469. case 5:
  470. case 6:
  471. case 7:
  472. sprintf(buffer, "\x1b[0;3%dm", MYSTIC[color]);
  473. break;
  474. case 8:
  475. case 9:
  476. case 10:
  477. case 11:
  478. case 12:
  479. case 13:
  480. case 14:
  481. case 15:
  482. sprintf(buffer, "\x1b[1;3%dm", MYSTIC[color - 8]);
  483. break;
  484. case 16:
  485. case 17:
  486. case 18:
  487. case 19:
  488. case 20:
  489. case 21:
  490. case 22:
  491. case 23:
  492. sprintf(buffer, "\x1b[4%dm", MYSTIC[color - 16]);
  493. break;
  494. case 24:
  495. case 25:
  496. case 26:
  497. case 27:
  498. case 28:
  499. case 29:
  500. case 30:
  501. case 31:
  502. sprintf(buffer, "\x1b[5;4%dm", MYSTIC[color - 24]);
  503. break;
  504. default:
  505. buffer[0] = 0;
  506. break;
  507. }
  508. ZF_LOGD("write_color( %d ): %s", color, repr(buffer));
  509. write(fd, buffer, strlen(buffer));
  510. }
  511. /**
  512. * process_trigger( fd, *cp )
  513. *
  514. * This process a command trigger.
  515. * It has seen TRIGGER, and now it is
  516. * processing whatever comes after it.
  517. * It will perform the process, and
  518. * return the char * of whatever is next.
  519. */
  520. const char *process_trigger(int fd, const char *cp) {
  521. char ch;
  522. int i, x, y;
  523. ch = toupper(*cp);
  524. cp++;
  525. switch (ch) {
  526. case 'D':
  527. i = 0;
  528. if (isdigit(*cp)) {
  529. i = (*cp) - '0';
  530. cp++;
  531. };
  532. if (isdigit(*cp)) {
  533. i *= 10;
  534. i += (*cp) - '0';
  535. cp++;
  536. };
  537. if ((i > 0) && (i < 80)) {
  538. ZF_LOGI("DEL %02d", i);
  539. for (x = 0; x < i; x++) {
  540. write(fd, "\b \b", 3);
  541. }
  542. };
  543. break;
  544. case 'C':
  545. i = 0;
  546. if (isdigit(*cp)) {
  547. i = (*cp) - '0';
  548. cp++;
  549. };
  550. if (isdigit(*cp)) {
  551. i *= 10;
  552. i += (*cp) - '0';
  553. cp++;
  554. };
  555. write_color(fd, i);
  556. break;
  557. case 'G':
  558. x = 0;
  559. if (isdigit(*cp)) {
  560. x = (*cp) - '0';
  561. cp++;
  562. };
  563. if (isdigit(*cp)) {
  564. x *= 10;
  565. x += (*cp) - '0';
  566. cp++;
  567. };
  568. y = 0;
  569. if (isdigit(*cp)) {
  570. y = (*cp) - '0';
  571. cp++;
  572. };
  573. if (isdigit(*cp)) {
  574. y *= 10;
  575. y += (*cp) - '0';
  576. cp++;
  577. };
  578. break;
  579. case 'R':
  580. i = 0;
  581. if (isdigit(*cp)) {
  582. i = (*cp) - '0';
  583. cp++;
  584. };
  585. if ((i > 0) && (i < 10)) {
  586. ZF_LOGI("RENDER %d", i);
  587. current_render.effect = i;
  588. } else {
  589. current_render.effect = 0;
  590. }
  591. break;
  592. case 'S':
  593. i = 0;
  594. if (isdigit(*cp)) {
  595. i = (*cp) - '0';
  596. cp++;
  597. };
  598. if ((i > 0) && (i < 10)) {
  599. ZF_LOGI("SPEED %d", i);
  600. current_render.speed = i;
  601. } else {
  602. current_render.speed = 0;
  603. }
  604. break;
  605. case 'P':
  606. i = 0;
  607. if (isdigit(*cp)) {
  608. i = (*cp) - '0';
  609. cp++;
  610. };
  611. if ((i > 0) && (i < 10)) {
  612. ZF_LOGI("PAWS %d", i);
  613. // sleep(i);
  614. if (!render_overlimit) {
  615. sleep(i);
  616. };
  617. }
  618. break;
  619. }
  620. return cp;
  621. }
  622. /**
  623. * render_effect( fd, ch )
  624. *
  625. * Displays the given character with whatever
  626. * rendering effect is currently active.
  627. * (If any).
  628. */
  629. void render_effect(int fd, char ch) {
  630. int effect = current_render.effect;
  631. int l;
  632. char space = ' ';
  633. char bs = '\b';
  634. switch (effect) {
  635. case 1:
  636. // CHAR + SPC + BS
  637. render_sleep();
  638. write(fd, &ch, 1);
  639. render_sleep();
  640. write(fd, &space, 1);
  641. render_sleep();
  642. render_sleep();
  643. write(fd, &bs, 1);
  644. break;
  645. case 2:
  646. // CHAR + 8 spaces + 8 BS
  647. render_sleep();
  648. write(fd, &ch, 1);
  649. for (l = 0; l < 8; l++) {
  650. render_sleep();
  651. write(fd, &space, 1);
  652. }
  653. for (l = 0; l < 8; l++) {
  654. render_sleep();
  655. write(fd, &bs, 1);
  656. }
  657. break;
  658. case 0:
  659. default:
  660. // NORMAL
  661. render_sleep();
  662. write(fd, &ch, 1);
  663. break;
  664. }
  665. }
  666. /**
  667. * render( fd, string_out )
  668. *
  669. * Render an entire string.
  670. * Handles TRIGGER.
  671. * Renders with effects.
  672. */
  673. void render(int fd, const char *string_out) {
  674. const char *cp = string_out;
  675. const char *trigger = cp;
  676. time_t start = time(NULL);
  677. int elapsed;
  678. int over = 0;
  679. reset_render();
  680. ZF_LOGD("render(%d, %s)", fd, repr(string_out));
  681. // Check our time from time to time.
  682. // If we start running long, disable sleeps.
  683. while ((trigger = strstr(cp, TRIGGER)) != NULL) {
  684. // There is special things to handle in here.
  685. while (cp != trigger) {
  686. elapsed = time(NULL) - start;
  687. if (elapsed > SLEEP_LIMIT) {
  688. render_overlimit = 1;
  689. current_render.speed = 0;
  690. };
  691. // write(fd, cp, 1 );
  692. render_effect(fd, *cp);
  693. cp++;
  694. };
  695. // ZF_LOGI( "at trigger: (%s)", cp);
  696. cp += strlen(TRIGGER);
  697. // Ok, we're pointing at the trigger -- do something.
  698. cp = process_trigger(fd, cp);
  699. // ZF_LOGI( "after trigger: (%s)", cp);
  700. };
  701. // We still might be under a rendering effect.
  702. while (*cp != 0) {
  703. elapsed = time(NULL) - start;
  704. if (elapsed > SLEEP_LIMIT) {
  705. render_overlimit = 1;
  706. current_render.speed = 0;
  707. };
  708. // write(fd, cp, 1);
  709. render_effect(fd, *cp);
  710. cp++;
  711. }
  712. }
  713. // Beanzilla's no repeats
  714. /**
  715. * have_seen( list, len, item )
  716. *
  717. * Returns 1 (true) if item is in the list.
  718. * Rotates the list [x] = [x+1], and
  719. * list[len-1] = item, return 0 (false)
  720. */
  721. int have_seen(int *list, int len, int item) {
  722. int x;
  723. for (x = 0; x < len; x++) {
  724. if (list[x] == item) {
  725. return 1;
  726. }
  727. };
  728. // Ok, it is something different
  729. for (x = 0; x < len - 1; x++) {
  730. list[x] = list[x + 1];
  731. };
  732. list[x] = item;
  733. return 0;
  734. }
  735. /**
  736. * init_have_seen( list, len )
  737. *
  738. * Initialize the have_seen list with -1.
  739. * (-1 isn't a valid index, so we start
  740. * out with all invalid.)
  741. */
  742. void init_have_seen(int *list, int len) {
  743. int x;
  744. for (x = 0; x < len; x++) {
  745. list[x] = -1;
  746. }
  747. }
  748. /*
  749. These are harry "timeout" events.
  750. These happen when we've been sitting around awhile.
  751. */
  752. #define MAX_HARRY_EVENT_DUPS 2
  753. int last_seen_harry_event[MAX_HARRY_EVENT_DUPS];
  754. #ifdef CPP_MADMAN_STL_CODE
  755. const char *random_phrase(const char *words, int len, int last_seen) {
  756. // ooh. a map of char *s to last_seen_events. :P
  757. static map<const char *, array<int>> tracker;
  758. map<const char *, array<int>>::iterator it;
  759. array<int, last_seen> it = tracker.find(words);
  760. if (it == tracker.end()) {
  761. // key does not exist.
  762. array<int, last_seen> last;
  763. for (int i = 0; i < last_seen; i++) {
  764. last[i] = -1;
  765. };
  766. tracker.insert(words, last);
  767. it = tracker.find(words);
  768. };
  769. }
  770. #endif
  771. void harry_event(int fd) {
  772. // Make something happen
  773. char buffer[100];
  774. int r;
  775. // This is no where near finished, BUT!
  776. const char *phrases[] = {"Hahaha", "Snicker, snicker", "Boo!",
  777. "MeOW", "I see U", "Arrooo!",
  778. "Ahh-wooo!", "Aaaooo!"};
  779. const char *cp;
  780. // Remember the last phrase used,
  781. // and don't repeat (the last two)!
  782. do {
  783. r = random() % ((sizeof(phrases) / sizeof(char *)) - 1);
  784. } while (have_seen(last_seen_harry_event, MAX_HARRY_EVENT_DUPS, r));
  785. ZF_LOGD("%d => %d %d", r, last_seen_harry_event[0], last_seen_harry_event[1]);
  786. cp = phrases[r];
  787. int color = random() % 16;
  788. sprintf(buffer, "^S2^C%02d%s^P2^D%02d", color, cp, (int)strlen(cp));
  789. ZF_LOGD("harry_event: render(%d, \"%s\")", fd, buffer);
  790. render(fd, buffer);
  791. }
  792. void init_harry() {
  793. init_have_seen(last_seen_harry_event, MAX_HARRY_EVENT_DUPS);
  794. ZF_LOGD("init => %d %d", last_seen_harry_event[0], last_seen_harry_event[1]);
  795. }
  796. /*
  797. The code to get the username and fullname is useless on telnet
  798. connections.
  799. */
  800. char *username = NULL;
  801. char *fullname = NULL;
  802. /*
  803. Pascal String Copy. Copy from pascal string, to C String.
  804. First char is pascal string length. (Max 255).
  805. */
  806. void pcopy(char *pstring, char *str) {
  807. int len = (int)*pstring;
  808. strncpy(str, pstring + 1, len);
  809. str[len] = 0;
  810. }
  811. /*
  812. This only works for those few idiots that use the
  813. horribly broken SSH crap that Mystic uses.
  814. */
  815. int locate_user(const char *alias) {
  816. FILE *user;
  817. char buffer[0x600];
  818. char temp[100];
  819. user = fopen("data/users.dat", "rb");
  820. if (user == NULL)
  821. return 0;
  822. // Carry on!
  823. while (fread(buffer, 0x600, 1, user) == 1) {
  824. pcopy(buffer + 0x6d, temp);
  825. if (strcasecmp(temp, username) == 0) {
  826. pcopy(buffer + 0x8c, temp);
  827. fullname = strdup(temp);
  828. break;
  829. }
  830. /*
  831. printf("Alias: %s\n", temp);
  832. pcopy(buffer + 0x8c, temp );
  833. printf("Full Name: %s\n", temp );
  834. */
  835. }
  836. fclose(user);
  837. return 1;
  838. }
  839. // Buffers are BSIZE + 1, so a buffer that size can strcpy safely.
  840. regex_t ANSI;
  841. regex_t WORDS;
  842. regex_t WORD;
  843. int init_regex(void) {
  844. int ret;
  845. char ansi[] = "\x1b\[[0-9]+(;[0-9]+)*?[a-zA-Z]";
  846. char words[] = "[a-zA-Z]+( [a-zA-Z]+)+";
  847. char word[] = "[a-zA-Z]+";
  848. char errorbuf[100];
  849. if (ret = regcomp(&ANSI, ansi, REG_EXTENDED | REG_NEWLINE)) {
  850. regerror(ret, &ANSI, errorbuf, sizeof(errorbuf));
  851. ZF_LOGW("Regex %s failed to compile: %s", ansi, errorbuf);
  852. return 0;
  853. };
  854. if (ret = regcomp(&WORDS, words, REG_EXTENDED | REG_NEWLINE)) {
  855. regerror(ret, &WORDS, errorbuf, sizeof(errorbuf));
  856. ZF_LOGW("Regex %s failed to compile: %s", words, errorbuf);
  857. return 0;
  858. };
  859. if (ret = regcomp(&WORD, word, REG_EXTENDED | REG_NEWLINE)) {
  860. regerror(ret, &WORD, errorbuf, sizeof(errorbuf));
  861. ZF_LOGW("Regex %s failed to compile: %s", word, errorbuf);
  862. return 0;
  863. };
  864. return 1;
  865. }
  866. int regmatch(regex_t *preg, const char *string, size_t nmatch,
  867. regmatch_t pmatch[], int eflags) {
  868. // returns number of matches found. (Max nmatch)
  869. int matches = 0;
  870. int offset = 0;
  871. int ret;
  872. while (matches < nmatch) {
  873. ret = regexec(preg, string + offset, nmatch - matches, pmatch + matches,
  874. eflags);
  875. if (!ret) {
  876. int current = offset;
  877. offset += pmatch[matches].rm_eo;
  878. pmatch[matches].rm_so += current;
  879. pmatch[matches].rm_eo += current;
  880. matches++;
  881. } else if (ret == REG_NOMATCH) {
  882. break;
  883. } else {
  884. break;
  885. }
  886. }
  887. return matches;
  888. }
  889. #define MAX_MATCH 32
  890. regmatch_t rxmatch[MAX_MATCH];
  891. int rx_match(regex_t *regex, const char *buffer) {
  892. int ret;
  893. ret = regmatch(regex, buffer, MAX_MATCH, rxmatch, 0);
  894. if (0) {
  895. for (int i = 0; i < ret; i++) {
  896. ZF_LOGI("%d : (%d-%d)", i, rxmatch[i].rm_so, rxmatch[i].rm_eo);
  897. }
  898. }
  899. return ret;
  900. }
  901. /*
  902. Terminal processing section.
  903. Monitor lines, position, color.
  904. What screen size do I want to emulate?
  905. ANSI codes.
  906. Do I need this??
  907. */
  908. int random_activate(int w) {
  909. int r = random() % 100;
  910. if (r <= (w * 10)) {
  911. return 1;
  912. };
  913. return 0;
  914. }
  915. /*
  916. * The buffer that we've been given is much larger now.
  917. *
  918. */
  919. int mangle(int fd, char *buffer) {
  920. int x, i;
  921. int need_render = 0; // changing word case around doesn't need the render
  922. int mangled = 0;
  923. char *cp;
  924. // Ok, we want to look for words to:
  925. // MaNGlE , or transpose (both?!)
  926. // or possibly transpose words
  927. char work[(BSIZE * 4) + 1];
  928. ZF_LOGI("mangle(%s)", repr(buffer));
  929. strcpy(work, buffer);
  930. /*
  931. NOTE: We copy the buffer, so we can clear out ANSI codes, etc.
  932. Otherwise we might mess some ANSI up in the manglying
  933. process.
  934. */
  935. /*
  936. (random) Look for ANSI CLS and:
  937. display random spooky texts around, with delays ... then CLS.
  938. display ANSI graphic file, with delays ... then CLS
  939. */
  940. const char *ANSI_CLS = "\x1b[2J";
  941. cp = strstr(buffer, ANSI_CLS);
  942. if (cp != NULL) {
  943. ZF_LOGI("seen: ANSI_CLS");
  944. if (random_activate(9)) {
  945. char display[100] = "";
  946. ZF_LOGI("mangle(ANSI_CLS)");
  947. // sprintf( display, "^P2...");
  948. // This string actually screws up ANSI detection (takes too long)
  949. // strcpy(display, "^P2^S501234567890^P1abcdef^P2g^P3h^P4i^S0^P2");
  950. strcpy(display, "^P2^S301234^P15^S0^P2");
  951. // Move the buffer so there's room for the display string.
  952. memmove(cp + strlen(display), cp, strlen(cp) + 1);
  953. strncpy(cp, display, strlen(display));
  954. ZF_LOGI("mangle(ANSI_CLS): (%d) %s", (int)strlen(buffer), repr(buffer));
  955. need_render = 1;
  956. /*
  957. Copy the new buffer over, but hide our "render" code
  958. from the remaining mangler steps.
  959. */
  960. strcpy(work, buffer);
  961. i = cp - buffer;
  962. // find offset into "buffer"
  963. // apply to work.
  964. memset(work + i, ' ', strlen(display));
  965. };
  966. }
  967. /* work -- clear out ANSI so we don't mangle ANSI codes. */
  968. x = rx_match(&ANSI, work);
  969. char replace_with = ' ';
  970. if (x > 0) {
  971. ZF_LOGD("found %d ANSI", x);
  972. for (i = 0; i < x; i++) {
  973. memset(work + rxmatch[i].rm_so, replace_with,
  974. rxmatch[i].rm_eo - rxmatch[i].rm_so);
  975. };
  976. ZF_LOGD("Work Now : (%d) %s", (int)strlen(work), repr(work));
  977. }
  978. // ZF_LOGI("mangle: %s", repr(work));
  979. /*
  980. (random) Locate words (in work), and possibly flip them around.
  981. Transpose words. Transpose case. Transpose letters.
  982. */
  983. x = rx_match(&WORDS, work);
  984. ZF_LOGD("found %d WORDS", x);
  985. if (x > 0) {
  986. for (i = 0; i < x; i++) {
  987. // Do things here.
  988. if (i % 3 == 0) {
  989. for (int p = rxmatch[i].rm_so; p < rxmatch[i].rm_eo; p++) {
  990. buffer[p] = tolower(buffer[p]);
  991. mangled++;
  992. }
  993. } else {
  994. if (i % 3 == 1) {
  995. for (int p = rxmatch[i].rm_so; p < rxmatch[i].rm_eo; p++) {
  996. buffer[p] = toupper(buffer[p]);
  997. mangled++;
  998. }
  999. }
  1000. }
  1001. }
  1002. }
  1003. /*
  1004. (random) Locate single words, and transpose them. Transpose case.
  1005. Transpose letters.
  1006. */
  1007. /*
  1008. (random) Display up to certain point. Delay.
  1009. Print some characters slowly. Delay.
  1010. */
  1011. if (need_render) {
  1012. ZF_LOGD("HH %d : (%d) %s", need_render, (int)strlen(buffer), repr(buffer));
  1013. } else {
  1014. if (mangled) {
  1015. ZF_LOGD("Mangled %d : %s", mangled, repr(buffer));
  1016. }
  1017. }
  1018. if (need_render) {
  1019. render(fd, buffer);
  1020. } else {
  1021. write(fd, buffer, strlen(buffer));
  1022. };
  1023. return need_render && mangled;
  1024. }
  1025. int harry_happens(time_t *last_event, int wakeup) {
  1026. time_t now = time(NULL);
  1027. int elapsed = now - *last_event;
  1028. if (elapsed > wakeup) {
  1029. // Ok! It's been too long since we've done something.
  1030. *last_event = now;
  1031. return 1;
  1032. }
  1033. return 0;
  1034. }
  1035. int main(int argc, char *argv[]) {
  1036. int master;
  1037. pid_t pid;
  1038. int node = -1;
  1039. file_output_open("horrible_harry.log");
  1040. init_harry();
  1041. srandom(time(NULL));
  1042. // ./mystic -TID7 -IP192.168.0.1 -HOSTUnknown -ML1 -SL0 -ST2 -CUnknown -Ubugz
  1043. // -PUWISHPASSWORD
  1044. // ./mystic -TID7 -IP192.168.0.1 -HOSTUnknown -ML0 -SL0 -ST0 -CUnknown
  1045. // ./mystic -TID7 -IP192.168.0.1 -HOSTUnknown -ML1 -SL0 -ST2 -CUnknown -Ubugz
  1046. // -PUP2LAT3
  1047. // ./mystic -TID7 -IP192.168.0.1 -HOSTUnknown -ML0 -SL0 -ST0 -CUnknown
  1048. // ./mystic -TID7 -IP192.168.0.1 -HOSTUnknown -ML0 -SL0 -ST0 -CUnknown
  1049. // ./mystic -TID9 -IP192.168.0.1 -HOSTUnknown -ML0 -SL1 -ST0 -CUnknown
  1050. // ./mystic -TID7 -IP192.168.0.1 -HOSTUnknown -ML1 -SL0 -ST2 -CUnknown -Ubugz
  1051. // -PUP2LAT3
  1052. // ./mystic -TID9 -IP192.168.0.1 -HOSTUnknown -ML1 -SL1 -ST2 -CUnknown -Ubugz
  1053. // -PUP2LAT3
  1054. // SSH: -ML1 -ST2
  1055. // Telnet: -ML0 -ST0
  1056. // Locate username (if given) in the command line
  1057. // -U<username>
  1058. for (int x = 0; x < argc; x++) {
  1059. if (strncmp("-U", argv[x], 2) == 0) {
  1060. username = argv[x] + 2;
  1061. ZF_LOGI("Username: [%s]", username);
  1062. };
  1063. if (strncmp("-SL", argv[x], 3) == 0) {
  1064. node = argv[x][3] - '0' + 1;
  1065. ZF_LOGI("Node: %d", node);
  1066. }
  1067. }
  1068. if (username != NULL) {
  1069. locate_user(username);
  1070. ZF_LOGD("Username: [%s] A.K.A. [%s]", username, fullname);
  1071. }
  1072. if (!init_regex())
  1073. return 2;
  1074. // With IGNBRK I don't think I need this anymore. (Nope!)
  1075. // signal(SIGINT, SIG_IGN);
  1076. pid = forkpty(&master, NULL, NULL, NULL);
  1077. // impossible to fork
  1078. if (pid < 0) {
  1079. return 1;
  1080. }
  1081. // child
  1082. else if (pid == 0) {
  1083. char *args[20]; // max 20 args
  1084. int x;
  1085. args[0] = TARGET;
  1086. for (x = 1; x < argc; x++) {
  1087. args[x] = argv[x];
  1088. };
  1089. args[x] = NULL;
  1090. // run Mystic, run!
  1091. execvp(TARGET, args);
  1092. }
  1093. // parent
  1094. else {
  1095. // remove the echo
  1096. // ICANON - raw mode. No more line buffering!
  1097. struct termios tios, orig1;
  1098. struct timeval timeout;
  1099. time_t last_event = 0; // time(NULL);
  1100. ZF_LOGD("starting");
  1101. tcgetattr(master, &tios);
  1102. tios.c_lflag &= ~(ECHO | ECHONL | ICANON);
  1103. tcsetattr(master, TCSAFLUSH, &tios);
  1104. tcgetattr(1, &orig1);
  1105. tios = orig1;
  1106. tios.c_iflag &= ~(ICRNL | IXON); // Disable software flow control
  1107. tios.c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
  1108. // https://viewsourcecode.org/snaptoken/kilo/02.enteringRawMode.html
  1109. // ISIG should be Ctrl-C and Ctrl-Z IGNBRK +
  1110. tcsetattr(1, TCSAFLUSH, &tios);
  1111. for (;;) {
  1112. // define estruturas para o select, que serve para verificar qual
  1113. // se tornou "pronto pra uso"
  1114. fd_set read_fd;
  1115. fd_set write_fd;
  1116. fd_set except_fd;
  1117. // inicializa as estruturas
  1118. FD_ZERO(&read_fd);
  1119. FD_ZERO(&write_fd);
  1120. FD_ZERO(&except_fd);
  1121. // atribui o descritor master, obtido pelo forkpty, ao read_fd
  1122. FD_SET(master, &read_fd);
  1123. // atribui o stdin ao read_fd
  1124. FD_SET(STDIN_FILENO, &read_fd);
  1125. // o descritor tem que ser unico para o programa, a documentacao
  1126. // recomenda um calculo entre os descritores sendo usados + 1
  1127. /*
  1128. TODO: Figure out how this would work.
  1129. I'm thinking something like timeouts 30-50 seconds?
  1130. And as we get closer, 15-25 seconds.
  1131. */
  1132. // we're in luck! The last parameter is time interval/timeout. :D
  1133. timeout.tv_sec = 10;
  1134. timeout.tv_usec = 0;
  1135. // select(master+1, &read_fd, &write_fd, &except_fd, NULL);
  1136. if (select(master + 1, &read_fd, &write_fd, &except_fd, &timeout) == 0) {
  1137. // This means timeout!
  1138. ZF_LOGI("TIMEOUT");
  1139. harry_event(STDOUT_FILENO);
  1140. }
  1141. char input[BSIZE + 1];
  1142. static char output[(BSIZE * 4) + 1];
  1143. int total;
  1144. // read_fd esta atribuido com read_fd?
  1145. if (FD_ISSET(master, &read_fd)) {
  1146. // leia o que bc esta mandando
  1147. if ((total = read(master, &output, BSIZE)) != -1) {
  1148. // e escreva isso na saida padrao
  1149. output[total] = 0;
  1150. // if ( harry_happens( &last_event, 5)) {
  1151. if (1) {
  1152. ZF_LOGI("harry_happens");
  1153. if (mangle(STDOUT_FILENO, output) == 0) {
  1154. // failed, so. Try again.
  1155. last_event = 0;
  1156. }
  1157. } else {
  1158. write(STDOUT_FILENO, &output, total);
  1159. // This is OUTPUT from the BBS
  1160. // ZF_LOGI( ">> %s", repr(output));
  1161. ZF_LOGI(">> %d chars", (int)strlen(output));
  1162. // I think repr is flipping out here. :(
  1163. // ZF_LOGI( ">> %d", (int)strlen(repr(output)));
  1164. }
  1165. } else
  1166. break;
  1167. }
  1168. // read_fd esta atribuido com a entrada padrao?
  1169. if (FD_ISSET(STDIN_FILENO, &read_fd)) {
  1170. // leia a entrada padrao
  1171. total = read(STDIN_FILENO, &input, BSIZE);
  1172. input[total] = 0;
  1173. // e escreva no bc
  1174. ZF_LOGI("<< %s", repr(input));
  1175. write(master, &input, total);
  1176. // This is INPUT from the USER
  1177. // ZF_LOGI_MEM( input, strlen(input), "<< ");
  1178. }
  1179. }
  1180. // Restore terminal
  1181. tcsetattr(1, TCSAFLUSH, &orig1);
  1182. ZF_LOGD("exit");
  1183. }
  1184. return 0;
  1185. }