hharry.cpp 19 KB

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