-
Notifications
You must be signed in to change notification settings - Fork 21
/
xsession.c
168 lines (149 loc) · 5.29 KB
/
xsession.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/*
* xsession - nodm X session
*
* Copyright 2011 Enrico Zini <enrico@enricozini.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "xsession.h"
#include "xsession-child.h"
#include "xserver.h"
#include "log.h"
#include "common.h"
#include <errno.h>
#include <signal.h>
#include <pwd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <fcntl.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
int nodm_xsession_init(struct nodm_xsession* s)
{
s->child_body = NULL;
s->conf_use_pam = true;
s->conf_cleanup_xse = true;
if (sigemptyset(&s->orig_signal_mask) == -1)
log_err("sigemptyset error: %m");
// Get the user we should run the session for
if (!bounded_strcpy(s->conf_run_as, getenv_with_default("NODM_USER", "root")))
log_warn("username has been truncated");
// Get the X session command
if (!bounded_strcpy(s->conf_session_command, getenv_with_default("NODM_XSESSION", "/etc/X11/Xsession")))
log_warn("session command has been truncated");
s->pid = -1;
return E_SUCCESS;
}
int nodm_xsession_start(struct nodm_xsession* s, struct nodm_xserver* srv)
{
struct nodm_xsession_child child;
child.srv = srv;
child.conf_cleanup_xse = s->conf_cleanup_xse;
// Validate the user using the normal system user database
struct passwd *pw = 0;
if (s->conf_run_as[0] == 0)
pw = getpwuid(getuid());
else
pw = getpwnam(s->conf_run_as);
if (pw == NULL)
{
log_err("unknown username: %s", s->conf_run_as);
return E_OS_ERROR;
}
child.pwent = *pw;
// Create the argument list
const char* args[5];
args[0] = "/bin/sh";
args[1] = "-l";
args[2] = "-c";
args[3] = s->conf_session_command;
args[4] = NULL;
child.argv = args;
log_verb("starting X session \"%s\"", s->conf_session_command);
// Variables that gdm sets but we do not:
//
// This is something that we should see how to handle.
// What I know so far is:
// - It should point to ~/.Xauthority, which should exist.
// - 'xauth generate' should be able to create it if missing, but I
// have not tested it yet.
// g_setenv ("XAUTHORITY", d->userauth, TRUE);
//
// This is 'gnome', 'kde' and so on, and should probably be set by the
// X session script:
// g_setenv ("DESKTOP_SESSION", session, TRUE);
//
// This looks gdm specific:
// g_setenv ("GDMSESSION", session, TRUE);
// Variables that gdm sets but we delegate other tools to set:
//
// This is set by the pam_getenvlist loop above
// g_setenv ("XDG_SESSION_COOKIE", ck_session_cookie, TRUE);
//
// This is set by "sh -l" from /etc/profile
// if (pwent->pw_uid == 0)
// g_setenv ("PATH", gdm_daemon_config_get_value_string (GDM_KEY_ROOT_PATH), TRUE);
// else
// g_setenv ("PATH", gdm_daemon_config_get_value_string (GDM_KEY_PATH), TRUE);
//
s->pid = fork();
if (s->pid == 0)
{
// Restore the original signal mask
if (sigprocmask(SIG_SETMASK, &s->orig_signal_mask, NULL) == -1)
log_err("sigprocmask failed: %m");
// cargogulted from xinit
setpgid(0, getpid());
// child shell */
if (s->child_body)
exit(s->child_body(&child));
else if (s->conf_use_pam)
exit(nodm_xsession_child_pam(&child));
else
exit(nodm_xsession_child(&child));
} else if (s->pid == -1) {
log_err("cannot fork user shell: %m");
return E_OS_ERROR;
}
return E_SUCCESS;
}
int nodm_xsession_stop(struct nodm_xsession* s)
{
int res = child_must_exit(s->pid, "X session");
s->pid = -1;
return res;
}
void nodm_xsession_dump_status(struct nodm_xsession* s)
{
fprintf(stderr, "xsession command: %s\n", s->conf_session_command);
fprintf(stderr, "xsession user: %s\n", s->conf_run_as);
fprintf(stderr, "xsession use PAM: %s\n", s->conf_use_pam ? "yes" : "no");
fprintf(stderr, "xsession cleanup ~/.xsession-errors: %s\n", s->conf_cleanup_xse ? "yes" : "no");
fprintf(stderr, "xsession pid: %d\n", (int)s->pid);
fprintf(stderr, "xsession body overridden by test: %s\n", (s->child_body != NULL) ? "yes" : "no");
}
void nodm_xsession_report_exit(struct nodm_xsession* s, int status)
{
if (WIFEXITED(status))
log_warn("X session %d quit with status %d",
(int)s->pid, WEXITSTATUS(status));
else if (WIFSIGNALED(status))
log_warn("X session %d was killed with signal %d",
(int)s->pid, WTERMSIG(status));
else
log_warn("X session %d terminated with unknown status %d",
(int)s->pid, status);
}