1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631
|
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h> /*(printf,fprintf)*/
#include <ctype.h> /*isprint*/
#include <arpa/telnet.h>/*IAC,DO,DONT,...*/
#include <sys/time.h> /*fd_set,FD_ZERO*/
#include <fcntl.h> /*O_RDWR*/
#include <errno.h> /*EINTR*/
#include <string.h>
#ifdef __GLIBC__
#include <pty.h>
#endif
#include "defs.h" /*uchar*/
#include "sock.h" /*sock*/
#include "sockbuf.h" /*sockBufR,sockBufW*/
#include "ttybuf.h" /*tty*/
#include "stty.h" /*(setTty)*/
#include "cmdlex.h" /*Cmdstat*/
#include "telopt.h" /*telOptSummary*/
#include "atcmd.h" /*CHAR_CR*/
#include "timeval.h" /*(timeval...)*/
#include "commx.h" /*(commxForkExec)*/
#include "cmdarg.h" /*cmdarg*/
/* socket input processing loop */
static void
sockReadLoop(void)
{
static enum {
SRL_NORM, SRL_IAC, SRL_CMD,
SRL_SB, SRL_SBC, SRL_SBS, SRL_SBI
} state /*= SRL_NORM*/;
static int cmd;
static int opt;
int c;
if (atcmd.pr) {
while ((c = getSock1()) >= 0) putTty1(c);
} else {
while ((c = getSock1()) >= 0) {
switch (state) {
case SRL_IAC:
switch (c) {
case WILL:
case WONT:
case DO:
case DONT:
cmd = c;
state = SRL_CMD;
break;
case IAC:
/*if (telOpt.binrecv)*/ {
putTty1(c);
state = SRL_NORM;
}
break;
case SB:
state = SRL_SB;
break;
default:
state = SRL_NORM;
telOptPrintCmd("<", c);
}
break;
case SRL_CMD:
if (telOptHandle(cmd, c)) sock.alive = 0;
state = SRL_NORM;
break;
case SRL_SB:
opt = c;
state = SRL_SBC;
break;
case SRL_SBC:
state = (c == TELQUAL_SEND)? SRL_SBS : SRL_NORM;
break;
case SRL_SBS:
state = (c == IAC)? SRL_SBI : SRL_NORM;
break;
case SRL_SBI:
telOptSBHandle(opt);
state = SRL_NORM;
break;
default:
if (c == IAC) {
state = SRL_IAC;
} else {
/*putTty1(telOpt.binrecv? c : (c & 0x7f));*/
putTty1(c);
}
}
}
}
}
/* TTY input processing loop */
static struct {
enum { ESH_NORM, ESH_P1, ESH_P2, ESH_P3 } state;
struct timeval plus1T; /* the time 1st '+' input */
int checkSilence; /* Recognized silence,"+++" sequence.
Now prepare for the 2nd silence.. */
struct timeval expireT; /* keep silence until the time */
} escSeq;
#define escSeqReset() { escSeq.state = ESH_NORM; }
#define checkTtySilence() (escSeq.checkSilence)
/* t1 - t2 > S12? */
static int
s12timePassed(const struct timeval *t1p, const struct timeval *t2p)
{
struct timeval t;
timevalSet10ms(&t, atcmd.s[12] * 2);
timevalAdd(&t, t2p);
return (timevalCmp(t1p, &t) > 0);
}
static void
escSeqHandle(int c)
{
switch (escSeq.state) {
case ESH_P1:
if (c == CHAR_ESC
&& ! s12timePassed(&ttyBufR.newT, &escSeq.plus1T)) {
escSeq.state = ESH_P2;
} else escSeq.state = ESH_NORM;
break;
case ESH_P2:
if (c == CHAR_ESC
&& ! s12timePassed(&ttyBufR.newT, &escSeq.plus1T)) {
escSeq.checkSilence = 1;
timevalSet10ms(&escSeq.expireT, atcmd.s[12] * 2);
timevalAdd(&escSeq.expireT, &ttyBufR.newT);
escSeq.state = ESH_P3;
} else escSeq.state = ESH_NORM;
break;
case ESH_P3:
escSeq.checkSilence = 0;
escSeq.state = ESH_NORM;
/*break;*/
case ESH_NORM:
if (c == CHAR_ESC
&& s12timePassed(&ttyBufR.newT, &ttyBufR.prevT)) {
escSeq.plus1T = ttyBufR.newT;
escSeq.state = ESH_P1;
}
}
}
/*#define LINEBUF_SIZE 256 =>defs.h*/
static struct {
uchar buf[LINEBUF_SIZE];
uchar *ptr;
/*int eol;*/
} lineBuf;
#define lineBufReset() { lineBuf.ptr = lineBuf.buf; /*lineBuf.eol = 0;*/ }
#define putLine1(c) \
{ \
if (lineBuf.ptr < lineBuf.buf + LINEBUF_SIZE) *lineBuf.ptr++ = (c); \
}
#define lineBufBS() \
{ \
if (lineBuf.ptr > lineBuf.buf) lineBuf.ptr--; \
}
static void
ttyReadLoop(void)
{
int c;
if (atcmd.pr) {
while ((c = getTty1()) >= 0) {
putSock1(c);
escSeqHandle(c);
}
} else if (telOpt.sgasend) {
while ((c = getTty1()) >= 0) {
/*if (telOpt.binsend)*/ {
if (c == IAC) putSock1(IAC);
putSock1(c);
} /*else putSock1(c & 0x7f);*/
escSeqHandle(c);
}
} else {
/* !sgasend == local echo mode, which cannot be true binmode */
while ((c = getTty1()) >= 0) {
putTty1(c);
if (c == CHAR_CR) {
putTty1(CHAR_LF);
putSockN(lineBuf.buf, lineBuf.ptr - lineBuf.buf);
putSock1('\r'); /* EOL = CRLF */
putSock1('\n');
lineBufReset();
} else if (c == CHAR_LF) {
/* ignore LFs. CR is the EOL char for modems */
} else if (c == CHAR_BS) {
lineBufBS();
} else {
/*if (telOpt.binsend)*/ {
if (c == IAC) putLine1(IAC);
putLine1(c);
} /*else putLine1(c & 0x7f);*/
}
escSeqHandle(c);
}
}
}
/* online mode main loop */
static int
onlineMode(void)
{
fd_set rfds,wfds;
struct timeval t;
sockBufRReset();
sockBufWReset();
ttyBufRReset();
/*ttyBufWReset();*/
lineBufReset();
escSeqReset();
if (!telOpt.sentReqs && !atcmd.pr) telOptSendReqs();
t.tv_sec = 0;
while (sockIsAlive()) {
struct timeval *tp;
FD_ZERO(&rfds);
FD_ZERO(&wfds);
if (ttyBufWReady()) FD_SET(sock.fd, &rfds); /*flow control*/
if (sockBufWHasData()) FD_SET(sock.fd, &wfds);
if (sockBufWReady()) FD_SET(tty.rfd, &rfds); /*flow control*/
if (ttyBufWHasData()) FD_SET(tty.wfd, &wfds);
if (escSeq.checkSilence) {
struct timeval tt;
gettimeofday(&tt, NULL);
if (timevalCmp(&tt, &escSeq.expireT) >= 0) {
escSeq.checkSilence = 0;
return 1;
}
t = escSeq.expireT;
timevalSub(&t, &tt);
tp = &t;
} else {
tp = NULL; /* infinite */
}
if (select(sock.fd+1, &rfds, &wfds, NULL, tp) < 0) {
if (errno != EINTR) perror("select()");
continue;
}
if (FD_ISSET(sock.fd, &wfds)) {
sockBufWrite();
}
if (FD_ISSET(tty.wfd, &wfds)) {
ttyBufWrite();
}
if (FD_ISSET(sock.fd, &rfds)) {
sockBufRead();
sockReadLoop();
}
if (FD_ISSET(tty.rfd, &rfds)) {
ttyBufRead();
ttyReadLoop();
}
}
sockShutdown();
return 0;
}
/* command mode input processing loop */
/*#define CMDBUF_MAX 255 =>defs.h*/
static struct {
uchar buf[CMDBUF_MAX+1];
uchar *ptr;
int eol;
} cmdBuf;
#define cmdBufReset() { cmdBuf.ptr = cmdBuf.buf; cmdBuf.eol = 0; }
#define putCmd1(c) \
{ \
if (cmdBuf.ptr < cmdBuf.buf + CMDBUF_MAX) *cmdBuf.ptr++ = (c); \
}
#define cmdBufBS() \
{ \
if (cmdBuf.ptr > cmdBuf.buf) cmdBuf.ptr--; \
}
static void
cmdReadLoop(void)
{
int c;
while ((c = getTty1()) >= 0) {
putTty1(c);
if (c == CHAR_CR) {
cmdBuf.eol = 1;
*cmdBuf.ptr = '\0';
return; /* may discard some chars in ttyBufR */
} else if (c == CHAR_BS) {
cmdBufBS();
#if 0
} else if (c <= ' ' || c == 127) {
/* side effect: "a t" is recognized as "at" */
#else
} else if (c < ' ' || c == 127) {
#endif
/* just ignore them */
} else {
putCmd1(c);
}
}
}
/* command mode main loop */
static void
putTtyCmdstat(Cmdstat s)
{
static const char *cmdstatStr[] = {
"OK",
"ERROR",
"CONNECT",
"NO CARRIER",
"",
"",
"",
};
putTty1(CHAR_CR);
putTty1(CHAR_LF);
putTtyN(cmdstatStr[s], strlen(cmdstatStr[s]));
putTty1(CHAR_CR);
putTty1(CHAR_LF);
}
static Cmdstat
cmdMode(void)
{
fd_set rfds,wfds;
Cmdstat stat;
cmdBufReset();
ttyBufRReset();
/*ttyBufWReset();*/
for (;;) {
FD_ZERO(&rfds);
FD_ZERO(&wfds);
if (ttyBufWReady()) FD_SET(tty.rfd, &rfds); /*flow control*/
if (ttyBufWHasData()) FD_SET(tty.wfd, &wfds);
if (select(tty.wfd+1, &rfds, &wfds, NULL, NULL) < 0) {
if (errno != EINTR) perror("select()");
continue;
}
if (FD_ISSET(tty.wfd, &wfds)) {
ttyBufWrite(); /* put CR before dialup */
if (cmdBuf.eol) {
stat = cmdLex((char *)cmdBuf.buf);
cmdBufReset();
switch (stat) {
case CMDST_ATD:
case CMDST_ATO:
return stat;
case CMDST_OK:
case CMDST_ERROR:
putTtyCmdstat(stat);
break;
default:; /*CMDST_NOCMD*/
}
}
}
if (FD_ISSET(tty.rfd, &rfds)) {
ttyBufRead();
cmdReadLoop();
}
}
}
/* open a pty */
static int
openPtyMaster(const char *dev)
{
int fd;
fd = open(dev, O_RDWR);
if (fd < 0) {
fprintf(stderr, "Pty open error.\n");
exit(1);
}
return fd;
}
#ifdef HAVE_GRANTPT
static int
getPtyMaster(char **line_return)
{
int rc;
char name[12], *temp_line, *line = NULL;
int pty = -1;
char *name1 = "pqrstuvwxyzPQRST", *name2 = "0123456789abcdef";
char *p1, *p2;
#ifdef HAVE_GRANTPT
pty = open("/dev/ptmx", O_RDWR);
if(pty < 0)
goto bsd;
rc = grantpt(pty);
if(rc < 0) {
close(pty);
goto bsd;
}
rc = unlockpt(pty);
if(rc < 0) {
close(pty);
goto bsd;
}
temp_line = ptsname(pty);
if(!temp_line) {
close(pty);
goto bsd;
}
line = malloc(strlen(temp_line) + 1);
if(!line) {
close(pty);
return -1;
}
strcpy(line, temp_line);
*line_return = line;
return pty;
#endif /* HAVE_GRANTPT */
bsd:
strcpy(name, "/dev/pty??");
for(p1 = name1; *p1; p1++) {
name[8] = *p1;
for(p2 = name2; *p2; p2++) {
name[9] = *p2;
pty = open(name, O_RDWR);
if(pty >= 0)
goto found;
if(errno == ENOENT)
goto bail;
else
continue;
}
}
goto bail;
found:
line = malloc(strlen(name));
strcpy(line, name);
line[5] = 't';
rc = chown(line, getuid(), getgid());
if(rc < 0) {
fprintf(stderr,
"Warning: could not change ownership of tty -- "
"pty is insecure!\n");
}
rc = chmod(line, S_IRUSR | S_IWUSR | S_IWGRP);
if (rc < 0) {
fprintf(stderr,
"Warning: could not change permissions of tty -- "
"pty is insecure!\n");
}
*line_return = line;
return pty;
bail:
if(pty >= 0)
close(pty);
if(line)
free(line);
return -1;
}
#else
#define PTY00 "/dev/ptyXX"
#define PTY10 "pqrs"
#define PTY01 "0123456789abcdef"
static int
getPtyMaster(char *tty10, char *tty01)
{
char *p10;
char *p01;
static char dev[] = PTY00;
int fd;
for (p10 = PTY10; *p10 != '\0'; p10++) {
dev[8] = *p10;
for (p01 = PTY01; *p01 != '\0'; p01++) {
dev[9] = *p01;
fd = open(dev, O_RDWR);
if (fd >= 0) {
*tty10 = *p10;
*tty01 = *p01;
return fd;
}
}
}
fprintf(stderr,"Ran out of pty.\n");
exit(1);
return fd;
}
#endif
int
main(int argc, const char *argv[])
{
#ifdef SOCKS
SOCKSinit(argv[0]);
#endif
cmdargParse(argv);
switch (cmdarg.ttymode) {
#ifdef HAVE_GRANTPT
char * ptyslave;
case CA_SHOWDEV:
tty.rfd = tty.wfd = getPtyMaster(&ptyslave);
printf("%s\n", ptyslave);
break;
case CA_COMMX:
tty.rfd = tty.wfd = getPtyMaster(&ptyslave);
commxForkExec(cmdarg.commx, ptyslave);
break;
#else
char c10, c01;
case CA_SHOWDEV:
tty.rfd = tty.wfd = getPtyMaster(&c10, &c01);
printf("%c%c\n", c10, c01);
break;
case CA_COMMX:
tty.rfd = tty.wfd = getPtyMaster(&c10, &c01);
commxForkExec(cmdarg.commx, c10, c01);
break;
#endif
case CA_STDINOUT:
tty.rfd = 0;
tty.wfd = 1;
setTty();
break;
case CA_DEVGIVEN:
tty.rfd = tty.wfd = openPtyMaster(cmdarg.dev);
break;
}
ttyBufWReset();
telOptInit();
atcmdInit(); /* initialize atcmd */
CMDMODE:
switch (cmdMode()) {
case CMDST_ATD:
if (sockIsAlive()) {
putTtyCmdstat(CMDST_ERROR);
goto CMDMODE;
}
goto DIAL;
case CMDST_ATO:
if (!sockIsAlive()) {
putTtyCmdstat(CMDST_NOCARRIER);
goto CMDMODE;
}
goto ONLINE;
default:;
}
return 1;
DIAL:
telOptReset(); /* before sockDial(), which may change telOpt.xx */
switch (sockDial()) {
case 0: /* connect */
goto ONLINE;
case 1: /* error */
putTtyCmdstat(CMDST_NOCARRIER);
goto CMDMODE;
default:;
}
return 1;
ONLINE:
putTtyCmdstat(CMDST_CONNECT);
switch (onlineMode()) {
case 0: /* connection lost */
putTtyCmdstat(CMDST_NOCARRIER);
goto CMDMODE;
case 1: /* +++ */
putTtyCmdstat(CMDST_OK);
goto CMDMODE;
default:;
}
return 1;
}
|