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
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
|
1999-12-30 Assar Westerlund <assar@sics.se>
* configure.in (krb4): use `-ldes' in tests
1999-12-26 Assar Westerlund <assar@sics.se>
* lib/hdb/print.c (event2string): handle events without principal.
From Luke Howard <lukeh@PADL.COM>
1999-12-25 Assar Westerlund <assar@sics.se>
* Release 0.2j
Tue Dec 21 18:03:17 1999 Assar Westerlund <assar@sics.se>
* lib/hdb/Makefile.am (asn1_files): add $(EXEEXT) for cygwin and
related systems
* lib/asn1/Makefile.am (asn1_files): add $(EXEEXT) for cygwin and
related systems
* include/Makefile.am (krb5-types.h): add $(EXEEXT) for cygwin and
related systems
1999-12-20 Assar Westerlund <assar@sics.se>
* Release 0.2i
1999-12-20 Assar Westerlund <assar@sics.se>
* lib/krb5/Makefile.am (libkrb5_la_LDFLAGS): bump version to 6:3:1
* lib/krb5/send_to_kdc.c (send_via_proxy): free data
* lib/krb5/send_to_kdc.c (send_via_proxy): new function use
getaddrinfo instead of gethostbyname{,2}
* lib/krb5/get_for_creds.c: use getaddrinfo instead of
getnodebyname{,2}
1999-12-17 Assar Westerlund <assar@sics.se>
* Release 0.2h
1999-12-17 Assar Westerlund <assar@sics.se>
* Release 0.2g
1999-12-16 Assar Westerlund <assar@sics.se>
* lib/krb5/Makefile.am: bump version to 6:2:1
* lib/krb5/principal.c (krb5_sname_to_principal): handle
ai_canonname not being set
* lib/krb5/expand_hostname.c (krb5_expand_hostname): handle
ai_canonname not being set
* appl/test/uu_server.c: print messages to stderr
* appl/test/tcp_server.c: print messages to stderr
* appl/test/nt_gss_server.c: print messages to stderr
* appl/test/gssapi_server.c: print messages to stderr
* appl/test/tcp_client.c (proto): remove shadowing `context'
* appl/test/common.c (client_doit): add forgotten ntohs
1999-12-13 Assar Westerlund <assar@sics.se>
* configure.in (VERISON): bump to 0.2g-pre
1999-12-12 Assar Westerlund <assar@sics.se>
* lib/krb5/principal.c (krb5_425_conv_principal_ext): be more
robust and handle extra dot at the beginning of default_domain
1999-12-12 Assar Westerlund <assar@sics.se>
* Release 0.2f
1999-12-12 Assar Westerlund <assar@sics.se>
* lib/krb5/Makefile.am: bump version to 6:1:1
* lib/krb5/changepw.c (get_kdc_address): use
`krb5_get_krb_changepw_hst'
* lib/krb5/krbhst.c (krb5_get_krb_changepw_hst): add
* lib/krb5/get_host_realm.c: add support for _kerberos.domain
(according to draft-ietf-cat-krb-dns-locate-01.txt)
1999-12-06 Assar Westerlund <assar@sics.se>
* Release 0.2e
1999-12-06 Assar Westerlund <assar@sics.se>
* lib/krb5/changepw.c (krb5_change_password): use the correct
address
* lib/krb5/Makefile.am: bump version to 6:0:1
* lib/asn1/Makefile.am: bump version to 1:4:0
1999-12-04 Assar Westerlund <assar@sics.se>
* configure.in: move AC_KRB_IPv6 to make sure it's performed
before AC_BROKEN
(el_init): use new feature of AC_FIND_FUNC_NO_LIBS
* appl/test/uu_client.c: use client_doit
* appl/test/test_locl.h (client_doit): add prototype
* appl/test/tcp_client.c: use client_doit
* appl/test/nt_gss_client.c: use client_doit
* appl/test/gssapi_client.c: use client_doit
* appl/test/common.c (client_doit): move identical code here and
start using getaddrinfo
* appl/kf/kf.c (doit): rewrite to use getaddrinfo
* kdc/hprop.c: re-write to use getaddrinfo
* lib/krb5/principal.c (krb5_sname_to_principal): use getaddrinfo
* lib/krb5/expand_hostname.c (krb5_expand_hostname): use
getaddrinfo
* lib/krb5/changepw.c: re-write to use getaddrinfo
* lib/krb5/addr_families.c (krb5_parse_address): use getaddrinfo
1999-12-03 Assar Westerlund <assar@sics.se>
* configure.in (BROKEN): check for freeaddrinfo, getaddrinfo,
getnameinfo, gai_strerror
(socklen_t): check for
1999-12-02 Johan Danielsson <joda@pdc.kth.se>
* lib/krb5/crypto.c: ARCFOUR_set_key -> RC4_set_key
1999-11-23 Assar Westerlund <assar@sics.se>
* lib/krb5/crypto.c (ARCFOUR_string_to_key): change order of bytes
within unicode characters. this should probably be done in some
arbitrarly complex way to do it properly and you would have to
know what character encoding was used for the password and salt
string.
* lib/krb5/addr_families.c (ipv4_uninteresting): ignore 0.0.0.0
(INADDR_ANY)
(ipv6_uninteresting): remove unused macro
1999-11-22 Johan Danielsson <joda@pdc.kth.se>
* lib/krb5/krb5.h: rc4->arcfour
* lib/krb5/crypto.c: rc4->arcfour
1999-11-17 Assar Westerlund <assar@sics.se>
* lib/krb5/krb5_locl.h: add <rc4.h>
* lib/krb5/krb5.h (krb5_keytype): add KEYTYPE_RC4
* lib/krb5/crypto.c: some code for doing RC4/MD5/HMAC which might
not be totally different from some small company up in the
north-west corner of the US
* lib/krb5/get_addrs.c (find_all_addresses): change code to
actually increment buf_size
1999-11-14 Assar Westerlund <assar@sics.se>
* lib/krb5/krb5.h (krb5_context_data): add `scan_interfaces'
* lib/krb5/get_addrs.c (krb5_get_all_client_addrs): make interaces
scanning optional
* lib/krb5/context.c (init_context_from_config_file): set
`scan_interfaces'
* lib/krb5/Makefile.am (libkrb5_la_SOURCES): add add_et_list.c
* lib/krb5/add_et_list.c (krb5_add_et_list): new function
1999-11-12 Assar Westerlund <assar@sics.se>
* lib/krb5/get_default_realm.c (krb5_get_default_realm,
krb5_get_default_realms): set realms if they were unset
* lib/krb5/context.c (init_context_from_config_file): don't
initialize default realms here. it's done lazily instead.
* lib/krb5/krb5.h (KRB5_TC_*): make constants unsigned
* lib/asn1/gen_glue.c (generate_2int, generate_units): make sure
bit constants are unsigned
* lib/asn1/gen.c (define_type): make length in sequences be
unsigned.
* configure.in: remove duplicate test for setsockopt test for
struct tm.tm_isdst
* lib/krb5/get_in_tkt.c (krb5_get_in_cred): generate
preauthentication information if we get back ERR_PREAUTH_REQUIRED
* lib/krb5/init_creds_pw.c (krb5_get_init_creds_password): remove
preauthentication generation code. it's now in krb5_get_in_cred
* configure.in (AC_BROKEN_SNPRINTF): add strptime check for struct
tm.tm_gmtoff and timezone
1999-11-11 Johan Danielsson <joda@pdc.kth.se>
* kdc/main.c: make this work with multi-db
* kdc/kdc_locl.h: make this work with multi-db
* kdc/config.c: make this work with multi-db
1999-11-09 Johan Danielsson <joda@pdc.kth.se>
* kdc/misc.c: update for multi-database code
* kdc/main.c: update for multi-database code
* kdc/kdc_locl.h: update
* kdc/config.c: allow us to have more than one database
1999-11-04 Assar Westerlund <assar@sics.se>
* Release 0.2d
* lib/krb5/Makefile.am: bump version to 5:0:0 to be safe
(krb5_context_data has changed and some code do (might) access
fields directly)
* lib/krb5/krb5.h (krb5_context_data): add `etypes_des'
* lib/krb5/get_cred.c (init_tgs_req): use
krb5_keytype_to_enctypes_default
* lib/krb5/crypto.c (krb5_keytype_to_enctypes_default): new
function
* lib/krb5/context.c (set_etypes): new function
(init_context_from_config_file): set both `etypes' and `etypes_des'
1999-11-02 Assar Westerlund <assar@sics.se>
* configure.in (VERSION): bump to 0.2d-pre
1999-10-29 Assar Westerlund <assar@sics.se>
* lib/krb5/principal.c (krb5_parse_name): check memory allocations
1999-10-28 Assar Westerlund <assar@sics.se>
* Release 0.2c
* lib/krb5/dump_config.c (print_tree): check for empty tree
* lib/krb5/string-to-key-test.c (tests): update the test cases
with empty principals so that they actually use an empty realm and
not the default. use the correct etype for 3DES
* lib/krb5/Makefile.am: bump version to 4:1:0
* kdc/config.c (configure): more careful with the port string
1999-10-26 Assar Westerlund <assar@sics.se>
* Release 0.2b
1999-10-20 Assar Westerlund <assar@sics.se>
* lib/krb5/Makefile.am: bump version to 4:0:0
(krb524_convert_creds_kdc and potentially some other functions
have changed prototypes)
* lib/hdb/Makefile.am: bump version to 4:0:1
* lib/asn1/Makefile.am: bump version to 1:3:0
* configure.in (LIB_roken): add dbopen. getcap in roken
references dbopen and with shared libraries we need to add this
dependency.
* lib/krb5/verify_krb5_conf.c (main): support speicifying the
configuration file to test on the command line
* lib/krb5/config_file.c (parse_binding): handle line with no
whitespace before =
(krb5_config_parse_file_debug): set lineno earlier so that we don't
use it unitialized
* configure.in (AM_INIT_AUTOMAKE): bump to 0.2b-pre opt*: need
more include files for these tests
* lib/krb5/set_default_realm.c (krb5_set_default_realm): use
krb5_config_get_strings, which means that your configuration file
should look like:
[libdefaults]
default_realm = realm1 realm2 realm3
* lib/krb5/set_default_realm.c (config_binding_to_list): fix
copy-o. From Michal Vocu <michal@karlin.mff.cuni.cz>
* kdc/config.c (configure): add a missing strdup. From Michal
Vocu <michal@karlin.mff.cuni.cz>
1999-10-17 Assar Westerlund <assar@sics.se>
* Release 0.2a
* configure.in: only test for db.h with using berkeley_db. remember
to link with LIB_tgetent when checking for el_init. add xnlock
* appl/Makefile.am: add xnlock
* kdc/kerberos5.c (find_etype): support null keys
* kdc/kerberos4.c (get_des_key): support null keys
* lib/krb5/crypto.c (krb5_get_wrapped_length): more correct
calculation
1999-10-16 Johan Danielsson <joda@pdc.kth.se>
* kuser/kinit.c (main): pass ccache to krb524_convert_creds_kdc
1999-10-12 Johan Danielsson <joda@pdc.kth.se>
* lib/krb5/crypto.c (krb5_enctype_to_keytype): remove warning
1999-10-10 Assar Westerlund <assar@sics.se>
* lib/krb5/mk_req.c (krb5_mk_req): use krb5_free_host_realm
* lib/krb5/krb5.h (krb5_ccache_data): make `ops' const
* lib/krb5/crypto.c (krb5_string_to_salttype): new function
* **/*.[ch]: const-ize
1999-10-06 Assar Westerlund <assar@sics.se>
* lib/krb5/creds.c (krb5_compare_creds): const-ify
* lib/krb5/cache.c: clean-up and comment-up
* lib/krb5/copy_host_realm.c (krb5_copy_host_realm): copy all the
strings
* lib/krb5/verify_user.c (krb5_verify_user_lrealm): free the
correct realm part
* kdc/connect.c (handle_tcp): things work much better when ret is
initialized
1999-10-03 Assar Westerlund <assar@sics.se>
* lib/krb5/convert_creds.c (krb524_convert_creds_kdc): look at the
type of the session key
* lib/krb5/crypto.c (krb5_enctypes_compatible_keys): spell
correctly
* lib/krb5/creds.c (krb5_compare_creds): fix spelling of
krb5_enctypes_compatible_keys
* lib/krb5/convert_creds.c (krb524_convert_creds_kdc): get new
credentials from the KDC if the existing one doesn't have a DES
session key.
* lib/45/get_ad_tkt.c (get_ad_tkt): update to new
krb524_convert_creds_kdc
1999-10-03 Johan Danielsson <joda@pdc.kth.se>
* lib/krb5/keytab_keyfile.c: make krb5_akf_ops const
* lib/krb5/keytab_memory.c: make krb5_mkt_ops const
* lib/krb5/keytab_file.c: make krb5_fkt_ops const
1999-10-01 Assar Westerlund <assar@sics.se>
* lib/krb5/config_file.c: rewritten to allow error messages
* lib/krb5/Makefile.am (bin_PROGRAMS): add verify_krb5_conf
(libkrb5_la_SOURCES): add config_file_netinfo.c
* lib/krb5/verify_krb5_conf.c: new program for verifying that
krb5.conf is corret
* lib/krb5/config_file_netinfo.c: moved netinfo code here from
config_file.c
1999-09-28 Assar Westerlund <assar@sics.se>
* kdc/hpropd.c (dump_krb4): kludge default_realm
* lib/asn1/check-der.c: add test cases for Generalized time and
make sure we return the correct value
* lib/asn1/der_put.c: simplify by using der_put_length_and_tag
* lib/krb5/verify_user.c (krb5_verify_user_lrealm): ariant of
krb5_verify_user that tries in all the local realms
* lib/krb5/set_default_realm.c: add support for having several
default realms
* lib/krb5/kuserok.c (krb5_kuserok): use `krb5_get_default_realms'
* lib/krb5/get_default_realm.c (krb5_get_default_realms): add
* lib/krb5/krb5.h (krb5_context_data): change `default_realm' to
`default_realms'
* lib/krb5/context.c: change from `default_realm' to
`default_realms'
* lib/krb5/aname_to_localname.c (krb5_aname_to_localname): use
krb5_get_default_realms
* lib/krb5/Makefile.am (libkrb5_la_SOURCES): add copy_host_realm.c
* lib/krb5/copy_host_realm.c: new file
1999-09-27 Johan Danielsson <joda@pdc.kth.se>
* lib/asn1/der_put.c (encode_generalized_time): encode length
* lib/krb5/recvauth.c: new function `krb5_recvauth_match_version'
that allows more intelligent matching of the application version
1999-09-26 Assar Westerlund <assar@sics.se>
* lib/asn1/asn1_print.c: add err.h
* kdc/config.c (configure): use parse_bytes
* appl/test/nt_gss_common.c: use the correct header file
1999-09-24 Johan Danielsson <joda@pdc.kth.se>
* kuser/klist.c: add a `--cache' flag
* kuser/kinit.c (main): only get default value for `get_v4_tgt' if
it's explicitly set in krb5.conf
1999-09-23 Assar Westerlund <assar@sics.se>
* lib/asn1/asn1_print.c (tag_names); add another univeral tag
* lib/asn1/der.h: update universal tags
1999-09-22 Assar Westerlund <assar@sics.se>
* lib/asn1/asn1_print.c (loop): print length of octet string
1999-09-21 Johan Danielsson <joda@pdc.kth.se>
* admin/ktutil.c (kt_get): add `--help'
1999-09-21 Assar Westerlund <assar@sics.se>
* kuser/Makefile.am: add kdecode_ticket
* kuser/kdecode_ticket.c: new debug program
* appl/test/nt_gss_server.c: new program to test against `Sample *
SSPI Code' in Windows 2000 RC1 SDK.
* appl/test/Makefile.am: add nt_gss_client and nt_gss_server
* lib/asn1/der_get.c (decode_general_string): remember to advance
ret over the length-len
* lib/asn1/Makefile.am: add asn1_print
* lib/asn1/asn1_print.c: new program for printing DER-structures
* lib/asn1/der_put.c: make functions more consistent
* lib/asn1/der_get.c: make functions more consistent
1999-09-20 Johan Danielsson <joda@pdc.kth.se>
* kdc/kerberos5.c: be more informative in pa-data error messages
1999-09-16 Assar Westerlund <assar@sics.se>
* configure.in: test for strlcpy, strlcat
1999-09-14 Assar Westerlund <assar@sics.se>
* lib/krb5/init_creds_pw.c (krb5_get_init_creds_password): return
KRB5_LIBOS_PWDINTR when interrupted
* lib/krb5/get_in_tkt_pw.c (krb5_password_key_proc): check return
value from des_read_pw_string
* kuser/kinit.c (main): don't print any error if reading the
password was interrupted
* kpasswd/kpasswd.c (main): don't print any error if reading the
password was interrupted
* kdc/string2key.c (main): check the return value from fgets
* kdc/kstash.c (main): check return value from des_read_pw_string
* admin/ktutil.c (kt_add): check the return-value from fgets and
overwrite the password for paranoid reasons
* lib/krb5/keytab_keyfile.c (get_cell_and_realm): only remove the
newline if it's there
1999-09-13 Assar Westerlund <assar@sics.se>
* kdc/hpropd.c (main): remove bogus error with `--print'. remove
sysloging of number of principals transferred
* kdc/hprop.c (ka_convert): set flags correctly for krbtgt/CELL
principals
(main): get rid of bogus opening of hdb database when propagating
ka-server database
1999-09-12 Assar Westerlund <assar@sics.se>
* lib/krb5/krb5_locl.h (O_BINARY): add fallback definition
* lib/krb5/krb5.h (krb5_context_data): add keytab types
* configure.in: revert back awk test, not worked around in
roken.awk
* lib/krb5/keytab_krb4.c: remove O_BINARY
* lib/krb5/keytab_keyfile.c: some support for AFS KeyFile's. From
Love <lha@e.kth.se>
* lib/krb5/keytab_file.c: remove O_BINARY
* lib/krb5/keytab.c: move the list of keytab types to the context
* lib/krb5/fcache.c: remove O_BINARY
* lib/krb5/context.c (init_context_from_config_file): register all
standard cache and keytab types
(krb5_free_context): free `kt_types'
* lib/krb5/cache.c (krb5_cc_resolve): move the registration of the
standard types of credential caches to context
* lib/krb5/Makefile.am (libkrb5_la_SOURCES): add keytab_keyfile.c
1999-09-10 Assar Westerlund <assar@sics.se>
* lib/krb5/keytab.c: add comments and clean-up
* admin/ktutil.c: add `ktutil copy'
* lib/krb5/keytab_krb4.c: new file
* lib/krb5/krb5.h (krb5_kt_cursor): add a `data' field
* lib/krb5/Makefile.am: add keytab_krb4.c
* lib/krb5/keytab.c: add krb4 and correct some if's
* admin/srvconvert.c (srvconv): move common code
* lib/krb5/krb5.h (krb5_fkt_ops, krb5_mkt_ops): new variables
* lib/krb5/keytab.c: move out file and memory functions
* lib/krb5/Makefile.am (libkrb5_la_SOURCES): add keytab_file.c,
keytab_memory.c
* lib/krb5/keytab_memory.c: new file
* lib/krb5/keytab_file.c: new file
* kpasswd/kpasswdd.c: move out password quality functions
1999-09-07 Assar Westerlund <assar@sics.se>
* lib/hdb/Makefile.am (libhdb_la_SOURCES): add keytab.c. From
Love <lha@e.kth.se>
* lib/krb5/convert_creds.c (krb524_convert_creds_kdc): check
return value from `krb5_sendto_kdc'
1999-09-06 Assar Westerlund <assar@sics.se>
* lib/krb5/send_to_kdc.c (send_and_recv): rename to recv_loop and
remove the sending of data. add a parameter `limit'. let callers
send the date themselves (and preferably with net_write on tcp
sockets)
(send_and_recv_tcp): read first the length field and then only that
many bytes
1999-09-05 Assar Westerlund <assar@sics.se>
* kdc/connect.c (handle_tcp): try to print warning `TCP data of
strange type' less often
* lib/krb5/send_to_kdc.c (send_and_recv): handle EINTR properly.
return on EOF. always free data. check return value from
realloc.
(send_and_recv_tcp, send_and_recv_http): check advertised length
against actual length
1999-09-01 Johan Danielsson <joda@pdc.kth.se>
* configure.in: check for sgi capabilities
1999-08-27 Johan Danielsson <joda@pdc.kth.se>
* lib/krb5/get_addrs.c: krb5_get_all_server_addrs shouldn't return
extra addresses
* kpasswd/kpasswdd.c: use HDB keytabs; change some error messages;
add --realm flag
* lib/krb5/address.c (krb5_append_addresses): remove duplicates
1999-08-26 Johan Danielsson <joda@pdc.kth.se>
* lib/hdb/keytab.c: HDB keytab backend
1999-08-25 Johan Danielsson <joda@pdc.kth.se>
* lib/krb5/keytab.c
(krb5_kt_{start_seq_get,next_entry,end_seq_get}): check for NULL
pointer
1999-08-24 Johan Danielsson <joda@pdc.kth.se>
* kpasswd/kpasswdd.c: add `--keytab' flag
1999-08-23 Assar Westerlund <assar@sics.se>
* lib/krb5/addr_families.c (IN6_ADDR_V6_TO_V4): use `s6_addr'
instead of the non-standard `s6_addr32'. From Yoshinobu Inoue
<shin@kame.net> by way of the KAME repository
1999-08-18 Assar Westerlund <assar@sics.se>
* configure.in (--enable-new-des3-code): remove check for `struct
addrinfo'
* lib/krb5/crypto.c (etypes): remove NEW_DES3_CODE, enable
des3-cbc-sha1 and keep old-des3-cbc-sha1 for backwards
compatability
* lib/krb5/krb5.h (krb5_enctype): des3-cbc-sha1 (with key
derivation) just got assigned etype 16 by <bcn@isi.edu>. keep the
old etype at 7.
1999-08-16 Assar Westerlund <assar@sics.se>
* lib/krb5/sendauth.c (krb5_sendauth): only look at errno if
krb5_net_read actually returns -1
* lib/krb5/recvauth.c (krb5_recvauth): only look at errno if
krb5_net_read actually returns -1
* appl/kf/kf.c (proto): don't trust errno if krb5_net_read hasn't
returned -1
* appl/test/tcp_server.c (proto): only trust errno if
krb5_net_read actually returns -1
* appl/kf/kfd.c (proto): be more careful with the return value
from krb5_net_read
1999-08-13 Assar Westerlund <assar@sics.se>
* lib/krb5/get_addrs.c (get_addrs_int): try the different ways
sequentially instead of just one. this helps if your heimdal was
built with v6-support but your kernel doesn't have it, for
example.
1999-08-12 Assar Westerlund <assar@sics.se>
* kdc/hpropd.c: add inetd flag. default means try to figure out
if stdin is a socket or not.
* Makefile.am (ACLOCAL): just use `cf', this variable is only used
when the current directory is $(top_srcdir) anyways and having
$(top_srcdir) there breaks if it's a relative path
1999-08-09 Johan Danielsson <joda@pdc.kth.se>
* configure.in: check for setproctitle
1999-08-05 Assar Westerlund <assar@sics.se>
* lib/krb5/principal.c (krb5_sname_to_principal): remember to call
freehostent
* appl/test/tcp_client.c: call freehostent
* appl/kf/kf.c (doit): call freehostent
* appl/kf/kf.c: make v6 friendly and simplify
* appl/kf/kfd.c: make v6 friendly and simplify
* appl/test/tcp_server.c: simplify by using krb5_err instead of
errx
* appl/test/tcp_client.c: simplify by using krb5_err instead of
errx
* appl/test/tcp_server.c: make v6 friendly and simplify
* appl/test/tcp_client.c: make v6 friendly and simplify
1999-08-04 Assar Westerlund <assar@sics.se>
* Release 0.1m
1999-08-04 Assar Westerlund <assar@sics.se>
* kuser/kinit.c (main): some more KRB4-conditionalizing
* lib/krb5/get_in_tkt.c: type correctness
* lib/krb5/get_for_creds.c (krb5_fwd_tgs_creds): set forwarded in
flags. From Miroslav Ruda <ruda@ics.muni.cz>
* kuser/kinit.c (main): add config file support for forwardable
and krb4 support. From Miroslav Ruda <ruda@ics.muni.cz>
* kdc/kerberos5.c (as_rep): add an empty X500-compress string as
transited.
(fix_transited_encoding): check length.
From Miroslav Ruda <ruda@ics.muni.cz>
* kdc/hpropd.c (dump_krb4): check the realm so that we don't dump
principals in some other realm. From Miroslav Ruda
<ruda@ics.muni.cz>
(main): rename sa_len -> sin_len, sa_lan is a define on some
platforms.
* appl/kf/kfd.c: add regpag support. From Miroslav Ruda
<ruda@ics.muni.cz>
* appl/kf/kf.c: add `-G' and forwardable option in krb5.conf.
From Miroslav Ruda <ruda@ics.muni.cz>
* lib/krb5/config_file.c (parse_list): don't run past end of line
* appl/test/gss_common.h: new prototypes
* appl/test/gssapi_client.c: use gss_err instead of abort
* appl/test/gss_common.c (gss_verr, gss_err): add
1999-08-03 Assar Westerlund <assar@sics.se>
* lib/krb5/Makefile.am (n_fold_test_LDADD): need to set this
otherwise it doesn't build with shared libraries
* kdc/hpropd.c: v6-ify
* kdc/hprop.c: v6-ify
1999-08-01 Assar Westerlund <assar@sics.se>
* lib/krb5/mk_req.c (krb5_mk_req): use krb5_expand_hostname
1999-07-31 Assar Westerlund <assar@sics.se>
* lib/krb5/get_host_realm.c (krb5_get_host_realm_int): new
function that takes a FQDN
* lib/krb5/Makefile.am (libkrb5_la_SOURCES): add exapnd_hostname.c
* lib/krb5/expand_hostname.c: new file
1999-07-28 Assar Westerlund <assar@sics.se>
* Release 0.1l
1999-07-28 Assar Westerlund <assar@sics.se>
* lib/asn1/Makefile.am: bump version to 1:2:0
* lib/krb5/Makefile.am: bump version to 3:1:0
* configure.in: more inet_pton to roken
* lib/krb5/principal.c (krb5_sname_to_principal): use
getipnodebyname
1999-07-26 Assar Westerlund <assar@sics.se>
* Release 0.1k
1999-07-26 Johan Danielsson <joda@pdc.kth.se>
* lib/krb5/Makefile.am: bump version number (changed function
signatures)
* lib/hdb/Makefile.am: bump version number (changes to some
function signatures)
1999-07-26 Assar Westerlund <assar@sics.se>
* lib/krb5/Makefile.am: bump version to 3:0:2
* lib/hdb/Makefile.am: bump version to 2:1:0
* lib/asn1/Makefile.am: bump version to 1:1:0
1999-07-26 Assar Westerlund <assar@sics.se>
* Release 0.1j
1999-07-26 Assar Westerlund <assar@sics.se>
* configure.in: rokenize inet_ntop
* lib/krb5/store_fd.c: lots of changes from size_t to ssize_t
* lib/krb5/store_mem.c: lots of changes from size_t to ssize_t
* lib/krb5/store_emem.c: lots of changes from size_t to ssize_t
* lib/krb5/store.c: lots of changes from size_t to ssize_t
(krb5_ret_stringz): check return value from realloc
* lib/krb5/mk_safe.c: some type correctness
* lib/krb5/mk_priv.c: some type correctness
* lib/krb5/krb5.h (krb5_storage): change return values of
functions from size_t to ssize_t
1999-07-24 Assar Westerlund <assar@sics.se>
* Release 0.1i
* configure.in (AC_PROG_AWK): disable. mawk seems to mishandle \#
in lib/roken/roken.awk
* lib/krb5/get_addrs.c (find_all_addresses): try to use SA_LEN to
step over addresses if there's no `sa_lan' field
* lib/krb5/sock_principal.c (krb5_sock_to_principal): simplify by
using `struct sockaddr_storage'
* lib/krb5/send_to_kdc.c (krb5_sendto_kdc): simplify by using
`struct sockaddr_storage'
* lib/krb5/changepw.c (krb5_change_password): simplify by using
`struct sockaddr_storage'
* lib/krb5/auth_context.c (krb5_auth_con_setaddrs_from_fd):
simplify by using `struct sockaddr_storage'
* kpasswd/kpasswdd.c (*): simplify by using `struct
sockaddr_storage'
* kdc/connect.c (*): simplify by using `struct sockaddr_storage'
* configure.in (sa_family_t): just test for existence
(sockaddr_storage): also specify include file
* configure.in (AM_INIT_AUTOMAKE): bump version to 0.1i
(sa_family_t): test for
(struct sockaddr_storage): test for
* kdc/hprop.c (propagate_database): typo, NULL should be
auth_context
* lib/krb5/get_addrs.c: conditionalize on HAVE_IPV6 instead of
AF_INET6
* appl/kf/kf.c (main): use warnx
* appl/kf/kf.c (proto): remove shadowing context
* lib/krb5/get_addrs.c (find_all_addresses): try to handle the
case of getting back an `sockaddr_in6' address when sizeof(struct
sockaddr_in6) > sizeof(struct sockaddr) and we have no sa_len to
tell us how large the address is. This obviously doesn't work
with unknown protocol types.
1999-07-24 Assar Westerlund <assar@sics.se>
* Release 0.1h
1999-07-23 Assar Westerlund <assar@sics.se>
* appl/kf/kfd.c: clean-up and more paranoia
* etc/services.append: add kf
* appl/kf/kf.c: rename tk_file to ccache for consistency. clean-up
1999-07-22 Assar Westerlund <assar@sics.se>
* lib/krb5/n-fold-test.c (main): print the correct data
* appl/Makefile.am (SUBDIRS): add kf
* appl/kf: new program. From Miroslav Ruda <ruda@ics.muni.cz>
* kdc/hprop.c: declare some variables unconditionally to simplify
things
* kpasswd/kpasswdd.c: initialize kadm5 connection for every change
(otherwise the modifier in the database doesn't get set)
* kdc/hpropd.c: clean-up and re-organize
* kdc/hprop.c: clean-up and re-organize
* configure.in (SunOS): define to xy for SunOS x.y
1999-07-19 Assar Westerlund <assar@sics.se>
* configure.in (AC_BROKEN): test for copyhostent, freehostent,
getipnodebyaddr, getipnodebyname
1999-07-15 Assar Westerlund <assar@sics.se>
* lib/asn1/check-der.c: more test cases for integers
* lib/asn1/der_length.c (length_int): handle the case of the
largest negative integer by not calling abs
1999-07-14 Assar Westerlund <assar@sics.se>
* lib/asn1/check-der.c (generic_test): check malloc return value
properly
* lib/krb5/Makefile.am: add string_to_key_test
* lib/krb5/prog_setup.c (krb5_program_setup): always initialize
the context
* lib/krb5/n-fold-test.c (main): return a relevant return value
* lib/krb5/krbhst.c: do SRV lookups for admin server as well.
some clean-up.
1999-07-12 Assar Westerlund <assar@sics.se>
* configure.in: handle not building X programs
1999-07-06 Assar Westerlund <assar@sics.se>
* lib/krb5/addr_families.c (ipv6_parse_addr): remove duplicate
variable
(ipv6_sockaddr2port): fix typo
* etc/services.append: beginning of a file with services
* lib/krb5/cache.c (krb5_cc_resolve): fall-back to files if
there's no prefix. also clean-up a little bit.
* kdc/hprop.c (--kaspecials): new flag for handling special KA
server entries. From "Brandon S. Allbery KF8NH"
<allbery@kf8nh.apk.net>
1999-07-05 Assar Westerlund <assar@sics.se>
* kdc/connect.c (handle_tcp): make sure we have data before
starting to look for HTTP
* kdc/connect.c (handle_tcp): always do getpeername, we can't
trust recvfrom to return anything sensible
1999-07-04 Assar Westerlund <assar@sics.se>
* lib/krb5/get_in_tkt.c (add_padat): encrypt pre-auth data with
all enctypes
* kpasswd/kpasswdd.c (change): fetch the salt-type from the entry
* admin/srvconvert.c (srvconv): better error messages
1999-07-03 Assar Westerlund <assar@sics.se>
* lib/krb5/principal.c (unparse_name): error check malloc properly
* lib/krb5/get_in_tkt.c (krb5_init_etype): error check malloc
properly
* lib/krb5/crypto.c (*): do some malloc return-value checks
properly
* lib/hdb/hdb.c (hdb_process_master_key): simplify by using
krb5_data_alloc
* lib/hdb/hdb.c (hdb_process_master_key): check return value from
malloc
* lib/asn1/gen_decode.c (decode_type): fix generation of decoding
information for TSequenceOf.
* kdc/kerberos5.c (get_pa_etype_info): check return value from
malloc
1999-07-02 Assar Westerlund <assar@sics.se>
* lib/asn1/der_copy.c (copy_octet_string): don't fail if length ==
0 and malloc returns NULL
1999-06-29 Assar Westerlund <assar@sics.se>
* lib/krb5/addr_families.c (ipv6_parse_addr): implement
1999-06-24 Assar Westerlund <assar@sics.se>
* lib/krb5/rd_cred.c (krb5_rd_cred): compare the sender's address
as an addrport one
* lib/krb5/krb5.h (KRB5_ADDRESS_ADDRPORT, KRB5_ADDRESS_IPPORT):
add
(krb5_auth_context): add local and remote port
* lib/krb5/get_for_creds.c (krb5_get_forwarded_creds): get the
local and remote address and add them to the krb-cred packet
* lib/krb5/auth_context.c: save the local and remove ports in the
auth_context
* lib/krb5/address.c (krb5_make_addrport): create an address of
type KRB5_ADDRESS_ADDRPORT from (addr, port)
* lib/krb5/addr_families.c (krb5_sockaddr2port): new function for
grabbing the port number out of the sockaddr
1999-06-23 Assar Westerlund <assar@sics.se>
* admin/srvcreate.c (srvcreate): always take the DES-CBC-MD5 key.
increase possible verbosity.
* lib/krb5/config_file.c (parse_list): handle blank lines at
another place
* kdc/connect.c (add_port_string): don't return a value
* lib/kadm5/init_c.c (get_cred_cache): you cannot reuse the cred
cache if the principals are different. close and NULL the old one
so that we create a new one.
* configure.in: move around cgywin et al
(LIB_kdb): set at the end of krb4-block
(krb4): test for krb_enable_debug and krb_disable_debug
1999-06-16 Assar Westerlund <assar@sics.se>
* kuser/kdestroy.c (main): try to destroy v4 ticket even if the
destruction of the v5 one fails
* lib/krb5/crypto.c (DES3_postproc): new version that does the
right thing
(*): don't put and recover length in 3DES encoding
other small fixes
1999-06-15 Assar Westerlund <assar@sics.se>
* lib/krb5/get_default_principal.c: rewrite to use
get_default_username
* lib/krb5/Makefile.am: add n-fold-test
* kdc/connect.c: add fallbacks for all lookups by service name
(handle_tcp): break-up and clean-up
1999-06-09 Assar Westerlund <assar@sics.se>
* lib/krb5/addr_families.c (ipv6_uninteresting): don't consider
the loopback address as uninteresting
* lib/krb5/get_addrs.c: new magic flag to get loopback address if
there are no other addresses.
(krb5_get_all_client_addrs): use that flag
1999-06-04 Assar Westerlund <assar@sics.se>
* lib/krb5/crypto.c (HMAC_SHA1_DES3_checksum): don't include the
length
(checksum_sha1, checksum_hmac_sha1_des3): blocksize should be 64
(encrypt_internal_derived): don't include the length and don't
decrease by the checksum size twice
(_get_derived_key): the constant should be 5 bytes
1999-06-02 Johan Danielsson <joda@pdc.kth.se>
* configure.in: use KRB_CHECK_X
* configure.in: check for netinet/ip.h
1999-05-31 Assar Westerlund <assar@sics.se>
* kpasswd/kpasswdd.c (setup_passwd_quality_check): conditionalize
on RTLD_NOW
1999-05-23 Assar Westerlund <assar@sics.se>
* appl/test/uu_server.c: removed unused stuff
* appl/test/uu_client.c: removed unused stuff
1999-05-21 Assar Westerlund <assar@sics.se>
* kuser/kgetcred.c (main): correct error message
* lib/krb5/crypto.c (verify_checksum): call (*ct->checksum)
directly, avoiding redundant lookups and memory leaks
* lib/krb5/auth_context.c (krb5_auth_con_setaddrs_from_fd): free
local and remote addresses
* lib/krb5/get_default_principal.c (get_logname): also try
$USERNAME
* lib/asn1/Makefile.am (asn1_files): add $(EXEEXT)
* lib/krb5/principal.c (USE_RESOLVER): try to define only if we
have a libresolv (currently by checking for res_search)
1999-05-18 Johan Danielsson <joda@pdc.kth.se>
* kdc/connect.c (handle_tcp): remove %-escapes in request
1999-05-14 Assar Westerlund <assar@sics.se>
* Release 0.1g
* admin/ktutil.c (kt_remove): -t should be -e
* configure.in (CHECK_NETINET_IP_AND_TCP): use
* kdc/hpropd.c: support for dumping to krb4. From Miroslav Ruda
<ruda@ics.muni.cz>
* admin/ktutil.c (kt_add): new option `--no-salt'. From Miroslav
Ruda <ruda@ics.muni.cz>
* configure.in: add cygwin and DOS tests replace sendmsg, recvmsg,
and innetgr with roken versions
* kuser/kgetcred.c: new program
Tue May 11 14:09:33 1999 Johan Danielsson <joda@pdc.kth.se>
* lib/krb5/mcache.c: fix paste-o
1999-05-10 Johan Danielsson <joda@pdc.kth.se>
* configure.in: don't use uname
1999-05-10 Assar Westerlund <assar@sics.se>
* acconfig.h (KRB_PUT_INT): if we don't have KRB4 use four
arguments :-)
* appl/test/uu_server.c (setsockopt): cast to get rid of a warning
* appl/test/tcp_server.c (setsockopt): cast to get rid of a
warning
* appl/test/tcp_client.c (proto): call krb5_sendauth with ccache
== NULL
* appl/test/gssapi_server.c (setsockopt): cast to get rid of a
warning
* lib/krb5/sendauth.c (krb5_sendauth): handle ccache == NULL by
setting the default ccache.
* configure.in (getsockopt, setsockopt): test for
(AM_INIT_AUTOMAKE): bump version to 0.1g
* appl/Makefile.am (SUBDIRS): add kx
* lib/hdb/convert_db.c (main): handle the case of no master key
1999-05-09 Assar Westerlund <assar@sics.se>
* Release 0.1f
* kuser/kinit.c: add --noaddresses
* lib/krb5/get_in_tkt.c (init_as_req): interpret `addrs' being an
empty sit of list as to not ask for any addresses.
1999-05-08 Assar Westerlund <assar@sics.se>
* acconfig.h (_GNU_SOURCE): define this to enable (used)
extensions on glibc-based systems such as linux
1999-05-03 Assar Westerlund <assar@sics.se>
* lib/krb5/get_cred.c (get_cred_from_kdc_flags): allocate and free
`*out_creds' properly
* lib/krb5/creds.c (krb5_compare_creds): just verify that the
keytypes/enctypes are compatible, not that they are the same
* kuser/kdestroy.c (cache): const-correctness
1999-05-03 Johan Danielsson <joda@pdc.kth.se>
* lib/hdb/hdb.c (hdb_set_master_key): initialise master key
version
* lib/hdb/convert_db.c: add support for upgrading database
versions
* kdc/misc.c: add flags to fetch
* kdc/kstash.c: unlink keyfile on failure, chmod to 400
* kdc/hpropd.c: add --print option
* kdc/hprop.c: pass flags to hdb_foreach
* lib/hdb/convert_db.c: add some flags
* lib/hdb/Makefile.am: remove extra LDFLAGS, update version to 2;
build prototype headers
* lib/hdb/hdb_locl.h: update prototypes
* lib/hdb/print.c: move printable version of entry from kadmin
* lib/hdb/hdb.c: change hdb_{seal,unseal}_* to check if the key is
sealed or not; add flags to hdb_foreach
* lib/hdb/ndbm.c: add flags to NDBM_seq, NDBM_firstkey, and
NDBM_nextkey
* lib/hdb/db.c: add flags to DB_seq, DB_firstkey, and DB_nextkey
* lib/hdb/common.c: add flags to _hdb_{fetch,store}
* lib/hdb/hdb.h: add master_key_version to struct hdb, update
prototypes
* lib/hdb/hdb.asn1: make mkvno optional, update version to 2
* configure.in: --enable-netinfo
* lib/krb5/config_file.c: HAVE_NETINFO_NI_H -> HAVE_NETINFO
* config.sub: fix for crays
* config.guess: new version from automake 1.4
* config.sub: new version from automake 1.4
Wed Apr 28 00:21:17 1999 Assar Westerlund <assar@sics.se>
* Release 0.1e
* lib/krb5/mcache.c (mcc_get_next): get the current cursor
correctly
* acconfig.h: correct definition of KRB_PUT_INT for old krb4 code.
From Ake Sandgren <ake@cs.umu.se>
1999-04-27 Johan Danielsson <joda@pdc.kth.se>
* kdc/kerberos5.c: fix arguments to decrypt_ticket
1999-04-25 Assar Westerlund <assar@sics.se>
* lib/krb5/mk_req_ext.c (krb5_mk_req_internal): try to handle old
DCE secd's that are not able to handle MD5 checksums by defaulting
to MD4 if the keytype was DES-CBC-CRC
* lib/krb5/mk_req.c (krb5_mk_req): use auth_context->keytype
* lib/krb5/krb5.h (krb5_auth_context_data): add `keytype' and
`cksumtype'
* lib/krb5/get_cred.c (make_pa_tgs_req): remove old kludge for
secd
(init_tgs_req): add all supported enctypes for the keytype in
`in_creds->session.keytype' if it's set
* lib/krb5/crypto.c (F_PSEUDO): new flag for non-protocol
encryption types
(do_checksum): new function
(verify_checksum): take the checksum to use from the checksum message
and not from the crypto struct
(etypes): add F_PSEUDO flags
(krb5_keytype_to_enctypes): new function
* lib/krb5/auth_context.c (krb5_auth_con_init): initalize keytype
and cksumtype
(krb5_auth_setcksumtype, krb5_auth_getcksumtype): implement
(krb5_auth_setkeytype, krb5_auth_getkeytype): implement
(krb5_auth_setenctype): comment out, it's rather bogus anyway
Sun Apr 25 16:55:50 1999 Johan Danielsson <joda@pdc.kth.se>
* lib/krb5/krb5_locl.h: fix for stupid aix warnings
* lib/krb5/fcache.c (erase_file): don't malloc
Sat Apr 24 18:35:21 1999 Johan Danielsson <joda@pdc.kth.se>
* kdc/config.c: pass context to krb5_config_file_free
* kuser/kinit.c: add `--fcache-version' to set cache version to
create
* kuser/klist.c: print cache version if verbose
* lib/krb5/transited.c (krb5_domain_x500_decode): don't abort
* lib/krb5/principal.c: abort -> krb5_abortx
* lib/krb5/mk_rep.c: abort -> krb5_abortx
* lib/krb5/config_file.c: abort -> krb5_abortx
* lib/krb5/context.c (init_context_from_config_file): init
fcache_version; add krb5_{get,set}_fcache_version
* lib/krb5/keytab.c: add support for reading (and writing?) old
version keytabs
* lib/krb5/cache.c: add krb5_cc_get_version
* lib/krb5/fcache.c: add support for reading and writing old
version cache files
* lib/krb5/store_mem.c (krb5_storage_from_mem): zero flags
* lib/krb5/store_emem.c (krb5_storage_emem): zero flags
* lib/krb5/store_fd.c (krb5_storage_from_fd): zero flags
* lib/krb5/store.c: add flags to change how various fields are
stored, used for old cache version support
* lib/krb5/krb5.h: add support for reading and writing old version
cache files, and keytabs
Wed Apr 21 00:09:26 1999 Assar Westerlund <assar@sics.se>
* configure.in: fix test for readline.h remember to link with
$LIB_tgetent when trying linking with readline
* lib/krb5/init_creds_pw.c (get_init_creds_common): if start_time
is given, request a postdated ticket.
* lib/krb5/data.c (krb5_data_free): free data as long as it's not
NULL
Tue Apr 20 20:18:14 1999 Assar Westerlund <assar@sics.se>
* kpasswd/Makefile.am (kpasswdd_LDADD): add LIB_dlopen
* lib/krb5/krb5.h (KRB5_VERIFY_AP_REQ_IGNORE_INVALID): add
* lib/krb5/rd_req.c (krb5_decrypt_ticket): add `flags` and
KRB5_VERIFY_AP_REQ_IGNORE_INVALID for ignoring that the ticket is
invalid
Tue Apr 20 12:42:08 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* kpasswd/kpasswdd.c: don't try to load library by default; get
library and function name from krb5.conf
* kpasswd/sample_passwd_check.c: sample password checking
functions
Mon Apr 19 22:22:19 1999 Assar Westerlund <assar@sics.se>
* lib/krb5/store.c (krb5_storage_to_data, krb5_ret_data): use
krb5_data_alloc and be careful with checking allocation and sizes.
* kuser/klist.c (--tokens): conditionalize on KRB4
* kuser/kinit.c (renew_validate): set all flags
(main): fix cut-n-paste error when setting start-time
* kdc/kerberos5.c (check_tgs_flags): starttime of a validate
ticket should be > than current time
(*): send flags to krb5_verify_ap_req and krb5_decrypt_ticket
* kuser/kinit.c (renew_validate): use the client realm instead of
the local realm when renewing tickets.
* lib/krb5/get_for_creds.c (krb5_fwd_tgs_creds): compat function
(krb5_get_forwarded_creds): correct freeing of out_creds
* kuser/kinit.c (renew_validate): hopefully fix up freeing of
memory
* configure.in: do all the krb4 tests with "$krb4" != "no"
* lib/krb5/keyblock.c (krb5_free_keyblock_contents): don't zero
keyvalue if it's NULL. noticed by Ake Sandgren <ake@cs.umu.se>
* lib/krb5/get_in_tkt.c (add_padata): loop over all enctypes
instead of just taking the first one. fix all callers. From
"Brandon S. Allbery KF8NH" <allbery@kf8nh.apk.net>
* kdc/kdc_locl.h (enable_kaserver): declaration
* kdc/hprop.c (ka_convert): print the failing principal. AFS 3.4a
creates krbtgt.REALMOFCELL as NOTGS+NOSEAL, work around. From
"Brandon S. Allbery KF8NH" <allbery@kf8nh.apk.net>
* kdc/hpropd.c (open_socket): stupid cast to get rid of a warning
* kdc/connect.c (add_standard_ports, process_request): look at
enable_kaserver. From "Brandon S. Allbery KF8NH"
<allbery@kf8nh.apk.net>
* kdc/config.c: new flag --kaserver and config file option
enable-kaserver. From "Brandon S. Allbery KF8NH"
<allbery@kf8nh.apk.net>
Mon Apr 19 12:32:04 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* configure.in: check for dlopen, and dlfcn.h
* kpasswd/kpasswdd.c: add support for dlopen:ing password quality
check library
* configure.in: add appl/su
Sun Apr 18 15:46:53 1999 Johan Danielsson <joda@blubb.pdc.kth.se>
* lib/krb5/cache.c: add krb5_cc_get_type that returns type of a
cache
Fri Apr 16 17:58:51 1999 Assar Westerlund <assar@sics.se>
* configure.in: LIB_kdb: -L should be before -lkdb
test for prototype of strsep
Thu Apr 15 11:34:38 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* lib/krb5/Makefile.am: update version
* lib/krb5/get_for_creds.c (krb5_get_forwarded_creds): use
ALLOC_SEQ
* lib/krb5/fcache.c: add some support for reading and writing old
cache formats;
(fcc_store_cred): use krb5_store_creds; (fcc_read_cred): use
krb5_ret_creds
* lib/krb5/store_mem.c (krb5_storage_from_mem): check malloc,
initialize host_byteorder
* lib/krb5/store_fd.c (krb5_storage_from_fd): initialize
host_byteorder
* lib/krb5/store_emem.c (krb5_storage_emem): initialize
host_byteorder
* lib/krb5/store.c (krb5_storage_set_host_byteorder): add;
(krb5_store_int32,krb5_ret_int32,krb5_store_int16,krb5_ret_int16):
check host_byteorder flag; (krb5_store_creds): add;
(krb5_ret_creds): add
* lib/krb5/krb5.h (krb5_storage): add `host_byteorder' flag for
storage of numbers
* lib/krb5/heim_err.et: add `host not found' error
* kdc/connect.c: don't use data after clearing decriptor
* lib/krb5/auth_context.c: abort -> krb5_abortx
* lib/krb5/warn.c: add __attribute__; add *abort functions
* configure.in: check for __attribute__
* kdc/connect.c: log bogus requests
Tue Apr 13 18:38:05 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* lib/kadm5/create_s.c (kadm5_s_create_principal): create v4 salts
for all DES keys
1999-04-12 Assar Westerlund <assar@sics.se>
* lib/krb5/get_cred.c (init_tgs_req): re-structure a little bit
* lib/krb5/get_cred.c (init_tgs_req): some more error checking
* lib/krb5/generate_subkey.c (krb5_generate_subkey): check return
value from malloc
Sun Apr 11 03:47:23 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* lib/krb5/krb5.conf.5: update to reality
* lib/krb5/krb5_425_conv_principal.3: update to reality
1999-04-11 Assar Westerlund <assar@sics.se>
* lib/krb5/get_host_realm.c: handle more than one realm for a host
* kpasswd/kpasswd.c (main): use krb5_program_setup and
print_version
* kdc/string2key.c (main): use krb5_program_setup and
print_version
Sun Apr 11 02:35:58 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* lib/krb5/principal.c (krb5_524_conv_principal): make it actually
work, and check built-in list of host-type first-components
* lib/krb5/krbhst.c: lookup SRV-records to find a kdc for a realm
* lib/krb5/context.c: add srv_* flags to context
* lib/krb5/principal.c: add default v4_name_convert entries
* lib/krb5/krb5.h: add srv_* flags to context
Sat Apr 10 22:52:28 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* kadmin/kadmin.c: complain about un-recognised commands
* admin/ktutil.c: complain about un-recognised commands
Sat Apr 10 15:41:49 1999 Assar Westerlund <assar@sics.se>
* kadmin/load.c (doit): fix error message
* lib/krb5/crypto.c (encrypt_internal): free checksum if lengths
fail to match.
(krb5_get_wrapped_length): new function
* configure.in: security/pam_modules.h: check for
* lib/krb5/init_creds_pw.c (krb5_get_init_creds_password): kludge
around `ret_as_reply' semantics by only freeing it when ret == 0
Fri Apr 9 20:24:04 1999 Assar Westerlund <assar@sics.se>
* kuser/klist.c (print_cred_verbose): handle the case of a bad
enctype
* configure.in: test for more header files
(LIB_roken): set
Thu Apr 8 15:01:59 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* configure.in: fixes for building w/o krb4
* ltmain.sh: update to libtool 1.2d
* ltconfig: update to libtool 1.2d
Wed Apr 7 23:37:26 1999 Assar Westerlund <assar@sics.se>
* kdc/hpropd.c: fix some error messages to be more understandable.
* kdc/hprop.c (ka_dump): remove unused variables
* appl/test/tcp_server.c: remove unused variables
* appl/test/gssapi_server.c: remove unused variables
* appl/test/gssapi_client.c: remove unused variables
Wed Apr 7 14:05:15 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* lib/krb5/context.c (krb5_get_err_text): long -> krb5_error_code
* kuser/klist.c: make it compile w/o krb4
* kuser/kdestroy.c: make it compile w/o krb4
* admin/ktutil.c: fix {srv,key}2{srv,key}tab confusion; add help
strings
Mon Apr 5 16:13:46 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* configure.in: test for MIPS ABI; new test_package
Thu Apr 1 11:00:40 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* include/Makefile.am: clean krb5-private.h
* Release 0.1d
* kpasswd/kpasswdd.c (doit): pass context to
krb5_get_all_client_addrs
* kdc/connect.c (init_sockets): pass context to
krb5_get_all_server_addrs
* lib/krb5/get_in_tkt.c (init_as_req): pass context to
krb5_get_all_client_addrs
* lib/krb5/get_cred.c (get_cred_kdc_la): pass context to
krb5_get_all_client_addrs
* lib/krb5/get_addrs.c (get_addrs_int): add extra host addresses
* lib/krb5/krb5.h: add support for adding an extra set of
addresses
* lib/krb5/context.c: add support for adding an extra set of
addresses
* lib/krb5/addr_families.c: add krb5_parse_address
* lib/krb5/address.c: krb5_append_addresses
* lib/krb5/config_file.c (parse_binding): don't zap everything
after first whitespace
* kuser/kinit.c (renew_validate): don't allocate out
* lib/krb5/get_for_creds.c (krb5_get_forwarded_creds): don't
allocate out_creds
* lib/krb5/get_cred.c (get_cred_kdc, get_cred_kdc_la): make
out_creds pointer;
(krb5_get_kdc_cred): allocate out_creds; (get_cred_from_kdc_flags):
free more memory
* lib/krb5/crypto.c (encrypt_internal): free checksum
* lib/krb5/convert_creds.c (krb524_convert_creds_kdc): free reply,
and ticket
* kuser/Makefile.am: remove kfoo
* lib/Makefile.am: add auth
* lib/kadm5/iprop.h: getarg.h
* lib/kadm5/replay_log.c: use getarg
* lib/kadm5/ipropd_slave.c: use getarg
* lib/kadm5/ipropd_master.c: use getarg
* lib/kadm5/dump_log.c: use getarg
* kpasswd/kpasswdd.c: use getarg
* Makefile.am.common: make a more working check-local target
* lib/asn1/main.c: use getargs
Mon Mar 29 20:19:57 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* kuser/klist.c (print_cred_verbose): use krb5_print_address
* lib/kadm5/server.c: k_{put,get}_int -> _krb5_{put,get}_int
* lib/krb5/addr_families.c (krb5_print_address): handle unknown
address types; (ipv6_print_addr): print in 16-bit groups (as it
should)
* lib/krb5/crc.c: crc_{init_table,update} ->
_krb5_crc_{init_table,update}
* lib/krb5/crypto.c: k_{put,get}_int -> _krb5_{put,get}_int
crc_{init_table,update} -> _krb5_crc_{init_table,update}
* lib/krb5/send_to_kdc.c: k_{put,get}_int -> _krb5_{put,get}_int
* lib/krb5/store.c: k_{put,get}_int -> _krb5_{put,get}_int
* lib/krb5/krb5_locl.h: include krb5-private.h
* kdc/connect.c (addr_to_string): use krb5_print_address
* lib/krb5/addr_families.c (krb5_print_address): int -> size_t
* lib/krb5/addr_families.c: add support for printing ipv6
addresses, either with inet_ntop, or ugly for-loop
* kdc/524.c: check that the ticket came from a valid address; use
the address of the connection as the address to put in the v4
ticket (if this address is AF_INET)
* kdc/connect.c: pass addr to do_524
* kdc/kdc_locl.h: prototype for do_524
Sat Mar 27 17:48:31 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* configure.in: check for OSF C2; bind/bitypes.h, getudbnam,
setlim; check for auth modules; siad.h, getpwnam_r;
lib/auth/Makefile, lib/auth/sia/Makefile
* lib/krb5/crypto.c: n_fold -> _krb5_n_fold
* lib/krb5/n-fold.c: n_fold -> _krb5_n_fold
Thu Mar 25 04:35:21 1999 Assar Westerlund <assar@sics.se>
* lib/kadm5/set_keys.c (_kadm5_set_keys): free salt when zapping
it
* lib/kadm5/free.c (kadm5_free_principal_ent): free `key_data'
* lib/hdb/ndbm.c (NDBM_destroy): clear master key
* lib/hdb/db.c (DB_destroy): clear master key
(DB_open): check malloc
* kdc/connect.c (init_sockets): free addresses
* kadmin/kadmin.c (main): make code more consistent. always free
configuration information.
* kadmin/init.c (create_random_entry): free the entry
Wed Mar 24 04:02:03 1999 Assar Westerlund <assar@sics.se>
* lib/krb5/init_creds_pw.c (krb5_get_init_creds_password):
re-organize the code to always free `kdc_reply'
* lib/krb5/get_in_tkt.c (krb5_get_in_cred): be more careful about
freeing memory
* lib/krb5/fcache.c (fcc_destroy): don't call fcc_close
* lib/krb5/crypto.c (krb5_crypto_destroy): free `crypto'
* lib/hdb/hdb_locl.h: try db_185.h first in case db.h is a DB 2.0
header
* configure.in (db_185.h): check for
* admin/srvcreate.c: new file. contributed by Daniel Kouril
<kouril@informatics.muni.cz>
* admin/ktutil.c: srvcreate: new command
* kuser/klist.c: add support for printing AFS tokens
* kuser/kdestroy.c: add support for destroying v4 tickets and AFS
tokens. based on code by Love <lha@stacken.kth.se>
* kuser/Makefile.am (kdestroy_LDADD, klist_LDADD): more libraries
* configure.in: sys/ioccom.h: test for
* kuser/klist.c (main): don't print `no ticket file' with --test.
From: Love <lha@e.kth.se>
* kpasswd/kpasswdd.c (doit): more braces to make gcc happy
* kdc/connect.c (init_socket): get rid of a stupid warning
* include/bits.c (my_strupr): cast away some stupid warnings
Tue Mar 23 14:34:44 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* lib/krb5/get_host_realm.c (krb5_get_host_realm): no infinite
loops, please
Tue Mar 23 00:00:45 1999 Assar Westerlund <assar@sics.se>
* lib/kadm5/Makefile.am (install_build_headers): recover from make
rewriting the names of the headers kludge to help solaris make
* lib/krb5/Makefile.am: kludge to help solaris make
* lib/hdb/Makefile.am: kludge to help solaris make
* configure.in (LIB_kdb): make sure there's a -L option in here by
adding $(LIB_krb4)
* lib/asn1/gen_glue.c (generate_2int, generate_int2): int ->
unsigned
* configure.in (SunOS): set to a number KRB4, KRB5 conditionals:
remove the `dnl' to work around an automake flaw
Sun Mar 21 15:08:49 1999 Johan Danielsson <joda@blubb.pdc.kth.se>
* lib/krb5/get_default_realm.c: char* -> krb5_realm
Sun Mar 21 14:08:30 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* include/bits.c: <bind/bitypes.h>
* lib/krb5/Makefile.am: create krb5-private.h
Sat Mar 20 00:08:59 1999 Assar Westerlund <assar@sics.se>
* configure.in (gethostname): remove duplicate
Fri Mar 19 14:48:03 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* lib/hdb/Makefile.am: add version-info
* lib/gssapi/Makefile.am: add version-info
* lib/asn1/Makefile.am: use $(x:y=z) make syntax; move check-der
to check_PROGRAMS
* lib/Makefile.am: add 45
* lib/kadm5/Makefile.am: split in client and server libraries
(breaks shared libraries otherwise)
Thu Mar 18 11:33:30 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* include/kadm5/Makefile.am: clean a lot of header files (since
automake lacks a clean-hook)
* include/Makefile.am: clean a lot of header files (since automake
lacks a clean-hook)
* lib/kadm5/Makefile.am: fix build-installation of headers
* lib/krb5/Makefile.am: remove include_dir hack
* lib/hdb/Makefile.am: remove include_dir hack
* lib/asn1/Makefile.am: remove include_dir hack
* include/Makefile.am: remove include_dir hack
* doc/whatis.texi: define sub for html
* configure.in: LIB_kdb, have_err_h, have_fnmatch_h, have_glob_h
* lib/asn1/Makefile.am: der.h
* kpasswd/kpasswdd.c: admin.h -> kadm5/admin.h
* kdc/Makefile.am: remove junk
* kadmin/Makefile.am: sl.a -> sl.la
* appl/afsutil/Makefile.am: remove EXTRA_bin_PROGRAMS
* admin/Makefile.am: sl.a -> sl.la
* configure.in: condition KRB5; AC_CHECK_XAU
* Makefile.am: include Makefile.am.common
* include/kadm5/Makefile.am: include Makefile.am.common; don't
install headers from here
* include/Makefile.am: include Makefile.am.common; don't install
headers from here
* doc/Makefile.am: include Makefile.am.common
* lib/krb5/Makefile.am: include Makefile.am.common
* lib/kadm5/Makefile.am: include Makefile.am.common
* lib/hdb/Makefile.am: include Makefile.am.common
* lib/gssapi/Makefile.am: include Makefile.am.common
* lib/asn1/Makefile.am: include Makefile.am.common
* lib/Makefile.am: include Makefile.am.common
* lib/45/Makefile.am: include Makefile.am.common
* kuser/Makefile.am: include Makefile.am.common
* kpasswd/Makefile.am: include Makefile.am.common
* kdc/Makefile.am: include Makefile.am.common
* kadmin/Makefile.am: include Makefile.am.common
* appl/test/Makefile.am: include Makefile.am.common
* appl/afsutil/Makefile.am: include Makefile.am.common
* appl/Makefile.am: include Makefile.am.common
* admin/Makefile.am: include Makefile.am.common
Wed Mar 17 03:04:38 1999 Assar Westerlund <assar@sics.se>
* lib/krb5/store.c (krb5_store_stringz): braces fix
* lib/kadm5/get_s.c (kadm5_s_get_principal): braces fix
* lib/kadm5/ent_setup.c (_kadm5_setup_entry): braces fix
* kdc/connect.c (loop): braces fix
* lib/krb5/config_file.c: cast to unsigned char to make is* happy
* lib/krb5/log.c (krb5_addlog_dest): more braces to make gcc happy
* lib/krb5/crypto.c (krb5_verify_checksum): rename C -> cksum to
be consistent
* kadmin/util.c (timeval2str): more braces to make gcc happy
* kadmin/load.c: cast in is* to get rid of stupid warning
* kadmin/dump.c (append_hex): cast in isalnum to get rid of stupid
warning
* kdc/kaserver.c: malloc checks and fixes
* lib/krb5/get_host_realm.c (krb5_get_host_realm): include leading
dot (if any) when looking up realms.
Fri Mar 12 13:57:56 1999 Johan Danielsson <joda@blubb.pdc.kth.se>
* lib/krb5/get_host_realm.c: add dns support
* lib/krb5/set_default_realm.c: use krb5_free_host_realm
* lib/krb5/free_host_realm.c: check for NULL realmlist
* lib/krb5/context.c: don't print warning if there is no krb5.conf
Wed Mar 10 19:29:46 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* configure.in: use AC_WFLAGS
Mon Mar 8 11:49:43 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* Release 0.1c
* kuser/klist.c: use print_version
* kuser/kdestroy.c: use print_version
* kdc/hpropd.c: use print_version
* kdc/hprop.c: use print_version
* kdc/config.c: use print_version
* kadmin/kadmind.c: use print_version
* kadmin/kadmin.c: use print_version
* appl/test/common.c: use print_version
* appl/afsutil/afslog.c: use print_version
Mon Mar 1 10:49:14 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* lib/krb5/get_addrs.c: SOCKADDR_HAS_SA_LEN ->
HAVE_STRUCT_SOCKADDR_SA_LEN
* configure.in, acconfig.h, cf/*: update to automake 1.4/autoconf 2.13
Sun Feb 28 18:19:20 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* lib/asn1/gen.c: make `BIT STRING's unsigned
* lib/asn1/{symbol.h,gen.c}: add TUInteger type
* lib/krb5/verify_user.c (krb5_verify_user): pass prompter to
krb5_get_init_creds_password
* lib/krb5/fcache.c (fcc_gen_new): implement
Sat Feb 27 22:41:23 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* doc/install.texi: krb4 is now automatically detected
* doc/misc.texi: update procedure to set supported encryption
types
* doc/setup.texi: change some silly wordings
Sat Feb 27 22:17:30 1999 Johan Danielsson <joda@blubb.pdc.kth.se>
* lib/krb5/keytab.c (fkt_remove_entry): make this work
* admin/ktutil.c: add minimally working `get' command
Sat Feb 27 19:44:49 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* lib/hdb/convert_db.c: more typos
* include/Makefile.am: remove EXTRA_DATA (as of autoconf
2.13/automake 1.4)
* appl/Makefile.am: OTP_dir
Fri Feb 26 17:37:00 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* doc/setup.texi: add kadmin section
* lib/asn1/check-der.c: fix printf warnings
Thu Feb 25 11:16:49 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* configure.in: -O does not belong in WFLAGS
Thu Feb 25 11:05:57 1999 Johan Danielsson <joda@blubb.pdc.kth.se>
* lib/asn1/der_put.c: fix der_put_int
Tue Feb 23 20:35:12 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* configure.in: use AC_BROKEN_GLOB
Mon Feb 22 15:12:44 1999 Johan Danielsson <joda@blubb.pdc.kth.se>
* configure.in: check for glob
Mon Feb 22 11:32:42 1999 Johan Danielsson <joda@hella.pdc.kth.se>
* Release 0.1b
Sat Feb 20 15:48:06 1999 Johan Danielsson <joda@blubb.pdc.kth.se>
* lib/hdb/convert_db.c: convert DES3 keys to des3-cbc-sha1, and
des3-cbc-md5
* lib/krb5/crypto.c (DES3_string_to_key): make this actually do
what the draft said it should
* lib/hdb/convert_db.c: little program for database conversion
* lib/hdb/db.c (DB_open): try to open database w/o .db extension
* lib/hdb/ndbm.c (NDBM_open): add test for database format
* lib/hdb/db.c (DB_open): add test for database format
* lib/asn1/gen_glue.c (generate_2int): don't depend on flags being
unsigned
* lib/hdb/hdb.c: change `hdb_set_master_key' to take an
EncryptionKey, and add a new function `hdb_set_master_keyfile' to
do what `hdb_set_master_key' used to do
* kdc/kstash.c: add `--convert-file' option to change keytype of
existing master key file
Fri Feb 19 07:04:14 1999 Assar Westerlund <assar@squid.pdc.kth.se>
* Release 0.1a
Sat Feb 13 17:12:53 1999 Assar Westerlund <assar@sics.se>
* lib/krb5/mk_safe.c (krb5_mk_safe): sizeof(buf) -> buf_size, buf
is now a `u_char *'
* lib/krb5/get_in_tkt.c (krb5_init_etype): etypes are now `int'
* lib/krb5/get_host_realm.c (krb5_get_host_realm): constize
orig_host
(krb5_salttype_to_string): new function (RSA_MD5_DES_verify,
RSA_MD5_DES3_verify): initialize ret
* lib/gssapi/init_sec_context.c (init_auth): remove unnecessary
gssapi_krb5_init. ask for KEYTYPE_DES credentials
* kadmin/get.c (print_entry_long): print the keytypes and salts
available for the principal
* configure.in (WFLAGS): add `-O' to catch unitialized variables
and such
(gethostname, mkstemp, getusershell, inet_aton): more tests
* lib/hdb/hdb.h: update prototypes
* configure.in: homogenize broken detection with krb4
* lib/kadm5/init_c.c (kadm5_c_init_with_context): remove unused
`error'
* lib/asn1/Makefile.am (check-der): add
* lib/asn1/gen.c (define_type): map ASN1 Integer to `int' instead
of `unsigned'
* lib/asn1/der_length.c (length_unsigned): new function
(length_int): handle signed integers
* lib/asn1/der_put.c (der_put_unsigned): new function
(der_put_int): handle signed integers
* lib/asn1/der_get.c (der_get_unsigned): new function
(der_get_int): handle signed integers
* lib/asn1/der.h: all integer functions take `int' instead of
`unsigned'
* lib/asn1/lex.l (filename): unused. remove.
* lib/asn1/check-der.c: new test program for der encoding and
decoding.
Mon Feb 1 04:09:06 1999 Assar Westerlund <assar@sics.se>
* lib/krb5/send_to_kdc.c (krb5_sendto_kdc): only call
gethostbyname2 with AF_INET6 if we actually have IPv6. From
"Brandon S. Allbery KF8NH" <allbery@kf8nh.apk.net>
* lib/krb5/changepw.c (get_kdc_address): dito
Sun Jan 31 06:26:36 1999 Assar Westerlund <assar@sics.se>
* kdc/connect.c (parse_prots): always bind to AF_INET, there are
v6-implementations without support for `mapped V4 addresses'.
From Jun-ichiro itojun Hagino <itojun@kame.net>
Sat Jan 30 22:38:27 1999 Assar Westerlund <assar@juguete.sics.se>
* Release 0.0u
Sat Jan 30 13:43:02 1999 Assar Westerlund <assar@sics.se>
* lib/krb5/Makefile.am: explicit rules for *.et files
* lib/kadm5/init_c.c (get_kadm_ticket): only remove creds if
krb5_get_credentials was succesful.
(get_new_cache): return better error codes and return earlier.
(get_cred_cache): only delete default_client if it's different
from client
(kadm5_c_init_with_context): return a more descriptive error.
* kdc/kerberos5.c (check_flags): handle NULL client or server
* lib/krb5/sendauth.c (krb5_sendauth): return the error in
`ret_error' iff != NULL
* lib/krb5/rd_error.c (krb5_free_error, krb5_free_error_contents):
new functions
* lib/krb5/mk_req_ext.c (krb5_mk_req_extended): more
type-correctness
* lib/krb5/krb5.h (krb5_error): typedef to KRB_ERROR
* lib/krb5/init_creds_pw.c: KRB5_TGS_NAME: use
* lib/krb5/get_cred.c: KRB5_TGS_NAME: use
* lib/kafs/afskrb5.c (afslog_uid_int): update to changes
* lib/kadm5/rename_s.c (kadm5_s_rename_principal): call remove
instead of rename, but shouldn't this just call rename?
* lib/kadm5/get_s.c (kadm5_s_get_principal): always return an
error if the principal wasn't found.
* lib/hdb/ndbm.c (NDBM_seq): unseal key
* lib/hdb/db.c (DB_seq): unseal key
* lib/asn1/Makefile.am: added explicit rules for asn1_err.[ch]
* kdc/hprop.c (v4_prop): add krbtgt/THISREALM@OTHERREALM when
finding cross-realm tgts in the v4 database
* kadmin/mod.c (mod_entry): check the number of arguments. check
that kadm5_get_principal worked.
* lib/krb5/keytab.c (fkt_remove_entry): remove KRB5_KT_NOTFOUND if
we weren't able to remove it.
* admin/ktutil.c: less drive-by-deleting. From Love
<lha@e.kth.se>
* kdc/connect.c (parse_ports): copy the string before mishandling
it with strtok_r
* kdc/kerberos5.c (tgs_rep2): print the principal with mismatching
kvnos
* kadmin/kadmind.c (main): convert `debug_port' to network byte
order
* kadmin/kadmin.c: allow specification of port number.
* lib/kadm5/kadm5_locl.h (kadm5_client_context): add
`kadmind_port'.
* lib/kadm5/init_c.c (_kadm5_c_init_context): move up
initalize_kadm5_error_table_r.
allow specification of port number.
From Love <lha@stacken.kth.se>
* kuser/klist.c: add option -t | --test
|