mystic.cpp 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104
  1. #include <assert.h>
  2. #include <fcntl.h>
  3. #include <pty.h>
  4. #include <stdio.h>
  5. #include <string.h>
  6. #include <sys/select.h>
  7. #include <sys/wait.h>
  8. #include <termios.h>
  9. #include <unistd.h>
  10. // #include <signal.h> // handle Ctrl-C/SIGINT
  11. #include <strings.h> // strcasecmp
  12. #include <time.h>
  13. #include <ctype.h>
  14. #include <stdlib.h> // random()
  15. #include <regex.h>
  16. /* Log level guideline:
  17. * - ZF_LOG_FATAL - happened something impossible and absolutely unexpected.
  18. * Process can't continue and must be terminated.
  19. * Example: division by zero, unexpected modifications from other thread.
  20. * - ZF_LOG_ERROR - happened something possible, but highly unexpected. The
  21. * process is able to recover and continue execution.
  22. * Example: out of memory (could also be FATAL if not handled properly).
  23. * - ZF_LOG_WARN - happened something that *usually* should not happen and
  24. * significantly changes application behavior for some period of time.
  25. * Example: configuration file not found, auth error.
  26. * - ZF_LOG_INFO - happened significant life cycle event or major state
  27. * transition.
  28. * Example: app started, user logged in.
  29. * - ZF_LOG_DEBUG - minimal set of events that could help to reconstruct the
  30. * execution path. Usually disabled in release builds.
  31. * - ZF_LOG_VERBOSE - all other events. Usually disabled in release builds.
  32. *
  33. * *Ideally*, log file of debugged, well tested, production ready application
  34. * should be empty or very small. Choosing a right log level is as important as
  35. * providing short and self descriptive log message.
  36. */
  37. /*
  38. #define ZF_LOG_VERBOSE 1
  39. #define ZF_LOG_DEBUG 2
  40. #define ZF_LOG_INFO 3
  41. #define ZF_LOG_WARN 4
  42. #define ZF_LOG_ERROR 5
  43. #define ZF_LOG_FATAL 6
  44. */
  45. // LOGGING with file output
  46. #include "zf_log.h"
  47. FILE *g_log_file;
  48. static void file_output_callback(const zf_log_message *msg, void *arg) {
  49. (void)arg;
  50. *msg->p = '\n';
  51. fwrite(msg->buf, msg->p - msg->buf + 1, 1, g_log_file);
  52. fflush(g_log_file);
  53. }
  54. static void file_output_close(void) { fclose(g_log_file); }
  55. static void file_output_open(const char *const log_path) {
  56. g_log_file = fopen(log_path, "a");
  57. if (!g_log_file) {
  58. ZF_LOGW("Failed to open log file %s", log_path);
  59. return;
  60. }
  61. atexit(file_output_close);
  62. zf_log_set_output_v(ZF_LOG_PUT_STD, 0, file_output_callback);
  63. }
  64. // END LOGGING
  65. #include "terminal.h"
  66. struct console_details console;
  67. #include "images.h"
  68. #include "lastseen.h"
  69. #include "render.h"
  70. #include "utils.h"
  71. /*
  72. What is the name of the actual, real Mystic executable
  73. that we'll be executing and mangling?
  74. */
  75. #define TARGET "./mySTIC"
  76. // Size of our input and output buffers.
  77. #define BSIZE 1024
  78. /*
  79. These are harry "timeout" events.
  80. These happen when we've been sitting around awhile.
  81. */
  82. #ifdef CPP_MADMAN_STL_CODE
  83. const char *random_phrase(const char *words, int len, int last_seen) {
  84. // ooh. a map of char *s to last_seen_events. :P
  85. static map<const char *, array<int>> tracker;
  86. map<const char *, array<int>>::iterator it;
  87. array<int, last_seen> it = tracker.find(words);
  88. if (it == tracker.end()) {
  89. // key does not exist.
  90. array<int, last_seen> last;
  91. for (int i = 0; i < last_seen; i++) {
  92. last[i] = -1;
  93. };
  94. tracker.insert(words, last);
  95. it = tracker.find(words);
  96. };
  97. }
  98. #endif
  99. void harry_idle_event(int fd) {
  100. // Make something happen
  101. char buffer[100];
  102. int slen;
  103. int r;
  104. // This is no where near finished, BUT!
  105. const char *phrases[] = {"Hahaha", "Snicker, snicker", "Boo!",
  106. "MeOW", "I see U", "Arrooo!",
  107. "Ahh-wooo!", "Aaaooo!"};
  108. const char *cp;
  109. static LastSeen last_seen_harry_event(2);
  110. // Remember the last phrase used,
  111. // and don't repeat (the last two)!
  112. do {
  113. r = randint((sizeof(phrases) / sizeof(char *)));
  114. // r = random() % ((sizeof(phrases) / sizeof(char *)) - 1);
  115. } while (last_seen_harry_event.seen_before(r));
  116. // ZF_LOGD("%d => %d %d", r, last_seen_harry_event[0],
  117. // last_seen_harry_event[1]);
  118. cp = phrases[r];
  119. int color = random() % 15 + 1;
  120. /*
  121. int color = random() % 16;
  122. if (color == 0) {
  123. color++;
  124. } // If it's 0 let's make it 1. // color = (random() % 15) + 1
  125. */
  126. slen = snprintf(buffer, sizeof(buffer), "^S2^C%02d%s^P2^CR^D%02d", color, cp,
  127. (int)strlen(cp));
  128. if (slen >= sizeof(buffer)) {
  129. ZF_LOGE("snprintf %d > size %d", slen, (int)sizeof(buffer));
  130. buffer[0] = 0;
  131. }
  132. ZF_LOGD("harry_event: render(%d, \"%s\")", fd, buffer);
  133. render(fd, buffer, strlen(buffer));
  134. }
  135. void init_harry() {
  136. // init_have_seen(last_seen_harry_event, MAX_HARRY_EVENT_DUPS);
  137. // ZF_LOGD("init => %d %d", last_seen_harry_event[0],
  138. // last_seen_harry_event[1]);
  139. console_init(&console);
  140. }
  141. /*
  142. The code to get the username and fullname is useless on telnet
  143. connections.
  144. */
  145. const char *username = NULL;
  146. const char *fullname = NULL;
  147. /*
  148. This only works for those few idiots that use the
  149. horribly broken SSH crap that Mystic uses.
  150. */
  151. int locate_user(const char *alias) {
  152. FILE *user;
  153. char buffer[0x600];
  154. char temp[100];
  155. user = fopen("data/users.dat", "rb");
  156. if (user == NULL)
  157. return 0;
  158. // Carry on!
  159. while (fread(buffer, 0x600, 1, user) == 1) {
  160. pcopy(buffer + 0x6d, temp);
  161. if (strcasecmp(temp, username) == 0) {
  162. pcopy(buffer + 0x8c, temp);
  163. fullname = strdup(temp);
  164. break;
  165. }
  166. /*
  167. printf("Alias: %s\n", temp);
  168. pcopy(buffer + 0x8c, temp );
  169. printf("Full Name: %s\n", temp );
  170. */
  171. }
  172. fclose(user);
  173. return 1;
  174. }
  175. // Buffers are BSIZE + 1, so a buffer that size can strcpy safely.
  176. regex_t ANSI;
  177. regex_t WORDS;
  178. regex_t WORD;
  179. int init_regex(void) {
  180. int ret;
  181. char ansi[] = "\x1b\[[0-9]+(;[0-9]+)*?[a-zA-Z]";
  182. char words[] = "[a-zA-Z]+( [a-zA-Z]+)+";
  183. char word[] = "[a-zA-Z]+";
  184. char errorbuf[100];
  185. if (ret = regcomp(&ANSI, ansi, REG_EXTENDED | REG_NEWLINE)) {
  186. regerror(ret, &ANSI, errorbuf, sizeof(errorbuf));
  187. ZF_LOGW("Regex %s failed to compile: %s", ansi, errorbuf);
  188. return 0;
  189. };
  190. if (ret = regcomp(&WORDS, words, REG_EXTENDED | REG_NEWLINE)) {
  191. regerror(ret, &WORDS, errorbuf, sizeof(errorbuf));
  192. ZF_LOGW("Regex %s failed to compile: %s", words, errorbuf);
  193. return 0;
  194. };
  195. if (ret = regcomp(&WORD, word, REG_EXTENDED | REG_NEWLINE)) {
  196. regerror(ret, &WORD, errorbuf, sizeof(errorbuf));
  197. ZF_LOGW("Regex %s failed to compile: %s", word, errorbuf);
  198. return 0;
  199. };
  200. return 1;
  201. }
  202. int regmatch(regex_t *preg, const char *string, size_t nmatch,
  203. regmatch_t pmatch[], int eflags) {
  204. // returns number of matches found. (Max nmatch)
  205. int matches = 0;
  206. int offset = 0;
  207. while (matches < nmatch) {
  208. int ret = regexec(preg, string + offset, nmatch - matches, pmatch + matches,
  209. eflags);
  210. if (!ret) {
  211. int current = offset;
  212. offset += pmatch[matches].rm_eo;
  213. pmatch[matches].rm_so += current;
  214. pmatch[matches].rm_eo += current;
  215. matches++;
  216. } else if (ret == REG_NOMATCH) {
  217. break;
  218. } else {
  219. break;
  220. }
  221. }
  222. return matches;
  223. }
  224. #define MAX_MATCH 32
  225. regmatch_t rxmatch[MAX_MATCH];
  226. int rx_match(regex_t *regex, const char *buffer) {
  227. int ret;
  228. ret = regmatch(regex, buffer, MAX_MATCH, rxmatch, 0);
  229. if (0) {
  230. for (int i = 0; i < ret; i++) {
  231. ZF_LOGI("%d : (%d-%d)", i, rxmatch[i].rm_so, rxmatch[i].rm_eo);
  232. }
  233. }
  234. return ret;
  235. }
  236. /**
  237. * random_activate()
  238. *
  239. * Is a weight (1-10),
  240. * tests if random number is < weight * 10.
  241. *
  242. * So random_activate(9) happens more frequently
  243. * then random_activate(8) or lower.
  244. *
  245. * This probably needs to be fixed.
  246. * We need a better randint(RANGE) code.
  247. */
  248. int random_activate(int w) {
  249. int r = randint(100);
  250. if (r <= (w * 10)) {
  251. return 1;
  252. };
  253. return 0;
  254. }
  255. /*
  256. word_state(): // deprecated
  257. -1 only lower
  258. +1 only upper
  259. 0 mixed
  260. */
  261. int word_state(const char *buffer, int len) {
  262. int p;
  263. int upper = 0;
  264. int lower = 0;
  265. int ret;
  266. float pct;
  267. for (p = 0; p < len; p++) {
  268. char c = buffer[p];
  269. if (isalpha(c)) {
  270. if (isupper(c)) {
  271. upper++;
  272. };
  273. if (islower(c)) {
  274. lower++;
  275. };
  276. }
  277. }
  278. if (upper == lower) {
  279. return 0;
  280. }
  281. if (upper > lower) {
  282. ret = 1;
  283. pct = ((float)lower / (float)upper) * 100.0;
  284. } else {
  285. ret = -1;
  286. pct = ((float)upper / (float)lower) * 100.0;
  287. }
  288. // ZF_LOGD("So far %d with %f %%", ret, pct);
  289. if (pct < 40.0) {
  290. return ret;
  291. }
  292. return 0;
  293. }
  294. /*
  295. Given a buffer and length, mangle away.
  296. toupper, tolower, flipper
  297. */
  298. int word_mangler(char *buffer, int len) {
  299. int p;
  300. int count = 0;
  301. int state;
  302. // state = word_state(buffer, len);
  303. // ZF_LOGD("word_state(%.*s) %d", len, buffer, state);
  304. state = randrange(-1, 1);
  305. // TODO: Transposer
  306. for (p = 0; p < len; p++) {
  307. char c = buffer[p];
  308. if (randint(len) == p) {
  309. break;
  310. }
  311. switch (state) {
  312. case -1:
  313. // upper
  314. if (islower(c)) {
  315. count++;
  316. buffer[p] = toupper(c);
  317. }
  318. break;
  319. case 1:
  320. // lower
  321. if (isupper(c)) {
  322. count++;
  323. buffer[p] = tolower(c);
  324. }
  325. break;
  326. case 0:
  327. // flipper
  328. if (islower(c)) {
  329. count++;
  330. buffer[p] = toupper(c);
  331. } else {
  332. if (isupper(c)) {
  333. count++;
  334. buffer[p] = tolower(c);
  335. }
  336. }
  337. break;
  338. }
  339. }
  340. return count;
  341. }
  342. int word_wrangler(char *buffer, int len) {
  343. int p;
  344. int count;
  345. int state;
  346. // state = word_state(buffer, len);
  347. // ZF_LOGD("word_state(%.*s) %d", len, buffer, state);
  348. if (len < 5) {
  349. return 0;
  350. }
  351. p = randint(len - 4) + 2;
  352. for (count = 0; count < 4; count++) {
  353. if (!isalpha(buffer[p + count]))
  354. break;
  355. }
  356. ZF_LOGV_MEM(buffer, len, "wrangler %d len %d:", p, count);
  357. if (count >= 2) {
  358. for (int x = 0; x < count / 2; x++) {
  359. char ch = buffer[p + x];
  360. buffer[p + x] = buffer[p + count - 1 - x];
  361. buffer[p + count - 1 - x] = ch;
  362. }
  363. ZF_LOGV_MEM(buffer, len, "word now:");
  364. return 1;
  365. } else
  366. return 0;
  367. }
  368. int buffer_insert(char *buffer, int len, int max_length, int pos,
  369. const char *insert) {
  370. if (len + strlen(insert) > max_length) {
  371. ZF_LOGD("buffer_insert failed [%s]", repr(insert));
  372. return 0;
  373. }
  374. memmove(buffer + pos + strlen(insert), buffer + pos, len - pos);
  375. strncpy(buffer + pos, insert, strlen(insert));
  376. return 1;
  377. }
  378. /*
  379. * The buffer that we've been given is much larger now.
  380. *
  381. * We can no longer mangle or insert into the given buffer.
  382. * Why? Because we don't know what is behind it now!
  383. */
  384. int mangle(int fd, const char *buffer, int len) {
  385. int x, i;
  386. int need_render = 0; // changing word case around doesn't need the render
  387. int mangled = 0;
  388. int mangled_chars = 0;
  389. char play[BSIZE * 2]; // The main buffer to send.
  390. const char *cp;
  391. // Make a copy of buffer, since it can no longer be changed
  392. // inserted into.
  393. memcpy(play, buffer, len);
  394. // NEVER reference buffer from this point on!
  395. char work[BSIZE * 2]; // The mess with buffer.
  396. /*
  397. We use the work buffer to blank out the ANSI
  398. before trying to locate words. (So we don't
  399. grab part of the ANSI codes and mangle those!)
  400. */
  401. // Use terminal - clean out ANSI
  402. // ZF_LOGI("mangle:");
  403. ZF_LOGI_MEM(play, len, "Mangle (%u bytes):", len);
  404. // strcpy(work, buffer);
  405. /*
  406. NOTE: We copy the buffer, so we can clear out ANSI codes, etc.
  407. Otherwise we might mess some ANSI up in the manglying
  408. process.
  409. */
  410. /*
  411. Is there a way to track -- what I've inserted, and make it exempt from
  412. other modifications / mangler, wrangler?
  413. */
  414. /*
  415. (random) Look for ANSI CLS and:
  416. display random spooky texts around, with delays ... then CLS.
  417. display ANSI graphic file, with delays ... then CLS
  418. */
  419. const char *ANSI_CLS = "\x1b[2J";
  420. cp = strnstr(play, len, ANSI_CLS); // strstr(buffer, ANSI_CLS);
  421. if (cp != NULL) {
  422. static int ANSI_CLS_count = 0; // count the number we've seen
  423. ZF_LOGI("seen: ANSI_CLS");
  424. ANSI_CLS_count++;
  425. // Don't activate on the very first CLS. Too soon, don't screw up the ANSI
  426. // detection.
  427. if (ANSI_CLS_count > 1) {
  428. // Ok, figure out the restore color, just in case
  429. struct console_details temp_console;
  430. // Make exact copy of our current console state.
  431. memcpy(&temp_console, &console, sizeof(console));
  432. // Play the buffer into the console
  433. console_receive(&temp_console, play, cp - play);
  434. char restore_color[30]; // ansi color
  435. strcpy(restore_color, color_restore(&temp_console));
  436. if (random_activate(3)) {
  437. char display[100] = "";
  438. int slen;
  439. int needs_cls = 0;
  440. struct image {
  441. const char **lines;
  442. int size;
  443. int cls;
  444. int width; // height = size
  445. } images[] = {{ghost, sizeof(ghost) / sizeof(char *), 1, 0},
  446. {ghead, sizeof(ghead) / sizeof(char *), 1, 0},
  447. {wolf, sizeof(wolf) / sizeof(char *), 1, 0},
  448. {panther, sizeof(panther) / sizeof(char *), 1, 0},
  449. {bat, sizeof(bat) / sizeof(char *), 1, 0},
  450. {skull, sizeof(skull) / sizeof(char *), 0, 19},
  451. {skullblink, sizeof(skullblink) / sizeof(char *), 0, 19}};
  452. static LastSeen last_files(2);
  453. int r;
  454. do {
  455. r = randint((sizeof(images) / sizeof(image)));
  456. } while (last_files.seen_before(r));
  457. char fgoto[10] = "";
  458. if (!images[r].cls) {
  459. int x = 0, y = 0;
  460. x = randint(79 - images[r].width);
  461. y = randint(24 - images[r].size);
  462. int slen;
  463. slen = snprintf(fgoto, sizeof(fgoto), "^f%02d%02d", x, y);
  464. if (slen >= sizeof(fgoto)) {
  465. ZF_LOGE("snprintf %d > size %d", slen, (int)sizeof(fgoto));
  466. fgoto[0] = 0;
  467. }
  468. } else {
  469. strcpy(fgoto, "^F");
  470. }
  471. // (2); // (sizeof(possibles) / sizeof(file_need)) - 1);
  472. needs_cls = images[r].cls;
  473. // I get what's happening. Mystic moves cursor to home, CLS, cursor
  474. // home. When we get here, we're ALWAYS at the top of the screen...
  475. // Hence our bat isn't displayed at the end of the screen.
  476. // This is before the actual CLS, so we CLS before displaying our files.
  477. // I tried a ^P2 before doing this .. but I'd rather have the picture up
  478. // right away I think.
  479. // Ok, yes, there's no filename being sent. :P
  480. render_image(images[r].lines, images[r].size);
  481. slen = snprintf(display, sizeof(display), "%s%s^P3%s",
  482. needs_cls ? "\x1b[2J" : "", fgoto,
  483. restore_color);
  484. if (slen >= sizeof(display)) {
  485. ZF_LOGE("snprintf %d > size %d", slen, (int)sizeof(display));
  486. display[0] = 0;
  487. }
  488. ZF_LOGI("mangle(ANSI_CLS): %d file inserted %s", r, repr(display));
  489. // Move the buffer so there's room for the display string.
  490. if (buffer_insert(play, len, sizeof(play), cp - play, display)) {
  491. len += strlen(display);
  492. // if (string_insert(buffer, 1024, cp - buffer, display)) {
  493. ZF_LOGI_MEM(play, len, "mangle(ANSI_CLS) (%u bytes):", len);
  494. // ZF_LOGI("mangle(ANSI_CLS):");
  495. // ZF_LOGI_REPR(buffer);
  496. // ZF_LOGI("mangle(ANSI_CLS): [%s]", repr(buffer));
  497. need_render = 1;
  498. /*
  499. Copy the new buffer over, but hide our "render" code
  500. from the remaining mangler steps.
  501. */
  502. memcpy(work, play, len);
  503. // strcpy(work, buffer);
  504. i = cp - play;
  505. // find offset into "buffer"
  506. // apply to work.
  507. memset(work + i, ' ', strlen(display));
  508. } else {
  509. ZF_LOGD("insert failed [%s].", repr(display));
  510. }
  511. } else {
  512. if (random_activate(4)) {
  513. int r;
  514. char display[100] = "";
  515. int slen;
  516. /*
  517. Interesting note here:
  518. "Anyone there" qualifies as a valid WORDS regex match.
  519. It is possible that it can get mangled/wrangled!
  520. */
  521. const char *phrasing[] = {
  522. "^R1Haha^P1ha^P1ha",
  523. "Poof!",
  524. "Got U",
  525. "Anyone there?",
  526. "^R1Knock, ^P1Knock",
  527. "^G0101^C07^S9Segmentation fault (core dumped)^P2"};
  528. static LastSeen last_phrasing(2);
  529. ZF_LOGI("mangle(ANSI_CLS)");
  530. // sprintf( display, "^P2...");
  531. // This string actually screws up ANSI detection (takes too long)
  532. // strcpy(display, "^P2^S501234567890^P1abcdef^P2g^P3h^P4i^S0^P2");
  533. // strcpy(display, "^P2^S301234^P15^S0^P2");
  534. // Add in random text, plus color!
  535. do {
  536. r = randint(sizeof(phrasing) / sizeof(char *));
  537. } while (last_phrasing.seen_before(r));
  538. int color = random() % 15 + 1;
  539. int x = random() % 30 + 1;
  540. int y = random() % 15 + 1;
  541. /*
  542. Don't have it pause there before moving the cursor.
  543. Move the cursor, get the color changed, THEN pause.
  544. Then act all crazy.
  545. NOTE: Make sure if you use any ^R Render effects, turn them off
  546. before trying to display the restore_color. :P ^R0 Also, make
  547. sure you re-home the cursor ^G0101 because that's where they are
  548. expecting the cursor to be! (At least it's how Mystic does it.)
  549. HOME, CLS, HOME, ... Not sure what others do there. We'll see.
  550. */
  551. slen = snprintf(display, sizeof(display),
  552. "^G%02d%02d^S3^C%02d^P1%s^S0^R0%s^P1^G0101", x, y,
  553. color, phrasing[r], restore_color);
  554. if (slen >= sizeof(display)) {
  555. ZF_LOGE("snprintf %d > size %d (Phrase: %d, %s)", slen,
  556. (int)sizeof(display), r, phrasing[r]);
  557. display[0] = 0;
  558. }
  559. // sprintf(display, "^P1^S3^C%02d%s^S0^R0%s^P1", color, phrasing[r],
  560. // restore_color);
  561. // Added debug statement so we can identify what was sent... color,
  562. // number picked and what that is
  563. ZF_LOGD("mangle(ANSI_CLS): Inserted color=%02d r=%d phrase='%s'",
  564. color, r, phrasing[r]);
  565. ZF_LOGI_MEM(play, len, "mangle(ANSI_CLS) :");
  566. // Move the buffer so there's room for the display string.
  567. if (buffer_insert(play, len, sizeof(play), cp - play, display)) {
  568. len += strlen(display);
  569. // if (string_insert(buffer, BSIZE * 4, cp - buffer, display)) {
  570. ZF_LOGI_MEM(play, len, "mangle(ANSI_CLS) + :");
  571. // ZF_LOGI("mangle(ANSI_CLS):");
  572. // ZF_LOGI_REPR(buffer);
  573. need_render = 1;
  574. /*
  575. Copy the new buffer over, but hide our "render" code
  576. from the remaining mangler steps.
  577. */
  578. memcpy(work, play, len);
  579. // strcpy(work, buffer);
  580. i = cp - play;
  581. // find offset into "buffer"
  582. // apply to work.
  583. memset(work + i, ' ', strlen(display));
  584. } else {
  585. ZF_LOGD("insert failed [%s].", repr(display));
  586. }
  587. }
  588. }
  589. }
  590. }
  591. memcpy(work, play, len);
  592. // strcpy(work, buffer); // sure.
  593. // NOTE: This is NOT aware of my ^TRIGGERS, so they will show up
  594. // as valid things to mangle in work. (Keep this in mind).
  595. const char replace_with = ' ';
  596. for (x = 0; x < len; x++) {
  597. termchar tc = console_char(&console, play[x]);
  598. int ansi = tc.in_ansi;
  599. if (ansi) {
  600. work[x] = replace_with;
  601. if (tc.ansi != START) {
  602. ZF_LOGD("ANSI type %d at %d", tc.ansi, x );
  603. }
  604. }
  605. // fixup "work" so it's a valid C string
  606. if (buffer[x] == 0) {
  607. work[x] = replace_with;
  608. }
  609. }
  610. // fixup "work" buffer so it's a valid c string
  611. // (required for regex to work.)
  612. work[len] = 0;
  613. ZF_LOGI_MEM(work, len, "Work now:");
  614. /*
  615. (random) Locate words (in work), and possibly flip them around.
  616. Transpose words. Transpose case. Transpose letters.
  617. Ok, what would be interesting, is if we could find
  618. W\x1[0;34mORDS with color changes in them, and work with them.
  619. without screwing up the color changes, of course. :P
  620. Example:
  621. Y\x1b[0;1mes \x1b[0;1;34m\x1b[0;1;34;44m N\x1b[0;1;44mo
  622. Yes No
  623. ^ This would be a job for a crazy regex.
  624. I'd have to map the characters to positions in the buffer. :S
  625. I'd want mangle and wrangle to work.
  626. The Message menu -- doesn't hardly get mangled at all (at least on
  627. my test site). Because all of the color changes break up the
  628. words in the menu.
  629. */
  630. x = rx_match(&WORDS, work);
  631. ZF_LOGD("found %d word groups", x);
  632. if (x > 0) {
  633. for (i = 0; i < x; i++) {
  634. // Yes! Be random!
  635. if (random_activate(8)) {
  636. int c = word_mangler(play + rxmatch[i].rm_so,
  637. rxmatch[i].rm_eo - rxmatch[i].rm_so);
  638. if (c) {
  639. mangled++;
  640. mangled_chars += c;
  641. }
  642. }
  643. if (random_activate(4)) {
  644. word_wrangler(play + rxmatch[i].rm_so,
  645. rxmatch[i].rm_eo - rxmatch[i].rm_so);
  646. }
  647. }
  648. }
  649. /*
  650. (random) Locate single words, and transpose words.
  651. Transpose letters.
  652. */
  653. /*
  654. (random) Display up to certain point. Delay.
  655. Print some characters slowly. Delay.
  656. */
  657. if (need_render) {
  658. ZF_LOGD_MEM(play, len, "Ready to render:");
  659. // ZF_LOGD("HH %d : (%d) %s", need_render, (int)strlen(buffer),
  660. // repr(buffer));
  661. } else {
  662. if (mangled) {
  663. ZF_LOGD_MEM(play, len, "Mangled %d words, %d chars:", mangled,
  664. mangled_chars);
  665. /* ZF_LOGD("Mangled %d words, %d chars : %s", mangled, mangled_chars,
  666. repr(buffer)); */
  667. }
  668. }
  669. if (need_render) {
  670. render(fd, play, len);
  671. } else {
  672. write(fd, play, len);
  673. };
  674. return need_render && mangled;
  675. }
  676. int harry_happens(time_t *last_event, int wakeup) {
  677. time_t now = time(NULL);
  678. int elapsed = now - *last_event;
  679. if (elapsed > wakeup) {
  680. // Ok! It's been too long since we've done something.
  681. *last_event = now;
  682. return 1;
  683. }
  684. return 0;
  685. }
  686. /*
  687. This is done. :D My buffering system works with stack'em.
  688. TO FIX: Stop using c strings, must use char * buffer + int length.
  689. MAY CONTAIN NULL VALUES.
  690. Rework some things here.
  691. Here's the "plan":
  692. if buffer is EMPTY:
  693. time_idle = 1;
  694. // setup for "random timeout value mess"
  695. // we're in luck! The last parameter is time interval/timeout. :D
  696. timeout.tv_sec = 10; // randrange(10-25)
  697. timeout.tv_usec = 0;
  698. NOT EMPTY:
  699. // we're in luck! The last parameter is time interval/timeout. :D
  700. timeout.tv_sec = 0;
  701. timeout.tv_usec = 10; // Wild Guess Here? Maybe higher, maybe lower?
  702. time_idle = 0;
  703. ON READ:
  704. read/append to current buffer.
  705. We can't use nulls -- what if they are using ZModem, there's nulls in the
  706. file! Look for trailing / the very last "\r\n".
  707. (I could mangle/chunk it line by line. But I'm not sure I'd need to do
  708. that.)
  709. Optional "mangle" buffer up to that very point -- and send up to that point.
  710. Option #2: Maybe we send everything if program has been running for under
  711. 20 seconds. This would allow the ANSI detect to not get screwed up by this
  712. new idea.
  713. ON TIMEOUT:
  714. if time_idle:
  715. Activate funny harry timeout events.
  716. else:
  717. Ok, we *STILL* haven't received any more characters into the buffer --
  718. even after waiting. (Maybe we haven't waited long enough?)
  719. send the pending information in the buffer and clear it out.
  720. Maybe this is a prompt, and there won't be a \r\n.
  721. This allows for cleaner process of "lines" of buffer. We shouldn't break
  722. in the midDLE OF A WORD. Downside is that we sit on buffer contents a little
  723. while / some amount of time -- which will add some lag to prompts showing up.
  724. (LAG? Are you kidding?)
  725. ZModem:
  726. start: "rz^M**"...
  727. 05-12 18:12:15.916 >> rz^M**^XB00000000000000^M<8A>^Q
  728. 05-12 18:12:15.928 << **\x18B0100000023be50\r\n\x11
  729. 05-12 18:12:15.928 >> *^XC^D
  730. 05-12 18:12:15.939 << **\x18B0900000000a87c\r\n\x11
  731. 05-12 18:12:15.940 >> *^XC
  732. # Start of PK zipfile.
  733. 05-12 18:12:15.941 >> PK^C^D^T
  734. end:
  735. 05-12 18:26:38.700 << **\x18B0100000023be50\r\n\x11
  736. 05-12 18:26:38.700 >> **^XB0823a77600344c^M<8A>
  737. 05-12 18:26:38.711 << **\x18B0800000000022d\r\n
  738. 05-12 18:26:38.712 >> OO^MESC[0m
  739. */
  740. int main(int argc, char *argv[]) {
  741. int master;
  742. pid_t pid;
  743. int node = -1;
  744. file_output_open("horrible_harry.log");
  745. init_harry();
  746. srandom(time(NULL));
  747. // ./mystic -TID7 -IP192.168.0.1 -HOSTUnknown -ML1 -SL0 -ST2 -CUnknown
  748. // -Ubugz -PUWISHPASSWORD
  749. // ./mystic -TID7 -IP192.168.0.1 -HOSTUnknown -ML0 -SL0 -ST0 -CUnknown
  750. // ./mystic -TID7 -IP192.168.0.1 -HOSTUnknown -ML1 -SL0 -ST2 -CUnknown
  751. // -Ubugz -PUWISH
  752. // ./mystic -TID7 -IP192.168.0.1 -HOSTUnknown -ML0 -SL0 -ST0 -CUnknown
  753. // ./mystic -TID7 -IP192.168.0.1 -HOSTUnknown -ML0 -SL0 -ST0 -CUnknown
  754. // ./mystic -TID9 -IP192.168.0.1 -HOSTUnknown -ML0 -SL1 -ST0 -CUnknown
  755. // ./mystic -TID7 -IP192.168.0.1 -HOSTUnknown -ML1 -SL0 -ST2 -CUnknown
  756. // -Ubugz -PDUMBWAYTODOTHIS
  757. // ./mystic -TID9 -IP192.168.0.1 -HOSTUnknown -ML1 -SL1 -ST2 -CUnknown
  758. // -Ubugz -PIDONTUSEPASCAL
  759. // SSH: -ML1 -ST2
  760. // Telnet: -ML0 -ST0
  761. // Locate username (if given) in the command line
  762. // -U<username>
  763. for (int x = 0; x < argc; x++) {
  764. if (strncmp("-U", argv[x], 2) == 0) {
  765. username = argv[x] + 2;
  766. ZF_LOGI("Username: [%s]", username);
  767. };
  768. if (strncmp("-SL", argv[x], 3) == 0) {
  769. node = atoi(argv[x] + 3) + 1;
  770. ZF_LOGI("Node: %d", node);
  771. }
  772. }
  773. if (username != NULL) {
  774. locate_user(username);
  775. ZF_LOGD("Username: [%s] A.K.A. [%s]", username, fullname);
  776. }
  777. if (!init_regex())
  778. return 2;
  779. pid = forkpty(&master, NULL, NULL, NULL);
  780. // impossible to fork
  781. if (pid < 0) {
  782. return 1;
  783. }
  784. // child
  785. else if (pid == 0) {
  786. char *args[20]; // max 20 args
  787. int x;
  788. char new_exec[] = TARGET;
  789. args[0] = new_exec;
  790. for (x = 1; x < argc; x++) {
  791. args[x] = argv[x];
  792. };
  793. args[x] = NULL;
  794. // run Mystic, run!
  795. execvp(TARGET, args);
  796. }
  797. // parent
  798. else {
  799. struct termios tios, orig1;
  800. struct timeval timeout;
  801. time_t last_event = 0; // time(NULL);
  802. ZF_LOGD("starting");
  803. tcgetattr(master, &tios);
  804. tios.c_lflag &= ~(ECHO | ECHONL | ICANON);
  805. /*
  806. tios.c_iflag &= ~(ICRNL | IXON | BRKINT);
  807. tios.c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
  808. tios.c_oflag &= ~(OPOST);
  809. */
  810. tcsetattr(master, TCSAFLUSH, &tios);
  811. tcgetattr(1, &orig1);
  812. tios = orig1;
  813. tios.c_iflag &= ~(ICRNL | IXON | BRKINT);
  814. tios.c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
  815. tios.c_oflag &= ~(OPOST);
  816. // https://viewsourcecode.org/snaptoken/kilo/02.enteringRawMode.html
  817. tcsetattr(1, TCSAFLUSH, &tios);
  818. char buffer[BSIZE + 1];
  819. int size = 0;
  820. for (;;) {
  821. int time_idle;
  822. // define estruturas para o select, que serve para verificar qual
  823. // se tornou "pronto pra uso"
  824. fd_set read_fd;
  825. fd_set write_fd;
  826. fd_set except_fd;
  827. // inicializa as estruturas
  828. FD_ZERO(&read_fd);
  829. FD_ZERO(&write_fd);
  830. FD_ZERO(&except_fd);
  831. // atribui o descritor master, obtido pelo forkpty, ao read_fd
  832. FD_SET(master, &read_fd);
  833. // atribui o stdin ao read_fd
  834. FD_SET(STDIN_FILENO, &read_fd);
  835. // o descritor tem que ser unico para o programa, a documentacao
  836. // recomenda um calculo entre os descritores sendo usados + 1
  837. /*
  838. TODO: Figure out how this would work.
  839. I'm thinking something like timeouts 30-50 seconds?
  840. And as we get closer, 15-25 seconds.
  841. */
  842. if (size == 0) {
  843. // buffer is empty
  844. timeout.tv_sec = randrange(10, 20);
  845. timeout.tv_usec = 0;
  846. time_idle = 1;
  847. } else {
  848. // buffer is not empty
  849. timeout.tv_sec = 0;
  850. timeout.tv_usec = 1;
  851. time_idle = 0;
  852. }
  853. if (select(master + 1, &read_fd, &write_fd, &except_fd, &timeout) == 0) {
  854. ZF_LOGI("TIMEOUT");
  855. // This means timeout!
  856. if (time_idle) {
  857. harry_idle_event(STDOUT_FILENO);
  858. } else {
  859. ZF_LOGV_MEM(buffer, size, "TIMEOUT buffer size=%d", size);
  860. console_receive(&console, buffer, size);
  861. write(STDOUT_FILENO, buffer, size);
  862. size = 0;
  863. // buffer is empty now
  864. }
  865. }
  866. int total;
  867. // read_fd esta atribuido com read_fd?
  868. if (FD_ISSET(master, &read_fd)) {
  869. // leia o que bc esta mandando
  870. // ZF_LOGD("read (%d) %d bytes", size, BSIZE - size);
  871. if ((total = read(master, buffer + size, BSIZE - size)) != -1) {
  872. // Ok, we've read more into the buffer.
  873. ZF_LOGV("Read %d bytes", total);
  874. // ZF_LOGV_MEM(buffer + size, total, "Read %d bytes:", total);
  875. size += total;
  876. // ZF_LOGV_MEM(buffer, size, "Buffer now:");
  877. int pos = rstrnstr(buffer, size, "\r\n");
  878. if (pos >= 0) {
  879. // found something!
  880. pos += 2;
  881. // ZF_LOGD_MEM(buffer, pos, "mangle buffer %d bytes:", pos);
  882. mangle(STDOUT_FILENO, buffer, pos);
  883. memmove(buffer, buffer + pos, size - pos);
  884. size -= pos;
  885. // } else {
  886. // ZF_LOGV("position of /r/n not found.");
  887. }
  888. } else
  889. break;
  890. }
  891. // read_fd esta atribuido com a entrada padrao?
  892. if (FD_ISSET(STDIN_FILENO, &read_fd)) {
  893. // leia a entrada padrao
  894. char input[BSIZE];
  895. int r = read(STDIN_FILENO, &input, BSIZE);
  896. input[r] = 0;
  897. // e escreva no bc
  898. ZF_LOGI("<< %s", repr(input));
  899. write(master, &input, r);
  900. // This is INPUT from the USER
  901. // ZF_LOGI_MEM( input, strlen(input), "<< ");
  902. }
  903. }
  904. // Restore terminal
  905. tcsetattr(1, TCSAFLUSH, &orig1);
  906. ZF_LOGD("exit");
  907. }
  908. return 0;
  909. }