forked from CERN-CERT/pam_2fa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
user.c
192 lines (169 loc) · 5.86 KB
/
user.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
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/stat.h>
#include <fcntl.h>
#include "pam_2fa.h"
#include "ssh_user_auth.h"
#define BUFF_LEN 2048
static int open_trusted_file(pam_handle_t * pamh, const module_config *cfg, const struct passwd* user)
{
int fd;
char *filename;
struct stat st;
if (asprintf(&filename, "%s/%s", user->pw_dir, cfg->trusted_file) < 0) {
ERR_C(pamh, cfg, "Can't allocate filename buffer");
return -1;
}
fd = open(filename, O_RDONLY);
if(fd < 0) {
ERR_sys(pamh, "Can't open file '%s'", filename);
goto err;
}
if (fstat(fd, &st) < 0) {
ERR_C(pamh, cfg, "Can't get stats of file '%s'", filename);
goto err_fd;
}
if (!S_ISREG(st.st_mode)) {
ERR_C(pamh, cfg, "Not a regular file '%s'", filename);
goto err_fd;
}
free(filename);
return fd;
err_fd:
close(fd);
err:
free(filename);
return -1;
}
static int cut_principal(pam_handle_t * pamh, const module_config *cfg, char *input) {
char *kerberos_domain;
kerberos_domain = strchr(input, '@');
if (kerberos_domain != NULL && strcmp(kerberos_domain + 1, cfg->domain) == 0) {
*kerberos_domain = '\0';
return 1;
}
ERR_sys(pamh, "Kerberos principal does not have expected domain, ignoring : '%s'", input);
return 0;
}
static int compare_user(pam_handle_t * pamh, const module_config *cfg, const char *username, char *input) {
if (input[0] == '#') {
return 0;
}
if (cfg->domain) {
if (!cut_principal(pamh, cfg, input)) {
return 0;
}
}
return !strcmp(username, input);
}
static int validate_real_user(pam_handle_t * pamh, const module_config *cfg, const struct passwd *user, const char *username)
{
struct pam_2fa_privs p;
int fd;
char *buffer, *buf_pos, *buf_next_line;
size_t remaining;
ssize_t bytes_read;
int retval = -1;
if (pam_2fa_drop_priv(pamh, cfg, &p, user) < 0) {
/* Errors already logged in pam_2fa_drop_priv */
return -1;
}
fd = open_trusted_file(pamh, cfg, user);
if (fd < 0) {
/* Errors already logged in open_trusted_file */
goto clean;
}
buffer = (char*) calloc(BUFF_LEN, 1);
if (buffer == NULL) {
ERR_C(pamh, cfg, "User switch: unable to allocate buffer to read trusted file");
goto clean_fd;
}
buf_pos = buffer;
/* buf_pos is at most at buffer + BUFF_LEN / 2, so BUFF_LEN - (buf_pos - buffer) - 1 > 0 */
while ((bytes_read = read(fd, buf_pos, (size_t)(BUFF_LEN - (buf_pos - buffer) - 1))) > 0) {
buf_pos[bytes_read] = '\0'; /* Due to the '- 1' above, there is always space for this char */
buf_pos = buffer;
while ((buf_next_line = strchr(buf_pos, '\n'))) {
*(buf_next_line) = 0;
++buf_next_line;
if (compare_user(pamh, cfg, username, buf_pos) > 0) {
retval = 1;
if (strcmp(username, user->pw_name)) {
pam_syslog(pamh, LOG_INFO, "Authenticating '%s' as '%s' (validated from trusted file)", user->pw_name, username);
}
goto clean_buffer;
}
buf_pos = buf_next_line;
}
remaining = strlen(buf_pos);
if (remaining > BUFF_LEN / 2) {
ERR_C(pamh, cfg, "Trusted file lines are too long!");
goto clean_buffer;
}
memmove(buffer, buf_pos, remaining);
buf_pos = buffer + remaining;
}
USER_ERR_C(pamh, cfg, "'%s' is not trusted for account '%s'", username, user->pw_name);
clean_buffer:
free(buffer);
clean_fd:
close(fd);
clean:
pam_2fa_regain_priv(pamh, &p, user);
return retval;
}
static char * get_real_user(pam_handle_t * pamh, const module_config *cfg, const struct passwd *user)
{
char *username = NULL;
pam_info(pamh, "You logged-in as the service account '%s', we need to know who you are for 2nd factor authentication", user->pw_name);
if (pam_prompt(pamh, PAM_PROMPT_ECHO_ON, &username, "login: ") != PAM_SUCCESS) {
USER_ERR_C(pamh, cfg, "Unable to get real username for account '%s'", user->pw_name);
return NULL;
}
if (username == NULL) {
USER_ERR_C(pamh, cfg, "Invalid input from user for account '%s'", user->pw_name);
return NULL;
}
if (validate_real_user(pamh, cfg, user, username) < 0) {
/* Errors already logged in validate_real_user */
free(username);
return NULL;
}
return username;
}
char * get_user(pam_handle_t * pamh, const module_config *cfg)
{
const char *username;
char *kerberos_principal;
struct passwd *user_entry;
if (pam_get_item(pamh, PAM_USER, (const void **)&username) != PAM_SUCCESS) {
ERR_C(pamh, cfg, "Unable to retrieve username!");
return NULL;
}
DBG_C(pamh, cfg, "username from PAM = %s", username);
if (cfg->domain != NULL) {
kerberos_principal = extract_details(pamh, cfg->debug, cfg->flags, "gssapi-with-mic");
if (kerberos_principal != NULL) {
if (cut_principal(pamh, cfg, kerberos_principal)) {
if (strcmp(username, kerberos_principal)) {
pam_syslog(pamh, LOG_INFO, "Authenticating '%s' as '%s' due to kerberos ticket", username, kerberos_principal);
}
/* Kerberos user: not a local system account */
return kerberos_principal;
} else {
free(kerberos_principal);
}
}
}
user_entry = pam_modutil_getpwnam(pamh, username);
if (user_entry == NULL) {
ERR_C(pamh, cfg, "Can't get passwd entry for '%s'", username);
return NULL;
}
if (user_entry->pw_uid >= 1000) {
/* User account: no need to change user */
return strdup(username);
}
return get_real_user(pamh, cfg, user_entry);
}