parent
1e33ad14c3
commit
7c79298612
@ -0,0 +1,36 @@
|
|||||||
|
/*
|
||||||
|
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
|
||||||
|
(at your option) 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.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
|
xrdp: A Remote Desktop Protocol server.
|
||||||
|
Copyright (C) Jay Sorg 2005-2008
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @file libscp_commands.h
|
||||||
|
* @brief libscp data types definitions
|
||||||
|
* @author Simone Fedele
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef LIBSCP_COMMANDS_H
|
||||||
|
#define LIBSCP_COMMANDS_H
|
||||||
|
|
||||||
|
#include "libscp_commands_mng.h"
|
||||||
|
|
||||||
|
#define SCP_CMD_LOGIN 0x0001
|
||||||
|
#define SCP_CMD_CONN_ERROR 0xFFFF
|
||||||
|
|
||||||
|
#endif
|
@ -0,0 +1,39 @@
|
|||||||
|
/*
|
||||||
|
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
|
||||||
|
(at your option) 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.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
|
xrdp: A Remote Desktop Protocol server.
|
||||||
|
Copyright (C) Jay Sorg 2005-2008
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @file libscp_commands_mng.h
|
||||||
|
* @brief libscp data types definitions
|
||||||
|
* @author Simone Fedele
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef LIBSCP_COMMANDS_MNG_H
|
||||||
|
#define LIBSCP_COMMANDS_MNG_H
|
||||||
|
|
||||||
|
#define SCP_CMD_MNG_LOGIN 0x0001
|
||||||
|
#define SCP_CMD_MNG_LOGIN_ALLOW 0x0002
|
||||||
|
#define SCP_CMD_MNG_LOGIN_DENY 0x0003
|
||||||
|
#define SCP_CMD_MNG_CMD_ERROR 0x0004
|
||||||
|
#define SCP_CMD_MNG_LIST_REQ 0x0005
|
||||||
|
#define SCP_CMD_MNG_LIST 0x0006
|
||||||
|
#define SCP_CMD_MNG_ACTION 0x0007
|
||||||
|
|
||||||
|
#endif
|
@ -0,0 +1,48 @@
|
|||||||
|
/*
|
||||||
|
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
|
||||||
|
(at your option) 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.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
|
xrdp: A Remote Desktop Protocol server.
|
||||||
|
Copyright (C) Jay Sorg 2005-2008
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @file libscp_types_mng.h
|
||||||
|
* @brief libscp data types definitions
|
||||||
|
* @author Simone Fedele
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef LIBSCP_TYPES_MNG_H
|
||||||
|
#define LIBSCP_TYPES_MNG_H
|
||||||
|
|
||||||
|
#include "os_calls.h"
|
||||||
|
#include "parse.h"
|
||||||
|
#include "arch.h"
|
||||||
|
#include "log.h"
|
||||||
|
|
||||||
|
enum SCP_MNG_COMMAND
|
||||||
|
{
|
||||||
|
SCP_MNG_CMD_KILL,
|
||||||
|
SCP_MNG_CMD_DISCONNECT
|
||||||
|
};
|
||||||
|
|
||||||
|
struct SCP_MNG_DATA
|
||||||
|
{
|
||||||
|
enum SCP_MNG_COMMAND cmd;
|
||||||
|
SCP_SID sid;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
@ -0,0 +1,340 @@
|
|||||||
|
/*
|
||||||
|
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
|
||||||
|
(at your option) 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.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
|
xrdp: A Remote Desktop Protocol server.
|
||||||
|
Copyright (C) Jay Sorg 2005-2008
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @file libscp_v1s_mng.c
|
||||||
|
* @brief libscp version 1 server api code - session management
|
||||||
|
* @author Simone Fedele
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef LIBSCP_V1S_MNG_C
|
||||||
|
#define LIBSCP_V1S_MNG_C
|
||||||
|
|
||||||
|
#include "libscp_v1s_mng.h"
|
||||||
|
|
||||||
|
extern struct log_config* s_log;
|
||||||
|
|
||||||
|
static enum SCP_SERVER_STATES_E
|
||||||
|
_scp_v1s_mng_check_response(struct SCP_CONNECTION* c, struct SCP_SESSION* s);
|
||||||
|
|
||||||
|
/* server API */
|
||||||
|
enum SCP_SERVER_STATES_E scp_v1s_mng_accept(struct SCP_CONNECTION* c, struct SCP_SESSION** s)
|
||||||
|
{
|
||||||
|
struct SCP_SESSION* session;
|
||||||
|
tui32 ipaddr;
|
||||||
|
tui16 cmd;
|
||||||
|
tui8 sz;
|
||||||
|
char buf[257];
|
||||||
|
|
||||||
|
/* reading command */
|
||||||
|
in_uint16_be(c->in_s, cmd);
|
||||||
|
if (cmd != 1) /* manager login */
|
||||||
|
{
|
||||||
|
return SCP_SERVER_STATE_SEQUENCE_ERR;
|
||||||
|
}
|
||||||
|
|
||||||
|
session = scp_session_create();
|
||||||
|
if (0 == session)
|
||||||
|
{
|
||||||
|
return SCP_SERVER_STATE_INTERNAL_ERR;
|
||||||
|
}
|
||||||
|
|
||||||
|
scp_session_set_version(session, 1);
|
||||||
|
scp_session_set_type(session, SCP_SESSION_TYPE_MANAGE);
|
||||||
|
|
||||||
|
/* reading username */
|
||||||
|
in_uint8(c->in_s, sz);
|
||||||
|
buf[sz]='\0';
|
||||||
|
in_uint8a(c->in_s, buf, sz);
|
||||||
|
if (0 != scp_session_set_username(session, buf))
|
||||||
|
{
|
||||||
|
scp_session_destroy(session);
|
||||||
|
return SCP_SERVER_STATE_INTERNAL_ERR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* reading password */
|
||||||
|
in_uint8(c->in_s, sz);
|
||||||
|
buf[sz]='\0';
|
||||||
|
in_uint8a(c->in_s, buf, sz);
|
||||||
|
if (0 != scp_session_set_password(session, buf))
|
||||||
|
{
|
||||||
|
scp_session_destroy(session);
|
||||||
|
return SCP_SERVER_STATE_INTERNAL_ERR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* reading remote address */
|
||||||
|
in_uint8(c->in_s, sz);
|
||||||
|
if (sz == SCP_ADDRESS_TYPE_IPV4)
|
||||||
|
{
|
||||||
|
in_uint32_be(c->in_s, ipaddr);
|
||||||
|
scp_session_set_addr(session, SCP_ADDRESS_TYPE_IPV4_BIN, &ipaddr);
|
||||||
|
}
|
||||||
|
else if (sz == SCP_ADDRESS_TYPE_IPV6)
|
||||||
|
{
|
||||||
|
in_uint8a(c->in_s, buf, 16);
|
||||||
|
scp_session_set_addr(session, SCP_ADDRESS_TYPE_IPV6_BIN, buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* reading hostname */
|
||||||
|
in_uint8(c->in_s, sz);
|
||||||
|
buf[sz]='\0';
|
||||||
|
in_uint8a(c->in_s, buf, sz);
|
||||||
|
if (0 != scp_session_set_hostname(session, buf))
|
||||||
|
{
|
||||||
|
scp_session_destroy(session);
|
||||||
|
return SCP_SERVER_STATE_INTERNAL_ERR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* returning the struct */
|
||||||
|
(*s)=session;
|
||||||
|
|
||||||
|
return SCP_SERVER_STATE_START_MANAGE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 002 */
|
||||||
|
enum SCP_SERVER_STATES_E
|
||||||
|
scp_v1s_mng_allow_connection(struct SCP_CONNECTION* c, struct SCP_SESSION* s)
|
||||||
|
{
|
||||||
|
init_stream(c->out_s,c->out_s->size);
|
||||||
|
|
||||||
|
out_uint32_be(c->out_s, 1);
|
||||||
|
/* packet size: 4 + 4 + 2 + 2 */
|
||||||
|
/* version + size + cmdset + cmd */
|
||||||
|
out_uint32_be(c->out_s, 12);
|
||||||
|
out_uint16_be(c->out_s, SCP_COMMAND_SET_MANAGE);
|
||||||
|
out_uint16_be(c->out_s, SCP_CMD_MNG_LOGIN_ALLOW);
|
||||||
|
|
||||||
|
if (0 != scp_tcp_force_send(c->in_sck, c->out_s->data, 12))
|
||||||
|
{
|
||||||
|
return SCP_SERVER_STATE_NETWORK_ERR;
|
||||||
|
}
|
||||||
|
|
||||||
|
return _scp_v1s_mng_check_response(c, s);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 003 */
|
||||||
|
enum SCP_SERVER_STATES_E
|
||||||
|
scp_v1s_mng_deny_connection(struct SCP_CONNECTION* c, char* reason)
|
||||||
|
{
|
||||||
|
int rlen;
|
||||||
|
|
||||||
|
init_stream(c->out_s,c->out_s->size);
|
||||||
|
|
||||||
|
/* forcing message not to exceed 64k */
|
||||||
|
rlen = g_strlen(reason);
|
||||||
|
if (rlen > 65535)
|
||||||
|
{
|
||||||
|
rlen = 65535;
|
||||||
|
}
|
||||||
|
|
||||||
|
out_uint32_be(c->out_s, 1);
|
||||||
|
/* packet size: 4 + 4 + 2 + 2 + 2 + strlen(reason)*/
|
||||||
|
/* version + size + cmdset + cmd + msglen + msg */
|
||||||
|
out_uint32_be(c->out_s, rlen+14);
|
||||||
|
out_uint16_be(c->out_s, SCP_COMMAND_SET_MANAGE);
|
||||||
|
out_uint16_be(c->out_s, SCP_CMD_MNG_LOGIN_DENY);
|
||||||
|
out_uint16_be(c->out_s, rlen)
|
||||||
|
out_uint8p(c->out_s, reason, rlen);
|
||||||
|
|
||||||
|
if (0!=scp_tcp_force_send(c->in_sck, c->out_s->data, rlen+14))
|
||||||
|
{
|
||||||
|
return SCP_SERVER_STATE_NETWORK_ERR;
|
||||||
|
}
|
||||||
|
|
||||||
|
return SCP_SERVER_STATE_END;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 006 */
|
||||||
|
enum SCP_SERVER_STATES_E
|
||||||
|
scp_v1s_mng_list_sessions(struct SCP_CONNECTION* c, struct SCP_SESSION* s,
|
||||||
|
int sescnt, struct SCP_DISCONNECTED_SESSION* ds)
|
||||||
|
{
|
||||||
|
tui32 version = 1;
|
||||||
|
tui32 size = 12;
|
||||||
|
tui16 cmd = SCP_CMD_MNG_LIST;
|
||||||
|
int pktcnt;
|
||||||
|
int idx;
|
||||||
|
int sidx;
|
||||||
|
int pidx;
|
||||||
|
struct SCP_DISCONNECTED_SESSION* cds;
|
||||||
|
|
||||||
|
/* calculating the number of packets to send */
|
||||||
|
pktcnt=sescnt/SCP_SERVER_MAX_LIST_SIZE;
|
||||||
|
if ((sescnt%SCP_SERVER_MAX_LIST_SIZE)!=0)
|
||||||
|
{
|
||||||
|
pktcnt++;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (idx=0; idx<pktcnt; idx++)
|
||||||
|
{
|
||||||
|
/* ok, we send session session list */
|
||||||
|
init_stream(c->out_s, c->out_s->size);
|
||||||
|
|
||||||
|
/* size: ver+size+cmdset+cmd+sescnt+continue+count */
|
||||||
|
size=4+4+2+2+4+1+1;
|
||||||
|
|
||||||
|
/* header */
|
||||||
|
s_push_layer(c->out_s, channel_hdr, 8);
|
||||||
|
out_uint16_be(c->out_s, SCP_COMMAND_SET_MANAGE);
|
||||||
|
out_uint16_be(c->out_s, cmd);
|
||||||
|
|
||||||
|
/* session count */
|
||||||
|
out_uint32_be(c->out_s, sescnt);
|
||||||
|
|
||||||
|
/* setting the continue flag */
|
||||||
|
if ((idx+1)*SCP_SERVER_MAX_LIST_SIZE >= sescnt)
|
||||||
|
{
|
||||||
|
out_uint8(c->out_s, 0);
|
||||||
|
/* setting session count for this packet */
|
||||||
|
pidx=sescnt-(idx*SCP_SERVER_MAX_LIST_SIZE);
|
||||||
|
out_uint8(c->out_s, pidx);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
out_uint8(c->out_s, 1);
|
||||||
|
/* setting session count for this packet */
|
||||||
|
pidx=SCP_SERVER_MAX_LIST_SIZE;
|
||||||
|
out_uint8(c->out_s, pidx);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* adding session descriptors */
|
||||||
|
for (sidx=0; sidx<pidx; sidx++)
|
||||||
|
{
|
||||||
|
/* shortcut to the current session to send */
|
||||||
|
cds=ds+((idx)*SCP_SERVER_MAX_LIST_SIZE)+sidx;
|
||||||
|
|
||||||
|
/* session data */
|
||||||
|
out_uint32_be(c->out_s, cds->SID); /* session id */
|
||||||
|
out_uint8(c->out_s, cds->type);
|
||||||
|
out_uint16_be(c->out_s, cds->height);
|
||||||
|
out_uint16_be(c->out_s, cds->width);
|
||||||
|
out_uint8(c->out_s, cds->bpp);
|
||||||
|
out_uint8(c->out_s, cds->idle_days);
|
||||||
|
out_uint8(c->out_s, cds->idle_hours);
|
||||||
|
out_uint8(c->out_s, cds->idle_minutes);
|
||||||
|
size += 13;
|
||||||
|
|
||||||
|
out_uint16_be(c->out_s, cds->conn_year);
|
||||||
|
out_uint8(c->out_s, cds->conn_month);
|
||||||
|
out_uint8(c->out_s, cds->conn_day);
|
||||||
|
out_uint8(c->out_s, cds->conn_hour);
|
||||||
|
out_uint8(c->out_s, cds->conn_minute);
|
||||||
|
out_uint8(c->out_s, cds->addr_type);
|
||||||
|
size += 7;
|
||||||
|
|
||||||
|
if (cds->addr_type == SCP_ADDRESS_TYPE_IPV4)
|
||||||
|
{
|
||||||
|
in_uint32_be(c->out_s, cds->ipv4addr);
|
||||||
|
size += 4;
|
||||||
|
}
|
||||||
|
else if (cds->addr_type == SCP_ADDRESS_TYPE_IPV6)
|
||||||
|
{
|
||||||
|
in_uint8a(c->out_s, cds->ipv6addr, 16);
|
||||||
|
size += 16;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
s_pop_layer(c->out_s, channel_hdr);
|
||||||
|
out_uint32_be(c->out_s, version);
|
||||||
|
out_uint32_be(c->out_s, size);
|
||||||
|
|
||||||
|
if (0!=scp_tcp_force_send(c->in_sck, c->out_s->data, size))
|
||||||
|
{
|
||||||
|
log_message(s_log, LOG_LEVEL_WARNING, "[v1s_mng:%d] connection aborted: network error", __LINE__);
|
||||||
|
return SCP_SERVER_STATE_NETWORK_ERR;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return _scp_v1s_mng_check_response(c, s);
|
||||||
|
}
|
||||||
|
|
||||||
|
static enum SCP_SERVER_STATES_E
|
||||||
|
_scp_v1s_mng_check_response(struct SCP_CONNECTION* c, struct SCP_SESSION* s)
|
||||||
|
{
|
||||||
|
tui32 version;
|
||||||
|
tui32 size;
|
||||||
|
tui16 cmd;
|
||||||
|
// tui8 dim;
|
||||||
|
// char buf[257];
|
||||||
|
|
||||||
|
init_stream(c->in_s, c->in_s->size);
|
||||||
|
if (0 != scp_tcp_force_recv(c->in_sck, c->in_s->data, 8))
|
||||||
|
{
|
||||||
|
log_message(s_log, LOG_LEVEL_WARNING, "[v1s_mng:%d] connection aborted: network error", __LINE__);
|
||||||
|
return SCP_SERVER_STATE_NETWORK_ERR;
|
||||||
|
}
|
||||||
|
|
||||||
|
in_uint32_be(c->in_s, version);
|
||||||
|
if (version != 1)
|
||||||
|
{
|
||||||
|
log_message(s_log, LOG_LEVEL_WARNING, "[v1s_mng:%d] connection aborted: version error", __LINE__);
|
||||||
|
return SCP_SERVER_STATE_VERSION_ERR;
|
||||||
|
}
|
||||||
|
|
||||||
|
in_uint32_be(c->in_s, size);
|
||||||
|
|
||||||
|
init_stream(c->in_s, c->in_s->size);
|
||||||
|
/* read the rest of the packet */
|
||||||
|
if (0 != scp_tcp_force_recv(c->in_sck, c->in_s->data, size - 8))
|
||||||
|
{
|
||||||
|
log_message(s_log, LOG_LEVEL_WARNING, "[v1s_mng:%d] connection aborted: network error", __LINE__);
|
||||||
|
return SCP_SERVER_STATE_NETWORK_ERR;
|
||||||
|
}
|
||||||
|
|
||||||
|
in_uint16_be(c->in_s, cmd);
|
||||||
|
if (cmd != SCP_COMMAND_SET_MANAGE)
|
||||||
|
{
|
||||||
|
log_message(s_log, LOG_LEVEL_WARNING, "[v1s_mng:%d] connection aborted: sequence error", __LINE__);
|
||||||
|
return SCP_SERVER_STATE_SEQUENCE_ERR;
|
||||||
|
}
|
||||||
|
|
||||||
|
in_uint16_be(c->in_s, cmd)
|
||||||
|
if (cmd == SCP_CMD_MNG_LIST_REQ) /* request session list */
|
||||||
|
{
|
||||||
|
log_message(s_log, LOG_LEVEL_INFO, "[v1s_mng:%d] request session list", __LINE__);
|
||||||
|
return SCP_SERVER_STATE_MNG_LISTREQ;
|
||||||
|
}
|
||||||
|
else if (cmd == SCP_CMD_MNG_ACTION) /* execute an action */
|
||||||
|
{
|
||||||
|
/*in_uint8(c->in_s, dim);
|
||||||
|
buf[dim]='\0';
|
||||||
|
in_uint8a(c->in_s, buf, dim);
|
||||||
|
scp_session_set_errstr(s, buf);*/
|
||||||
|
|
||||||
|
log_message(s_log, LOG_LEVEL_INFO, "[v1s_mng:%d] action request", __LINE__);
|
||||||
|
return SCP_SERVER_STATE_MNG_ACTION;
|
||||||
|
}
|
||||||
|
/* else if (cmd == 20) / * password change * /
|
||||||
|
{
|
||||||
|
in_uint16_be(c->in_s, s->display);
|
||||||
|
|
||||||
|
return SCP_SERVER_STATE_OK;
|
||||||
|
}
|
||||||
|
else if (cmd == 40) / * session list * /
|
||||||
|
{
|
||||||
|
return SCP_SERVER_STATE_SESSION_LIST;
|
||||||
|
}*/
|
||||||
|
|
||||||
|
log_message(s_log, LOG_LEVEL_WARNING, "[v1s_mng:%d] connection aborted: sequence error", __LINE__);
|
||||||
|
return SCP_SERVER_STATE_SEQUENCE_ERR;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
@ -0,0 +1,79 @@
|
|||||||
|
/*
|
||||||
|
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
|
||||||
|
(at your option) 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.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
|
xrdp: A Remote Desktop Protocol server.
|
||||||
|
Copyright (C) Jay Sorg 2005-2008
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @file libscp_v1s_mng.h
|
||||||
|
* @brief libscp version 1 server api declarations - session management
|
||||||
|
* @author Simone Fedele
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef LIBSCP_V1S_MNG_H
|
||||||
|
#define LIBSCP_V1S_MNG_H
|
||||||
|
|
||||||
|
#include "libscp.h"
|
||||||
|
|
||||||
|
/* server API */
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @brief processes the stream using scp version 1
|
||||||
|
* @param c connection descriptor
|
||||||
|
* @param s pointer to session descriptor pointer
|
||||||
|
*
|
||||||
|
* this function places in *s the address of a newely allocated SCP_SESSION structure
|
||||||
|
* that should be free()d
|
||||||
|
*/
|
||||||
|
enum SCP_SERVER_STATES_E
|
||||||
|
scp_v1s_mng_accept(struct SCP_CONNECTION* c, struct SCP_SESSION** s);
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @brief allows connection to sesman
|
||||||
|
* @param c connection descriptor
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
/* 002 */
|
||||||
|
enum SCP_SERVER_STATES_E
|
||||||
|
scp_v1s_mng_allow_connection(struct SCP_CONNECTION* c, struct SCP_SESSION* s);
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @brief denies connection to sesman
|
||||||
|
* @param c connection descriptor
|
||||||
|
* @param reason pointer to a string containinge the reason for denying connection
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
/* 003 */
|
||||||
|
enum SCP_SERVER_STATES_E
|
||||||
|
scp_v1s_mng_deny_connection(struct SCP_CONNECTION* c, char* reason);
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @brief sends session list
|
||||||
|
* @param c connection descriptor
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
/* 006 */
|
||||||
|
enum SCP_SERVER_STATES_E
|
||||||
|
scp_v1s_mng_list_sessions(struct SCP_CONNECTION* c, struct SCP_SESSION* s,
|
||||||
|
int sescnt, struct SCP_DISCONNECTED_SESSION* ds);
|
||||||
|
// SCP_SID* sid);
|
||||||
|
|
||||||
|
#endif
|
@ -0,0 +1,145 @@
|
|||||||
|
/*
|
||||||
|
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
|
||||||
|
(at your option) 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.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
|
xrdp: A Remote Desktop Protocol server.
|
||||||
|
Copyright (C) Jay Sorg 2005-2008
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @file scp_v1_mng.c
|
||||||
|
* @brief scp version 1 implementation - management
|
||||||
|
* @author Jay Sorg, Simone Fedele
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "sesman.h"
|
||||||
|
|
||||||
|
#include "libscp.h"
|
||||||
|
|
||||||
|
extern struct config_sesman* g_cfg;
|
||||||
|
|
||||||
|
static void parseCommonStates(enum SCP_SERVER_STATES_E e, char* f);
|
||||||
|
|
||||||
|
/******************************************************************************/
|
||||||
|
void DEFAULT_CC
|
||||||
|
scp_v1_mng_process(struct SCP_CONNECTION* c, struct SCP_SESSION* s)
|
||||||
|
{
|
||||||
|
long data;
|
||||||
|
int retries;
|
||||||
|
int current_try;
|
||||||
|
enum SCP_SERVER_STATES_E e;
|
||||||
|
struct SCP_DISCONNECTED_SESSION* slist = 0;
|
||||||
|
int scount;
|
||||||
|
int end = 0;
|
||||||
|
|
||||||
|
retries = g_cfg->sec.login_retry;
|
||||||
|
current_try = retries;
|
||||||
|
|
||||||
|
data = auth_userpass(s->username, s->password);
|
||||||
|
/*LOG_DBG("user: %s\npass: %s", s->username, s->password);*/
|
||||||
|
|
||||||
|
if (!data)
|
||||||
|
{
|
||||||
|
scp_v1s_mng_deny_connection(c, "Login failed");
|
||||||
|
log_message(&(g_cfg->log), LOG_LEVEL_INFO,
|
||||||
|
"[MNG] Login failed for user %s. Connection terminated", s->username);
|
||||||
|
scp_session_destroy(s);
|
||||||
|
auth_end(data);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* testing if login is allowed */
|
||||||
|
if (0 == access_login_mng_allowed(s->username))
|
||||||
|
{
|
||||||
|
scp_v1s_mng_deny_connection(c, "Access to Terminal Server not allowed.");
|
||||||
|
log_message(&(g_cfg->log), LOG_LEVEL_INFO,
|
||||||
|
"[MNG] User %s not allowed on TS. Connection terminated", s->username);
|
||||||
|
scp_session_destroy(s);
|
||||||
|
auth_end(data);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
e = scp_v1s_mng_allow_connection(c, s);
|
||||||
|
|
||||||
|
end = 1;
|
||||||
|
while (end)
|
||||||
|
{
|
||||||
|
switch (e)
|
||||||
|
{
|
||||||
|
case SCP_SERVER_STATE_MNG_ACTION:
|
||||||
|
log_message(&(g_cfg->log), LOG_LEVEL_INFO, "Connection cancelled after session listing");
|
||||||
|
break;
|
||||||
|
|
||||||
|
case SCP_SERVER_STATE_MNG_LISTREQ:
|
||||||
|
/* list disconnected sessions */
|
||||||
|
slist = session_get_byuser(NULL, &scount, SESMAN_SESSION_STATUS_ALL);
|
||||||
|
LOG_DBG(&(g_cfg->log), "sessions on TS: %d (slist: %x)", scount, slist);
|
||||||
|
|
||||||
|
if (0 == slist)
|
||||||
|
{
|
||||||
|
// e=scp_v1s_connection_error(c, "Internal error");
|
||||||
|
log_message(&(g_cfg->log), LOG_LEVEL_INFO, "No sessions on Terminal Server");
|
||||||
|
end = 0;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
e = scp_v1s_mng_list_sessions(c, s, scount, slist);
|
||||||
|
g_free(slist);
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
/* we check the other errors */
|
||||||
|
parseCommonStates(e, "scp_v1s_mng_list_sessions()");
|
||||||
|
end = 0;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* cleanup */
|
||||||
|
scp_session_destroy(s);
|
||||||
|
auth_end(data);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void parseCommonStates(enum SCP_SERVER_STATES_E e, char* f)
|
||||||
|
{
|
||||||
|
switch (e)
|
||||||
|
{
|
||||||
|
case SCP_SERVER_STATE_VERSION_ERR:
|
||||||
|
LOG_DBG(&(g_cfg->log), "version error")
|
||||||
|
case SCP_SERVER_STATE_SIZE_ERR:
|
||||||
|
/* an unknown scp version was requested, so we shut down the */
|
||||||
|
/* connection (and log the fact) */
|
||||||
|
log_message(&(g_cfg->log), LOG_LEVEL_WARNING,
|
||||||
|
"protocol violation. connection closed.");
|
||||||
|
break;
|
||||||
|
case SCP_SERVER_STATE_NETWORK_ERR:
|
||||||
|
log_message(&(g_cfg->log), LOG_LEVEL_WARNING, "libscp network error.");
|
||||||
|
break;
|
||||||
|
case SCP_SERVER_STATE_SEQUENCE_ERR:
|
||||||
|
log_message(&(g_cfg->log), LOG_LEVEL_WARNING, "libscp sequence error.");
|
||||||
|
break;
|
||||||
|
case SCP_SERVER_STATE_INTERNAL_ERR:
|
||||||
|
/* internal error occurred (eg. malloc() error, ecc.) */
|
||||||
|
log_message(&(g_cfg->log), LOG_LEVEL_ERROR, "libscp internal error occurred.");
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
/* dummy: scp_v1s_request_password won't generate any other */
|
||||||
|
/* error other than the ones before */
|
||||||
|
log_message(&(g_cfg->log), LOG_LEVEL_ALWAYS, "unknown return from %s", f);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,42 @@
|
|||||||
|
/*
|
||||||
|
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
|
||||||
|
(at your option) 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.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
|
xrdp: A Remote Desktop Protocol server.
|
||||||
|
Copyright (C) Jay Sorg 2005-2008
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @file scp_v1.h
|
||||||
|
* @brief scp version 1 declarations - management
|
||||||
|
* @author Simone Fedele
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef SCP_V1_MNG_H
|
||||||
|
#define SCP_V1_MNG_H
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @brief processes the stream using scp version 1
|
||||||
|
* @param in_sck connection socket
|
||||||
|
* @param in_s input stream
|
||||||
|
* @param out_s output stream
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
void DEFAULT_CC
|
||||||
|
scp_v1_mng_process(struct SCP_CONNECTION* c, struct SCP_SESSION* s);
|
||||||
|
|
||||||
|
#endif
|
@ -0,0 +1,195 @@
|
|||||||
|
/*
|
||||||
|
* sesadmin.c - an sesman administration tool
|
||||||
|
* (c) 2008 Simone Fedele
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "arch.h"
|
||||||
|
#include "tcp.h"
|
||||||
|
#include "libscp.h"
|
||||||
|
#include "parse.h"
|
||||||
|
#include "log.h"
|
||||||
|
#include "libscp.h"
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
char user[257];
|
||||||
|
char pass[257];
|
||||||
|
char cmnd[257];
|
||||||
|
char serv[257];
|
||||||
|
char port[257];
|
||||||
|
|
||||||
|
struct log_config logging;
|
||||||
|
|
||||||
|
void cmndList(struct SCP_CONNECTION* c);
|
||||||
|
void cmndKill(struct SCP_CONNECTION* c, struct SCP_SESSION* s);
|
||||||
|
void cmndHelp();
|
||||||
|
|
||||||
|
int inputSession(struct SCP_SESSION* s);
|
||||||
|
unsigned int menuSelect(unsigned int choices);
|
||||||
|
|
||||||
|
int main(int argc, char** argv)
|
||||||
|
{
|
||||||
|
struct SCP_SESSION* s;
|
||||||
|
struct SCP_CONNECTION* c;
|
||||||
|
enum SCP_CLIENT_STATES_E e;
|
||||||
|
//int end;
|
||||||
|
int idx;
|
||||||
|
//int sel;
|
||||||
|
int sock;
|
||||||
|
char* pwd;
|
||||||
|
|
||||||
|
user[0]='\0';
|
||||||
|
pass[0]='\0';
|
||||||
|
cmnd[0]='\0';
|
||||||
|
serv[0]='\0';
|
||||||
|
port[0]='\0';
|
||||||
|
|
||||||
|
logging.program_name = g_strdup("sesadmin");
|
||||||
|
logging.log_file = g_strdup("xrdp-sesadmin.log");
|
||||||
|
logging.log_level = LOG_LEVEL_DEBUG;
|
||||||
|
logging.enable_syslog = 0;
|
||||||
|
log_start(&logging);
|
||||||
|
|
||||||
|
for (idx = 0; idx < argc; idx++)
|
||||||
|
{
|
||||||
|
if (0 == g_strncmp(argv[idx], "-u=", 3))
|
||||||
|
{
|
||||||
|
g_strncpy(user, (argv[idx])+3, 256);
|
||||||
|
}
|
||||||
|
else if (0 == g_strncmp(argv[idx], "-p=", 3))
|
||||||
|
{
|
||||||
|
g_strncpy(pass, (argv[idx])+3, 256);
|
||||||
|
}
|
||||||
|
else if (0 == g_strncmp(argv[idx], "-s=", 3))
|
||||||
|
{
|
||||||
|
g_strncpy(serv, (argv[idx])+3, 256);
|
||||||
|
}
|
||||||
|
else if (0 == g_strncmp(argv[idx], "-i=", 3))
|
||||||
|
{
|
||||||
|
g_strncpy(port, (argv[idx])+3, 256);
|
||||||
|
}
|
||||||
|
else if (0 == g_strncmp(argv[idx], "-c=", 3))
|
||||||
|
{
|
||||||
|
g_strncpy(cmnd, (argv[idx])+3, 256);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (0 == g_strncmp(serv, "", 1))
|
||||||
|
{
|
||||||
|
g_strncpy(serv, "localhost", 256);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (0 == g_strncmp(port, "", 1))
|
||||||
|
{
|
||||||
|
g_strncpy(port, "3350", 256);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (0 == g_strncmp(user, "", 1))
|
||||||
|
{
|
||||||
|
g_strncpy(user, "root", 256);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (0 == g_strncmp(pass, "", 1))
|
||||||
|
{
|
||||||
|
pwd = getpass("password:");
|
||||||
|
g_strncpy(pass, pwd, 256);
|
||||||
|
|
||||||
|
/* zeroing the password */
|
||||||
|
while ((*pwd) != '\0')
|
||||||
|
{
|
||||||
|
(*pwd) = 0x00;
|
||||||
|
pwd++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
scp_init(&logging);
|
||||||
|
|
||||||
|
sock = g_tcp_socket();
|
||||||
|
s = scp_session_create();
|
||||||
|
c = scp_connection_create(sock);
|
||||||
|
|
||||||
|
LOG_DBG(&logging, "Connecting to %s:%s with user %s (%s)\n", serv, port, user, pass);
|
||||||
|
|
||||||
|
if (0 != g_tcp_connect(sock, serv, port))
|
||||||
|
{
|
||||||
|
LOG_DBG(&logging, "g_tcp_connect() error\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
scp_session_set_type(s, SCP_SESSION_TYPE_MANAGE);
|
||||||
|
scp_session_set_version(s, 1);
|
||||||
|
scp_session_set_username(s, user);
|
||||||
|
scp_session_set_password(s, pass);
|
||||||
|
|
||||||
|
e = scp_v1c_mng_connect(c,s);
|
||||||
|
|
||||||
|
if (SCP_CLIENT_STATE_OK != e)
|
||||||
|
{
|
||||||
|
LOG_DBG(&logging, "libscp error connecting: %s %d\n", s->errstr, (int)e);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (0 == g_strncmp(cmnd, "list", 5))
|
||||||
|
{
|
||||||
|
cmndList(c);
|
||||||
|
}
|
||||||
|
else if (0 == g_strncmp(cmnd, "kill:", 5))
|
||||||
|
{
|
||||||
|
cmndKill(c,s);
|
||||||
|
}
|
||||||
|
|
||||||
|
g_tcp_close(sock);
|
||||||
|
scp_session_destroy(s);
|
||||||
|
scp_connection_destroy(c);
|
||||||
|
log_end(&logging);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void cmndHelp()
|
||||||
|
{
|
||||||
|
fprintf(stderr, "sesadmin - a console sesman adminitration tool\n");
|
||||||
|
fprintf(stderr, "sysntax: sesadmin [] COMMAND [OPTIONS]\n\n");
|
||||||
|
fprintf(stderr, "-u=<username>: username to connect to sesman [MANDATORY]\n");
|
||||||
|
fprintf(stderr, "-p=<password>: password to connect to sesman [MANDATORY]\n");
|
||||||
|
fprintf(stderr, "-s=<hostname>: sesman host (default is localhost)\n");
|
||||||
|
fprintf(stderr, "-i=<port> : sesman port (default 3350)\n");
|
||||||
|
fprintf(stderr, "-c=<command> : command to execute on the server [MANDATORY]\n");
|
||||||
|
fprintf(stderr, " it can be one of those:\n");
|
||||||
|
fprintf(stderr, " LIST\n");
|
||||||
|
fprintf(stderr, " KILL:<sid>\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
void cmndList(struct SCP_CONNECTION* c)
|
||||||
|
{
|
||||||
|
struct SCP_DISCONNECTED_SESSION* dsl;
|
||||||
|
enum SCP_CLIENT_STATES_E e;
|
||||||
|
int scnt;
|
||||||
|
int idx;
|
||||||
|
|
||||||
|
e = scp_v1c_mng_get_session_list(c, &scnt, &dsl);
|
||||||
|
if ((SCP_CLIENT_STATE_LIST_OK == e) && (scnt > 0))
|
||||||
|
{
|
||||||
|
for (idx = 0; idx < scnt; idx++)
|
||||||
|
{
|
||||||
|
printf("%d\t%d\t%dx%dx%d\t%d-%d-%d\t%04d/%02d/%02d@%02d:%02d\n", \
|
||||||
|
(dsl[idx]).SID, (dsl[idx]).type, (dsl[idx]).width, (dsl[idx]).height, (dsl[idx]).bpp, \
|
||||||
|
(dsl[idx]).idle_days, (dsl[idx]).idle_hours, (dsl[idx]).idle_minutes, \
|
||||||
|
(dsl[idx]).conn_year, (dsl[idx]).conn_month, (dsl[idx]).conn_day, (dsl[idx]).conn_hour, (dsl[idx]).conn_minute);
|
||||||
|
}
|
||||||
|
if (0 != dsl)
|
||||||
|
{
|
||||||
|
g_free(dsl);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
printf("No sessions.\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void cmndKill(struct SCP_CONNECTION* c, struct SCP_SESSION* s)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in new issue