xrdp/sesman/session.h

195 lines
4.2 KiB
C
Raw Normal View History

/**
* xrdp: A Remote Desktop Protocol server.
*
2013-06-08 21:51:53 +04:00
* Copyright (C) Jay Sorg 2004-2013
*
* 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.
*/
2006-05-26 00:34:32 +04:00
/**
*
* @file session.h
* @brief Session management definitions
* @author Jay Sorg, Simone Fedele
*
2006-05-26 00:34:32 +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"
#include "xrdp_constants.h"
#define SESMAN_SESSION_STATUS_ACTIVE 0x01
#define SESMAN_SESSION_STATUS_IDLE 0x02
#define SESMAN_SESSION_STATUS_DISCONNECTED 0x04
/* future expansion
#define SESMAN_SESSION_STATUS_REMCONTROL 0x08
*/
#define SESMAN_SESSION_STATUS_ALL 0xFF
2022-02-14 12:16:42 +03:00
enum session_kill_status
{
2022-02-14 12:16:42 +03:00
SESMAN_SESSION_KILL_OK = 0,
SESMAN_SESSION_KILL_NULLITEM,
SESMAN_SESSION_KILL_NOTFOUND
};
2022-02-14 12:16:42 +03:00
struct scp_session_info;
struct session_item
{
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;
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
char start_ip_addr[MAX_PEER_ADDRSTRLEN];
struct guid guid;
};
struct session_chain
{
2021-05-08 19:58:11 +03:00
struct session_chain *next;
struct session_item *item;
};
2022-02-14 12:16:42 +03:00
/**
* Information used to start or find a session
*/
struct session_parameters
{
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;
const char *ip_addr;
2022-02-14 12:16:42 +03:00
};
/**
*
2006-05-26 00:34:32 +04:00
* @brief finds a session matching the supplied parameters
* @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);
#ifndef session_find_item
2022-02-14 12:16:42 +03:00
#define session_find_item(a) session_get_bydata(a)
#endif
/**
*
2006-05-26 00:34:32 +04:00
* @brief starts a session
*
* @return Connection status.
*/
enum scp_screate_status
session_start(struct auth_info *auth_info,
2022-02-14 12:16:42 +03:00
const struct session_parameters *params,
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
session_reconnect(int display, int uid,
struct auth_info *auth_info);
/**
*
2006-05-26 00:34:32 +04:00
* @brief kills a session
* @param pid the pid of the session to be killed
* @return
*
*/
2022-02-14 12:16:42 +03:00
enum session_kill_status
session_kill(int pid);
/**
*
* @brief sends sigkill to all sessions
* @return
*
*/
2017-03-12 19:35:00 +03:00
void
session_sigkill_all(void);
/**
*
2006-05-26 00:34:32 +04:00
* @brief retrieves a session's descriptor
* @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 *
session_get_bypid(int pid);
2006-11-05 16:11:20 +03:00
/**
*
2022-02-14 12:16:42 +03:00
* @brief retrieves session descriptions
* @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 *
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
/**
*
* @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);
#endif