summaryrefslogtreecommitdiff
path: root/server/dhcp.c
blob: 0b261c213d4a483a74804d8a6085e27768ca0cbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
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
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
/* dhcp.c

   DHCP Protocol engine. */

/*
 * Copyright (C) 2004-2022 Internet Systems Consortium, Inc. ("ISC")
 * Copyright (c) 1995-2003 by Internet Software Consortium
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 *
 *   Internet Systems Consortium, Inc.
 *   PO Box 360
 *   Newmarket, NH 03857 USA
 *   <info@isc.org>
 *   https://www.isc.org/
 *
 */

#include "dhcpd.h"
#include <errno.h>
#include <limits.h>
#include <sys/time.h>

static void maybe_return_agent_options(struct packet *packet,
				       struct option_state *options);

static int reuse_lease (struct packet* packet, struct lease* new_lease,
			struct lease* lease, struct lease_state *state,
			int offer, int* same_client);

static int do_ping_check(struct packet* packet, struct lease_state* state,
                         struct lease* lease, TIME original_cltt,
			 int same_client);

#if defined(DHCPv6) && defined(DHCP4o6)
static int locate_network6(struct packet *packet);
#endif

int outstanding_pings;

#if defined(DELAYED_ACK)
static void delayed_ack_enqueue(struct lease *);
static void delayed_acks_timer(void *);


struct leasequeue *ackqueue_head, *ackqueue_tail;
static struct leasequeue *free_ackqueue;
static struct timeval max_fsync;

int outstanding_acks;
int max_outstanding_acks = DEFAULT_DELAYED_ACK;
int max_ack_delay_secs = DEFAULT_ACK_DELAY_SECS;
int max_ack_delay_usecs = DEFAULT_ACK_DELAY_USECS;
int min_ack_delay_usecs = DEFAULT_MIN_ACK_DELAY_USECS;
#endif

static char dhcp_message [256];
static int site_code_min;

static int find_min_site_code(struct universe *);
static isc_result_t lowest_site_code(const void *, unsigned, void *);

static const char *dhcp_type_names [] = {
	"DHCPDISCOVER",
	"DHCPOFFER",
	"DHCPREQUEST",
	"DHCPDECLINE",
	"DHCPACK",
	"DHCPNAK",
	"DHCPRELEASE",
	"DHCPINFORM",
	"type 9",
	"DHCPLEASEQUERY",
	"DHCPLEASEUNASSIGNED",
	"DHCPLEASEUNKNOWN",
	"DHCPLEASEACTIVE"
};
const int dhcp_type_name_max = ((sizeof dhcp_type_names) / sizeof (char *));

#if defined (TRACING)
# define send_packet trace_packet_send
#endif

static TIME leaseTimeCheck(TIME calculated, TIME alternate);

void
dhcp (struct packet *packet) {
	int ms_nulltp = 0;
	struct option_cache *oc;
	struct lease *lease = NULL;
	const char *errmsg;
	struct data_string data;

	if (!locate_network(packet) &&
	    packet->packet_type != DHCPREQUEST &&
	    packet->packet_type != DHCPINFORM &&
	    packet->packet_type != DHCPLEASEQUERY) {
		const char *s;
		char typebuf[32];
		errmsg = "unknown network segment";
	      bad_packet:

		if (packet->packet_type > 0 &&
		    packet->packet_type <= dhcp_type_name_max) {
			s = dhcp_type_names[packet->packet_type - 1];
		} else {
			/* %Audit% Cannot exceed 28 bytes. %2004.06.17,Safe% */
			sprintf(typebuf, "type %d", packet->packet_type);
			s = typebuf;
		}

#if defined(DHCPv6) && defined(DHCP4o6)
		if (dhcpv4_over_dhcpv6 && (packet->dhcp4o6_response != NULL)) {
			log_info("DHCP4o6 %s from %s via %s: %s", s,
				 (packet->raw->htype
				  ? print_hw_addr(packet->raw->htype,
						  packet->raw->hlen,
						  packet->raw->chaddr)
				  : "<no identifier>"),
				 piaddr(packet->client_addr),
				 errmsg);
			goto out;
		}
#endif

		log_info("%s from %s via %s: %s", s,
			 (packet->raw->htype
			  ? print_hw_addr(packet->raw->htype,
					  packet->raw->hlen,
					  packet->raw->chaddr)
			  : "<no identifier>"),
			 packet->raw->giaddr.s_addr
			 ? inet_ntoa(packet->raw->giaddr)
			 : packet->interface->name, errmsg);
		goto out;
	}

	/* There is a problem with the relay agent information option,
	 * which is that in order for a normal relay agent to append
	 * this option, the relay agent has to have been involved in
	 * getting the packet from the client to the server.  Note
	 * that this is the software entity known as the relay agent,
	 * _not_ the hardware entity known as a router in which the
	 * relay agent may be running, so the fact that a router has
	 * forwarded a packet does not mean that the relay agent in
	 * the router was involved.
	 *
	 * So when the client broadcasts (DHCPDISCOVER, or giaddr is set),
	 * we can be sure that there are either agent options in the
	 * packet, or there aren't supposed to be.  When the giaddr is not
	 * set, it's still possible that the client is on a directly
	 * attached subnet, and agent options are being appended by an l2
	 * device that has no address, and so sets no giaddr.
	 *
	 * But in either case it's possible that the packets we receive
	 * from the client in RENEW state may not include the agent options,
	 * so if they are not in the packet we must "pretend" the last values
	 * we observed were provided.
	 */
	if (packet->packet_type == DHCPREQUEST &&
	    packet->raw->ciaddr.s_addr && !packet->raw->giaddr.s_addr &&
	    (packet->options->universe_count <= agent_universe.index ||
	     packet->options->universes[agent_universe.index] == NULL))
	{
		struct iaddr cip;

		cip.len = sizeof packet -> raw -> ciaddr;
		memcpy (cip.iabuf, &packet -> raw -> ciaddr,
			sizeof packet -> raw -> ciaddr);
		if (!find_lease_by_ip_addr (&lease, cip, MDL))
			goto nolease;

		/* If there are no agent options on the lease, it's not
		   interesting. */
		if (!lease -> agent_options)
			goto nolease;

		/* The client should not be unicasting a renewal if its lease
		   has expired, so make it go through the process of getting
		   its agent options legally. */
		if (lease -> ends < cur_time)
			goto nolease;

		if (lease -> uid_len) {
			oc = lookup_option (&dhcp_universe, packet -> options,
					    DHO_DHCP_CLIENT_IDENTIFIER);
			if (!oc)
				goto nolease;

			memset (&data, 0, sizeof data);
			if (!evaluate_option_cache (&data,
						    packet, (struct lease *)0,
						    (struct client_state *)0,
						    packet -> options,
						    (struct option_state *)0,
						    &global_scope, oc, MDL))
				goto nolease;
			if (lease -> uid_len != data.len ||
			    memcmp (lease -> uid, data.data, data.len)) {
				data_string_forget (&data, MDL);
				goto nolease;
			}
			data_string_forget (&data, MDL);
		} else
			if ((lease -> hardware_addr.hbuf [0] !=
			     packet -> raw -> htype) ||
			    (lease -> hardware_addr.hlen - 1 !=
			     packet -> raw -> hlen) ||
			    memcmp (&lease -> hardware_addr.hbuf [1],
				    packet -> raw -> chaddr,
				    packet -> raw -> hlen))
				goto nolease;

		/* Okay, so we found a lease that matches the client. */
		option_chain_head_reference ((struct option_chain_head **)
					     &(packet -> options -> universes
					       [agent_universe.index]),
					     lease -> agent_options, MDL);

		if (packet->options->universe_count <= agent_universe.index)
			packet->options->universe_count =
						agent_universe.index + 1;

		packet->agent_options_stashed = ISC_TRUE;
	}
      nolease:

	/* If a client null terminates options it sends, it probably
	 * expects the server to reciprocate.
	 */
	if ((oc = lookup_option (&dhcp_universe, packet -> options,
				 DHO_HOST_NAME))) {
		if (!oc -> expression)
			ms_nulltp = oc->flags & OPTION_HAD_NULLS;
	}

	/* Classify the client. */
	classify_client (packet);

	switch (packet -> packet_type) {
	      case DHCPDISCOVER:
		dhcpdiscover (packet, ms_nulltp);
		break;

	      case DHCPREQUEST:
		dhcprequest (packet, ms_nulltp, lease);
		break;

	      case DHCPRELEASE:
		dhcprelease (packet, ms_nulltp);
		break;

	      case DHCPDECLINE:
		dhcpdecline (packet, ms_nulltp);
		break;

	      case DHCPINFORM:
		dhcpinform (packet, ms_nulltp);
		break;

	      case DHCPLEASEQUERY:
		dhcpleasequery(packet, ms_nulltp);
		break;

	      case DHCPACK:
	      case DHCPOFFER:
	      case DHCPNAK:
	      case DHCPLEASEUNASSIGNED:
	      case DHCPLEASEUNKNOWN:
	      case DHCPLEASEACTIVE:
		break;

	      default:
		errmsg = "unknown packet type";
		goto bad_packet;
	}
      out:
	if (lease)
		lease_dereference (&lease, MDL);
}

void dhcpdiscover (packet, ms_nulltp)
	struct packet *packet;
	int ms_nulltp;
{
	struct lease *lease = (struct lease *)0;
	char msgbuf [1024]; /* XXX */
	TIME when;
	const char *s;
	int peer_has_leases = 0;
#if defined (FAILOVER_PROTOCOL)
	dhcp_failover_state_t *peer;
#endif

	find_lease (&lease, packet, packet -> shared_network,
		    0, &peer_has_leases, (struct lease *)0, MDL);

	if (lease && lease -> client_hostname) {
		if ((strlen (lease -> client_hostname) <= 64) &&
		    db_printable((unsigned char *)lease->client_hostname))
			s = lease -> client_hostname;
		else
			s = "Hostname Unsuitable for Printing";
	} else
		s = (char *)0;

	/* %Audit% This is log output. %2004.06.17,Safe%
	 * If we truncate we hope the user can get a hint from the log.
	 */
#if defined(DHCPv6) && defined(DHCP4o6)
	if (dhcpv4_over_dhcpv6 && (packet->dhcp4o6_response != NULL)) {
		snprintf (msgbuf, sizeof msgbuf,
			  "DHCP4o6 DHCPDISCOVER from %s %s%s%svia %s",
			  (packet -> raw -> htype
			   ? print_hw_addr (packet -> raw -> htype,
					    packet -> raw -> hlen,
					    packet -> raw -> chaddr)
			   : (lease
			      ? print_hex_1(lease->uid_len, lease->uid, 60)
			      : "<no identifier>")),
			  s ? "(" : "", s ? s : "", s ? ") " : "",
			  piaddr(packet->client_addr));
	} else
#endif
	snprintf (msgbuf, sizeof msgbuf, "DHCPDISCOVER from %s %s%s%svia %s",
		 (packet -> raw -> htype
		  ? print_hw_addr (packet -> raw -> htype,
				   packet -> raw -> hlen,
				   packet -> raw -> chaddr)
		  : (lease
		     ? print_hex_1(lease->uid_len, lease->uid, 60)
		     : "<no identifier>")),
		  s ? "(" : "", s ? s : "", s ? ") " : "",
		  packet -> raw -> giaddr.s_addr
		  ? inet_ntoa (packet -> raw -> giaddr)
		  : packet -> interface -> name);

	/* Sourceless packets don't make sense here. */
	if (!packet -> shared_network) {
#if defined(DHCPv6) && defined(DHCP4o6)
		if (dhcpv4_over_dhcpv6 && (packet->dhcp4o6_response != NULL)) {
			log_info ("DHCP4o6 packet from unknown subnet: %s",
				  piaddr(packet->client_addr));
		} else
#endif
		log_info ("Packet from unknown subnet: %s",
		      inet_ntoa (packet -> raw -> giaddr));
		goto out;
	}

#if defined (FAILOVER_PROTOCOL)
	if (lease && lease -> pool && lease -> pool -> failover_peer) {
		peer = lease -> pool -> failover_peer;

		/*
		 * If the lease is ours to (re)allocate, then allocate it.
		 *
		 * If the lease is active, it belongs to the client.  This
		 * is the right lease, if we are to offer one.  We decide
		 * whether or not to offer later on.
		 *
		 * If the lease was last active, and we've reached this
		 * point, then it was last active with the same client.  We
		 * can safely re-activate the lease with this client.
		 */
		if (lease->binding_state == FTS_ACTIVE ||
		    lease->rewind_binding_state == FTS_ACTIVE ||
		    lease_mine_to_reallocate(lease)) {
			; /* This space intentionally left blank. */

		/* Otherwise, we can't let the client have this lease. */
		} else {
#if defined (DEBUG_FIND_LEASE)
		    log_debug ("discarding %s - %s",
			       piaddr (lease -> ip_addr),
			       binding_state_print (lease -> binding_state));
#endif
		    lease_dereference (&lease, MDL);
		}
	}
#endif

	/* If we didn't find a lease, try to allocate one... */
	if (!lease) {
		if (!allocate_lease (&lease, packet,
				     packet -> shared_network -> pools,
				     &peer_has_leases)) {
			if (peer_has_leases)
				log_error ("%s: peer holds all free leases",
					   msgbuf);
			else
				log_error ("%s: network %s: no free leases",
					   msgbuf,
					   packet -> shared_network -> name);
			return;
		}
	}

#if defined (FAILOVER_PROTOCOL)
	if (lease && lease -> pool && lease -> pool -> failover_peer) {
		peer = lease -> pool -> failover_peer;
		if (peer -> service_state == not_responding ||
		    peer -> service_state == service_startup) {
			log_info ("%s: not responding%s",
				  msgbuf, peer -> nrr);
			goto out;
		}
	} else
		peer = (dhcp_failover_state_t *)0;

	/* Do load balancing if configured. */
	if (peer && (peer -> service_state == cooperating) &&
	    !load_balance_mine (packet, peer)) {
		if (peer_has_leases) {
			log_debug ("%s: load balance to peer %s",
				   msgbuf, peer -> name);
			goto out;
		} else {
			log_debug ("%s: cancel load balance to peer %s - %s",
				   msgbuf, peer -> name, "no free leases");
		}
	}
#endif

	/* If it's an expired lease, get rid of any bindings. */
	if (lease -> ends < cur_time && lease -> scope)
		binding_scope_dereference (&lease -> scope, MDL);

	/* Set the lease to really expire in 2 minutes, unless it has
	   not yet expired, in which case leave its expiry time alone. */
	when = cur_time + 120;
	if (when < lease -> ends)
		when = lease -> ends;

	ack_lease (packet, lease, DHCPOFFER, when, msgbuf, ms_nulltp,
		   (struct host_decl *)0);
      out:
	if (lease)
		lease_dereference (&lease, MDL);
}

void dhcprequest (packet, ms_nulltp, ip_lease)
	struct packet *packet;
	int ms_nulltp;
	struct lease *ip_lease;
{
	struct lease *lease;
	struct iaddr cip;
	struct iaddr sip;
	struct subnet *subnet;
	int ours = 0;
	struct option_cache *oc;
	struct data_string data;
	char msgbuf [1024]; /* XXX */
	const char *s;
	char smbuf [19];
#if defined (FAILOVER_PROTOCOL)
	dhcp_failover_state_t *peer;
#endif
	int have_requested_addr = 0;

	oc = lookup_option (&dhcp_universe, packet -> options,
			    DHO_DHCP_REQUESTED_ADDRESS);
	memset (&data, 0, sizeof data);
	if (oc &&
	    evaluate_option_cache (&data, packet, (struct lease *)0,
				   (struct client_state *)0,
				   packet -> options, (struct option_state *)0,
				   &global_scope, oc, MDL)) {
		cip.len = 4;
		memcpy (cip.iabuf, data.data, 4);
		data_string_forget (&data, MDL);
		have_requested_addr = 1;
	} else {
		oc = (struct option_cache *)0;
		cip.len = 4;
		memcpy (cip.iabuf, &packet -> raw -> ciaddr.s_addr, 4);
	}

	/* Find the lease that matches the address requested by the
	   client. */

	subnet = (struct subnet *)0;
	lease = (struct lease *)0;
	if (find_subnet (&subnet, cip, MDL))
		find_lease (&lease, packet,
			    subnet -> shared_network, &ours, 0, ip_lease, MDL);

	if (lease && lease -> client_hostname) {
		if ((strlen (lease -> client_hostname) <= 64) &&
		    db_printable((unsigned char *)lease->client_hostname))
			s = lease -> client_hostname;
		else
			s = "Hostname Unsuitable for Printing";
	} else
		s = (char *)0;

	oc = lookup_option (&dhcp_universe, packet -> options,
			    DHO_DHCP_SERVER_IDENTIFIER);
	memset (&data, 0, sizeof data);
	if (oc &&
	    evaluate_option_cache (&data, packet, (struct lease *)0,
				   (struct client_state *)0,
				   packet -> options, (struct option_state *)0,
				   &global_scope, oc, MDL)) {
		sip.len = 4;
		memcpy (sip.iabuf, data.data, 4);
		data_string_forget (&data, MDL);
		/* piaddr() should not return more than a 15 byte string.
		 * safe.
		 */
		sprintf (smbuf, " (%s)", piaddr (sip));
	} else {
		smbuf [0] = 0;
		sip.len = 0;
	}

	/* %Audit% This is log output. %2004.06.17,Safe%
	 * If we truncate we hope the user can get a hint from the log.
	 */
#if defined(DHCPv6) && defined(DHCP4o6)
	if (dhcpv4_over_dhcpv6 && (packet->dhcp4o6_response != NULL)) {
		snprintf (msgbuf, sizeof msgbuf,
			  "DHCP4o6 DHCPREQUEST for %s%s from %s %s%s%svia %s",
			  piaddr (cip), smbuf,
			  (packet -> raw -> htype
			   ? print_hw_addr (packet -> raw -> htype,
					    packet -> raw -> hlen,
					    packet -> raw -> chaddr)
			   : (lease
			      ? print_hex_1(lease->uid_len, lease->uid, 60)
			      : "<no identifier>")),
			  s ? "(" : "", s ? s : "", s ? ") " : "",
			  piaddr(packet->client_addr));
	} else
#endif
	snprintf (msgbuf, sizeof msgbuf,
		 "DHCPREQUEST for %s%s from %s %s%s%svia %s",
		 piaddr (cip), smbuf,
		 (packet -> raw -> htype
		  ? print_hw_addr (packet -> raw -> htype,
				   packet -> raw -> hlen,
				   packet -> raw -> chaddr)
		  : (lease
		     ? print_hex_1(lease->uid_len, lease->uid, 60)
		     : "<no identifier>")),
		 s ? "(" : "", s ? s : "", s ? ") " : "",
		  packet -> raw -> giaddr.s_addr
		  ? inet_ntoa (packet -> raw -> giaddr)
		  : packet -> interface -> name);

#if defined (FAILOVER_PROTOCOL)
	if (lease && lease -> pool && lease -> pool -> failover_peer) {
		peer = lease -> pool -> failover_peer;
		if (peer -> service_state == not_responding ||
		    peer -> service_state == service_startup) {
			log_info ("%s: not responding%s",
				  msgbuf, peer -> nrr);
			goto out;
		}

		/* "load balance to peer" - is not done at all for request.
		 *
		 * If it's RENEWING, we are the only server to hear it, so
		 * we have to serve it.   If it's REBINDING, it's out of
		 * communication with the other server, so there's no point
		 * in waiting to serve it.    However, if the lease we're
		 * offering is not a free lease, then we may be the only
		 * server that can offer it, so we can't load balance if
		 * the lease isn't in the free or backup state.  If it is
		 * in the free or backup state, then that state is what
		 * mandates one server or the other should perform the
		 * allocation, not the LBA...we know the peer cannot
		 * allocate a request for an address in our free state.
		 *
		 * So our only compass is lease_mine_to_reallocate().  This
		 * effects both load balancing, and a sanity-check that we
		 * are not going to try to allocate a lease that isn't ours.
		 */
		if ((lease -> binding_state == FTS_FREE ||
		     lease -> binding_state == FTS_BACKUP) &&
		    !lease_mine_to_reallocate (lease)) {
			log_debug ("%s: lease owned by peer", msgbuf);
			goto out;
		}

		/*
		 * If the lease is in a transitional state, we can't
		 * renew it unless we can rewind it to a non-transitional
		 * state (active, free, or backup).  lease_mine_to_reallocate()
		 * checks for free/backup, so we only need to check for active.
		 */
		if ((lease->binding_state == FTS_RELEASED ||
		     lease->binding_state == FTS_EXPIRED) &&
		    lease->rewind_binding_state != FTS_ACTIVE &&
		    !lease_mine_to_reallocate(lease)) {
			log_debug("%s: lease in transition state %s", msgbuf,
				  (lease->binding_state == FTS_RELEASED)
				   ? "released" : "expired");
			goto out;
		}

		/* It's actually very unlikely that we'll ever get here,
		   but if we do, tell the client to stop using the lease,
		   because the administrator reset it. */
		if (lease -> binding_state == FTS_RESET &&
		    !lease_mine_to_reallocate (lease)) {
			log_debug ("%s: lease reset by administrator", msgbuf);
			nak_lease (packet, &cip, lease->subnet->group);
			goto out;
		}

		/* If server-id-check is enabled, verify that the client's
		 * server source address (sip from incoming packet) is ours.
		 * To avoid problems with confused clients we do some sanity
		 * checks to verify sip's length and that it isn't all zeros.
		 * We then get the server id we would likely use for this
		 * packet and compare them.  If they don't match it we assume
		 * we didn't send the offer and so we don't process the
		 * request. */
		if ((server_id_check == 1) && (sip.len == 4) &&
		    (memcmp(sip.iabuf, "\0\0\0\0", sip.len) != 0)) {
			struct in_addr from;
			struct option_state *eval_options = NULL;

			eval_network_statements(&eval_options, packet, NULL);
			get_server_source_address(&from, eval_options,
						  NULL, packet);
			option_state_dereference (&eval_options, MDL);
			if (memcmp(sip.iabuf, &from, sip.len) != 0) {
				log_debug("%s: not our server id", msgbuf);
				goto out;
			}
		}

		/* At this point it's possible that we will get a broadcast
		   DHCPREQUEST for a lease that we didn't offer, because
		   both we and the peer are in a position to offer it.
		   In that case, we probably shouldn't answer.   In order
		   to not answer, we would have to compare the server
		   identifier sent by the client with the list of possible
		   server identifiers we can send, and if the client's
		   identifier isn't on the list, drop the DHCPREQUEST.
		   We aren't currently doing that for two reasons - first,
		   it's not clear that all clients do the right thing
		   with respect to sending the client identifier, which
		   could mean that we might simply not respond to a client
		   that is depending on us to respond.   Secondly, we allow
		   the user to specify the server identifier to send, and
		   we don't enforce that the server identifier should be
		   one of our IP addresses.   This is probably not a big
		   deal, but it's theoretically an issue.

		   The reason we care about this is that if both servers
		   send a DHCPACK to the DHCPREQUEST, they are then going
		   to send dueling BNDUPD messages, which could cause
		   trouble.   I think it causes no harm, but it seems
		   wrong. */
	} else
		peer = (dhcp_failover_state_t *)0;
#endif

	/* If a client on a given network REQUESTs a lease on an
	   address on a different network, NAK it.  If the Requested
	   Address option was used, the protocol says that it must
	   have been broadcast, so we can trust the source network
	   information.

	   If ciaddr was specified and Requested Address was not, then
	   we really only know for sure what network a packet came from
	   if it came through a BOOTP gateway - if it came through an
	   IP router, we'll just have to assume that it's cool.

	   If we don't think we know where the packet came from, it
	   came through a gateway from an unknown network, so it's not
	   from a RENEWING client.  If we recognize the network it
	   *thinks* it's on, we can NAK it even though we don't
	   recognize the network it's *actually* on; otherwise we just
	   have to ignore it.

	   We don't currently try to take advantage of access to the
	   raw packet, because it's not available on all platforms.
	   So a packet that was unicast to us through a router from a
	   RENEWING client is going to look exactly like a packet that
	   was broadcast to us from an INIT-REBOOT client.

	   Since we can't tell the difference between these two kinds
	   of packets, if the packet appears to have come in off the
	   local wire, we have to treat it as if it's a RENEWING
	   client.  This means that we can't NAK a RENEWING client on
	   the local wire that has a bogus address.  The good news is
	   that we won't ACK it either, so it should revert to INIT
	   state and send us a DHCPDISCOVER, which we *can* work with.

	   Because we can't detect that a RENEWING client is on the
	   wrong wire, it's going to sit there trying to renew until
	   it gets to the REBIND state, when we *can* NAK it because
	   the packet will get to us through a BOOTP gateway.  We
	   shouldn't actually see DHCPREQUEST packets from RENEWING
	   clients on the wrong wire anyway, since their idea of their
	   local router will be wrong.  In any case, the protocol
	   doesn't really allow us to NAK a DHCPREQUEST from a
	   RENEWING client, so we can punt on this issue. */

	if (!packet -> shared_network ||
	    (packet -> raw -> ciaddr.s_addr &&
	     packet -> raw -> giaddr.s_addr) ||
	    (have_requested_addr && !packet -> raw -> ciaddr.s_addr)) {

		/* If we don't know where it came from but we do know
		   where it claims to have come from, it didn't come
		   from there. */
		if (!packet -> shared_network) {
			if (subnet && subnet -> group -> authoritative) {
				log_info ("%s: wrong network.", msgbuf);
				nak_lease (packet, &cip, NULL);
				goto out;
			}
			/* Otherwise, ignore it. */
			log_info ("%s: ignored (%s).", msgbuf,
				  (subnet
				   ? "not authoritative" : "unknown subnet"));
			goto out;
		}

		/* If we do know where it came from and it asked for an
		   address that is not on that shared network, nak it. */
		if (subnet)
			subnet_dereference (&subnet, MDL);
		if (!find_grouped_subnet (&subnet, packet -> shared_network,
					  cip, MDL)) {
			if (packet -> shared_network -> group -> authoritative)
			{
				log_info ("%s: wrong network.", msgbuf);
				nak_lease (packet, &cip, NULL);
				goto out;
			}
			log_info ("%s: ignored (not authoritative).", msgbuf);
			return;
		}
	}

	/* If the address the client asked for is ours, but it wasn't
	   available for the client, NAK it. */
	if (!lease && ours) {
		log_info ("%s: lease %s unavailable.", msgbuf, piaddr (cip));
		nak_lease (packet, &cip, (subnet ? subnet->group : NULL));
		goto out;
	}

	/* Otherwise, send the lease to the client if we found one. */
	if (lease) {
		ack_lease (packet, lease, DHCPACK, 0, msgbuf, ms_nulltp,
			   (struct host_decl *)0);
	} else
		log_info ("%s: unknown lease %s.", msgbuf, piaddr (cip));

      out:
	if (subnet)
		subnet_dereference (&subnet, MDL);
	if (lease)
		lease_dereference (&lease, MDL);
	return;
}

void dhcprelease (packet, ms_nulltp)
	struct packet *packet;
	int ms_nulltp;
{
	struct lease *lease = (struct lease *)0, *next = (struct lease *)0;
	struct iaddr cip;
	struct option_cache *oc;
	struct data_string data;
	const char *s;
	char msgbuf [1024], cstr[16]; /* XXX */


	/* DHCPRELEASE must not specify address in requested-address
	   option, but old protocol specs weren't explicit about this,
	   so let it go. */
	if ((oc = lookup_option (&dhcp_universe, packet -> options,
				 DHO_DHCP_REQUESTED_ADDRESS))) {
		log_info ("DHCPRELEASE from %s specified requested-address.",
		      print_hw_addr (packet -> raw -> htype,
				     packet -> raw -> hlen,
				     packet -> raw -> chaddr));
	}

	oc = lookup_option (&dhcp_universe, packet -> options,
			    DHO_DHCP_CLIENT_IDENTIFIER);
	memset (&data, 0, sizeof data);
	if (oc &&
	    evaluate_option_cache (&data, packet, (struct lease *)0,
				   (struct client_state *)0,
				   packet -> options, (struct option_state *)0,
				   &global_scope, oc, MDL)) {
		find_lease_by_uid (&lease, data.data, data.len, MDL);
		data_string_forget (&data, MDL);

		/* See if we can find a lease that matches the IP address
		   the client is claiming. */
		while (lease) {
			if (lease -> n_uid)
				lease_reference (&next, lease -> n_uid, MDL);
			if (!memcmp (&packet -> raw -> ciaddr,
				     lease -> ip_addr.iabuf, 4)) {
				break;
			}
			lease_dereference (&lease, MDL);
			if (next) {
				lease_reference (&lease, next, MDL);
				lease_dereference (&next, MDL);
			}
		}
		if (next)
			lease_dereference (&next, MDL);
	}

	/* The client is supposed to pass a valid client-identifier,
	   but the spec on this has changed historically, so try the
	   IP address in ciaddr if the client-identifier fails. */
	if (!lease) {
		cip.len = 4;
		memcpy (cip.iabuf, &packet -> raw -> ciaddr, 4);
		find_lease_by_ip_addr (&lease, cip, MDL);
	}


	/* If the hardware address doesn't match, don't do the release. */
	if (lease &&
	    (lease -> hardware_addr.hlen != packet -> raw -> hlen + 1 ||
	     lease -> hardware_addr.hbuf [0] != packet -> raw -> htype ||
	     memcmp (&lease -> hardware_addr.hbuf [1],
		     packet -> raw -> chaddr, packet -> raw -> hlen)))
		lease_dereference (&lease, MDL);

	if (lease && lease -> client_hostname) {
		if ((strlen (lease -> client_hostname) <= 64) &&
		    db_printable((unsigned char *)lease->client_hostname))
			s = lease -> client_hostname;
		else
			s = "Hostname Unsuitable for Printing";
	} else
		s = (char *)0;

	/* %Audit% Cannot exceed 16 bytes. %2004.06.17,Safe%
	 * We copy this out to stack because we actually want to log two
	 * inet_ntoa()'s in this message.
	 */
	strncpy(cstr, inet_ntoa (packet -> raw -> ciaddr), 15);
	cstr[15] = '\0';

	/* %Audit% This is log output. %2004.06.17,Safe%
	 * If we truncate we hope the user can get a hint from the log.
	 */
#if defined(DHCPv6) && defined(DHCP4o6)
	if (dhcpv4_over_dhcpv6 && (packet->dhcp4o6_response != NULL)) {
		snprintf (msgbuf, sizeof msgbuf,
			  "DHCP4o6 DHCPRELEASE of %s from %s %s%s%svia "
			  "%s (%sfound)",
			  cstr,
			  (packet -> raw -> htype
			   ? print_hw_addr (packet -> raw -> htype,
					    packet -> raw -> hlen,
					    packet -> raw -> chaddr)
			   : (lease
			      ? print_hex_1(lease->uid_len, lease->uid, 60)
			      : "<no identifier>")),
			  s ? "(" : "", s ? s : "", s ? ") " : "",
			  piaddr(packet->client_addr),
			  lease ? "" : "not ");
	} else
#endif
	snprintf (msgbuf, sizeof msgbuf,
		 "DHCPRELEASE of %s from %s %s%s%svia %s (%sfound)",
		 cstr,
		 (packet -> raw -> htype
		  ? print_hw_addr (packet -> raw -> htype,
				   packet -> raw -> hlen,
				   packet -> raw -> chaddr)
		  : (lease
		     ? print_hex_1(lease->uid_len, lease->uid, 60)
		     : "<no identifier>")),
		 s ? "(" : "", s ? s : "", s ? ") " : "",
		 packet -> raw -> giaddr.s_addr
		 ? inet_ntoa (packet -> raw -> giaddr)
		 : packet -> interface -> name,
		 lease ? "" : "not ");

#if defined (FAILOVER_PROTOCOL)
	if (lease && lease -> pool && lease -> pool -> failover_peer) {
		dhcp_failover_state_t *peer = lease -> pool -> failover_peer;
		if (peer -> service_state == not_responding ||
		    peer -> service_state == service_startup) {
			log_info ("%s: ignored%s",
				  peer -> name, peer -> nrr);
			goto out;
		}

		/* DHCPRELEASE messages are unicast, so if the client
		   sent the DHCPRELEASE to us, it's not going to send it
		   to the peer.   Not sure why this would happen, and
		   if it does happen I think we still have to change the
		   lease state, so that's what we're doing.
		   XXX See what it says in the draft about this. */
	}
#endif

	/* If we found a lease, release it. */
	if (lease && lease -> ends > cur_time) {
		release_lease (lease, packet);
	}
	log_info ("%s", msgbuf);
#if defined(FAILOVER_PROTOCOL)
      out:
#endif
	if (lease)
		lease_dereference (&lease, MDL);
}

void dhcpdecline (packet, ms_nulltp)
	struct packet *packet;
	int ms_nulltp;
{
	struct lease *lease = (struct lease *)0;
	struct option_state *options = (struct option_state *)0;
	int ignorep = 0;
	int i;
	const char *status;
	const char *s;
	char msgbuf [1024]; /* XXX */
	struct iaddr cip;
	struct option_cache *oc;
	struct data_string data;

	/* DHCPDECLINE must specify address. */
	if (!(oc = lookup_option (&dhcp_universe, packet -> options,
				  DHO_DHCP_REQUESTED_ADDRESS)))
		return;
	memset (&data, 0, sizeof data);
	if (!evaluate_option_cache (&data, packet, (struct lease *)0,
				    (struct client_state *)0,
				    packet -> options,
				    (struct option_state *)0,
				    &global_scope, oc, MDL))
		return;

	cip.len = 4;
	memcpy (cip.iabuf, data.data, 4);
	data_string_forget (&data, MDL);
	find_lease_by_ip_addr (&lease, cip, MDL);

	if (lease && lease -> client_hostname) {
		if ((strlen (lease -> client_hostname) <= 64) &&
		    db_printable((unsigned char *)lease->client_hostname))
			s = lease -> client_hostname;
		else
			s = "Hostname Unsuitable for Printing";
	} else
		s = (char *)0;

	/* %Audit% This is log output. %2004.06.17,Safe%
	 * If we truncate we hope the user can get a hint from the log.
	 */
#if defined(DHCPv6) && defined(DHCP4o6)
	if (dhcpv4_over_dhcpv6 && (packet->dhcp4o6_response != NULL)) {
		snprintf (msgbuf, sizeof msgbuf,
			  "DHCP4o6 DHCPDECLINE of %s from %s %s%s%svia %s",
			  piaddr (cip),
			  (packet -> raw -> htype
			   ? print_hw_addr (packet -> raw -> htype,
					    packet -> raw -> hlen,
					    packet -> raw -> chaddr)
			   : (lease
			      ? print_hex_1(lease->uid_len, lease->uid, 60)
			      : "<no identifier>")),
			  s ? "(" : "", s ? s : "", s ? ") " : "",
			  piaddr(packet->client_addr));
	} else
#endif
	snprintf (msgbuf, sizeof msgbuf,
		 "DHCPDECLINE of %s from %s %s%s%svia %s",
		 piaddr (cip),
		 (packet -> raw -> htype
		  ? print_hw_addr (packet -> raw -> htype,
				   packet -> raw -> hlen,
				   packet -> raw -> chaddr)
		  : (lease
		     ? print_hex_1(lease->uid_len, lease->uid, 60)
		     : "<no identifier>")),
		 s ? "(" : "", s ? s : "", s ? ") " : "",
		 packet -> raw -> giaddr.s_addr
		 ? inet_ntoa (packet -> raw -> giaddr)
		 : packet -> interface -> name);

	option_state_allocate (&options, MDL);

	/* Execute statements in scope starting with the subnet scope. */
	if (lease)
		execute_statements_in_scope(NULL, packet, NULL, NULL,
					    packet->options, options,
					    &global_scope,
					    lease->subnet->group,
					    NULL, NULL);

	/* Execute statements in the class scopes. */
	for (i = packet -> class_count; i > 0; i--) {
		execute_statements_in_scope
			(NULL, packet, NULL, NULL, packet->options, options,
			 &global_scope, packet->classes[i - 1]->group,
			 lease ? lease->subnet->group : NULL, NULL);
	}

	/* Drop the request if dhcpdeclines are being ignored. */
	oc = lookup_option (&server_universe, options, SV_DECLINES);
	if (!oc ||
	    evaluate_boolean_option_cache (&ignorep, packet, lease,
					   (struct client_state *)0,
					   packet -> options, options,
					   &lease -> scope, oc, MDL)) {
	    /* If we found a lease, mark it as unusable and complain. */
	    if (lease) {
#if defined (FAILOVER_PROTOCOL)
		if (lease -> pool && lease -> pool -> failover_peer) {
		    dhcp_failover_state_t *peer =
			    lease -> pool -> failover_peer;
		    if (peer -> service_state == not_responding ||
			peer -> service_state == service_startup) {
			if (!ignorep)
			    log_info ("%s: ignored%s",
				      peer -> name, peer -> nrr);
			goto out;
		    }

		    /* DHCPDECLINE messages are broadcast, so we can safely
		       ignore the DHCPDECLINE if the peer has the lease.
		       XXX Of course, at this point that information has been
		       lost. */
		}
#endif

		abandon_lease (lease, "declined.");
		status = "abandoned";
	    } else {
		status = "not found";
	    }
	} else
	    status = "ignored";

	if (!ignorep)
		log_info ("%s: %s", msgbuf, status);

#if defined(FAILOVER_PROTOCOL)
      out:
#endif
	if (options)
		option_state_dereference (&options, MDL);
	if (lease)
		lease_dereference (&lease, MDL);
}

#if defined(RELAY_PORT)
u_int16_t dhcp_check_relayport(packet)
	struct packet *packet;
{
	if (lookup_option(&agent_universe,
			  packet->options,
			  RAI_RELAY_PORT) != NULL) {
		return (packet->client_port);
	}

	return (0);
}
#endif

void dhcpinform (packet, ms_nulltp)
	struct packet *packet;
	int ms_nulltp;
{
	char msgbuf[1024], *addr_type;
	struct data_string d1, prl, fixed_addr;
	struct option_cache *oc;
	struct option_state *options = NULL;
	struct dhcp_packet raw;
	struct packet outgoing;
	unsigned char dhcpack = DHCPACK;
	struct subnet *subnet = NULL;
	struct iaddr cip, gip, sip;
	unsigned i;
	int nulltp;
	struct sockaddr_in to;
	struct in_addr from;
	isc_boolean_t zeroed_ciaddr;
	struct interface_info *interface;
	int result, h_m_client_ip = 0;
	struct host_decl  *host = NULL, *hp = NULL, *h;
#if defined(RELAY_PORT)
	u_int16_t relay_port = 0;
#endif
#if defined (DEBUG_INFORM_HOST)
	int h_w_fixed_addr = 0;
#endif

	/* The client should set ciaddr to its IP address, but apparently
	   it's common for clients not to do this, so we'll use their IP
	   source address if they didn't set ciaddr. */
	if (!packet->raw->ciaddr.s_addr) {
		zeroed_ciaddr = ISC_TRUE;
		/* With DHCPv4-over-DHCPv6 it can be an IPv6 address
		   so we check its length. */
		if (packet->client_addr.len == 4) {
			cip.len = 4;
			memcpy(cip.iabuf, &packet->client_addr.iabuf, 4);
			addr_type = "source";
		} else {
			cip.len = 0;
			memset(cip.iabuf, 0, 4);
			addr_type = "v4o6";
		}
	} else {
		zeroed_ciaddr = ISC_FALSE;
		cip.len = 4;
		memcpy(cip.iabuf, &packet->raw->ciaddr, 4);
		addr_type = "client";
	}
	sip.len = 4;
	memcpy(sip.iabuf, cip.iabuf, 4);

	if (packet->raw->giaddr.s_addr) {
		gip.len = 4;
		memcpy(gip.iabuf, &packet->raw->giaddr, 4);
		if (zeroed_ciaddr == ISC_TRUE) {
			addr_type = "relay";
			memcpy(sip.iabuf, gip.iabuf, 4);
		}
	} else
		gip.len = 0;

	/* %Audit% This is log output. %2004.06.17,Safe%
	 * If we truncate we hope the user can get a hint from the log.
	 */
#if defined(DHCPv6) && defined(DHCP4o6)
	if (dhcpv4_over_dhcpv6 && (packet->dhcp4o6_response != NULL)) {
		snprintf(msgbuf, sizeof(msgbuf),
			 "DHCP4o6 DHCPINFORM from %s via %s",
			 piaddr(cip),
			 piaddr(packet->client_addr));
	} else
#endif
	snprintf(msgbuf, sizeof(msgbuf), "DHCPINFORM from %s via %s",
		 piaddr(cip),
		 packet->raw->giaddr.s_addr ?
		 inet_ntoa(packet->raw->giaddr) :
		 packet->interface->name);

	/* If the IP source address is zero, don't respond. */
	if (!memcmp(cip.iabuf, "\0\0\0", 4)) {
		log_info("%s: ignored (null source address).", msgbuf);
		return;
	}

#if defined(RELAY_PORT)
	relay_port = dhcp_check_relayport(packet);
#endif

	/* Find the subnet that the client is on.
	 * CC: Do the link selection / subnet selection
	 */

	option_state_allocate(&options, MDL);

	if ((oc = lookup_option(&agent_universe, packet->options,
				RAI_LINK_SELECT)) == NULL)
		oc = lookup_option(&dhcp_universe, packet->options,
				   DHO_SUBNET_SELECTION);

	memset(&d1, 0, sizeof d1);
	if (oc && evaluate_option_cache(&d1, packet, NULL, NULL,
					packet->options, NULL,
					&global_scope, oc, MDL)) {
		struct option_cache *noc = NULL;

		if (d1.len != 4) {
			log_info("%s: ignored (invalid subnet selection option).", msgbuf);
			option_state_dereference(&options, MDL);
			data_string_forget(&d1, MDL);
			return;
		}

		memcpy(sip.iabuf, d1.data, 4);
		data_string_forget(&d1, MDL);

		/* Make a copy of the data. */
		if (option_cache_allocate(&noc, MDL)) {
			if (oc->data.len)
				data_string_copy(&noc->data, &oc->data, MDL);
			if (oc->expression)
				expression_reference(&noc->expression,
						     oc->expression, MDL);
			if (oc->option)
				option_reference(&(noc->option), oc->option,
						 MDL);
		}
		save_option(&dhcp_universe, options, noc);
		option_cache_dereference(&noc, MDL);

		if ((zeroed_ciaddr == ISC_TRUE) && (gip.len != 0))
			addr_type = "relay link select";
		else
			addr_type = "selected";
	}

	find_subnet(&subnet, sip, MDL);

	if (subnet == NULL) {
		log_info("%s: unknown subnet for %s address %s",
			 msgbuf, addr_type, piaddr(sip));
		option_state_dereference(&options, MDL);
		return;
	}

	/* We don't respond to DHCPINFORM packets if we're not authoritative.
	   It would be nice if a per-host value could override this, but
	   there's overhead involved in checking this, so let's see how people
	   react first. */
	if (!subnet->group->authoritative) {
		static int eso = 0;
		log_info("%s: not authoritative for subnet %s",
			  msgbuf, piaddr (subnet -> net));
		if (!eso) {
			log_info("If this DHCP server is authoritative for%s",
				  " that subnet,");
			log_info("please write an `authoritative;' directi%s",
				  "ve either in the");
			log_info("subnet declaration or in some scope that%s",
				  " encloses the");
			log_info("subnet declaration - for example, write %s",
				  "it at the top");
			log_info("of the dhcpd.conf file.");
		}
		if (eso++ == 100)
			eso = 0;
		subnet_dereference(&subnet, MDL);
		option_state_dereference(&options, MDL);
		return;
	}

	memset(&outgoing, 0, sizeof outgoing);
	memset(&raw, 0, sizeof raw);
	outgoing.raw = &raw;

	maybe_return_agent_options(packet, options);

	/* Execute statements network statements starting at the subnet level */
	execute_statements_in_scope(NULL, packet, NULL, NULL,
				    packet->options, options,
				    &global_scope, subnet->group,
				    NULL, NULL);

	/* If we have ciaddr, find its lease so we can find its pool. */
	if (zeroed_ciaddr == ISC_FALSE) {
		struct lease* cip_lease = NULL;

		find_lease_by_ip_addr (&cip_lease, cip, MDL);

		/* Overlay with pool options if ciaddr mapped to a lease. */
		if (cip_lease) {
		 	if (cip_lease->pool && cip_lease->pool->group) {
				execute_statements_in_scope(
					NULL, packet, NULL, NULL,
				    	packet->options, options,
				    	&global_scope,
				     	cip_lease->pool->group,
					cip_lease->pool->shared_network->group,
					NULL);
			}

			lease_dereference (&cip_lease, MDL);
		}
	}

	/* Execute statements in the class scopes. */
	for (i = packet->class_count; i > 0; i--) {
		execute_statements_in_scope(NULL, packet, NULL, NULL,
					    packet->options, options,
					    &global_scope,
					    packet->classes[i - 1]->group,
					    subnet->group,
					    NULL);
	}

	/*
	 * Process host declarations during DHCPINFORM,
	 * Try to find a matching host declaration by cli ID or HW addr.
	 *
	 * Look through the host decls for one that matches the
	 * client identifer or the hardware address.  The preference
	 * order is:
	 * client id with matching ip address
	 * hardware address with matching ip address
	 * client id without a ip fixed address
	 * hardware address without a fixed ip address
	 * If found, set host to use its option definitions.
         */
	oc = lookup_option(&dhcp_universe, packet->options,
			   DHO_DHCP_CLIENT_IDENTIFIER);
	memset(&d1, 0, sizeof(d1));
	if (oc &&
	    evaluate_option_cache(&d1, packet, NULL, NULL,
				  packet->options, NULL,
				  &global_scope, oc, MDL)) {
		find_hosts_by_uid(&hp, d1.data, d1.len, MDL);
		data_string_forget(&d1, MDL);

#if defined (DEBUG_INFORM_HOST)
		if (hp)
			log_debug ("dhcpinform: found host by ID "
				   "-- checking fixed-address match");
#endif
		/* check if we have one with fixed-address
		 * matching the client ip first */
		for (h = hp; !h_m_client_ip && h; h = h->n_ipaddr) {
			if (!h->fixed_addr)
				continue;

			memset(&fixed_addr, 0, sizeof(fixed_addr));
			if (!evaluate_option_cache (&fixed_addr, NULL,
						    NULL, NULL, NULL, NULL,
						    &global_scope,
						    h->fixed_addr, MDL))
				continue;

#if defined (DEBUG_INFORM_HOST)
			h_w_fixed_addr++;
#endif
			for (i = 0;
			     (i + cip.len) <= fixed_addr.len;
			     i += cip.len) {
				if (memcmp(fixed_addr.data + i,
					   cip.iabuf, cip.len) == 0) {
#if defined (DEBUG_INFORM_HOST)
					log_debug ("dhcpinform: found "
						   "host with matching "
						   "fixed-address by ID");
#endif
					host_reference(&host, h, MDL);
					h_m_client_ip = 1;
					break;
				}
			}
			data_string_forget(&fixed_addr, MDL);
		}

		/* fallback to a host without fixed-address */
		for (h = hp; !host && h; h = h->n_ipaddr) {
			if (h->fixed_addr)
				continue;

#if defined (DEBUG_INFORM_HOST)
			log_debug ("dhcpinform: found host "
				   "without fixed-address by ID");
#endif
			host_reference(&host, h, MDL);
			break;
		}
		if (hp)
			host_dereference (&hp, MDL);
	}
	if (!host || !h_m_client_ip) {
		find_hosts_by_haddr(&hp, packet->raw->htype,
				    packet->raw->chaddr,
				    packet->raw->hlen, MDL);

#if defined (DEBUG_INFORM_HOST)
		if (hp)
			log_debug ("dhcpinform: found host by HW "
				   "-- checking fixed-address match");
#endif

		/* check if we have one with fixed-address
		 * matching the client ip first */
		for (h = hp; !h_m_client_ip && h; h = h->n_ipaddr) {
			if (!h->fixed_addr)
				continue;

			memset (&fixed_addr, 0, sizeof(fixed_addr));
			if (!evaluate_option_cache (&fixed_addr, NULL,
						    NULL, NULL, NULL, NULL,
						    &global_scope,
						    h->fixed_addr, MDL))
				continue;

#if defined (DEBUG_INFORM_HOST)
			h_w_fixed_addr++;
#endif
			for (i = 0;
			     (i + cip.len) <= fixed_addr.len;
			     i += cip.len) {
				if (memcmp(fixed_addr.data + i,
					   cip.iabuf, cip.len) == 0) {
#if defined (DEBUG_INFORM_HOST)
					log_debug ("dhcpinform: found "
						   "host with matching "
						   "fixed-address by HW");
#endif
					/*
					 * Hmm.. we've found one
					 * without IP by ID and now
					 * (better) one with IP by HW.
					 */
					if(host)
						host_dereference(&host, MDL);
					host_reference(&host, h, MDL);
					h_m_client_ip = 1;
					break;
				}
			}
			data_string_forget(&fixed_addr, MDL);
		}
		/* fallback to a host without fixed-address */
		for (h = hp; !host && h; h = h->n_ipaddr) {
			if (h->fixed_addr)
				continue;

#if defined (DEBUG_INFORM_HOST)
			log_debug ("dhcpinform: found host without "
				   "fixed-address by HW");
#endif
			host_reference (&host, h, MDL);
			break;
		}

		if (hp)
			host_dereference (&hp, MDL);
	}

#if defined (DEBUG_INFORM_HOST)
	/* Hmm..: what when there is a host with a fixed-address,
	 * that matches by hw or id, but the fixed-addresses
	 * didn't match client ip?
	 */
	if (h_w_fixed_addr && !h_m_client_ip) {
		log_info ("dhcpinform: matching host with "
			  "fixed-address different than "
			  "client IP detected?!");
	}
#endif

	/* If we have a host_decl structure, run the options
	 * associated with its group. Whether the host decl
	 * struct is old or not. */
	if (host) {
#if defined (DEBUG_INFORM_HOST)
		log_info ("dhcpinform: applying host (group) options");
#endif
		execute_statements_in_scope(NULL, packet, NULL, NULL,
					    packet->options, options,
					    &global_scope, host->group,
					    subnet->group,
					    NULL);
		host_dereference (&host, MDL);
	}

 	/* CC: end of host entry processing.... */

	/* Figure out the filename. */
	memset (&d1, 0, sizeof d1);
	oc = lookup_option (&server_universe, options, SV_FILENAME);
	if (oc &&
	    evaluate_option_cache (&d1, packet, (struct lease *)0,
				   (struct client_state *)0,
				   packet -> options, (struct option_state *)0,
				   &global_scope, oc, MDL)) {
		i = d1.len;
		if (i >= sizeof(raw.file)) {
			log_info("file name longer than packet field "
				 "truncated - field: %lu name: %d %.*s",
				 (unsigned long)sizeof(raw.file), i,
				 (int)i, d1.data);
			i = sizeof(raw.file);
		} else
			raw.file[i] = 0;
		memcpy (raw.file, d1.data, i);
		data_string_forget (&d1, MDL);
	}

	/* Choose a server name as above. */
	oc = lookup_option (&server_universe, options, SV_SERVER_NAME);
	if (oc &&
	    evaluate_option_cache (&d1, packet, (struct lease *)0,
				   (struct client_state *)0,
				   packet -> options, (struct option_state *)0,
				   &global_scope, oc, MDL)) {
		i = d1.len;
		if (i >= sizeof(raw.sname)) {
			log_info("server name longer than packet field "
				 "truncated - field: %lu name: %d %.*s",
				 (unsigned long)sizeof(raw.sname), i,
				 (int)i, d1.data);
			i = sizeof(raw.sname);
		} else
			raw.sname[i] = 0;
		memcpy (raw.sname, d1.data, i);
		data_string_forget (&d1, MDL);
	}

	/* Set a flag if this client is a lame Microsoft client that NUL
	   terminates string options and expects us to do likewise. */
	nulltp = 0;
	if ((oc = lookup_option (&dhcp_universe, packet -> options,
				 DHO_HOST_NAME))) {
		if (!oc->expression)
			nulltp = oc->flags & OPTION_HAD_NULLS;
	}

	/* Put in DHCP-specific options. */
	i = DHO_DHCP_MESSAGE_TYPE;
	oc = (struct option_cache *)0;
	if (option_cache_allocate (&oc, MDL)) {
		if (make_const_data (&oc -> expression,
				     &dhcpack, 1, 0, 0, MDL)) {
			option_code_hash_lookup(&oc->option,
						dhcp_universe.code_hash,
						&i, 0, MDL);
			save_option (&dhcp_universe, options, oc);
		}
		option_cache_dereference (&oc, MDL);
	}

	get_server_source_address(&from, options, options, packet);

	/* Use the subnet mask from the subnet declaration if no other
	   mask has been provided. */
	i = DHO_SUBNET_MASK;
	if (subnet && !lookup_option (&dhcp_universe, options, i)) {
		oc = (struct option_cache *)0;
		if (option_cache_allocate (&oc, MDL)) {
			if (make_const_data (&oc -> expression,
					     subnet -> netmask.iabuf,
					     subnet -> netmask.len,
					     0, 0, MDL)) {
				option_code_hash_lookup(&oc->option,
							dhcp_universe.code_hash,
							&i, 0, MDL);
				save_option (&dhcp_universe, options, oc);
			}
			option_cache_dereference (&oc, MDL);
		}
	}

	/* If a site option space has been specified, use that for
	   site option codes. */
	i = SV_SITE_OPTION_SPACE;
	if ((oc = lookup_option (&server_universe, options, i)) &&
	    evaluate_option_cache (&d1, packet, (struct lease *)0,
				   (struct client_state *)0,
				   packet -> options, options,
				   &global_scope, oc, MDL)) {
		struct universe *u = (struct universe *)0;

		if (!universe_hash_lookup (&u, universe_hash,
					   (const char *)d1.data, d1.len,
					   MDL)) {
			log_error ("unknown option space %s.", d1.data);
			option_state_dereference (&options, MDL);
			if (subnet)
				subnet_dereference (&subnet, MDL);
			data_string_forget (&d1, MDL);
			return;
		}

		options -> site_universe = u -> index;
		options->site_code_min = find_min_site_code(u);
		data_string_forget (&d1, MDL);
	} else {
		options -> site_universe = dhcp_universe.index;
		options -> site_code_min = 0; /* Trust me, it works. */
	}

	memset (&prl, 0, sizeof prl);

	/* Use the parameter list from the scope if there is one. */
	oc = lookup_option (&dhcp_universe, options,
			    DHO_DHCP_PARAMETER_REQUEST_LIST);

	/* Otherwise, if the client has provided a list of options
	   that it wishes returned, use it to prioritize.  Otherwise,
	   prioritize based on the default priority list. */

	if (!oc)
		oc = lookup_option (&dhcp_universe, packet -> options,
				    DHO_DHCP_PARAMETER_REQUEST_LIST);

	if (oc)
		evaluate_option_cache (&prl, packet, (struct lease *)0,
				       (struct client_state *)0,
				       packet -> options, options,
				       &global_scope, oc, MDL);

#ifdef DEBUG_PACKET
	dump_packet (packet);
	dump_raw ((unsigned char *)packet -> raw, packet -> packet_length);
#endif

	log_info ("%s", msgbuf);

	/* Figure out the address of the boot file server. */
	if ((oc =
	     lookup_option (&server_universe, options, SV_NEXT_SERVER))) {
		if (evaluate_option_cache (&d1, packet, (struct lease *)0,
					   (struct client_state *)0,
					   packet -> options, options,
					   &global_scope, oc, MDL)) {
			/* If there was more than one answer,
			   take the first. */
			if (d1.len >= 4 && d1.data)
				memcpy (&raw.siaddr, d1.data, 4);
			data_string_forget (&d1, MDL);
		}
	}

	/*
	 * Remove any time options, per section 3.4 RFC 2131
	 */
	delete_option(&dhcp_universe, options, DHO_DHCP_LEASE_TIME);
	delete_option(&dhcp_universe, options, DHO_DHCP_RENEWAL_TIME);
	delete_option(&dhcp_universe, options, DHO_DHCP_REBINDING_TIME);

	/* Set up the option buffer... */
	outgoing.packet_length =
		cons_options (packet, outgoing.raw, (struct lease *)0,
			      (struct client_state *)0,
			      0, packet -> options, options, &global_scope,
			      0, nulltp, 0,
			      prl.len ? &prl : (struct data_string *)0,
			      (char *)0);
	option_state_dereference (&options, MDL);
	data_string_forget (&prl, MDL);

	/* Make sure that the packet is at least as big as a BOOTP packet. */
	if (outgoing.packet_length < BOOTP_MIN_LEN)
		outgoing.packet_length = BOOTP_MIN_LEN;

	raw.giaddr = packet -> raw -> giaddr;
	raw.ciaddr = packet -> raw -> ciaddr;
	memcpy (raw.chaddr, packet -> raw -> chaddr, sizeof raw.chaddr);
	raw.hlen = packet -> raw -> hlen;
	raw.htype = packet -> raw -> htype;

	raw.xid = packet -> raw -> xid;
	raw.secs = packet -> raw -> secs;
	raw.flags = packet -> raw -> flags;
	raw.hops = packet -> raw -> hops;
	raw.op = BOOTREPLY;

#ifdef DEBUG_PACKET
	dump_packet (&outgoing);
	dump_raw ((unsigned char *)&raw, outgoing.packet_length);
#endif

#if defined(DHCPv6) && defined(DHCP4o6)
	if (dhcpv4_over_dhcpv6 && (packet->dhcp4o6_response != NULL)) {
		/* Report what we're sending. */
		snprintf(msgbuf, sizeof msgbuf,
			 "DHCP4o6 DHCPACK to %s (%s) via", piaddr(cip),
			 (packet->raw->htype && packet->raw->hlen) ?
			 print_hw_addr(packet->raw->htype, packet->raw->hlen,
				       packet->raw->chaddr) :
			 "<no client hardware address>");
		log_info("%s %s", msgbuf, piaddr(packet->client_addr));

		/* fill dhcp4o6_response */
		packet->dhcp4o6_response->len = outgoing.packet_length;
		packet->dhcp4o6_response->buffer = NULL;
		if (!buffer_allocate(&packet->dhcp4o6_response->buffer,
				     outgoing.packet_length, MDL)) {
			log_fatal("No memory to store DHCP4o6 reply.");
		}
		packet->dhcp4o6_response->data =
			packet->dhcp4o6_response->buffer->data;
		memcpy(packet->dhcp4o6_response->buffer->data,
		       outgoing.raw, outgoing.packet_length);

		/* done */
		if (subnet)
			subnet_dereference (&subnet, MDL);
		return;
	}
#endif

	/* Set up the common stuff... */
	to.sin_family = AF_INET;
#ifdef HAVE_SA_LEN
	to.sin_len = sizeof to;
#endif
	memset (to.sin_zero, 0, sizeof to.sin_zero);

	/* RFC2131 states the server SHOULD unicast to ciaddr.
	 * There are two wrinkles - relays, and when ciaddr is zero.
	 * There's actually no mention of relays at all in rfc2131 in
	 * regard to DHCPINFORM, except to say we might get packets from
	 * clients via them.  Note: relays unicast to clients to the
	 * "yiaddr" address, which servers are forbidden to set when
	 * answering an inform.
	 *
	 * The solution: If ciaddr is zero, and giaddr is set, go via the
	 * relay with the broadcast flag set to help the relay (with no
	 * yiaddr and very likely no chaddr, it will have no idea where to
	 * send the packet).
	 *
	 * If the ciaddr is zero and giaddr is not set, go via the source
	 * IP address (but you are permitted to barf on their shoes).
	 *
	 * If ciaddr is not zero, send the packet there always.
	 */
	if (!raw.ciaddr.s_addr && gip.len) {
		memcpy(&to.sin_addr, gip.iabuf, 4);
#if defined(RELAY_PORT)
		to.sin_port = relay_port ? relay_port : local_port;
#else
		to.sin_port = local_port;
#endif
		raw.flags |= htons(BOOTP_BROADCAST);
	} else {
		gip.len = 0;
		memcpy(&to.sin_addr, cip.iabuf, 4);
		to.sin_port = remote_port;
	}

	/* Report what we're sending. */
	snprintf(msgbuf, sizeof msgbuf, "DHCPACK to %s (%s) via", piaddr(cip),
		 (packet->raw->htype && packet->raw->hlen) ?
			print_hw_addr(packet->raw->htype, packet->raw->hlen,
				      packet->raw->chaddr) :
			"<no client hardware address>");
	log_info("%s %s", msgbuf, gip.len ? piaddr(gip) :
					    packet->interface->name);

	errno = 0;
	interface = (fallback_interface ? fallback_interface
		     : packet -> interface);
	result = send_packet(interface, &outgoing, &raw,
			     outgoing.packet_length, from, &to, NULL);
	if (result < 0) {
		log_error ("%s:%d: Failed to send %d byte long packet over %s "
			   "interface.", MDL, outgoing.packet_length,
			   interface->name);
	}


	if (subnet)
		subnet_dereference (&subnet, MDL);
}

/*!
 * \brief Constructs and sends a DHCP Nak
 *
 * In order to populate options such as dhcp-server-id and
 * dhcp-client-identifier, the function creates a temporary option cache
 * and evaluates options based on the packet's shared-network or the
 * network_group in its absence, as well as the packet->clasess (if any).
 *
 * \param packet inbound packet received from the client
 * \param cip address requested by the client
 * \param network_group optional scope for use in setting up options
 */
void nak_lease (packet, cip, network_group)
	struct packet *packet;
	struct iaddr *cip;
	struct group *network_group; /* scope to use for options */
{
	struct sockaddr_in to;
	struct in_addr from;
	int result;
	struct dhcp_packet raw;
	unsigned char nak = DHCPNAK;
	struct packet outgoing;
	unsigned i;
#if defined(RELAY_PORT)
	u_int16_t relay_port = 0;
#endif
	struct option_state *options = (struct option_state *)0;
	struct option_cache *oc = (struct option_cache *)0;
	struct option_state *eval_options = NULL;

	option_state_allocate (&options, MDL);
	memset (&outgoing, 0, sizeof outgoing);
	memset (&raw, 0, sizeof raw);
	outgoing.raw = &raw;

	/* Set DHCP_MESSAGE_TYPE to DHCPNAK */
	if (!option_cache_allocate (&oc, MDL)) {
		log_error ("No memory for DHCPNAK message type.");
		option_state_dereference (&options, MDL);
		return;
	}
	if (!make_const_data (&oc -> expression, &nak, sizeof nak,
			      0, 0, MDL)) {
		log_error ("No memory for expr_const expression.");
		option_cache_dereference (&oc, MDL);
		option_state_dereference (&options, MDL);
		return;
	}
	i = DHO_DHCP_MESSAGE_TYPE;
	option_code_hash_lookup(&oc->option, dhcp_universe.code_hash,
				&i, 0, MDL);
	save_option (&dhcp_universe, options, oc);
	option_cache_dereference (&oc, MDL);

#if defined(RELAY_PORT)
	relay_port = dhcp_check_relayport(packet);
#endif

	/* Set DHCP_MESSAGE to whatever the message is */
	if (!option_cache_allocate (&oc, MDL)) {
		log_error ("No memory for DHCPNAK message type.");
		option_state_dereference (&options, MDL);
		return;
	}
	if (!make_const_data (&oc -> expression,
			      (unsigned char *)dhcp_message,
			      strlen (dhcp_message), 1, 0, MDL)) {
		log_error ("No memory for expr_const expression.");
		option_cache_dereference (&oc, MDL);
		option_state_dereference (&options, MDL);
		return;
	}
	i = DHO_DHCP_MESSAGE;
	option_code_hash_lookup(&oc->option, dhcp_universe.code_hash,
				&i, 0, MDL);
	save_option (&dhcp_universe, options, oc);
	option_cache_dereference (&oc, MDL);

	/* Setup the options at the global and subnet scopes.  These
	 * may be used to locate sever id option if enabled as well
	 * for echo-client-id further on. (This allocates eval_options). */
	eval_network_statements(&eval_options, packet, network_group);

#if defined(SERVER_ID_FOR_NAK)
	/* Pass in the evaluated options so they can be searched for
         * server-id, otherwise source address comes from the interface
	 * address. */
	get_server_source_address(&from, eval_options, options, packet);
#else
	/* Get server source address from the interface address */
	get_server_source_address(&from, NULL, options, packet);
#endif /* if defined(SERVER_ID_FOR_NAK) */

	/* If there were agent options in the incoming packet, return
	 * them.  We do not check giaddr to detect the presence of a
	 * relay, as this excludes "l2" relay agents which have no
	 * giaddr to set.
	 */
	if (packet->options->universe_count > agent_universe.index &&
	    packet->options->universes [agent_universe.index]) {
		option_chain_head_reference
		    ((struct option_chain_head **)
		     &(options -> universes [agent_universe.index]),
		     (struct option_chain_head *)
		     packet -> options -> universes [agent_universe.index],
		     MDL);
	}

        /* echo-client-id can specified at the class level so add class-scoped
	 * options into eval_options. */
        for (i = packet->class_count; i > 0; i--) {
                execute_statements_in_scope(NULL, packet, NULL, NULL,
					    packet->options, eval_options,
					    &global_scope,
					    packet->classes[i - 1]->group,
		                            NULL, NULL);
        }

	/* Echo client id if we received and it's enabled */
	echo_client_id(packet, NULL, eval_options, options);
	option_state_dereference (&eval_options, MDL);

	/* Do not use the client's requested parameter list. */
	delete_option (&dhcp_universe, packet -> options,
		       DHO_DHCP_PARAMETER_REQUEST_LIST);

	/* Set up the option buffer... */
	outgoing.packet_length =
		cons_options (packet, outgoing.raw, (struct lease *)0,
			      (struct client_state *)0,
			      0, packet -> options, options, &global_scope,
			      0, 0, 0, (struct data_string *)0, (char *)0);
	option_state_dereference (&options, MDL);

/*	memset (&raw.ciaddr, 0, sizeof raw.ciaddr);*/
	raw.giaddr = packet -> raw -> giaddr;
	memcpy (raw.chaddr, packet -> raw -> chaddr, sizeof raw.chaddr);
	raw.hlen = packet -> raw -> hlen;
	raw.htype = packet -> raw -> htype;

	raw.xid = packet -> raw -> xid;
	raw.secs = packet -> raw -> secs;
	raw.flags = packet -> raw -> flags | htons (BOOTP_BROADCAST);
	raw.hops = packet -> raw -> hops;
	raw.op = BOOTREPLY;

	/* Make sure that the packet is at least as big as a BOOTP packet. */
	if (outgoing.packet_length < BOOTP_MIN_LEN)
		outgoing.packet_length = BOOTP_MIN_LEN;

	/* Report what we're sending... */
#if defined(DHCPv6) && defined(DHCP4o6)
	if (dhcpv4_over_dhcpv6 && (packet->dhcp4o6_response != NULL)) {
		log_info ("DHCP4o6 DHCPNAK on %s to %s via %s",
			  piaddr (*cip),
			  print_hw_addr (packet -> raw -> htype,
					 packet -> raw -> hlen,
					 packet -> raw -> chaddr),
			  piaddr(packet->client_addr));
	} else
#endif
	log_info ("DHCPNAK on %s to %s via %s",
	      piaddr (*cip),
	      print_hw_addr (packet -> raw -> htype,
			     packet -> raw -> hlen,
			     packet -> raw -> chaddr),
	      packet -> raw -> giaddr.s_addr
	      ? inet_ntoa (packet -> raw -> giaddr)
	      : packet -> interface -> name);

#ifdef DEBUG_PACKET
	dump_packet (packet);
	dump_raw ((unsigned char *)packet -> raw, packet -> packet_length);
	dump_packet (&outgoing);
	dump_raw ((unsigned char *)&raw, outgoing.packet_length);
#endif

#if defined(DHCPv6) && defined(DHCP4o6)
	if (dhcpv4_over_dhcpv6 && (packet->dhcp4o6_response != NULL)) {
		/* fill dhcp4o6_response */
		packet->dhcp4o6_response->len = outgoing.packet_length;
		packet->dhcp4o6_response->buffer = NULL;
		if (!buffer_allocate(&packet->dhcp4o6_response->buffer,
				     outgoing.packet_length, MDL)) {
			log_fatal("No memory to store DHCP4o6 reply.");
		}
		packet->dhcp4o6_response->data =
			packet->dhcp4o6_response->buffer->data;
		memcpy(packet->dhcp4o6_response->buffer->data,
		       outgoing.raw, outgoing.packet_length);
		return;
	}
#endif

	/* Set up the common stuff... */
	to.sin_family = AF_INET;
#ifdef HAVE_SA_LEN
	to.sin_len = sizeof to;
#endif
	memset (to.sin_zero, 0, sizeof to.sin_zero);

	/* If this was gatewayed, send it back to the gateway.
	   Otherwise, broadcast it on the local network. */
	if (raw.giaddr.s_addr) {
		to.sin_addr = raw.giaddr;
		if (raw.giaddr.s_addr != htonl (INADDR_LOOPBACK))
#if defined(RELAY_PORT)
			to.sin_port = relay_port ? relay_port : local_port;
#else
			to.sin_port = local_port;
#endif
		else
			to.sin_port = remote_port; /* for testing. */

		if (fallback_interface) {
			result = send_packet(fallback_interface, packet, &raw,
					     outgoing.packet_length, from, &to,
					     NULL);
			if (result < 0) {
				log_error ("%s:%d: Failed to send %d byte long "
					   "packet over %s interface.", MDL,
					   outgoing.packet_length,
					   fallback_interface->name);
			}

			return;
		}
	} else {
		to.sin_addr = limited_broadcast;
		to.sin_port = remote_port;
	}

	errno = 0;
	result = send_packet(packet->interface, packet, &raw,
			     outgoing.packet_length, from, &to, NULL);
        if (result < 0) {
                log_error ("%s:%d: Failed to send %d byte long packet over %s "
                           "interface.", MDL, outgoing.packet_length,
                           packet->interface->name);
        }

}

/*!
 * \brief Adds a dhcp-client-id option to a set of options
 * Given a set of input options, it searches for echo-client-id.  If it is
 * defined and enabled, the given packet is searched for dhcp-client-id.  If
 * the option is found it is replicated into the given set of output options.
 * This allows us to provide compliance with RFC 6842. It is called when we ack
 * or nak a lease.  In the latter case we may or may not have created the
 * requisite scope to lookup echo-client-id.
 *
 * Note the flag packet.sv_echo_client_id is set to reflect the configuration
 * option.  This bypases inaccessiblity of server_universe in cons_options()
 * which must amend the PRL (when not empty) if echoing is enabled.
 *
 * \param packet inbound packet received from the client
 * \param lease lease associated with this client (if one)
 * \param in_options options in which to search for echo-client-id
 * \param out_options options to which to save the client-id
 */
void echo_client_id(packet, lease, in_options, out_options)
	struct packet *packet;
	struct lease *lease;
	struct option_state *in_options;
	struct option_state *out_options;
{
	struct option_cache *oc;
	int ignorep;

	/* Check if echo-client-id is enabled */
	oc = lookup_option(&server_universe, in_options, SV_ECHO_CLIENT_ID);
	if (oc && evaluate_boolean_option_cache(&ignorep, packet, lease,
                                                NULL, packet->options,
						in_options,
                                                (lease ? &lease->scope : NULL),
						oc, MDL)) {
		struct data_string client_id;
		unsigned int opcode = DHO_DHCP_CLIENT_IDENTIFIER;

		/* Save knowledge that echo is enabled to the packet */
		packet->sv_echo_client_id = ISC_TRUE;

		/* Now see if inbound packet contains client-id */
		oc = lookup_option(&dhcp_universe, packet->options, opcode);
		memset(&client_id, 0, sizeof client_id);
		if (oc && evaluate_option_cache(&client_id,
						packet, NULL, NULL,
						packet->options, NULL,
						(lease ? &lease->scope : NULL),
						oc, MDL)) {
			/* Packet contained client-id, add it to out_options. */
			oc = NULL;
			if (option_cache_allocate(&oc, MDL)) {
				if (make_const_data(&oc->expression,
						    client_id.data,
						    client_id.len,
                                                    1, 0, MDL)) {
					option_code_hash_lookup(&oc->option,
							        dhcp_universe.
                                                                code_hash,
							        &opcode,
                                                                0, MDL);
					save_option(&dhcp_universe,
						    out_options, oc);
				}
				option_cache_dereference(&oc, MDL);
			}
		}
	}
}

void check_pool_threshold (packet, lease, state)
     struct packet *packet;
     struct lease *lease;
     struct lease_state *state;

{

	struct pool *pool = lease->pool;
	int used, count, high_threshold, poolhigh = 0, poollow = 0;
	char *shared_name = "no name";

	if (pool == NULL)
		return;

	/* get a pointer to the name if we have one */
	if ((pool->shared_network != NULL) &&
	    (pool->shared_network->name != NULL)) {
		shared_name = pool->shared_network->name;
	}

	count = pool->lease_count;
	used = count - (pool->free_leases + pool->backup_leases);

	/* The logged flag indicates if we have already crossed the high
	 * threshold and emitted a log message.  If it is set we check to
	 * see if we have re-crossed the low threshold and need to reset
	 * things.  When we cross the high threshold we determine what
	 * the low threshold is and save it into the low_threshold value.
	 * When we cross that threshold we reset the logged flag and
	 * the low_threshold to 0 which allows the high threshold message
	 * to be emitted once again.
	 * if we haven't recrossed the boundry we don't need to do anything.
	 */
	if (pool->logged !=0) {
		if (used <= pool->low_threshold) {
			pool->low_threshold = 0;
			pool->logged = 0;
			log_error("Pool threshold reset - shared subnet: %s; "
				  "address: %s; low threshold %d/%d.",
				  shared_name, piaddr(lease->ip_addr),
				  used, count);
		}
		return;
	}

	/* find the high threshold */
	if (get_option_int(&poolhigh, &server_universe, packet, lease,  NULL,
			   packet->options, state->options, state->options,
			   &lease->scope, SV_LOG_THRESHOLD_HIGH, MDL) == 0) {
		/* no threshold bail out */
		return;
	}

	/* We do have a threshold for this pool, see if its valid */
	if ((poolhigh <= 0) || (poolhigh > 100)) {
		/* not valid */
		return;
	}

	/* we have a valid value, have we exceeded it */
	high_threshold = FIND_PERCENT(count, poolhigh);
	if (used < high_threshold) {
		/* nope, no more to do */
		return;
	}

	/* we've exceeded it, output a message */
	log_error("Pool threshold exceeded - shared subnet: %s; "
		  "address: %s; high threshold %d%% %d/%d.",
		  shared_name, piaddr(lease->ip_addr),
		  poolhigh, used, count);

	/* handle the low threshold now, if we don't
	 * have a valid one we default to 0. */
	if ((get_option_int(&poollow, &server_universe, packet, lease,  NULL,
			    packet->options, state->options, state->options,
			    &lease->scope, SV_LOG_THRESHOLD_LOW, MDL) == 0) ||
	    (poollow > 100)) {
		poollow = 0;
	}

	/*
	 * If the low theshold is higher than the high threshold we continue to log
	 * If it isn't then we set the flag saying we already logged and determine
	 * what the reset threshold is.
	 */
	if (poollow < poolhigh) {
		pool->logged = 1;
		pool->low_threshold = FIND_PERCENT(count, poollow);
	}
}

void ack_lease (packet, lease, offer, when, msg, ms_nulltp, hp)
	struct packet *packet;
	struct lease *lease;
	unsigned int offer;
	TIME when;
	char *msg;
	int ms_nulltp;
	struct host_decl *hp;
{
	struct lease *lt;
	struct lease_state *state;
	struct lease *next;
	struct host_decl *host = (struct host_decl *)0;
	TIME lease_time;
	TIME offered_lease_time;
	struct data_string d1;
	TIME min_lease_time;
	TIME max_lease_time;
	TIME default_lease_time;
	struct option_cache *oc;
	isc_result_t result;
	TIME original_cltt;
	struct in_addr from;
	TIME remaining_time;
	struct iaddr cip;
#if defined(DELAYED_ACK)
	/* By default we don't do the enqueue */
	isc_boolean_t enqueue = ISC_FALSE;
#endif
	int use_old_lease = 0;
	int same_client = 0;

	unsigned i, j;
	int s1;
	int ignorep;

	/* If we're already acking this lease, don't do it again. */
	if (lease -> state)
		return;

	/* Save original cltt for comparison later. */
	original_cltt = lease->cltt;

	/* If the lease carries a host record, remember it. */
	if (hp)
		host_reference (&host, hp, MDL);
	else if (lease -> host)
		host_reference (&host, lease -> host, MDL);

	/* Allocate a lease state structure... */
	state = new_lease_state (MDL);
	if (!state)
		log_fatal ("unable to allocate lease state!");
	state -> got_requested_address = packet -> got_requested_address;
	shared_network_reference (&state -> shared_network,
				  packet -> interface -> shared_network, MDL);

	/* See if we got a server identifier option. */
	if (lookup_option (&dhcp_universe,
			   packet -> options, DHO_DHCP_SERVER_IDENTIFIER))
		state -> got_server_identifier = 1;

	maybe_return_agent_options(packet, state->options);

	/* If we are offering a lease that is still currently valid, preserve
	   the events.  We need to do this because if the client does not
	   REQUEST our offer, it will expire in 2 minutes, overriding the
	   expire time in the currently in force lease.  We want the expire
	   events to be executed at that point. */
	if (lease->ends <= cur_time && offer != DHCPOFFER) {
		/* Get rid of any old expiry or release statements - by
		   executing the statements below, we will be inserting new
		   ones if there are any to insert. */
		if (lease->on_star.on_expiry)
			executable_statement_dereference
				(&lease->on_star.on_expiry, MDL);
		if (lease->on_star.on_commit)
			executable_statement_dereference
				(&lease->on_star.on_commit, MDL);
		if (lease->on_star.on_release)
			executable_statement_dereference
				(&lease->on_star.on_release, MDL);
	}

	/* Execute statements in scope starting with the subnet scope. */
	execute_statements_in_scope (NULL, packet, lease,
				     NULL, packet->options,
				     state->options, &lease->scope,
				     lease->subnet->group, NULL, NULL);

	/* If the lease is from a pool, run the pool scope. */
	if (lease->pool)
		(execute_statements_in_scope(NULL, packet, lease, NULL,
					     packet->options, state->options,
					     &lease->scope, lease->pool->group,
					     lease->pool->
						shared_network->group,
					     NULL));

	/* Execute statements from class scopes. */
	for (i = packet -> class_count; i > 0; i--) {
		execute_statements_in_scope(NULL, packet, lease, NULL,
					    packet->options, state->options,
					    &lease->scope,
					    packet->classes[i - 1]->group,
					    (lease->pool ? lease->pool->group
					     : lease->subnet->group),
					    NULL);
	}

	/* See if the client is only supposed to have one lease at a time,
	   and if so, find its other leases and release them.    We can only
	   do this on DHCPREQUEST.    It's a little weird to do this before
	   looking at permissions, because the client might not actually
	   _get_ a lease after we've done the permission check, but the
	   assumption for this option is that the client has exactly one
	   network interface, and will only ever remember one lease.   So
	   if it sends a DHCPREQUEST, and doesn't get the lease, it's already
	   forgotten about its old lease, so we can too. */
	if (packet -> packet_type == DHCPREQUEST &&
	    (oc = lookup_option (&server_universe, state -> options,
				 SV_ONE_LEASE_PER_CLIENT)) &&
	    evaluate_boolean_option_cache (&ignorep,
					   packet, lease,
					   (struct client_state *)0,
					   packet -> options,
					   state -> options, &lease -> scope,
					   oc, MDL)) {
	    struct lease *seek;
	    if (lease -> uid_len) {
		do {
		    seek = (struct lease *)0;
		    find_lease_by_uid (&seek, lease -> uid,
				       lease -> uid_len, MDL);
		    if (!seek)
			break;
		    if (seek == lease && !seek -> n_uid) {
			lease_dereference (&seek, MDL);
			break;
		    }
		    next = (struct lease *)0;

		    /* Don't release expired leases, and don't
		       release the lease we're going to assign. */
		    next = (struct lease *)0;
		    while (seek) {
			if (seek -> n_uid)
			    lease_reference (&next, seek -> n_uid, MDL);
			if (seek != lease &&
			    seek -> binding_state != FTS_RELEASED &&
			    seek -> binding_state != FTS_EXPIRED &&
			    seek -> binding_state != FTS_RESET &&
			    seek -> binding_state != FTS_FREE &&
			    seek -> binding_state != FTS_BACKUP)
				break;
			lease_dereference (&seek, MDL);
			if (next) {
			    lease_reference (&seek, next, MDL);
			    lease_dereference (&next, MDL);
			}
		    }
		    if (next)
			lease_dereference (&next, MDL);
		    if (seek) {
			release_lease (seek, packet);
			lease_dereference (&seek, MDL);
		    } else
			break;
		} while (1);
	    }
	    if (!lease -> uid_len ||
		(host &&
		 !host -> client_identifier.len &&
		 (oc = lookup_option (&server_universe, state -> options,
				      SV_DUPLICATES)) &&
		 !evaluate_boolean_option_cache (&ignorep, packet, lease,
						 (struct client_state *)0,
						 packet -> options,
						 state -> options,
						 &lease -> scope,
						 oc, MDL))) {
		do {
		    seek = (struct lease *)0;
		    find_lease_by_hw_addr
			    (&seek, lease -> hardware_addr.hbuf,
			     lease -> hardware_addr.hlen, MDL);
		    if (!seek)
			    break;
		    if (seek == lease && !seek -> n_hw) {
			    lease_dereference (&seek, MDL);
			    break;
		    }
		    next = (struct lease *)0;
		    while (seek) {
			if (seek -> n_hw)
			    lease_reference (&next, seek -> n_hw, MDL);
			if (seek != lease &&
			    seek -> binding_state != FTS_RELEASED &&
			    seek -> binding_state != FTS_EXPIRED &&
			    seek -> binding_state != FTS_RESET &&
			    seek -> binding_state != FTS_FREE &&
			    seek -> binding_state != FTS_BACKUP)
				break;
			lease_dereference (&seek, MDL);
			if (next) {
			    lease_reference (&seek, next, MDL);
			    lease_dereference (&next, MDL);
			}
		    }
		    if (next)
			lease_dereference (&next, MDL);
		    if (seek) {
			release_lease (seek, packet);
			lease_dereference (&seek, MDL);
		    } else
			break;
		} while (1);
	    }
	}


	/* Make sure this packet satisfies the configured minimum
	   number of seconds. */
	memset (&d1, 0, sizeof d1);
	if (offer == DHCPOFFER &&
	    (oc = lookup_option (&server_universe, state -> options,
				 SV_MIN_SECS))) {
		if (evaluate_option_cache (&d1, packet, lease,
					   (struct client_state *)0,
					   packet -> options, state -> options,
					   &lease -> scope, oc, MDL)) {
			if (d1.len &&
			    ntohs (packet -> raw -> secs) < d1.data [0]) {
				log_info("%s: configured min-secs value (%d) "
					 "is greater than secs field (%d).  "
					 "message dropped.", msg, d1.data[0],
					 ntohs(packet->raw->secs));
				data_string_forget (&d1, MDL);
				free_lease_state (state, MDL);
				if (host)
					host_dereference (&host, MDL);
				return;
			}
			data_string_forget (&d1, MDL);
		}
	}

	/* Try to find a matching host declaration for this lease.
	 */
	if (!host) {
		struct host_decl *hp = (struct host_decl *)0;
		struct host_decl *h;

		/* Try to find a host_decl that matches the client
		   identifier or hardware address on the packet, and
		   has no fixed IP address.   If there is one, hang
		   it off the lease so that its option definitions
		   can be used. */
		oc = lookup_option (&dhcp_universe, packet -> options,
				    DHO_DHCP_CLIENT_IDENTIFIER);
		if (oc &&
		    evaluate_option_cache (&d1, packet, lease,
					   (struct client_state *)0,
					   packet -> options, state -> options,
					   &lease -> scope, oc, MDL)) {
			find_hosts_by_uid (&hp, d1.data, d1.len, MDL);
			data_string_forget (&d1, MDL);
			for (h = hp; h; h = h -> n_ipaddr) {
				if (!h -> fixed_addr)
					break;
			}
			if (h)
				host_reference (&host, h, MDL);
			if (hp != NULL)
				host_dereference(&hp, MDL);
		}
		if (!host) {
			find_hosts_by_haddr (&hp,
					     packet -> raw -> htype,
					     packet -> raw -> chaddr,
					     packet -> raw -> hlen,
					     MDL);
			for (h = hp; h; h = h -> n_ipaddr) {
				if (!h -> fixed_addr)
					break;
			}
			if (h)
				host_reference (&host, h, MDL);
			if (hp != NULL)
				host_dereference(&hp, MDL);
		}
		if (!host) {
			find_hosts_by_option(&hp, packet,
					     packet->options, MDL);
			for (h = hp; h; h = h -> n_ipaddr) {
				if (!h -> fixed_addr)
					break;
			}
			if (h)
				host_reference (&host, h, MDL);
			if (hp != NULL)
				host_dereference(&hp, MDL);
		}
	}

	/* If we have a host_decl structure, run the options associated
	   with its group.  Whether the host decl struct is old or not. */
	if (host)
		execute_statements_in_scope (NULL, packet, lease, NULL,
					     packet->options, state->options,
					     &lease->scope, host->group,
					     (lease->pool
					      ? lease->pool->group
					      : lease->subnet->group),
					     NULL);

	/* Drop the request if it's not allowed for this client.   By
	   default, unknown clients are allowed. */
	if (!host &&
	    (oc = lookup_option (&server_universe, state -> options,
				 SV_BOOT_UNKNOWN_CLIENTS)) &&
	    !evaluate_boolean_option_cache (&ignorep,
					    packet, lease,
					    (struct client_state *)0,
					    packet -> options,
					    state -> options,
					    &lease -> scope, oc, MDL)) {
		if (!ignorep)
			log_info ("%s: unknown client", msg);
		free_lease_state (state, MDL);
		if (host)
			host_dereference (&host, MDL);
		return;
	}

	/* Drop the request if it's not allowed for this client. */
	if (!offer &&
	    (oc = lookup_option (&server_universe, state -> options,
				   SV_ALLOW_BOOTP)) &&
	    !evaluate_boolean_option_cache (&ignorep,
					    packet, lease,
					    (struct client_state *)0,
					    packet -> options,
					    state -> options,
					    &lease -> scope, oc, MDL)) {
		if (!ignorep)
			log_info ("%s: bootp disallowed", msg);
		free_lease_state (state, MDL);
		if (host)
			host_dereference (&host, MDL);
		return;
	}

	/* Drop the request if booting is specifically denied. */
	oc = lookup_option (&server_universe, state -> options,
			    SV_ALLOW_BOOTING);
	if (oc &&
	    !evaluate_boolean_option_cache (&ignorep,
					    packet, lease,
					    (struct client_state *)0,
					    packet -> options,
					    state -> options,
					    &lease -> scope, oc, MDL)) {
		if (!ignorep)
			log_info ("%s: booting disallowed", msg);
		free_lease_state (state, MDL);
		if (host)
			host_dereference (&host, MDL);
		return;
	}

	/* If we are configured to do per-class billing, do it. */
	if (have_billing_classes && !(lease -> flags & STATIC_LEASE)) {
		/* See if the lease is currently being billed to a
		   class, and if so, whether or not it can continue to
		   be billed to that class. */
		if (lease -> billing_class) {
			for (i = 0; i < packet -> class_count; i++)
				if (packet -> classes [i] ==
				    lease -> billing_class)
					break;
			if (i == packet -> class_count) {
				unbill_class(lease);
				/* Active lease billing change negates reuse */
				if (lease->binding_state == FTS_ACTIVE) {
					lease->cannot_reuse = 1;
				}
			}
		}

		/* If we don't have an active billing, see if we need
		   one, and if we do, try to do so. */
		if (lease->billing_class == NULL) {
			char *cname = "";
			int bill = 0;

			for (i = 0; i < packet->class_count; i++) {
				struct class *billclass, *superclass;

				billclass = packet->classes[i];
				if (billclass->lease_limit) {
					bill++;
					if (bill_class(lease, billclass))
						break;

					superclass = billclass->superclass;
					if (superclass != NULL)
						cname = superclass->name;
					else
						cname = billclass->name;
				}
			}
			if (bill != 0 && i == packet->class_count) {
				log_info("%s: no available billing: lease "
					 "limit reached in all matching "
					 "classes (last: '%s')", msg, cname);
				free_lease_state(state, MDL);
				if (host)
					host_dereference(&host, MDL);
				return;
			}

			/*
			 * If this is an offer, undo the billing.  We go
			 * through all the steps above to bill a class so
			 * we can hit the 'no available billing' mark and
			 * abort without offering.  But it just doesn't make
			 * sense to permanently bill a class for a non-active
			 * lease.  This means on REQUEST, we will bill this
			 * lease again (if there is a REQUEST).
			 */
			if (offer == DHCPOFFER &&
			    lease->billing_class != NULL &&
			    lease->binding_state != FTS_ACTIVE)
				unbill_class(lease);

			/* Lease billing change negates reuse */
			if (lease->billing_class != NULL) {
				lease->cannot_reuse = 1;
			}
		}
	}

	/* Figure out the filename. */
	oc = lookup_option (&server_universe, state -> options, SV_FILENAME);
	if (oc)
		evaluate_option_cache (&state -> filename, packet, lease,
				       (struct client_state *)0,
				       packet -> options, state -> options,
				       &lease -> scope, oc, MDL);

	/* Choose a server name as above. */
	oc = lookup_option (&server_universe, state -> options,
			    SV_SERVER_NAME);
	if (oc)
		evaluate_option_cache (&state -> server_name, packet, lease,
				       (struct client_state *)0,
				       packet -> options, state -> options,
				       &lease -> scope, oc, MDL);

	/* At this point, we have a lease that we can offer the client.
	   Now we construct a lease structure that contains what we want,
	   and call supersede_lease to do the right thing with it. */
	lt = (struct lease *)0;
	result = lease_allocate (&lt, MDL);
	if (result != ISC_R_SUCCESS) {
		log_info ("%s: can't allocate temporary lease structure: %s",
			  msg, isc_result_totext (result));
		free_lease_state (state, MDL);
		if (host)
			host_dereference (&host, MDL);
		return;
	}

	/* Use the ip address of the lease that we finally found in
	   the database. */
	lt -> ip_addr = lease -> ip_addr;

	/* Start now. */
	lt -> starts = cur_time;

	/* Figure out how long a lease to assign.    If this is a
	   dynamic BOOTP lease, its duration must be infinite. */
	if (offer) {
		lt->flags &= ~BOOTP_LEASE;

		default_lease_time = DEFAULT_DEFAULT_LEASE_TIME;
		if ((oc = lookup_option (&server_universe, state -> options,
					 SV_DEFAULT_LEASE_TIME))) {
			if (evaluate_option_cache (&d1, packet, lease,
						   (struct client_state *)0,
						   packet -> options,
						   state -> options,
						   &lease -> scope, oc, MDL)) {
				if (d1.len == sizeof (u_int32_t))
					default_lease_time =
						getULong (d1.data);
				data_string_forget (&d1, MDL);
			}
		}

		if ((oc = lookup_option (&dhcp_universe, packet -> options,
					 DHO_DHCP_LEASE_TIME)))
			s1 = evaluate_option_cache (&d1, packet, lease,
						    (struct client_state *)0,
						    packet -> options,
						    state -> options,
						    &lease -> scope, oc, MDL);
		else
			s1 = 0;

		if (s1 && (d1.len == 4)) {
			u_int32_t ones = 0xffffffff;

			/* One potential use of reserved leases is to allow
			 * clients to signal reservation of their lease.  They
			 * can kinda sorta do this, if you squint hard enough,
			 * by supplying an 'infinite' requested-lease-time
			 * option.  This is generally bad practice...you want
			 * clients to return to the server on at least some
			 * period (days, months, years) to get up-to-date
			 * config state.  So;
			 *
			 * 1) A client requests 0xffffffff lease-time.
			 * 2) The server reserves the lease, and assigns a
			 *    <= max_lease_time lease-time to the client, which
			 *    we presume is much smaller than 0xffffffff.
			 * 3) The client ultimately fails to renew its lease
			 *    (all clients go offline at some point).
			 * 4) The server retains the reservation, although
			 *    the lease expires and passes through those states
			 *    as normal, it's placed in the 'reserved' queue,
			 *    and is under no circumstances allocated to any
			 *    clients.
			 *
			 * Whether the client knows its reserving its lease or
			 * not, this can be a handy tool for a sysadmin.
			 */
			if ((memcmp(d1.data, &ones, 4) == 0) &&
			    (oc = lookup_option(&server_universe,
						state->options,
						SV_RESERVE_INFINITE)) &&
			    evaluate_boolean_option_cache(&ignorep, packet,
						lease, NULL, packet->options,
						state->options, &lease->scope,
						oc, MDL)) {
				lt->flags |= RESERVED_LEASE;
				if (!ignorep)
					log_info("Infinite-leasetime "
						 "reservation made on %s.",
						 piaddr(lt->ip_addr));
			}

			lease_time = getULong (d1.data);
		} else
			lease_time = default_lease_time;

		if (s1)
			data_string_forget(&d1, MDL);

		/* See if there's a maximum lease time. */
		max_lease_time = DEFAULT_MAX_LEASE_TIME;
		if ((oc = lookup_option (&server_universe, state -> options,
					 SV_MAX_LEASE_TIME))) {
			if (evaluate_option_cache (&d1, packet, lease,
						   (struct client_state *)0,
						   packet -> options,
						   state -> options,
						   &lease -> scope, oc, MDL)) {
				if (d1.len == sizeof (u_int32_t))
					max_lease_time =
						getULong (d1.data);
				data_string_forget (&d1, MDL);
			}
		}

		/* Enforce the maximum lease length. */
		if (lease_time < 0 /* XXX */
		    || lease_time > max_lease_time)
			lease_time = max_lease_time;

		min_lease_time = DEFAULT_MIN_LEASE_TIME;
		if (min_lease_time > max_lease_time)
			min_lease_time = max_lease_time;

		if ((oc = lookup_option (&server_universe, state -> options,
					 SV_MIN_LEASE_TIME))) {
			if (evaluate_option_cache (&d1, packet, lease,
						   (struct client_state *)0,
						   packet -> options,
						   state -> options,
						   &lease -> scope, oc, MDL)) {
				if (d1.len == sizeof (u_int32_t))
					min_lease_time = getULong (d1.data);
				data_string_forget (&d1, MDL);
			}
		}

		/* CC: If there are less than
		   adaptive-lease-time-threshold % free leases,
		     hand out only short term leases */

		memset(&d1, 0, sizeof(d1));
		if (lease->pool &&
		    (oc = lookup_option(&server_universe, state->options,
					SV_ADAPTIVE_LEASE_TIME_THRESHOLD)) &&
		    evaluate_option_cache(&d1, packet, lease, NULL,
					  packet->options, state->options,
					  &lease->scope, oc, MDL)) {
			if (d1.len == 1 && d1.data[0] > 0 &&
			    d1.data[0] < 100) {
				TIME adaptive_time;
				int poolfilled, total, count;

				if (min_lease_time)
					adaptive_time = min_lease_time;
				else
					adaptive_time = DEFAULT_MIN_LEASE_TIME;

				/* Allow the client to keep its lease. */
				if (lease->ends - cur_time > adaptive_time)
					adaptive_time = lease->ends - cur_time;

				count = lease->pool->lease_count;
				total = count - (lease->pool->free_leases +
						 lease->pool->backup_leases);

				poolfilled = (total > (INT_MAX / 100)) ?
					     total / (count / 100) :
					     (total * 100) / count;

				log_debug("Adap-lease: Total: %d, Free: %d, "
					  "Ends: %d, Adaptive: %d, Fill: %d, "
					  "Threshold: %d",
					  lease->pool->lease_count,
					  lease->pool->free_leases,
					  (int)(lease->ends - cur_time),
					  (int)adaptive_time, poolfilled,
					  d1.data[0]);

				if (poolfilled >= d1.data[0] &&
				    lease_time > adaptive_time) {
					log_info("Pool over threshold, time "
						 "for %s reduced from %d to "
						 "%d.", piaddr(lease->ip_addr),
						 (int)lease_time,
						 (int)adaptive_time);

					lease_time = adaptive_time;
				}
			}
			data_string_forget(&d1, MDL);
		}


		/*
		 * If this is an ack check to see if we have used enough of
		 * the pool to want to log a message
		 */
		if (offer == DHCPACK)
			check_pool_threshold(packet, lease, state);

		/* a client requests an address which is not yet active*/
		if (lease->pool && lease->pool->valid_from &&
                    cur_time < lease->pool->valid_from) {
			/* NAK leases before pool activation date */
			cip.len = 4;
			memcpy (cip.iabuf, &lt->ip_addr.iabuf, 4);
			nak_lease(packet, &cip, lease->subnet->group);
			free_lease_state (state, MDL);
			lease_dereference (&lt, MDL);
			if (host)
				host_dereference (&host, MDL);
			return;

		}

		/* CC:
		a) NAK current lease if past the expiration date
		b) extend lease only up to the expiration date, but not
		below min-lease-time
		Setting min-lease-time is essential for this to work!
		The value of min-lease-time determines the length
		of the transition window:
		A client renewing a second before the deadline will
		get a min-lease-time lease. Since the current ip might not
		be routable after the deadline, the client will
		be offline until it DISCOVERS again. Otherwise it will
		receive a NAK at T/2.
		A min-lease-time of 6 seconds effectively switches over
		all clients in this pool very quickly.
			*/

		if (lease->pool && lease->pool->valid_until) {
			if (cur_time >= lease->pool->valid_until) {
				/* NAK leases after pool expiration date */
				cip.len = 4;
				memcpy (cip.iabuf, &lt->ip_addr.iabuf, 4);
				nak_lease(packet, &cip, lease->subnet->group);
				free_lease_state (state, MDL);
				lease_dereference (&lt, MDL);
				if (host)
					host_dereference (&host, MDL);
				return;
			}
			remaining_time = lease->pool->valid_until - cur_time;
			if (lease_time > remaining_time)
				lease_time = remaining_time;
		}

		if (lease_time < min_lease_time) {
			if (min_lease_time)
				lease_time = min_lease_time;
			else
				lease_time = default_lease_time;
		}


#if defined (FAILOVER_PROTOCOL)
		/* Okay, we know the lease duration.   Now check the
		   failover state, if any. */
		if (lease -> pool && lease -> pool -> failover_peer) {
			TIME new_lease_time = lease_time;
			dhcp_failover_state_t *peer =
			    lease -> pool -> failover_peer;

			/* Copy previous lease failover ack-state. */
			lt->tsfp = lease->tsfp;
			lt->atsfp = lease->atsfp;

			/* cltt set below */

			/* Lease times less than MCLT are not a concern. */
			if (lease_time > peer->mclt) {
				/* Each server can only offer a lease time
				 * that is either equal to MCLT (at least),
				 * or up to TSFP+MCLT.  Only if the desired
				 * lease time falls within TSFP+MCLT, can
				 * the server allow it.
				 */
				if (lt->tsfp <= cur_time)
					new_lease_time = peer->mclt;
				else if ((cur_time + lease_time) >
					 (lt->tsfp + peer->mclt))
					new_lease_time = (lt->tsfp - cur_time)
								+ peer->mclt;
			}

			/* Update potential expiry.  Allow for the desired
			 * lease time plus one half the actual (whether
			 * modified downward or not) lease time, which is
			 * actually an estimate of when the client will
			 * renew.  This way, the client will be able to get
			 * the desired lease time upon renewal.
			 */
			if (offer == DHCPACK) {
				if (lease_time == INFINITE_TIME) {
					lt->tstp = MAX_TIME;
				} else {
					lt->tstp =
						leaseTimeCheck(
						    (cur_time + lease_time
						     + (new_lease_time / 2)),
						    MAX_TIME - 1);
				}

				/* If we reduced the potential expiry time,
				 * make sure we don't offer an old-expiry-time
				 * lease for this lease before the change is
				 * ack'd.
				 */
				if (lt->tstp < lt->tsfp)
					lt->tsfp = lt->tstp;
			} else
				lt->tstp = lease->tstp;

			/* Use failover-modified lease time.  */
			lease_time = new_lease_time;
		}
#endif /* FAILOVER_PROTOCOL */

		if (lease_time == INFINITE_TIME) {
			state->offered_expiry = MAX_TIME;
		} else {
			/* If the lease duration causes the time value to wrap,
			 use the maximum expiry time. */
			state->offered_expiry
				= leaseTimeCheck(cur_time + lease_time,
						 MAX_TIME - 1);
		}

		if (when)
			lt -> ends = when;
		else
			lt -> ends = state -> offered_expiry;

		/* Don't make lease active until we actually get a
		   DHCPREQUEST. */
		if (offer == DHCPACK)
			lt -> next_binding_state = FTS_ACTIVE;
		else
			lt -> next_binding_state = lease -> binding_state;
	} else {
		lt->flags |= BOOTP_LEASE;

		lease_time = MAX_TIME - cur_time;

		if ((oc = lookup_option (&server_universe, state -> options,
					 SV_BOOTP_LEASE_LENGTH))) {
			if (evaluate_option_cache (&d1, packet, lease,
						   (struct client_state *)0,
						   packet -> options,
						   state -> options,
						   &lease -> scope, oc, MDL)) {
				if (d1.len == sizeof (u_int32_t))
					lease_time = getULong (d1.data);
				data_string_forget (&d1, MDL);
			}
		}

		if ((oc = lookup_option (&server_universe, state -> options,
					 SV_BOOTP_LEASE_CUTOFF))) {
			if (evaluate_option_cache (&d1, packet, lease,
						   (struct client_state *)0,
						   packet -> options,
						   state -> options,
						   &lease -> scope, oc, MDL)) {
				if (d1.len == sizeof (u_int32_t))
					lease_time = (getULong (d1.data) -
						      cur_time);
				data_string_forget (&d1, MDL);
			}
		}

		lt -> ends = state -> offered_expiry = cur_time + lease_time;
		lt -> next_binding_state = FTS_ACTIVE;
	}

	/* Update Client Last Transaction Time. */
	lt->cltt = cur_time;

	/* See if we want to record the uid for this client */
	oc = lookup_option(&server_universe, state->options,
			   SV_IGNORE_CLIENT_UIDS);
	if ((oc == NULL) ||
	    !evaluate_boolean_option_cache(&ignorep, packet, lease, NULL,
					   packet->options, state->options,
					   &lease->scope, oc, MDL)) {

		/* Record the uid, if given... */
		oc = lookup_option (&dhcp_universe, packet -> options,
				    DHO_DHCP_CLIENT_IDENTIFIER);
		if (oc &&
		    evaluate_option_cache(&d1, packet, lease, NULL,
					  packet->options, state->options,
					  &lease->scope, oc, MDL)) {
			if (d1.len <= sizeof(lt->uid_buf)) {
				memcpy(lt->uid_buf, d1.data, d1.len);
				lt->uid = lt->uid_buf;
				lt->uid_max = sizeof(lt->uid_buf);
				lt->uid_len = d1.len;
			} else {
				unsigned char *tuid;
				lt->uid_max = d1.len;
				lt->uid_len = d1.len;
				tuid = (unsigned char *)dmalloc(lt->uid_max,
								MDL);
				/* XXX inelegant */
				if (!tuid)
					log_fatal ("no memory for large uid.");
				memcpy(tuid, d1.data, lt->uid_len);
				lt->uid = tuid;
			}
			data_string_forget (&d1, MDL);
		}
	}

	if (host) {
		host_reference (&lt -> host, host, MDL);
		host_dereference (&host, MDL);
	}
	if (lease -> subnet)
		subnet_reference (&lt -> subnet, lease -> subnet, MDL);
	if (lease -> billing_class)
		class_reference (&lt -> billing_class,
				 lease -> billing_class, MDL);

	/* Set a flag if this client is a broken client that NUL
	   terminates string options and expects us to do likewise. */
	if (ms_nulltp)
		lease -> flags |= MS_NULL_TERMINATION;
	else
		lease -> flags &= ~MS_NULL_TERMINATION;

	/* Save any bindings. */
	if (lease -> scope) {
		binding_scope_reference (&lt -> scope, lease -> scope, MDL);
		binding_scope_dereference (&lease -> scope, MDL);
	}
	if (lease -> agent_options)
		option_chain_head_reference (&lt -> agent_options,
					     lease -> agent_options, MDL);

	/* Save the vendor-class-identifier for DHCPLEASEQUERY. */
	oc = lookup_option(&dhcp_universe, packet->options,
			   DHO_VENDOR_CLASS_IDENTIFIER);
	if (oc != NULL &&
	    evaluate_option_cache(&d1, packet, NULL, NULL, packet->options,
				  NULL, &lt->scope, oc, MDL)) {
		if (d1.len != 0) {
			bind_ds_value(&lt->scope, "vendor-class-identifier",
				      &d1);
		}

		data_string_forget(&d1, MDL);
	}

	/* If we got relay agent information options from the packet, then
	 * cache them for renewal in case the relay agent can't supply them
	 * when the client unicasts.  The options may be from an addressed
	 * "l3" relay, or from an unaddressed "l2" relay which does not set
	 * giaddr.
	 */
	if (!packet->agent_options_stashed &&
	    (packet->options != NULL) &&
	    packet->options->universe_count > agent_universe.index &&
	    packet->options->universes[agent_universe.index] != NULL) {
	    oc = lookup_option (&server_universe, state -> options,
				SV_STASH_AGENT_OPTIONS);
	    if (!oc ||
		evaluate_boolean_option_cache (&ignorep, packet, lease,
					       (struct client_state *)0,
					       packet -> options,
					       state -> options,
					       &lease -> scope, oc, MDL)) {
		if (lt -> agent_options)
		    option_chain_head_dereference (&lt -> agent_options, MDL);
		option_chain_head_reference
			(&lt -> agent_options,
			 (struct option_chain_head *)
			 packet -> options -> universes [agent_universe.index],
			 MDL);
	    }
	}

	/* Replace the old lease hostname with the new one, if it's changed. */
	oc = lookup_option (&dhcp_universe, packet -> options, DHO_HOST_NAME);
	if (oc)
		s1 = evaluate_option_cache (&d1, packet, (struct lease *)0,
					    (struct client_state *)0,
					    packet -> options,
					    (struct option_state *)0,
					    &global_scope, oc, MDL);
	else
		s1 = 0;

	if (oc && s1 &&
	    lease -> client_hostname &&
	    strlen (lease -> client_hostname) == d1.len &&
	    !memcmp (lease -> client_hostname, d1.data, d1.len)) {
		/* Hasn't changed. */
		data_string_forget (&d1, MDL);
		lt -> client_hostname = lease -> client_hostname;
		lease -> client_hostname = (char *)0;
	} else if (oc && s1) {
		lt -> client_hostname = dmalloc (d1.len + 1, MDL);
		if (!lt -> client_hostname)
			log_error ("no memory for client hostname.");
		else {
			memcpy (lt -> client_hostname, d1.data, d1.len);
			lt -> client_hostname [d1.len] = 0;
		}
		data_string_forget (&d1, MDL);
		/* hostname changed, can't reuse lease */
		lease->cannot_reuse = 1;
	}

	/* Record the hardware address, if given... */
	lt -> hardware_addr.hlen = packet -> raw -> hlen + 1;
	lt -> hardware_addr.hbuf [0] = packet -> raw -> htype;
	memcpy (&lt -> hardware_addr.hbuf [1], packet -> raw -> chaddr,
		sizeof packet -> raw -> chaddr);

	/*
	 * If client has requested the lease become infinite, then it
	 * doens't qualify for reuse even if it's younger than the
	 * dhcp-cache-threshold.
	 */
	if ((lt->flags & RESERVED_LEASE) && !(lease->flags & RESERVED_LEASE)) {
		log_debug ("Cannot reuse: lease is changing to RESERVED");
		lease->cannot_reuse = 1;
	}

	lt->flags |= lease->flags & ~PERSISTENT_FLAGS;

	/* If there are statements to execute when the lease is
	   committed, execute them. */
	if (lease->on_star.on_commit && (!offer || offer == DHCPACK)) {
		execute_statements (NULL, packet, lt, NULL, packet->options,
				    state->options, &lt->scope,
				    lease->on_star.on_commit, NULL);
		if (lease->on_star.on_commit)
			executable_statement_dereference
				(&lease->on_star.on_commit, MDL);
	}

#ifdef NSUPDATE
	/* Perform DDNS updates, if configured to. */
	if ((!offer || offer == DHCPACK) &&
	    (!(oc = lookup_option (&server_universe, state -> options,
				   SV_DDNS_UPDATES)) ||
	     evaluate_boolean_option_cache (&ignorep, packet, lt,
					    (struct client_state *)0,
					    packet -> options,
					    state -> options,
					    &lt -> scope, oc, MDL))) {
		ddns_updates(packet, lt, lease, NULL, NULL, state->options);
	}
#endif /* NSUPDATE */

	/* Don't call supersede_lease on a mocked-up lease. */
	if (lease -> flags & STATIC_LEASE) {
		/* Copy the hardware address into the static lease
		   structure. */
		lease -> hardware_addr.hlen = packet -> raw -> hlen + 1;
		lease -> hardware_addr.hbuf [0] = packet -> raw -> htype;
		memcpy (&lease -> hardware_addr.hbuf [1],
			packet -> raw -> chaddr,
			sizeof packet -> raw -> chaddr); /* XXX */
	} else {
		int commit = (!offer || (offer == DHCPACK));

		/* If dhcp-cache-threshold is enabled, see if "lease" can
		 * be reused. */
		use_old_lease = reuse_lease(packet, lt, lease, state, offer,
					    &same_client);
		if (use_old_lease == 1) {
			commit = 0;
		}

#if !defined(DELAYED_ACK)
		/* Install the new information on 'lt' onto the lease at
		 * 'lease'.  If this is a DHCPOFFER, it is a 'soft' promise,
		 * if it is a DHCPACK, it is a 'hard' binding, so it needs
		 * to be recorded and propogated immediately.  If the update
		 * fails, don't ACK it (or BOOTREPLY) either; we may give
		 * the same lease to another client later, and that would be
		 * a conflict.
		 */
		if ((use_old_lease == 0) &&
		    !supersede_lease(lease, lt, commit,
				     offer == DHCPACK, offer == DHCPACK, 0)) {
#else /* defined(DELAYED_ACK) */
		/*
		 * If there already isn't a need for a lease commit, and we
		 * can just answer right away, set a flag to indicate this.
		 */
		if (commit)
			enqueue = ISC_TRUE;

		/* Install the new information on 'lt' onto the lease at
		 * 'lease'.  We will not 'commit' this information to disk
		 * yet (fsync()), we will 'propogate' the information if
		 * this is BOOTP or a DHCPACK, but we will not 'pimmediate'ly
		 * transmit failover binding updates (this is delayed until
		 * after the fsync()).  If the update fails, don't ACK it (or
		 * BOOTREPLY either); we may give the same lease out to a
		 * different client, and that would be a conflict.
		 */
		if ((use_old_lease == 0) &&
		    !supersede_lease(lease, lt, 0,
				     !offer || offer == DHCPACK, 0, 0)) {
#endif
			log_info ("%s: database update failed", msg);
			free_lease_state (state, MDL);
			lease_dereference (&lt, MDL);
			return;
		}
	}
	lease_dereference (&lt, MDL);

	/* Remember the interface on which the packet arrived. */
	state -> ip = packet -> interface;

	/* Remember the giaddr, xid, secs, flags and hops. */
	state -> giaddr = packet -> raw -> giaddr;
	state -> ciaddr = packet -> raw -> ciaddr;
	state -> xid = packet -> raw -> xid;
	state -> secs = packet -> raw -> secs;
	state -> bootp_flags = packet -> raw -> flags;
	state -> hops = packet -> raw -> hops;
	state -> offer = offer;

	/* If we're always supposed to broadcast to this client, set
	   the broadcast bit in the bootp flags field. */
	if ((oc = lookup_option (&server_universe, state -> options,
				SV_ALWAYS_BROADCAST)) &&
	    evaluate_boolean_option_cache (&ignorep, packet, lease,
					   (struct client_state *)0,
					   packet -> options, state -> options,
					   &lease -> scope, oc, MDL))
		state -> bootp_flags |= htons (BOOTP_BROADCAST);

	/* Get the Maximum Message Size option from the packet, if one
	   was sent. */
	oc = lookup_option (&dhcp_universe, packet -> options,
			    DHO_DHCP_MAX_MESSAGE_SIZE);
	if (oc &&
	    evaluate_option_cache (&d1, packet, lease,
				   (struct client_state *)0,
				   packet -> options, state -> options,
				   &lease -> scope, oc, MDL)) {
		if (d1.len == sizeof (u_int16_t))
			state -> max_message_size = getUShort (d1.data);
		data_string_forget (&d1, MDL);
	} else {
		oc = lookup_option (&dhcp_universe, state -> options,
				    DHO_DHCP_MAX_MESSAGE_SIZE);
		if (oc &&
		    evaluate_option_cache (&d1, packet, lease,
					   (struct client_state *)0,
					   packet -> options, state -> options,
					   &lease -> scope, oc, MDL)) {
			if (d1.len == sizeof (u_int16_t))
				state -> max_message_size =
					getUShort (d1.data);
			data_string_forget (&d1, MDL);
		}
	}

	/* Get the Subnet Selection option from the packet, if one
	   was sent. */
	if ((oc = lookup_option (&dhcp_universe, packet -> options,
				 DHO_SUBNET_SELECTION))) {

		/* Make a copy of the data. */
		struct option_cache *noc = (struct option_cache *)0;
		if (option_cache_allocate (&noc, MDL)) {
			if (oc -> data.len)
				data_string_copy (&noc -> data,
						  &oc -> data, MDL);
			if (oc -> expression)
				expression_reference (&noc -> expression,
						      oc -> expression, MDL);
			if (oc -> option)
				option_reference(&(noc->option), oc->option,
						 MDL);

			save_option (&dhcp_universe, state -> options, noc);
			option_cache_dereference (&noc, MDL);
		}
	}

	/* Now, if appropriate, put in DHCP-specific options that
	   override those. */
	if (state -> offer) {
		i = DHO_DHCP_MESSAGE_TYPE;
		oc = (struct option_cache *)0;
		if (option_cache_allocate (&oc, MDL)) {
			if (make_const_data (&oc -> expression,
					     &state -> offer, 1, 0, 0, MDL)) {
				option_code_hash_lookup(&oc->option,
							dhcp_universe.code_hash,
							&i, 0, MDL);
				save_option (&dhcp_universe,
					     state -> options, oc);
			}
			option_cache_dereference (&oc, MDL);
		}

		get_server_source_address(&from, state->options,
					  state->options, packet);
		memcpy(state->from.iabuf, &from, sizeof(from));
		state->from.len = sizeof(from);

		offered_lease_time =
			state -> offered_expiry - cur_time;

		putULong(state->expiry, (u_int32_t)offered_lease_time);
		i = DHO_DHCP_LEASE_TIME;
		oc = (struct option_cache *)0;
		if (option_cache_allocate (&oc, MDL)) {
			if (make_const_data(&oc->expression, state->expiry,
					    4, 0, 0, MDL)) {
				option_code_hash_lookup(&oc->option,
							dhcp_universe.code_hash,
							&i, 0, MDL);
				save_option (&dhcp_universe,
					     state -> options, oc);
			}
			option_cache_dereference (&oc, MDL);
		}

		/*
		 * Validate any configured renew or rebinding times against
		 * the determined lease time.  Do rebinding first so that
		 * the renew time can be validated against the rebind time.
		 */
		if ((oc = lookup_option(&dhcp_universe, state->options,
					DHO_DHCP_REBINDING_TIME)) != NULL &&
		    evaluate_option_cache(&d1, packet, lease, NULL,
					  packet->options, state->options,
					  &lease->scope, oc, MDL)) {
			TIME rebind_time = getULong(d1.data);

			/* Drop the configured (invalid) rebinding time. */
			if (rebind_time >= offered_lease_time)
				delete_option(&dhcp_universe, state->options,
					      DHO_DHCP_REBINDING_TIME);
			else /* XXX: variable is reused. */
				offered_lease_time = rebind_time;

			data_string_forget(&d1, MDL);
		}

		if ((oc = lookup_option(&dhcp_universe, state->options,
					DHO_DHCP_RENEWAL_TIME)) != NULL &&
		    evaluate_option_cache(&d1, packet, lease, NULL,
					  packet->options, state->options,
					  &lease->scope, oc, MDL)) {
			if (getULong(d1.data) >= offered_lease_time)
				delete_option(&dhcp_universe, state->options,
					      DHO_DHCP_RENEWAL_TIME);

			data_string_forget(&d1, MDL);
		}
	} else {
		/* XXXSK: should we use get_server_source_address() here? */
		if (state -> ip -> address_count) {
			state -> from.len =
				sizeof state -> ip -> addresses [0];
			memcpy (state -> from.iabuf,
				&state -> ip -> addresses [0],
				state -> from.len);
		}
	}

	/* Figure out the address of the boot file server. */
	memset (&state -> siaddr, 0, sizeof state -> siaddr);
	if ((oc =
	     lookup_option (&server_universe,
			    state -> options, SV_NEXT_SERVER))) {
		if (evaluate_option_cache (&d1, packet, lease,
					   (struct client_state *)0,
					   packet -> options, state -> options,
					   &lease -> scope, oc, MDL)) {
			/* If there was more than one answer,
			   take the first. */
			if (d1.len >= 4 && d1.data)
				memcpy (&state -> siaddr, d1.data, 4);
			data_string_forget (&d1, MDL);
		}
	}

	/* Use the subnet mask from the subnet declaration if no other
	   mask has been provided. */
	i = DHO_SUBNET_MASK;
	if (!lookup_option (&dhcp_universe, state -> options, i)) {
		oc = (struct option_cache *)0;
		if (option_cache_allocate (&oc, MDL)) {
			if (make_const_data (&oc -> expression,
					     lease -> subnet -> netmask.iabuf,
					     lease -> subnet -> netmask.len,
					     0, 0, MDL)) {
				option_code_hash_lookup(&oc->option,
							dhcp_universe.code_hash,
							&i, 0, MDL);
				save_option (&dhcp_universe,
					     state -> options, oc);
			}
			option_cache_dereference (&oc, MDL);
		}
	}

	/* Use the name of the host declaration if there is one
	   and no hostname has otherwise been provided, and if the
	   use-host-decl-name flag is set. */
	use_host_decl_name(packet, lease, state->options);

	/* Send client_id back if we received it and echo-client-id is on. */
	echo_client_id(packet, lease, state->options, state->options);

	/* If we don't have a hostname yet, and we've been asked to do
	   a reverse lookup to find the hostname, do it. */
	i = DHO_HOST_NAME;
	j = SV_GET_LEASE_HOSTNAMES;
	if (!lookup_option(&dhcp_universe, state->options, i) &&
	    evaluate_boolean_option_cache
	     (&ignorep, packet, lease, NULL,
	      packet->options, state->options, &lease->scope,
	      lookup_option (&server_universe, state->options, j), MDL)) {
		struct in_addr ia;
		struct hostent *h;

		memcpy (&ia, lease -> ip_addr.iabuf, 4);

		h = gethostbyaddr ((char *)&ia, sizeof ia, AF_INET);
		if (!h)
			log_error ("No hostname for %s", inet_ntoa (ia));
		else {
			oc = (struct option_cache *)0;
			if (option_cache_allocate (&oc, MDL)) {
				if (make_const_data (&oc -> expression,
						     ((unsigned char *)
						      h -> h_name),
						     strlen (h -> h_name) + 1,
						     1, 1, MDL)) {
					option_code_hash_lookup(&oc->option,
							dhcp_universe.code_hash,
								&i, 0, MDL);
					save_option (&dhcp_universe,
						     state -> options, oc);
				}
				option_cache_dereference (&oc, MDL);
			}
		}
	}

	/* If so directed, use the leased IP address as the router address.
	   This supposedly makes Win95 machines ARP for all IP addresses,
	   so if the local router does proxy arp, you win. */

	if (evaluate_boolean_option_cache
	    (&ignorep, packet, lease, (struct client_state *)0,
	     packet -> options, state -> options, &lease -> scope,
	     lookup_option (&server_universe, state -> options,
			    SV_USE_LEASE_ADDR_FOR_DEFAULT_ROUTE), MDL)) {
		i = DHO_ROUTERS;
		oc = lookup_option (&dhcp_universe, state -> options, i);
		if (!oc) {
			oc = (struct option_cache *)0;
			if (option_cache_allocate (&oc, MDL)) {
				if (make_const_data (&oc -> expression,
						     lease -> ip_addr.iabuf,
						     lease -> ip_addr.len,
						     0, 0, MDL)) {
					option_code_hash_lookup(&oc->option,
							dhcp_universe.code_hash,
								&i, 0, MDL);
					save_option (&dhcp_universe,
						     state -> options, oc);
				}
				option_cache_dereference (&oc, MDL);
			}
		}
	}

	/* If a site option space has been specified, use that for
	   site option codes. */
	i = SV_SITE_OPTION_SPACE;
	if ((oc = lookup_option (&server_universe, state -> options, i)) &&
	    evaluate_option_cache (&d1, packet, lease,
				   (struct client_state *)0,
				   packet -> options, state -> options,
				   &lease -> scope, oc, MDL)) {
		struct universe *u = (struct universe *)0;

		if (!universe_hash_lookup (&u, universe_hash,
					   (const char *)d1.data, d1.len,
					   MDL)) {
			log_error ("unknown option space %s.", d1.data);
			data_string_forget (&d1, MDL);
			return;
		}

		state -> options -> site_universe = u -> index;
		state->options->site_code_min = find_min_site_code(u);
		data_string_forget (&d1, MDL);
	} else {
		state -> options -> site_code_min = 0;
		state -> options -> site_universe = dhcp_universe.index;
	}

	/* If the client has provided a list of options that it wishes
	   returned, use it to prioritize.  If there's a parameter
	   request list in scope, use that in preference.  Otherwise
	   use the default priority list. */

	oc = lookup_option (&dhcp_universe, state -> options,
			    DHO_DHCP_PARAMETER_REQUEST_LIST);

	if (!oc)
		oc = lookup_option (&dhcp_universe, packet -> options,
				    DHO_DHCP_PARAMETER_REQUEST_LIST);
	if (oc)
		evaluate_option_cache (&state -> parameter_request_list,
				       packet, lease, (struct client_state *)0,
				       packet -> options, state -> options,
				       &lease -> scope, oc, MDL);

#ifdef DEBUG_PACKET
	dump_packet (packet);
	dump_raw ((unsigned char *)packet -> raw, packet -> packet_length);
#endif

	lease -> state = state;

	log_info ("%s", msg);

	/* Hang the packet off the lease state. */
	packet_reference (&lease -> state -> packet, packet, MDL);

	/* If this is a DHCPOFFER, send a ping (if appropriate) to the
	 * lease address before actually we send the offer. */
	if ((offer == DHCPOFFER) &&
	    do_ping_check(packet, state, lease, original_cltt, same_client)) {
		++outstanding_pings;
	} else {
  		lease->cltt = cur_time;
#if defined(DELAYED_ACK)
		if (enqueue)
			delayed_ack_enqueue(lease);
		else
#endif
			dhcp_reply(lease);
	}
}

/*
 * \brief Sends a ping to the lease ip_addr when appropriate
 *
 * A ping will be sent if all of the following are true:
 *
 * 1. Ping checks are enabled
 * 2. The lease is neither active nor static
 * 3. Any of the following is true:
 *    a. The lease state is ABANDONED
 *    b. This is the first offer of this lease (CLTT = 0)
 *    c. The lease is being offered to a client other than its previous
 *    owner
 *    d. The lease is being offered to its previous owner and more than
 *    cltt-secs have elapsed since CLTT of the original lease.
 *
 * \param packet inbound packet received from the client
 * \param state lease options state
 * \param lease lease to be offered (if one)
 * \param original_cltt CLTT of the original lease
 * \param same_client flag indicating if the client to be offered the
 * lease is its previous owner
 * \return Returns 1 if ping has been sent, 0 otherwise
 */
int do_ping_check(struct packet* packet, struct lease_state* state,
		  struct lease* lease, TIME original_cltt,
		  int same_client) {
	TIME ping_timeout = DEFAULT_PING_TIMEOUT;
	TIME ping_timeout_ms = DEFAULT_PING_TIMEOUT_MS;
	struct option_cache *oc = NULL;
	struct data_string ds;
	struct timeval tv;
	int ignorep;
	int timeout_secs;
	int timeout_ms;

	// Don't go any further if lease is active or static.
	if (lease->binding_state == FTS_ACTIVE || lease->flags & STATIC_LEASE) {
		return (0);
	}

	// If pings aren't enabled, punt.
	oc = lookup_option (&server_universe, state -> options, SV_PING_CHECKS);
	if (oc &&
	    !(evaluate_boolean_option_cache (&ignorep, packet, lease,
					   0, packet->options, state->options,
					    &lease->scope, oc, MDL))) {
		return (0);
	}

	// If it's not the first time for the same client and not an
	// abandoned lease, we need to check the cltt threshold
	if (same_client && original_cltt &&
	    lease->binding_state != FTS_ABANDONED) {
		TIME cltt_secs = DEFAULT_PING_CLTT_SECS;
		memset(&ds, 0, sizeof(ds));
		oc = lookup_option (&server_universe, state->options,
				    SV_PING_CLTT_SECS);
		if (oc &&
		    (evaluate_option_cache (&ds, packet, lease, 0,
					    packet->options, state->options,
					    &lease->scope, oc, MDL))) {
			if (ds.len == sizeof (u_int32_t)) {
				cltt_secs = getULong (ds.data);
			}

			data_string_forget (&ds, MDL);
		}

		// Punt if it is too soon.
		if (cur_time - original_cltt < cltt_secs) {
			return (0);
		}
	}

	// Send the ping.
	icmp_echorequest (&lease->ip_addr);

	/* Determine whether to use configured or default ping timeout. */
	memset(&ds, 0, sizeof(ds));

	oc = lookup_option (&server_universe, state->options, SV_PING_TIMEOUT);
	if (oc &&
	    (evaluate_option_cache (&ds, packet, lease, 0,
				    packet->options, state->options,
				    &lease->scope, oc, MDL))) {
		if (ds.len == sizeof (u_int32_t)) {
			ping_timeout = getULong (ds.data);
		}

		data_string_forget (&ds, MDL);
	}

	oc = lookup_option (&server_universe, state->options, SV_PING_TIMEOUT_MS);
	if (oc &&
	    (evaluate_option_cache (&ds, packet, lease, 0,
				    packet->options, state->options,
				    &lease->scope, oc, MDL))) {
		if (ds.len == sizeof (u_int32_t)) {
			ping_timeout_ms = getULong (ds.data);
		}

		data_string_forget (&ds, MDL);
	}

	/*
	 * Set the timeout for the ping to the current timeval plus
	 * the configured time out. Use ping-timeout-ms if it is > 0.
	 * This overrides ping-timeout allowing users to specify it in
	 * milliseconds.
	*/
	if (ping_timeout_ms > 0) {
		timeout_secs = ping_timeout_ms / 1000;
		timeout_ms = ping_timeout_ms % 1000;
	} else {
		timeout_secs = ping_timeout;
		timeout_ms = 0;

	}

	tv.tv_sec = cur_tv.tv_sec + timeout_secs;
	tv.tv_usec = cur_tv.tv_usec + (timeout_ms * 1000);

#ifdef DEBUG
	log_debug ("Pinging:%s, state: %d, same client? %s, "
		   " orig_cltt %s, elasped: %ld, timeout in: %d.%d secs" ,
                   piaddr(lease->ip_addr),
		   lease->binding_state,
		   (same_client ? "y" : "n"),
		   (original_cltt ? print_time(original_cltt) : "0"),
		   (original_cltt ? (long)(cur_time - original_cltt) : 0),
		   timeout_secs, timeout_ms);

#endif

	add_timeout (&tv, lease_ping_timeout, lease, (tvref_t)lease_reference,
		     (tvunref_t)lease_dereference);

	return (1);
}


#if defined(DELAYED_ACK)

/*
 * CC: queue single ACK:
 * - write the lease (but do not fsync it yet)
 * - add to double linked list
 * - commit if more than xx ACKs pending
 * - if necessary set the max timer and bump the next timer
 *   but only up to the max timer value.
 */

static void
delayed_ack_enqueue(struct lease *lease)
{
	struct leasequeue *q;

	if (!write_lease(lease))
		return;
	if (free_ackqueue) {
	   	q = free_ackqueue;
		free_ackqueue = q->next;
	} else {
		q = ((struct leasequeue *)
			     dmalloc(sizeof(struct leasequeue), MDL));
		if (!q)
			log_fatal("delayed_ack_enqueue: no memory!");
	}
	memset(q, 0, sizeof *q);
	/* prepend to ackqueue*/
	lease_reference(&q->lease, lease, MDL);
	q->next = ackqueue_head;
	ackqueue_head = q;
	if (!ackqueue_tail)
		ackqueue_tail = q;
	else
		q->next->prev = q;

	outstanding_acks++;
	if (outstanding_acks > max_outstanding_acks) {
		/* Cancel any pending timeout and call handler directly */
		cancel_timeout(delayed_acks_timer, NULL);
		delayed_acks_timer(NULL);
	} else {
		struct timeval next_fsync;

		if (max_fsync.tv_sec == 0 && max_fsync.tv_usec == 0) {
			/* set the maximum time we'll wait */
			max_fsync.tv_sec = cur_tv.tv_sec + max_ack_delay_secs;
			max_fsync.tv_usec = cur_tv.tv_usec +
				max_ack_delay_usecs;

			if (max_fsync.tv_usec >= 1000000) {
				max_fsync.tv_sec++;
				max_fsync.tv_usec -= 1000000;
			}
		}

		/* Set the timeout */
		next_fsync.tv_sec = cur_tv.tv_sec;
		next_fsync.tv_usec = cur_tv.tv_usec + min_ack_delay_usecs;
		if (next_fsync.tv_usec >= 1000000) {
			next_fsync.tv_sec++;
			next_fsync.tv_usec -= 1000000;
		}
		/* but not more than the max */
		if ((next_fsync.tv_sec > max_fsync.tv_sec) ||
		    ((next_fsync.tv_sec == max_fsync.tv_sec) &&
		     (next_fsync.tv_usec > max_fsync.tv_usec))) {
			next_fsync.tv_sec = max_fsync.tv_sec;
			next_fsync.tv_usec = max_fsync.tv_usec;
		}

		add_timeout(&next_fsync, delayed_acks_timer, NULL,
			    (tvref_t) NULL, (tvunref_t) NULL);
	}
}

/* Processes any delayed acks:
 * Commits the leases and then for each delayed ack:
 *  - Update the failover peer if we're in failover
 *  - Send the REPLY to the client
 */
static void
delayed_acks_timer(void *foo)
{
	struct leasequeue *ack, *p;

	/* Reset max fsync */
	memset(&max_fsync, 0, sizeof(max_fsync));

	if (!outstanding_acks) {
		/* Nothing to do, so punt, shouldn't happen? */
		return;
	}

	/* Commit the leases first */
	commit_leases();

	/* Now process the delayed ACKs
	 - update failover peer
	 - send out the ACK packets
	 - move the queue slots to the free list
	*/

	/*  process from bottom to retain packet order */
	for (ack = ackqueue_tail ; ack ; ack = p) {
		p = ack->prev;

#if defined(FAILOVER_PROTOCOL)
		/* If we're in failover we need to send any deferred
		* bind updates as well as the replies */
		if (ack->lease->pool) {
			dhcp_failover_state_t *fpeer;

			fpeer = ack->lease->pool->failover_peer;
			if (fpeer && fpeer->link_to_peer) {
				dhcp_failover_send_updates(fpeer);
			}
		}
#endif

		/* dhcp_reply() requires that the reply state still be valid */
		if (ack->lease->state == NULL)
			log_error("delayed ack for %s has gone stale",
				  piaddr(ack->lease->ip_addr));
		else {
			dhcp_reply(ack->lease);
		}

		lease_dereference(&ack->lease, MDL);
		ack->next = free_ackqueue;
		free_ackqueue = ack;
	}

	ackqueue_head = NULL;
	ackqueue_tail = NULL;
	outstanding_acks = 0;
}

#if defined (DEBUG_MEMORY_LEAKAGE_ON_EXIT)
void
relinquish_ackqueue(void)
{
	struct leasequeue *q, *n;

	for (q = ackqueue_head ; q ; q = n) {
		n = q->next;
		dfree(q, MDL);
	}
	for (q = free_ackqueue ; q ; q = n) {
		n = q->next;
		dfree(q, MDL);
	}
}
#endif

#endif /* defined(DELAYED_ACK) */

void dhcp_reply (lease)
	struct lease *lease;
{
	int bufs = 0;
	unsigned packet_length;
	struct dhcp_packet raw;
	struct sockaddr_in to;
	struct in_addr from;
	struct hardware hto;
	int result;
	struct lease_state *state = lease -> state;
	int nulltp, bootpp, unicastp = 1;
#if defined(RELAY_PORT)
	u_int16_t relay_port = 0;
#endif
	struct data_string d1;
	const char *s;

	if (!state)
		log_fatal ("dhcp_reply was supplied lease with no state!");

	/* Compose a response for the client... */
	memset (&raw, 0, sizeof raw);
	memset (&d1, 0, sizeof d1);

	/* Copy in the filename if given; otherwise, flag the filename
	   buffer as available for options. */
	if (state -> filename.len && state -> filename.data) {
		memcpy (raw.file,
			state -> filename.data,
			state -> filename.len > sizeof raw.file
			? sizeof raw.file : state -> filename.len);
		if (sizeof raw.file > state -> filename.len)
			memset (&raw.file [state -> filename.len], 0,
				(sizeof raw.file) - state -> filename.len);
		else
			log_info("file name longer than packet field "
				 "truncated - field: %lu name: %d %.*s",
				 (unsigned long)sizeof(raw.file),
				 state->filename.len, (int)state->filename.len,
				 state->filename.data);
	} else
		bufs |= 1;

	/* Copy in the server name if given; otherwise, flag the
	   server_name buffer as available for options. */
	if (state -> server_name.len && state -> server_name.data) {
		memcpy (raw.sname,
			state -> server_name.data,
			state -> server_name.len > sizeof raw.sname
			? sizeof raw.sname : state -> server_name.len);
		if (sizeof raw.sname > state -> server_name.len)
			memset (&raw.sname [state -> server_name.len], 0,
				(sizeof raw.sname) - state -> server_name.len);
		else
			log_info("server name longer than packet field "
				 "truncated - field: %lu name: %d %.*s",
				 (unsigned long)sizeof(raw.sname),
				 state->server_name.len,
				 (int)state->server_name.len,
				 state->server_name.data);
	} else
		bufs |= 2; /* XXX */

	memcpy (raw.chaddr,
		&lease -> hardware_addr.hbuf [1], sizeof raw.chaddr);
	raw.hlen = lease -> hardware_addr.hlen - 1;
	raw.htype = lease -> hardware_addr.hbuf [0];

	/* See if this is a Microsoft client that NUL-terminates its
	   strings and expects us to do likewise... */
	if (lease -> flags & MS_NULL_TERMINATION)
		nulltp = 1;
	else
		nulltp = 0;

	/* See if this is a bootp client... */
	if (state -> offer)
		bootpp = 0;
	else
		bootpp = 1;

	/* Insert such options as will fit into the buffer. */
	packet_length = cons_options (state -> packet, &raw, lease,
				      (struct client_state *)0,
				      state -> max_message_size,
				      state -> packet -> options,
				      state -> options, &global_scope,
				      bufs, nulltp, bootpp,
				      &state -> parameter_request_list,
				      (char *)0);

	memcpy (&raw.ciaddr, &state -> ciaddr, sizeof raw.ciaddr);
	memcpy (&raw.yiaddr, lease -> ip_addr.iabuf, 4);
	raw.siaddr = state -> siaddr;
	raw.giaddr = state -> giaddr;

	raw.xid = state -> xid;
	raw.secs = state -> secs;
	raw.flags = state -> bootp_flags;
	raw.hops = state -> hops;
	raw.op = BOOTREPLY;

	if (lease -> client_hostname) {
		if ((strlen (lease -> client_hostname) <= 64) &&
		    db_printable((unsigned char *)lease->client_hostname))
			s = lease -> client_hostname;
		else
			s = "Hostname Unsuitable for Printing";
	} else
		s = (char *)0;

	/* Make sure outgoing packets are at least as big
	   as a BOOTP packet. */
	if (packet_length < BOOTP_MIN_LEN)
		packet_length = BOOTP_MIN_LEN;

#if defined(DHCPv6) && defined(DHCP4o6)
	if (dhcpv4_over_dhcpv6 && (state->packet->dhcp4o6_response != NULL)) {
		/* Say what we're doing... */
		log_info ("DHCP4o6 %s on %s to %s %s%s%svia %s",
			  (state -> offer
			   ? (state -> offer == DHCPACK
			      ? "DHCPACK" : "DHCPOFFER")
			   : "BOOTREPLY"),
			  piaddr (lease -> ip_addr),
			  (lease -> hardware_addr.hlen
			   ? print_hw_addr (lease -> hardware_addr.hbuf [0],
					    lease -> hardware_addr.hlen - 1,
					    &lease -> hardware_addr.hbuf [1])
			   : print_hex_1(lease->uid_len, lease->uid, 60)),
			  s ? "(" : "", s ? s : "", s ? ") " : "",
			  piaddr(state->packet->client_addr));

		/* fill dhcp4o6_response */
		state->packet->dhcp4o6_response->len = packet_length;
		state->packet->dhcp4o6_response->buffer = NULL;
		if (!buffer_allocate(&state->packet->dhcp4o6_response->buffer,
				     packet_length, MDL)) {
			log_fatal("No memory to store DHCP4o6 reply.");
		}
		state->packet->dhcp4o6_response->data =
			state->packet->dhcp4o6_response->buffer->data;
		memcpy(state->packet->dhcp4o6_response->buffer->data,
		       &raw, packet_length);

		/* done */
		free_lease_state (state, MDL);
		lease -> state = (struct lease_state *)0;

		return;
	}
#endif

	/* Say what we're doing... */
	log_info ("%s on %s to %s %s%s%svia %s",
		  (state -> offer
		   ? (state -> offer == DHCPACK ? "DHCPACK" : "DHCPOFFER")
		   : "BOOTREPLY"),
		  piaddr (lease -> ip_addr),
		  (lease -> hardware_addr.hlen
		   ? print_hw_addr (lease -> hardware_addr.hbuf [0],
				    lease -> hardware_addr.hlen - 1,
				    &lease -> hardware_addr.hbuf [1])
		   : print_hex_1(lease->uid_len, lease->uid, 60)),
		  s ? "(" : "", s ? s : "", s ? ") " : "",
		  (state -> giaddr.s_addr
		   ? inet_ntoa (state -> giaddr)
		   : state -> ip -> name));

#ifdef DEBUG_PACKET
	dump_raw ((unsigned char *)&raw, packet_length);
#endif

	/* Set up the hardware address... */
	hto.hlen = lease -> hardware_addr.hlen;
	memcpy (hto.hbuf, lease -> hardware_addr.hbuf, hto.hlen);

	to.sin_family = AF_INET;
#ifdef HAVE_SA_LEN
	to.sin_len = sizeof to;
#endif
	memset (to.sin_zero, 0, sizeof to.sin_zero);

#if defined(RELAY_PORT)
	relay_port = dhcp_check_relayport(state->packet);
#endif

	/* If this was gatewayed, send it back to the gateway... */
	if (raw.giaddr.s_addr) {
		to.sin_addr = raw.giaddr;
		if (raw.giaddr.s_addr != htonl (INADDR_LOOPBACK))
#if defined(RELAY_PORT)
			to.sin_port = relay_port ? relay_port : local_port;
#else
			to.sin_port = local_port;
#endif
		else
			to.sin_port = remote_port; /* For debugging. */

		if (fallback_interface) {
			result = send_packet(fallback_interface, NULL, &raw,
					     packet_length, raw.siaddr, &to,
					     NULL);
			if (result < 0) {
				log_error ("%s:%d: Failed to send %d byte long "
					   "packet over %s interface.", MDL,
					   packet_length,
					   fallback_interface->name);
			}


			free_lease_state (state, MDL);
			lease -> state = (struct lease_state *)0;
			return;
		}

	/* If the client is RENEWING, unicast to the client using the
	   regular IP stack.  Some clients, particularly those that
	   follow RFC1541, are buggy, and send both ciaddr and server
	   identifier.  We deal with this situation by assuming that
	   if we got both dhcp-server-identifier and ciaddr, and
	   giaddr was not set, then the client is on the local
	   network, and we can therefore unicast or broadcast to it
	   successfully.  A client in REQUESTING state on another
	   network that's making this mistake will have set giaddr,
	   and will therefore get a relayed response from the above
	   code. */
	} else if (raw.ciaddr.s_addr &&
		   !((state -> got_server_identifier ||
		      (raw.flags & htons (BOOTP_BROADCAST))) &&
		     /* XXX This won't work if giaddr isn't zero, but it is: */
		     (state -> shared_network ==
		      lease -> subnet -> shared_network)) &&
		   state -> offer == DHCPACK) {
		to.sin_addr = raw.ciaddr;
		to.sin_port = remote_port;

		if (fallback_interface) {
			result = send_packet(fallback_interface, NULL, &raw,
					     packet_length, raw.siaddr, &to,
					     NULL);
			if (result < 0) {
				log_error("%s:%d: Failed to send %d byte long"
					  " packet over %s interface.", MDL,
					   packet_length,
					   fallback_interface->name);
			}

			free_lease_state (state, MDL);
			lease -> state = (struct lease_state *)0;
			return;
		}

	/* If it comes from a client that already knows its address
	   and is not requesting a broadcast response, and we can
	   unicast to a client without using the ARP protocol, sent it
	   directly to that client. */
	} else if (!(raw.flags & htons (BOOTP_BROADCAST)) &&
		   can_unicast_without_arp (state -> ip)) {
		to.sin_addr = raw.yiaddr;
		to.sin_port = remote_port;

	/* Otherwise, broadcast it on the local network. */
	} else {
		to.sin_addr = limited_broadcast;
		to.sin_port = remote_port;
		if (!(lease -> flags & UNICAST_BROADCAST_HACK))
			unicastp = 0;
	}

	memcpy (&from, state -> from.iabuf, sizeof from);

	result = send_packet(state->ip, NULL, &raw, packet_length,
			      from, &to, unicastp ? &hto : NULL);
	if (result < 0) {
	    log_error ("%s:%d: Failed to send %d byte long "
		       "packet over %s interface.", MDL,
		       packet_length, state->ip->name);
	}


	/* Free all of the entries in the option_state structure
	   now that we're done with them. */

	free_lease_state (state, MDL);
	lease -> state = (struct lease_state *)0;
}

int find_lease (struct lease **lp,
		struct packet *packet, struct shared_network *share, int *ours,
		int *peer_has_leases, struct lease *ip_lease_in,
		const char *file, int line)
{
	struct lease *uid_lease = (struct lease *)0;
	struct lease *ip_lease = (struct lease *)0;
	struct lease *hw_lease = (struct lease *)0;
	struct lease *lease = (struct lease *)0;
	struct iaddr cip;
	struct host_decl *hp = (struct host_decl *)0;
	struct host_decl *host = (struct host_decl *)0;
	struct lease *fixed_lease = (struct lease *)0;
	struct lease *next = (struct lease *)0;
	struct option_cache *oc;
	struct data_string d1;
	int have_client_identifier = 0;
	struct data_string client_identifier;
	struct hardware h;

#if defined(FAILOVER_PROTOCOL)
	/* Quick check to see if the peer has leases. */
	if (peer_has_leases) {
		struct pool *pool;

		for (pool = share->pools ; pool ; pool = pool->next) {
			dhcp_failover_state_t *peer = pool->failover_peer;

			if (peer &&
			    ((peer->i_am == primary && pool->backup_leases) ||
			     (peer->i_am == secondary && pool->free_leases))) {
				*peer_has_leases = 1;
				break;
			}
		}
	}
#endif /* FAILOVER_PROTOCOL */

	if (packet -> raw -> ciaddr.s_addr) {
		cip.len = 4;
		memcpy (cip.iabuf, &packet -> raw -> ciaddr, 4);
	} else {
		/* Look up the requested address. */
		oc = lookup_option (&dhcp_universe, packet -> options,
				    DHO_DHCP_REQUESTED_ADDRESS);
		memset (&d1, 0, sizeof d1);
		if (oc &&
		    evaluate_option_cache (&d1, packet, (struct lease *)0,
					   (struct client_state *)0,
					   packet -> options,
					   (struct option_state *)0,
					   &global_scope, oc, MDL)) {
			packet -> got_requested_address = 1;
			cip.len = 4;
			memcpy (cip.iabuf, d1.data, cip.len);
			data_string_forget (&d1, MDL);
		} else
			cip.len = 0;
	}

	/* Try to find a host or lease that's been assigned to the
	   specified unique client identifier. */
	oc = lookup_option (&dhcp_universe, packet -> options,
			    DHO_DHCP_CLIENT_IDENTIFIER);
	memset (&client_identifier, 0, sizeof client_identifier);
	if (oc &&
	    evaluate_option_cache (&client_identifier,
				   packet, (struct lease *)0,
				   (struct client_state *)0,
				   packet -> options, (struct option_state *)0,
				   &global_scope, oc, MDL)) {
		/* Remember this for later. */
		have_client_identifier = 1;

		/* First, try to find a fixed host entry for the specified
		   client identifier... */
		if (find_hosts_by_uid (&hp, client_identifier.data,
				       client_identifier.len, MDL)) {
			/* Remember if we know of this client. */
			packet -> known = 1;
			mockup_lease (&fixed_lease, packet, share, hp);
		}

#if defined (DEBUG_FIND_LEASE)
		if (fixed_lease) {
			log_info ("Found host for client identifier: %s.",
			      piaddr (fixed_lease -> ip_addr));
		}
#endif
		if (hp) {
			if (!fixed_lease) /* Save the host if we found one. */
				host_reference (&host, hp, MDL);
			host_dereference (&hp, MDL);
		}

		find_lease_by_uid (&uid_lease, client_identifier.data,
				   client_identifier.len, MDL);
	}

	/* If we didn't find a fixed lease using the uid, try doing
	   it with the hardware address... */
	if (!fixed_lease && !host) {
		if (find_hosts_by_haddr (&hp, packet -> raw -> htype,
					 packet -> raw -> chaddr,
					 packet -> raw -> hlen, MDL)) {
			/* Remember if we know of this client. */
			packet -> known = 1;
			if (host)
				host_dereference (&host, MDL);
			host_reference (&host, hp, MDL);
			host_dereference (&hp, MDL);
			mockup_lease (&fixed_lease, packet, share, host);
#if defined (DEBUG_FIND_LEASE)
			if (fixed_lease) {
				log_info ("Found host for link address: %s.",
				      piaddr (fixed_lease -> ip_addr));
			}
#endif
		}
	}

	/* Finally, if we haven't found anything yet try again with the
	 * host-identifier option ... */
	if (!fixed_lease && !host) {
		if (find_hosts_by_option(&hp, packet,
					 packet->options, MDL) == 1) {
			packet->known = 1;
			if (host)
				host_dereference(&host, MDL);
			host_reference(&host, hp, MDL);
			host_dereference(&hp, MDL);
			mockup_lease (&fixed_lease, packet, share, host);
#if defined (DEBUG_FIND_LEASE)
			if (fixed_lease) {
				log_info ("Found host via host-identifier");
			}
#endif
		}
	}

	/* If fixed_lease is present but does not match the requested
	   IP address, and this is a DHCPREQUEST, then we can't return
	   any other lease, so we might as well return now. */
	if (packet -> packet_type == DHCPREQUEST && fixed_lease &&
	    (fixed_lease -> ip_addr.len != cip.len ||
	     memcmp (fixed_lease -> ip_addr.iabuf,
		     cip.iabuf, cip.len))) {
		if (ours)
			*ours = 1;
		strcpy (dhcp_message, "requested address is incorrect");
#if defined (DEBUG_FIND_LEASE)
		log_info ("Client's fixed-address %s doesn't match %s%s",
			  piaddr (fixed_lease -> ip_addr), "request ",
			  print_dotted_quads (cip.len, cip.iabuf));
#endif
		goto out;
	}

	/*
	 * If we found leases matching the client identifier, loop through
	 * the n_uid pointer looking for one that's actually valid.   We
	 * can't do this until we get here because we depend on
	 * packet -> known, which may be set by either the uid host
	 * lookup or the haddr host lookup.
	 *
	 * Note that the n_uid lease chain is sorted in order of
	 * preference, so the first one is the best one.
	 */
	while (uid_lease) {
		isc_boolean_t do_release = !packet->raw->ciaddr.s_addr;
#if defined (DEBUG_FIND_LEASE)
		log_info ("trying next lease matching client id: %s",
			  piaddr (uid_lease -> ip_addr));
#endif

#if defined (FAILOVER_PROTOCOL)
		/*
		 * When we lookup a lease by uid, we know the client identifier
		 * matches the lease's record.  If it is active, or was last
		 * active with the same client, we can trivially extend it.
		 * If is not or was not active, we can allocate it to this
		 * client if it matches the usual free/backup criteria (which
		 * is contained in lease_mine_to_reallocate()).
		 */
		if (uid_lease->binding_state != FTS_ACTIVE &&
		    uid_lease->rewind_binding_state != FTS_ACTIVE &&
		    !lease_mine_to_reallocate(uid_lease)) {
#if defined (DEBUG_FIND_LEASE)
			log_info("not active or not mine to allocate: %s",
				 piaddr(uid_lease->ip_addr));
#endif
			goto n_uid;
		}
#endif

		if (uid_lease -> subnet -> shared_network != share) {
#if defined (DEBUG_FIND_LEASE)
			log_info ("wrong network segment: %s",
				  piaddr (uid_lease -> ip_addr));
#endif
			/* Allow multiple leases using the same UID
			   on different subnetworks. */
			do_release = ISC_FALSE;
			goto n_uid;
		}

		if ((uid_lease -> pool -> prohibit_list &&
		     permitted (packet, uid_lease -> pool -> prohibit_list)) ||
		    (uid_lease -> pool -> permit_list &&
		     !permitted (packet, uid_lease -> pool -> permit_list))) {
#if defined (DEBUG_FIND_LEASE)
			log_info ("not permitted: %s",
				  piaddr (uid_lease -> ip_addr));
#endif
		       n_uid:
			if (uid_lease -> n_uid)
				lease_reference (&next,
						 uid_lease -> n_uid, MDL);
			if (do_release)
				release_lease (uid_lease, packet);
			lease_dereference (&uid_lease, MDL);
			if (next) {
				lease_reference (&uid_lease, next, MDL);
				lease_dereference (&next, MDL);
			}
			continue;
		}
		break;
	}
#if defined (DEBUG_FIND_LEASE)
	if (uid_lease)
		log_info ("Found lease for client id: %s.",
		      piaddr (uid_lease -> ip_addr));
#endif

	/* Find a lease whose hardware address matches, whose client
	 * identifier matches (or equally doesn't have one), that's
	 * permitted, and that's on the correct subnet.
	 *
	 * Note that the n_hw chain is sorted in order of preference, so
	 * the first one found is the best one.
	 */
	h.hlen = packet -> raw -> hlen + 1;
	h.hbuf [0] = packet -> raw -> htype;
	memcpy (&h.hbuf [1], packet -> raw -> chaddr, packet -> raw -> hlen);
	find_lease_by_hw_addr (&hw_lease, h.hbuf, h.hlen, MDL);
	while (hw_lease) {
#if defined (DEBUG_FIND_LEASE)
		log_info ("trying next lease matching hw addr: %s",
			  piaddr (hw_lease -> ip_addr));
#endif
#if defined (FAILOVER_PROTOCOL)
		/*
		 * When we lookup a lease by chaddr, we know the MAC address
		 * matches the lease record (we will check if the lease has a
		 * client-id the client does not next).  If the lease is
		 * currently active or was last active with this client, we can
		 * trivially extend it.  Otherwise, there are a set of rules
		 * that govern if we can reallocate this lease to any client
		 * ("lease_mine_to_reallocate()") including this one.
		 */
		if (hw_lease->binding_state != FTS_ACTIVE &&
		    hw_lease->rewind_binding_state != FTS_ACTIVE &&
		    !lease_mine_to_reallocate(hw_lease)) {
#if defined (DEBUG_FIND_LEASE)
			log_info("not active or not mine to allocate: %s",
				 piaddr(hw_lease->ip_addr));
#endif
			goto n_hw;
		}
#endif

		/*
		 * This conditional skips "potentially active" leases (leases
		 * we think are expired may be extended by the peer, etc) that
		 * may be assigned to a differently /client-identified/ client
		 * with the same MAC address.
		 */
		if (hw_lease -> binding_state != FTS_FREE &&
		    hw_lease -> binding_state != FTS_BACKUP &&
		    hw_lease -> uid &&
		    (!have_client_identifier ||
		     hw_lease -> uid_len != client_identifier.len ||
		     memcmp (hw_lease -> uid, client_identifier.data,
			     hw_lease -> uid_len))) {
#if defined (DEBUG_FIND_LEASE)
			log_info ("wrong client identifier: %s",
				  piaddr (hw_lease -> ip_addr));
#endif
			goto n_hw;
		}
		if (hw_lease -> subnet -> shared_network != share) {
#if defined (DEBUG_FIND_LEASE)
			log_info ("wrong network segment: %s",
				  piaddr (hw_lease -> ip_addr));
#endif
			goto n_hw;
		}
		if ((hw_lease -> pool -> prohibit_list &&
		      permitted (packet, hw_lease -> pool -> prohibit_list)) ||
		    (hw_lease -> pool -> permit_list &&
		     !permitted (packet, hw_lease -> pool -> permit_list))) {
#if defined (DEBUG_FIND_LEASE)
			log_info ("not permitted: %s",
				  piaddr (hw_lease -> ip_addr));
#endif
			if (!packet -> raw -> ciaddr.s_addr)
				release_lease (hw_lease, packet);
		       n_hw:
			if (hw_lease -> n_hw)
				lease_reference (&next, hw_lease -> n_hw, MDL);
			lease_dereference (&hw_lease, MDL);
			if (next) {
				lease_reference (&hw_lease, next, MDL);
				lease_dereference (&next, MDL);
			}
			continue;
		}
		break;
	}
#if defined (DEBUG_FIND_LEASE)
	if (hw_lease)
		log_info ("Found lease for hardware address: %s.",
		      piaddr (hw_lease -> ip_addr));
#endif

	/* Try to find a lease that's been allocated to the client's
	   IP address. */
	if (ip_lease_in)
		lease_reference (&ip_lease, ip_lease_in, MDL);
	else if (cip.len)
		find_lease_by_ip_addr (&ip_lease, cip, MDL);

#if defined (DEBUG_FIND_LEASE)
	if (ip_lease)
		log_info ("Found lease for requested address: %s.",
		      piaddr (ip_lease -> ip_addr));
#endif

	/* If ip_lease is valid at this point, set ours to one, so that
	   even if we choose a different lease, we know that the address
	   the client was requesting was ours, and thus we can NAK it. */
	if (ip_lease && ours)
		*ours = 1;

	/* If the requested IP address isn't on the network the packet
	   came from, don't use it.  Allow abandoned leases to be matched
	   here - if the client is requesting it, there's a decent chance
	   that it's because the lease database got trashed and a client
	   that thought it had this lease answered an ARP or PING, causing the
	   lease to be abandoned.   If so, this request probably came from
	   that client. */
	if (ip_lease && (ip_lease -> subnet -> shared_network != share)) {
		if (ours)
			*ours = 1;
#if defined (DEBUG_FIND_LEASE)
		log_info ("...but it was on the wrong shared network.");
#endif
		strcpy (dhcp_message, "requested address on bad subnet");
		lease_dereference (&ip_lease, MDL);
	}

	/*
	 * If the requested address is in use (or potentially in use) by
	 * a different client, it can't be granted.
	 *
	 * This first conditional only detects if the lease is currently
	 * identified to a different client (client-id and/or chaddr
	 * mismatch).  In this case we may not want to give the client the
	 * lease, if doing so may potentially be an addressing conflict.
	 */
	if (ip_lease &&
	    (ip_lease -> uid ?
	     (!have_client_identifier ||
	      ip_lease -> uid_len != client_identifier.len ||
	      memcmp (ip_lease -> uid, client_identifier.data,
		      ip_lease -> uid_len)) :
	     (ip_lease -> hardware_addr.hbuf [0] != packet -> raw -> htype ||
	      ip_lease -> hardware_addr.hlen != packet -> raw -> hlen + 1 ||
	      memcmp (&ip_lease -> hardware_addr.hbuf [1],
		      packet -> raw -> chaddr,
		      (unsigned)(ip_lease -> hardware_addr.hlen - 1))))) {
		/*
		 * A lease is unavailable for allocation to a new client if
		 * it is not in the FREE or BACKUP state.  There may be
		 * leases that are in the expired state with a rewinding
		 * state that is free or backup, but these will be processed
		 * into the free or backup states by expiration processes, so
		 * checking for them here is superfluous.
		 */
		if (ip_lease -> binding_state != FTS_FREE &&
		    ip_lease -> binding_state != FTS_BACKUP) {
#if defined (DEBUG_FIND_LEASE)
			log_info ("rejecting lease for requested address.");
#endif
			/* If we're rejecting it because the peer has
			   it, don't set "ours", because we shouldn't NAK. */
			if (ours && ip_lease -> binding_state != FTS_ACTIVE)
				*ours = 0;
			lease_dereference (&ip_lease, MDL);
		}
	}

	/*
	 * If we got an ip_lease and a uid_lease or hw_lease, and ip_lease
	 * is/was not active, and is not ours to reallocate, forget about it.
	 */
	if (ip_lease && (uid_lease || hw_lease) &&
	    ip_lease->binding_state != FTS_ACTIVE &&
	    ip_lease->rewind_binding_state != FTS_ACTIVE &&
#if defined(FAILOVER_PROTOCOL)
	    !lease_mine_to_reallocate(ip_lease) &&
#endif
	    packet->packet_type == DHCPDISCOVER) {
#if defined (DEBUG_FIND_LEASE)
		log_info("ip lease not active or not ours to offer.");
#endif
		lease_dereference(&ip_lease, MDL);
	}

	/* If for some reason the client has more than one lease
	   on the subnet that matches its uid, pick the one that
	   it asked for and (if we can) free the other. */
	if (ip_lease && ip_lease->binding_state == FTS_ACTIVE &&
	    ip_lease->uid && ip_lease != uid_lease) {
		if (have_client_identifier &&
		    (ip_lease -> uid_len == client_identifier.len) &&
		    !memcmp (client_identifier.data,
			     ip_lease -> uid, ip_lease -> uid_len)) {
			if (uid_lease) {
			    if (uid_lease->binding_state == FTS_ACTIVE) {
				log_error ("client %s has duplicate%s on %s",
					   (print_hw_addr
					    (packet -> raw -> htype,
					     packet -> raw -> hlen,
					     packet -> raw -> chaddr)),
					   " leases",
					   (ip_lease -> subnet ->
					    shared_network -> name));

				/* If the client is REQUESTing the lease,
				   it shouldn't still be using the old
				   one, so we can free it for allocation. */
				if (uid_lease &&
				    uid_lease->binding_state == FTS_ACTIVE &&
				    !packet -> raw -> ciaddr.s_addr &&
				    (share ==
				     uid_lease -> subnet -> shared_network) &&
				    packet -> packet_type == DHCPREQUEST)
					release_lease (uid_lease, packet);
			    }
			    lease_dereference (&uid_lease, MDL);
			    lease_reference (&uid_lease, ip_lease, MDL);
			}
		}

		/* If we get to here and fixed_lease is not null, that means
		   that there are both a dynamic lease and a fixed-address
		   declaration for the same IP address. */
		if (packet -> packet_type == DHCPREQUEST && fixed_lease) {
			lease_dereference (&fixed_lease, MDL);
		      db_conflict:
			log_error ("Dynamic and static leases present for %s.",
				   piaddr (cip));
			log_error ("Remove host declaration %s or remove %s",
				   (fixed_lease && fixed_lease -> host
				    ? (fixed_lease -> host -> name
				       ? fixed_lease -> host -> name
				       : piaddr (cip))
				    : piaddr (cip)),
				    piaddr (cip));
			log_error ("from the dynamic address pool for %s",
				   ip_lease -> subnet -> shared_network -> name
				  );
			if (fixed_lease)
				lease_dereference (&ip_lease, MDL);
			strcpy (dhcp_message,
				"database conflict - call for help!");
		}

		if (ip_lease && ip_lease != uid_lease) {
#if defined (DEBUG_FIND_LEASE)
			log_info ("requested address not available.");
#endif
			lease_dereference (&ip_lease, MDL);
		}
	}

	/* If we get to here with both fixed_lease and ip_lease not
	   null, then we have a configuration file bug. */
	if (packet -> packet_type == DHCPREQUEST && fixed_lease && ip_lease)
		goto db_conflict;

	/* Toss extra pointers to the same lease... */
	if (hw_lease && hw_lease == uid_lease) {
#if defined (DEBUG_FIND_LEASE)
		log_info ("hardware lease and uid lease are identical.");
#endif
		lease_dereference (&hw_lease, MDL);
	}
	if (ip_lease && ip_lease == hw_lease) {
		lease_dereference (&hw_lease, MDL);
#if defined (DEBUG_FIND_LEASE)
		log_info ("hardware lease and ip lease are identical.");
#endif
	}
	if (ip_lease && ip_lease == uid_lease) {
		lease_dereference (&uid_lease, MDL);
#if defined (DEBUG_FIND_LEASE)
		log_info ("uid lease and ip lease are identical.");
#endif
	}

	/* Make sure the client is permitted to use the requested lease. */
	if (ip_lease &&
	    ((ip_lease -> pool -> prohibit_list &&
	      permitted (packet, ip_lease -> pool -> prohibit_list)) ||
	     (ip_lease -> pool -> permit_list &&
	      !permitted (packet, ip_lease -> pool -> permit_list)))) {
		if (!packet->raw->ciaddr.s_addr &&
		    (ip_lease->binding_state == FTS_ACTIVE))
			release_lease (ip_lease, packet);

		lease_dereference (&ip_lease, MDL);
	}

	if (uid_lease &&
	    ((uid_lease -> pool -> prohibit_list &&
	      permitted (packet, uid_lease -> pool -> prohibit_list)) ||
	     (uid_lease -> pool -> permit_list &&
	      !permitted (packet, uid_lease -> pool -> permit_list)))) {
		if (!packet -> raw -> ciaddr.s_addr)
			release_lease (uid_lease, packet);
		lease_dereference (&uid_lease, MDL);
	}

	if (hw_lease &&
	    ((hw_lease -> pool -> prohibit_list &&
	      permitted (packet, hw_lease -> pool -> prohibit_list)) ||
	     (hw_lease -> pool -> permit_list &&
	      !permitted (packet, hw_lease -> pool -> permit_list)))) {
		if (!packet -> raw -> ciaddr.s_addr)
			release_lease (hw_lease, packet);
		lease_dereference (&hw_lease, MDL);
	}

	/* If we've already eliminated the lease, it wasn't there to
	   begin with.   If we have come up with a matching lease,
	   set the message to bad network in case we have to throw it out. */
	if (!ip_lease) {
		strcpy (dhcp_message, "requested address not available");
	}

	/* If this is a DHCPREQUEST, make sure the lease we're going to return
	   matches the requested IP address.   If it doesn't, don't return a
	   lease at all. */
	if (packet -> packet_type == DHCPREQUEST &&
	    !ip_lease && !fixed_lease) {
#if defined (DEBUG_FIND_LEASE)
		log_info ("no applicable lease found for DHCPREQUEST.");
#endif
		goto out;
	}

	/* At this point, if fixed_lease is nonzero, we can assign it to
	   this client. */
	if (fixed_lease) {
		lease_reference (&lease, fixed_lease, MDL);
		lease_dereference (&fixed_lease, MDL);
#if defined (DEBUG_FIND_LEASE)
		log_info ("choosing fixed address.");
#endif
	}

	/* If we got a lease that matched the ip address and don't have
	   a better offer, use that; otherwise, release it. */
	if (ip_lease) {
		if (lease) {
			if (!packet -> raw -> ciaddr.s_addr)
				release_lease (ip_lease, packet);
#if defined (DEBUG_FIND_LEASE)
			log_info ("not choosing requested address (!).");
#endif
			lease_dereference (&ip_lease, MDL);
		} else {
#if defined (DEBUG_FIND_LEASE)
			log_info ("choosing lease on requested address.");
#endif
			lease_reference (&lease, ip_lease, MDL);
			if (lease -> host)
				host_dereference (&lease -> host, MDL);
		}
	}

	/* If we got a lease that matched the client identifier, we may want
	   to use it, but if we already have a lease we like, we must free
	   the lease that matched the client identifier. */
	if (uid_lease) {
		if (lease) {
			log_error("uid lease %s for client %s is duplicate "
				  "on %s",
				  piaddr(uid_lease->ip_addr),
				  print_hw_addr(packet->raw->htype,
						packet->raw->hlen,
						packet->raw->chaddr),
				  uid_lease->subnet->shared_network->name);

			if (!packet -> raw -> ciaddr.s_addr &&
			    packet -> packet_type == DHCPREQUEST &&
			    uid_lease -> binding_state == FTS_ACTIVE)
				release_lease(uid_lease, packet);
#if defined (DEBUG_FIND_LEASE)
			log_info ("not choosing uid lease.");
#endif
		} else {
			lease_reference (&lease, uid_lease, MDL);
			if (lease -> host)
				host_dereference (&lease -> host, MDL);
#if defined (DEBUG_FIND_LEASE)
			log_info ("choosing uid lease.");
#endif
		}
		lease_dereference (&uid_lease, MDL);
	}

	/* The lease that matched the hardware address is treated likewise. */
	if (hw_lease) {
		if (lease) {
#if defined (DEBUG_FIND_LEASE)
			log_info ("not choosing hardware lease.");
#endif
		} else {
			/* We're a little lax here - if the client didn't
			   send a client identifier and it's a bootp client,
			   but the lease has a client identifier, we still
			   let the client have a lease. */
			if (!hw_lease -> uid_len ||
			    (have_client_identifier
			     ? (hw_lease -> uid_len ==
				client_identifier.len &&
				!memcmp (hw_lease -> uid,
					 client_identifier.data,
					 client_identifier.len))
			     : packet -> packet_type == 0)) {
				lease_reference (&lease, hw_lease, MDL);
				if (lease -> host)
					host_dereference (&lease -> host, MDL);
#if defined (DEBUG_FIND_LEASE)
				log_info ("choosing hardware lease.");
#endif
			} else {
#if defined (DEBUG_FIND_LEASE)
				log_info ("not choosing hardware lease: %s.",
					  "uid mismatch");
#endif
			}
		}
		lease_dereference (&hw_lease, MDL);
	}

	/*
	 * If we found a host_decl but no matching address, try to
	 * find a host_decl that has no address, and if there is one,
	 * hang it off the lease so that we can use the supplied
	 * options.
	 */
	if (lease && host && !lease->host) {
		struct host_decl *p = NULL;
		struct host_decl *n = NULL;

		host_reference(&p, host, MDL);
		while (p != NULL) {
			if (!p->fixed_addr) {
				/*
				 * If the lease is currently active, then it
				 * must be allocated to the present client.
				 * We store a reference to the host record on
				 * the lease to save a lookup later (in
				 * ack_lease()).  We mustn't refer to the host
				 * record on non-active leases because the
				 * client may be denied later.
				 *
				 * XXX: Not having this reference (such as in
				 * DHCPDISCOVER/INIT) means ack_lease will have
				 * to perform this lookup a second time.  This
				 * hopefully isn't a problem as DHCPREQUEST is
				 * more common than DHCPDISCOVER.
				 */
				if (lease->binding_state == FTS_ACTIVE)
					host_reference(&lease->host, p, MDL);

				host_dereference(&p, MDL);
				break;
			}
			if (p->n_ipaddr != NULL)
				host_reference(&n, p->n_ipaddr, MDL);
			host_dereference(&p, MDL);
			if (n != NULL) {
				host_reference(&p, n, MDL);
				host_dereference(&n, MDL);
			}
		}
	}

	/* If we find an abandoned lease, but it's the one the client
	   requested, we assume that previous bugginess on the part
	   of the client, or a server database loss, caused the lease to
	   be abandoned, so we reclaim it and let the client have it. */
	if (lease &&
	    (lease -> binding_state == FTS_ABANDONED) &&
	    lease == ip_lease &&
	    packet -> packet_type == DHCPREQUEST) {
		log_error ("Reclaiming REQUESTed abandoned IP address %s.",
		      piaddr (lease -> ip_addr));
	} else if (lease && (lease -> binding_state == FTS_ABANDONED)) {
	/* Otherwise, if it's not the one the client requested, we do not
	   return it - instead, we claim it's ours, causing a DHCPNAK to be
	   sent if this lookup is for a DHCPREQUEST, and force the client
	   to go back through the allocation process. */
		if (ours)
			*ours = 1;
		lease_dereference (&lease, MDL);
	}

      out:
	if (have_client_identifier)
		data_string_forget (&client_identifier, MDL);

	if (fixed_lease)
		lease_dereference (&fixed_lease, MDL);
	if (hw_lease)
		lease_dereference (&hw_lease, MDL);
	if (uid_lease)
		lease_dereference (&uid_lease, MDL);
	if (ip_lease)
		lease_dereference (&ip_lease, MDL);
	if (host)
		host_dereference (&host, MDL);

	if (lease) {
#if defined (DEBUG_FIND_LEASE)
		log_info ("Returning lease: %s.",
		      piaddr (lease -> ip_addr));
#endif
		lease_reference (lp, lease, file, line);
		lease_dereference (&lease, MDL);
		return 1;
	}
#if defined (DEBUG_FIND_LEASE)
	log_info ("Not returning a lease.");
#endif
	return 0;
}

/* Search the provided host_decl structure list for an address that's on
   the specified shared network.  If one is found, mock up and return a
   lease structure for it; otherwise return the null pointer. */

int mockup_lease (struct lease **lp, struct packet *packet,
		  struct shared_network *share, struct host_decl *hp)
{
	struct lease *lease = (struct lease *)0;
	struct host_decl *rhp = (struct host_decl *)0;

	if (lease_allocate (&lease, MDL) != ISC_R_SUCCESS)
		return 0;
	if (host_reference (&rhp, hp, MDL) != ISC_R_SUCCESS) {
		lease_dereference (&lease, MDL);
		return 0;
	}
	if (!find_host_for_network (&lease -> subnet,
				    &rhp, &lease -> ip_addr, share)) {
		lease_dereference (&lease, MDL);
		host_dereference (&rhp, MDL);
		return 0;
	}
	host_reference (&lease -> host, rhp, MDL);
	if (rhp -> client_identifier.len > sizeof lease -> uid_buf)
		lease -> uid = dmalloc (rhp -> client_identifier.len, MDL);
	else
		lease -> uid = lease -> uid_buf;
	if (!lease -> uid) {
		lease_dereference (&lease, MDL);
		host_dereference (&rhp, MDL);
		return 0;
	}
	memcpy (lease -> uid, rhp -> client_identifier.data,
		rhp -> client_identifier.len);
	lease -> uid_len = rhp -> client_identifier.len;
	lease -> hardware_addr = rhp -> interface;
	lease -> starts = lease -> cltt = lease -> ends = MIN_TIME;
	lease -> flags = STATIC_LEASE;
	lease -> binding_state = FTS_FREE;

	lease_reference (lp, lease, MDL);

	lease_dereference (&lease, MDL);
	host_dereference (&rhp, MDL);
	return 1;
}

/* Look through all the pools in a list starting with the specified pool
   for a free lease.   We try to find a virgin lease if we can.   If we
   don't find a virgin lease, we try to find a non-virgin lease that's
   free.   If we can't find one of those, we try to reclaim an abandoned
   lease.   If all of these possibilities fail to pan out, we don't return
   a lease at all. */

int allocate_lease (struct lease **lp, struct packet *packet,
		    struct pool *pool, int *peer_has_leases)
{
	struct lease *lease = NULL;
	struct lease *candl = NULL;

	for (; pool ; pool = pool -> next) {
		if ((pool -> prohibit_list &&
		     permitted (packet, pool -> prohibit_list)) ||
		    (pool -> permit_list &&
		     !permitted (packet, pool -> permit_list)))
			continue;

#if defined (FAILOVER_PROTOCOL)
		/* Peer_has_leases just says that we found at least one
		   free lease.  If no free lease is returned, the caller
		   can deduce that this means the peer is hogging all the
		   free leases, so we can print a better error message. */
		/* XXX Do we need code here to ignore PEER_IS_OWNER and
		 * XXX just check tstp if we're in, e.g., PARTNER_DOWN?
		 * XXX Where do we deal with CONFLICT_DETECTED, et al? */
		/* XXX This should be handled by the lease binding "state
		 * XXX machine" - that is, when we get here, if a lease
		 * XXX could be allocated, it will have the correct
		 * XXX binding state so that the following code will
		 * XXX result in its being allocated. */
		/* Skip to the most expired lease in the pool that is not
		 * owned by a failover peer. */
		if (pool->failover_peer != NULL) {
			struct lease *peerl = NULL;
			if (pool->failover_peer->i_am == primary) {
				candl = LEASE_GET_FIRST(pool->free);

				/*
				 * In normal operation, we never want to touch
				 * the peer's leases.  In partner-down
				 * operation, we need to be able to pick up
				 * the peer's leases after STOS+MCLT.
				 */
				peerl = LEASE_GET_FIRST(pool->backup);
				if (peerl != NULL) {
					if (((candl == NULL) ||
					     (candl->ends > peerl->ends)) &&
					    lease_mine_to_reallocate(peerl)) {
						candl = peerl;
					} else {
						*peer_has_leases = 1;
					}
				}
			} else {
				candl = LEASE_GET_FIRST(pool->backup);

				peerl = LEASE_GET_FIRST(pool->free);
				if (peerl != NULL) {
					if (((candl == NULL) ||
					     (candl->ends > peerl->ends)) &&
					    lease_mine_to_reallocate(peerl)) {
						candl = peerl;
					} else {
						*peer_has_leases = 1;
					}
				}
			}

			/* Try abandoned leases as a last resort. */
			peerl = LEASE_GET_FIRST(pool->abandoned);
			if ((candl == NULL) && (peerl != NULL) &&
			    lease_mine_to_reallocate(peerl))
				candl = peerl;
		} else
#endif
		{
			if (LEASE_NOT_EMPTY(pool->free))
				candl = LEASE_GET_FIRST(pool->free);
			else
				candl = LEASE_GET_FIRST(pool->abandoned);
		}

		/*
		 * XXX: This may not match with documented expectation.
		 * It's expected that when we OFFER a lease, we set its
		 * ends time forward 2 minutes so that it gets sorted to
		 * the end of its free list (avoiding a similar allocation
		 * to another client).  It is not expected that we issue a
		 * "no free leases" error when the last lease has been
		 * offered, but it's not exactly broken either.
		 */
		if (!candl ||
	            (candl->binding_state != FTS_ABANDONED &&
		     (candl->ends > cur_time))) {
			continue;
		}

		if (!lease) {
			lease = candl;
			continue;
		}

		/*
		 * There are tiers of lease state preference, listed here in
		 * reverse order (least to most preferential):
		 *
		 *    ABANDONED
		 *    FREE/BACKUP
		 *
		 * If the selected lease and candidate are both of the same
		 * state, select the oldest (longest ago) expiration time
		 * between the two.  If the candidate lease is of a higher
		 * preferred grade over the selected lease, use it.
		 */
		if ((lease -> binding_state == FTS_ABANDONED) &&
		    ((candl -> binding_state != FTS_ABANDONED) ||
		     (candl -> ends < lease -> ends))) {
			lease = candl;
			continue;
		} else if (candl -> binding_state == FTS_ABANDONED)
			continue;

		if ((lease -> uid_len || lease -> hardware_addr.hlen) &&
		    ((!candl -> uid_len && !candl -> hardware_addr.hlen) ||
		     (candl -> ends < lease -> ends))) {
			lease = candl;
			continue;
		} else if (candl -> uid_len || candl -> hardware_addr.hlen)
			continue;

		if (candl -> ends < lease -> ends)
			lease = candl;
	}

	if (lease != NULL) {
		if (lease->binding_state == FTS_ABANDONED)
			log_error("Reclaiming abandoned lease %s.",
				  piaddr(lease->ip_addr));

		/*
		 * XXX: For reliability, we go ahead and remove the host
		 * record and try to move on.  For correctness, if there
		 * are any other stale host vectors, we want to find them.
		 */
		if (lease->host != NULL) {
			log_debug("soft impossible condition (%s:%d): stale "
				  "host \"%s\" found on lease %s", MDL,
				  lease->host->name,
				  piaddr(lease->ip_addr));
			host_dereference(&lease->host, MDL);
		}

		lease_reference (lp, lease, MDL);
		return 1;
	}

	return 0;
}

/* Determine whether or not a permit exists on a particular permit list
   that matches the specified packet, returning nonzero if so, zero if
   not. */

int permitted (packet, permit_list)
	struct packet *packet;
	struct permit *permit_list;
{
	struct permit *p;
	int i;

	for (p = permit_list; p; p = p -> next) {
		switch (p -> type) {
		      case permit_unknown_clients:
			if (!packet -> known)
				return 1;
			break;

		      case permit_known_clients:
			if (packet -> known)
				return 1;
			break;

		      case permit_authenticated_clients:
			if (packet -> authenticated)
				return 1;
			break;

		      case permit_unauthenticated_clients:
			if (!packet -> authenticated)
				return 1;
			break;

		      case permit_all_clients:
			return 1;

		      case permit_dynamic_bootp_clients:
			if (!packet -> options_valid ||
			    !packet -> packet_type)
				return 1;
			break;

		      case permit_class:
			for (i = 0; i < packet -> class_count; i++) {
				if (p -> class == packet -> classes [i])
					return 1;
				if (packet -> classes [i] &&
				    packet -> classes [i] -> superclass &&
				    (packet -> classes [i] -> superclass ==
				     p -> class))
					return 1;
			}
			break;

		      case permit_after:
			if (cur_time > p->after)
				return 1;
			break;
		}
	}
	return 0;
}

#if defined(DHCPv6) && defined(DHCP4o6)
static int locate_network6 (packet)
	struct packet *packet;
{
	const struct packet *chk_packet;
	const struct in6_addr *link_addr, *first_link_addr;
	struct iaddr ia;
	struct data_string data;
	struct subnet *subnet = NULL;
	struct option_cache *oc;

	/* from locate_network() */

	/* See if there's a Relay Agent Link Selection Option, or a
	 * Subnet Selection Option.  The Link-Select and Subnet-Select
	 * are formatted and used precisely the same, but we must prefer
	 * the link-select over the subnet-select.
	 * BTW in DHCPv4 over DHCPv6 no cross version relay was specified
	 * so it is unlikely to see a link-select.
	 */
	if ((oc = lookup_option(&agent_universe, packet->options,
				RAI_LINK_SELECT)) == NULL)
		oc = lookup_option(&dhcp_universe, packet->options,
				   DHO_SUBNET_SELECTION);

	/* If there's an option indicating link connection or subnet
	 * selection, and it's valid, use it to figure out the subnet.
	 * If it's not valid, fail.
	 */
	if (oc) {
		memset(&data, 0, sizeof data);
		if (!evaluate_option_cache(&data, packet, NULL, NULL,
					   packet->options, NULL,
					   &global_scope, oc, MDL)) {
			return (0);
		}
		if (data.len == 0) {
			return (0);
		}
		if (data.len != 4) {
			data_string_forget(&data, MDL);
			return (0);
		}
		ia.len = 4;
		memcpy(ia.iabuf, data.data, 4);
		data_string_forget(&data, MDL);

		if (find_subnet(&subnet, ia, MDL)) {
			shared_network_reference(&packet->shared_network,
						 subnet->shared_network, MDL);
			subnet_dereference(&subnet, MDL);
			return (1);
		}
		return (0);
	}

	/* See if there is a giaddr (still unlikely), if there is one
	 * use it to figure out the subnet.  If it's not valid, fail.
	 */
	if (packet->raw->giaddr.s_addr) {
		ia.len = 4;
		memcpy(ia.iabuf, &packet->raw->giaddr, 4);

		if (find_subnet(&subnet, ia, MDL)) {
			shared_network_reference(&packet->shared_network,
						 subnet->shared_network, MDL);
			subnet_dereference(&subnet, MDL);
			return (1);
		}
		return (0);
	}

	/* from shared_network_from_packet6() */

	/* First, find the link address where the packet from the client
	 * first appeared (if this packet was relayed).
	 */
	first_link_addr = NULL;
	chk_packet = packet->dhcpv6_container_packet;
	while (chk_packet != NULL) {
		link_addr = &chk_packet->dhcpv6_link_address;
		if (!IN6_IS_ADDR_UNSPECIFIED(link_addr) &&
		    !IN6_IS_ADDR_LINKLOCAL(link_addr)) {
			first_link_addr = link_addr;
			break;
		}
		chk_packet = chk_packet->dhcpv6_container_packet;
	}

	/* If there is a relayed link address, find the subnet associated
	 * with that, and use that to get the appropriate shared_network.
	 */
	if (first_link_addr != NULL) {
		ia.len = sizeof(*first_link_addr);
		memcpy(ia.iabuf, first_link_addr, sizeof(*first_link_addr));
		if (find_subnet (&subnet, ia, MDL)) {
			shared_network_reference(&packet->shared_network,
						 subnet->shared_network, MDL);
			subnet_dereference(&subnet, MDL);
			return (1);
		}
		return (0);
	}

	/* If there is no link address, we will use the interface
	 * that this packet came in on to pick the shared_network.
	 */
	if (packet->interface != NULL) {
		if (packet->interface->shared_network == NULL)
			return (0);
		shared_network_reference(&packet->shared_network,
					 packet->interface->shared_network,
					 MDL);
		return (1);
	}

	/* We shouldn't be able to get here but if there is no link
	 * address and no interface we don't know where to get the
	 * shared_network from, log an error and return an error.
	 */
	log_error("No interface and no link address "
		  "can't determine DHCP4o6 shared network");
	return (0);
}
#endif

int locate_network (packet)
	struct packet *packet;
{
	struct iaddr ia;
	struct data_string data;
	struct subnet *subnet = (struct subnet *)0;
	struct option_cache *oc;

#if defined(DHCPv6) && defined(DHCP4o6)
	if (dhcpv4_over_dhcpv6 && (packet->dhcp4o6_response != NULL)) {
		return (locate_network6 (packet));
	}
#endif

	/* See if there's a Relay Agent Link Selection Option, or a
	 * Subnet Selection Option.  The Link-Select and Subnet-Select
	 * are formatted and used precisely the same, but we must prefer
	 * the link-select over the subnet-select.
	 */
	if ((oc = lookup_option(&agent_universe, packet->options,
				RAI_LINK_SELECT)) == NULL)
		oc = lookup_option(&dhcp_universe, packet->options,
				   DHO_SUBNET_SELECTION);

	/* If there's no SSO and no giaddr, then use the shared_network
	   from the interface, if there is one.   If not, fail. */
	if (!oc && !packet -> raw -> giaddr.s_addr) {
		if (packet -> interface -> shared_network) {
			shared_network_reference
				(&packet -> shared_network,
				 packet -> interface -> shared_network, MDL);
			return 1;
		}
		return 0;
	}

	/* If there's an option indicating link connection, and it's valid,
	 * use it to figure out the subnet.  If it's not valid, fail.
	 */
	if (oc) {
		memset (&data, 0, sizeof data);
		if (!evaluate_option_cache (&data, packet, (struct lease *)0,
					    (struct client_state *)0,
					    packet -> options,
					    (struct option_state *)0,
					    &global_scope, oc, MDL)) {
			return 0;
		}

		if (data.len != 4) {
			data_string_forget (&data, MDL);
			return 0;
		}

		ia.len = 4;
		memcpy (ia.iabuf, data.data, 4);
		data_string_forget (&data, MDL);
	} else {
		ia.len = 4;
		memcpy (ia.iabuf, &packet -> raw -> giaddr, 4);
	}

	/* If we know the subnet on which the IP address lives, use it. */
	if (find_subnet (&subnet, ia, MDL)) {
		shared_network_reference (&packet -> shared_network,
					  subnet -> shared_network, MDL);
		subnet_dereference (&subnet, MDL);
		return 1;
	}

	/* Otherwise, fail. */
	return 0;
}

/*
 * Try to figure out the source address to send packets from.
 *
 * from is the address structure we use to return any address
 * we find.
 *
 * options is the option cache to search.  This may include
 * options from the incoming packet and configuration information.
 *
 * out_options is the outgoing option cache.  This cache
 * may be the same as options.  If out_options isn't NULL
 * we may save the server address option into it.  We do so
 * if out_options is different than options or if the option
 * wasn't in options and we needed to find the address elsewhere.
 *
 * packet is the state structure for the incoming packet
 *
 * When finding the address we first check to see if it is
 * in the options list.  If it isn't we use the first address
 * from the interface.
 *
 * While this is slightly more complicated than I'd like it allows
 * us to use the same code in several different places.  ack,
 * inform and lease query use it to find the address and fill
 * in the options if we get the address from the interface.
 * nack uses it to find the address and copy it to the outgoing
 * cache.  dhcprequest uses it to find the address for comparison
 * and doesn't need to add it to an outgoing list.
 */

void
get_server_source_address(struct in_addr *from,
			  struct option_state *options,
			  struct option_state *out_options,
			  struct packet *packet) {
	unsigned option_num;
	struct option_cache *oc = NULL;
	struct data_string d;
	struct in_addr *a = NULL;
	isc_boolean_t found = ISC_FALSE;
	int allocate = 0;

	memset(&d, 0, sizeof(d));
	memset(from, 0, sizeof(*from));

       	option_num = DHO_DHCP_SERVER_IDENTIFIER;
       	oc = lookup_option(&dhcp_universe, options, option_num);
       	if (oc != NULL)  {
		if (evaluate_option_cache(&d, packet, NULL, NULL,
					  packet->options, options,
					  &global_scope, oc, MDL)) {
			if (d.len == sizeof(*from)) {
				found = ISC_TRUE;
				memcpy(from, d.data, sizeof(*from));

				/*
				 * Arrange to save a copy of the data
				 * to the outgoing list.
				 */
				if ((out_options != NULL) &&
				    (options != out_options)) {
					a = from;
					allocate = 1;
				}
			}
			data_string_forget(&d, MDL);
		}
		oc = NULL;
	}

	if ((found == ISC_FALSE) &&
	    (packet->interface->address_count > 0)) {
		*from = packet->interface->addresses[0];

		if (out_options != NULL) {
			a = &packet->interface->addresses[0];
		}
	}

	if ((a != NULL) &&
	    (option_cache_allocate(&oc, MDL))) {
		if (make_const_data(&oc->expression,
				    (unsigned char *)a, sizeof(*a),
				    0, allocate, MDL)) {
			option_code_hash_lookup(&oc->option,
						dhcp_universe.code_hash,
						&option_num, 0, MDL);
			save_option(&dhcp_universe, out_options, oc);
		}
		option_cache_dereference(&oc, MDL);
	}

	return;
}

/*!
 * \brief Builds option set from statements at the global and network scope
 *
 * Set up an option state list based on the global and network scopes.
 * These are primarily used by NAK logic to locate dhcp-server-id and
 * echo-client-id.
 *
 * We don't go through all possible options - in particualr we skip the hosts
 * and we don't include the lease to avoid making changes to it. This means
 * that using these, we won't get the correct server id if the admin puts them
 * on hosts or builds the server id with information from the lease.
 *
 * As this is a fallback function (used to handle NAKs or sort out server id
 * mismatch in failover) and requires configuration by the admin, it should be
 * okay.
 *
 * \param network_options option_state to which options will be added. If it
 * refers to NULL, it will be allocated.  Caller is responsible to delete it.
 * \param packet inbound packet
 * \param network_group scope group to use if packet->shared_network is null.
 */
void
eval_network_statements(struct option_state **network_options,
			struct packet *packet,
			struct group *network_group) {

	if (*network_options == NULL) {
		option_state_allocate (network_options, MDL);
	}

	/* Use the packet's shared_network if it has one.  If not use
         * network_group and if it is null then use global scope. */
	if (packet->shared_network != NULL) {
		/*
		 * If we have a subnet and group start with that else start
		 * with the shared network group.  The first will recurse and
		 * include the second.
		 */
		if ((packet->shared_network->subnets != NULL) &&
		    (packet->shared_network->subnets->group != NULL)) {
			execute_statements_in_scope(NULL, packet, NULL, NULL,
					packet->options, *network_options,
					&global_scope,
					packet->shared_network->subnets->group,
					NULL, NULL);
		} else {
			execute_statements_in_scope(NULL, packet, NULL, NULL,
					packet->options, *network_options,
					&global_scope,
					packet->shared_network->group,
					NULL, NULL);
		}

		/* do the pool if there is one */
		if (packet->shared_network->pools != NULL) {
			execute_statements_in_scope(NULL, packet, NULL, NULL,
					packet->options, *network_options,
					&global_scope,
					packet->shared_network->pools->group,
					packet->shared_network->group,
					NULL);
		}
	} else if (network_group != NULL) {
                execute_statements_in_scope(NULL, packet, NULL, NULL,
                                            packet->options, *network_options,
                                            &global_scope, network_group,
                                            NULL, NULL);
	} else {
                execute_statements_in_scope(NULL, packet, NULL, NULL,
                                            packet->options, *network_options,
                                            &global_scope, root_group,
                                            NULL, NULL);
    }
}

/*
 * Look for the lowest numbered site code number and
 * apply a log warning if it is less than 224.  Do not
 * permit site codes less than 128 (old code never did).
 *
 * Note that we could search option codes 224 down to 128
 * on the hash table, but the table is (probably) smaller
 * than that if it was declared as a standalone table with
 * defaults.  So we traverse the option code hash.
 */
static int
find_min_site_code(struct universe *u)
{
	if (u->site_code_min)
		return u->site_code_min;

	/*
	 * Note that site_code_min has to be global as we can't pass an
	 * argument through hash_foreach().  The value 224 is taken from
	 * RFC 3942.
	 */
	site_code_min = 224;
	option_code_hash_foreach(u->code_hash, lowest_site_code);

	if (site_code_min < 224) {
		log_error("WARNING: site-local option codes less than 224 have "
			  "been deprecated by RFC3942.  You have options "
			  "listed in site local space %s that number as low as "
			  "%d.  Please investigate if these should be declared "
			  "as regular options rather than site-local options, "
			  "or migrated up past 224.",
			  u->name, site_code_min);
	}

	/*
	 * don't even bother logging, this is just silly, and never worked
	 * on any old version of software.
	 */
	if (site_code_min < 128)
		site_code_min = 128;

	/*
	 * Cache the determined minimum site code on the universe structure.
	 * Note that due to the < 128 check above, a value of zero is
	 * impossible.
	 */
	u->site_code_min = site_code_min;

	return site_code_min;
}

static isc_result_t
lowest_site_code(const void *key, unsigned len, void *object)
{
	struct option *option = object;

	if (option->code < site_code_min)
		site_code_min = option->code;

	return ISC_R_SUCCESS;
}

static void
maybe_return_agent_options(struct packet *packet, struct option_state *options)
{
	/* If there were agent options in the incoming packet, return
	 * them.  Do not return the agent options if they were stashed
	 * on the lease.  We do not check giaddr to detect the presence of
	 * a relay, as this excludes "l2" relay agents which have no giaddr
	 * to set.
	 *
	 * XXX: If the user configures options for the relay agent information
	 * (state->options->universes[agent_universe.index] is not NULL),
	 * we're still required to duplicate other values provided by the
	 * relay agent.  So we need to merge the old values not configured
	 * by the user into the new state, not just give up.
	 */
	if (!packet->agent_options_stashed &&
	    (packet->options != NULL) &&
	    packet->options->universe_count > agent_universe.index &&
	    packet->options->universes[agent_universe.index] != NULL &&
	    (options->universe_count <= agent_universe.index ||
	     options->universes[agent_universe.index] == NULL)) {
		option_chain_head_reference
		    ((struct option_chain_head **)
		     &(options->universes[agent_universe.index]),
		     (struct option_chain_head *)
		     packet->options->universes[agent_universe.index], MDL);

		if (options->universe_count <= agent_universe.index)
			options->universe_count = agent_universe.index + 1;
	}
}

/*!
 * \brief Adds hostname option when use-host-decl-names is enabled.
 *
 * Constructs a hostname option from the name of the host declaration if
 * there is one and no hostname has otherwise been provided and the
 * use-host-decl-names flag is set, then adds the new option to the given
 * option_state.  This funciton is used for both bootp and dhcp.
 *
 * \param packet inbound packet received from the client
 * \param lease lease associated with the client
 * \param options option state to search and update
 */
void use_host_decl_name(struct packet* packet,
			struct lease *lease,
			struct option_state *options) {
	unsigned int ocode = SV_USE_HOST_DECL_NAMES;
        if ((lease->host && lease->host->name) &&
	    !lookup_option(&dhcp_universe, options, DHO_HOST_NAME) &&
            (evaluate_boolean_option_cache(NULL, packet, lease, NULL,
					   packet->options, options,
					   &lease->scope,
					   lookup_option(&server_universe,
							 options, ocode),
					   MDL))) {
		struct option_cache *oc = NULL;
                if (option_cache_allocate (&oc, MDL)) {
                        if (make_const_data(&oc -> expression,
                                            ((unsigned char*)lease->host->name),
                                            strlen(lease->host->name),
					    1, 0, MDL)) {
				ocode = DHO_HOST_NAME;
                                option_code_hash_lookup(&oc->option,
                                                        dhcp_universe.code_hash,
                                                        &ocode, 0, MDL);
                                save_option(&dhcp_universe, options, oc);
                        }
                        option_cache_dereference(&oc, MDL);
                }
        }
}

/*!
 * \brief Checks and preps for lease resuse based on dhcp-cache-threshold
 *
 * If dhcp-cache-threshold is enabled (i.e. greater than zero), this function
 * determines if the current lease is young enough to be reused.  If the lease
 * can be resused the function returns 1, O if not.  This function is called
 * by ack_lease when responding to both DISCOVERs and REQUESTS.
 *
 * The current lease can be reused only if all of the following are true:
 *  a. dhcp-cache-threshold is > 0
 *  b. The current lease is active
 *  c. The lease "age" is less than that allowed by the threshold
 *  d. DNS updates are not being performed on the new lease.
 *  e. Lease has not been otherwise disqualified for reuse (Ex: billing class
 *  or hostname changed)
 *  f. The host declaration has changed (either a new one was added
 *  or an older one was found due to something like a change in the uid)
 *  g. The UID or hardware address have changed.
 *
 * Clients may renew leases using full DORA cycles or just RAs. This means
 * that reusability must be checked when acking both DISCOVERs and REQUESTs.
 * When a lease cannot be reused, ack_lease() calls supersede_lease() which
 * updates the lease start time (among other things).  If this occurs on the
 * DISCOVER, then the lease will virtually always be seen as young enough to
 * reuse on the ensuing REQUEST and the lease updates will not get committed
 * to the lease file.  The lease.cannot_reuse flag is used to handle this
 * this situation.
 *
 * \param packet inbound packet received from the client
 * \param new_lease candidate new lease to associate with the client
 * \param lease current lease associated with the client
 * \param lease_state lease state to search and update
 * \param offer type of DHCP response we're building
 * \param[out] same_client pointer to int, that will be set to 1 if
 * the two leases refer to the same client, 0 if not. Must NOT be null.
 *
 * \return 1 if the lease can be reused.
 */
int
reuse_lease (struct packet* packet,
	     struct lease* new_lease,
	     struct lease* lease,
	     struct lease_state *state,
	     int offer,
	     int *same_client) {
	int reusable = 0;

	/* To even consider reuse all of the following must be true:
	 * 1 - reuse hasn't already disqualified
	 * 2 - current lease is active
	 * 3 - DNS info hasn't changed
	 * 4 - the host declaration hasn't changed
	 * 5 - the uid hasn't changed
	 * 6 - the hardware address hasn't changed */

	/* Check client equality separately so we can pass the result out. */
	*same_client =
	    (((lease->host == new_lease->host) &&
             (lease->uid_len == new_lease->uid_len) &&
             (memcmp(lease->uid, new_lease->uid, new_lease->uid_len) == 0) &&
             (lease->hardware_addr.hlen == new_lease->hardware_addr.hlen) &&
             (memcmp(&lease->hardware_addr.hbuf[0],
                     &new_lease->hardware_addr.hbuf[0],
                     lease->hardware_addr.hlen) == 0)) ? 1 : 0);

	if ((lease->cannot_reuse == 0) &&
	    (lease->binding_state == FTS_ACTIVE) &&
	    (new_lease->ddns_cb == NULL) && *same_client) {
		int thresh = DEFAULT_CACHE_THRESHOLD;
		struct option_cache* oc = NULL;
		struct data_string d1;

		/* Look up threshold value */
		memset(&d1, 0, sizeof(struct data_string));
		if ((oc = lookup_option(&server_universe, state->options,
					SV_CACHE_THRESHOLD)) &&
		     (evaluate_option_cache(&d1, packet, new_lease, NULL,
				      packet->options, state->options,
				      &new_lease->scope, oc, MDL))) {
			if (d1.len == 1 && (d1.data[0] < 100))
				thresh = d1.data[0];

			data_string_forget(&d1, MDL);
		}

		/* If threshold is enabled, check lease age */
		if (thresh > 0) {
			int limit = 0;
			int lease_length = 0;
			long lease_age = 0;

			/* Calculate limit in seconds */
			lease_length = lease->ends - lease->starts;
			if (lease_length <= (INT_MAX / thresh))
				limit = lease_length * thresh / 100;
			else
				limit = lease_length / 100 * thresh;

			/* Note new_lease->starts is really just cur_time */
			lease_age = new_lease->starts - lease->starts;

			/* Is the lease young enough to reuse? */
			if (lease_age <= limit) {
				/* Restore expiry to its original value */
				state->offered_expiry = lease->ends;

				/* Restore bindings. This fixes 37368. */
				if (new_lease->scope != NULL) {
					if (lease->scope != NULL) {
						binding_scope_dereference(
								&lease->scope,
								MDL);
					}

					binding_scope_reference(&lease->scope,
							new_lease->scope, MDL);
				}

				/* restore client hostname, fixes 42849. */
				if (new_lease->client_hostname) {
					lease->client_hostname =
					  new_lease->client_hostname;
					new_lease->client_hostname = NULL;
				}

				/* We're cleared to reuse it */
				log_debug("reuse_lease: lease age %ld (secs)"
					  " under %d%% threshold, reply with "
					  "unaltered, existing lease for %s",
					  lease_age, thresh, piaddr(lease->ip_addr));

				reusable = 1;
			}
		}
	}

	/* If we can't reuse it and this is an offer disqualify reuse for
	 * ensuing REQUEST, otherwise clear the flag. */
	lease->cannot_reuse = (!reusable && offer == DHCPOFFER);
	return (reusable);
}

/* \brief Validates a proposed value for use as a lease time
 *
 * Convenience function used for catching calculeated lease
 * times that overflow 4-byte times used in v4 protocol.
 *
 * We use variables of type TIME in lots of places, which on
 * 64-bit systems is 8 bytes while on 32-bit OSs it is int32_t,
 * so we have all sorts of fun places to mess things up.
 * This function checks a calculated lease time for and if it
 * is unsuitable for use as a lease time, the given alternate
 * value is returned.
 * \param calculated
 * \param alternate
 *
 * \returen either the calculated value if it is valid, or
 * the alternate value supplied
 */
TIME leaseTimeCheck(TIME calculated, TIME alternate) {
    if ((sizeof(TIME) > 4 && calculated >= INFINITE_TIME) ||
        (calculated < cur_time)) {
        return (alternate);
    }

    return (calculated);
}