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-09-25 07:30:09 +04:00
|
|
|
|
2006-05-26 00:34:32 +04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @file config.h
|
|
|
|
* @brief User authentication definitions
|
|
|
|
* @author Simone Fedele @< simo [at] esseemme [dot] org @>
|
2007-03-26 01:20:20 +04:00
|
|
|
*
|
2006-05-26 00:34:32 +04:00
|
|
|
*/
|
|
|
|
|
2005-09-25 07:30:09 +04:00
|
|
|
#ifndef CONFIG_H
|
|
|
|
#define CONFIG_H
|
|
|
|
|
2005-10-24 01:47:17 +04:00
|
|
|
#include "arch.h"
|
|
|
|
#include "list.h"
|
|
|
|
#include "log.h"
|
|
|
|
|
|
|
|
#define SESMAN_CFG_GLOBALS "Globals"
|
|
|
|
#define SESMAN_CFG_DEFWM "DefaultWindowManager"
|
2007-03-26 01:20:20 +04:00
|
|
|
#define SESMAN_CFG_ADDRESS "ListenAddress"
|
2005-10-24 01:47:17 +04:00
|
|
|
#define SESMAN_CFG_PORT "ListenPort"
|
|
|
|
#define SESMAN_CFG_ENABLE_USERWM "EnableUserWindowManager"
|
|
|
|
#define SESMAN_CFG_USERWM "UserWindowManager"
|
2005-12-15 23:41:03 +03:00
|
|
|
#define SESMAN_CFG_MAX_SESSION "MaxSessions"
|
2007-05-07 01:02:25 +04:00
|
|
|
#define SESMAN_CFG_AUTH_FILE_PATH "AuthFilePath"
|
2018-06-14 09:31:12 +03:00
|
|
|
#define SESMAN_CFG_RECONNECT_SH "ReconnectScript"
|
2007-05-07 01:02:25 +04:00
|
|
|
|
|
|
|
#define SESMAN_CFG_RDP_PARAMS "X11rdp"
|
2014-03-09 22:24:30 +04:00
|
|
|
#define SESMAN_CFG_XORG_PARAMS "Xorg"
|
2007-05-07 01:02:25 +04:00
|
|
|
#define SESMAN_CFG_VNC_PARAMS "Xvnc"
|
2005-10-24 01:47:17 +04:00
|
|
|
|
2014-05-10 03:02:19 +04:00
|
|
|
#define SESMAN_CFG_SESSION_VARIABLES "SessionVariables"
|
|
|
|
|
2012-05-27 19:17:39 +04:00
|
|
|
/*
|
2005-10-24 01:47:17 +04:00
|
|
|
#define SESMAN_CFG_LOGGING "Logging"
|
|
|
|
#define SESMAN_CFG_LOG_FILE "LogFile"
|
|
|
|
#define SESMAN_CFG_LOG_LEVEL "LogLevel"
|
|
|
|
#define SESMAN_CFG_LOG_ENABLE_SYSLOG "EnableSyslog"
|
|
|
|
#define SESMAN_CFG_LOG_SYSLOG_LEVEL "SyslogLevel"
|
2012-05-27 19:17:39 +04:00
|
|
|
*/
|
2019-03-08 10:42:18 +03:00
|
|
|
#define SESMAN_CFG_SECURITY "Security"
|
|
|
|
#define SESMAN_CFG_SEC_LOGIN_RETRY "MaxLoginRetry"
|
|
|
|
#define SESMAN_CFG_SEC_ALLOW_ROOT "AllowRootLogin"
|
|
|
|
#define SESMAN_CFG_SEC_USR_GROUP "TerminalServerUsers"
|
|
|
|
#define SESMAN_CFG_SEC_ADM_GROUP "TerminalServerAdmins"
|
|
|
|
#define SESMAN_CFG_SEC_ALWAYSGROUPCHECK "AlwaysGroupCheck"
|
|
|
|
#define SESMAN_CFG_SEC_RESTRICT_OUTBOUND_CLIPBOARD "RestrictOutboundClipboard"
|
2021-12-14 08:35:50 +03:00
|
|
|
#define SESMAN_CFG_SEC_RESTRICT_INBOUND_CLIPBOARD "RestrictInboundClipboard"
|
2005-12-15 23:41:03 +03:00
|
|
|
|
|
|
|
#define SESMAN_CFG_SESSIONS "Sessions"
|
|
|
|
#define SESMAN_CFG_SESS_MAX "MaxSessions"
|
|
|
|
#define SESMAN_CFG_SESS_KILL_DISC "KillDisconnected"
|
|
|
|
#define SESMAN_CFG_SESS_IDLE_LIMIT "IdleTimeLimit"
|
2006-01-13 18:51:23 +03:00
|
|
|
#define SESMAN_CFG_SESS_DISC_LIMIT "DisconnectedTimeLimit"
|
2016-06-22 02:30:15 +03:00
|
|
|
#define SESMAN_CFG_SESS_X11DISPLAYOFFSET "X11DisplayOffset"
|
2005-12-15 23:41:03 +03:00
|
|
|
|
2014-04-20 11:42:19 +04:00
|
|
|
#define SESMAN_CFG_SESS_POLICY_S "Policy"
|
|
|
|
#define SESMAN_CFG_SESS_POLICY_DFLT_S "Default"
|
|
|
|
#define SESMAN_CFG_SESS_POLICY_UBD_S "UBD"
|
|
|
|
#define SESMAN_CFG_SESS_POLICY_UBI_S "UBI"
|
|
|
|
#define SESMAN_CFG_SESS_POLICY_UBC_S "UBC"
|
|
|
|
#define SESMAN_CFG_SESS_POLICY_UBDI_S "UBDI"
|
|
|
|
#define SESMAN_CFG_SESS_POLICY_UBDC_S "UBDC"
|
|
|
|
|
2021-05-08 19:58:11 +03:00
|
|
|
enum SESMAN_CFG_SESS_POLICY_BITS
|
|
|
|
{
|
2014-04-20 11:42:19 +04:00
|
|
|
SESMAN_CFG_SESS_POLICY_D = 0x01,
|
|
|
|
SESMAN_CFG_SESS_POLICY_I = 0x02,
|
|
|
|
SESMAN_CFG_SESS_POLICY_C = 0x04
|
|
|
|
};
|
|
|
|
|
2021-05-08 19:58:11 +03:00
|
|
|
enum SESMAN_CFG_SESS_POLICY
|
|
|
|
{
|
2014-04-20 11:42:19 +04:00
|
|
|
SESMAN_CFG_SESS_POLICY_DFLT = 0,
|
|
|
|
SESMAN_CFG_SESS_POLICY_UBD = SESMAN_CFG_SESS_POLICY_D,
|
|
|
|
SESMAN_CFG_SESS_POLICY_UBI = SESMAN_CFG_SESS_POLICY_I,
|
|
|
|
SESMAN_CFG_SESS_POLICY_UBC = SESMAN_CFG_SESS_POLICY_C,
|
|
|
|
SESMAN_CFG_SESS_POLICY_UBDI = SESMAN_CFG_SESS_POLICY_D | SESMAN_CFG_SESS_POLICY_I,
|
|
|
|
SESMAN_CFG_SESS_POLICY_UBDC = SESMAN_CFG_SESS_POLICY_D | SESMAN_CFG_SESS_POLICY_C
|
|
|
|
};
|
|
|
|
|
2005-12-15 23:41:03 +03:00
|
|
|
/**
|
|
|
|
*
|
2006-01-13 18:51:23 +03:00
|
|
|
* @struct config_security
|
2006-05-26 00:34:32 +04:00
|
|
|
* @brief struct that contains sesman access control configuration
|
2005-12-15 23:41:03 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
struct config_security
|
|
|
|
{
|
2021-05-08 19:58:11 +03:00
|
|
|
/**
|
|
|
|
* @var allow_root
|
|
|
|
* @brief allow root login on TS
|
|
|
|
*/
|
|
|
|
int allow_root;
|
|
|
|
/**
|
|
|
|
* @var login_retry
|
|
|
|
* @brief maximum login attempts
|
|
|
|
*/
|
|
|
|
int login_retry;
|
|
|
|
/**
|
|
|
|
* @var ts_users
|
|
|
|
* @brief Terminal Server Users group
|
|
|
|
*/
|
|
|
|
int ts_users_enable;
|
|
|
|
int ts_users;
|
|
|
|
/**
|
|
|
|
* @var ts_admins
|
|
|
|
* @brief Terminal Server Administrators group
|
|
|
|
*/
|
|
|
|
int ts_admins_enable;
|
|
|
|
int ts_admins;
|
|
|
|
/**
|
|
|
|
* @var ts_always_group_check
|
|
|
|
* @brief if the Groups are not found deny access
|
|
|
|
*/
|
|
|
|
int ts_always_group_check;
|
|
|
|
/**
|
|
|
|
* @var restrict_outbound_clipboard
|
|
|
|
* @brief if the clipboard should be enforced restricted. If true only allow client -> server, not vice versa.
|
|
|
|
*/
|
|
|
|
int restrict_outbound_clipboard;
|
2021-12-14 08:35:50 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var restrict_inbound_clipboard
|
|
|
|
* @brief if the clipboard should be enforced restricted. If true only allow server -> client, not vice versa.
|
|
|
|
*/
|
|
|
|
int restrict_inbound_clipboard;
|
2005-12-15 23:41:03 +03:00
|
|
|
};
|
|
|
|
|
2006-01-13 18:51:23 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @struct config_sessions
|
2006-05-26 00:34:32 +04:00
|
|
|
* @brief struct that contains sesman session handling configuration
|
2006-01-13 18:51:23 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
struct config_sessions
|
|
|
|
{
|
2021-05-08 19:58:11 +03:00
|
|
|
/**
|
|
|
|
* @var x11_display_offset
|
|
|
|
* @brief X11 TCP port offset. default value: 10
|
|
|
|
*/
|
|
|
|
int x11_display_offset;
|
|
|
|
/**
|
|
|
|
* @var max_sessions
|
|
|
|
* @brief maximum number of allowed sessions. 0 for unlimited
|
|
|
|
*/
|
|
|
|
int max_sessions;
|
|
|
|
/**
|
|
|
|
* @var max_idle_time
|
|
|
|
* @brief maximum idle time for each session
|
|
|
|
*/
|
|
|
|
int max_idle_time;
|
|
|
|
/**
|
|
|
|
* @var max_disc_time
|
|
|
|
* @brief maximum disconnected time for each session
|
|
|
|
*/
|
|
|
|
int max_disc_time;
|
|
|
|
/**
|
|
|
|
* @var kill_disconnected
|
|
|
|
* @brief enables automatic killing of disconnected session
|
|
|
|
*/
|
|
|
|
int kill_disconnected;
|
|
|
|
/**
|
|
|
|
* @var policy
|
|
|
|
* @brief session allocation policy
|
|
|
|
*/
|
|
|
|
enum SESMAN_CFG_SESS_POLICY policy;
|
2006-01-13 18:51:23 +03:00
|
|
|
};
|
|
|
|
|
2005-11-14 01:06:49 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @struct config_sesman
|
2006-05-26 00:34:32 +04:00
|
|
|
* @brief struct that contains sesman configuration
|
2005-11-14 01:06:49 +03:00
|
|
|
*
|
2006-05-26 00:34:32 +04:00
|
|
|
* This struct contains all of sesman configuration parameters\n
|
|
|
|
* Every parameter in [globals] is a member of this struct, other
|
|
|
|
* sections options are embedded in this struct as member structures
|
2005-11-14 01:06:49 +03:00
|
|
|
*
|
|
|
|
*/
|
2005-10-24 01:47:17 +04:00
|
|
|
struct config_sesman
|
2005-09-25 07:30:09 +04:00
|
|
|
{
|
2021-05-08 19:58:11 +03:00
|
|
|
/**
|
|
|
|
* @var sesman_ini
|
|
|
|
* @brief File that these parameters are read from
|
|
|
|
*/
|
|
|
|
char *sesman_ini;
|
2020-06-22 12:27:54 +03:00
|
|
|
|
2021-05-08 19:58:11 +03:00
|
|
|
/**
|
|
|
|
* @var listen_port
|
|
|
|
* @brief Listening port
|
|
|
|
*/
|
2022-03-19 14:29:28 +03:00
|
|
|
char listen_port[256];
|
2021-05-08 19:58:11 +03:00
|
|
|
/**
|
|
|
|
* @var enable_user_wm
|
|
|
|
* @brief Flag that enables user specific wm
|
|
|
|
*/
|
|
|
|
int enable_user_wm;
|
|
|
|
/**
|
|
|
|
* @var default_wm
|
|
|
|
* @brief Default window manager
|
|
|
|
*/
|
|
|
|
char *default_wm;
|
|
|
|
/**
|
|
|
|
* @var user_wm
|
|
|
|
* @brief Default window manager
|
|
|
|
*/
|
|
|
|
char user_wm[32];
|
|
|
|
/**
|
|
|
|
* @var reconnect_sh
|
|
|
|
* @brief Script executed when reconnected
|
|
|
|
*/
|
|
|
|
char *reconnect_sh;
|
|
|
|
/**
|
|
|
|
* @var auth_file_path
|
|
|
|
* @brief Auth file path
|
|
|
|
*/
|
|
|
|
char *auth_file_path;
|
|
|
|
/**
|
|
|
|
* @var vnc_params
|
|
|
|
* @brief Xvnc additional parameter list
|
|
|
|
*/
|
|
|
|
struct list *vnc_params;
|
|
|
|
/**
|
|
|
|
* @var rdp_params
|
|
|
|
* @brief X11rdp additional parameter list
|
|
|
|
*/
|
|
|
|
struct list *rdp_params;
|
|
|
|
/**
|
|
|
|
* @var xorg_params
|
|
|
|
* @brief Xorg additional parameter list
|
|
|
|
*/
|
|
|
|
struct list *xorg_params;
|
|
|
|
/**
|
|
|
|
* @var log
|
|
|
|
* @brief Log configuration struct
|
|
|
|
*/
|
|
|
|
//struct log_config log;
|
|
|
|
/**
|
|
|
|
* @var sec
|
|
|
|
* @brief Security configuration options struct
|
|
|
|
*/
|
|
|
|
struct config_security sec;
|
|
|
|
/**
|
|
|
|
* @var sess
|
|
|
|
* @brief Session configuration options struct
|
|
|
|
*/
|
|
|
|
struct config_sessions sess;
|
2014-05-10 03:02:19 +04:00
|
|
|
|
2021-05-08 19:58:11 +03:00
|
|
|
/**
|
|
|
|
* @var env_names
|
|
|
|
* @brief environment variable name list
|
|
|
|
*/
|
|
|
|
struct list *env_names;
|
|
|
|
/**
|
|
|
|
* @var env_values
|
|
|
|
* @brief environment variable value list
|
|
|
|
*/
|
|
|
|
struct list *env_values;
|
2005-09-25 07:30:09 +04:00
|
|
|
};
|
|
|
|
|
2005-10-06 23:21:18 +04:00
|
|
|
/**
|
|
|
|
*
|
2005-11-14 01:06:49 +03:00
|
|
|
* @brief Reads sesman configuration
|
2020-06-22 12:27:54 +03:00
|
|
|
* @param sesman_ini Name of configuration file to read
|
|
|
|
* @return configuration on success, NULL on failure
|
2006-04-24 01:54:12 +04:00
|
|
|
*
|
2020-06-22 12:27:54 +03:00
|
|
|
* @post pass return value to config_free() to prevent memory leaks
|
2014-03-09 04:41:37 +04:00
|
|
|
*
|
|
|
|
*/
|
2021-05-08 19:58:11 +03:00
|
|
|
struct config_sesman *
|
2020-06-22 12:27:54 +03:00
|
|
|
config_read(const char *sesman_ini);
|
2014-05-10 03:02:19 +04:00
|
|
|
|
2018-05-29 21:48:04 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @brief Dumps configuration
|
|
|
|
* @param pointer to a config_sesman struct
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
config_dump(struct config_sesman *config);
|
2014-05-10 03:02:19 +04:00
|
|
|
|
2020-06-22 12:27:54 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @brief Frees configuration allocated by config_read()
|
|
|
|
* @param pointer to a config_sesman struct (may be NULL)
|
|
|
|
*
|
|
|
|
*/
|
2016-10-21 08:22:51 +03:00
|
|
|
void
|
|
|
|
config_free(struct config_sesman *cs);
|
|
|
|
|
2005-09-25 07:30:09 +04:00
|
|
|
#endif
|