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
|
/******************************************************************************
(c) 2001-2002 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 <unistd.h>
#include <syslog.h>
#include <time.h>
#include <string.h>
#include <sstream>
#include <list>
#include <string>
#include <map>
#include <queue>
#include <iterator>
#include "lat.h"
#include "latcp.h"
#include "utils.h"
#include "services.h"
#include "session.h"
#include "localport.h"
#include "connection.h"
#include "circuit.h"
#include "latcpcircuit.h"
#include "llogincircuit.h"
#include "server.h"
LLOGINCircuit::LLOGINCircuit(int _fd):
Circuit(_fd)
{
}
LLOGINCircuit::~LLOGINCircuit()
{
}
bool LLOGINCircuit::do_command()
{
unsigned char head[3];
bool retval = true;
int ptr;
debuglog(("llogin: do_command on fd %d\n", fd));
// Get the message header (cmd & length)
if (read(fd, head, sizeof(head)) != 3)
return false; // Bad header
int len = head[1] * 256 + head[2];
unsigned char *cmdbuf = new unsigned char[len];
// Read the message buffer
if (read(fd, cmdbuf, len) != len)
{
delete[] cmdbuf;
return false; // Bad message
}
// Have we completed negotiation?
if (head[0] != LATCP_VERSION &&
state != RUNNING)
{
delete[] cmdbuf;
return false;
}
debuglog(("llogin: do_command %d\n", head[0]));
// Do the command
switch (head[0])
{
case LATCP_VERSION:
if (strcmp(VERSION, (char*)cmdbuf) == 0)
{
state = RUNNING; // Versions match
send_reply(LATCP_VERSION, VERSION, -1);
}
else
{
char error[1024];
debuglog(("Connect from invalid llogin version %s\n", cmdbuf));
sprintf(error, "llogin version %s does not match latd version " VERSION, cmdbuf);
send_reply(LATCP_ERRORMSG, error, -1);
retval = false;
}
break;
case LATCP_SHOWSERVICE:
{
int verbose = cmdbuf[0];
std::ostringstream st;
debuglog(("llogin: show_services(verbose=%d)\n", verbose));
LATServices::Instance()->list_services(verbose?true:false, st);
send_reply(LATCP_SHOWSERVICE, st.str().c_str(), (int)st.tellp());
// st.freeze(false);
}
break;
case LATCP_TERMINALSESSION:
{
// Close the llogincircuit and pretend to be a PTY
// connected to a lloginsession.
ptr = 0;
bool queued = cmdbuf[ptr++];
get_string((unsigned char*)cmdbuf, &ptr, (unsigned char*)service);
get_string((unsigned char*)cmdbuf, &ptr, (unsigned char*)node);
get_string((unsigned char*)cmdbuf, &ptr, (unsigned char*)port);
get_string((unsigned char*)cmdbuf, &ptr, (unsigned char*)localport);
get_string((unsigned char*)cmdbuf, &ptr, (unsigned char*)password);
debuglog(("Terminal session for S:%s, N:%s, P:%s\n",
service, node, port));
// Do the biz
if (LATServer::Instance()->make_llogin_connection(fd,
service,
node,
port,
localport,
password,
queued) < 0)
{
debuglog(("sending failure back to llogin\n"));
send_reply(LATCP_ERRORMSG, "Can't find LAT service.", -1);
}
else
{
send_reply(LATCP_ACK, "", -1);
state = TERMINAL;
}
}
break;
default:
syslog(LOG_INFO, "Unknown llogin command %d\n", head[0]);
retval = false;
break;
}
delete[] cmdbuf;
return retval;
}
|