hharry.cpp 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657
  1. #include "terminal.h"
  2. #include "utils.h"
  3. #include "wordplay.h"
  4. #include <ctype.h>
  5. #include <fcntl.h>
  6. #include <fstream>
  7. #include <iostream>
  8. #include <pty.h>
  9. #include <sstream>
  10. #include <stdio.h>
  11. #include <stdlib.h> // random()
  12. #include <string.h>
  13. #include <string>
  14. #include <strings.h> // strcasecmp
  15. #include <sys/select.h>
  16. #include <sys/wait.h>
  17. #include <termios.h>
  18. #include <time.h>
  19. #include <unistd.h>
  20. struct console_details console;
  21. /*
  22. We get the username/fullname from tailing the node logs,
  23. and reading the user.dat file.
  24. */
  25. std::string username;
  26. std::string fullname;
  27. // #include <signal.h> // handle Ctrl-C/SIGINT
  28. /* Log level guideline:
  29. * - ZF_LOG_FATAL - happened something impossible and absolutely unexpected.
  30. * Process can't continue and must be terminated.
  31. * Example: division by zero, unexpected modifications from other thread.
  32. * - ZF_LOG_ERROR - happened something possible, but highly unexpected. The
  33. * process is able to recover and continue execution.
  34. * Example: out of memory (could also be FATAL if not handled properly).
  35. * - ZF_LOG_WARN - happened something that *usually* should not happen and
  36. * significantly changes application behavior for some period of time.
  37. * Example: configuration file not found, auth error.
  38. * - ZF_LOG_INFO - happened significant life cycle event or major state
  39. * transition.
  40. * Example: app started, user logged in.
  41. * - ZF_LOG_DEBUG - minimal set of events that could help to reconstruct the
  42. * execution path. Usually disabled in release builds.
  43. * - ZF_LOG_VERBOSE - all other events. Usually disabled in release builds.
  44. *
  45. * *Ideally*, log file of debugged, well tested, production ready application
  46. * should be empty or very small. Choosing a right log level is as important as
  47. * providing short and self descriptive log message.
  48. */
  49. /*
  50. #define ZF_LOG_VERBOSE 1
  51. #define ZF_LOG_DEBUG 2
  52. #define ZF_LOG_INFO 3
  53. #define ZF_LOG_WARN 4
  54. #define ZF_LOG_ERROR 5
  55. #define ZF_LOG_FATAL 6
  56. */
  57. // When debugging low-level, use this:
  58. // #define ZF_LOG_LEVEL ZF_LOG_VERBOSE
  59. // Except this doesn't work. It needs to be anywere the
  60. // zf_log.h is included.
  61. // LOGGING with file output
  62. #include "zf_log.h"
  63. FILE *g_log_file;
  64. static void file_output_callback(const zf_log_message *msg, void *arg) {
  65. (void)arg;
  66. *msg->p = '\n';
  67. fwrite(msg->buf, msg->p - msg->buf + 1, 1, g_log_file);
  68. fflush(g_log_file);
  69. }
  70. static void file_output_close(void) { fclose(g_log_file); }
  71. static int file_output_open(const char *const log_path) {
  72. g_log_file = fopen(log_path, "a");
  73. if (!g_log_file) {
  74. ZF_LOGW("Failed to open log file %s", log_path);
  75. return 0;
  76. }
  77. atexit(file_output_close);
  78. zf_log_set_output_v(ZF_LOG_PUT_STD, 0, file_output_callback);
  79. return 1;
  80. }
  81. void log_flush(void) { fflush(g_log_file); }
  82. // END LOGGING
  83. /*
  84. What is the name of the actual, real Mystic executable
  85. that we'll be executing and mangling?
  86. */
  87. #define TARGET "./mySTIC"
  88. // Size of our input and output buffers.
  89. #define BSIZE 1024
  90. /*
  91. These are harry "timeout" events.
  92. These happen when we've been sitting around awhile.
  93. */
  94. int node;
  95. /*
  96. This only works for those few idiots that use the
  97. horribly broken SSH crap that Mystic uses.
  98. */
  99. int locate_user(const char *alias) {
  100. FILE *user;
  101. char buffer[0x600];
  102. char temp[100];
  103. user = fopen("data/users.dat", "rb");
  104. if (user == NULL)
  105. return 0;
  106. // Carry on!
  107. while (fread(buffer, 0x600, 1, user) == 1) {
  108. pcopy(buffer + 0x6d, temp);
  109. if (strcasecmp(temp, username.c_str()) == 0) {
  110. pcopy(buffer + 0x8c, temp);
  111. fullname.assign(temp);
  112. break;
  113. }
  114. /*
  115. printf("Alias: %s\n", temp);
  116. pcopy(buffer + 0x8c, temp );
  117. printf("Full Name: %s\n", temp );
  118. */
  119. }
  120. fclose(user);
  121. return 1;
  122. }
  123. std::ifstream logfile;
  124. std::streampos log_pos;
  125. void open_mystic_log(void) {
  126. std::string mystic_logfile;
  127. {
  128. std::ostringstream buffer;
  129. buffer << "logs/node" << node << ".log";
  130. mystic_logfile = buffer.str();
  131. };
  132. logfile.open(mystic_logfile, std::ios_base::in | std::ios_base::ate);
  133. // Ok, we're at the end of the file. Or should be.
  134. if (logfile.is_open()) {
  135. ZF_LOGD("Log %s open", (const char *)mystic_logfile.c_str());
  136. log_pos = logfile.tellg();
  137. } else {
  138. ZF_LOGE("Failed to open: %s", (const char *)mystic_logfile.c_str());
  139. }
  140. }
  141. void scan_mystic_log(void) {
  142. if (logfile.is_open()) {
  143. int again = 0;
  144. do {
  145. std::string line = find_new_text(logfile, log_pos);
  146. if (line.empty())
  147. return;
  148. again = 1;
  149. ZF_LOGD("mystic log: %s", (const char *)line.c_str());
  150. // Ok, we have a line, look for interesting details
  151. if (line.find("New user application") != std::string::npos) {
  152. ZF_LOGE("New User");
  153. }
  154. size_t pos;
  155. pos = line.find("Created Account: ");
  156. if (pos != std::string::npos) {
  157. pos += 18 - 1;
  158. // Ok, find the end '#'
  159. size_t len = line.find('#', pos);
  160. if (len != std::string::npos) {
  161. username = line.substr(pos, len - pos - 1);
  162. ZF_LOGE("New User: %s", (const char *)username.c_str());
  163. // once we know this works -- lookup user's record
  164. locate_user(username.c_str());
  165. ZF_LOGD("Username: [%s] A.K.A. [%s]", (const char *)username.c_str(),
  166. (const char *)fullname.c_str());
  167. }
  168. }
  169. pos = line.find(" logged in");
  170. if (pos != std::string::npos) {
  171. --pos;
  172. size_t len = line.rfind(' ', pos);
  173. if (len != std::string::npos) {
  174. len++;
  175. username = line.substr(len, pos + 1 - len);
  176. ZF_LOGE("User: %s", (const char *)username.c_str());
  177. // verify this works, lookup
  178. locate_user(username.c_str());
  179. ZF_LOGD("Username: [%s] A.K.A. [%s]", (const char *)username.c_str(),
  180. (const char *)fullname.c_str());
  181. }
  182. }
  183. } while (again);
  184. }
  185. }
  186. /*
  187. This is done. :D My buffering system works with stack'em.
  188. TO FIX: Stop using c strings, must use char * buffer + int length.
  189. MAY CONTAIN NULL VALUES.
  190. Rework some things here.
  191. Here's the "plan":
  192. if buffer is EMPTY:
  193. time_idle = 1;
  194. // setup for "random timeout value mess"
  195. // we're in luck! The last parameter is time interval/timeout. :D
  196. timeout.tv_sec = 10; // randrange(10-25)
  197. timeout.tv_usec = 0;
  198. NOT EMPTY:
  199. // we're in luck! The last parameter is time interval/timeout. :D
  200. timeout.tv_sec = 0;
  201. timeout.tv_usec = 10; // Wild Guess Here? Maybe higher, maybe
  202. lower? time_idle = 0;
  203. ON READ:
  204. read/append to current buffer.
  205. We can't use nulls -- what if they are using ZModem, there's nulls in
  206. the file! Look for trailing / the very last "\r\n".
  207. (I could mangle/chunk it line by line. But I'm not sure I'd need to do
  208. that.)
  209. Optional "mangle" buffer up to that very point -- and send up to that
  210. point.
  211. Option #2: Maybe we send everything if program has been running for
  212. under 20 seconds. This would allow the ANSI detect to not get screwed up by
  213. this new idea.
  214. ON TIMEOUT:
  215. if time_idle:
  216. Activate funny harry timeout events.
  217. else:
  218. Ok, we *STILL* haven't received any more characters into the buffer --
  219. even after waiting. (Maybe we haven't waited long enough?)
  220. send the pending information in the buffer and clear it out.
  221. Maybe this is a prompt, and there won't be a \r\n.
  222. This allows for cleaner process of "lines" of buffer. We shouldn't break
  223. in the midDLE OF A WORD. Downside is that we sit on buffer contents a
  224. little while / some amount of time -- which will add some lag to prompts
  225. showing up.
  226. (LAG? Are you kidding?)
  227. ZModem:
  228. start: "rz^M**"...
  229. 05-12 18:12:15.916 >> rz^M**^XB00000000000000^M<8A>^Q
  230. 05-12 18:12:15.928 << **\x18B0100000023be50\r\n\x11
  231. 05-12 18:12:15.928 >> *^XC^D
  232. 05-12 18:12:15.939 << **\x18B0900000000a87c\r\n\x11
  233. 05-12 18:12:15.940 >> *^XC
  234. # Start of PK zipfile.
  235. 05-12 18:12:15.941 >> PK^C^D^T
  236. end:
  237. 05-12 18:26:38.700 << **\x18B0100000023be50\r\n\x11
  238. 05-12 18:26:38.700 >> **^XB0823a77600344c^M<8A>
  239. 05-12 18:26:38.711 << **\x18B0800000000022d\r\n
  240. 05-12 18:26:38.712 >> OO^MESC[0m
  241. */
  242. // TODO: Get everything above this -- into another file.
  243. int main(int argc, char *argv[]) {
  244. int master;
  245. pid_t pid;
  246. node = -1;
  247. init_harry();
  248. srandom(time(NULL));
  249. // ./mystic -TID7 -IP192.168.0.1 -HOSTUnknown -ML1 -SL0 -ST2 -CUnknown
  250. // -Ubugz -PUWISHPASSWORD
  251. // ./mystic -TID7 -IP192.168.0.1 -HOSTUnknown -ML0 -SL0 -ST0 -CUnknown
  252. // ./mystic -TID7 -IP192.168.0.1 -HOSTUnknown -ML1 -SL0 -ST2 -CUnknown
  253. // -Ubugz -PUWISH
  254. // ./mystic -TID7 -IP192.168.0.1 -HOSTUnknown -ML0 -SL0 -ST0 -CUnknown
  255. // ./mystic -TID7 -IP192.168.0.1 -HOSTUnknown -ML0 -SL0 -ST0 -CUnknown
  256. // ./mystic -TID9 -IP192.168.0.1 -HOSTUnknown -ML0 -SL1 -ST0 -CUnknown
  257. // ./mystic -TID7 -IP192.168.0.1 -HOSTUnknown -ML1 -SL0 -ST2 -CUnknown
  258. // -Ubugz -PDUMBWAYTODOTHIS
  259. // ./mystic -TID9 -IP192.168.0.1 -HOSTUnknown -ML1 -SL1 -ST2 -CUnknown
  260. // -Ubugz -PIDONTUSEPASCAL
  261. // SSH: -ML1 -ST2
  262. // Telnet: -ML0 -ST0
  263. // Locate username (if given) in the command line
  264. // -U<username>
  265. for (int x = 0; x < argc; x++) {
  266. /*
  267. // This doesn't work: You can give username + wrong password.
  268. // You will be identified as the wrong user at the login screen!
  269. if (strncmp("-U", argv[x], 2) == 0) {
  270. username.assign(argv[x] + 2);
  271. }
  272. */
  273. /* Changed in latest version
  274. if (strncmp("-SL", argv[x], 3) == 0) {
  275. node = atoi(argv[x] + 3) + 1;
  276. }
  277. */
  278. // -TID7, -TID9, -TID11 for node 1, 2, 3
  279. if (strncmp("-TID", argv[x], 4) == 0) {
  280. node = (atoi(argv[x] + 4) - 5) / 2;
  281. }
  282. }
  283. if (node == -1) {
  284. // likely this is someone trying to run something
  285. char *args[20]; // max 20 args
  286. int x;
  287. char new_exec[] = TARGET;
  288. // build new args list
  289. args[0] = new_exec;
  290. for (x = 1; x < argc; x++) {
  291. args[x] = argv[x];
  292. };
  293. // null term the list
  294. args[x] = NULL;
  295. // run Mystic, run!
  296. execvp(TARGET, args);
  297. return 2;
  298. }
  299. std::string logfile;
  300. {
  301. std::ostringstream buffer;
  302. buffer << "horrible_harry_" << node << ".log";
  303. logfile = buffer.str();
  304. };
  305. if (!file_output_open((const char *)logfile.c_str()))
  306. return 2;
  307. for (auto cit = CONFIG.begin(); cit != CONFIG.end(); ++cit) {
  308. ZF_LOGD("Config {%s}:{%s}", (const char *)cit->first.c_str(),
  309. (const char *)cit->second.c_str());
  310. }
  311. ZF_LOGI("Node: %d", node);
  312. if (!username.empty()) {
  313. locate_user(username.c_str());
  314. ZF_LOGD("Username: [%s] A.K.A. [%s]", (const char *)username.c_str(),
  315. (const char *)fullname.c_str());
  316. }
  317. open_mystic_log();
  318. pid = forkpty(&master, NULL, NULL, NULL);
  319. // impossible to fork
  320. if (pid < 0) {
  321. return 1;
  322. }
  323. // child
  324. else if (pid == 0) {
  325. char *args[20]; // max 20 args
  326. int x;
  327. char new_exec[] = TARGET;
  328. // build new args list
  329. args[0] = new_exec;
  330. for (x = 1; x < argc; x++) {
  331. args[x] = argv[x];
  332. };
  333. // null term the list
  334. args[x] = NULL;
  335. // run Mystic, run!
  336. execvp(TARGET, args);
  337. }
  338. // parent
  339. else {
  340. struct termios tios, orig1;
  341. struct timeval timeout;
  342. time_t last_logscan = time(NULL);
  343. ZF_LOGD("starting");
  344. tcgetattr(master, &tios);
  345. tios.c_lflag &= ~(ECHO | ECHONL | ICANON);
  346. /*
  347. tios.c_iflag &= ~(ICRNL | IXON | BRKINT);
  348. tios.c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
  349. tios.c_oflag &= ~(OPOST);
  350. */
  351. tcsetattr(master, TCSAFLUSH, &tios);
  352. tcgetattr(1, &orig1);
  353. tios = orig1;
  354. tios.c_iflag &= ~(ICRNL | IXON | BRKINT);
  355. tios.c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
  356. tios.c_oflag &= ~(OPOST);
  357. // https://viewsourcecode.org/snaptoken/kilo/02.enteringRawMode.html
  358. tcsetattr(1, TCSAFLUSH, &tios);
  359. /*
  360. This doesn't need to be static -- because it is part of
  361. main. Once main ends, we're done.
  362. */
  363. std::string buffer;
  364. buffer.reserve(BSIZE * 2);
  365. std::string play;
  366. play.reserve(4096);
  367. int zmodem = 0;
  368. // int size = 0; // use buffer.size() instead
  369. for (;;) {
  370. int time_idle;
  371. // define estruturas para o select, que serve para verificar qual
  372. // se tornou "pronto pra uso"
  373. fd_set read_fd;
  374. fd_set write_fd;
  375. fd_set except_fd;
  376. // inicializa as estruturas
  377. FD_ZERO(&read_fd);
  378. FD_ZERO(&write_fd);
  379. FD_ZERO(&except_fd);
  380. // atribui o descritor master, obtido pelo forkpty, ao read_fd
  381. FD_SET(master, &read_fd);
  382. // atribui o stdin ao read_fd
  383. FD_SET(STDIN_FILENO, &read_fd);
  384. // o descritor tem que ser unico para o programa, a documentacao
  385. // recomenda um calculo entre os descritores sendo usados + 1
  386. /*
  387. TODO: Figure out how this would work.
  388. I'm thinking something like timeouts 30-50 seconds?
  389. And as we get closer, 15-25 seconds.
  390. if zmodem, buffer will always be empty -- we won't hold anything.
  391. */
  392. if (buffer.size() == 0) {
  393. // buffer is empty
  394. if (zmodem) {
  395. timeout.tv_sec = 5;
  396. } else {
  397. timeout.tv_sec = randrange(10, 20);
  398. };
  399. timeout.tv_usec = 0;
  400. time_idle = 1;
  401. } else {
  402. // buffer is not empty
  403. timeout.tv_sec = 0;
  404. timeout.tv_usec = 1;
  405. time_idle = 0;
  406. }
  407. if (last_logscan < time(NULL)) {
  408. scan_mystic_log();
  409. if (username.empty())
  410. last_logscan = time(NULL) + 2;
  411. else
  412. last_logscan = time(NULL) + 10;
  413. }
  414. if (select(master + 1, &read_fd, &write_fd, &except_fd, &timeout) == 0) {
  415. ZF_LOGI("TIMEOUT");
  416. // This means timeout!
  417. if (time_idle) {
  418. if (harry_level() && !zmodem)
  419. harry_idle_event(STDOUT_FILENO);
  420. } else {
  421. ZF_LOGV("TIMEOUT buffer: %s", logrepr(buffer.c_str()));
  422. /*
  423. ZF_LOGI_MEM(buffer.data(), buffer.size(), "TIMEOUT buffer size=%lu",
  424. buffer.size());
  425. */
  426. play.assign(buffer);
  427. if (harry_level())
  428. mangle(STDOUT_FILENO, play);
  429. else {
  430. write(STDOUT_FILENO, play.data(), play.size());
  431. console_receive(&console, play);
  432. }
  433. /*
  434. ZF_LOGI("console_receive");
  435. console_receive(&console, buffer);
  436. ZF_LOGI("write buffer");
  437. write(STDOUT_FILENO, buffer.data(), buffer.size());
  438. */
  439. ZF_LOGI("buffer clear");
  440. buffer.clear();
  441. // size = 0;
  442. // buffer is empty now
  443. }
  444. }
  445. // read_fd esta atribuido com read_fd?
  446. if (FD_ISSET(master, &read_fd)) {
  447. // leia o que bc esta mandando
  448. // ZF_LOGD("read (%d) %d bytes", size, BSIZE - size);
  449. char read_buffer[BSIZE + 1];
  450. int total;
  451. // We may adjust this later on (adjusting read length).
  452. if ((total = read(master, read_buffer, BSIZE)) != -1) {
  453. // Ok, we've read more into the buffer.
  454. ZF_LOGV("Read %d bytes", total);
  455. buffer.append(read_buffer, total);
  456. if (zmodem) {
  457. // Ok, we're zmodem mode -- is it time to exit?
  458. size_t zend = buffer.find("\x1b[0m");
  459. if (zend != std::string::npos)
  460. zmodem = 0;
  461. zend = buffer.find("\x1b[1;1H");
  462. if (zend != std::string::npos)
  463. zmodem = 0;
  464. if (!zmodem)
  465. ZF_LOGD("Zmodem end");
  466. } else {
  467. // Should we be in zmodem mode?
  468. size_t zstart = buffer.find("**\x18"
  469. "B0");
  470. if (zstart != std::string::npos) {
  471. zmodem = 1;
  472. ZF_LOGD("Zmodem start");
  473. }
  474. }
  475. if (zmodem) {
  476. // ZF_LOGI("Buffer %lu bytes, zmodem...", buffer.size());
  477. write(STDOUT_FILENO, buffer.data(), buffer.size());
  478. // console_receive(&console, buffer);
  479. buffer.clear();
  480. } else {
  481. // ZF_LOGV_MEM(buffer + size, total, "Read %d bytes:", total);
  482. // size += total;
  483. // ZF_LOGV_MEM(buffer, size, "Buffer now:");
  484. size_t pos = buffer.rfind("\r\n");
  485. // rstrnstr(buffer, size, "\r\n");
  486. // >= 0) {
  487. if (pos != std::string::npos) {
  488. // found something!
  489. pos += 2;
  490. // play = buffer.substr() wipes out play's reserve.
  491. // play = buffer.substr(0, pos);
  492. play.assign(buffer, 0, pos);
  493. ZF_LOGI("play %lu size, %lu cap", play.size(), play.capacity());
  494. // play.copy(buffer.data(), pos);
  495. //) = buffer.substr(0, pos);
  496. buffer.erase(0, pos);
  497. mangle(STDOUT_FILENO, play);
  498. // ZF_LOGD_MEM(buffer, pos, "mangle buffer %d bytes:", pos);
  499. // mangle(STDOUT_FILENO, buffer, pos);
  500. // memmove(buffer, buffer + pos, size - pos);
  501. // size -= pos;
  502. // } else {
  503. // ZF_LOGV("position of /r/n not found.");
  504. }
  505. // Ok, we failed to find CR+NL. What's the buffer size at?
  506. if (buffer.size() > BSIZE) {
  507. // Ok, there's something going on, and it doesn't look good
  508. // unsure if I want to feed this into the console
  509. // my guess at this point would be zmodem xfer
  510. ZF_LOGI("Buffer %lu bytes, write only...", buffer.size());
  511. write(STDOUT_FILENO, buffer.data(), buffer.size());
  512. console_receive(&console, buffer);
  513. buffer.clear();
  514. }
  515. }
  516. } else
  517. break;
  518. }
  519. // read_fd esta atribuido com a entrada padrao?
  520. if (FD_ISSET(STDIN_FILENO, &read_fd)) {
  521. // leia a entrada padrao
  522. char input[BSIZE];
  523. int r = read(STDIN_FILENO, &input, BSIZE);
  524. input[r] = 0;
  525. // e escreva no bc
  526. if (!zmodem) {
  527. if (r > 50) {
  528. ZF_LOGI("<< %d bytes", r);
  529. } else {
  530. ZF_LOGI("<< %s", repr(input));
  531. }
  532. }
  533. write(master, &input, r);
  534. // This is INPUT from the USER
  535. // ZF_LOGI_MEM( input, strlen(input), "<< ");
  536. }
  537. }
  538. // Restore terminal
  539. tcsetattr(1, TCSAFLUSH, &orig1);
  540. ZF_LOGD("exit");
  541. }
  542. return 0;
  543. }