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
|
/******************************************************************************
(c) 2001,2005 Christine Caulfield christine.caulfield@googlemail.com
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
******************************************************************************/
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <limits.h>
#include <stdio.h>
#include <errno.h>
#include <unistd.h>
#include <signal.h>
#include <string.h>
#include <fcntl.h>
#include <syslog.h>
#include <ctype.h>
#include <regex.h>
#include <stdlib.h>
#include <utmp.h>
#include <pwd.h>
#include <assert.h>
#include <termios.h>
#include <list>
#include <string>
#include <map>
#include <queue>
#include <sstream>
#include "lat.h"
#include "utils.h"
#include "session.h"
#include "localport.h"
#include "connection.h"
#include "circuit.h"
#include "latcpcircuit.h"
#include "server.h"
void LATSession::add_credit(signed short c)
{
if (credit < 0)
{
debuglog(("ARGGHH: credit is negative\n"));
credit = 0;
}
credit += c;
if (stopped && credit)
{
debuglog(("Got some more credit, (+%d=%d) carrying on\n", c, credit));
stopped = false;
LATServer::Instance()->set_fd_state(master_fd, false);
// tcflow(master_fd, TCOON);
}
}
#define REALLY_VERBOSE_DEBUGLOG
// Try to write all the data to the PTY
int LATSession::writeall(int fd, unsigned char *buf, int len)
{
int done = 0;
while (done < len)
{
int count;
debuglog(("writeall::done = %d, len = %d\n", done, len));
count = ::write(fd, buf+done, len-done);
if (count > 0)
{
done += count;
}
else
{
debuglog(("writeall: write returned %d, errno = %s\n", count, strerror(errno)));
return -1;
}
}
return len;
}
/* Got some data from the terminal - send it to the PTY */
int LATSession::send_data_to_process(unsigned char *buf, int len)
{
// If there's anything to send, do so
if (len)
{
#ifdef REALLY_VERBOSE_DEBUGLOG
char debugbuf[1024];
memcpy(debugbuf, buf, len);
debugbuf[len] = 0;
debuglog(("To PTY(%d): %s\n", len, debugbuf));
#endif
remote_credit--;
// Replace LF/CR with LF if we are a server.
if (!parent.isClient() && !clean)
{
unsigned char newbuf[len*2];
int newlen;
crlf_to_lf(buf, len, newbuf, &newlen);
writeall(master_fd, newbuf, newlen);
}
else
{
writeall(master_fd, buf, len);
}
}
// See if there's any echo. Anything longer than the data sent
// is not a character echo and so will be sent as
// unsolicited data.
int numbytes;
sleep(0); // Give it a slight chance of generating an echo
ioctl(master_fd, FIONREAD, &numbytes);
debuglog(("%d echo bytes available\n", numbytes));
if (numbytes == 0 || numbytes != len)
{
echo_expected = false;
return 1;
}
echo_expected = true;
return 0;
}
/* Read some data from the PTY and send it to the LAT terminal */
int LATSession::read_pty()
{
unsigned char buf[256];
int command = 0x00;
int msglen;
if (credit <= 0)
{
// Disable the FD so we don't start looping
if (!stopped)
{
LATServer::Instance()->set_fd_state(master_fd, true);
stopped = true;
// tcflow(master_fd, TCOOFF);
}
return 0; // Not allowed!
}
msglen = read(master_fd, buf, max_read_size);
// TODO BUG:
// If the the PTY is closed while we are stopped then we
// don't notice until the remote end sends more credit...
#ifdef REALLY_VERBOSE_DEBUGLOG
if (msglen > 0)
{
buf[msglen] = '\0';
char tmp = buf[10];
buf[10] = '\0'; // Just a sample
debuglog(("Session %d From PTY(%d): '%s%s'\n", local_session, msglen,
buf, (msglen>10)?"...":""));
buf[10] = tmp;
}
#else
// debuglog(("Session %d From PTY(%d)\n", local_session, msglen));
#endif
// EOF or error on PTY - tell remote end to disconnect
if (msglen <= 0)
{
if (msglen < 0 && errno == EAGAIN) return 0; // Just no data.
debuglog(("EOF on PTY\n"));
unsigned char slotbuf[5];
int ptr = 0;
// Send attention & disconnect
slotbuf[0] = 0x40;
add_slot(buf, ptr, 0xb0, slotbuf, 1);
// Tru64 (and DS500 I think) don't like the
// local session ID to be set on the final disconnect slot
int s=local_session;
local_session=0;
add_slot(buf, ptr, 0xd1, slotbuf, 0);
local_session=s; // Restore it for our benefit.
parent.queue_message(buf, ptr);
disconnect_session(1); // User requested
return 0;
}
// Got break!
if (msglen == 1 && buf[0] == '\0' && !clean)
{
return send_break();
}
else
{
return send_data(buf, msglen, command);
}
}
int LATSession::send_break()
{
unsigned char buf[1600];
unsigned char slotbuf[10];
int ptr = 0;
int command = 0xA0;
if (remote_credit <= 1)
{
debuglog(("Sending more remote credit with break\n"));
remote_credit += 5;
command |= 0x5;
}
slotbuf[0] = 0x10;
add_slot(buf, ptr, command, slotbuf, 1);
parent.queue_message(buf, ptr);
return 0;
}
int LATSession::send_data(unsigned char *buf, int msglen, int command)
{
unsigned char reply[1600];
LAT_SlotCmd *header = (LAT_SlotCmd *)reply;
int ptr;
#ifdef REALLY_VERBOSE_DEBUGLOG
debuglog(("Local Credit stands at %d\n", credit));
debuglog(("Remote Credit stands at %d\n", remote_credit));
#endif
if (remote_credit <= 1)
{
debuglog(("Sending more remote credit\n"));
remote_credit += 5;
command |= 0x5;
}
// Send response...
header->remote_session = local_session;
header->local_session = remote_session;
header->length = msglen;
header->cmd = command;
ptr = sizeof(LAT_SlotCmd);
memcpy(reply+ptr, buf, msglen);
parent.send_slot_message(reply, ptr+msglen);
// Have we now run out of credit ??
if (--credit <= 0)
{
LATServer::Instance()->set_fd_state(master_fd, true);
debuglog(("Out of credit...Stop\n"));
stopped = true;
// tcflow(master_fd, TCOOFF);
}
return 0;
}
// Remote end disconnects
void LATSession::disconnect_session(int reason)
{
// Get the server to delete us when we are off the stack.
if (connected)
LATServer::Instance()->delete_session(parent.get_connection_id(), local_session, master_fd);
connected = false;
return;
}
void LATSession::send_disabled_message()
{
unsigned char replybuf[1600];
LAT_SessionReply *reply = (LAT_SessionReply *)replybuf;
debuglog(("Sending DISABLED message\n"));
reply->header.cmd = LAT_CCMD_SREPLY;
reply->header.num_slots = 1;
reply->slot.remote_session = local_session;
reply->slot.local_session = remote_session;
reply->slot.length = 0;
reply->slot.cmd = 0xc8; // Disconnect session.
parent.send_message(replybuf, sizeof(LAT_SessionReply),
LATConnection::REPLY);
}
LATSession::~LATSession()
{
if (pid != -1) kill(pid, SIGTERM);
if (master_fd > -1) close(master_fd);
disconnect_session(0);
}
// Send the issue.net greeting file
void LATSession::send_issue()
{
char issue_name[PATH_MAX];
struct stat st;
// Look for /etc/issue.lat.<service>, /etc/issue.lat, /etc/issue.net
sprintf(issue_name, "/etc/issue.lat.%s", parent.get_servicename());
if (stat(issue_name, &st))
{
strcpy(issue_name, "/etc/issue.lat");
if (stat(issue_name, &st))
{
strcpy(issue_name, "/etc/issue.net");
}
}
// Send /etc/issue.net
int f = open(issue_name, O_RDONLY);
if (f >= 0)
{
char *issue = new char[255];
char *newissue = new char[512];
size_t len = read(f, issue, 255);
close(f);
size_t newlen = 0;
if (len == 0) return;
if (len > 255) len = 255;
// Start with a new line
newissue[newlen++] = '\r';
newissue[newlen++] = '\n';
newlen = expand_issue(issue, len, newissue, 255, parent.get_servicename());
echo_expected = false;
if (newlen > 255) newlen = 255;
send_data((unsigned char *)newissue, newlen, 0x01);
delete[] issue;
delete[] newissue;
}
}
void LATSession::set_port(unsigned char *inbuf)
{
unsigned char *ptr = inbuf+sizeof(LAT_SlotCmd);
if (*ptr & 0x10) /* BREAK */
{
debuglog(("Sending break\n"));
tcsendbreak(master_fd, 0);
}
}
// Add a slot to an existing message
void LATSession::add_slot(unsigned char *buf, int &ptr, int slotcmd,
unsigned char *slotdata, int len)
{
// Allow the caller to initialize ptr to zero and we will do the rest
if (ptr == 0)
{
ptr = sizeof(LAT_Header);
LAT_Header *h = (LAT_Header *)buf;
h->num_slots = 0;
}
// Write the slot header
LAT_SlotCmd *slot = (LAT_SlotCmd *)(buf+ptr);
ptr += sizeof(LAT_SlotCmd);
slot->length = len;
slot->cmd = slotcmd;
slot->remote_session = local_session;
slot->local_session = remote_session;
// Copy the data
memcpy(buf+ptr, slotdata, len);
ptr += len;
if (ptr%2) ptr++; // Word aligned
// Increment the number of slots.
LAT_Header *header = (LAT_Header *)buf;
header->num_slots++;
if (parent.isClient())
header->cmd = LAT_CCMD_SESSION;
else
header->cmd = LAT_CCMD_SDATA;
}
void LATSession::crlf_to_lf(unsigned char *buf, int len,
unsigned char *newbuf, int *newlen)
{
int i;
int len2 = 0;
len2 = 0;
for (i=0; i<len; i++)
{
if (i>0 && i<len && (buf[i] == '\r') && (buf[i-1] == '\n'))
{
continue;
}
if (i>0 && i<len && (buf[i] == '\n') && (buf[i-1] == '\r'))
{
newbuf[len2-1] = '\n';
continue;
}
newbuf[len2++] = buf[i];
}
*newlen = len2;
}
void LATSession::connect()
{
state = RUNNING;
debuglog(("connecting client session to '%s'\n", remote_service));
// OK, now send a Start message to the remote end.
unsigned char buf[1600];
memset(buf, 0, sizeof(buf));
LAT_SessionData *reply = (LAT_SessionData *)buf;
int ptr = sizeof(LAT_SessionData);
buf[ptr++] = 0x01; // Service Class
buf[ptr++] = 0x01; // Max Attention slot size..
buf[ptr++] = 0xfe; // Max Data slot size
add_string(buf, &ptr, (unsigned char *)remote_service);
buf[ptr++] = 0x00; // Source service length/name
buf[ptr++] = 0x01; // Param type 1
buf[ptr++] = 0x02; // Param Length 2
buf[ptr++] = 0x04; // Value 1024
buf[ptr++] = 0x00; //
buf[ptr++] = 0x05; // Param type 5 (Local PTY name)
add_string(buf, &ptr, (unsigned char *)ltaname);
// If the user wanted a particular port number then add it
// into the message
if (remote_port[0] != '\0')
{
buf[ptr++] = 0x04; // Param type 4 (Remote port name)
add_string(buf, &ptr, (unsigned char *)remote_port);
buf[ptr++] = 0x00; // NUL terminated (??)
}
// Add in the request ID for reverse connections
if (request_id)
{
debuglog(("Sending request id %d, and port %s\n", request_id, ptyname));
buf[ptr++] = 2; // Parameter number
buf[ptr++] = 2; // Length of the short int
buf[ptr++] = request_id & 0xFF;
buf[ptr++] = request_id >> 8;
buf[ptr++] = 5;
add_string(buf, &ptr, (unsigned char *)ptyname);
}
// Send message...
reply->header.cmd = LAT_CCMD_SESSION;
reply->header.num_slots = 1;
reply->slot.remote_session = local_session;
reply->slot.local_session = remote_session;
reply->slot.length = ptr - sizeof(LAT_SessionData);
reply->slot.cmd = 0x9f;
parent.queue_message(buf, ptr);
}
void LATSession::got_connection(unsigned char _remid)
{
unsigned char buf[1600];
LAT_SessionReply *reply = (LAT_SessionReply *)buf;
int ptr = 0;
debuglog(("Session:: got connection for rem session %d\n", _remid));
LATServer::Instance()->set_fd_state(master_fd, false);
remote_session = _remid;
// Send a data_b slot
if (parent.isClient())
reply->header.cmd = LAT_CCMD_SESSION;
else
reply->header.cmd = LAT_CCMD_SREPLY;
reply->header.num_slots = 0;
reply->slot.length = 0;
reply->slot.cmd = 0x0;
reply->slot.local_session = 0;
reply->slot.remote_session = 0;
// data_b slots count against credit
if (credit)
{
unsigned char slotbuf[256];
int slotptr = 0;
slotbuf[slotptr++] = 0x26; // Flags
slotbuf[slotptr++] = 0x13; // Stop output char XOFF
slotbuf[slotptr++] = 0x11; // Start output char XON
slotbuf[slotptr++] = 0x13; // Stop input char XOFF
slotbuf[slotptr++] = 0x11; // Start input char XON
add_slot(buf, ptr, 0xaf, slotbuf, slotptr);
credit--;
}
parent.queue_message(buf, ptr);
connected = true;
}
|