xrdp/sesman/scp_v1.c

308 lines
9.5 KiB
C
Raw Normal View History

/**
* xrdp: A Remote Desktop Protocol server.
*
2015-12-12 07:41:17 +03:00
* Copyright (C) Jay Sorg 2004-2015
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
*
* @file scp_v1.c
* @brief scp version 1 implementation
* @author Jay Sorg, Simone Fedele
2007-03-17 19:41:21 +03:00
*
*/
#if defined(HAVE_CONFIG_H)
#include <config_ac.h>
#endif
#include "sesman.h"
//#include "libscp_types.h"
#include "libscp.h"
2020-08-07 23:56:54 +03:00
static void
parseCommonStates(enum SCP_SERVER_STATES_E e, const char *f);
2007-03-17 19:41:21 +03:00
/******************************************************************************/
2020-08-07 23:56:54 +03:00
static enum SCP_SERVER_STATES_E
scp_v1_process1(struct trans *t, struct SCP_SESSION *s)
{
int display = 0;
2020-08-07 23:56:54 +03:00
int scount;
long data;
enum SCP_SERVER_STATES_E e;
struct SCP_DISCONNECTED_SESSION *slist;
bool_t do_auth_end = 1;
2021-06-22 15:38:46 +03:00
if (s->retries == 0)
{
/* First time in */
s->retries = g_cfg->sec.login_retry;
s->current_try = s->retries;
}
data = auth_userpass(s->username, s->password, NULL);
2020-08-07 23:56:54 +03:00
if (data == 0)
{
2020-08-07 23:56:54 +03:00
if ((s->retries == 0) || (s->current_try > 0))
{
2020-08-07 23:56:54 +03:00
e = scp_v1s_request_password(t, s, "Wrong username and/or "
"password");
switch (e)
{
case SCP_SERVER_STATE_OK:
/* one try less */
if (s->current_try > 0)
{
s->current_try--;
}
break;
default:
/* we check the other errors */
parseCommonStates(e, "scp_v1s_list_sessions()");
break;
}
}
2020-08-07 23:56:54 +03:00
else
{
char ip[64];
g_get_ip_from_description(s->connection_description,
ip, sizeof(ip));
/*
* The message is intended for use by fail2ban, so for
* future-proofing we only log the IP address rather than the
* connection description */
LOG(LOG_LEVEL_INFO,
2021-10-25 13:35:25 +03:00
"AUTHFAIL: user=%s ip=%s time=%d",
s->username, ip, g_time1());
2020-08-07 23:56:54 +03:00
scp_v1s_deny_connection(t, "Login failed");
2021-02-03 19:42:54 +03:00
return SCP_SERVER_STATE_END;
2020-08-07 23:56:54 +03:00
}
2021-02-03 19:42:54 +03:00
return SCP_SERVER_STATE_OK;
}
/* testing if login is allowed*/
if (0 == access_login_allowed(s->username))
{
2020-08-07 23:56:54 +03:00
scp_v1s_deny_connection(t, "Access to Terminal Server not allowed.");
LOG(LOG_LEVEL_INFO, "User %s not allowed on TS. "
"Connection terminated", s->username);
2021-02-03 19:42:54 +03:00
return SCP_SERVER_STATE_END;
}
2007-02-01 09:03:46 +03:00
//check if we need password change
2007-02-01 09:03:46 +03:00
/* list disconnected sessions */
2020-08-07 23:56:54 +03:00
slist = session_get_byuser(s->username, &scount,
SESMAN_SESSION_STATUS_DISCONNECTED);
if (scount == 0)
{
/* no disconnected sessions - start a new one */
LOG(LOG_LEVEL_DEBUG, "No disconnected sessions for this user "
"- we create a new one");
2007-02-01 09:03:46 +03:00
if (0 != s->connection_description)
{
2020-08-07 23:56:54 +03:00
LOG(LOG_LEVEL_INFO, "++ created session (access granted): "
"username %s, ip %s", s->username, s->connection_description);
}
else
{
2020-08-07 23:56:54 +03:00
LOG(LOG_LEVEL_INFO, "++ created session (access granted): "
"username %s", s->username);
}
if (SCP_SESSION_TYPE_XVNC == s->type)
2007-03-17 19:41:21 +03:00
{
LOG(LOG_LEVEL_INFO, "starting Xvnc session...");
display = session_start(data, SESMAN_SESSION_TYPE_XVNC, s);
2007-03-17 19:41:21 +03:00
}
else if (SCP_SESSION_TYPE_XRDP == s->type)
2007-03-17 19:41:21 +03:00
{
LOG(LOG_LEVEL_INFO, "starting X11rdp session...");
display = session_start(data, SESMAN_SESSION_TYPE_XRDP, s);
}
else if (SCP_SESSION_TYPE_XORG == s->type)
{
LOG(LOG_LEVEL_INFO, "starting Xorg session...");
display = session_start(data, SESMAN_SESSION_TYPE_XORG, s);
}
/* if the session started up ok, auth_end will be called on
sig child */
do_auth_end = display == 0;
2020-08-07 23:56:54 +03:00
e = scp_v1s_connect_new_session(t, display);
switch (e)
{
case SCP_SERVER_STATE_OK:
/* all ok, we got new username and password */
break;
default:
/* we check the other errors */
parseCommonStates(e, "scp_v1s_connect_new_session()");
break;
2007-03-17 19:41:21 +03:00
}
}
else
{
2020-08-07 23:56:54 +03:00
e = scp_v1s_list_sessions40(t);
}
2020-08-07 23:56:54 +03:00
/* cleanup */
if (do_auth_end)
{
auth_end(data);
}
g_free(slist);
2021-02-03 19:42:54 +03:00
return SCP_SERVER_STATE_OK;
2020-08-07 23:56:54 +03:00
}
2020-08-07 23:56:54 +03:00
/******************************************************************************/
static enum SCP_SERVER_STATES_E
scp_v1_process4(struct trans *t, struct SCP_SESSION *s)
{
2021-02-03 19:42:54 +03:00
return SCP_SERVER_STATE_OK;
2020-08-07 23:56:54 +03:00
}
2020-08-07 23:56:54 +03:00
/******************************************************************************/
static enum SCP_SERVER_STATES_E
scp_v1_process41(struct trans *t, struct SCP_SESSION *s)
{
int scount;
enum SCP_SERVER_STATES_E e;
struct SCP_DISCONNECTED_SESSION *slist;
/* list disconnected sessions */
slist = session_get_byuser(s->username, &scount,
SESMAN_SESSION_STATUS_DISCONNECTED);
if (scount == 0)
{
/* */
2021-02-03 19:42:54 +03:00
return SCP_SERVER_STATE_END;
}
2020-08-07 23:56:54 +03:00
e = scp_v1s_list_sessions42(t, scount, slist);
if (SCP_SERVER_STATE_OK != e)
{
2021-07-19 12:21:20 +03:00
LOG(LOG_LEVEL_WARNING, "scp_v1s_list_sessions42 failed");
}
2021-02-03 19:42:54 +03:00
return SCP_SERVER_STATE_OK;
2020-08-07 23:56:54 +03:00
}
/******************************************************************************/
static enum SCP_SERVER_STATES_E
scp_v1_process43(struct trans *t, struct SCP_SESSION *s)
{
struct session_item *sitem;
enum SCP_SERVER_STATES_E e;
int display;
sitem = session_get_bypid(s->return_sid);
if (0 == sitem)
{
2020-08-07 23:56:54 +03:00
e = scp_v1s_connection_error(t, "Internal error");
2021-07-19 12:21:20 +03:00
LOG(LOG_LEVEL_INFO, "No session exists with PID %d", s->return_sid);
}
2020-08-07 23:56:54 +03:00
else
{
display = sitem->display;
e = scp_v1s_reconnect_session(t, display);
if (SCP_SERVER_STATE_OK != e)
{
LOG(LOG_LEVEL_ERROR, "scp_v1s_reconnect_session failed");
}
if (0 != s->connection_description)
2020-08-07 23:56:54 +03:00
{
LOG(LOG_LEVEL_INFO, "++ reconnected session: username %s, display :%d.0, session_pid %d, ip %s", s->username, display, sitem->pid, s->connection_description);
2020-08-07 23:56:54 +03:00
}
else
{
LOG(LOG_LEVEL_INFO, "++ reconnected session: username %s, display :%d.0, session_pid %d", s->username, display, sitem->pid);
}
g_free(sitem);
}
return e;
}
/******************************************************************************/
static enum SCP_SERVER_STATES_E
scp_v1_process44(struct trans *t, struct SCP_SESSION *s)
{
return SCP_SERVER_STATE_OK;
}
/******************************************************************************/
2020-08-07 23:56:54 +03:00
static enum SCP_SERVER_STATES_E
scp_v1_process45(struct trans *t, struct SCP_SESSION *s)
{
2020-08-07 23:56:54 +03:00
return SCP_SERVER_STATE_OK;
}
/******************************************************************************/
enum SCP_SERVER_STATES_E
scp_v1_process(struct trans *t, struct SCP_SESSION *s)
{
2021-06-22 15:38:46 +03:00
; /* astyle 3.1 needs this, or the switch is badly formatted */
2020-08-07 23:56:54 +03:00
switch (s->current_cmd)
{
2021-07-19 12:21:20 +03:00
case SCP_CMD_LOGIN:
2021-06-22 15:38:46 +03:00
return scp_v1_process1(t, s);
2021-07-19 12:21:20 +03:00
case SCP_CMD_RESEND_CREDS:
2020-08-07 23:56:54 +03:00
return scp_v1_process4(t, s);
2021-07-19 12:21:20 +03:00
case SCP_CMD_GET_SESSION_LIST:
2020-08-07 23:56:54 +03:00
return scp_v1_process41(t, s);
2021-07-19 12:21:20 +03:00
case SCP_CMD_SELECT_SESSION:
2020-08-07 23:56:54 +03:00
return scp_v1_process43(t, s);
2021-07-19 12:21:20 +03:00
case SCP_CMD_SELECT_SESSION_CANCEL:
2020-08-07 23:56:54 +03:00
return scp_v1_process44(t, s);
2021-07-19 12:21:20 +03:00
case SCP_CMD_FORCE_NEW_CONN:
2020-08-07 23:56:54 +03:00
return scp_v1_process45(t, s);
}
return SCP_SERVER_STATE_END;
}
2020-08-07 23:56:54 +03:00
static void
parseCommonStates(enum SCP_SERVER_STATES_E e, const char *f)
2007-03-17 19:41:21 +03:00
{
switch (e)
{
case SCP_SERVER_STATE_VERSION_ERR:
LOG(LOG_LEVEL_WARNING, "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(LOG_LEVEL_WARNING,
"protocol violation. connection closed.");
break;
case SCP_SERVER_STATE_NETWORK_ERR:
LOG(LOG_LEVEL_WARNING, "libscp network error.");
break;
case SCP_SERVER_STATE_SEQUENCE_ERR:
LOG(LOG_LEVEL_WARNING, "libscp sequence error.");
break;
case SCP_SERVER_STATE_INTERNAL_ERR:
/* internal error occurred (eg. malloc() error, ecc.) */
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(LOG_LEVEL_ALWAYS, "unknown return from %s", f);
break;
}
2007-03-17 19:41:21 +03:00
}