-
Notifications
You must be signed in to change notification settings - Fork 6
/
pam.c
206 lines (172 loc) · 5.63 KB
/
pam.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
// The code in this file is from the excellent blog post https://www.gulshansingh.com/posts/how-to-write-a-display-manager/
#include <security/pam_appl.h>
#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__APPLE__)
#include <security/openpam.h>
#else
#include <security/pam_misc.h>
#endif
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <pwd.h>
#include <paths.h>
#include <unistd.h>
#include <sys/types.h>
#include <grp.h>
#define SERVICE_NAME "display_manager"
#define err(name) \
do { \
fprintf(stderr, "%s: %s\n", name, \
pam_strerror(pam_handle, result)); \
end(result); \
return false; \
} while (1); \
static pam_handle_t *pam_handle;
static void change_identity (struct passwd *pw) {
if (initgroups(pw->pw_name, pw->pw_gid) == -1)
_Exit(1);
endgrent();
if (setgid(pw->pw_gid) || setuid(pw->pw_uid))
_Exit(1);
}
static int end(int last_result) {
int result = pam_end(pam_handle, last_result);
pam_handle = 0;
return result;
}
static int conv(int num_msg, const struct pam_message **msg,
struct pam_response **resp, void *appdata_ptr) {
int i;
*resp = calloc(num_msg, sizeof(struct pam_response));
if (*resp == NULL) {
return PAM_BUF_ERR;
}
int result = PAM_SUCCESS;
for (i = 0; i < num_msg; i++) {
char *username, *password;
switch (msg[i]->msg_style) {
case PAM_PROMPT_ECHO_ON:
username = ((char **) appdata_ptr)[0];
(*resp)[i].resp = strdup(username);
break;
case PAM_PROMPT_ECHO_OFF:
password = ((char **) appdata_ptr)[1];
(*resp)[i].resp = strdup(password);
break;
case PAM_ERROR_MSG:
fprintf(stderr, "%s\n", msg[i]->msg);
result = PAM_CONV_ERR;
break;
case PAM_TEXT_INFO:
printf("%s\n", msg[i]->msg);
break;
}
if (result != PAM_SUCCESS) {
break;
}
}
if (result != PAM_SUCCESS) {
free(*resp);
*resp = 0;
}
return result;
}
static void set_env(char *name, char *value) {
// The `+ 2` is for the '=' and the null byte
size_t name_value_len = strlen(name) + strlen(value) + 2;
char *name_value = malloc(name_value_len);
snprintf(name_value, name_value_len, "%s=%s", name, value);
pam_putenv(pam_handle, name_value);
free(name_value);
}
static void init_env(struct passwd *pw) {
set_env("HOME", pw->pw_dir);
set_env("PWD", pw->pw_dir);
set_env("SHELL", pw->pw_shell);
set_env("USER", pw->pw_name);
set_env("LOGNAME", pw->pw_name);
set_env("MAIL", _PATH_MAILDIR);
set_env("DISPLAY", ":0");
#if defined(__OpenBSD__)
const char *path_def = "/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin:/usr/local/bin:/usr/local/sbin";
size_t pathv_len = strlen(pw->pw_dir) + strlen(path_def) + 1;
char *pathv = malloc(pathv_len);
snprintf(pathv, pathv_len, "%s%s", pw->pw_dir, path_def);
set_env("PATH", pathv);
free(pathv);
const char *kshrc = "/.kshrc";
size_t env_len = strlen(pw->pw_dir) + strlen(kshrc) + 1;
char *envv = malloc(env_len);
snprintf(envv, env_len, "%s%s", pw->pw_dir, kshrc);
set_env("ENV", envv);
free(envv);
#else
set_env("PATH", "/usr/local/sbin:/usr/local/bin:/usr/bin");
#endif
size_t xauthority_len = strlen(pw->pw_dir) + strlen("/.Xauthority") + 1;
char *xauthority = malloc(xauthority_len);
snprintf(xauthority, xauthority_len, "%s/.Xauthority", pw->pw_dir);
set_env("XAUTHORITY", xauthority);
free(xauthority);
}
char *homedir(const char *username) {
struct passwd *pw = getpwnam(username);
if (pw == NULL) {
return NULL;
}
return pw->pw_dir;
}
bool login(const char *username, const char *password, const char *exec, pid_t *child_pid) {
const char *data[2] = {username, password};
struct pam_conv pam_conv = {
conv, data
};
setenv("XDG_SESSION_TYPE", "x11", 1);
int result = pam_start(SERVICE_NAME, username, &pam_conv, &pam_handle);
if (result != PAM_SUCCESS) {
err("pam_start");
}
result = pam_authenticate(pam_handle, 0);
if (result != PAM_SUCCESS) {
err("pam_authenticate");
}
result = pam_acct_mgmt(pam_handle, 0);
if (result != PAM_SUCCESS) {
err("pam_acct_mgmt");
}
result = pam_setcred(pam_handle, PAM_ESTABLISH_CRED);
if (result != PAM_SUCCESS) {
err("pam_setcred");
}
struct passwd *pw = getpwnam(username);
init_env(pw);
result = pam_open_session(pam_handle, 0);
if (result != PAM_SUCCESS) {
pam_setcred(pam_handle, PAM_DELETE_CRED);
err("pam_open_session");
}
*child_pid = fork();
if (*child_pid == 0) {
change_identity(pw);
chdir(pw->pw_dir);
char **env = pam_getenvlist(pam_handle);
execle(pw->pw_shell, pw->pw_shell, "-c", exec, NULL, env);
printf("Failed to start window manager");
_Exit(1);
}
return true;
}
bool logout(void) {
int result = pam_close_session(pam_handle, 0);
if (result != PAM_SUCCESS) {
pam_setcred(pam_handle, PAM_DELETE_CRED);
err("pam_close_session");
}
result = pam_setcred(pam_handle, PAM_DELETE_CRED);
if (result != PAM_SUCCESS) {
err("pam_setcred");
}
end(result);
return true;
}