summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-26 13:34:48 -0600
committerTimothy Pearson <tpearson@raptorengineering.com>2019-03-17 00:34:03 -0500
commitffcc4ab362d42e0d577f31d4df8a8378b8c51412 (patch)
treee5b0ce28827e1d769ce109ddfb41ab54f937c20b
parent1978692fae7482480c4b918fa09210735bb96017 (diff)
downloadxrdp-proprietary-ffcc4ab362d42e0d577f31d4df8a8378b8c51412.tar.gz
xrdp-proprietary-ffcc4ab362d42e0d577f31d4df8a8378b8c51412.zip
Fix non-root-user display server startup failure
Transfer and clean up Kerberos ticket on login and logout Remove spurious debugging messages
-rw-r--r--instfiles/pam.d/xrdp-sesman.common1
-rw-r--r--raptorsmiface/libraptorsmiface.c60
-rw-r--r--sesman/env.c2
-rw-r--r--xrdp/xrdp_login_wnd.c3
4 files changed, 56 insertions, 10 deletions
diff --git a/instfiles/pam.d/xrdp-sesman.common b/instfiles/pam.d/xrdp-sesman.common
index b2089987..d7e1ddc5 100644
--- a/instfiles/pam.d/xrdp-sesman.common
+++ b/instfiles/pam.d/xrdp-sesman.common
@@ -1,4 +1,5 @@
#%PAM-1.0
@include common-auth
@include common-account
+@include common-password
@include common-session
diff --git a/raptorsmiface/libraptorsmiface.c b/raptorsmiface/libraptorsmiface.c
index 17a3d243..b2891f86 100644
--- a/raptorsmiface/libraptorsmiface.c
+++ b/raptorsmiface/libraptorsmiface.c
@@ -83,10 +83,10 @@ void raptorsmiface_config_read_database(int file, struct list* param_n, struct l
int i;
char* buf;
char* temp_buf;
-
+
list_clear(param_v);
list_clear(param_n);
-
+
file_read_section(file, RAPTORSMIFACE_CFG_DATABASE, param_n, param_v);
for (i = 0; i < param_n->count; i++) {
buf = (char*)list_get_item(param_n, i);
@@ -124,7 +124,7 @@ void read_ini_configuration() {
dprint("[ERROR] Unable to open configuration file [%s]", cfg_file);
return;
}
-
+
sec = list_create();
sec->auto_free = 1;
file_read_sections(fd, sec);
@@ -132,7 +132,7 @@ void read_ini_configuration() {
param_n->auto_free = 1;
param_v = list_create();
param_v->auto_free = 1;
-
+
/* read database config */
raptorsmiface_config_read_database(fd, param_n, param_v);
@@ -184,6 +184,26 @@ char* get_group_for_user(char* username) {
return strdup(primarygroup->gr_name);
}
+int raptor_sm_get_uid_for_user(char* username) {
+ struct passwd *pwd = calloc(1, sizeof(struct passwd));
+ if (pwd == NULL) {
+ return -1;
+ }
+ size_t buffer_len = sysconf(_SC_GETPW_R_SIZE_MAX) * sizeof(char);
+ char *buffer = malloc(buffer_len);
+ if (buffer == NULL) {
+ return -2;
+ }
+ getpwnam_r(username, pwd, buffer, buffer_len, &pwd);
+ if (pwd == NULL) {
+ return -3;
+ }
+ uid_t uid = pwd->pw_uid;
+ free(buffer);
+ free(pwd);
+ return uid;
+}
+
char raptor_sm_deallocate_session(char* username) {
MYSQL_RES *res;
MYSQL_ROW row;
@@ -227,6 +247,16 @@ char raptor_sm_deallocate_session(char* username) {
}
}
+#ifndef RAPTOR_SM_DISABLE_KERBEROS
+ char* command_string;
+ char* ip = raptor_sm_get_ip_for_hostname(hostname, 0);
+ asprintf(&command_string, "ssh root@%s \'rm -f /tmp/krb5cc_%d\'", ip, raptor_sm_get_uid_for_user(username));
+ dprint("Running command %s...\n\r", command_string);
+ system(command_string);
+ free(command_string);
+ free(ip);
+#endif
+
// Remove the user from the system
char* safe_username = get_mysql_escaped_string(conn, username);
asprintf(&query, "DELETE FROM sessions WHERE username='%s'", safe_username);
@@ -682,6 +712,20 @@ pid_t raptor_sm_run_remote_server(char* username, char *const argv[], char* dbfi
}
char* origstr = command_string;
+#ifndef RAPTOR_SM_DISABLE_KERBEROS
+ if (display >= 0) {
+ uid_t uid = raptor_sm_get_uid_for_user(username);
+ asprintf(&command_string, "rsync -a /tmp/krb5cc_%d root@%s:/tmp/krb5cc_%d", uid, ipaddr, uid);
+ dprint("Running command %s...\n\r", command_string);
+ system(command_string);
+ free(command_string);
+ asprintf(&command_string, "rm -f /tmp/krb5cc_%d", uid);
+ dprint("Running command %s...\n\r", command_string);
+ system(command_string);
+ free(command_string);
+ }
+#endif
+
if (strcmp(dbfield, RAPTOR_SM_SERVER_PID_FIELD) == 0) {
asprintf(&command_string, "ssh root@%s \'%s & echo $! &\'", ipaddr, origstr);
}
@@ -690,20 +734,20 @@ pid_t raptor_sm_run_remote_server(char* username, char *const argv[], char* dbfi
}
dprint("Running command %s...\n\r", command_string);
free(origstr);
-
+
FILE *fp;
char output[1024];
-
+
// Open the command for reading
fp = popen(command_string, "r");
if (fp == NULL) {
mysql_close(conn);
return -1;
}
-
+
// Read the output a line at a time
fgets(output, sizeof(output)-1, fp);
-
+
// Close output
pclose(fp);
diff --git a/sesman/env.c b/sesman/env.c
index 39e020fd..5bb63733 100644
--- a/sesman/env.c
+++ b/sesman/env.c
@@ -113,7 +113,7 @@ env_set_user(char *username, char *passwd_file, int display,
if (error == 0)
{
uid = pw_uid;
- error = g_setuid(uid);
+// error = g_setuid(uid);
}
g_mk_temp_dir(0);
diff --git a/xrdp/xrdp_login_wnd.c b/xrdp/xrdp_login_wnd.c
index 6047ff55..f3b98044 100644
--- a/xrdp/xrdp_login_wnd.c
+++ b/xrdp/xrdp_login_wnd.c
@@ -565,7 +565,8 @@ xrdp_wm_login_fill_in_combo(struct xrdp_wm *self, struct xrdp_bitmap *b)
if ((g_strncmp(p, "globals", 255) == 0)
|| (g_strncmp(p, "channels", 255) == 0)
- || (g_strncmp(p, "Logging", 255) == 0))
+ || (g_strncmp(p, "Logging", 255) == 0)
+ || (g_strncmp(p, "Database", 255) == 0))
{
}
else