Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/nslcd/cfg.c
blob: d3374f719dcdf44df23a17df31284db3b1300687 (plain)
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
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
/*
   cfg.c - functions for configuration information
   This file contains parts that were part of the nss_ldap
   library which has been forked into the nss-pam-ldapd library.

   Copyright (C) 1997-2005 Luke Howard
   Copyright (C) 2007 West Consulting
   Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012 Arthur de Jong

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   This library 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
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with this library; if not, write to the Free Software
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
   02110-1301 USA
*/

#include "config.h"

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <ctype.h>
#include <assert.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <errno.h>
#include <netdb.h>
#include <sys/socket.h>
#ifdef HAVE_GSSAPI_H
#include <gssapi.h>
#endif /* HAVE_GSSAPI_H */
#ifdef HAVE_GSSAPI_GSSAPI_H
#include <gssapi/gssapi.h>
#endif /* HAVE_GSSAPI_GSSAPI_H */
#ifdef HAVE_GSSAPI_GSSAPI_KRB5_H
#include <gssapi/gssapi_krb5.h>
#endif /* HAVE_GSSAPI_GSSAPI_KRB5_H */
#ifdef HAVE_GSSAPI_GSSAPI_GENERIC_H
#include <gssapi/gssapi_generic.h>
#endif /* HAVE_GSSAPI_GSSAPI_GENERIC_H */
#include <sys/types.h>
#include <pwd.h>
#include <grp.h>

#include "common.h"
#include "log.h"
#include "cfg.h"
#include "attmap.h"
#include "common/expr.h"

struct ldap_config *nslcd_cfg=NULL;

/* the maximum line length in the configuration file */
#define MAX_LINE_LENGTH          4096

/* the delimiters of tokens */
#define TOKEN_DELIM " \t\n\r"

/* convenient wrapper macro for ldap_set_option() */
#define LDAP_SET_OPTION(ld,option,invalue) \
  rc=ldap_set_option(ld,option,invalue); \
  if (rc!=LDAP_SUCCESS) \
  { \
    log_log(LOG_ERR,"ldap_set_option(" #option ") failed: %s",ldap_err2string(rc)); \
    exit(EXIT_FAILURE); \
  }

/* prototype for parse_validnames_statement() because it is used in
   cfg_defaults() */
static void parse_validnames_statement(const char *filename,int lnr,
                   const char *keyword,char *line,struct ldap_config *cfg);

/* set the configuration information to the defaults */
static void cfg_defaults(struct ldap_config *cfg)
{
  int i;
  memset(cfg,0,sizeof(struct ldap_config));
  cfg->ldc_threads=5;
  cfg->ldc_uidname=NULL;
  cfg->ldc_uid=NOUID;
  cfg->ldc_gid=NOGID;
  cfg->ldc_ignorecase=0;
  for (i=0;i<(NSS_LDAP_CONFIG_URI_MAX+1);i++)
  {
    cfg->ldc_uris[i].uri=NULL;
    cfg->ldc_uris[i].firstfail=0;
    cfg->ldc_uris[i].lastfail=0;
  }
#ifdef LDAP_VERSION3
  cfg->ldc_version=LDAP_VERSION3;
#else /* LDAP_VERSION3 */
  cfg->ldc_version=LDAP_VERSION2;
#endif /* not LDAP_VERSION3 */
  cfg->ldc_binddn=NULL;
  cfg->ldc_bindpw=NULL;
  cfg->ldc_rootpwmoddn=NULL;
  cfg->ldc_rootpwmodpw=NULL;
  cfg->ldc_sasl_mech=NULL;
  cfg->ldc_sasl_realm=NULL;
  cfg->ldc_sasl_authcid=NULL;
  cfg->ldc_sasl_authzid=NULL;
  cfg->ldc_sasl_secprops=NULL;
#ifdef LDAP_OPT_X_SASL_NOCANON
  cfg->ldc_sasl_canonicalize=-1;
#endif /* LDAP_OPT_X_SASL_NOCANON */
  for (i=0;i<NSS_LDAP_CONFIG_MAX_BASES;i++)
    cfg->ldc_bases[i]=NULL;
  cfg->ldc_scope=LDAP_SCOPE_SUBTREE;
  cfg->ldc_deref=LDAP_DEREF_NEVER;
  cfg->ldc_referrals=1;
  cfg->ldc_bind_timelimit=10;
  cfg->ldc_timelimit=LDAP_NO_LIMIT;
  cfg->ldc_idle_timelimit=0;
  cfg->ldc_reconnect_sleeptime=1;
  cfg->ldc_reconnect_retrytime=10;
#ifdef LDAP_OPT_X_TLS
  cfg->ldc_ssl_on=SSL_OFF;
#endif /* LDAP_OPT_X_TLS */
  cfg->ldc_restart=1;
  cfg->ldc_pagesize=0;
  cfg->ldc_nss_initgroups_ignoreusers=NULL;
  for (i=0;i<NSS_LDAP_CONFIG_MAX_AUTHZ_SEARCHES;i++)
    cfg->ldc_pam_authz_search[i]=NULL;
  cfg->ldc_nss_min_uid=0;
  parse_validnames_statement(__FILE__,__LINE__,"",
                "/^[a-z0-9._@$][a-z0-9._@$ \\~-]*[a-z0-9._@$~-]$/i",cfg);
  cfg->pam_password_prohibit_message=NULL;
}

/* simple strdup wrapper */
static char *xstrdup(const char *s)
{
  char *tmp;
  if (s==NULL)
  {
    log_log(LOG_CRIT,"xstrdup() called with NULL");
    exit(EXIT_FAILURE);
  }
  tmp=strdup(s);
  if (tmp==NULL)
  {
    log_log(LOG_CRIT,"strdup() failed to allocate memory");
    exit(EXIT_FAILURE);
  }
  return tmp;
}

/* add a single URI to the list of URIs in the configuration */
static void add_uri(const char *filename,int lnr,
                    struct ldap_config *cfg,const char *uri)
{
  int i;
  log_log(LOG_DEBUG,"add_uri(%s)",uri);
  /* find the place where to insert the URI */
  for (i=0;cfg->ldc_uris[i].uri!=NULL;i++)
    ;
  /* check for room */
  if (i>=NSS_LDAP_CONFIG_URI_MAX)
  {
    log_log(LOG_ERR,"%s:%d: maximum number of URIs exceeded",filename,lnr);
    exit(EXIT_FAILURE);
  }
  /* append URI to list */
  cfg->ldc_uris[i].uri=xstrdup(uri);
}

#ifdef HAVE_LDAP_DOMAIN2HOSTLIST
/* return the domain name of the current host
   the returned string must be freed by caller */
static const char *cfg_getdomainname(const char *filename,int lnr)
{
  const char *fqdn,*domain;
  fqdn=getfqdn();
  if ((fqdn!=NULL)&&((domain=strchr(fqdn,'.'))!=NULL)&&(domain[1]!='\0'))
    return domain+1;
  log_log(LOG_ERR,"%s:%d: unable to determinate a domain name",
          filename,lnr);
  exit(EXIT_FAILURE);
}

/* add URIs by doing DNS queries for SRV records */
static void add_uris_from_dns(const char *filename,int lnr,
                              struct ldap_config *cfg,
                              const char *domain)
{
  int rc;
  char *hostlist=NULL,*nxt;
  char buf[HOST_NAME_MAX+sizeof("ldap://")];
  log_log(LOG_DEBUG,"query %s for SRV records",domain);
  rc=ldap_domain2hostlist(domain,&hostlist);
  if (rc!=LDAP_SUCCESS)
  {
    log_log(LOG_ERR,"%s:%d: no servers found in DNS zone %s: %s",
            filename,lnr,domain,ldap_err2string(rc));
    exit(EXIT_FAILURE);
  }
  if ((hostlist==NULL)||(*hostlist=='\0'))
  {
    log_log(LOG_ERR,"%s:%d: no servers found in DNS zone %s",filename,lnr,domain);
    exit(EXIT_FAILURE);
  }
  /* hostlist is a space-separated list of host names that we use to build
     URIs */
  while(hostlist!=NULL)
  {
    /* find the next space and split the string there */
    nxt=strchr(hostlist,' ');
    if (nxt!=NULL)
    {
      *nxt='\0';
      nxt++;
    }
    /* if port is 636, use ldaps:// URI */
    if ((strlen(hostlist)>4)&&(strcmp(hostlist+strlen(hostlist)-4,":636")==0))
    {
      hostlist[strlen(hostlist)-4]='\0';
      mysnprintf(buf,sizeof(buf),"ldaps://%s",hostlist);
    }
    else
    {
      /* strip default port number */
      if ((strlen(hostlist)>4)&&(strcmp(hostlist+strlen(hostlist)-4,":389")==0))
        hostlist[strlen(hostlist)-4]='\0';
      mysnprintf(buf,sizeof(buf),"ldap://%s",hostlist);
    }
    log_log(LOG_DEBUG,"add_uris_from_dns(): found uri: %s",buf);
    add_uri(filename,lnr,cfg,buf);
    /* get next entry from list */
    hostlist=nxt;
  }
}
#endif /* HAVE_LDAP_DOMAIN2HOSTLIST */

static int parse_boolean(const char *filename,int lnr,const char *value)
{
  if ( (strcasecmp(value,"on")==0) ||
       (strcasecmp(value,"yes")==0) ||
       (strcasecmp(value,"true")==0) ||
       (strcasecmp(value,"1")==0) )
    return 1;
  else if ( (strcasecmp(value,"off")==0) ||
            (strcasecmp(value,"no")==0) ||
            (strcasecmp(value,"false")==0) ||
            (strcasecmp(value,"0")==0) )
    return 0;
  else
  {
    log_log(LOG_ERR,"%s:%d: not a boolean argument: '%s'",filename,lnr,value);
    exit(EXIT_FAILURE);
  }
}

static int parse_scope(const char *filename,int lnr,const char *value)
{
  if ( (strcasecmp(value,"sub")==0) || (strcasecmp(value,"subtree")==0) )
    return LDAP_SCOPE_SUBTREE;
  else if ( (strcasecmp(value,"one")==0) || (strcasecmp(value,"onelevel")==0) )
    return LDAP_SCOPE_ONELEVEL;
  else if (strcasecmp(value,"base")==0)
    return LDAP_SCOPE_BASE;
  else
  {
    log_log(LOG_ERR,"%s:%d: not a scope argument: '%s'",filename,lnr,value);
    exit(EXIT_FAILURE);
  }
}

/* This function works like strtok() except that the original string is
   not modified and a pointer within str to where the next token begins
   is returned (this can be used to pass to the function on the next
   iteration). If no more tokens are found or the token will not fit in
   the buffer, NULL is returned. */
static char *get_token(char **line,char *buf,size_t buflen)
{
  size_t len;
  if ((line==NULL)||(*line==NULL)||(**line=='\0')||(buf==NULL))
    return NULL;
  /* find the beginning and length of the token */
  *line+=strspn(*line,TOKEN_DELIM);
  len=strcspn(*line,TOKEN_DELIM);
  /* check if there is a token */
  if (len==0)
  {
    *line=NULL;
    return NULL;
  }
  /* limit the token length */
  if (len>=buflen)
    len=buflen-1;
  /* copy the token */
  strncpy(buf,*line,len);
  buf[len]='\0';
  /* skip to the next token */
  *line+=len;
  *line+=strspn(*line,TOKEN_DELIM);
  /* return the token */
  return buf;
}

static enum ldap_map_selector parse_map(const char *value)
{
  if ( (strcasecmp(value,"alias")==0) || (strcasecmp(value,"aliases")==0) )
    return LM_ALIASES;
  else if ( (strcasecmp(value,"ether")==0) || (strcasecmp(value,"ethers")==0) )
    return LM_ETHERS;
  else if (strcasecmp(value,"group")==0)
    return LM_GROUP;
  else if ( (strcasecmp(value,"host")==0) || (strcasecmp(value,"hosts")==0) )
    return LM_HOSTS;
  else if (strcasecmp(value,"netgroup")==0)
    return LM_NETGROUP;
  else if ( (strcasecmp(value,"network")==0) || (strcasecmp(value,"networks")==0) )
    return LM_NETWORKS;
  else if (strcasecmp(value,"passwd")==0)
    return LM_PASSWD;
  else if ( (strcasecmp(value,"protocol")==0) || (strcasecmp(value,"protocols")==0) )
    return LM_PROTOCOLS;
  else if (strcasecmp(value,"rpc")==0)
    return LM_RPC;
  else if ( (strcasecmp(value,"service")==0) || (strcasecmp(value,"services")==0) )
    return LM_SERVICES;
  else if (strcasecmp(value,"shadow")==0)
    return LM_SHADOW;
  else
    return LM_NONE;
}

/* check to see if the line begins with a named map */
static enum ldap_map_selector get_map(char **line)
{
  char token[32];
  char *old;
  enum ldap_map_selector map;
  /* get the token */
  old=*line;
  if (get_token(line,token,sizeof(token))==NULL)
    return LM_NONE;
  /* find the map if any */
  map=parse_map(token);
  /* unknown map, return to the previous state */
  if (map==LM_NONE)
    *line=old;
  return map;
}

/* check that the condition is true and otherwise log an error
   and bail out */
static inline void check_argumentcount(const char *filename,int lnr,
                                       const char *keyword,int condition)
{
  if (!condition)
  {
    log_log(LOG_ERR,"%s:%d: %s: wrong number of arguments",filename,lnr,keyword);
    exit(EXIT_FAILURE);
  }
}

/* check that the file is not world readable */
static void check_permissions(const char *filename,const char *keyword)
{
  struct stat sb;
  /* get file status */
  if (stat(filename,&sb))
  {
    log_log(LOG_ERR,"cannot stat() %s: %s",filename,strerror(errno));
    exit(EXIT_FAILURE);
  }
  /* check permissions */
  if ((sb.st_mode&0007)!=0)
  {
    if (keyword!=NULL)
      log_log(LOG_ERR,"%s: file should not be world readable if %s is set",
              filename, keyword);
    else
      log_log(LOG_ERR,"%s: file should not be world readable",filename);
    exit(EXIT_FAILURE);
  }
}

static void get_int(const char *filename,int lnr,
                    const char *keyword,char **line,
                    int *var)
{
  /* TODO: refactor to have less overhead */
  char token[32];
  check_argumentcount(filename,lnr,keyword,get_token(line,token,sizeof(token))!=NULL);
  /* TODO: replace with correct numeric parse */
  *var=atoi(token);
}

static void get_boolean(const char *filename,int lnr,
                        const char *keyword,char **line,
                        int *var)
{
  /* TODO: refactor to have less overhead */
  char token[32];
  check_argumentcount(filename,lnr,keyword,get_token(line,token,sizeof(token))!=NULL);
  *var=parse_boolean(filename,lnr,token);
}

static void get_strdup(const char *filename,int lnr,
                       const char *keyword,char **line,
                       char **var)
{
  /* TODO: refactor to have less overhead */
  char token[64];
  check_argumentcount(filename,lnr,keyword,get_token(line,token,sizeof(token))!=NULL);
  /* Note: we have a memory leak here if a single variable is changed
           multiple times in one config (deemed not a problem) */
  *var=xstrdup(token);
}

static void get_restdup(const char *filename,int lnr,
                        const char *keyword,char **line,
                        char **var)
{
  check_argumentcount(filename,lnr,keyword,(*line!=NULL)&&(**line!='\0'));
  /* Note: we have a memory leak here if a single mapping is changed
           multiple times in one config (deemed not a problem) */
  *var=xstrdup(*line);
  /* mark that we are at the end of the line */
  *line=NULL;
}

static void get_eol(const char *filename,int lnr,
                    const char *keyword,char **line)
{
  if ((line!=NULL)&&(*line!=NULL)&&(**line!='\0'))
  {
    log_log(LOG_ERR,"%s:%d: %s: too may arguments",filename,lnr,keyword);
    exit(EXIT_FAILURE);
  }
}

static void get_uid(const char *filename,int lnr,
                    const char *keyword,char **line,
                    uid_t *var,gid_t *gid,char **str)
{
  /* TODO: refactor to have less overhead */
  char token[32];
  struct passwd *pwent;
  char *tmp;
  check_argumentcount(filename,lnr,keyword,get_token(line,token,sizeof(token))!=NULL);
  /* check if it is a valid numerical uid */
  errno=0;
  *var=strtouid(token,&tmp,10);
  if ((*token!='\0')&&(*tmp=='\0')&&(errno==0)&&(strchr(token,'-')==NULL))
  {
    /* get the name and gid from the passwd database */
    pwent=getpwuid(*var);
    if (pwent!=NULL)
    {
      if ((gid!=NULL)&&(*gid==NOGID))
        *gid=pwent->pw_gid;
      if (str!=NULL)
        *str=strdup(pwent->pw_name);
      return;
    }
  }
  /* find by name */
  pwent=getpwnam(token);
  if (pwent!=NULL)
  {
    *var=pwent->pw_uid;
    if ((gid!=NULL)&&(*gid==NOGID))
      *gid=pwent->pw_gid;
    if (str!=NULL)
      *str=strdup(token);
    return;
  }
  /* log an error */
  log_log(LOG_ERR,"%s:%d: %s: not a valid uid: '%s'",filename,lnr,keyword,token);
  exit(EXIT_FAILURE);
}

static void get_gid(const char *filename,int lnr,
                    const char *keyword,char **line,
                    gid_t *var)
{
  /* TODO: refactor to have less overhead */
  char token[32];
  struct group *grent;
  char *tmp;
  check_argumentcount(filename,lnr,keyword,get_token(line,token,sizeof(token))!=NULL);
  /* check if it is a valid numerical gid */
  errno=0;
  *var=strtogid(token,&tmp,10);
  if ((*token!='\0')&&(*tmp=='\0')&&(errno==0)&&(strchr(token,'-')==NULL))
    return;
  /* find by name */
  grent=getgrnam(token);
  if (grent!=NULL)
  {
    *var=grent->gr_gid;
    return;
  }
  /* log an error */
  log_log(LOG_ERR,"%s:%d: %s: not a valid gid: '%s'",filename,lnr,keyword,token);
  exit(EXIT_FAILURE);
}

#ifdef LDAP_OPT_X_TLS
static void get_reqcert(const char *filename,int lnr,
                        const char *keyword,char **line,
                        int *var)
{
  char token[16];
  /* get token */
  check_argumentcount(filename,lnr,keyword,get_token(line,token,sizeof(token))!=NULL);
  /* check if it is a valid value for tls_reqcert option */
  if ( (strcasecmp(token,"never")==0) ||
       (strcasecmp(token,"no")==0) )
    *var=LDAP_OPT_X_TLS_NEVER;
  else if (strcasecmp(token,"allow")==0)
    *var=LDAP_OPT_X_TLS_ALLOW;
  else if (strcasecmp(token,"try")==0)
    *var=LDAP_OPT_X_TLS_TRY;
  else if ( (strcasecmp(token,"demand")==0) ||
       (strcasecmp(token,"yes")==0) )
    *var=LDAP_OPT_X_TLS_DEMAND;
  else if (strcasecmp(token,"hard")==0)
    *var=LDAP_OPT_X_TLS_HARD;
  else
  {
    log_log(LOG_ERR,"%s:%d: %s: invalid argument: '%s'",filename,lnr,keyword,token);
    exit(EXIT_FAILURE);
  }
}
#endif /* LDAP_OPT_X_TLS */

static void parse_krb5_ccname_statement(const char *filename,int lnr,
                                        const char *keyword,char *line)
{
  char token[80];
  const char *ccname;
  const char *ccfile;
  size_t ccenvlen;
  char *ccenv;
#ifdef HAVE_GSS_KRB5_CCACHE_NAME
  OM_uint32 minor_status;
# endif /* HAVE_GSS_KRB5_CCACHE_NAME */
  /* get token */
  check_argumentcount(filename,lnr,keyword,
      (get_token(&line,token,sizeof(token))!=NULL)&&(*line=='\0'));
  /* set default kerberos ticket cache for SASL-GSSAPI */
  ccname=token;
  /* check that cache exists and is readable if it is a file */
  if ( (strncasecmp(ccname,"FILE:",sizeof("FILE:")-1)==0) ||
       (strncasecmp(ccname,"WRFILE:",sizeof("WRFILE:")-1)==0))
  {
    ccfile=strchr(ccname,':')+1;
    if (access(ccfile,R_OK)!=0)
    {
      log_log(LOG_ERR,"%s:%d: error accessing %s: %s",filename,lnr,ccfile,strerror(errno));
      exit(EXIT_FAILURE);
    }
  }
  /* set the environment variable (we have a memory leak if this option
     is set multiple times) */
  ccenvlen=strlen(ccname)+sizeof("KRB5CCNAME=");
  ccenv=(char *)malloc(ccenvlen);
  if (ccenv==NULL)
  {
    log_log(LOG_CRIT,"malloc() failed to allocate memory");
    exit(EXIT_FAILURE);
  }
  mysnprintf(ccenv,ccenvlen,"KRB5CCNAME=%s",ccname);
  putenv(ccenv);
#ifdef HAVE_GSS_KRB5_CCACHE_NAME
  /* set the name with gss_krb5_ccache_name() */
  if (gss_krb5_ccache_name(&minor_status,ccname,NULL)!=GSS_S_COMPLETE)
  {
    log_log(LOG_ERR,"%s:%d: unable to set default credential cache: %s",filename,lnr,ccname);
    exit(EXIT_FAILURE);
  }
# endif /* HAVE_GSS_KRB5_CCACHE_NAME */
}

/* assigns the base to the specified variable doing domain expansion
   and a simple check to avoid overwriting duplicate values */
static void set_base(const char *filename,int lnr,
                     const char *value,const char **var)
{
#ifdef HAVE_LDAP_DOMAIN2DN
  const char *domain=NULL;
  char *domaindn=NULL;
#endif /* HAVE_LDAP_DOMAIN2DN */
  /* if the base is "DOMAIN" use the domain name */
  if (strcasecmp(value,"domain")==0)
  {
#ifdef HAVE_LDAP_DOMAIN2DN
    domain=cfg_getdomainname(filename,lnr);
    ldap_domain2dn(domain,&domaindn);
    log_log(LOG_DEBUG,"set_base(): setting base to %s from domain",domaindn);
    value=domaindn;
#else /* not HAVE_LDAP_DOMAIN2DN */
    log_log(LOG_ERR,"%s:%d: value %s not supported on platform",filename,lnr,value);
    exit(EXIT_FAILURE);
#endif /* not HAVE_LDAP_DOMAIN2DN */
  }
  /* set the new value */
  *var=xstrdup(value);
}

/* parse the validnames statement */
static void parse_validnames_statement(const char *filename,int lnr,
                   const char *keyword,char *line,struct ldap_config *cfg)
{
  char *value;
  int i,l;
  int flags=REG_EXTENDED|REG_NOSUB;
  /* the rest of the line should be a regular expression */
  get_restdup(filename,lnr,keyword,&line,&value);
  /* check formatting and update flags */
  if (value[0]!='/')
  {
    log_log(LOG_ERR,"%s:%d: regular expression incorrectly delimited",filename,lnr);
    exit(EXIT_FAILURE);
  }
  l=strlen(value);
  if (value[l-1]=='i')
  {
    value[l-1]='\0';
    l--;
    flags|=REG_ICASE;
  }
  if (value[l-1]!='/')
  {
    log_log(LOG_ERR,"%s:%d: regular expression incorrectly delimited",filename,lnr);
    exit(EXIT_FAILURE);
  }
  value[l-1]='\0';
  /* compile the regular expression */
  if ((i=regcomp(&cfg->validnames,value+1,flags))!= 0)
  {
    /* get the error message */
    l=regerror(i,&cfg->validnames,NULL,0);
    value=malloc(l);
    if (value==NULL)
      log_log(LOG_ERR,"%s:%d: invalid regular expression",filename,lnr);
    else
    {
      regerror(i,&cfg->validnames,value,l);
      log_log(LOG_ERR,"%s:%d: invalid regular expression: %s",filename,lnr,
              value);
    }
    exit(EXIT_FAILURE);
  }
}

static void parse_pam_password_prohibit_message_statement(const char *filename,int lnr,
                   const char *keyword,char *line,struct ldap_config *cfg)
{
  char *value;
  int l;
  /* the rest of the line should be a message */
  get_restdup(filename,lnr,keyword,&line,&value);
  /* strip quotes if they are present */
  l=strlen(value);
  if ((value[0]=='\"')&&(value[l-1]=='\"'))
  {
    value[l-1]='\0';
    value++;
  }
  cfg->pam_password_prohibit_message=value;
}

static void parse_base_statement(const char *filename,int lnr,
                                 const char *keyword,char *line,
                                 struct ldap_config *cfg)
{
  const char **bases;
  int i;
  /* get the list of bases to update */
  bases=base_get_var(get_map(&line));
  if (bases==NULL)
    bases=cfg->ldc_bases;
  /* find the spot in the list of bases */
  for (i=0;i<NSS_LDAP_CONFIG_MAX_BASES;i++)
  {
    if (bases[i]==NULL)
    {
      check_argumentcount(filename,lnr,keyword,(line!=NULL)&&(*line!='\0'));
      set_base(filename,lnr,line,&bases[i]);
      return;
    }
  }
  /* no free spot found */
  log_log(LOG_ERR,"%s:%d: maximum number of base options per map (%d) exceeded",
          filename,lnr,NSS_LDAP_CONFIG_MAX_BASES);
  exit(EXIT_FAILURE);
}

static void parse_scope_statement(const char *filename,int lnr,
                                  const char *keyword,char *line,
                                  struct ldap_config *cfg)
{
  int *var;
  var=scope_get_var(get_map(&line));
  if (var==NULL)
    var=&cfg->ldc_scope;
  check_argumentcount(filename,lnr,keyword,(line!=NULL)&&(*line!='\0'));
  *var=parse_scope(filename,lnr,line);
}

static void parse_filter_statement(const char *filename,int lnr,
                                   const char *keyword,char *line)
{
  const char **var;
  const char *map=line;
  var=filter_get_var(get_map(&line));
  if (var==NULL)
  {
    log_log(LOG_ERR,"%s:%d: unknown map: '%s'",filename,lnr,map);
    exit(EXIT_FAILURE);
  }
  check_argumentcount(filename,lnr,keyword,(line!=NULL)&&(*line!='\0'));
  /* check if the value will be changed */
  if (strcmp(*var,line)!=0)
  {
    /* Note: we have a memory leak here if a single mapping is changed
             multiple times in one config (deemed not a problem) */
    *var=xstrdup(line);
  }
}

/* this function modifies the statement argument passed */
static void parse_map_statement(const char *filename,int lnr,
                                const char *keyword,char *line)
{
  enum ldap_map_selector map;
  const char **var;
  char oldatt[32], newatt[1024];
  /* get the map */
  if ((map=get_map(&line))==LM_NONE)
  {
    log_log(LOG_ERR,"%s:%d: unknown map: '%s'",filename,lnr,line);
    exit(EXIT_FAILURE);
  }
  /* read the other tokens */
  check_argumentcount(filename,lnr,keyword,
      (get_token(&line,oldatt,sizeof(oldatt))!=NULL)&&
      (get_token(&line,newatt,sizeof(newatt))!=NULL));
  /* check that there are no more tokens left on the line */
  get_eol(filename,lnr,keyword,&line);
  /* change attribute mapping */
  var=attmap_get_var(map,oldatt);
  if (var==NULL)
  {
    log_log(LOG_ERR,"%s:%d: unknown attribute to map: '%s'",filename,lnr,oldatt);
    exit(EXIT_FAILURE);
  }
  if (attmap_set_mapping(var,newatt)==NULL)
  {
    log_log(LOG_ERR,"%s:%d: attribute %s cannot be an expression",filename,lnr,oldatt);
    exit(EXIT_FAILURE);
  }
}

/* this function modifies the statement argument passed */
static void parse_nss_initgroups_ignoreusers_statement(
              const char *filename,int lnr,const char *keyword,
              char *line,struct ldap_config *cfg)
{
  char token[MAX_LINE_LENGTH];
  char *username,*next;
  struct passwd *pwent;
  check_argumentcount(filename,lnr,keyword,(line!=NULL)&&(*line!='\0'));
  if (cfg->ldc_nss_initgroups_ignoreusers==NULL)
    cfg->ldc_nss_initgroups_ignoreusers=set_new();
  while (get_token(&line,token,sizeof(token))!=NULL)
  {
    if (strcasecmp(token,"alllocal")==0)
    {
      /* go over all users (this will work because nslcd is not yet running) */
      setpwent();
      while ((pwent=getpwent())!=NULL)
        set_add(cfg->ldc_nss_initgroups_ignoreusers,pwent->pw_name);
      endpwent();
    }
    else
    {
      next=token;
      while (*next!='\0')
      {
        username=next;
        /* find the end of the current username */
        while ((*next!='\0')&&(*next!=',')) next++;
        if (*next==',')
        {
          *next='\0';
          next++;
        }
        /* check if user exists (but add anyway) */
        pwent=getpwnam(username);
        if (pwent==NULL)
          log_log(LOG_ERR,"%s:%d: user '%s' does not exist",filename,lnr,username);
        set_add(cfg->ldc_nss_initgroups_ignoreusers,username);
      }
    }
  }
}

static void parse_pam_authz_search_statement(
              const char *filename,int lnr,const char *keyword,
              char *line,struct ldap_config *cfg)
{
  SET *set;
  const char **list;
  int i;
  check_argumentcount(filename,lnr,keyword,(line!=NULL)&&(*line!='\0'));
  /* find free spot for search filter */
  for (i=0;(i<NSS_LDAP_CONFIG_MAX_AUTHZ_SEARCHES)&&(cfg->ldc_pam_authz_search[i]!=NULL);i++);
  if (i>=NSS_LDAP_CONFIG_MAX_AUTHZ_SEARCHES)
  {
    log_log(LOG_ERR,"%s:%d: maximum number of pam_authz_search options (%d) exceeded",
            filename,lnr,NSS_LDAP_CONFIG_MAX_AUTHZ_SEARCHES);
    exit(EXIT_FAILURE);
  }
  cfg->ldc_pam_authz_search[i]=xstrdup(line);
  /* check the variables used in the expression */
  set=expr_vars(cfg->ldc_pam_authz_search[i],NULL);
  list=set_tolist(set);
  if (list==NULL)
  {
    log_log(LOG_CRIT,"malloc() failed to allocate memory");
    exit(EXIT_FAILURE);
  }
  for (i=0;list[i]!=NULL;i++)
  {
    if ((strcmp(list[i],"username")!=0)&&
        (strcmp(list[i],"service")!=0)&&
        (strcmp(list[i],"ruser")!=0)&&
        (strcmp(list[i],"rhost")!=0)&&
        (strcmp(list[i],"tty")!=0)&&
        (strcmp(list[i],"hostname")!=0)&&
        (strcmp(list[i],"fqdn")!=0)&&
        (strcmp(list[i],"dn")!=0)&&
        (strcmp(list[i],"uid")!=0))
    {
      log_log(LOG_ERR,"%s:%d: unknown variable $%s",filename,lnr,list[i]);
      exit(EXIT_FAILURE);
    }
  }
  /* free memory */
  set_free(set);
  free(list);
}

static void cfg_read(const char *filename,struct ldap_config *cfg)
{
  FILE *fp;
  int lnr=0;
  char linebuf[MAX_LINE_LENGTH];
  char *line;
  char keyword[32];
  char token[64];
  int i;
#ifdef LDAP_OPT_X_TLS
  int rc;
  char *value;
#endif
  /* open config file */
  if ((fp=fopen(filename,"r"))==NULL)
  {
    log_log(LOG_ERR,"cannot open config file (%s): %s",filename,strerror(errno));
    exit(EXIT_FAILURE);
  }
  /* read file and parse lines */
  while (fgets(linebuf,sizeof(linebuf),fp)!=NULL)
  {
    lnr++;
    line=linebuf;
    /* strip newline */
    i=(int)strlen(line);
    if ((i<=0)||(line[i-1]!='\n'))
    {
      log_log(LOG_ERR,"%s:%d: line too long or last line missing newline",filename,lnr);
      exit(EXIT_FAILURE);
    }
    line[i-1]='\0';
    /* ignore comment lines */
    if (line[0]=='#')
      continue;
    /* strip trailing spaces */
    for (i--;(i>0)&&isspace(line[i-1]);i--)
      line[i-1]='\0';
    /* get keyword from line and ignore empty lines */
    if (get_token(&line,keyword,sizeof(keyword))==NULL)
      continue;
    /* runtime options */
    if (strcasecmp(keyword,"threads")==0)
    {
      get_int(filename,lnr,keyword,&line,&cfg->ldc_threads);
      get_eol(filename,lnr,keyword,&line);
    }
    else if (strcasecmp(keyword,"uid")==0)
    {
      get_uid(filename,lnr,keyword,&line,&cfg->ldc_uid,&cfg->ldc_gid,&cfg->ldc_uidname);
      get_eol(filename,lnr,keyword,&line);
    }
    else if (strcasecmp(keyword,"gid")==0)
    {
      get_gid(filename,lnr,keyword,&line,&cfg->ldc_gid);
      get_eol(filename,lnr,keyword,&line);
    }
    else if (strcasecmp(keyword,"ignorecase")==0)
    {
      get_boolean(filename,lnr,keyword,&line,&cfg->ldc_ignorecase);
      get_eol(filename,lnr,keyword,&line);
    }
    /* general connection options */
    else if (strcasecmp(keyword,"uri")==0)
    {
      check_argumentcount(filename,lnr,keyword,(line!=NULL)&&(*line!='\0'));
      while (get_token(&line,token,sizeof(token))!=NULL)
      {
        if (strcasecmp(token,"dns")==0)
        {
#ifdef HAVE_LDAP_DOMAIN2HOSTLIST
          add_uris_from_dns(filename,lnr,cfg,cfg_getdomainname(filename,lnr));
#else /* not HAVE_LDAP_DOMAIN2HOSTLIST */
          log_log(LOG_ERR,"%s:%d: value %s not supported on platform",filename,lnr,token);
          exit(EXIT_FAILURE);
#endif /* not HAVE_LDAP_DOMAIN2HOSTLIST */
        }
        else if (strncasecmp(token,"dns:",4)==0)
        {
#ifdef HAVE_LDAP_DOMAIN2HOSTLIST
          add_uris_from_dns(filename,lnr,cfg,strdup(token+sizeof("dns")));
#else /* not HAVE_LDAP_DOMAIN2HOSTLIST */
          log_log(LOG_ERR,"%s:%d: value %s not supported on platform",filename,lnr,token);
          exit(EXIT_FAILURE);
#endif /* not HAVE_LDAP_DOMAIN2HOSTLIST */
        }
        else
          add_uri(filename,lnr,cfg,token);
      }
    }
    else if (strcasecmp(keyword,"ldap_version")==0)
    {
      get_int(filename,lnr,keyword,&line,&cfg->ldc_version);
      get_eol(filename,lnr,keyword,&line);
    }
    else if (strcasecmp(keyword,"binddn")==0)
    {
      get_restdup(filename,lnr,keyword,&line,&cfg->ldc_binddn);
    }
    else if (strcasecmp(keyword,"bindpw")==0)
    {
      check_permissions(filename,keyword);
      get_restdup(filename,lnr,keyword,&line,&cfg->ldc_bindpw);
    }
    else if (strcasecmp(keyword,"rootpwmoddn")==0)
    {
      get_restdup(filename,lnr,keyword,&line,&cfg->ldc_rootpwmoddn);
    }
    else if (strcasecmp(keyword,"rootpwmodpw")==0)
    {
      check_permissions(filename,keyword);
      get_restdup(filename,lnr,keyword,&line,&cfg->ldc_rootpwmodpw);
    }
    /* SASL authentication options */
    else if (strcasecmp(keyword,"use_sasl")==0)
    {
      log_log(LOG_WARNING,"%s:%d: option %s is deprecated (and will be removed in an upcoming release), use sasl_mech instead",filename,lnr,keyword);
    }
    else if (strcasecmp(keyword,"sasl_mech")==0)
    {
      get_strdup(filename,lnr,keyword,&line,&cfg->ldc_sasl_mech);
      get_eol(filename,lnr,keyword,&line);
    }
    else if (strcasecmp(keyword,"sasl_realm")==0)
    {
      get_strdup(filename,lnr,keyword,&line,&cfg->ldc_sasl_realm);
      get_eol(filename,lnr,keyword,&line);
    }
    else if (strcasecmp(keyword,"sasl_authcid")==0)
    {
      get_strdup(filename,lnr,keyword,&line,&cfg->ldc_sasl_authcid);
      get_eol(filename,lnr,keyword,&line);
    }
    else if (strcasecmp(keyword,"sasl_authzid")==0)
    {
      get_strdup(filename,lnr,keyword,&line,&cfg->ldc_sasl_authzid);
      get_eol(filename,lnr,keyword,&line);
    }
    else if (strcasecmp(keyword,"sasl_secprops")==0)
    {
      get_strdup(filename,lnr,keyword,&line,&cfg->ldc_sasl_secprops);
      get_eol(filename,lnr,keyword,&line);
    }
#ifdef LDAP_OPT_X_SASL_NOCANON
    else if ( (strcasecmp(keyword,"sasl_canonicalize")==0) ||
              (strcasecmp(keyword,"sasl_canonicalise")==0) ||
              (strcasecmp(keyword,"ldap_sasl_canonicalize")==0) ||
              (strcasecmp(keyword,"sasl_canon")==0) )
    {
      get_boolean(filename,lnr,keyword,&line,&cfg->ldc_sasl_canonicalize);
      get_eol(filename,lnr,keyword,&line);
    }
    else if (strcasecmp(keyword,"sasl_nocanon")==0)
    {
      get_boolean(filename,lnr,keyword,&line,&cfg->ldc_sasl_canonicalize);
      cfg->ldc_sasl_canonicalize=!cfg->ldc_sasl_canonicalize;
      get_eol(filename,lnr,keyword,&line);
    }
#endif /* LDAP_OPT_X_SASL_NOCANON */
    /* Kerberos authentication options */
    else if (strcasecmp(keyword,"krb5_ccname")==0)
    {
      parse_krb5_ccname_statement(filename,lnr,keyword,line);
    }
    /* search/mapping options */
    else if (strcasecmp(keyword,"base")==0)
    {
      parse_base_statement(filename,lnr,keyword,line,cfg);
    }
    else if (strcasecmp(keyword,"scope")==0)
    {
      parse_scope_statement(filename,lnr,keyword,line,cfg);
    }
    else if (strcasecmp(keyword,"deref")==0)
    {
      check_argumentcount(filename,lnr,keyword,
          (get_token(&line,token,sizeof(token))!=NULL));
      if (strcasecmp(token,"never")==0)
        cfg->ldc_deref=LDAP_DEREF_NEVER;
      else if (strcasecmp(token,"searching")==0)
        cfg->ldc_deref=LDAP_DEREF_SEARCHING;
      else if (strcasecmp(token,"finding")==0)
        cfg->ldc_deref=LDAP_DEREF_FINDING;
      else if (strcasecmp(token,"always")==0)
        cfg->ldc_deref=LDAP_DEREF_ALWAYS;
      else
      {
        log_log(LOG_ERR,"%s:%d: wrong argument: '%s'",filename,lnr,token);
        exit(EXIT_FAILURE);
      }
      get_eol(filename,lnr,keyword,&line);
    }
    else if (strcasecmp(keyword,"referrals")==0)
    {
      get_boolean(filename,lnr,keyword,&line,&cfg->ldc_referrals);
      get_eol(filename,lnr,keyword,&line);
    }
    else if (strcasecmp(keyword,"filter")==0)
    {
      parse_filter_statement(filename,lnr,keyword,line);
    }
    else if (strcasecmp(keyword,"map")==0)
    {
      parse_map_statement(filename,lnr,keyword,line);
    }
    /* timing/reconnect options */
    else if (strcasecmp(keyword,"bind_timelimit")==0)
    {
      get_int(filename,lnr,keyword,&line,&cfg->ldc_bind_timelimit);
      get_eol(filename,lnr,keyword,&line);
    }
    else if (strcasecmp(keyword,"timelimit")==0)
    {
      get_int(filename,lnr,keyword,&line,&cfg->ldc_timelimit);
      get_eol(filename,lnr,keyword,&line);
    }
    else if (strcasecmp(keyword,"idle_timelimit")==0)
    {
      get_int(filename,lnr,keyword,&line,&cfg->ldc_idle_timelimit);
      get_eol(filename,lnr,keyword,&line);
    }
    else if (strcasecmp(keyword,"reconnect_tries")==0)
      log_log(LOG_WARNING,"%s:%d: option %s has been removed and will be ignored",filename,lnr,keyword);
    else if (!strcasecmp(keyword,"reconnect_sleeptime"))
    {
      get_int(filename,lnr,keyword,&line,&cfg->ldc_reconnect_sleeptime);
      get_eol(filename,lnr,keyword,&line);
    }
    else if ( (strcasecmp(keyword,"reconnect_retrytime")==0) ||
              (strcasecmp(keyword,"reconnect_maxsleeptime")==0) )
    {
      if (strcasecmp(keyword,"reconnect_maxsleeptime")==0)
        log_log(LOG_WARNING,"%s:%d: option %s has been renamed to reconnect_retrytime",filename,lnr,keyword);
      get_int(filename,lnr,keyword,&line,&cfg->ldc_reconnect_retrytime);
      get_eol(filename,lnr,keyword,&line);
    }
#ifdef LDAP_OPT_X_TLS
    /* SSL/TLS options */
    else if (strcasecmp(keyword,"ssl")==0)
    {
      check_argumentcount(filename,lnr,keyword,
          (get_token(&line,token,sizeof(token))!=NULL));
      if ( (strcasecmp(token,"start_tls")==0) ||
           (strcasecmp(token,"starttls")==0) )
        cfg->ldc_ssl_on=SSL_START_TLS;
      else if (parse_boolean(filename,lnr,token))
        cfg->ldc_ssl_on=SSL_LDAPS;
      get_eol(filename,lnr,keyword,&line);
    }
    else if ( (strcasecmp(keyword,"tls_reqcert")==0) ||
              (strcasecmp(keyword,"tls_checkpeer")==0) )
    {
      if (strcasecmp(keyword,"tls_checkpeer")==0)
        log_log(LOG_WARNING,"%s:%d: option %s is deprecated (and will be removed in an upcoming release), use tls_reqcert instead",filename,lnr,keyword);
      get_reqcert(filename,lnr,keyword,&line,&i);
      get_eol(filename,lnr,keyword,&line);
      log_log(LOG_DEBUG,"ldap_set_option(LDAP_OPT_X_TLS_REQUIRE_CERT,%d)",i);
      LDAP_SET_OPTION(NULL,LDAP_OPT_X_TLS_REQUIRE_CERT,&i);
    }
    else if (strcasecmp(keyword,"tls_cacertdir")==0)
    {
      get_strdup(filename,lnr,keyword,&line,&value);
      get_eol(filename,lnr,keyword,&line);
      /* TODO: check that the path is valid */
      log_log(LOG_DEBUG,"ldap_set_option(LDAP_OPT_X_TLS_CACERTDIR,\"%s\")",value);
      LDAP_SET_OPTION(NULL,LDAP_OPT_X_TLS_CACERTDIR,value);
      free(value);
    }
    else if ( (strcasecmp(keyword,"tls_cacertfile")==0) ||
              (strcasecmp(keyword,"tls_cacert")==0) )
    {
      get_strdup(filename,lnr,keyword,&line,&value);
      get_eol(filename,lnr,keyword,&line);
      /* TODO: check that the path is valid */
      log_log(LOG_DEBUG,"ldap_set_option(LDAP_OPT_X_TLS_CACERTFILE,\"%s\")",value);
      LDAP_SET_OPTION(NULL,LDAP_OPT_X_TLS_CACERTFILE,value);
      free(value);
    }
    else if (strcasecmp(keyword,"tls_randfile")==0)
    {
      get_strdup(filename,lnr,keyword,&line,&value);
      get_eol(filename,lnr,keyword,&line);
      /* TODO: check that the path is valid */
      log_log(LOG_DEBUG,"ldap_set_option(LDAP_OPT_X_TLS_RANDOM_FILE,\"%s\")",value);
      LDAP_SET_OPTION(NULL,LDAP_OPT_X_TLS_RANDOM_FILE,value);
      free(value);
    }
    else if (strcasecmp(keyword,"tls_ciphers")==0)
    {
      get_restdup(filename,lnr,keyword,&line,&value);
      log_log(LOG_DEBUG,"ldap_set_option(LDAP_OPT_X_TLS_CIPHER_SUITE,\"%s\")",value);
      LDAP_SET_OPTION(NULL,LDAP_OPT_X_TLS_CIPHER_SUITE,value);
      free(value);
    }
    else if (strcasecmp(keyword,"tls_cert")==0)
    {
      get_strdup(filename,lnr,keyword,&line,&value);
      get_eol(filename,lnr,keyword,&line);
      /* TODO: check that the path is valid */
      log_log(LOG_DEBUG,"ldap_set_option(LDAP_OPT_X_TLS_CERTFILE,\"%s\")",value);
      LDAP_SET_OPTION(NULL,LDAP_OPT_X_TLS_CERTFILE,value);
      free(value);
    }
    else if (strcasecmp(keyword,"tls_key")==0)
    {
      get_strdup(filename,lnr,keyword,&line,&value);
      get_eol(filename,lnr,keyword,&line);
      /* TODO: check that the path is valid */
      log_log(LOG_DEBUG,"ldap_set_option(LDAP_OPT_X_TLS_KEYFILE,\"%s\")",value);
      LDAP_SET_OPTION(NULL,LDAP_OPT_X_TLS_KEYFILE,value);
      free(value);
    }
#endif /* LDAP_OPT_X_TLS */
    /* other options */
    else if (strcasecmp(keyword,"restart")==0)
    {
      log_log(LOG_WARNING,"%s:%d: option %s is currently untested (and may be removed in an upcoming release)",filename,lnr,keyword);
      get_boolean(filename,lnr,keyword,&line,&cfg->ldc_restart);
      get_eol(filename,lnr,keyword,&line);
    }
    else if (strcasecmp(keyword,"pagesize")==0)
    {
      get_int(filename,lnr,keyword,&line,&cfg->ldc_pagesize);
      get_eol(filename,lnr,keyword,&line);
    }
    else if (strcasecmp(keyword,"nss_initgroups_ignoreusers")==0)
    {
      parse_nss_initgroups_ignoreusers_statement(filename,lnr,keyword,line,cfg);
    }
    else if (strcasecmp(keyword,"pam_authz_search")==0)
    {
      parse_pam_authz_search_statement(filename,lnr,keyword,line,cfg);
    }
    else if (strcasecmp(keyword,"nss_min_uid")==0)
    {
      get_int(filename,lnr,keyword,&line,&i);
      cfg->ldc_nss_min_uid=i;
      get_eol(filename,lnr,keyword,&line);
    }
    else if (strcasecmp(keyword,"validnames")==0)
    {
      parse_validnames_statement(filename,lnr,keyword,line,cfg);
    }
    else if (strcasecmp(keyword,"pam_password_prohibit_message")==0)
    {
      parse_pam_password_prohibit_message_statement(filename,lnr,keyword,line,cfg);
    }
#ifdef ENABLE_CONFIGFILE_CHECKING
    /* fallthrough */
    else
    {
      log_log(LOG_ERR,"%s:%d: unknown keyword: '%s'",filename,lnr,keyword);
      exit(EXIT_FAILURE);
    }
#endif
  }
  /* we're done reading file, close */
  fclose(fp);
}

#ifdef NSLCD_BINDPW_PATH
static void bindpw_read(const char *filename,struct ldap_config *cfg)
{
  FILE *fp;
  char linebuf[MAX_LINE_LENGTH];
  int i;
  /* open config file */
  errno=0;
  if ((fp=fopen(filename,"r"))==NULL)
  {
    if (errno==ENOENT)
    {
      log_log(LOG_DEBUG,"no bindpw file (%s)",filename);
      return; /* ignore */
    }
    else
    {
      log_log(LOG_ERR,"cannot open bindpw file (%s): %s",filename,strerror(errno));
      exit(EXIT_FAILURE);
    }
  }
  /* check permissions */
  check_permissions(filename,NULL);
  /* read the first line */
  if (fgets(linebuf,sizeof(linebuf),fp)==NULL)
  {
    log_log(LOG_ERR,"%s: error reading first line",filename);
    exit(EXIT_FAILURE);
  }
  /* chop the last char off and save the rest as bindpw */
  i=(int)strlen(linebuf);
  if ((i<=0)||(linebuf[i-1]!='\n'))
  {
    log_log(LOG_ERR,"%s:1: line too long or missing newline",filename);
    exit(EXIT_FAILURE);
  }
  linebuf[i-1]='\0';
  if (strlen(linebuf)==0)
  {
    log_log(LOG_ERR,"%s:1: the password is empty",filename);
    exit(EXIT_FAILURE);
  }
  cfg->ldc_bindpw=strdup(linebuf);
  /* check if there is no more data in the file */
  if (fgets(linebuf,sizeof(linebuf),fp)!=NULL)
  {
    log_log(LOG_ERR,"%s:2: there is more than one line in the bindpw file",filename);
    exit(EXIT_FAILURE);
  }
  fclose(fp);
}
#endif /* NSLCD_BINDPW_PATH */

/* This function tries to get the LDAP search base from the LDAP server.
   Note that this returns a string that has been allocated with strdup().
   For this to work the myldap module needs enough configuration information
   to make an LDAP connection. */
static MUST_USE char *get_base_from_rootdse(void)
{
  MYLDAP_SESSION *session;
  MYLDAP_SEARCH *search;
  MYLDAP_ENTRY *entry;
  const char *attrs[] = { "+", NULL };
  int i;
  int rc;
  const char **values;
  char *base=NULL;
  /* initialize session */
  session=myldap_create_session();
  assert(session!=NULL);
  /* perform search */
  search=myldap_search(session,"",LDAP_SCOPE_BASE,"(objectClass=*)",attrs,NULL);
  if (search==NULL)
  {
    myldap_session_close(session);
    return NULL;
  }
  /* go over results */
  for (i=0;(entry=myldap_get_entry(search,&rc))!=NULL;i++)
  {
    /* get defaultNamingContext */
    values=myldap_get_values(entry,"defaultNamingContext");
    if ((values!=NULL)&&(values[0]!=NULL))
    {
      base=xstrdup(values[0]);
      log_log(LOG_DEBUG,"get_basedn_from_rootdse(): found attribute defaultNamingContext with value %s",values[0]);
      break;
    }
    /* get namingContexts */
    values=myldap_get_values(entry,"namingContexts");
    if ((values!=NULL)&&(values[0]!=NULL))
    {
      base=xstrdup(values[0]);
      log_log(LOG_DEBUG,"get_basedn_from_rootdse(): found attribute namingContexts with value %s",values[0]);
      break;
    }
  }
  /* clean up */
  myldap_session_close(session);
  return base;
}

void cfg_init(const char *fname)
{
#ifdef LDAP_OPT_X_TLS
  int i;
#endif /* LDAP_OPT_X_TLS */
  /* check if we were called before */
  if (nslcd_cfg!=NULL)
  {
    log_log(LOG_CRIT,"cfg_init() may only be called once");
    exit(EXIT_FAILURE);
  }
  /* allocate the memory (this memory is not freed anywhere) */
  nslcd_cfg=(struct ldap_config *)malloc(sizeof(struct ldap_config));
  if (nslcd_cfg==NULL)
  {
    log_log(LOG_CRIT,"malloc() failed to allocate memory");
    exit(EXIT_FAILURE);
  }
  /* clear configuration */
  cfg_defaults(nslcd_cfg);
  /* read configfile */
  cfg_read(fname,nslcd_cfg);
#ifdef NSLCD_BINDPW_PATH
  bindpw_read(NSLCD_BINDPW_PATH,nslcd_cfg);
#endif /* NSLCD_BINDPW_PATH */
  /* do some sanity checks */
  if (nslcd_cfg->ldc_uris[0].uri==NULL)
  {
    log_log(LOG_ERR,"no URIs defined in config");
    exit(EXIT_FAILURE);
  }
  /* if ssl is on each URI should start with ldaps */
#ifdef LDAP_OPT_X_TLS
  if (nslcd_cfg->ldc_ssl_on==SSL_LDAPS)
  {
    for (i=0;nslcd_cfg->ldc_uris[i].uri!=NULL;i++)
    {
      if (strncasecmp(nslcd_cfg->ldc_uris[i].uri,"ldaps://",8)!=0)
        log_log(LOG_WARNING,"%s doesn't start with ldaps:// and \"ssl on\" is specified",
                            nslcd_cfg->ldc_uris[i].uri);
    }
  }
  /* TODO: check that if some tls options are set the ssl option should be set to on (just warn) */
#endif /* LDAP_OPT_X_TLS */
  /* if basedn is not yet set,  get if from the rootDSE */
  if (nslcd_cfg->ldc_bases[0]==NULL)
    nslcd_cfg->ldc_bases[0]=get_base_from_rootdse();
  /* TODO: handle the case gracefully when no LDAP server is available yet */
  /* see if we have a valid basedn */
  if ((nslcd_cfg->ldc_bases[0]==NULL)||(nslcd_cfg->ldc_bases[0][0]=='\0'))
  {
    log_log(LOG_ERR,"no base defined in config and couldn't get one from server");
    exit(EXIT_FAILURE);
  }
  /* initialise all database modules */
  alias_init();
  ether_init();
  group_init();
  host_init();
  netgroup_init();
  network_init();
  passwd_init();
  protocol_init();
  rpc_init();
  service_init();
  shadow_init();
}