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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
|
/*
Authors:
Pavel Březina <pbrezina@redhat.com>
Copyright (C) 2014 Red Hat
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 <string.h>
#include <talloc.h>
#include <signal.h>
#include <errno.h>
#include <utime.h>
#include "config.h"
#include "confdb/confdb.h"
#include "util/util.h"
#include "responder/common/responder.h"
#include "responder/ifp/ifp_components.h"
#define PATH_MONITOR IFP_PATH_COMPONENTS "/monitor"
#define PATH_RESPONDERS IFP_PATH_COMPONENTS "/Responders"
#define PATH_BACKENDS IFP_PATH_COMPONENTS "/Backends"
enum component_type {
COMPONENT_MONITOR,
COMPONENT_RESPONDER,
COMPONENT_BACKEND
};
static bool responder_exists(const char *name)
{
const char * const *svc = get_known_services();
int i;
for (i = 0; svc[i] != NULL; i++) {
if (strcmp(svc[i], name) == 0) {
return true;
}
}
return false;
}
static bool backend_exists(struct confdb_ctx *confdb, const char *name)
{
char **names = NULL;
errno_t ret;
int i;
ret = confdb_list_all_domain_names(NULL, confdb, &names);
if (ret != EOK) {
return false;
}
for (i = 0; names[i] != NULL; i++) {
if (strcmp(names[i], name) == 0) {
return true;
}
}
return false;
}
static errno_t check_and_get_component_from_path(TALLOC_CTX *mem_ctx,
struct confdb_ctx *confdb,
const char *path,
enum component_type *_type,
char **_name)
{
enum component_type type;
char *name = NULL;
errno_t ret;
if (confdb == NULL || path == NULL) {
return EINVAL;
}
if (strcmp(path, PATH_MONITOR) == 0) {
type = COMPONENT_MONITOR;
name = talloc_strdup(mem_ctx, "monitor");
if (name == NULL) {
ret = ENOMEM;
goto done;
}
} else {
name = sbus_opath_object_name(mem_ctx, path, PATH_RESPONDERS);
if (name != NULL) {
type = COMPONENT_RESPONDER;
} else {
name = sbus_opath_object_name(mem_ctx, path, PATH_BACKENDS);
if (name != NULL) {
type = COMPONENT_BACKEND;
} else {
ret = EINVAL;
goto done;
}
}
}
if (strchr(name, '/') != NULL) {
ret = EINVAL;
goto done;
}
switch (type) {
case COMPONENT_MONITOR:
/* noop */
break;
case COMPONENT_RESPONDER:
if (!responder_exists(name)) {
ret = ENOENT;
goto done;
}
break;
case COMPONENT_BACKEND:
if (!backend_exists(confdb, name)) {
ret = ENOENT;
goto done;
}
break;
}
if (_type != NULL) {
*_type = type;
}
if (_name != NULL) {
*_name = name;
}
ret = EOK;
done:
if (ret != EOK) {
talloc_free(name);
}
return ret;
}
static errno_t list_responders(TALLOC_CTX *mem_ctx,
const char ***_list,
int *_num)
{
const char **list = NULL;
const char * const *svc = get_known_services();
errno_t ret;
int num;
int i;
for (num = 0; svc[num] != NULL; num++);
list = talloc_zero_array(mem_ctx, const char*, num + 1);
if (list == NULL) {
ret = ENOMEM;
goto done;
}
for (i = 0; i < num; i++) {
list[i] = sbus_opath_compose(list, PATH_RESPONDERS, svc[i]);
if (list[i] == NULL) {
ret = ENOMEM;
goto done;
}
}
*_num = num;
*_list = list;
ret = EOK;
done:
if (ret != EOK) {
talloc_free(list);
}
return ret;
}
static errno_t list_backends(TALLOC_CTX *mem_ctx,
struct confdb_ctx *confdb,
const char ***_list,
int *_num)
{
TALLOC_CTX *tmp_ctx = NULL;
const char **list = NULL;
char **names = NULL;
errno_t ret;
int num;
int i;
tmp_ctx = talloc_new(NULL);
if (tmp_ctx == NULL) {
return ENOMEM;
}
ret = confdb_list_all_domain_names(tmp_ctx, confdb, &names);
if (ret != EOK) {
goto done;
}
for (num = 0; names[num] != NULL; num++);
list = talloc_zero_array(tmp_ctx, const char*, num + 1);
if (list == NULL) {
ret = ENOMEM;
goto done;
}
for (i = 0; i < num; i++) {
list[i] = sbus_opath_compose(list, PATH_BACKENDS, names[i]);
if (list[i] == NULL) {
ret = ENOMEM;
goto done;
}
}
*_num = num;
*_list = talloc_steal(mem_ctx, list);
ret = EOK;
done:
talloc_free(tmp_ctx);
return ret;
}
errno_t
ifp_list_components(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
const char ***_paths)
{
TALLOC_CTX *tmp_ctx;
const char **responders;
const char **backends;
const char **result;
int num_responders;
int num_backends;
int num;
int i;
errno_t ret;
tmp_ctx = talloc_new(NULL);
if (tmp_ctx == NULL) {
DEBUG(SSSDBG_FATAL_FAILURE, "Out of memory!\n");
return ENOMEM;
}
ret = list_responders(tmp_ctx, &responders, &num_responders);
if (ret != EOK) {
goto done;
}
ret = list_backends(tmp_ctx, ctx->rctx->cdb, &backends, &num_backends);
if (ret != EOK) {
goto done;
}
num = num_responders + num_backends + 1;
result = talloc_zero_array(mem_ctx, const char *, num + 1);
if (result == NULL) {
ret = ENOMEM;
goto done;
}
result[0] = PATH_MONITOR;
for (i = 0; i < num_responders; i++) {
result[i + 1] = talloc_steal(result, responders[i]);
}
for (i = 0; i < num_backends; i++) {
result[i + num_responders + 1] = talloc_steal(result, backends[i]);
}
*_paths = result;
ret = EOK;
done:
talloc_free(tmp_ctx);
return ret;
}
errno_t
ifp_list_responders(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
const char ***_paths)
{
const char **result;
int num;
errno_t ret;
ret = list_responders(mem_ctx, &result, &num);
if (ret != EOK) {
return ret;
}
*_paths = result;
return EOK;
}
errno_t
ifp_list_backends(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
const char ***_paths)
{
const char **result;
int num;
errno_t ret;
ret = list_backends(mem_ctx, ctx->rctx->cdb, &result, &num);
if (ret != EOK) {
return ret;
}
*_paths = result;
return EOK;
}
errno_t
ifp_find_monitor(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
const char **_path)
{
*_path = PATH_MONITOR;
return EOK;
}
errno_t
ifp_find_responder_by_name(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
const char *name,
const char **_path)
{
const char *result;
if (responder_exists(name)) {
result = sbus_opath_compose(mem_ctx, PATH_RESPONDERS, name);
if (result == NULL) {
return ENOMEM;
}
*_path = result;
return EOK;
}
DEBUG(SSSDBG_MINOR_FAILURE, "Responder \"%s\" does not exist", name);
return ENOENT;
}
errno_t
ifp_find_backend_by_name(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
const char *name,
const char **_path)
{
const char *result;
if (backend_exists(ctx->rctx->cdb, name)) {
result = sbus_opath_compose(mem_ctx, PATH_BACKENDS, name);
if (result == NULL) {
return ENOMEM;
}
*_path = result;
return EOK;
}
DEBUG(SSSDBG_MINOR_FAILURE, "Backend \"%s\" does not exist", name);
return ENOENT;
}
errno_t
ifp_component_get_name(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
const char **_out)
{
char *name;
errno_t ret;
ret = check_and_get_component_from_path(mem_ctx, ctx->rctx->cdb,
sbus_req->path, NULL, &name);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, "Unknown object [%d]: %s\n",
ret, sss_strerror(ret));
return ret;
}
*_out = name;
return EOK;
}
errno_t
ifp_component_get_debug_level(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
uint32_t *_out)
{
TALLOC_CTX *tmp_ctx;
const char *confdb_path = NULL;
enum component_type type;
char *name;
int level;
errno_t ret;
tmp_ctx = talloc_new(NULL);
if (tmp_ctx == NULL) {
DEBUG(SSSDBG_FATAL_FAILURE, "Out of memory!\n");
return ENOMEM;
}
ret = check_and_get_component_from_path(tmp_ctx, ctx->rctx->cdb,
sbus_req->path, &type, &name);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, "Unknown object [%d]: %s\n",
ret, sss_strerror(ret));
goto done;
}
switch (type) {
case COMPONENT_MONITOR:
confdb_path = CONFDB_MONITOR_CONF_ENTRY;
break;
case COMPONENT_RESPONDER:
confdb_path = talloc_asprintf(tmp_ctx, CONFDB_SERVICE_PATH_TMPL, name);
break;
case COMPONENT_BACKEND:
confdb_path = talloc_asprintf(tmp_ctx, CONFDB_DOMAIN_PATH_TMPL, name);
break;
}
if (confdb_path == NULL) {
DEBUG(SSSDBG_CRIT_FAILURE, "Out of memory\n");
ret = ENOMEM;
goto done;
}
ret = confdb_get_int(ctx->rctx->cdb, confdb_path,
CONFDB_SERVICE_DEBUG_LEVEL, SSSDBG_DEFAULT, &level);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, "Unable to retrieve configuration option"
"[%d]: %s\n", ret, sss_strerror(ret));
goto done;
}
*_out = level;
ret = EOK;
done:
talloc_free(tmp_ctx);
return ret;
}
errno_t
ifp_component_get_enabled(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
bool *_out)
{
TALLOC_CTX *tmp_ctx;
enum component_type type;
const char *param = NULL;
char **values;
char *name;
errno_t ret;
int i;
tmp_ctx = talloc_new(NULL);
if (tmp_ctx == NULL) {
DEBUG(SSSDBG_FATAL_FAILURE, "Out of memory!\n");
return ENOMEM;
}
ret = check_and_get_component_from_path(tmp_ctx, ctx->rctx->cdb,
sbus_req->path, &type, &name);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, "Unknown object [%d]: %s\n",
ret, sss_strerror(ret));
goto done;
}
switch (type) {
case COMPONENT_MONITOR:
*_out = true;
ret = EOK;
goto done;
case COMPONENT_RESPONDER:
param = CONFDB_MONITOR_ACTIVE_SERVICES;
break;
case COMPONENT_BACKEND:
param = CONFDB_MONITOR_ACTIVE_DOMAINS;
break;
}
ret = confdb_get_string_as_list(ctx->rctx->cdb, tmp_ctx,
CONFDB_MONITOR_CONF_ENTRY, param, &values);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, "Unable to retrieve configuration option"
"[%d]: %s\n", ret, sss_strerror(ret));
goto done;
}
for (i = 0; values[i] != NULL; i++) {
if (strcmp(values[i], name) == 0) {
*_out = true;
break;
}
}
ret = EOK;
done:
talloc_free(tmp_ctx);
return ret;
}
errno_t
ifp_component_get_type(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
const char **_out)
{
enum component_type type;
errno_t ret;
ret = check_and_get_component_from_path(mem_ctx, ctx->rctx->cdb,
sbus_req->path, &type, NULL);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, "Unknown object [%d]: %s\n",
ret, sss_strerror(ret));
return ret;
}
switch (type) {
case COMPONENT_MONITOR:
*_out = "monitor";
break;
case COMPONENT_RESPONDER:
*_out = "responder";
break;
case COMPONENT_BACKEND:
*_out = "backend";
break;
}
return EOK;
}
errno_t
ifp_backend_get_providers(TALLOC_CTX *mem_ctx,
struct sbus_request *sbus_req,
struct ifp_ctx *ctx,
const char ***_out)
{
TALLOC_CTX *tmp_ctx;
const char *confdb_path;
char *name;
enum component_type type;
const char **out;
char *value;
static const char *providers[] = {CONFDB_DOMAIN_ID_PROVIDER,
CONFDB_DOMAIN_AUTH_PROVIDER,
CONFDB_DOMAIN_ACCESS_PROVIDER,
CONFDB_DOMAIN_CHPASS_PROVIDER,
CONFDB_DOMAIN_SUDO_PROVIDER,
CONFDB_DOMAIN_AUTOFS_PROVIDER,
CONFDB_DOMAIN_SELINUX_PROVIDER,
CONFDB_DOMAIN_HOSTID_PROVIDER,
CONFDB_DOMAIN_SUBDOMAINS_PROVIDER,
CONFDB_DOMAIN_SESSION_PROVIDER};
int num_providers = sizeof(providers) / sizeof(providers[0]);
errno_t ret;
int i;
int j;
tmp_ctx = talloc_new(NULL);
if (tmp_ctx == NULL) {
return ENOMEM;
}
ret = check_and_get_component_from_path(tmp_ctx, ctx->rctx->cdb,
sbus_req->path, &type, &name);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, "Unknown object [%d]: %s\n",
ret, sss_strerror(ret));
goto done;
}
if (type != COMPONENT_BACKEND) {
ret = EINVAL;
goto done;
}
confdb_path = talloc_asprintf(tmp_ctx, CONFDB_DOMAIN_PATH_TMPL, name);
if (confdb_path == NULL) {
ret = ENOMEM;
goto done;
}
out = talloc_zero_array(tmp_ctx, const char *, num_providers + 1);
if (out == NULL) {
ret = ENOMEM;
goto done;
}
j = 0;
for (i = 0; i < num_providers; i++) {
ret = confdb_get_string(ctx->rctx->cdb, tmp_ctx, confdb_path,
providers[i], NULL, &value);
if (ret != EOK) {
goto done;
}
if (value == NULL) {
continue;
}
out[j] = talloc_asprintf(out, "%s=%s", providers[i], value);
if (out[j] == NULL) {
ret = ENOMEM;
goto done;
}
j++;
}
*_out = talloc_steal(mem_ctx, out);
done:
talloc_free(tmp_ctx);
return ret;
}
|