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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
|
/*
SSSD
PAM Responder - helpers for PAM prompting configuration
Copyright (C) Sumit Bose <sbose@redhat.com> 2019
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 3 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, see <http://www.gnu.org/licenses/>.
*/
#include "util/util.h"
#include "util/sss_pam_data.h"
#include "confdb/confdb.h"
#include "sss_client/sss_cli.h"
#include "responder/pam/pamsrv.h"
#define DEFAULT_PASSKEY_PROMPT_INTERACTIVE _("Insert your Passkey device, then press ENTER.")
#define DEFAULT_PASSKEY_PROMPT_TOUCH _("Please touch the device.")
typedef errno_t (pam_set_prompting_fn_t)(TALLOC_CTX *, struct confdb_ctx *,
const char *,
struct prompt_config ***);
static errno_t pam_set_password_prompting_options(TALLOC_CTX *tmp_ctx,
struct confdb_ctx *cdb,
const char *section,
struct prompt_config ***pc_list)
{
int ret;
char *value = NULL;
ret = confdb_get_string(cdb, tmp_ctx, section, CONFDB_PC_PASSWORD_PROMPT,
NULL, &value);
if (ret == EOK && value != NULL) {
ret = pc_list_add_password(pc_list, value);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, "pc_list_add_password failed.\n");
}
return ret;
}
return ENOENT;
}
static errno_t pam_set_2fa_prompting_options(TALLOC_CTX *tmp_ctx,
struct confdb_ctx *cdb,
const char *section,
struct prompt_config ***pc_list)
{
bool single_2fa_prompt = false;
char *first_prompt = NULL;
char *second_prompt = NULL;
int ret;
ret = confdb_get_bool(cdb, section, CONFDB_PC_2FA_SINGLE_PROMPT, false,
&single_2fa_prompt);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, "confdb_get_bool failed, using defaults");
}
ret = confdb_get_string(cdb, tmp_ctx, section, CONFDB_PC_2FA_1ST_PROMPT,
NULL, &first_prompt);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, "confdb_get_string failed, using defaults");
}
if (single_2fa_prompt) {
ret = pc_list_add_2fa_single(pc_list, first_prompt);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, "pc_list_add_2fa_single failed.\n");
}
return ret;
} else {
ret = confdb_get_string(cdb, tmp_ctx, section, CONFDB_PC_2FA_2ND_PROMPT,
NULL, &second_prompt);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE,
"confdb_get_string failed, using defaults");
}
ret = pc_list_add_2fa(pc_list, first_prompt, second_prompt);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, "pc_list_add_2fa failed.\n");
}
return ret;
}
return ENOENT;
}
static errno_t pam_set_passkey_prompting_options(TALLOC_CTX *tmp_ctx,
struct confdb_ctx *cdb,
const char *section,
struct prompt_config ***pc_list)
{
bool passkey_interactive = false;
char *passkey_interactive_prompt = NULL;
bool passkey_touch = false;
char *passkey_touch_prompt = NULL;
int ret;
ret = confdb_get_bool(cdb, section, CONFDB_PC_PASSKEY_INTERACTIVE, false,
&passkey_interactive);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, "confdb_get_bool failed, using defaults");
}
if (passkey_interactive) {
ret = confdb_get_string(cdb, tmp_ctx, section, CONFDB_PC_PASSKEY_INTERACTIVE_PROMPT,
DEFAULT_PASSKEY_PROMPT_INTERACTIVE, &passkey_interactive_prompt);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, "confdb_get_string failed, using defaults");
}
}
ret = confdb_get_bool(cdb, section, CONFDB_PC_PASSKEY_TOUCH, false,
&passkey_touch);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, "confdb_get_bool failed, using defaults");
}
if (passkey_touch) {
ret = confdb_get_string(cdb, tmp_ctx, section, CONFDB_PC_PASSKEY_TOUCH_PROMPT,
DEFAULT_PASSKEY_PROMPT_TOUCH, &passkey_touch_prompt);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, "confdb_get_string failed, using defaults");
}
}
ret = pc_list_add_passkey(pc_list, passkey_interactive_prompt, passkey_touch_prompt);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, "pc_list_add_passkey_touch failed.\n");
}
return ret;
}
static errno_t pam_set_prompting_options(struct confdb_ctx *cdb,
const char *service_name,
char **sections,
int num_sections,
const char *section_path,
pam_set_prompting_fn_t *setter,
struct prompt_config ***pc_list)
{
char *dummy;
size_t c;
bool global = false;
bool specific = false;
char *section = NULL;
int ret;
char *last;
TALLOC_CTX *tmp_ctx = NULL;
tmp_ctx = talloc_new(NULL);
if (tmp_ctx == NULL) {
ret = ENOMEM;
goto done;
}
dummy = talloc_asprintf(tmp_ctx, "%s/%s", section_path,
service_name);
for (c = 0; c < num_sections; c++) {
if (strcmp(sections[c], section_path) == 0) {
global = true;
}
if (dummy != NULL && strcmp(sections[c], dummy) == 0) {
specific = true;
}
}
section = talloc_asprintf(tmp_ctx, "%s/%s", CONFDB_PC_CONF_ENTRY, dummy);
if (section == NULL) {
DEBUG(SSSDBG_OP_FAILURE, "talloc_asprintf failed.\n");
ret = ENOMEM;
goto done;
}
ret = ENOENT;
if (specific) {
ret = setter(tmp_ctx, cdb, section, pc_list);
}
if (global && ret == ENOENT) {
last = strrchr(section, '/');
if (last != NULL) {
*last = '\0';
ret = setter(tmp_ctx, cdb, section, pc_list);
}
}
if (ret != EOK && ret != ENOENT) {
DEBUG(SSSDBG_OP_FAILURE, "setter failed.\n");
goto done;
}
ret = EOK;
done:
talloc_free(tmp_ctx);
return ret;
}
errno_t pam_eval_prompting_config(struct pam_ctx *pctx, struct pam_data *pd)
{
int ret;
struct prompt_config **pc_list = NULL;
int resp_len;
uint8_t *resp_data = NULL;
struct pam_resp_auth_type types;
if (pctx->num_prompting_config_sections == 0) {
DEBUG(SSSDBG_TRACE_ALL, "No prompting configuration found.\n");
return EOK;
}
ret = pam_get_auth_types(pd, &types);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, "Failed to get authentication types\n");
goto done;
}
if (types.passkey_auth) {
ret = pam_set_prompting_options(pctx->rctx->cdb, pd->service,
pctx->prompting_config_sections,
pctx->num_prompting_config_sections,
CONFDB_PC_TYPE_PASSKEY,
pam_set_passkey_prompting_options,
&pc_list);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE,
"pam_set_prompting_options failed.\n");
goto done;
}
}
if (types.cert_auth) {
/* If certificate based authentication is possilbe, i.e. a Smartcard
* or similar with the mapped certificate is available we currently
* prefer this authentication type unconditionally. If other types
* should be used the Smartcard can be removed during authentication.
* Since there currently are no specific options for cert_auth we are
* done. */
ret = EOK;
goto done;
}
/* If OTP and password auth are possible we currently prefer OTP. */
if (types.otp_auth) {
ret = pam_set_prompting_options(pctx->rctx->cdb, pd->service,
pctx->prompting_config_sections,
pctx->num_prompting_config_sections,
CONFDB_PC_TYPE_2FA,
pam_set_2fa_prompting_options,
&pc_list);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE,
"pam_set_prompting_options failed.\n");
goto done;
}
}
if (types.password_auth) {
ret = pam_set_prompting_options(pctx->rctx->cdb, pd->service,
pctx->prompting_config_sections,
pctx->num_prompting_config_sections,
CONFDB_PC_TYPE_PASSWORD,
pam_set_password_prompting_options,
&pc_list);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE,
"pam_set_prompting_options failed.\n");
goto done;
}
}
if (pc_list != NULL) {
ret = pam_get_response_prompt_config(pc_list, &resp_len, &resp_data);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE,
"pam_get_response_prompt_config failed.\n");
goto done;
}
ret = pam_add_response(pd, SSS_PAM_PROMPT_CONFIG, resp_len, resp_data);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, "pam_add_response failed.\n");
goto done;
}
}
ret = EOK;
done:
free(resp_data);
pc_list_free(pc_list);
return ret;
}
|