hharry.cpp 17 KB

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