hharry.cpp 30 KB

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