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
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
|
/*
SSSD
sss_ini.c
Authors:
Ondrej Kos <okos@redhat.com>
Copyright (C) 2013 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 <stdio.h>
#include <errno.h>
#include <talloc.h>
#include "config.h"
#include "util/util.h"
#include "util/sss_ini.h"
#include "confdb/confdb_setup.h"
#include "confdb/confdb_private.h"
#include "ini_configobj.h"
#include "ini_config.h"
struct sss_ini {
char **error_list;
struct ref_array *ra_success_list;
struct ref_array *ra_error_list;
struct ini_cfgobj *sssd_config;
struct value_obj *obj;
const struct stat *cstat;
struct ini_cfgfile *file;
bool main_config_exists;
};
#define sss_ini_get_sec_list ini_get_section_list
#define sss_ini_get_attr_list ini_get_attribute_list
#define sss_ini_get_const_string_config_value ini_get_const_string_config_value
#define sss_ini_get_config_obj ini_get_config_valueobj
static void sss_ini_free_error_messages(struct sss_ini *self)
{
if (self != NULL) {
ini_config_free_errors(self->error_list);
self->error_list = NULL;
}
}
static void sss_ini_free_ra_messages(struct sss_ini *self)
{
if (self != NULL) {
ref_array_destroy(self->ra_success_list);
self->ra_success_list = NULL;
ref_array_destroy(self->ra_error_list);
self->ra_error_list = NULL;
}
}
static void sss_ini_free_config(struct sss_ini *self)
{
if (self != NULL && self->sssd_config != NULL) {
ini_config_destroy(self->sssd_config);
self->sssd_config = NULL;
}
}
/* Close file descriptor */
static void sss_ini_close_file(struct sss_ini *self)
{
if (self != NULL && self->file != NULL) {
ini_config_file_destroy(self->file);
self->file = NULL;
}
}
/* sss_ini destructor */
static int sss_ini_destroy(struct sss_ini *self)
{
sss_ini_free_error_messages(self);
sss_ini_free_ra_messages(self);
sss_ini_free_config(self);
sss_ini_close_file(self);
return 0;
}
/* Initialize data structure */
struct sss_ini* sss_ini_new(TALLOC_CTX *mem_ctx)
{
struct sss_ini *self;
self = talloc_zero(mem_ctx, struct sss_ini);
if (!self) {
DEBUG(SSSDBG_CRIT_FAILURE, "Not enough memory for sss_ini_data.\n");
return NULL;
}
talloc_set_destructor(self, sss_ini_destroy);
return self;
}
/* Open configuration file */
static int sss_ini_config_file_open(struct sss_ini *self,
const char *config_file)
{
int ret;
if (self == NULL) {
return EINVAL;
}
ret = ini_config_file_open(config_file,
INI_META_STATS,
&self->file);
self->main_config_exists = (ret != ENOENT);
return ret;
}
static int sss_ini_config_file_from_mem(struct sss_ini *self,
void *data_buf,
uint32_t data_len)
{
if (self == NULL) {
return EINVAL;
}
return ini_config_file_from_mem(data_buf, strlen(data_buf),
&self->file);
}
/* Check configuration file permissions */
static int sss_ini_access_check(struct sss_ini *self)
{
if (!self->main_config_exists) {
return EOK;
}
return ini_config_access_check(self->file,
INI_ACCESS_CHECK_MODE |
INI_ACCESS_CHECK_UID |
INI_ACCESS_CHECK_GID,
0, /* owned by root */
0, /* owned by root */
S_IRUSR, /* r**------ */
ALLPERMS & ~(S_IWUSR|S_IXUSR));
}
/* Get cstat */
int sss_ini_get_stat(struct sss_ini *self)
{
self->cstat = ini_config_get_stat(self->file);
if (!self->cstat) return EIO;
return EOK;
}
/* Get mtime */
int sss_ini_get_mtime(struct sss_ini *self,
size_t timestr_len,
char *timestr)
{
return snprintf(timestr, timestr_len, "%llu",
(long long unsigned)self->cstat->st_mtime);
}
/* Get file_exists */
bool sss_ini_exists(struct sss_ini *self)
{
return self->main_config_exists;
}
/* Print ini_config errors */
static void sss_ini_config_print_errors(char **error_list)
{
unsigned count = 0;
if (!error_list) {
return;
}
while (error_list[count]) {
DEBUG(SSSDBG_FATAL_FAILURE, "%s\n", error_list[count]);
count++;
}
}
static int sss_ini_parse(struct sss_ini *self)
{
int ret;
if (!self) {
return EINVAL;
}
sss_ini_free_error_messages(self);
sss_ini_free_config(self);
/* Create config object */
ret = ini_config_create(&(self->sssd_config));
if (ret != EOK) {
DEBUG(SSSDBG_FATAL_FAILURE,
"Failed to create config object. Error %d.\n", ret);
return ret;
}
/* Parse file */
ret = ini_config_parse(self->file,
INI_STOP_ON_ANY,
INI_MV1S_OVERWRITE,
INI_PARSE_NOWRAP,
self->sssd_config);
if (ret != EOK) {
DEBUG(SSSDBG_FATAL_FAILURE,
"Failed to parse configuration. Error %d.\n", ret);
if (ini_config_error_count(self->sssd_config)) {
DEBUG(SSSDBG_FATAL_FAILURE,
"Errors detected while parsing: %s\n",
ini_config_get_filename(self->file));
ini_config_get_errors(self->sssd_config,
&(self->error_list));
}
}
return ret;
}
static int sss_ini_add_snippets(struct sss_ini *self,
const char *config_dir)
{
#ifdef HAVE_LIBINI_CONFIG_V1_3
int ret;
const char *patterns[] = { "^[^\\.].*\\.conf$", NULL };
const char *sections[] = { ".*", NULL };
uint32_t i = 0;
char *msg = NULL;
struct ini_cfgobj *modified_sssd_config = NULL;
struct access_check snip_check;
if (self == NULL || self->sssd_config == NULL || config_dir == NULL) {
return EINVAL;
}
sss_ini_free_ra_messages(self);
snip_check.flags = INI_ACCESS_CHECK_MODE | INI_ACCESS_CHECK_UID
| INI_ACCESS_CHECK_GID;
snip_check.uid = 0; /* owned by root */
snip_check.gid = 0; /* owned by root */
snip_check.mode = S_IRUSR; /* r**------ */
snip_check.mask = ALLPERMS & ~(S_IWUSR | S_IXUSR);
ret = ini_config_augment(self->sssd_config,
config_dir,
patterns,
sections,
&snip_check,
INI_STOP_ON_ANY,
INI_MV1S_OVERWRITE,
INI_PARSE_NOWRAP,
INI_MV2S_OVERWRITE,
&modified_sssd_config,
&self->ra_error_list,
&self->ra_success_list);
if (ret != EOK) {
DEBUG(SSSDBG_CRIT_FAILURE,
"Failed to augment configuration: Error %d",
ret);
}
while (ref_array_get(self->ra_success_list, i, &msg) != NULL) {
DEBUG(SSSDBG_TRACE_FUNC,
"Config merge success: %s\n", msg);
i++;
}
i = 0;
while (ref_array_get(self->ra_error_list, i, &msg) != NULL) {
DEBUG(SSSDBG_CRIT_FAILURE,
"Config merge error: %s\n", msg);
i++;
}
/* switch config objects if there are no errors */
if (modified_sssd_config != NULL) {
ini_config_destroy(self->sssd_config);
self->sssd_config = modified_sssd_config;
} else {
DEBUG(SSSDBG_TRACE_FUNC,
"Using only main configuration file due to errors in merging\n");
}
return ret;
#else /* HAVE_LIBINI_CONFIG_V1_3 */
return EOK;
#endif /* ! HAVE_LIBINI_CONFIG_V1_3 */
}
struct ref_array *
sss_ini_get_ra_success_list(struct sss_ini *self)
{
#ifdef HAVE_LIBINI_CONFIG_V1_3
return self->ra_success_list;
#else
return NULL;
#endif /* HAVE_LIBINI_CONFIG_V1_3 */
}
struct ref_array *
sss_ini_get_ra_error_list(struct sss_ini *self)
{
#ifdef HAVE_LIBINI_CONFIG_V1_3
return self->ra_error_list;
#else
return NULL;
#endif /* HAVE_LIBINI_CONFIG_V1_3 */
}
/* Get configuration object */
int sss_ini_get_cfgobj(struct sss_ini *self,
const char *section, const char *name)
{
return sss_ini_get_config_obj(section,name, self->sssd_config,
INI_GET_FIRST_VALUE, &self->obj);
}
/* Check configuration object */
int sss_ini_check_config_obj(struct sss_ini *self)
{
if (self->obj == NULL) {
return ENOENT;
}
return EOK;
}
/* Get integer value */
int sss_ini_get_int_config_value(struct sss_ini *self,
int strict, int def, int *error)
{
return ini_get_int_config_value(self->obj, strict, def, error);
}
/* Get string value */
const char *sss_ini_get_string_config_value(struct sss_ini *self,
int *error)
{
return ini_get_string_config_value(self->obj, error);
}
/* Create LDIF */
int sss_confdb_create_ldif(TALLOC_CTX *mem_ctx,
struct sss_ini *self,
const char *only_section,
const char **config_ldif)
{
int ret, i, j;
char *ldif;
char *tmp_ldif;
char **sections;
int section_count;
char *dn;
char *tmp_dn;
char *sec_dn;
char **attrs;
int attr_count;
char *ldif_attr;
TALLOC_CTX *tmp_ctx;
size_t dn_size;
size_t ldif_len;
size_t attr_len;
struct value_obj *obj = NULL;
bool section_handled = true;
if (only_section != NULL) {
/* If the section is specified, we must handle it, either by adding
* its contents or by deleting the section if it doesn't exist
*/
section_handled = false;
}
ldif_len = strlen(CONFDB_INTERNAL_LDIF);
ldif = talloc_array(mem_ctx, char, ldif_len+1);
if (!ldif) return ENOMEM;
tmp_ctx = talloc_new(ldif);
if (!tmp_ctx) {
ret = ENOMEM;
goto error;
}
memcpy(ldif, CONFDB_INTERNAL_LDIF, ldif_len);
/* Read in the collection and convert it to an LDIF */
/* Get the list of sections */
sections = sss_ini_get_sec_list(self->sssd_config,
§ion_count, &ret);
if (ret != EOK) {
goto error;
}
for (i = 0; i < section_count; i++) {
const char *rdn = NULL;
DEBUG(SSSDBG_TRACE_FUNC,
"Processing config section [%s]\n", sections[i]);
ret = parse_section(tmp_ctx, sections[i], &sec_dn, &rdn);
if (ret != EOK) {
goto error;
}
if (only_section != NULL) {
if (strcasecmp(only_section, sections[i])) {
DEBUG(SSSDBG_TRACE_FUNC, "Skipping section %s\n", sections[i]);
continue;
} else {
/* Mark the requested section as handled so that we don't
* try to re-add it later
*/
section_handled = true;
}
}
dn = talloc_asprintf(tmp_ctx,
"dn: %s,cn=config\n"
"cn: %s\n",
sec_dn, rdn);
if (!dn) {
ret = ENOMEM;
free_section_list(sections);
goto error;
}
dn_size = strlen(dn);
/* Get all of the attributes and their values as LDIF */
attrs = sss_ini_get_attr_list(self->sssd_config, sections[i],
&attr_count, &ret);
if (ret != EOK) {
free_section_list(sections);
goto error;
}
for (j = 0; j < attr_count; j++) {
DEBUG(SSSDBG_TRACE_FUNC,
"Processing attribute [%s]\n", attrs[j]);
ret = sss_ini_get_config_obj(sections[i], attrs[j],
self->sssd_config,
INI_GET_FIRST_VALUE, &obj);
if (ret != EOK) goto error;
const char *value = sss_ini_get_const_string_config_value(obj, &ret);
if (ret != EOK) goto error;
if (value && value[0] == '\0') {
DEBUG(SSSDBG_CRIT_FAILURE,
"Attribute '%s' has empty value, ignoring\n",
attrs[j]);
continue;
}
ldif_attr = talloc_asprintf(tmp_ctx,
"%s: %s\n", attrs[j], value);
DEBUG(SSSDBG_TRACE_ALL, "%s\n", ldif_attr);
attr_len = strlen(ldif_attr);
tmp_dn = talloc_realloc(tmp_ctx, dn, char,
dn_size+attr_len+1);
if (!tmp_dn) {
ret = ENOMEM;
free_attribute_list(attrs);
free_section_list(sections);
goto error;
}
dn = tmp_dn;
memcpy(dn+dn_size, ldif_attr, attr_len+1);
dn_size += attr_len;
}
dn_size ++;
tmp_dn = talloc_realloc(tmp_ctx, dn, char,
dn_size+1);
if (!tmp_dn) {
ret = ENOMEM;
free_attribute_list(attrs);
free_section_list(sections);
goto error;
}
dn = tmp_dn;
dn[dn_size-1] = '\n';
dn[dn_size] = '\0';
DEBUG(SSSDBG_TRACE_ALL, "Section dn\n%s\n", dn);
tmp_ldif = talloc_realloc(mem_ctx, ldif, char,
ldif_len+dn_size+1);
if (!tmp_ldif) {
ret = ENOMEM;
free_attribute_list(attrs);
free_section_list(sections);
goto error;
}
ldif = tmp_ldif;
memcpy(ldif+ldif_len, dn, dn_size);
ldif_len += dn_size;
free_attribute_list(attrs);
talloc_free(dn);
}
if (only_section != NULL && section_handled == false) {
/* If only a single section was supposed to be
* handled, but it wasn't found in the INI file,
* create an LDIF that would remove the section
*/
ret = parse_section(tmp_ctx, only_section, &sec_dn, NULL);
if (ret != EOK) {
goto error;
}
dn = talloc_asprintf(tmp_ctx,
"dn: %s,cn=config\n"
"changetype: delete\n\n",
sec_dn);
if (dn == NULL) {
ret = ENOMEM;
goto error;
}
dn_size = strlen(dn);
tmp_ldif = talloc_realloc(mem_ctx, ldif, char,
ldif_len+dn_size+1);
if (!tmp_ldif) {
ret = ENOMEM;
goto error;
}
ldif = tmp_ldif;
memcpy(ldif+ldif_len, dn, dn_size);
ldif_len += dn_size;
}
ldif[ldif_len] = '\0';
free_section_list(sections);
*config_ldif = (const char *)ldif;
talloc_free(tmp_ctx);
return EOK;
error:
talloc_free(ldif);
return ret;
}
#ifdef HAVE_LIBINI_CONFIG_V1_3
static errno_t check_domain_inherit_from(char *cfg_section,
struct ini_cfgobj *config_obj,
struct ini_errobj *errobj)
{
struct value_obj *vo = NULL;
int ret;
ret = ini_get_config_valueobj(cfg_section,
"inherit_from",
config_obj,
INI_GET_NEXT_VALUE,
&vo);
if (ret != EOK) {
goto done;
}
if (vo != NULL) {
ret = ini_errobj_add_msg(errobj,
"Attribute 'inherit_from' is not "
"allowed in section '%s'.",
cfg_section);
if (ret != EOK) {
goto done;
}
}
ret = EOK;
done:
return ret;
}
static errno_t check_domain_id_provider(char *cfg_section,
struct ini_cfgobj *config_obj,
struct ini_errobj *errobj)
{
struct value_obj *vo = NULL;
const char *valid_values[] = { "ad", "ipa", "ldap", "proxy",
#ifdef BUILD_FILES_PROVIDER
"files",
#endif
NULL };
const char **valid_value;
const char *value;
int ret;
ret = ini_get_config_valueobj(cfg_section,
"id_provider",
config_obj,
INI_GET_NEXT_VALUE,
&vo);
if (ret != EOK) {
goto done;
}
if (vo == NULL) {
ret = ini_errobj_add_msg(errobj,
"Attribute 'id_provider' is "
"missing in section '%s'.",
cfg_section);
} else {
value = sss_ini_get_const_string_config_value(vo, &ret);
if (ret != EOK) {
goto done;
}
valid_value = valid_values;
while (*valid_value != NULL) {
if (strcmp(value, *valid_value) == 0) {
break;
}
valid_value++;
}
if (*valid_value == NULL) {
ret = ini_errobj_add_msg(errobj,
"Attribute 'id_provider' in section '%s' "
"has an invalid value: %s",
cfg_section, value);
if (ret != EOK) {
goto done;
}
}
}
ret = EOK;
done:
return ret;
}
#define SECTION_IS_DOMAIN(s) \
(strncmp("domain/", s, strlen("domain/")) == 0)
#define SECTION_DOMAIN_IS_SUBDOMAIN(s) \
(strchr(s + strlen("domain/"), '/') != NULL)
/* Here we can put custom SSSD specific checks that can not be implemented
* using libini validators */
static int custom_sssd_checks(const char *rule_name,
struct ini_cfgobj *rules_obj,
struct ini_cfgobj *config_obj,
struct ini_errobj *errobj,
void **data)
{
char **cfg_sections = NULL;
int num_cfg_sections;
int ret;
/* Get all sections in configuration */
cfg_sections = ini_get_section_list(config_obj, &num_cfg_sections, &ret);
if (ret != EOK) {
goto done;
}
/* Check a normal domain section (not application domains) */
for (int i = 0; i < num_cfg_sections; i++) {
if (SECTION_IS_DOMAIN(cfg_sections[i])) {
ret = check_domain_inherit_from(cfg_sections[i], config_obj, errobj);
if (ret != EOK) {
goto done;
}
if (!SECTION_DOMAIN_IS_SUBDOMAIN(cfg_sections[i])) {
ret = check_domain_id_provider(cfg_sections[i], config_obj, errobj);
if (ret != EOK) {
goto done;
}
}
}
}
ret = EOK;
done:
ini_free_section_list(cfg_sections);
return ret;
}
static int sss_ini_call_validators_errobj(struct sss_ini *data,
const char *rules_path,
struct ini_errobj *errobj)
{
int ret;
struct ini_cfgobj *rules_cfgobj = NULL;
struct ini_validator custom_sssd = { "sssd_checks", custom_sssd_checks,
NULL };
struct ini_validator *sss_validators[] = { &custom_sssd, NULL };
ret = ini_rules_read_from_file(rules_path, &rules_cfgobj);
if (ret != EOK) {
DEBUG(SSSDBG_FATAL_FAILURE,
"Failed to read sssd.conf schema %d [%s]\n", ret, strerror(ret));
goto done;
}
ret = ini_rules_check(rules_cfgobj, data->sssd_config, sss_validators, errobj);
if (ret != EOK) {
DEBUG(SSSDBG_FATAL_FAILURE,
"ini_rules_check failed %d [%s]\n", ret, strerror(ret));
goto done;
}
done:
if (rules_cfgobj) ini_config_destroy(rules_cfgobj);
return ret;
}
#endif /* HAVE_LIBINI_CONFIG_V1_3 */
int sss_ini_call_validators(struct sss_ini *data,
const char *rules_path)
{
#ifdef HAVE_LIBINI_CONFIG_V1_3
int ret;
struct ini_errobj *errobj = NULL;
ret = ini_errobj_create(&errobj);
if (ret != EOK) {
DEBUG(SSSDBG_FATAL_FAILURE, "Failed to create error list\n");
goto done;
}
ret = sss_ini_call_validators_errobj(data,
rules_path,
errobj);
if (ret != EOK) {
DEBUG(SSSDBG_CRIT_FAILURE,
"Failed to get errors from validators.\n");
goto done;
}
/* Do not error out when validators find some issue */
while (!ini_errobj_no_more_msgs(errobj)) {
DEBUG(SSSDBG_CRIT_FAILURE,
"%s\n", ini_errobj_get_msg(errobj));
ini_errobj_next(errobj);
}
ret = EOK;
done:
ini_errobj_destroy(&errobj);
return ret;
#else
DEBUG(SSSDBG_TRACE_FUNC,
"libini_config does not support configuration file validataion\n");
return EOK;
#endif /* HAVE_LIBINI_CONFIG_V1_3 */
}
int sss_ini_call_validators_strs(TALLOC_CTX *mem_ctx,
struct sss_ini *data,
const char *rules_path,
char ***_errors,
size_t *_num_errors)
{
#ifdef HAVE_LIBINI_CONFIG_V1_3
TALLOC_CTX *tmp_ctx = NULL;
struct ini_errobj *errobj = NULL;
int ret;
size_t num_errors;
char **errors = NULL;
if (_num_errors == NULL || _errors == NULL) {
return EINVAL;
}
tmp_ctx = talloc_new(NULL);
if (tmp_ctx == NULL) {
return ENOMEM;
}
ret = ini_errobj_create(&errobj);
if (ret != EOK) {
goto done;
}
ret = sss_ini_call_validators_errobj(data,
rules_path,
errobj);
if (ret != EOK) {
goto done;
}
num_errors = ini_errobj_count(errobj);
if (num_errors == 0) {
*_num_errors = num_errors;
goto done;
}
errors = talloc_array(tmp_ctx, char *, num_errors);
if (errors == NULL) {
ret = ENOMEM;
goto done;
}
for (int i = 0; i < num_errors; i++) {
errors[i] = talloc_strdup(errors, ini_errobj_get_msg(errobj));
if (errors[i] == NULL) {
ret = ENOMEM;
goto done;
}
ini_errobj_next(errobj);
}
*_num_errors = num_errors;
*_errors = talloc_steal(mem_ctx, errors);
ret = EOK;
done:
talloc_free(tmp_ctx);
ini_errobj_destroy(&errobj);
return ret;
#else
DEBUG(SSSDBG_TRACE_FUNC,
"libini_config does not support configuration file validation\n");
if (_num_errors == NULL || _errors == NULL) {
return EINVAL;
}
_num_errors = 0;
return EOK;
#endif /* HAVE_LIBINI_CONFIG_V1_3 */
}
int sss_ini_open(struct sss_ini *self,
const char *config_file,
const char *fallback_cfg)
{
int ret;
if (self == NULL) {
return EINVAL;
}
if (config_file != NULL) {
ret = sss_ini_config_file_open(self, config_file);
} else {
ret = ENOENT;
}
switch (ret) {
case EOK:
break;
case ENOENT:
DEBUG(SSSDBG_TRACE_FUNC, "No %s.\n", config_file);
if (fallback_cfg == NULL) {
return ret;
}
ret = sss_ini_config_file_from_mem(self,
discard_const(fallback_cfg),
strlen(fallback_cfg));
if (ret != EOK) {
DEBUG(SSSDBG_FATAL_FAILURE,
"sss_ini_config_file_from_mem failed. Error %d\n",
ret);
}
break;
default:
DEBUG(SSSDBG_CONF_SETTINGS,
"sss_ini_config_file_open failed: Error %d\n",
ret);
sss_ini_config_print_errors(self->error_list);
break;
}
return ret;
}
int sss_ini_read_sssd_conf(struct sss_ini *self,
const char *config_file,
const char *config_dir)
{
errno_t ret;
if (self == NULL) {
return EINVAL;
}
ret = sss_ini_open(self, config_file, CONFDB_FALLBACK_CONFIG);
if (ret != EOK) {
DEBUG(SSSDBG_CRIT_FAILURE,
"The sss_ini_open failed %s: %d\n",
config_file,
ret);
return ERR_INI_OPEN_FAILED;
}
if (sss_ini_exists(self)) {
ret = sss_ini_access_check(self);
if (ret != EOK) {
DEBUG(SSSDBG_CRIT_FAILURE,
"Permission check on config file failed.\n");
return ERR_INI_INVALID_PERMISSION;
}
} else {
DEBUG(SSSDBG_CONF_SETTINGS,
"File %1$s does not exist.\n",
(config_file ? config_file : "NULL"));
}
ret = sss_ini_parse(self);
if (ret != EOK) {
sss_ini_config_print_errors(self->error_list);
DEBUG(SSSDBG_FATAL_FAILURE, "Failed to parse configuration.\n");
return ERR_INI_PARSE_FAILED;
}
ret = sss_ini_add_snippets(self, config_dir);
if (ret != EOK) {
DEBUG(SSSDBG_FATAL_FAILURE,
"Error while reading configuration directory.\n");
return ERR_INI_ADD_SNIPPETS_FAILED;
}
return ret;
}
|