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
|
/******************************************************************************
(c) 2001-2008 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/stat.h>
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <termios.h>
#include <string.h>
#include <list>
#include <cassert>
#include <queue>
#include <string>
#include <map>
#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"
#include "clientsession.h"
#include "lat_messages.h"
ClientSession::ClientSession(class LATConnection &p,
unsigned char remid, unsigned char localid,
char *ttyname, bool clean):
LATSession(p, remid, localid, clean),
slave_fd_open(false)
{
debuglog(("new client session: localid %d, remote id %d\n",
localid, remid));
if (ttyname) strcpy(ltaname, ttyname);
}
// This should never be called now as it is overridden
// by all self-respecting superclasses.
int ClientSession::new_session(unsigned char *_remote_node,
char *service, char *port,
unsigned char c)
{
assert(!"Should never get here!!");
return 0;
}
int ClientSession::connect_parent()
{
debuglog(("connecting parent for %s\n", ltaname));
return parent.connect(this);
}
// Disconnect the local PTY
void ClientSession::restart_pty()
{
assert(!"ClientSession::restart_pty()\n");
}
// Remote end disconnects or EOF on local PTY
void ClientSession::disconnect_session(int reason)
{
debuglog(("ClientSession::disconnect_session()\n"));
// If the reason was some sort of error then send it to
// the PTY
if (reason > 1)
{
const char *msg = lat_messages::session_disconnect_msg(reason);
write(master_fd, msg, strlen(msg));
write(master_fd, "\n", 1);
}
LATServer::Instance()->set_fd_state(master_fd, true);
connected = false;
restart_pty();
return;
}
ClientSession::~ClientSession()
{
if (slave_fd_open) close (slave_fd);
if (master_fd > -1)
{
close (master_fd);
LATServer::Instance()->remove_fd(master_fd);
}
}
void ClientSession::do_read()
{
debuglog(("ClientSession::do_read(), connected: %d\n", connected));
if (!connected)
{
if (!connect_parent())
{
state = STARTING;
// Disable reads on the PTY until we are connected (or it fails)
LATServer::Instance()->set_fd_state(master_fd, true);
close(slave_fd);
slave_fd_open = false;
}
else
{
// Service does not exist or we haven't heard of it yet.
restart_pty();
}
}
if (connected)
{
read_pty();
}
}
// Called from the slave connection - return the master fd so it can
// can do I/O on it.
int ClientSession::get_port_fd()
{
return master_fd;
}
// Normal client sessions don't provide feedback on status (though maybe we
// should check for other status types....
void ClientSession::show_status(unsigned char *node, LAT_StatusEntry *entry)
{
return;
}
// Called when a PortSession connects to us
void ClientSession::start_port()
{
return;
}
|