2012-09-20 07:51:34 +04:00
|
|
|
/**
|
|
|
|
* xrdp: A Remote Desktop Protocol server.
|
|
|
|
*
|
2013-06-08 21:51:53 +04:00
|
|
|
* Copyright (C) Jay Sorg 2004-2013
|
2012-09-20 07:51:34 +04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2005-10-06 23:27:38 +04:00
|
|
|
|
2006-05-26 00:34:32 +04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @file session.h
|
|
|
|
* @brief Session management definitions
|
|
|
|
* @author Jay Sorg, Simone Fedele
|
2007-04-07 20:20:08 +04:00
|
|
|
*
|
2006-05-26 00:34:32 +04:00
|
|
|
*/
|
2005-10-06 23:27:38 +04:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef SESSION_H
|
|
|
|
#define SESSION_H
|
|
|
|
|
2022-02-14 12:16:42 +03:00
|
|
|
#include <time.h>
|
2006-11-05 16:11:20 +03:00
|
|
|
|
2022-02-14 12:16:42 +03:00
|
|
|
#include "guid.h"
|
|
|
|
#include "scp_application_types.h"
|
2022-04-22 13:56:23 +03:00
|
|
|
#include "xrdp_constants.h"
|
2006-01-13 18:51:23 +03:00
|
|
|
|
2008-09-12 00:23:15 +04:00
|
|
|
#define SESMAN_SESSION_STATUS_ACTIVE 0x01
|
|
|
|
#define SESMAN_SESSION_STATUS_IDLE 0x02
|
|
|
|
#define SESMAN_SESSION_STATUS_DISCONNECTED 0x04
|
2006-01-13 18:51:23 +03:00
|
|
|
/* future expansion
|
2008-09-12 00:23:15 +04:00
|
|
|
#define SESMAN_SESSION_STATUS_REMCONTROL 0x08
|
2006-01-13 18:51:23 +03:00
|
|
|
*/
|
2008-09-12 00:23:15 +04:00
|
|
|
#define SESMAN_SESSION_STATUS_ALL 0xFF
|
2006-01-13 18:51:23 +03:00
|
|
|
|
2022-02-14 12:16:42 +03:00
|
|
|
enum session_kill_status
|
2008-07-30 14:58:30 +04:00
|
|
|
{
|
2022-02-14 12:16:42 +03:00
|
|
|
SESMAN_SESSION_KILL_OK = 0,
|
|
|
|
SESMAN_SESSION_KILL_NULLITEM,
|
|
|
|
SESMAN_SESSION_KILL_NOTFOUND
|
2008-07-30 14:58:30 +04:00
|
|
|
};
|
|
|
|
|
2022-02-14 12:16:42 +03:00
|
|
|
struct scp_session_info;
|
2008-07-30 14:58:30 +04:00
|
|
|
|
2005-10-06 23:27:38 +04:00
|
|
|
struct session_item
|
|
|
|
{
|
2022-12-14 12:36:07 +03:00
|
|
|
int uid; /* UID of session */
|
2021-05-08 19:58:11 +03:00
|
|
|
int pid; /* pid of sesman waiting for wm to end */
|
|
|
|
int display;
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
int bpp;
|
2022-09-11 15:18:53 +03:00
|
|
|
struct auth_info *auth_info;
|
2021-05-08 19:58:11 +03:00
|
|
|
|
|
|
|
/* status info */
|
|
|
|
unsigned char status;
|
2022-02-14 12:16:42 +03:00
|
|
|
enum scp_session_type type;
|
2021-05-08 19:58:11 +03:00
|
|
|
|
|
|
|
/* time data */
|
2022-02-14 12:16:42 +03:00
|
|
|
time_t start_time;
|
|
|
|
// struct session_date disconnect_time; // Currently unused
|
|
|
|
// struct session_date idle_time; // Currently unused
|
2022-04-22 13:56:23 +03:00
|
|
|
char start_ip_addr[MAX_PEER_ADDRSTRLEN];
|
2021-04-22 15:27:39 +03:00
|
|
|
struct guid guid;
|
2005-10-06 23:27:38 +04:00
|
|
|
};
|
|
|
|
|
2006-01-13 18:51:23 +03:00
|
|
|
struct session_chain
|
|
|
|
{
|
2021-05-08 19:58:11 +03:00
|
|
|
struct session_chain *next;
|
|
|
|
struct session_item *item;
|
2006-01-13 18:51:23 +03:00
|
|
|
};
|
|
|
|
|
2022-02-14 12:16:42 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Information used to start or find a session
|
|
|
|
*/
|
|
|
|
struct session_parameters
|
|
|
|
{
|
2022-12-14 12:36:07 +03:00
|
|
|
int uid;
|
2022-02-14 12:16:42 +03:00
|
|
|
enum scp_session_type type;
|
|
|
|
unsigned short height;
|
|
|
|
unsigned short width;
|
|
|
|
unsigned char bpp;
|
|
|
|
const char *shell;
|
|
|
|
const char *directory;
|
2022-04-22 13:56:23 +03:00
|
|
|
const char *ip_addr;
|
2022-02-14 12:16:42 +03:00
|
|
|
};
|
|
|
|
|
2006-01-13 18:51:23 +03:00
|
|
|
/**
|
|
|
|
*
|
2006-05-26 00:34:32 +04:00
|
|
|
* @brief finds a session matching the supplied parameters
|
2006-01-13 18:51:23 +03:00
|
|
|
* @return session data or 0
|
|
|
|
*
|
|
|
|
*/
|
2021-05-08 19:58:11 +03:00
|
|
|
struct session_item *
|
2022-02-14 12:16:42 +03:00
|
|
|
session_get_bydata(const struct session_parameters *params);
|
2006-01-13 18:51:23 +03:00
|
|
|
#ifndef session_find_item
|
2022-02-14 12:16:42 +03:00
|
|
|
#define session_find_item(a) session_get_bydata(a)
|
2006-01-13 18:51:23 +03:00
|
|
|
#endif
|
2005-10-06 23:27:38 +04:00
|
|
|
|
2006-01-13 18:51:23 +03:00
|
|
|
/**
|
|
|
|
*
|
2006-05-26 00:34:32 +04:00
|
|
|
* @brief starts a session
|
2006-01-13 18:51:23 +03:00
|
|
|
*
|
2022-12-14 12:36:07 +03:00
|
|
|
* @return Connection status.
|
2006-01-13 18:51:23 +03:00
|
|
|
*/
|
2022-12-14 12:36:07 +03:00
|
|
|
enum scp_screate_status
|
2022-09-11 15:18:53 +03:00
|
|
|
session_start(struct auth_info *auth_info,
|
2022-02-14 12:16:42 +03:00
|
|
|
const struct session_parameters *params,
|
2022-12-14 12:36:07 +03:00
|
|
|
int *display,
|
2022-02-14 12:16:42 +03:00
|
|
|
struct guid *guid);
|
2009-01-12 09:43:58 +03:00
|
|
|
|
2017-03-12 19:35:00 +03:00
|
|
|
int
|
2022-12-14 12:36:07 +03:00
|
|
|
session_reconnect(int display, int uid,
|
2022-09-11 15:18:53 +03:00
|
|
|
struct auth_info *auth_info);
|
2012-07-17 00:20:26 +04:00
|
|
|
|
2006-01-13 18:51:23 +03:00
|
|
|
/**
|
|
|
|
*
|
2006-05-26 00:34:32 +04:00
|
|
|
* @brief kills a session
|
|
|
|
* @param pid the pid of the session to be killed
|
2007-04-07 20:20:08 +04:00
|
|
|
* @return
|
|
|
|
*
|
2006-01-13 18:51:23 +03:00
|
|
|
*/
|
2022-02-14 12:16:42 +03:00
|
|
|
enum session_kill_status
|
2006-01-13 18:51:23 +03:00
|
|
|
session_kill(int pid);
|
|
|
|
|
2007-04-07 20:20:08 +04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @brief sends sigkill to all sessions
|
|
|
|
* @return
|
|
|
|
*
|
|
|
|
*/
|
2017-03-12 19:35:00 +03:00
|
|
|
void
|
2016-12-23 20:52:22 +03:00
|
|
|
session_sigkill_all(void);
|
2007-04-07 20:20:08 +04:00
|
|
|
|
2006-01-13 18:51:23 +03:00
|
|
|
/**
|
|
|
|
*
|
2006-05-26 00:34:32 +04:00
|
|
|
* @brief retrieves a session's descriptor
|
2006-01-13 18:51:23 +03:00
|
|
|
* @param pid the session pid
|
|
|
|
* @return a pointer to the session descriptor on success, NULL otherwise
|
|
|
|
*
|
|
|
|
*/
|
2021-05-08 19:58:11 +03:00
|
|
|
struct session_item *
|
2007-04-07 20:20:08 +04:00
|
|
|
session_get_bypid(int pid);
|
2006-01-13 18:51:23 +03:00
|
|
|
|
2006-11-05 16:11:20 +03:00
|
|
|
/**
|
|
|
|
*
|
2022-02-14 12:16:42 +03:00
|
|
|
* @brief retrieves session descriptions
|
2022-12-14 12:36:07 +03:00
|
|
|
* @param UID the UID for the descriptions
|
2022-02-14 12:16:42 +03:00
|
|
|
* @return A block of session descriptions
|
|
|
|
*
|
|
|
|
* Pass the return result to free_session_info_list() after use
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
struct scp_session_info *
|
2022-12-14 12:36:07 +03:00
|
|
|
session_get_byuid(int uid, unsigned int *cnt, unsigned char flags);
|
2022-02-14 12:16:42 +03:00
|
|
|
|
|
|
|
/**
|
2006-11-05 16:11:20 +03:00
|
|
|
*
|
2022-02-14 12:16:42 +03:00
|
|
|
* @brief Frees the result of session_get_byuser()
|
|
|
|
* @param sesslist Resuit of session_get_byuser()
|
|
|
|
* @param cnt Number of entries in sess
|
2006-11-05 16:11:20 +03:00
|
|
|
*/
|
2022-02-14 12:16:42 +03:00
|
|
|
void
|
|
|
|
free_session_info_list(struct scp_session_info *sesslist, unsigned int cnt);
|
2006-11-05 16:11:20 +03:00
|
|
|
|
2017-07-12 11:48:00 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @brief delete socket files
|
|
|
|
* @param display number
|
|
|
|
* @return non-zero value (number of errors) if failed
|
|
|
|
*/
|
|
|
|
int cleanup_sockets(int display);
|
2022-02-14 12:16:42 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Clone a session_parameters structure
|
|
|
|
*
|
|
|
|
* @param sp Parameters to clone
|
|
|
|
* @return Cloned parameters, or NULL if no memory
|
|
|
|
*
|
|
|
|
* The cloned structure can be free'd with a single call to g_free()
|
|
|
|
*/
|
|
|
|
struct session_parameters *
|
|
|
|
clone_session_params(const struct session_parameters *sp);
|
2005-10-06 23:27:38 +04:00
|
|
|
#endif
|