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
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
|
2021-11-19 Arthur de Jong <arthur@arthurdejong.org>
* [6e7e878] man/nslcd.conf.5.xml, nslcd/cfg.c: Support DNSLDAPS
in uri
This supports both `uri DNSLDAPS` and `uri DNSLDAPS:some.domain`
variants alongside the pre-existing `uri DNS` that was already
supported generating ldaps URIs for all SRV records found.
2021-11-15 Arthur de Jong <arthur@arthurdejong.org>
* [70819ae] configure.ac, tests/common.h: Fix internal assertion
function detection on Solaris
2021-11-15 Arthur de Jong <arthur@arthurdejong.org>
* [7b2a7fe] INSTALL, ar-lib, compile, depcomp, missing, py-compile,
test-driver: Update files from latest automake
2021-11-14 Arthur de Jong <arthur@arthurdejong.org>
* [9edf95c] tests/test.ldif, tests/test_ldapcmds.sh,
tests/test_nsscmds.sh: Do not use user arthur in tests
This makes it more complicated to run the tests on an environment
where a local user arthur exists.
2021-11-14 Arthur de Jong <arthur@arthurdejong.org>
* [2862447] pynslcd/mypidfile.py: Fix running pynslcd without
uid option
Fixes 65695aa
2021-06-04 Ryan Tandy <ryan@nardis.ca>
* [15f67be] tests/config.ldif, tests/setup_slapd.sh: Support
running tests with OpenLDAP 2.5
- Change database backend to LMDB - Load external ppolicy schema
conditionally
2021-11-03 Arthur de Jong <arthur@arthurdejong.org>
* [4c46eef] .github/workflows/test.yml: Configure CodeQL code
scanning
2021-11-01 Arthur de Jong <arthur@arthurdejong.org>
* [906035b] man/nslcd.conf.5.xml, nslcd/cfg.c, tests/test_cfg.c:
Support an empty search base
This allows putting `base ""` in nslcd.conf to specify an empty
search base.
Note that the LDAP server needs to support this. With slapd this
requires setting up an olcDefaultSearchBase attribute in the
olcFrontendConfig object under cn=config or have the database
have an empty suffix.
Closes https://github.com/arthurdejong/nss-pam-ldapd/issues/50
2021-10-17 Arthur de Jong <arthur@arthurdejong.org>
* [7d81616] common/expr.c, tests/test_expr.c: Support minus
character in attribute expressions
This requires the attribute name is contained within a ${var-name}
expression.
2021-05-25 Arthur de Jong <arthur@arthurdejong.org>
* [6d5a2eb] nslcd/myldap.c: Retry connecting to the first URI
after idle_timelimit
This ensures that a connection to the first URI listed in the
config file will be re-established once the connection is closed
cleanly after the idle time.
This ensures that the listed URIs are handled more in a
primary/fallback manner if an idle time is configured.
Closes https://github.com/arthurdejong/nss-pam-ldapd/issues/46
2021-05-26 Arthur de Jong <arthur@arthurdejong.org>
* [5226a6f] .github/workflows/test.yml, .travis.yml,
tests/setup_slapd.sh, tests/test_nsscmds.sh: Replace Travis with
GitHub actions
This includes a few tweaks to the test scripts to make debugging
easier and to avoid issues on Github action runners.
2021-01-23 Arthur de Jong <arthur@arthurdejong.org>
* [d9710a2] man/nslcd.conf.5.xml, nslcd/cfg.c: Add tls_reqsan to
check certificate SAN
This option is passed to the LDAP library if it is supported.
2021-01-23 Arthur de Jong <arthur@arthurdejong.org>
* [026f08c] man/nslcd.conf.5.xml, nslcd/cfg.c: Add tls_crlfile to
check local CRL file
This option is passed to the LDAP library if it is supported.
2021-01-18 sebastienblavier
<72022031+sebastienblavier@users.noreply.github.com>
* [78c00f1] man/nslcd.conf.5.xml, nslcd.conf, nslcd/cfg.c: Add
tls_crlcheck to check Certificate Revocation List
This option is passed to the LDAP library if it is supported.
Closes https://github.com/arthurdejong/nss-pam-ldapd/pull/41
2021-01-17 Arthur de Jong <arthur@arthurdejong.org>
* [d55bdb2] Makefile.am: Use the provided Python for `make distcheck`
This ensures that if a Python interpreter was previously
supplied to configure it is also used for subsequent calls to
run a distribution check.
2021-01-17 Arthur de Jong <arthur@arthurdejong.org>
* [b7b812f] ar-lib, compile, depcomp, install-sh, missing,
mkinstalldirs, py-compile, test-driver: Update files from
latest automake
2020-09-11 Arthur de Jong <arthur@arthurdejong.org>
* [37a00e9] nslcd/myldap.c: Fix handling of the pam_authc_ppolicy
option
Check the result of the BIND operation instead of that of the
ldap_result() call when pam_authc_ppolicy is set to "no".
This could have resulted in successful authentication if the BIND
operation to the LDAP server timed out and pam_authc_ppolicy was
set to "no" but should not result in successful authentication
otherwise so it is unlikely that setting pam_authc_ppolicy to
"no" ever worked as intended. The timeout also would have to
occur on the BIND operation, not on setting up the connection.
Fixes 31cd2cf
2020-04-19 Arthur de Jong <arthur@arthurdejong.org>
* [18740fb] README: Fix typo
Thanks Filip Dvorak
See https://bugzilla.redhat.com/show_bug.cgi?id=1825240
2020-02-10 Arthur de Jong <arthur@arthurdejong.org>
* [b335518] man/nslcd.conf.5.xml: Fix typo in manual page
Thanks Benedict Reuschling for pointing this out.
Closes https://github.com/arthurdejong/nss-pam-ldapd/issues/39
Fixes b93838d
2019-11-11 Arthur de Jong <arthur@arthurdejong.org>
* [548efe5] nslcd/myldap.c: Log the correct timeout value
This fixes logging of the LDAP_OPT_TIMEOUT,
LDAP_OPT_NETWORK_TIMEOUT and LDAP_X_OPT_CONNECT_TIMEOUT options
to actually log the value of the bind_timelimit option instead
of the timelimit option.
2019-10-13 Arthur de Jong <arthur@arthurdejong.org>
* [fea0f5e] pynslcd/cfg.py, pynslcd/pam.py: Add pam_authc_ppolicy
support in pynslcd
See https://bugs.debian.org/900253
2019-10-13 Arthur de Jong <arthur@arthurdejong.org>
* [1025d5d] utils/chsh.py, utils/shells.py: Fix Python 3
compatibility in chsh.ldap
2019-10-06 Arthur de Jong <arthur@arthurdejong.org>
* [c4daf27] AUTHORS, ChangeLog, NEWS, configure.ac,
man/chsh.ldap.1.xml, man/getent.ldap.1.xml, man/nslcd.8.xml,
man/nslcd.conf.5.xml, man/pam_ldap.8.xml, man/pynslcd.8.xml,
nslcd/nslcd.c, utils/cmdline.py: Get files ready for 0.9.11 release
2019-10-06 Arthur de Jong <arthur@arthurdejong.org>
* [69922e3] tests/test_doctest.sh: Fix Python interpreter detection
in tests
Fixes 644bc62
2019-10-06 Arthur de Jong <arthur@arthurdejong.org>
* [62522b9] tests/test_nsscmds.sh: Portability improvements to
test suite
Some test systems have more local users and some systems prefer
IPv4 addresses over IPv6 addresses.
2019-09-17 Arthur de Jong <arthur@arthurdejong.org>
* [a8f4ed8] NEWS, common/expr.c, common/nslcd-prot.c,
common/nslcd-prot.h, common/tio.c, compat/attrs.h, compat/ether.c,
compat/getopt_long.c, compat/getopt_long.h, compat/getpeercred.h,
compat/nss_compat.h, configure.ac, man/nslcd.conf.5.xml,
nslcd.h, nslcd/attmap.h, nslcd/common.h, nslcd/daemonize.h,
nslcd/invalidator.c, nslcd/myldap.c, nslcd/myldap.h, nslcd/pam.c,
nslcd/passwd.c, nss/common.h, nss/hosts.c, nss/prototypes.h,
pam/common.h, tests/common.h, tests/test_pynslcd_cache.py,
tests/test_tio.c, utils/getent.py: Various spelling fixes
2019-09-10 Arthur de Jong <arthur@arthurdejong.org>
* [644bc62] .travis.yml, tests/test_doctest.sh: Fix Python
interpreter detection
Apparently some environments provide certain Python executables
which are not working Python interpreters.
2019-09-08 Arthur de Jong <arthur@arthurdejong.org>
* [768c4be] .gitignore, Makefile.am: Remove confinc.out which is
left behind by aclocal.m4
2019-09-08 Arthur de Jong <arthur@arthurdejong.org>
* [0252b05] pynslcd/shadow.py: Correctly validate shadow requests
and responses
2019-09-08 Arthur de Jong <arthur@arthurdejong.org>
* [cd887ef] pynslcd/Makefile.am, utils/Makefile.am: Update Python
interpreter in installed scripts
Ensure that the Python interpreter that is passed to configure
ends up in the shebang of the Python scripts.
This allows one to pass PYTHON=python3 to configure to install
the scripts using the Python 3 interpreter.
2019-09-07 Arthur de Jong <arthur@arthurdejong.org>
* [d717795] .gitignore, pynslcd/alias.py,
pynslcd/attmap.py, pynslcd/cache.py, pynslcd/cfg.py,
pynslcd/common.py, pynslcd/ether.py, pynslcd/expr.py,
pynslcd/group.py, pynslcd/host.py, pynslcd/invalidator.py,
pynslcd/mypidfile.py, pynslcd/netgroup.py, pynslcd/network.py,
pynslcd/pam.py, pynslcd/passwd.py, pynslcd/protocol.py,
pynslcd/pynslcd.py, pynslcd/rpc.py, pynslcd/search.py,
pynslcd/service.py, pynslcd/shadow.py, pynslcd/tio.py,
tests/Makefile.am, tests/flake8.ini, tests/test_flake8.sh,
tests/test_pynslcd_cache.py, utils/chsh.py, utils/getent.py,
utils/nslcd.py, utils/users.py: Improve Python code style
This also adds a flake8 test that checks code style. Note that
this test is not run by default because it requires network
access to create the virtualenv with the test software.
2019-09-02 Arthur de Jong <arthur@arthurdejong.org>
* [221ce5a] configure.ac, pynslcd/Makefile.am, pynslcd/attmap.py,
pynslcd/cache.py, pynslcd/cfg.py, pynslcd/common.py,
pynslcd/expr.py, pynslcd/invalidator.py, pynslcd/mypidfile.py,
pynslcd/pam.py, pynslcd/pynslcd.py, pynslcd/search.py,
pynslcd/tio.py, pynslcd/usermod.py, tests/Makefile.am,
tests/test_doctest.sh, tests/test_ldapcmds.sh,
tests/test_pycompile.sh, tests/test_pylint.sh,
tests/test_pynslcd_cache.py, utils/Makefile.am, utils/getent.py,
utils/nslcd.py: Add Python 3 support
This ensures that both pynslcd and the command-line utilities
work with Python3 as interpreter and runs some tests with all
installed Python interpreters.
This drops support for Python 2.6 and extends 5a84be2 to perform
more testing with Python 3.
2018-09-08 Arthur de Jong <arthur@arthurdejong.org>
* [06ee886] nslcd/nslcd.c: Avoid logging unknown socket peer
information
This avoids logging the client PID when the underlying socker
layer cannot provide the relevant information.
2018-09-05 Mizunashi Mana <mizunashi-mana@noreply.git>
* [bfcf002] utils/shells.py: Fix crash in chsh.ldap
Specify result type of getusershell.
Closes https://github.com/arthurdejong/nss-pam-ldapd/pull/31
2018-09-01 Arthur de Jong <arthur@arthurdejong.org>
* [bfe0696] AUTHORS, ChangeLog, NEWS, configure.ac,
man/chsh.ldap.1.xml, man/getent.ldap.1.xml, man/nslcd.8.xml,
man/nslcd.conf.5.xml, man/pam_ldap.8.xml, man/pynslcd.8.xml:
Get files ready for 0.9.10 release
2018-09-01 Arthur de Jong <arthur@arthurdejong.org>
* [acc450e] ar-lib, compile, config.guess, config.sub, depcomp,
install-sh, missing, mkinstalldirs, py-compile, test-driver:
Update files from latest automake
2018-02-06 HWLin <hwlin1414@gmail.com>
* [d5a25cf] configure.ac, nss/bsdnss.c: Add FreeBSD netgroup support
Closes: https://github.com/arthurdejong/nss-pam-ldapd/pull/29
2018-08-06 Arthur de Jong <arthur@arthurdejong.org>
* [d8b1640] nslcd/myldap.c, nslcd/pam.c: Make password expiry
messages correct and consistent
Thanks to Têko Mihinto. See
https://bugzilla.redhat.com/show_bug.cgi?id=1612543
2018-07-21 Arthur de Jong <arthur@arthurdejong.org>
* [84676ab] man/nslcd.conf.5.xml, nslcd/cfg.c, nslcd/pam.c: Add
domain variable for use in pam_authz_search
This adds a domain variable (if it can be determined on the
system) that can be used in pam_authz_search and pam_authc_search
filters to build search filters that search on the domain name
(the FQDN without the starting host name).
Closes https://github.com/arthurdejong/nss-pam-ldapd/issues/8
2018-07-21 Arthur de Jong <arthur@arthurdejong.org>
* [9fbcdd1] .travis.yml, tests/debian-pam-config, tests/testenv.sh:
Add a Travis configuration file
This ensures that the integration tests can be successfully run. It
configures a slapd instance with the test database, configures
the system to use LDAP authentication and runs the tests.
2018-07-21 Arthur de Jong <arthur@arthurdejong.org>
* [2a468fd] nslcd/log.c: Allow logging longer lines
This increases the buffer that holds log messages so longer
messages can be logged.
Closes https://github.com/arthurdejong/nss-pam-ldapd/issues/26
2018-07-21 Arthur de Jong <arthur@arthurdejong.org>
* [3760b43] nslcd/nslcd.c: Create /var/run/nslcd/socket after
dropping privileges
This is needed to avoid a problem where a call to initgroups()
can result in NSS lookups. If nscd is configured the mechanism
to avoid loopback lookups using nss_ldap_enablelookups will not
work and cause for delays on start-up.
Note that this changes ownership of the socket to the user
running nslcd.
2018-02-18 Arthur de Jong <arthur@arthurdejong.org>
* [fe26b94] ChangeLog, NEWS, README, configure.ac,
man/chsh.ldap.1.xml, man/getent.ldap.1.xml, man/nslcd.8.xml,
man/nslcd.conf.5.xml, man/pam_ldap.8.xml, man/pynslcd.8.xml:
Get files ready for 0.9.9 release
2018-02-18 Arthur de Jong <arthur@arthurdejong.org>
* [382b6ea] INSTALL, ar-lib, config.guess, config.sub, depcomp,
py-compile: Update files from latest automake
2018-02-17 Arthur de Jong <arthur@arthurdejong.org>
* [e8a4705] tests/test_pylint.sh: Fix running pylint on distcheck
This sets PYTHONPATH so that both the source and build directories
are used to find constants.py.
2018-02-17 Arthur de Jong <arthur@arthurdejong.org>
* [9a50971] common/expr.c, compat/attrs.h: Mark case blocks without
break statement
This avoids a gcc warning in non-empty case blocks without a
break statement by explicitly marking those blocks.
2018-02-16 Arthur de Jong <arthur@arthurdejong.org>
* [c05e326] nslcd/cfg.c, nslcd/common.h: Increase size of hostname
buffer
This increases the host name buffer to support host names (that
include FQDNs) to 255 characters and removes the reliance on
HOST_NAME_MAX and _POSIX_HOST_NAME_MAX which may be smaller in
some situations.
Closes https://github.com/arthurdejong/nss-pam-ldapd/issues/22
2017-12-23 Arthur de Jong <arthur@arthurdejong.org>
* [9760dce] nslcd/cfg.c: Increase size of config file token
This increases the maximum size of tokens that are read from
the nslcd.conf configuration file to 256 characters. This was
a problem for some very long uri values.
Closes https://github.com/arthurdejong/nss-pam-ldapd/issues/21
2017-10-13 Arthur de Jong <arthur@arthurdejong.org>
* [8f76d24] nslcd/cfg.c, tests/test_cfg.c: Support spaces in
attribute mapping expressions
2017-06-26 Arthur de Jong <arthur@arthurdejong.org>
* [47fd03b] AUTHORS, ChangeLog, NEWS, configure.ac,
man/chsh.ldap.1.xml, man/getent.ldap.1.xml, man/nslcd.8.xml,
man/nslcd.conf.5.xml, man/pam_ldap.8.xml, man/pynslcd.8.xml,
nslcd/nslcd.c, pynslcd/pynslcd.py, utils/cmdline.py: Get files
ready for 0.9.8 release
2017-06-25 Arthur de Jong <arthur@arthurdejong.org>
* [7920d85] tests/test_ldapcmds.sh, tests/test_nsscmds.sh: Ignore
password hashes in consistent manner
This changes the getent and getent.ldap tests to ignore password
hashes that may be present in shadow lookups in a consistent
manner.
This also adds minor compatibility improvements.
2017-06-25 Arthur de Jong <arthur@arthurdejong.org>
* [65695aa] pynslcd/cfg.py, pynslcd/mypidfile.py, pynslcd/pynslcd.py:
Create pidfile directory in pynslcd
This ensures that /var/run/nslcd is created (when it does not
exist) when starting pynslcd.
2017-06-25 Arthur de Jong <arthur@arthurdejong.org>
* [419aab2] pynslcd/cfg.py, pynslcd/group.py, pynslcd/passwd.py:
Add nss_uid_offset and nss_gid_offset to pynslcd
2017-03-20 Seth Wright <seth@crosse.org>
* [5103173] man/nslcd.conf.5.xml, nslcd/cfg.c, nslcd/cfg.h,
nslcd/group.c, nslcd/passwd.c: Add the ability to offset UID
and GID numbers
2017-06-18 Arthur de Jong <arthur@arthurdejong.org>
* [fee74d9] tests/Makefile.am, tests/test_ldapcmds.sh: Portability
improvements to test_ldapcmds.sh
This fixes an issue with the export statement in POSIX shell
scripts, ensures that the commands in the output match those
in the script, strips password hashes for shadow lookups (for
systems without PAM where these are exposed) and only runs the
tests if we enabled the utils.
Fixes 246a1f3.
2017-06-17 Arthur de Jong <arthur@arthurdejong.org>
* [5126b26] nslcd/ether.c: Use uint8_t instead of u_int8_t
The former seems to be available on more platforms than the latter.
Fixes be26510.
2017-06-17 Arthur de Jong <arthur@arthurdejong.org>
* [fe3772f] compat/pam_compat.h: Fix HAVE_DECL_PAM_ERROR usage
The macro is supposed to be defined to 0 (instead of undefined)
if pam_info() and pam_error() are not found.
Fixes 3d5ab89.
2017-06-17 Arthur de Jong <arthur@arthurdejong.org>
* [ca62f59] nslcd/shadow.c: Also filter shadow entries by validnames
2017-06-17 Arthur de Jong <arthur@arthurdejong.org>
* [e68b85a] nslcd/passwd.c, nslcd/shadow.c: Fix and clarify a
few comments
2017-06-16 Arthur de Jong <arthur@arthurdejong.org>
* [3d5ab89] compat/pam_compat.h, configure.ac: Fix pam_info()
and pam_error() replacement
On FreeBSD these are functions while on Linux they are macros
causing them to be incorrectly replaced on FreeBSD. This resulted
in a crash of the PAM module when e.g. presenting messages about
password expiry.
2017-06-16 Arthur de Jong <arthur@arthurdejong.org>
* [b5d1dd2] tests/Makefile.am: Clean log from test_pamcmds.expect
This removes test_pamcmds.log that is generated by
test_pamcmds.expect when running the test suite. This avoids an
error in the distcheck target.
2017-06-16 Arthur de Jong <arthur@arthurdejong.org>
* [246a1f3] tests/test_ldapcmds.sh: Fix running test_ldapcmds.sh
during distcheck
This ensures that Python can find both getent.py (from source
directory) and constants.py (from build directory) when running
the tests from the distcheck target.
This also makes the script more similar to test_nsscmds.sh.
Fixes 9c803d7.
2017-06-15 Arthur de Jong <arthur@arthurdejong.org>
* [43862ba] : Add pam_authc_search option
This option can be used to configure the search operation that
should be performed after authentication.
2017-06-15 Arthur de Jong <arthur@arthurdejong.org>
* [5141b09] man/nslcd.conf.5.xml, nslcd/pam.c: Allow skipping
post-authentication search altogether
2017-06-14 Arthur de Jong <arthur@arthurdejong.org>
* [0cafb08] nslcd/myldap.c, nslcd/myldap.h, nslcd/pam.c,
nslcd/usermod.c: Implement myldap_bind() function
This function integrates the myldap_set_credentials() and
myldap_get_policy_response() and performs the bind operation
witout actually performing a search.
The function performs a "fake" search that returns after performing
the LDAP BIND operation.
This replaces a number of dummy search operations that were there
to ensure that the connection was open. This allows us to skip
the search operation after authentication.
2017-06-14 Arthur de Jong <arthur@arthurdejong.org>
* [9564dd0] nslcd/pam.c: Implement handling of pam_authc_search
option
This allows performing a different, configurable search from
the default BASE search after the BIND operation.
2017-06-14 Arthur de Jong <arthur@arthurdejong.org>
* [f72aaa2] man/nslcd.conf.5.xml: Document pam_authc_search option
2017-06-14 Arthur de Jong <arthur@arthurdejong.org>
* [5d11cb8] nslcd/cfg.c, nslcd/cfg.h, nslcd/pam.c: Add
pam_authc_search option parsing
2017-06-14 Arthur de Jong <arthur@arthurdejong.org>
* [bcc3a08] nslcd/pam.c, pynslcd/pam.py: Reorganise PAM search
var building functions
This moves the autzsearch_var_add(), autzsearch_vars_free(),
autzsearch_var_get() and do_autzsearches() functions to the top of
the file using more generic names and introduces search_vars_new()
in prepartion of other similar searches.
This also renames the remaining authzsearch functions to
authz_search to be consistent with the pam_authz_search option.
2017-06-13 Arthur de Jong <arthur@arthurdejong.org>
* [ebc0f76] README, configure.ac, tests/test.ldif: Switch to
HTTPS URLs
2017-06-13 Arthur de Jong <arthur@arthurdejong.org>
* [be26510] compat/ether.c, compat/ether.h, configure.ac,
nslcd/ether.c, pynslcd/ether.py: Query ethernet addresses in
compact and long format
This ensures that when querying the address 0:18:8a:54:1a:8b
both that format and 00:18:8a:54:1a:8b is searched for in LDAP.
This was triggerred by the fact that ether_ntoa() on FreeBSD
returns the long format while glibc uses the compact format.
Since we are no longer using the libc version of ether_ntoa() we
can also drop the compatibility implementation of ether_ntoa_r().
2017-06-07 Arthur de Jong <arthur@arthurdejong.org>
* [becc883] nslcd/passwd.c: Log entries and lookups failing
nss_min_uid
This logs (at debug level) any LDAP uidNumber attribute values
(or translated objectSid attribute values) that are lower than
nss_min_uid. It also logs getpwuid() requests for such uids.
2017-06-04 Arthur de Jong <arthur@arthurdejong.org>
* [5a84be2] utils/chsh.py, utils/cmdline.py, utils/getent.py,
utils/nslcd.py, utils/shells.py, utils/users.py: Make nslcd-utils
Python 3 compatible
This changes the getent.ldap and chsh.ldap commands to be
compatible with Python 2 and Python 3 with the same code.
This does switch to raw I/O because Python 3 does not support
bufferred I/O on sockets.
2017-06-04 Arthur de Jong <arthur@arthurdejong.org>
* [9c803d7] tests/Makefile.am, tests/test_ldapcmds.sh,
tests/test_nsscmds.sh, tests/testenv.sh: Add tests for getent.ldap
command
This more or less duplicates the tests from test_nsscmds.sh to
test_ldapcmds.sh with some modifications for the differences
in output.
This also extends the test_nsscmds.sh tests to handle the case
where shadow lookups do not go through LDAP.
2017-06-04 Arthur de Jong <arthur@arthurdejong.org>
* [a357131] utils/getent.py: Fix output of getent.ldap networks
Contrary to the hosts output the network name is listed first.
2017-06-03 Arthur de Jong <arthur@arthurdejong.org>
* [58c7a94] utils/getent.py: Fix IPv6 lookups in getent.ldap
2017-06-03 Arthur de Jong <arthur@arthurdejong.org>
* [5173e55] man/getent.ldap.1.xml, utils/getent.py: Accept multiple
key arguments to getent.ldap
This allows supplying multiple arguments to getent.ldap that
will each act as a search key for lookups, similar to what normal
getent allows.
2017-02-07 Arthur de Jong <arthur@arthurdejong.org>
* [53f797b] nslcd/nslcd.c: Exit with 0 when stopping nslcd
When receiving a signal this will result in nslcd returning with
a success exit code.
Thanks Stanislav Moravec for pointing this out.
2016-09-04 Arthur de Jong <arthur@arthurdejong.org>
* [c12cd14] nslcd/nslcd.c: Remove duplicate break statement
2016-09-04 Arthur de Jong <arthur@arthurdejong.org>
* [d8ad7b1] nslcd/myldap.c: Do not try all LDAP servers on failed
authentication
See https://bugs.launchpad.net/bugs/1618190
2016-08-30 Arthur de Jong <arthur@arthurdejong.org>
* [a3da150] utils/nslcd.py: Replace Python assertions with exceptions
The assertions can be optimised out when compiling the modules
with -O which would break the protocol handling. This ensures
that errors are properly handled even if optimisation is enabled.
Thanks Yu-Chun Huang for reporting this.
https://github.com/arthurdejong/nss-pam-ldapd/issues/14
2016-08-14 Arthur de Jong <arthur@arthurdejong.org>
* [c286bb5] AUTHORS, ChangeLog, NEWS, README, configure.ac,
man/chsh.ldap.1.xml, man/getent.ldap.1.xml, man/nslcd.8.xml,
man/nslcd.conf.5.xml, man/pam_ldap.8.xml, man/pynslcd.8.xml,
nslcd/nslcd.c, pynslcd/pynslcd.py, utils/cmdline.py: Get files
ready for 0.9.7 release
2016-08-14 Arthur de Jong <arthur@arthurdejong.org>
* [db9494e] tests/Makefile.am: Only run doctests when building
pynslcd
2016-08-14 Arthur de Jong <arthur@arthurdejong.org>
* [cb16e4c] nss/bsdnss.c: Avoid some warnings on FreeBSD
This adds casts to and from void * for the function pointers
that are passed around.
2016-07-27 Arthur de Jong <arthur@arthurdejong.org>
* [b7a0b23] ChangeLog, ChangeLog-2013, Makefile.am: Archive 2013
ChangeLog entries
2016-07-27 Arthur de Jong <arthur@arthurdejong.org>
* [e4df12c] config.guess, config.sub, install-sh: Update files
from latest automake
2016-07-27 Arthur de Jong <arthur@arthurdejong.org>
* [db8034a] man/Makefile.am, utils/Makefile.am, utils/getent.py:
Also use module-name in utilities and man pages
This ensures that getent.ldap, chsh.ldap and manual pages with
ldap in the name will be installed with the name as specified
with --with-module-name.
Note that the manual page content still describes the working
within nss-pam-ldapd and still mention the ldap name.
2016-06-04 Arthur de Jong <arthur@arthurdejong.org>
* [281b0ec] tests/test_doctest.sh: Ensure doctest also run in
distcheck
This fixes test_doctest.sh to also work when the build directory
is different from the source directory. This is needed because
constants.py is only available in the build directory.
2016-06-03 Arthur de Jong <arthur@arthurdejong.org>
* [a89eda7] nslcd/pam.c: Also honor ignorecase in PAM
This avoids changing the cannonical username to the value as
specified in LDAP when ignorecase is used.
See https://github.com/arthurdejong/nss-pam-ldapd/issues/12
2016-06-03 Arthur de Jong <arthur@arthurdejong.org>
* [7eb1d69] pynslcd/expr.py: Support ${var:offset:length} in pynslcd
2016-06-02 Arthur de Jong <arthur@arthurdejong.org>
* [c90a537] pynslcd/attmap.py: Fix pynslcd expression representation
The problem was that the ExpressionMapping string value did not
include the quotes which will cause problems when printing the
expression (e.g. when logging or dumping config, etc.).
2016-06-02 Arthur de Jong <arthur@arthurdejong.org>
* [fd61bb6] tests/Makefile.am, tests/test_doctest.sh: Add test
for running doctests
2016-05-30 Giovanni Mascellani <mascellani@poisson.phc.unipi.it>
* [2ba9560] common/expr.c, man/nslcd.conf.5.xml, tests/test_expr.c:
Support substituting expresions of type ${var:offset:length}
2016-05-30 Giovanni Mascellani <mascellani@poisson.phc.unipi.it>
* [3a4860c] man/nslcd.conf.5.xml: Fix small typo
2016-05-24 Arthur de Jong <arthur@arthurdejong.org>
* [917ded7] common/expr.c: Refactor out expression parsing to
functions
This moves the parsing of the various ${var...} expressions to
separate functions so they can be extended more easily.
2016-02-22 Arthur de Jong <arthur@arthurdejong.org>
* [4be9c59] pam/pam.c: Fix logic error
This could result in a free(NULL) call. This code path can
only be triggered if pam_ldap changes the logged-in username
(introduced in 6a74d8d).
Thanks 依云, see
https://github.com/arthurdejong/nss-pam-ldapd/issues/11
2016-01-30 Mathieu Baeumler <mathieu.baeumler@gmail.com>
* [985aec3] nslcd/myldap.c: Display human readable expiry message
Display a human readable message (days+hours, or hours+minutes,
or seconds) when the password expiring warning is issued.
2016-02-13 Arthur de Jong <arthur@arthurdejong.org>
* [b795f6c] nslcd/cfg.c: Fix nss_disable_enumeration configuration
This fixes a copy-paste bug where nss_disable_enumeration was
incorrectly handled. Fixes c0366d8.
Thanks Andrew W Elble for pointing this out.
2016-01-18 Arthur de Jong <arthur@arthurdejong.org>
* [525c996] tests/test.ldif, tests/test_nsscmds.sh: Add a few
IPv6 tests
This adds a few test hosts that have IPv6 addresses. This
ensures that we have an IPv6-only host and hosts which have
address values in different order in the ipHostNumber attribute
(although attribute order is probably not guaranteed).
2015-10-18 Mathieu Baeumler <mathieu.baeumler@gmail.com>
* [31cd2cf] man/nslcd.conf.5.xml, nslcd/cfg.c, nslcd/cfg.h,
nslcd/myldap.c: Add pam_authc_ppolicy option
This option allows completely disabling ppolicy handling.
2016-01-06 Arthur de Jong <arthur@arthurdejong.org>
* [117c9cb] nslcd/pam.c: Fix error handling on credential change
This fixes setting the correct LDAP error code and also fixes
formatting in 027df03.
2015-12-23 Vasilis Tsiligiannis <vasilis.tsiligiannis@nokia.com>
* [027df03] nslcd/pam.c: Fix updating of 'shadowLastChange'
attribute when chasing referrals
This fixes a bug where 'shadowLastChange' attribute cannot be
updated when chasing a referral. After a password is succesfully
changed, the credentials for binding should also be updated with
the new password for the session.
Signed-off-by: Vasilis Tsiligiannis
<vasilis.tsiligiannis@nokia.com>
2015-11-13 Arthur de Jong <arthur@arthurdejong.org>
* [fcea92d] nslcd/cfg.c: Correct file readability check
This uses access() instead of stat() to see if the file is
readable by the current process. This fixes f089e01.
2015-09-20 Arthur de Jong <arthur@arthurdejong.org>
* [c879485] nslcd/myldap.c: Fail-over and retry on more errors
Also try to fail over to another LDAP server on a larger number
of errors. Specifically errors that point to problems connecting
to the LDAP server.
2015-08-29 Arthur de Jong <arthur@arthurdejong.org>
* [3d09e28] nslcd/myldap.c: Open connection before do_try_search()
This is in preparation for splitting the BIND from the search
phase for authentication.
2015-08-27 Arthur de Jong <arthur@arthurdejong.org>
* [f089e01] nslcd/cfg.c: Loosen up file existence check
This changes the check (for configuration options that specify
file names) to just check that the specified path is readable
instead of ensisting that it points to a file.
This allows tls_randfile to point to /dev/urandom (a character
device) or a pipe. This fixes 6779a51.
This also applies the same check to the krb5_ccname option.
Thanks to Patrick McLean for pointing this out.
2015-08-14 Arthur de Jong <arthur@arthurdejong.org>
* [309f127] pam/pam.c: Have PAM module log messages to syslog
This logs informational messages that are presented to the user
tot syslog. This normally includes password expiry and grace
login information which may be useful to log.
2015-08-14 Arthur de Jong <arthur@arthurdejong.org>
* [263a443] nslcd/myldap.c: Simplify password policy message handling
This simplifies the check for overwriging pending password
expiry and grace logins warnigns and updates handling of the
LDAP_CONTROL_PWEXPIRING control to be consistent with that of
the expire value of LDAP_CONTROL_PASSWORDPOLICYRESPONSE.
This also corrects the function name, also logs empty password
policy responses in debug mode and documents the meaning of the
various password policy values.
2015-07-09 Mathieu Baeumler <mathieu.baeumler@gmail.com>
* [4302901] nslcd/myldap.c: Fix password policy expiration warnings
If a password expiration warning (pwdExpireWarning) is set in
slapd, and the password is about to expire, slapd sends the
timeBeforeExpiration value as part of the passwordPolicyResponse.
nslcd would incorrectly instruct the PAM module to require
immediate password change. This has been fixed for both
timeBeforeExpiration and graceLoginsRemaining.
2015-07-19 Arthur de Jong <arthur@arthurdejong.org>
* [89b471b] ar-lib, autogen.sh, compile, configure.ac, depcomp,
install-sh, missing, py-compile, test-driver: Update files from
automake 1.15
This also includes the m4 directory when invoking aclocal because
not all versions seem to handle AC_CONFIG_MACRO_DIR.
2015-07-19 Arthur de Jong <arthur@arthurdejong.org>
* [86a4618] m4/ax_tls.m4: Disable quoting in AX_TLS notfound case
This ensures that AS_IF does not generate an empty else clause
which will result in an invalid configure script.
2015-07-19 Arthur de Jong <arthur@arthurdejong.org>
* [6779a51] nslcd/cfg.c: Check file existence for configuration
options
This adds addition checks to the tls_cacertdir, tls_cacertfile,
tls_randfile, tls_cert and tls_key options to ensure that they
point to an existing file when parsing nslcd.conf.
2015-07-19 Arthur de Jong <arthur@arthurdejong.org>
* [a6c7c63] pynslcd/pynslcd.py: Work around bug in python-daemon
See https://bugs.debian.org/792871
2015-07-08 Arthur de Jong <arthur@arthurdejong.org>
* [c32e8c0] m4/ax_pthread.m4, m4/ax_tls.m4: Update macros from
autoconf-archive
2015-06-14 Arthur de Jong <arthur@arthurdejong.org>
* [d949bd4] AUTHORS, ChangeLog, NEWS, configure.ac,
man/chsh.ldap.1.xml, man/getent.ldap.1.xml, man/nslcd.8.xml,
man/nslcd.conf.5.xml, man/pam_ldap.8.xml, man/pynslcd.8.xml:
Get files ready for 0.9.6 release
2015-06-14 Arthur de Jong <arthur@arthurdejong.org>
* [4236dd6] Makefile.am: Correctly insert emtpy lines in ChangeLog
2015-06-13 Arthur de Jong <arthur@arthurdejong.org>
* [e916a2b] man/nslcd.conf.5.xml: Manual page improvements
2015-06-13 Arthur de Jong <arthur@arthurdejong.org>
* [9a7921f] nslcd/common.c, nslcd/common.h: Also fix signed integer
bug in binsid2id()
This should have been part of d217632.
2015-06-11 Geoffrey McRae <gnif@xbmc.org>
* [d217632] nslcd/common.c: Fixed signed 32bit overflow bug on
32bit systems
2015-05-23 Jed Liu <jed-nss-pam-ldapd-users@uma.litech.org>
* [3add5f0] nslcd/cfg.c: Allow configuration values longer than
63 characters
2015-03-06 Arthur de Jong <arthur@arthurdejong.org>
* [d58fba9] nss/netgroup.c: Provide innetgr function on Solaris
This implements a function in the Solaris version of the NSS module
to check if a specifc netgroup triplet is part of a netgroup.
This also avoids a compiler warning and includes improvements
and testing by Mark R Bannister.
2015-05-01 Andrew Elble <aweits@rit.edu>
* [c0366d8] man/nslcd.conf.5.xml, nslcd/cfg.c, nslcd/cfg.h,
nslcd/nslcd.c, pynslcd/cfg.py, pynslcd/group.py, pynslcd/passwd.py,
pynslcd/shadow.py: Implement disable_enumeration
If this option is present, functions which cause all user/group
entries to be loaded (getpwent(), getgrent()) from the directory
will not succeed in doing so. This can dramatically reduce
ldap server load in situations where there are a great number
of users and/or groups. Applications that depend on being able
to sequentially read all users and/or groups may fail to operate
correctly. This option is not recommended for most configurations.
2015-04-17 Arthur de Jong <arthur@arthurdejong.org>
* [96045d2] man/nslcd.conf.5.xml, nslcd/cfg.c, nslcd/cfg.h,
nslcd/group.c, pynslcd/cfg.py, pynslcd/group.py: Implement
nss_getgrent_skipmembers
This option allows skipping group member list retrieval to
improve performance with very large groups. This option results
in inconsistent group membership information being presented
that may confuse some applications.
2015-04-15 Arthur de Jong <arthur@arthurdejong.org>
* [530cc24] nslcd/daemonize.c, nslcd/nslcd.c: Avoid signal race
condition on start-up
This only restores the signal mask after signal handlers are in
place and the daemon has completely daemonised to avoid a race
condition in the start-up phase of nslcd where a signal could
be sent to nslcd causing it to quit or fail to write information
to the parent process.
2015-03-29 Arthur de Jong <arthur@arthurdejong.org>
* [16fd8c6] AUTHORS, ChangeLog, NEWS, README, configure.ac,
man/chsh.ldap.1.xml, man/getent.ldap.1.xml, man/nslcd.8.xml,
man/pam_ldap.8.xml, man/pynslcd.8.xml: Get files ready for
0.9.5 release
2015-03-11 Tim Rice <tim@multitalents.net>
* [ae08830] common/Makefile.am, compat/Makefile.am, configure.ac,
nss/Makefile.am, pam/Makefile.am: Use correct PIC arg for
non-GCC compilers
2015-03-22 Arthur de Jong <arthur@arthurdejong.org>
* [fdbca17] config.sub: Update files from latest automake
2015-03-22 Arthur de Jong <arthur@arthurdejong.org>
* [9f9a5c5] nss/networks.c: Fix for networks lookup under Solaris
This fixes a byte order issue when nscd is running.
2015-03-22 Arthur de Jong <arthur@arthurdejong.org>
* [52ea3f5] configure.ac: Add checks to configure
This adds tests for a function and type used in the code.
2015-03-22 Arthur de Jong <arthur@arthurdejong.org>
* [4ec1c08] nslcd/daemonize.c: ENODATA is missing on FreeBSD
FreeBSD doesn't have ENODATA so we use ENOATTR instead.
2015-03-22 Arthur de Jong <arthur@arthurdejong.org>
* [b2563b0] compat/nss_compat.h, configure.ac: Remove use of
irs-nss.h
This was a compatibility leftover from the nss_ldap days.
2015-03-21 Arthur de Jong <arthur@arthurdejong.org>
* [4c5a3c9] tests/test_clock.c: Prevent numer overflow in test_clock
2015-03-21 Arthur de Jong <arthur@arthurdejong.org>
* [0420232] nslcd/nslcd.c, nslcd/nsswitch.c, nss/Makefile.am,
tests/testenv.sh: Various small fixes when using --with-module-name
This updates the test framework to support --with-module-name,
ensures that exports.map is rebuilt when configure is re-ran,
fixes parsing of nsswitch.conf (to determine what to return for
passwd lookups) and fixes the check for _nss_ldap_version.
2015-03-21 Arthur de Jong <arthur@arthurdejong.org>
* [788475f] nss/common.h: Also support platforms without TLS
This disables the use of thread-local storage in the NSS module
when it is not available in libc. This results in the get*ent()
functions not being thread-safe. However, on most platforms they
are not expected to be thread-safe anyway.
2015-03-20 Dalibor Pospíšil <dapospis@redhat.com>
* [95d621e] man/nslcd.conf.5.xml: Document that multiple URIs can
be specified
Update nslcd.conf man page that multiple URIs can be set by
using more uri lines or more URIs defined on one uri line.
https://bugzilla.redhat.com/show_bug.cgi?id=1204195
2015-03-11 Patrick McLean <chutzpah@gentoo.org>
* [fa6affc] common/tio.c, nslcd/attmap.c, nslcd/cfg.c,
nslcd/myldap.c: Fix formatting of size_t values
In several places the code used a %d format to print a size_t
variable. On amd64 at least size_t is an unsigned long, so use
%lu instead.
An alternative would be to use %ud for size_t and %zd fo ssize_t
but not all platforms seem to support that formatter.
2015-03-11 Patrick McLean <chutzpah@gentoo.org>
* [246aba5] nslcd/myldap.c, pam/pam.c: Avoid comparison of static
array to null pointer
There are several places where a static length array in a struct
is compared to a null pointer. These comparisons will always
be false, since an array in a struct is not actually a pointer,
so they can be removed.
2015-03-10 Patrick McLean <chutzpah@gentoo.org>
* [d0f896a] AUTHORS, nslcd/nslcd.c: Don't let the oom killer
kill nslcd
Adjust the Linux OOM (Out-Of-Memory) killer score by -1000 for
nslcd so that it should not be killed.
2015-01-19 Arthur de Jong <arthur@arthurdejong.org>
* [ee82d2f] .gitignore, configure.ac, nslcd/nslcd.c,
nss/Makefile.am, nss/aliases.c, nss/bsdnss.c, nss/common.c,
nss/common.h, nss/ethers.c, nss/group.c, nss/hosts.c,
nss/netgroup.c, nss/networks.c, nss/passwd.c, nss/protocols.c,
nss/prototypes.h, nss/rpc.c, nss/services.c, nss/shadow.c,
pam/pam.c, pynslcd/constants.py.in, pynslcd/pynslcd.py: Allow
configuration of NSS and PAM names
This introduces the --with-module-name configure option to
allow building of NSS and PAM modules with different namespaces
than ldap.
2015-01-12 Mark R Bannister <dbis@proseconsulting.co.uk>
* [ed8b312] nss/hosts.c: Fix uninitialised variable
This fixes a bug in the NSS library when encountering IPv6
addresses in the hosts map.
2014-12-12 Arthur de Jong <arthur@arthurdejong.org>
* [8b33057] nslcd/myldap.c: Avoid accessing searches outside array
Thanks David Binderma for pointing this out.
Note that in practical situations this should not result in any
errors due to the position of searches within the ldap_session
struct.
2014-11-02 Arthur de Jong <arthur@arthurdejong.org>
* [9ee854e] man/nslcd.conf.5.xml: Document that rootpwmoddn needs
to exist
See
http://lists.arthurdejong.org/nss-pam-ldapd-users/2014/msg00166.html
2014-10-10 Arthur de Jong <arthur@arthurdejong.org>
* [4262122] nslcd/nslcd.c: Fix format string
Thanks Jianhai Luan.
2014-10-04 Arthur de Jong <arthur@arthurdejong.org>
* [1d3b19b] nslcd/nslcd.c: Block signals sooner to avoid race
conditions
2014-08-27 Jason Luan <jianhai.luan@oracle.com>
* [78627c9] nslcd/cfg.c, nslcd/group.c, nslcd/nslcd.c,
nslcd/passwd.c: uid_t/gid_t should be formatted as unsigned long
mmkfilter_passwd_byuid()/mkfilter_group_bygid() get wrong filter
string because "%d" will return negative when uid/gid larger
than 2^31, and result to "Authentiction failure".
This also changes the other places where uid_t or gid_t values
are formatted.
2014-09-21 Arthur de Jong <arthur@arthurdejong.org>
* [a726d29] nslcd/daemonize.c: Fix issues with daemonising
This fixes a problem with a buffer that could end up padded
with garbage.
This also clarifies the code a bit and adds extra logging for
errors that could occur during daemonising.
2014-06-30 Tim Harder <radhermit@gmail.com>
* [82e4423] nslcd/myldap.c: Minor comment spelling fix
2014-06-30 Tim Harder <radhermit@gmail.com>
* [2950797] AUTHORS, nslcd/myldap.c: Check a socket's connectivity
before trying to use it
This alleviates some cases where multi-second lag occurs before a
query returns due to some or all connections having been closed
by the peer, e.g. a load balancer timing out old connections,
but they are all tried before opening new connections.
Tested and working on Linux.
2014-06-20 Arthur de Jong <arthur@arthurdejong.org>
* [1765e34] nslcd/common.h: Fix copy-pasto
2014-06-12 Arthur de Jong <arthur@arthurdejong.org>
* [9516479] tests/test.ldif, tests/test_nsscmds.sh: Use other IP
range for tests
This uses IP addresses from the RFC 5737 TEST-NET-1 range that is
meant for use in documentation. This avoids issues with running
the tests environments that also use the 10.0.0.0/8 range.
2014-06-06 Arthur de Jong <arthur@arthurdejong.org>
* [b3cf0aa] AUTHORS, ChangeLog, NEWS, configure.ac,
man/chsh.ldap.1.xml, man/getent.ldap.1.xml, man/nslcd.8.xml,
man/nslcd.conf.5.xml, man/pam_ldap.8.xml, man/pynslcd.8.xml:
Get files ready for 0.9.4 release
2014-06-06 Arthur de Jong <arthur@arthurdejong.org>
* [abb2452] nss/services.c: Return correct port number on Solaris
This is a small fix for when using nscd (which still does not
seem to work completely). The port is stored in network byte
order but should be printed in host byte order.
2014-06-06 Arthur de Jong <arthur@arthurdejong.org>
* [b977d3f] tests/lookup_groupbyuser.c: Add missing include
for FreeBSD
2014-06-06 Arthur de Jong <arthur@arthurdejong.org>
* [258d671] nslcd/pam.c: Fix password modification by root
This fixes 15fc13c.
2014-06-06 Arthur de Jong <arthur@arthurdejong.org>
* [8eeb1cc] common/tio.c: Clear proper buffer length
This fixes 3d29861.
2014-06-06 Arthur de Jong <arthur@arthurdejong.org>
* [3d65b84] nslcd/common.h: Fix code indentation
This fixes 2274b41.
2014-06-06 Arthur de Jong <arthur@arthurdejong.org>
* [e867727] config.guess, config.sub: Update files from latest
automake
2014-06-05 Arthur de Jong <arthur@arthurdejong.org>
* [f5ee208] pynslcd/cache.py: Fix comment
2014-06-05 Arthur de Jong <arthur@arthurdejong.org>
* [13483f9] .gitignore, configure.ac, tests/Makefile.am,
tests/lookup_groupbyuser.c: Introduce lookup_groupbyuser test
command
This command can be used to perform a lookup using getgrouplist()
to present a list of returned numeric group ids. This can be
used to avoid the additional lookups that are done with the id
and groups commands.
2014-05-14 Arthur de Jong <arthur@arthurdejong.org>
* [3d29861] common/tio.c, nslcd/myldap.c, nslcd/pam.c: Clear
buffers before free-ing
This clears most buffers that may hold credentials at one point
before free()ing the memory.
2014-05-08 Arthur de Jong <arthur@arthurdejong.org>
* [aa1d810] HACKING: Clarify code contribution
2014-05-04 Arthur de Jong <arthur@arthurdejong.org>
* [94eacb5] nslcd/pam.c: Improve error logging of user login failures
2014-05-04 Arthur de Jong <arthur@arthurdejong.org>
* [ca36a50] nslcd/myldap.c: Also extract policy controls on
BIND failure
This ensures that controls returned by an LDAP server as part of
a failed BIND operation are also returned. This makes it possible
to distinguish between a wrong password and an expired password.
This also only logs the BIND operation result on DEBUG level
(the error is logged later on).
2014-05-04 Arthur de Jong <arthur@arthurdejong.org>
* [d6163e2] configure.ac: Use FreeBSD lib directory and SONAME
on Dragonfly
2014-05-04 Arthur de Jong <arthur@arthurdejong.org>
* [f6f3730] README, man/nslcd.conf.5.xml: Small documentation
improvements
This includes a number of minor changes to the documentation. This
also documents the children search scope (related to 2caeef4).
2014-05-04 Arthur de Jong <arthur@arthurdejong.org>
* [ed79110] nslcd/daemonize.c, nslcd/nslcd.c: Log daemonising
failures
This also clears errno in the main function to ensure that no
incorrect errno value is logged on errors.
2014-05-04 Arthur de Jong <arthur@arthurdejong.org>
* [18d05b0] .gitignore, tests/Makefile.am, tests/test_attmap.c:
Add a test for setting member attribute mapping
2014-05-04 Arthur de Jong <arthur@arthurdejong.org>
* [fbea2a5] nslcd/attmap.c: Fix mapping group member attribute to
empty string
This fixes be94912.
2014-05-04 Arthur de Jong <arthur@arthurdejong.org>
* [2274b41] nslcd/alias.c, nslcd/attmap.c, nslcd/cfg.c,
nslcd/common.h, nslcd/ether.c, nslcd/group.c, nslcd/host.c,
nslcd/invalidator.c, nslcd/myldap.c, nslcd/netgroup.c,
nslcd/network.c, nslcd/pam.c, nslcd/passwd.c, nslcd/protocol.c,
nslcd/rpc.c, nslcd/service.c, nslcd/shadow.c: Make buffer size
error logging consistent
This adds logging of most cases where a defined buffer is not
large enough to hold provided data on error log level.
2014-05-04 Arthur de Jong <arthur@arthurdejong.org>
* [15fc13c] nslcd/myldap.c, nslcd/myldap.h, nslcd/pam.c,
nslcd/usermod.c: Warn when binddn buffer is too small
2014-05-04 Arthur de Jong <arthur@arthurdejong.org>
* [f987891] nslcd/common.h: Grow DN buffer size
The buffer size seems to be a problem in environments with long
names or environments with non-ASCII characters.
2014-05-02 ushi <ushi@honkgong.info>
* [119cebf] nslcd/common.h: Use larger nslcd password buffer
I had some edge cases where 64 bytes were not enough. People
are using password managers with long generated passwords. I
increased the buffer size to 128.
2014-03-12 Arthur de Jong <arthur@arthurdejong.org>
* [8f12c15] AUTHORS, ChangeLog, NEWS, configure.ac,
man/chsh.ldap.1.xml, man/getent.ldap.1.xml, man/nslcd.8.xml,
man/nslcd.conf.5.xml, man/pam_ldap.8.xml, man/pynslcd.8.xml,
pynslcd/pynslcd.py: Get files ready for 0.9.3 release
2014-03-12 Arthur de Jong <arthur@arthurdejong.org>
* [1ec7739] INSTALL, missing, test-driver: Update files from
recent automake
2014-03-10 Arthur de Jong <arthur@arthurdejong.org>
* [44764f0] tests/Makefile.am, tests/test_myldap.sh,
tests/test_nsscmds.sh: Run the correct executables for the tests
This fixes issues with running the tests when using a separate
build directory (fixes ef0eddaa).
2014-03-10 Arthur de Jong <arthur@arthurdejong.org>
* [77444ac] tests/test_myldap.sh: Fix nslcd-test.conf permissions
for test
This ensures that configuration file is not world readable when
the tests are run. This avoids test failure for the use of the
rootpwmodpw option.
2014-03-10 Arthur de Jong <arthur@arthurdejong.org>
* [96e4171] common/nslcd-prot.h: Interpret transferred integers
as signed again
This fixes an issue with unsigned values ending up in signed
fields and missing sign extension.
See: https://bugs.debian.org/739330
2014-01-27 Nalin Dahyabhai <nalin@redhat.com>
* [2d35feb] nss/hosts.c, nss/networks.c: Use right h_errnop for
retrying with larger buffer
The libc nsswitch code expects h_errno to be set to NETDB_INTERNAL
when it needs to try again with a larger buffer.
Signed-off-by: Lukas Slebodnik <lslebodn@redhat.com>
2014-01-27 Lukas Slebodnik <lslebodn@redhat.com>
* [8532f40] nss/hosts.c, nss/networks.c: Fix crash when retrieving
large networks entries
If NSS_STATUS_TRYAGAIN is returned from read_one_hostent or
read_one_netent then fp will be closed and function tio_skipall
will be called with NULL pointer. It could happend in functions:
_nss_ldap_getnetbyname_r _nss_ldap_getnetbyaddr_r
_nss_ldap_gethostbyname2_r _nss_ldap_gethostbyaddr_r
Fixes r548 (aka afd5d9b).
2014-01-30 Davy Defaud <davy.defaud@free.fr>
* [4211961] nslcd/group.c: Support builtin Windows groups
This maps the gid (gidNumber) to an AD SID for builtin
groups when searching a group by gid (RID) between 544 and
552. In that case the SID prefix is not the domain's prefix
(S-1-5-21-dddddd-dddddd-dddddd) but the BUILTIN SID prefix
(1-5-32).
For example, if you add a user to the Administrators builtin
group (S-1-5-32-544), now you should be able to get this group
through nslcd, instead of receiving an error message.
2014-01-25 Arthur de Jong <arthur@arthurdejong.org>
* [f6a0675] configure.ac: Add test for krb5 thread safety
This adds a test that checks the return value of
krb5_is_thread_safe() to see if krb5 is thread safe (during build)
and issues a warning if it is not.
nslcd does not directly link to krb5 but the library may be
loaded (by GSSAPI) if Kerberos is used to authenticate nslcd to
the LDAP server.
2014-01-25 Francois Tigeot <ftigeot@wolfpond.org>
* [043838c] configure.ac: Also detect DragonFly as BSD
This fixes the detection of DragonFly as requiring the freebsd
NSS interface flavour.
2014-01-24 joshuashire <joshuashire@hotmail.com>
* [2181cca] nslcd/shadow.c: Update shadow.c to resolve pwdLastSet
issue
We read the date into the buffer to the specified length to get it
to the Unix time (i.e. seconds) from its AD value of nanoseconds,
then convert it to days for shadow. If we use date rather than
buffer we end up trying to convert the original nanosecond value.
2014-01-05 Arthur de Jong <arthur@arthurdejong.org>
* [c6c317e] : Implement deref control handling
This uses the LDAP_CONTROL_X_DEREF control as described in
draft-masarati-ldap-deref-00 to request the LDAP server to
dereference group member attribute values to uid attribute values.
This should reduce the number of searches that are required for
expanding group members that use the member attribute.
This mechanism could also be used to extract information on
nested groups but the gains are less clear there.
Not all LDAP servers support this control. In OpenLDAP, load the
(currently undocumented) deref overlay and enable it for the
database to take advantage of this improvement.
There is a functional difference when using this control. Any
returned deferred uid value returned by the LDAP server is accepted
as a member. No checks are performed to see if the user matches
the search base and search filters set for passwd entries.
2014-01-05 Arthur de Jong <arthur@arthurdejong.org>
* [309b4bb] README: Update documentation
This documents the way the deref controls are used.
2014-01-05 Arthur de Jong <arthur@arthurdejong.org>
* [cecc024] nslcd/group.c: Use myldap_get_deref_values() to get
member uids
This uses information from the deref control (if available)
to get the username for each of the members of the group. Any
missing deref member attribute values will be seen as nested
groups and will be traversed if nested group support is enabled.
2014-01-05 Arthur de Jong <arthur@arthurdejong.org>
* [c973834] configure.ac, nslcd/myldap.c, nslcd/myldap.h: Provide
a myldap_get_deref_values() function
This function looks for deref response controls
(LDAP_CONTROL_X_DEREF) in the entry and returns the information
from the dereferenced attribute in two lists: dereferenced values
and attribute values that could not be dereferenced.
2014-01-05 Arthur de Jong <arthur@arthurdejong.org>
* [3992e15] nslcd/group.c: Skip member attributes in bymember search
This changes the group by member searches to not request the
member attributes. This will speed up result parsing by a fraction
because less data is transferred but will also cause the deref
control not to be added to these searches.
2013-12-28 Arthur de Jong <arthur@arthurdejong.org>
* [15ee2fc] compat/Makefile.am, compat/derefctrl.c,
compat/ldap_compat.h, configure.ac: Provide replacement
ldap_create_deref_control()
This adds a test for a bug in OpenLDAP that allocated a
LDAP_CONTROL_PAGEDRESULTS control instead of a LDAP_CONTROL_X_DEREF
control.
2014-01-05 Arthur de Jong <arthur@arthurdejong.org>
* [547e479] configure.ac, nslcd/myldap.c: Request attribute deref
via search control
This uses the LDAP_CONTROL_X_DEREF control as descibed in
draft-masarati-ldap-deref-00 to request the LDAP server to
dereference member attribute values to uid attribute values in
order to avoid doing extra searches.
This control is currently only added for group search by looking
for the member attribute in the search.
2014-01-04 Arthur de Jong <arthur@arthurdejong.org>
* [c22eb08] nslcd/myldap.c: Rename entry property to indicate
storage type
This changes entrye->rangedattributevalues to entry->buffers
because the propery is not only used for ranged attribute values
but for anything that can be freed with free().
2014-01-03 Arthur de Jong <arthur@arthurdejong.org>
* [f009c96] nslcd/myldap.c: Ignore missing page controls
Since we could get arbitrray controls and are only interested
in page controls we ignore failures to find page controls.
2014-01-03 Arthur de Jong <arthur@arthurdejong.org>
* [4f6dfdd] nslcd/myldap.c: Use do_try_search() also for paged
searches
This also changes do_try_search() to support building continued
paged controls and lays the groundwork for adding more search
controls.
2014-01-05 Arthur de Jong <arthur@arthurdejong.org>
* [be94912] nslcd/attmap.c, nslcd/group.c, pynslcd/group.py:
Support blanking the member attribute
This allows remapping the member attribute to an empty string
which removes support for that attribute. This can reduce the
number of search operations if the attribute is not used.
2014-01-05 Arthur de Jong <arthur@arthurdejong.org>
* [0d3fa5d] nslcd/group.c: Fix typo
2014-01-05 Arthur de Jong <arthur@arthurdejong.org>
* [8e74848] nslcd/group.c, nss/netgroup.c, tests/test_set.c:
Fix memory leaks related to set_pop()
Some pieces of code did not properly free() the value returned
by set_pop().
The leak in group code was related to the introduction of nested
group functionality in 41ba574 (merged in 3daa68d) so should
only be present in releases 0.9.0 forward.
The leak in the netgroup code only ended up in the Solaris
version of the NSS module and was introduced in 4ea9ad1 (merged in
5c8779d). This leak is present in all releases from 0.8.0 forward.
2014-01-04 Arthur de Jong <arthur@arthurdejong.org>
* [3288942] tests/test_myldap.c: Fix compiler warnings in the
myldap test
2014-01-02 Arthur de Jong <arthur@arthurdejong.org>
* [2b8fbc2] : Only exit nslcd when daemon is ready
This removes a race condition between the exit of the initial
nslcd process (as started by the init script) and nslcd services
being ready.
2014-01-02 Arthur de Jong <arthur@arthurdejong.org>
* [3afedc4] compat/Makefile.am, compat/daemon.c, compat/daemon.h,
configure.ac: Remove daemon() replacement function
2014-01-02 Arthur de Jong <arthur@arthurdejong.org>
* [907d49d] configure.ac, nslcd/daemonize.c: Close daemon pipe
file descriptor on fork or exec
This tries to avoid child processes ending up with a copy of
the pipe file descriptor that is used to signal readiness of
the daemon.
2014-01-02 Arthur de Jong <arthur@arthurdejong.org>
* [42a1a3d] nslcd/Makefile.am, nslcd/daemonize.c, nslcd/daemonize.h,
nslcd/nslcd.c: Properly daemonise nslcd and only exit when ready
This introduces a new daemonize module that provides functions for
closing all file descriptors, redirecting stdin/stdout/stderr to
/dev/null and a function for backgrounding an application while
only exiting the original process after the daemon process has
indicated readiness.
This is used to exit the original process only after the listening
socket has been set up and the worker threads have been started.
|