summaryrefslogtreecommitdiffstats
path: root/src/exim.c
blob: fd01d1355485dd7b210c942080401384c38eec24 (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
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
/*************************************************
*     Exim - an Internet mail transport agent    *
*************************************************/

/* Copyright (c) The Exim Maintainers 2020 - 2022 */
/* Copyright (c) University of Cambridge 1995 - 2018 */
/* See the file NOTICE for conditions of use and distribution. */


/* The main function: entry point, initialization, and high-level control.
Also a few functions that don't naturally fit elsewhere. */


#include "exim.h"

#if defined(__GLIBC__) && !defined(__UCLIBC__)
# include <gnu/libc-version.h>
#endif

#ifdef USE_GNUTLS
# include <gnutls/gnutls.h>
# if GNUTLS_VERSION_NUMBER < 0x030103 && !defined(DISABLE_OCSP)
#  define DISABLE_OCSP
# endif
#endif

#ifndef _TIME_H
# include <time.h>
#endif

extern void init_lookup_list(void);



/*************************************************
*      Function interface to store functions     *
*************************************************/

/* We need some real functions to pass to the PCRE regular expression library
for store allocation via Exim's store manager. The normal calls are actually
macros that pass over location information to make tracing easier. These
functions just interface to the standard macro calls. A good compiler will
optimize out the tail recursion and so not make them too expensive. */

static void *
function_store_malloc(PCRE2_SIZE size, void * tag)
{
return store_malloc((int)size);
}

static void
function_store_free(void * block, void * tag)
{
/* At least some version of pcre2 pass a null pointer */
if (block) store_free(block);
}




/*************************************************
*         Enums for cmdline interface            *
*************************************************/

enum commandline_info { CMDINFO_NONE=0,
  CMDINFO_HELP, CMDINFO_SIEVE, CMDINFO_DSCP };




/*************************************************
*  Compile regular expression and panic on fail  *
*************************************************/

/* This function is called when failure to compile a regular expression leads
to a panic exit. In other cases, pcre_compile() is called directly. In many
cases where this function is used, the results of the compilation are to be
placed in long-lived store, so we temporarily reset the store management
functions that PCRE uses if the use_malloc flag is set.

Argument:
  pattern     the pattern to compile
  caseless    TRUE if caseless matching is required
  use_malloc  TRUE if compile into malloc store

Returns:      pointer to the compiled pattern
*/

const pcre2_code *
regex_must_compile(const uschar * pattern, BOOL caseless, BOOL use_malloc)
{
size_t offset;
int options = caseless ? PCRE_COPT|PCRE2_CASELESS : PCRE_COPT;
const pcre2_code * yield;
int err;
pcre2_general_context * gctx;
pcre2_compile_context * cctx;

if (use_malloc)
  {
  gctx = pcre2_general_context_create(function_store_malloc, function_store_free, NULL);
  cctx = pcre2_compile_context_create(gctx);
  }
else
  cctx = pcre_cmp_ctx;

if (!(yield = pcre2_compile((PCRE2_SPTR)pattern, PCRE2_ZERO_TERMINATED, options,
  &err, &offset, cctx)))
  {
  uschar errbuf[128];
  pcre2_get_error_message(err, errbuf, sizeof(errbuf));
  log_write(0, LOG_MAIN|LOG_PANIC_DIE, "regular expression error: "
    "%s at offset %ld while compiling %s", errbuf, (long)offset, pattern);
  }

if (use_malloc)
  {
  pcre2_compile_context_free(cctx);
  pcre2_general_context_free(gctx);
  }
return yield;
}


static void
pcre_init(void)
{
pcre_gen_ctx = pcre2_general_context_create(function_store_malloc, function_store_free, NULL);
pcre_cmp_ctx = pcre2_compile_context_create(pcre_gen_ctx);
pcre_mtc_ctx = pcre2_match_context_create(pcre_gen_ctx);
}




/*************************************************
*   Execute regular expression and set strings   *
*************************************************/

/* This function runs a regular expression match, and sets up the pointers to
the matched substrings.  The matched strings are copied so the lifetime of
the subject is not a problem.

Arguments:
  re          the compiled expression
  subject     the subject string
  options     additional PCRE options
  setup       if < 0 do full setup
              if >= 0 setup from setup+1 onwards,
                excluding the full matched string

Returns:      TRUE if matched, or FALSE
*/

BOOL
regex_match_and_setup(const pcre2_code * re, const uschar * subject, int options, int setup)
{
pcre2_match_data * md = pcre2_match_data_create_from_pattern(re, pcre_gen_ctx);
int res = pcre2_match(re, (PCRE2_SPTR)subject, PCRE2_ZERO_TERMINATED, 0,
			PCRE_EOPT | options, md, pcre_mtc_ctx);
BOOL yield;

if ((yield = (res >= 0)))
  {
  res = pcre2_get_ovector_count(md);
  expand_nmax = setup < 0 ? 0 : setup + 1;
  for (int matchnum = setup < 0 ? 0 : 1; matchnum < res; matchnum++)
    {
    PCRE2_SIZE len;
    pcre2_substring_get_bynumber(md, matchnum,
      (PCRE2_UCHAR **)&expand_nstring[expand_nmax], &len);
    expand_nlength[expand_nmax++] = (int)len;
    }
  expand_nmax--;
  }
else if (res != PCRE2_ERROR_NOMATCH) DEBUG(D_any)
  {
  uschar errbuf[128];
  pcre2_get_error_message(res, errbuf, sizeof(errbuf));
  debug_printf_indent("pcre2: %s\n", errbuf);
  }
pcre2_match_data_free(md);
return yield;
}


/* Check just for match with regex.  Uses the common memory-handling.

Arguments:
	re	compiled regex
	subject	string to be checked
	slen	length of subject; -1 for nul-terminated
	rptr	pointer for matched string, copied, or NULL

Return: TRUE for a match.
*/

BOOL
regex_match(const pcre2_code * re, const uschar * subject, int slen, uschar ** rptr)
{
pcre2_match_data * md = pcre2_match_data_create(1, pcre_gen_ctx);
int rc = pcre2_match(re, (PCRE2_SPTR)subject,
		      slen >= 0 ? slen : PCRE2_ZERO_TERMINATED,
		      0, PCRE_EOPT, md, pcre_mtc_ctx);
PCRE2_SIZE * ovec = pcre2_get_ovector_pointer(md);
if (rc < 0)
  return FALSE;
if (rptr)
  *rptr = string_copyn(subject + ovec[0], ovec[1] - ovec[0]);
return TRUE;
}



/*************************************************
*            Set up processing details           *
*************************************************/

/* Save a text string for dumping when SIGUSR1 is received.
Do checks for overruns.

Arguments: format and arguments, as for printf()
Returns:   nothing
*/

void
set_process_info(const char *format, ...)
{
gstring gs = { .size = PROCESS_INFO_SIZE - 2, .ptr = 0, .s = process_info };
gstring * g;
int len;
va_list ap;

g = string_fmt_append(&gs, "%5d ", (int)getpid());
len = g->ptr;
va_start(ap, format);
if (!string_vformat(g, 0, format, ap))
  {
  gs.ptr = len;
  g = string_cat(&gs, US"**** string overflowed buffer ****");
  }
g = string_catn(g, US"\n", 1);
string_from_gstring(g);
process_info_len = g->ptr;
DEBUG(D_process_info) debug_printf("set_process_info: %s", process_info);
va_end(ap);
}

/***********************************************
*            Handler for SIGTERM               *
***********************************************/

static void
term_handler(int sig)
{
exit(1);
}


/***********************************************
*            Handler for SIGSEGV               *
***********************************************/

static void
#ifdef SA_SIGINFO
segv_handler(int sig, siginfo_t * info, void * uctx)
{
log_write(0, LOG_MAIN|LOG_PANIC, "SIGSEGV (fault address: %p)", info->si_addr);
# if defined(SEGV_MAPERR) && defined(SEGV_ACCERR) && defined(SEGV_BNDERR) && defined(SEGV_PKUERR)
switch (info->si_code)
  {
  case SEGV_MAPERR: log_write(0, LOG_MAIN|LOG_PANIC, "SEGV_MAPERR"); break;
  case SEGV_ACCERR: log_write(0, LOG_MAIN|LOG_PANIC, "SEGV_ACCERR"); break;
  case SEGV_BNDERR: log_write(0, LOG_MAIN|LOG_PANIC, "SEGV_BNDERR"); break;
  case SEGV_PKUERR: log_write(0, LOG_MAIN|LOG_PANIC, "SEGV_PKUERR"); break;
  }
# endif
if (US info->si_addr < US 4096)
  log_write(0, LOG_MAIN|LOG_PANIC, "SIGSEGV (null pointer indirection)");
else
  log_write(0, LOG_MAIN|LOG_PANIC, "SIGSEGV (maybe attempt to write to immutable memory)");
if (process_info_len > 0)
  log_write(0, LOG_MAIN|LOG_PANIC, "SIGSEGV (%.*s)", process_info_len, process_info);
signal(SIGSEGV, SIG_DFL);
kill(getpid(), sig);
}

#else
segv_handler(int sig)
{
log_write(0, LOG_MAIN|LOG_PANIC, "SIGSEGV (maybe attempt to write to immutable memory)");
if (process_info_len > 0)
  log_write(0, LOG_MAIN|LOG_PANIC, "SIGSEGV (%.*s)", process_info_len, process_info);
signal(SIGSEGV, SIG_DFL);
kill(getpid(), sig);
}
#endif


/*************************************************
*             Handler for SIGUSR1                *
*************************************************/

/* SIGUSR1 causes any exim process to write to the process log details of
what it is currently doing. It will only be used if the OS is capable of
setting up a handler that causes automatic restarting of any system call
that is in progress at the time.

This function takes care to be signal-safe.

Argument: the signal number (SIGUSR1)
Returns:  nothing
*/

static void
usr1_handler(int sig)
{
int fd;

os_restarting_signal(sig, usr1_handler);

if (!process_log_path) return;
fd = log_open_as_exim(process_log_path);

/* If we are neither exim nor root, or if we failed to create the log file,
give up. There is not much useful we can do with errors, since we don't want
to disrupt whatever is going on outside the signal handler. */

if (fd < 0) return;

(void)write(fd, process_info, process_info_len);
(void)close(fd);
}



/*************************************************
*             Timeout handler                    *
*************************************************/

/* This handler is enabled most of the time that Exim is running. The handler
doesn't actually get used unless alarm() has been called to set a timer, to
place a time limit on a system call of some kind. When the handler is run, it
re-enables itself.

There are some other SIGALRM handlers that are used in special cases when more
than just a flag setting is required; for example, when reading a message's
input. These are normally set up in the code module that uses them, and the
SIGALRM handler is reset to this one afterwards.

Argument: the signal value (SIGALRM)
Returns:  nothing
*/

void
sigalrm_handler(int sig)
{
sigalrm_seen = TRUE;
os_non_restarting_signal(SIGALRM, sigalrm_handler);
}



/*************************************************
*      Sleep for a fractional time interval      *
*************************************************/

/* This function is called by millisleep() and exim_wait_tick() to wait for a
period of time that may include a fraction of a second. The coding is somewhat
tedious. We do not expect setitimer() ever to fail, but if it does, the process
will wait for ever, so we panic in this instance. (There was a case of this
when a bug in a function that calls milliwait() caused it to pass invalid data.
That's when I added the check. :-)

We assume it to be not worth sleeping for under 50us; this value will
require revisiting as hardware advances.  This avoids the issue of
a zero-valued timer setting meaning "never fire".

Argument:  an itimerval structure containing the interval
Returns:   nothing
*/

static void
milliwait(struct itimerval *itval)
{
sigset_t sigmask;
sigset_t old_sigmask;
int save_errno = errno;

if (itval->it_value.tv_usec < 50 && itval->it_value.tv_sec == 0)
  return;
(void)sigemptyset(&sigmask);                           /* Empty mask */
(void)sigaddset(&sigmask, SIGALRM);                    /* Add SIGALRM */
(void)sigprocmask(SIG_BLOCK, &sigmask, &old_sigmask);  /* Block SIGALRM */
if (setitimer(ITIMER_REAL, itval, NULL) < 0)           /* Start timer */
  log_write(0, LOG_MAIN|LOG_PANIC_DIE,
    "setitimer() failed: %s", strerror(errno));
(void)sigfillset(&sigmask);                            /* All signals */
(void)sigdelset(&sigmask, SIGALRM);                    /* Remove SIGALRM */
(void)sigsuspend(&sigmask);                            /* Until SIGALRM */
(void)sigprocmask(SIG_SETMASK, &old_sigmask, NULL);    /* Restore mask */
errno = save_errno;
sigalrm_seen = FALSE;
}




/*************************************************
*         Millisecond sleep function             *
*************************************************/

/* The basic sleep() function has a granularity of 1 second, which is too rough
in some cases - for example, when using an increasing delay to slow down
spammers.

Argument:    number of millseconds
Returns:     nothing
*/

void
millisleep(int msec)
{
struct itimerval itval = {.it_interval = {.tv_sec = 0, .tv_usec = 0},
			  .it_value = {.tv_sec = msec/1000,
				       .tv_usec = (msec % 1000) * 1000}};
milliwait(&itval);
}



/*************************************************
*         Compare microsecond times              *
*************************************************/

/*
Arguments:
  tv1         the first time
  tv2         the second time

Returns:      -1, 0, or +1
*/

static int
exim_tvcmp(struct timeval *t1, struct timeval *t2)
{
if (t1->tv_sec > t2->tv_sec) return +1;
if (t1->tv_sec < t2->tv_sec) return -1;
if (t1->tv_usec > t2->tv_usec) return +1;
if (t1->tv_usec < t2->tv_usec) return -1;
return 0;
}




/*************************************************
*          Clock tick wait function              *
*************************************************/

#ifdef _POSIX_MONOTONIC_CLOCK
# ifdef CLOCK_BOOTTIME
#  define EXIM_CLOCKTYPE CLOCK_BOOTTIME
# else
#  define EXIM_CLOCKTYPE CLOCK_MONOTONIC
# endif

/* Amount EXIM_CLOCK is behind realtime, at startup. */
static struct timespec offset_ts;

static void
exim_clock_init(void)
{
struct timeval tv;
if (clock_gettime(EXIM_CLOCKTYPE, &offset_ts) != 0) return;
(void)gettimeofday(&tv, NULL);
offset_ts.tv_sec = tv.tv_sec - offset_ts.tv_sec;
offset_ts.tv_nsec = tv.tv_usec * 1000 - offset_ts.tv_nsec;
if (offset_ts.tv_nsec >= 0) return;
offset_ts.tv_sec--;
offset_ts.tv_nsec += 1000*1000*1000;
}
#endif


void
exim_gettime(struct timeval * tv)
{
#ifdef _POSIX_MONOTONIC_CLOCK
struct timespec now_ts;

if (clock_gettime(EXIM_CLOCKTYPE, &now_ts) == 0)
  {
  now_ts.tv_sec += offset_ts.tv_sec;
  if ((now_ts.tv_nsec += offset_ts.tv_nsec) >= 1000*1000*1000)
    {
    now_ts.tv_sec++;
    now_ts.tv_nsec -= 1000*1000*1000;
    }
  tv->tv_sec = now_ts.tv_sec;
  tv->tv_usec = now_ts.tv_nsec / 1000;
  }
else
#endif
  (void)gettimeofday(tv, NULL);
}


/* Exim uses a time + a pid to generate a unique identifier in two places: its
message IDs, and in file names for maildir deliveries. Because some OS now
re-use pids within the same second, sub-second times are now being used.
However, for absolute certainty, we must ensure the clock has ticked before
allowing the relevant process to complete. At the time of implementation of
this code (February 2003), the speed of processors is such that the clock will
invariably have ticked already by the time a process has done its job. This
function prepares for the time when things are faster - and it also copes with
clocks that go backwards.

Arguments:
  prev_tv      A timeval which was used to create uniqueness; its usec field
                 has been rounded down to the value of the resolution.
                 We want to be sure the current time is greater than this.
		 On return, updated to current (rounded down).
  resolution   The resolution that was used to divide the microseconds
                 (1 for maildir, larger for message ids)

Returns:       nothing
*/

void
exim_wait_tick(struct timeval * prev_tv, int resolution)
{
struct timeval now_tv;
long int now_true_usec;

exim_gettime(&now_tv);
now_true_usec = now_tv.tv_usec;
now_tv.tv_usec = (now_true_usec/resolution) * resolution;

while (exim_tvcmp(&now_tv, prev_tv) <= 0)
  {
  struct itimerval itval;
  itval.it_interval.tv_sec = 0;
  itval.it_interval.tv_usec = 0;
  itval.it_value.tv_sec = prev_tv->tv_sec - now_tv.tv_sec;
  itval.it_value.tv_usec = prev_tv->tv_usec + resolution - now_true_usec;

  /* We know that, overall, "now" is less than or equal to "then". Therefore, a
  negative value for the microseconds is possible only in the case when "now"
  is more than a second less than "tgt". That means that itval.it_value.tv_sec
  is greater than zero. The following correction is therefore safe. */

  if (itval.it_value.tv_usec < 0)
    {
    itval.it_value.tv_usec += 1000000;
    itval.it_value.tv_sec -= 1;
    }

  DEBUG(D_transport|D_receive)
    {
    if (!f.running_in_test_harness)
      {
      debug_printf("tick check: " TIME_T_FMT ".%06lu " TIME_T_FMT ".%06lu\n",
        prev_tv->tv_sec, (long) prev_tv->tv_usec,
       	now_tv.tv_sec, (long) now_tv.tv_usec);
      debug_printf("waiting " TIME_T_FMT ".%06lu sec\n",
        itval.it_value.tv_sec, (long) itval.it_value.tv_usec);
      }
    }

  milliwait(&itval);

  /* Be prapared to go around if the kernel does not implement subtick
  granularity (GNU Hurd) */

  exim_gettime(&now_tv);
  now_true_usec = now_tv.tv_usec;
  now_tv.tv_usec = (now_true_usec/resolution) * resolution;
  }
*prev_tv = now_tv;
}




/*************************************************
*   Call fopen() with umask 777 and adjust mode  *
*************************************************/

/* Exim runs with umask(0) so that files created with open() have the mode that
is specified in the open() call. However, there are some files, typically in
the spool directory, that are created with fopen(). They end up world-writeable
if no precautions are taken. Although the spool directory is not accessible to
the world, this is an untidiness. So this is a wrapper function for fopen()
that sorts out the mode of the created file.

Arguments:
   filename       the file name
   options        the fopen() options
   mode           the required mode

Returns:          the fopened FILE or NULL
*/

FILE *
modefopen(const uschar *filename, const char *options, mode_t mode)
{
mode_t saved_umask = umask(0777);
FILE *f = Ufopen(filename, options);
(void)umask(saved_umask);
if (f != NULL) (void)fchmod(fileno(f), mode);
return f;
}


/*************************************************
*   Ensure stdin, stdout, and stderr exist       *
*************************************************/

/* Some operating systems grumble if an exec() happens without a standard
input, output, and error (fds 0, 1, 2) being defined. The worry is that some
file will be opened and will use these fd values, and then some other bit of
code will assume, for example, that it can write error messages to stderr.
This function ensures that fds 0, 1, and 2 are open if they do not already
exist, by connecting them to /dev/null.

This function is also used to ensure that std{in,out,err} exist at all times,
so that if any library that Exim calls tries to use them, it doesn't crash.

Arguments:  None
Returns:    Nothing
*/

void
exim_nullstd(void)
{
int devnull = -1;
struct stat statbuf;
for (int i = 0; i <= 2; i++)
  {
  if (fstat(i, &statbuf) < 0 && errno == EBADF)
    {
    if (devnull < 0) devnull = open("/dev/null", O_RDWR);
    if (devnull < 0) log_write(0, LOG_MAIN|LOG_PANIC_DIE, "%s",
      string_open_failed("/dev/null", NULL));
    if (devnull != i) (void)dup2(devnull, i);
    }
  }
if (devnull > 2) (void)close(devnull);
}




/*************************************************
*   Close unwanted file descriptors for delivery *
*************************************************/

/* This function is called from a new process that has been forked to deliver
an incoming message, either directly, or using exec.

We want any smtp input streams to be closed in this new process. However, it
has been observed that using fclose() here causes trouble. When reading in -bS
input, duplicate copies of messages have been seen. The files will be sharing a
file pointer with the parent process, and it seems that fclose() (at least on
some systems - I saw this on Solaris 2.5.1) messes with that file pointer, at
least sometimes. Hence we go for closing the underlying file descriptors.

If TLS is active, we want to shut down the TLS library, but without molesting
the parent's SSL connection.

For delivery of a non-SMTP message, we want to close stdin and stdout (and
stderr unless debugging) because the calling process might have set them up as
pipes and be waiting for them to close before it waits for the submission
process to terminate. If they aren't closed, they hold up the calling process
until the initial delivery process finishes, which is not what we want.

Exception: We do want it for synchronous delivery!

And notwithstanding all the above, if D_resolver is set, implying resolver
debugging, leave stdout open, because that's where the resolver writes its
debugging output.

When we close stderr (which implies we've also closed stdout), we also get rid
of any controlling terminal.

Arguments:   None
Returns:     Nothing
*/

static void
close_unwanted(void)
{
if (smtp_input)
  {
#ifndef DISABLE_TLS
  tls_close(NULL, TLS_NO_SHUTDOWN);      /* Shut down the TLS library */
#endif
  (void)close(fileno(smtp_in));
  (void)close(fileno(smtp_out));
  smtp_in = NULL;
  }
else
  {
  (void)close(0);                                          /* stdin */
  if ((debug_selector & D_resolver) == 0) (void)close(1);  /* stdout */
  if (debug_selector == 0)                                 /* stderr */
    {
    if (!f.synchronous_delivery)
      {
      (void)close(2);
      log_stderr = NULL;
      }
    (void)setsid();
    }
  }
}




/*************************************************
*          Set uid and gid                       *
*************************************************/

/* This function sets a new uid and gid permanently, optionally calling
initgroups() to set auxiliary groups. There are some special cases when running
Exim in unprivileged modes. In these situations the effective uid will not be
root; if we already have the right effective uid/gid, and don't need to
initialize any groups, leave things as they are.

Arguments:
  uid        the uid
  gid        the gid
  igflag     TRUE if initgroups() wanted
  msg        text to use in debugging output and failure log

Returns:     nothing; bombs out on failure
*/

void
exim_setugid(uid_t uid, gid_t gid, BOOL igflag, const uschar * msg)
{
uid_t euid = geteuid();
gid_t egid = getegid();

if (euid == root_uid || euid != uid || egid != gid || igflag)
  {
  /* At least one OS returns +1 for initgroups failure, so just check for
  non-zero. */

  if (igflag)
    {
    struct passwd *pw = getpwuid(uid);
    if (!pw)
      log_write(0, LOG_MAIN|LOG_PANIC_DIE, "cannot run initgroups(): "
	"no passwd entry for uid=%ld", (long int)uid);

    if (initgroups(pw->pw_name, gid) != 0)
      log_write(0,LOG_MAIN|LOG_PANIC_DIE,"initgroups failed for uid=%ld: %s",
	(long int)uid, strerror(errno));
    }

  if (setgid(gid) < 0 || setuid(uid) < 0)
    log_write(0, LOG_MAIN|LOG_PANIC_DIE, "unable to set gid=%ld or uid=%ld "
      "(euid=%ld): %s", (long int)gid, (long int)uid, (long int)euid, msg);
  }

/* Debugging output included uid/gid and all groups */

DEBUG(D_uid)
  {
  int group_count, save_errno;
  gid_t group_list[EXIM_GROUPLIST_SIZE];
  debug_printf("changed uid/gid: %s\n  uid=%ld gid=%ld pid=%ld\n", msg,
    (long int)geteuid(), (long int)getegid(), (long int)getpid());
  group_count = getgroups(nelem(group_list), group_list);
  save_errno = errno;
  debug_printf("  auxiliary group list:");
  if (group_count > 0)
    for (int i = 0; i < group_count; i++) debug_printf(" %d", (int)group_list[i]);
  else if (group_count < 0)
    debug_printf(" <error: %s>", strerror(save_errno));
  else debug_printf(" <none>");
  debug_printf("\n");
  }
}




/*************************************************
*               Exit point                       *
*************************************************/

/* Exim exits via this function so that it always clears up any open
databases.

Arguments:
  rc         return code

Returns:     does not return
*/

void
exim_exit(int rc)
{
search_tidyup();
store_exit();
DEBUG(D_any)
  debug_printf(">>>>>>>>>>>>>>>> Exim pid=%d (%s) terminating with rc=%d "
    ">>>>>>>>>>>>>>>>\n",
    (int)getpid(), process_purpose, rc);
exit(rc);
}


void
exim_underbar_exit(int rc)
{
store_exit();
DEBUG(D_any)
  debug_printf(">>>>>>>>>>>>>>>> Exim pid=%d (%s) terminating with rc=%d "
    ">>>>>>>>>>>>>>>>\n",
    (int)getpid(), process_purpose, rc);
_exit(rc);
}



/* Print error string, then die */
static void
exim_fail(const char * fmt, ...)
{
va_list ap;
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
exit(EXIT_FAILURE);
}

/* fail if a length is too long */
static inline void
exim_len_fail_toolong(int itemlen, int maxlen, const char *description)
{
if (itemlen <= maxlen)
  return;
fprintf(stderr, "exim: length limit exceeded (%d > %d) for: %s\n",
        itemlen, maxlen, description);
exit(EXIT_FAILURE);
}

/* only pass through the string item back to the caller if it's short enough */
static inline const uschar *
exim_str_fail_toolong(const uschar *item, int maxlen, const char *description)
{
exim_len_fail_toolong(Ustrlen(item), maxlen, description);
return item;
}

/* exim_chown_failure() called from exim_chown()/exim_fchown() on failure
of chown()/fchown().  See src/functions.h for more explanation */
int
exim_chown_failure(int fd, const uschar *name, uid_t owner, gid_t group)
{
int saved_errno = errno;  /* from the preceeding chown call */
#if 1
log_write(0, LOG_MAIN|LOG_PANIC,
  __FILE__ ":%d: chown(%s, %d:%d) failed (%s)."
  " Please contact the authors and refer to https://bugs.exim.org/show_bug.cgi?id=2391",
  __LINE__, name?name:US"<unknown>", owner, group, strerror(errno));
#else
/* I leave this here, commented, in case the "bug"(?) comes up again.
   It is not an Exim bug, but we can provide a workaround.
   See Bug 2391
   HS 2019-04-18 */

struct stat buf;

if (0 == (fd < 0 ? stat(name, &buf) : fstat(fd, &buf)))
{
  if (buf.st_uid == owner && buf.st_gid == group) return 0;
  log_write(0, LOG_MAIN|LOG_PANIC, "Wrong ownership on %s", name);
}
else log_write(0, LOG_MAIN|LOG_PANIC, "Stat failed on %s: %s", name, strerror(errno));

#endif
errno = saved_errno;
return -1;
}


/*************************************************
*         Extract port from host address         *
*************************************************/

/* Called to extract the port from the values given to -oMa and -oMi.
It also checks the syntax of the address, and terminates it before the
port data when a port is extracted.

Argument:
  address   the address, with possible port on the end

Returns:    the port, or zero if there isn't one
            bombs out on a syntax error
*/

static int
check_port(uschar *address)
{
int port = host_address_extract_port(address);
if (string_is_ip_address(address, NULL) == 0)
  exim_fail("exim abandoned: \"%s\" is not an IP address\n", address);
return port;
}



/*************************************************
*              Test/verify an address            *
*************************************************/

/* This function is called by the -bv and -bt code. It extracts a working
address from a full RFC 822 address. This isn't really necessary per se, but it
has the effect of collapsing source routes.

Arguments:
  s            the address string
  flags        flag bits for verify_address()
  exit_value   to be set for failures

Returns:       nothing
*/

static void
test_address(uschar *s, int flags, int *exit_value)
{
int start, end, domain;
uschar *parse_error = NULL;
uschar *address = parse_extract_address(s, &parse_error, &start, &end, &domain,
  FALSE);
if (!address)
  {
  fprintf(stdout, "syntax error: %s\n", parse_error);
  *exit_value = 2;
  }
else
  {
  int rc = verify_address(deliver_make_addr(address,TRUE), stdout, flags, -1,
    -1, -1, NULL, NULL, NULL);
  if (rc == FAIL) *exit_value = 2;
  else if (rc == DEFER && *exit_value == 0) *exit_value = 1;
  }
}



/*************************************************
*          Show supported features               *
*************************************************/

static void
show_string(BOOL is_stdout, gstring * g)
{
const uschar * s = string_from_gstring(g);
if (s)
  if (is_stdout) fputs(CCS s, stdout);
  else debug_printf("%s", s);
}


static gstring *
show_db_version(gstring * g)
{
#ifdef DB_VERSION_STRING
DEBUG(D_any)
  {
  g = string_fmt_append(g, "Library version: BDB: Compile: %s\n", DB_VERSION_STRING);
  g = string_fmt_append(g, "                      Runtime: %s\n",
    db_version(NULL, NULL, NULL));
  }
else
  g = string_fmt_append(g, "Berkeley DB: %s\n", DB_VERSION_STRING);

#elif defined(BTREEVERSION) && defined(HASHVERSION)
# ifdef USE_DB
  g = string_cat(g, US"Probably Berkeley DB version 1.8x (native mode)\n");
# else
  g = string_cat(g, US"Probably Berkeley DB version 1.8x (compatibility mode)\n");
# endif

#elif defined(_DBM_RDONLY) || defined(dbm_dirfno)
g = string_cat(g, US"Probably ndbm\n");
#elif defined(USE_TDB)
g = string_cat(g, US"Using tdb\n");
#else
# ifdef USE_GDBM
  g = string_cat(g, US"Probably GDBM (native mode)\n");
# else
  g = string_cat(g, US"Probably GDBM (compatibility mode)\n");
# endif
#endif
return g;
}


/* This function is called for -bV/--version and for -d to output the optional
features of the current Exim binary.

Arguments:  BOOL, true for stdout else debug channel
Returns:    nothing
*/

static void
show_whats_supported(BOOL is_stdout)
{
rmark reset_point = store_mark();
gstring * g = NULL;

DEBUG(D_any) {} else g = show_db_version(g);

g = string_cat(g, US"Support for:");
#ifdef SUPPORT_CRYPTEQ
  g = string_cat(g, US" crypteq");
#endif
#if HAVE_ICONV
  g = string_cat(g, US" iconv()");
#endif
#if HAVE_IPV6
  g = string_cat(g, US" IPv6");
#endif
#ifdef HAVE_SETCLASSRESOURCES
  g = string_cat(g, US" use_setclassresources");
#endif
#ifdef SUPPORT_PAM
  g = string_cat(g, US" PAM");
#endif
#ifdef EXIM_PERL
  g = string_cat(g, US" Perl");
#endif
#ifdef EXPAND_DLFUNC
  g = string_cat(g, US" Expand_dlfunc");
#endif
#ifdef USE_TCP_WRAPPERS
  g = string_cat(g, US" TCPwrappers");
#endif
#ifdef USE_GNUTLS
  g = string_cat(g, US" GnuTLS");
#endif
#ifdef USE_OPENSSL
  g = string_cat(g, US" OpenSSL");
#endif
#ifndef DISABLE_TLS_RESUME
  g = string_cat(g, US" TLS_resume");
#endif
#ifdef SUPPORT_TRANSLATE_IP_ADDRESS
  g = string_cat(g, US" translate_ip_address");
#endif
#ifdef SUPPORT_MOVE_FROZEN_MESSAGES
  g = string_cat(g, US" move_frozen_messages");
#endif
#ifdef WITH_CONTENT_SCAN
  g = string_cat(g, US" Content_Scanning");
#endif
#ifdef SUPPORT_DANE
  g = string_cat(g, US" DANE");
#endif
#ifndef DISABLE_DKIM
  g = string_cat(g, US" DKIM");
#endif
#ifdef SUPPORT_DMARC
  g = string_cat(g, US" DMARC");
#endif
#ifndef DISABLE_DNSSEC
  g = string_cat(g, US" DNSSEC");
#endif
#ifndef DISABLE_EVENT
  g = string_cat(g, US" Event");
#endif
#ifdef SUPPORT_I18N
  g = string_cat(g, US" I18N");
#endif
#ifndef DISABLE_OCSP
  g = string_cat(g, US" OCSP");
#endif
#ifndef DISABLE_PIPE_CONNECT
  g = string_cat(g, US" PIPECONNECT");
#endif
#ifndef DISABLE_PRDR
  g = string_cat(g, US" PRDR");
#endif
#ifdef SUPPORT_PROXY
  g = string_cat(g, US" PROXY");
#endif
#ifndef DISABLE_QUEUE_RAMP
  g = string_cat(g, US" Queue_Ramp");
#endif
#ifdef SUPPORT_SOCKS
  g = string_cat(g, US" SOCKS");
#endif
#ifdef SUPPORT_SPF
  g = string_cat(g, US" SPF");
#endif
#if defined(SUPPORT_SRS)
  g = string_cat(g, US" SRS");
#endif
#ifdef TCP_FASTOPEN
  tcp_init();
  if (f.tcp_fastopen_ok) g = string_cat(g, US" TCP_Fast_Open");
#endif
#ifdef EXPERIMENTAL_ARC
  g = string_cat(g, US" Experimental_ARC");
#endif
#ifdef EXPERIMENTAL_BRIGHTMAIL
  g = string_cat(g, US" Experimental_Brightmail");
#endif
#ifdef EXPERIMENTAL_DCC
  g = string_cat(g, US" Experimental_DCC");
#endif
#ifdef EXPERIMENTAL_DSN_INFO
  g = string_cat(g, US" Experimental_DSN_info");
#endif
#ifdef EXPERIMENTAL_ESMTP_LIMITS
  g = string_cat(g, US" Experimental_ESMTP_Limits");
#endif
#ifdef EXPERIMENTAL_QUEUEFILE
  g = string_cat(g, US" Experimental_QUEUEFILE");
#endif
g = string_cat(g, US"\n");

g = string_cat(g, US"Lookups (built-in):");
#if defined(LOOKUP_LSEARCH) && LOOKUP_LSEARCH!=2
  g = string_cat(g, US" lsearch wildlsearch nwildlsearch iplsearch");
#endif
#if defined(LOOKUP_CDB) && LOOKUP_CDB!=2
  g = string_cat(g, US" cdb");
#endif
#if defined(LOOKUP_DBM) && LOOKUP_DBM!=2
  g = string_cat(g, US" dbm dbmjz dbmnz");
#endif
#if defined(LOOKUP_DNSDB) && LOOKUP_DNSDB!=2
  g = string_cat(g, US" dnsdb");
#endif
#if defined(LOOKUP_DSEARCH) && LOOKUP_DSEARCH!=2
  g = string_cat(g, US" dsearch");
#endif
#if defined(LOOKUP_IBASE) && LOOKUP_IBASE!=2
  g = string_cat(g, US" ibase");
#endif
#if defined(LOOKUP_JSON) && LOOKUP_JSON!=2
  g = string_cat(g, US" json");
#endif
#if defined(LOOKUP_LDAP) && LOOKUP_LDAP!=2
  g = string_cat(g, US" ldap ldapdn ldapm");
#endif
#ifdef LOOKUP_LMDB
  g = string_cat(g, US" lmdb");
#endif
#if defined(LOOKUP_MYSQL) && LOOKUP_MYSQL!=2
  g = string_cat(g, US" mysql");
#endif
#if defined(LOOKUP_NIS) && LOOKUP_NIS!=2
  g = string_cat(g, US" nis nis0");
#endif
#if defined(LOOKUP_NISPLUS) && LOOKUP_NISPLUS!=2
  g = string_cat(g, US" nisplus");
#endif
#if defined(LOOKUP_ORACLE) && LOOKUP_ORACLE!=2
  g = string_cat(g, US" oracle");
#endif
#if defined(LOOKUP_PASSWD) && LOOKUP_PASSWD!=2
  g = string_cat(g, US" passwd");
#endif
#if defined(LOOKUP_PGSQL) && LOOKUP_PGSQL!=2
  g = string_cat(g, US" pgsql");
#endif
#if defined(LOOKUP_REDIS) && LOOKUP_REDIS!=2
  g = string_cat(g, US" redis");
#endif
#if defined(LOOKUP_SQLITE) && LOOKUP_SQLITE!=2
  g = string_cat(g, US" sqlite");
#endif
#if defined(LOOKUP_TESTDB) && LOOKUP_TESTDB!=2
  g = string_cat(g, US" testdb");
#endif
#if defined(LOOKUP_WHOSON) && LOOKUP_WHOSON!=2
  g = string_cat(g, US" whoson");
#endif
g = string_cat(g, US"\n");

g = auth_show_supported(g);
g = route_show_supported(g);
g = transport_show_supported(g);

#ifdef WITH_CONTENT_SCAN
g = malware_show_supported(g);
#endif
show_string(is_stdout, g); g = NULL;

if (fixed_never_users[0] > 0)
  {
  int i;
  g = string_cat(g, US"Fixed never_users: ");
  for (i = 1; i <= (int)fixed_never_users[0] - 1; i++)
    string_fmt_append(g, "%u:", (unsigned)fixed_never_users[i]);
  g = string_fmt_append(g, "%u\n", (unsigned)fixed_never_users[i]);
  }

g = string_fmt_append(g, "Configure owner: %d:%d\n", config_uid, config_gid);

g = string_fmt_append(g, "Size of off_t: " SIZE_T_FMT "\n", sizeof(off_t));

/* Everything else is details which are only worth reporting when debugging.
Perhaps the tls_version_report should move into this too. */
DEBUG(D_any)
  {

/* clang defines __GNUC__ (at least, for me) so test for it first */
#if defined(__clang__)
  g = string_fmt_append(g, "Compiler: CLang [%s]\n", __clang_version__);
#elif defined(__GNUC__)
  g = string_fmt_append(g, "Compiler: GCC [%s]\n",
# ifdef __VERSION__
      __VERSION__
# else
      "? unknown version ?"
# endif
      );
#else
  g = string_cat(g, US"Compiler: <unknown>\n");
#endif

#if defined(__GLIBC__) && !defined(__UCLIBC__)
  g = string_fmt_append(g, "Library version: Glibc: Compile: %d.%d\n",
	       	__GLIBC__, __GLIBC_MINOR__);
  if (__GLIBC_PREREQ(2, 1))
    g = string_fmt_append(g, "                        Runtime: %s\n",
	       	gnu_get_libc_version());
#endif

g = show_db_version(g);

#ifndef DISABLE_TLS
  g = tls_version_report(g);
#endif
#ifdef SUPPORT_I18N
  g = utf8_version_report(g);
#endif
#ifdef SUPPORT_DMARC
  g = dmarc_version_report(g);
#endif
#ifdef SUPPORT_SPF
  g = spf_lib_version_report(g);
#endif

show_string(is_stdout, g);
g = NULL;

for (auth_info * authi = auths_available; *authi->driver_name != '\0'; ++authi)
  if (authi->version_report)
    g = (*authi->version_report)(g);

  /* PCRE_PRERELEASE is either defined and empty or a bare sequence of
  characters; unless it's an ancient version of PCRE in which case it
  is not defined. */
#ifndef PCRE_PRERELEASE
# define PCRE_PRERELEASE
#endif
#define QUOTE(X) #X
#define EXPAND_AND_QUOTE(X) QUOTE(X)
  {
  uschar buf[24];
  pcre2_config(PCRE2_CONFIG_VERSION, buf);
  g = string_fmt_append(g, "Library version: PCRE2: Compile: %d.%d%s\n"
              "                        Runtime: %s\n",
          PCRE2_MAJOR, PCRE2_MINOR,
          EXPAND_AND_QUOTE(PCRE2_PRERELEASE) "",
          buf);
  }
#undef QUOTE
#undef EXPAND_AND_QUOTE

show_string(is_stdout, g);
g = NULL;

init_lookup_list();
for (int i = 0; i < lookup_list_count; i++)
  if (lookup_list[i]->version_report)
    g = lookup_list[i]->version_report(g);
show_string(is_stdout, g);
g = NULL;

#ifdef WHITELIST_D_MACROS
  g = string_fmt_append(g, "WHITELIST_D_MACROS: \"%s\"\n", WHITELIST_D_MACROS);
#else
  g = string_cat(g, US"WHITELIST_D_MACROS unset\n");
#endif
#ifdef TRUSTED_CONFIG_LIST
  g = string_fmt_append(g, "TRUSTED_CONFIG_LIST: \"%s\"\n", TRUSTED_CONFIG_LIST);
#else
  g = string_cat(g, US"TRUSTED_CONFIG_LIST unset\n");
#endif
  }

show_string(is_stdout, g);
store_reset(reset_point);
}


/*************************************************
*     Show auxiliary information about Exim      *
*************************************************/

static void
show_exim_information(enum commandline_info request, FILE *stream)
{
switch(request)
  {
  case CMDINFO_NONE:
    fprintf(stream, "Oops, something went wrong.\n");
    return;
  case CMDINFO_HELP:
    fprintf(stream,
"The -bI: flag takes a string indicating which information to provide.\n"
"If the string is not recognised, you'll get this help (on stderr).\n"
"\n"
"  exim -bI:help    this information\n"
"  exim -bI:dscp    list of known dscp value keywords\n"
"  exim -bI:sieve   list of supported sieve extensions\n"
);
    return;
  case CMDINFO_SIEVE:
    for (const uschar ** pp = exim_sieve_extension_list; *pp; ++pp)
      fprintf(stream, "%s\n", *pp);
    return;
  case CMDINFO_DSCP:
    dscp_list_to_stream(stream);
    return;
  }
}


/*************************************************
*               Quote a local part               *
*************************************************/

/* This function is used when a sender address or a From: or Sender: header
line is being created from the caller's login, or from an authenticated_id. It
applies appropriate quoting rules for a local part.

Argument:    the local part
Returns:     the local part, quoted if necessary
*/

uschar *
local_part_quote(uschar *lpart)
{
BOOL needs_quote = FALSE;
gstring * g;

for (uschar * t = lpart; !needs_quote && *t != 0; t++)
  {
  needs_quote = !isalnum(*t) && strchr("!#$%&'*+-/=?^_`{|}~", *t) == NULL &&
    (*t != '.' || t == lpart || t[1] == 0);
  }

if (!needs_quote) return lpart;

g = string_catn(NULL, US"\"", 1);

for (;;)
  {
  uschar *nq = US Ustrpbrk(lpart, "\\\"");
  if (nq == NULL)
    {
    g = string_cat(g, lpart);
    break;
    }
  g = string_catn(g, lpart, nq - lpart);
  g = string_catn(g, US"\\", 1);
  g = string_catn(g, nq, 1);
  lpart = nq + 1;
  }

g = string_catn(g, US"\"", 1);
return string_from_gstring(g);
}



#ifdef USE_READLINE
/*************************************************
*         Load readline() functions              *
*************************************************/

/* This function is called from testing executions that read data from stdin,
but only when running as the calling user. Currently, only -be does this. The
function loads the readline() function library and passes back the functions.
On some systems, it needs the curses library, so load that too, but try without
it if loading fails. All this functionality has to be requested at build time.

Arguments:
  fn_readline_ptr   pointer to where to put the readline pointer
  fn_addhist_ptr    pointer to where to put the addhistory function

Returns:            the dlopen handle or NULL on failure
*/

static void *
set_readline(char * (**fn_readline_ptr)(const char *),
             void   (**fn_addhist_ptr)(const char *))
{
void *dlhandle;
void *dlhandle_curses = dlopen("libcurses." DYNLIB_FN_EXT, RTLD_GLOBAL|RTLD_LAZY);

dlhandle = dlopen("libreadline." DYNLIB_FN_EXT, RTLD_GLOBAL|RTLD_NOW);
if (dlhandle_curses) dlclose(dlhandle_curses);

if (dlhandle)
  {
  /* Checked manual pages; at least in GNU Readline 6.1, the prototypes are:
   *   char * readline (const char *prompt);
   *   void add_history (const char *string);
   */
  *fn_readline_ptr = (char *(*)(const char*))dlsym(dlhandle, "readline");
  *fn_addhist_ptr = (void(*)(const char*))dlsym(dlhandle, "add_history");
  }
else
  DEBUG(D_any) debug_printf("failed to load readline: %s\n", dlerror());

return dlhandle;
}
#endif



/*************************************************
*    Get a line from stdin for testing things    *
*************************************************/

/* This function is called when running tests that can take a number of lines
of input (for example, -be and -bt). It handles continuations and trailing
spaces. And prompting and a blank line output on eof. If readline() is in use,
the arguments are non-NULL and provide the relevant functions.

Arguments:
  fn_readline   readline function or NULL
  fn_addhist    addhist function or NULL

Returns:        pointer to dynamic memory, or NULL at end of file
*/

static uschar *
get_stdinput(char *(*fn_readline)(const char *), void(*fn_addhist)(const char *))
{
gstring * g = NULL;
BOOL had_input = FALSE;

if (!fn_readline) { printf("> "); fflush(stdout); }

for (int i = 0;; i++)
  {
  uschar buffer[1024];
  uschar * p, * ss;

#ifdef USE_READLINE
  char *readline_line = NULL;
  if (fn_readline)
    {
    if (!(readline_line = fn_readline((i > 0)? "":"> "))) break;
    if (*readline_line && fn_addhist) fn_addhist(readline_line);
    p = US readline_line;
    }
  else
#endif

  /* readline() not in use */

    {
    if (Ufgets(buffer, sizeof(buffer), stdin) == NULL) break;	/*EOF*/
    p = buffer;
    }

  /* Handle the line */

  had_input = TRUE;
  ss = p + Ustrlen(p);
  while (ss > p && isspace(ss[-1])) ss--; /* strip trailing newline (and spaces) */

  if (i > 0)
    while (p < ss && isspace(*p)) p++;   /* strip leading space after cont */

  g = string_catn(g, p, ss - p);

#ifdef USE_READLINE
  if (fn_readline) free(readline_line);
#endif

  /* g can only be NULL if ss==p */
  if (ss == p || g->s[g->ptr-1] != '\\') /* not continuation; done */
    break;

  --g->ptr;				/* drop the \ */
  }

if (had_input) return g ? string_from_gstring(g) : US"";
printf("\n");
return NULL;
}



/*************************************************
*    Output usage information for the program    *
*************************************************/

/* This function is called when there are no recipients
   or a specific --help argument was added.

Arguments:
  progname      information on what name we were called by

Returns:        DOES NOT RETURN
*/

static void
exim_usage(uschar *progname)
{

/* Handle specific program invocation variants */
if (Ustrcmp(progname, US"-mailq") == 0)
  exim_fail(
    "mailq - list the contents of the mail queue\n\n"
    "For a list of options, see the Exim documentation.\n");

/* Generic usage - we output this whatever happens */
exim_fail(
  "Exim is a Mail Transfer Agent. It is normally called by Mail User Agents,\n"
  "not directly from a shell command line. Options and/or arguments control\n"
  "what it does when called. For a list of options, see the Exim documentation.\n");
}



/*************************************************
*    Validate that the macros given are okay     *
*************************************************/

/* Typically, Exim will drop privileges if macros are supplied.  In some
cases, we want to not do so.

Arguments:    opt_D_used - true if the commandline had a "-D" option
Returns:      true if trusted, false otherwise
*/

static BOOL
macros_trusted(BOOL opt_D_used)
{
#ifdef WHITELIST_D_MACROS
uschar *whitelisted, *end, *p, **whites;
int white_count, i, n;
size_t len;
BOOL prev_char_item, found;
#endif

if (!opt_D_used)
  return TRUE;
#ifndef WHITELIST_D_MACROS
return FALSE;
#else

/* We only trust -D overrides for some invoking users:
root, the exim run-time user, the optional config owner user.
I don't know why config-owner would be needed, but since they can own the
config files anyway, there's no security risk to letting them override -D. */
if ( ! ((real_uid == root_uid)
     || (real_uid == exim_uid)
#ifdef CONFIGURE_OWNER
     || (real_uid == config_uid)
#endif
   ))
  {
  debug_printf("macros_trusted rejecting macros for uid %d\n", (int) real_uid);
  return FALSE;
  }

/* Get a list of macros which are whitelisted */
whitelisted = string_copy_perm(US WHITELIST_D_MACROS, FALSE);
prev_char_item = FALSE;
white_count = 0;
for (p = whitelisted; *p != '\0'; ++p)
  {
  if (*p == ':' || isspace(*p))
    {
    *p = '\0';
    if (prev_char_item)
      ++white_count;
    prev_char_item = FALSE;
    continue;
    }
  if (!prev_char_item)
    prev_char_item = TRUE;
  }
end = p;
if (prev_char_item)
  ++white_count;
if (!white_count)
  return FALSE;
whites = store_malloc(sizeof(uschar *) * (white_count+1));
for (p = whitelisted, i = 0; (p != end) && (i < white_count); ++p)
  {
  if (*p != '\0')
    {
    whites[i++] = p;
    if (i == white_count)
      break;
    while (*p != '\0' && p < end)
      ++p;
    }
  }
whites[i] = NULL;

/* The list of commandline macros should be very short.
Accept the N*M complexity. */
for (macro_item * m = macros_user; m; m = m->next) if (m->command_line)
  {
  found = FALSE;
  for (uschar ** w = whites; *w; ++w)
    if (Ustrcmp(*w, m->name) == 0)
      {
      found = TRUE;
      break;
      }
  if (!found)
    return FALSE;
  if (!m->replacement)
    continue;
  if ((len = m->replen) == 0)
    continue;
  if (!regex_match(regex_whitelisted_macro, m->replacement, len, NULL))
    return FALSE;
  }
DEBUG(D_any) debug_printf("macros_trusted overridden to true by whitelisting\n");
return TRUE;
#endif
}


/*************************************************
*          Expansion testing			 *
*************************************************/

/* Expand and print one item, doing macro-processing.

Arguments:
  item		line for expansion
*/

static void
expansion_test_line(const uschar * line)
{
int len;
BOOL dummy_macexp;
uschar * s;

Ustrncpy(big_buffer, line, big_buffer_size);
big_buffer[big_buffer_size-1] = '\0';
len = Ustrlen(big_buffer);

(void) macros_expand(0, &len, &dummy_macexp);

if (isupper(big_buffer[0]))
  {
  if (macro_read_assignment(big_buffer))
    printf("Defined macro '%s'\n", mlast->name);
  }
else
  if ((s = expand_string(big_buffer))) printf("%s\n", CS s);
  else printf("Failed: %s\n", expand_string_message);
}



/*************************************************
*          Entry point and high-level code       *
*************************************************/

/* Entry point for the Exim mailer. Analyse the arguments and arrange to take
the appropriate action. All the necessary functions are present in the one
binary. I originally thought one should split it up, but it turns out that so
much of the apparatus is needed in each chunk that one might as well just have
it all available all the time, which then makes the coding easier as well.

Arguments:
  argc      count of entries in argv
  argv      argument strings, with argv[0] being the program name

Returns:    EXIT_SUCCESS if terminated successfully
            EXIT_FAILURE otherwise, except when a message has been sent
              to the sender, and -oee was given
*/

int
main(int argc, char **cargv)
{
uschar **argv = USS cargv;
int  arg_receive_timeout = -1;
int  arg_smtp_receive_timeout = -1;
int  arg_error_handling = error_handling;
int  filter_sfd = -1;
int  filter_ufd = -1;
int  group_count;
int  i, rv;
int  list_queue_option = 0;
int  msg_action = 0;
int  msg_action_arg = -1;
int  namelen = argv[0] ? Ustrlen(argv[0]) : 0;
int  queue_only_reason = 0;
#ifdef EXIM_PERL
int  perl_start_option = 0;
#endif
int  recipients_arg = argc;
int  sender_address_domain = 0;
int  test_retry_arg = -1;
int  test_rewrite_arg = -1;
gid_t original_egid;
BOOL arg_queue_only = FALSE;
BOOL bi_option = FALSE;
BOOL checking = FALSE;
BOOL count_queue = FALSE;
BOOL expansion_test = FALSE;
BOOL extract_recipients = FALSE;
BOOL flag_G = FALSE;
BOOL flag_n = FALSE;
BOOL forced_delivery = FALSE;
BOOL f_end_dot = FALSE;
BOOL deliver_give_up = FALSE;
BOOL list_queue = FALSE;
BOOL list_options = FALSE;
BOOL list_config = FALSE;
BOOL local_queue_only;
BOOL one_msg_action = FALSE;
BOOL opt_D_used = FALSE;
BOOL queue_only_set = FALSE;
BOOL receiving_message = TRUE;
BOOL sender_ident_set = FALSE;
BOOL session_local_queue_only;
BOOL unprivileged;
BOOL removed_privilege = FALSE;
BOOL usage_wanted = FALSE;
BOOL verify_address_mode = FALSE;
BOOL verify_as_sender = FALSE;
BOOL rcpt_verify_quota = FALSE;
BOOL version_printed = FALSE;
uschar *alias_arg = NULL;
uschar *called_as = US"";
uschar *cmdline_syslog_name = NULL;
uschar *start_queue_run_id = NULL;
uschar *stop_queue_run_id = NULL;
uschar *expansion_test_message = NULL;
const uschar *ftest_domain = NULL;
const uschar *ftest_localpart = NULL;
const uschar *ftest_prefix = NULL;
const uschar *ftest_suffix = NULL;
uschar *log_oneline = NULL;
uschar *malware_test_file = NULL;
uschar *real_sender_address;
uschar *originator_home = US"/";
size_t sz;

struct passwd *pw;
struct stat statbuf;
pid_t passed_qr_pid = (pid_t)0;
int passed_qr_pipe = -1;
gid_t group_list[EXIM_GROUPLIST_SIZE];

/* For the -bI: flag */
enum commandline_info info_flag = CMDINFO_NONE;
BOOL info_stdout = FALSE;

/* Possible options for -R and -S */

static uschar *rsopts[] = { US"f", US"ff", US"r", US"rf", US"rff" };

/* Need to define this in case we need to change the environment in order
to get rid of a bogus time zone. We have to make it char rather than uschar
because some OS define it in /usr/include/unistd.h. */

extern char **environ;

#ifdef MEASURE_TIMING
(void)gettimeofday(&timestamp_startup, NULL);
#endif

store_init();	/* Initialise the memory allocation susbsystem */
pcre_init();	/* Set up memory handling for pcre */

/* If the Exim user and/or group and/or the configuration file owner/group were
defined by ref:name at build time, we must now find the actual uid/gid values.
This is a feature to make the lives of binary distributors easier. */

#ifdef EXIM_USERNAME
if (route_finduser(US EXIM_USERNAME, &pw, &exim_uid))
  {
  if (exim_uid == 0)
    exim_fail("exim: refusing to run with uid 0 for \"%s\"\n", EXIM_USERNAME);

  /* If ref:name uses a number as the name, route_finduser() returns
  TRUE with exim_uid set and pw coerced to NULL. */
  if (pw)
    exim_gid = pw->pw_gid;
#ifndef EXIM_GROUPNAME
  else
    exim_fail(
        "exim: ref:name should specify a usercode, not a group.\n"
        "exim: can't let you get away with it unless you also specify a group.\n");
#endif
  }
else
  exim_fail("exim: failed to find uid for user name \"%s\"\n", EXIM_USERNAME);
#endif

#ifdef EXIM_GROUPNAME
if (!route_findgroup(US EXIM_GROUPNAME, &exim_gid))
  exim_fail("exim: failed to find gid for group name \"%s\"\n", EXIM_GROUPNAME);
#endif

#ifdef CONFIGURE_OWNERNAME
if (!route_finduser(US CONFIGURE_OWNERNAME, NULL, &config_uid))
  exim_fail("exim: failed to find uid for user name \"%s\"\n",
    CONFIGURE_OWNERNAME);
#endif

/* We default the system_filter_user to be the Exim run-time user, as a
sane non-root value. */
system_filter_uid = exim_uid;

#ifdef CONFIGURE_GROUPNAME
if (!route_findgroup(US CONFIGURE_GROUPNAME, &config_gid))
  exim_fail("exim: failed to find gid for group name \"%s\"\n",
    CONFIGURE_GROUPNAME);
#endif

/* In the Cygwin environment, some initialization used to need doing.
It was fudged in by means of this macro; now no longer but we'll leave
it in case of others. */

#ifdef OS_INIT
OS_INIT
#endif

/* Check a field which is patched when we are running Exim within its
testing harness; do a fast initial check, and then the whole thing. */

f.running_in_test_harness =
  *running_status == '<' && Ustrcmp(running_status, "<<<testing>>>") == 0;
if (f.running_in_test_harness)
  debug_store = TRUE;

/* Protect against abusive argv[0] */
if (!argv[0] || !argc) exim_fail("exim: executable name required\n");
exim_str_fail_toolong(argv[0], PATH_MAX, "argv[0]");

/* The C standard says that the equivalent of setlocale(LC_ALL, "C") is obeyed
at the start of a program; however, it seems that some environments do not
follow this. A "strange" locale can affect the formatting of timestamps, so we
make quite sure. */

setlocale(LC_ALL, "C");

/* Get the offset between CLOCK_MONOTONIC/CLOCK_BOOTTIME and wallclock */

#ifdef _POSIX_MONOTONIC_CLOCK
exim_clock_init();
#endif

/* Set up the default handler for timing using alarm(). */

os_non_restarting_signal(SIGALRM, sigalrm_handler);

/* Ensure we have a buffer for constructing log entries. Use malloc directly,
because store_malloc writes a log entry on failure. */

if (!(log_buffer = US malloc(LOG_BUFFER_SIZE)))
  exim_fail("exim: failed to get store for log buffer\n");

/* Initialize the default log options. */

bits_set(log_selector, log_selector_size, log_default);

/* Set log_stderr to stderr, provided that stderr exists. This gets reset to
NULL when the daemon is run and the file is closed. We have to use this
indirection, because some systems don't allow writing to the variable "stderr".
*/

if (fstat(fileno(stderr), &statbuf) >= 0) log_stderr = stderr;

/* Ensure there is a big buffer for temporary use in several places. It is put
in malloc store so that it can be freed for enlargement if necessary. */

big_buffer = store_malloc(big_buffer_size);

/* Set up the handler for the data request signal, and set the initial
descriptive text. */

process_info = store_get(PROCESS_INFO_SIZE, GET_TAINTED);
set_process_info("initializing");
os_restarting_signal(SIGUSR1, usr1_handler);		/* exiwhat */
#ifdef SA_SIGINFO
  {
  struct sigaction act = { .sa_sigaction = segv_handler, .sa_flags = SA_RESETHAND | SA_SIGINFO };
  sigaction(SIGSEGV, &act, NULL);
  }
#else
signal(SIGSEGV, segv_handler);				/* log faults */
#endif

/* If running in a dockerized environment, the TERM signal is only
delegated to the PID 1 if we request it by setting an signal handler */
if (getpid() == 1) signal(SIGTERM, term_handler);

/* SIGHUP is used to get the daemon to reconfigure. It gets set as appropriate
in the daemon code. For the rest of Exim's uses, we ignore it. */

signal(SIGHUP, SIG_IGN);

/* We don't want to die on pipe errors as the code is written to handle
the write error instead. */

signal(SIGPIPE, SIG_IGN);

/* Under some circumstance on some OS, Exim can get called with SIGCHLD
set to SIG_IGN. This causes subprocesses that complete before the parent
process waits for them not to hang around, so when Exim calls wait(), nothing
is there. The wait() code has been made robust against this, but let's ensure
that SIGCHLD is set to SIG_DFL, because it's tidier to wait and get a process
ending status. We use sigaction rather than plain signal() on those OS where
SA_NOCLDWAIT exists, because we want to be sure it is turned off. (There was a
problem on AIX with this.) */

#ifdef SA_NOCLDWAIT
  {
  struct sigaction act;
  act.sa_handler = SIG_DFL;
  sigemptyset(&(act.sa_mask));
  act.sa_flags = 0;
  sigaction(SIGCHLD, &act, NULL);
  }
#else
signal(SIGCHLD, SIG_DFL);
#endif

/* Save the arguments for use if we re-exec exim as a daemon after receiving
SIGHUP. */

sighup_argv = argv;

/* Set up the version number. Set up the leading 'E' for the external form of
message ids, set the pointer to the internal form, and initialize it to
indicate no message being processed. */

version_init();
message_id_option[0] = '-';
message_id_external = message_id_option + 1;
message_id_external[0] = 'E';
message_id = message_id_external + 1;
message_id[0] = 0;

/* Set the umask to zero so that any files Exim creates using open() are
created with the modes that it specifies. NOTE: Files created with fopen() have
a problem, which was not recognized till rather late (February 2006). With this
umask, such files will be world writeable. (They are all content scanning files
in the spool directory, which isn't world-accessible, so this is not a
disaster, but it's untidy.) I don't want to change this overall setting,
however, because it will interact badly with the open() calls. Instead, there's
now a function called modefopen() that fiddles with the umask while calling
fopen(). */

(void)umask(0);

/* Precompile the regular expression for matching a message id. Keep this in
step with the code that generates ids in the accept.c module. We need to do
this here, because the -M options check their arguments for syntactic validity
using mac_ismsgid, which uses this. */

regex_ismsgid =
  regex_must_compile(US"^(?:[^\\W_]{6}-){2}[^\\W_]{2}$", FALSE, TRUE);

/* Precompile the regular expression that is used for matching an SMTP error
code, possibly extended, at the start of an error message. Note that the
terminating whitespace character is included. */

regex_smtp_code =
  regex_must_compile(US"^\\d\\d\\d\\s(?:\\d\\.\\d\\d?\\d?\\.\\d\\d?\\d?\\s)?",
    FALSE, TRUE);

#ifdef WHITELIST_D_MACROS
/* Precompile the regular expression used to filter the content of macros
given to -D for permissibility. */

regex_whitelisted_macro =
  regex_must_compile(US"^[A-Za-z0-9_/.-]*$", FALSE, TRUE);
#endif

for (i = 0; i < REGEX_VARS; i++) regex_vars[i] = NULL;

/* If the program is called as "mailq" treat it as equivalent to "exim -bp";
this seems to be a generally accepted convention, since one finds symbolic
links called "mailq" in standard OS configurations. */

if ((namelen == 5 && Ustrcmp(argv[0], "mailq") == 0) ||
    (namelen  > 5 && Ustrncmp(argv[0] + namelen - 6, "/mailq", 6) == 0))
  {
  list_queue = TRUE;
  receiving_message = FALSE;
  called_as = US"-mailq";
  }

/* If the program is called as "rmail" treat it as equivalent to
"exim -i -oee", thus allowing UUCP messages to be input using non-SMTP mode,
i.e. preventing a single dot on a line from terminating the message, and
returning with zero return code, even in cases of error (provided an error
message has been sent). */

if ((namelen == 5 && Ustrcmp(argv[0], "rmail") == 0) ||
    (namelen  > 5 && Ustrncmp(argv[0] + namelen - 6, "/rmail", 6) == 0))
  {
  f.dot_ends = FALSE;
  called_as = US"-rmail";
  errors_sender_rc = EXIT_SUCCESS;
  }

/* If the program is called as "rsmtp" treat it as equivalent to "exim -bS";
this is a smail convention. */

if ((namelen == 5 && Ustrcmp(argv[0], "rsmtp") == 0) ||
    (namelen  > 5 && Ustrncmp(argv[0] + namelen - 6, "/rsmtp", 6) == 0))
  {
  smtp_input = smtp_batched_input = TRUE;
  called_as = US"-rsmtp";
  }

/* If the program is called as "runq" treat it as equivalent to "exim -q";
this is a smail convention. */

if ((namelen == 4 && Ustrcmp(argv[0], "runq") == 0) ||
    (namelen  > 4 && Ustrncmp(argv[0] + namelen - 5, "/runq", 5) == 0))
  {
  queue_interval = 0;
  receiving_message = FALSE;
  called_as = US"-runq";
  }

/* If the program is called as "newaliases" treat it as equivalent to
"exim -bi"; this is a sendmail convention. */

if ((namelen == 10 && Ustrcmp(argv[0], "newaliases") == 0) ||
    (namelen  > 10 && Ustrncmp(argv[0] + namelen - 11, "/newaliases", 11) == 0))
  {
  bi_option = TRUE;
  receiving_message = FALSE;
  called_as = US"-newaliases";
  }

/* Save the original effective uid for a couple of uses later. It should
normally be root, but in some esoteric environments it may not be. */

original_euid = geteuid();
original_egid = getegid();

/* Get the real uid and gid. If the caller is root, force the effective uid/gid
to be the same as the real ones. This makes a difference only if Exim is setuid
(or setgid) to something other than root, which could be the case in some
special configurations. */

real_uid = getuid();
real_gid = getgid();

if (real_uid == root_uid)
  {
  if ((rv = setgid(real_gid)))
    exim_fail("exim: setgid(%ld) failed: %s\n",
        (long int)real_gid, strerror(errno));
  if ((rv = setuid(real_uid)))
    exim_fail("exim: setuid(%ld) failed: %s\n",
        (long int)real_uid, strerror(errno));
  }

/* If neither the original real uid nor the original euid was root, Exim is
running in an unprivileged state. */

unprivileged = (real_uid != root_uid && original_euid != root_uid);

/* For most of the args-parsing we need to use permanent pool memory */
 {
 int old_pool = store_pool;
 store_pool = POOL_PERM;

/* Scan the program's arguments. Some can be dealt with right away; others are
simply recorded for checking and handling afterwards. Do a high-level switch
on the second character (the one after '-'), to save some effort. */

 for (i = 1; i < argc; i++)
  {
  BOOL badarg = FALSE;
  uschar * arg = argv[i];
  uschar * argrest;
  int switchchar;

  /* An argument not starting with '-' is the start of a recipients list;
  break out of the options-scanning loop. */

  if (arg[0] != '-')
    {
    recipients_arg = i;
    break;
    }

  /* An option consisting of -- terminates the options */

  if (Ustrcmp(arg, "--") == 0)
    {
    recipients_arg = i + 1;
    break;
    }

  /* Handle flagged options */

  switchchar = arg[1];
  argrest = arg+2;

  /* Make all -ex options synonymous with -oex arguments, since that
  is assumed by various callers. Also make -qR options synonymous with -R
  options, as that seems to be required as well. Allow for -qqR too, and
  the same for -S options. */

  if (Ustrncmp(arg+1, "oe", 2) == 0 ||
      Ustrncmp(arg+1, "qR", 2) == 0 ||
      Ustrncmp(arg+1, "qS", 2) == 0)
    {
    switchchar = arg[2];
    argrest++;
    }
  else if (Ustrncmp(arg+1, "qqR", 3) == 0 || Ustrncmp(arg+1, "qqS", 3) == 0)
    {
    switchchar = arg[3];
    argrest += 2;
    f.queue_2stage = TRUE;
    }

  /* Make -r synonymous with -f, since it is a documented alias */

  else if (arg[1] == 'r') switchchar = 'f';

  /* Make -ov synonymous with -v */

  else if (Ustrcmp(arg, "-ov") == 0)
    {
    switchchar = 'v';
    argrest++;
    }

  /* deal with --option_aliases */
  else if (switchchar == '-')
    {
    if (Ustrcmp(argrest, "help") == 0)
      {
      usage_wanted = TRUE;
      break;
      }
    else if (Ustrcmp(argrest, "version") == 0)
      {
      switchchar = 'b';
      argrest = US"V";
      }
    }

  /* High-level switch on active initial letter */

  switch(switchchar)
    {

    /* sendmail uses -Ac and -Am to control which .cf file is used;
    we ignore them. */
    case 'A':
    if (!*argrest) { badarg = TRUE; break; }
    else
      {
      BOOL ignore = FALSE;
      switch (*argrest)
        {
        case 'c':
        case 'm':
          if (*(argrest + 1) == '\0')
            ignore = TRUE;
          break;
        }
      if (!ignore) badarg = TRUE;
      }
    break;

    /* -Btype is a sendmail option for 7bit/8bit setting. Exim is 8-bit clean
    so has no need of it. */

    case 'B':
    if (!*argrest) i++;       /* Skip over the type */
    break;


    case 'b':
      {
      receiving_message = FALSE;    /* Reset TRUE for -bm, -bS, -bs below */

      switch (*argrest++)
	{
	/* -bd:  Run in daemon mode, awaiting SMTP connections.
	   -bdf: Ditto, but in the foreground.
	*/
	case 'd':
	  f.daemon_listen = TRUE;
	  if (*argrest == 'f') f.background_daemon = FALSE;
	  else if (*argrest) badarg = TRUE;
	  break;

	/* -be:  Run in expansion test mode
	   -bem: Ditto, but read a message from a file first
	*/
	case 'e':
	  expansion_test = checking = TRUE;
	  if (*argrest == 'm')
	    {
	    if (++i >= argc) { badarg = TRUE; break; }
	    expansion_test_message = argv[i];
	    argrest++;
	    }
	  if (*argrest) badarg = TRUE;
	  break;

	/* -bF:  Run system filter test */
	case 'F':
	  filter_test |= checking = FTEST_SYSTEM;
	  if (*argrest) badarg = TRUE;
	  else if (++i < argc) filter_test_sfile = argv[i];
	  else exim_fail("exim: file name expected after %s\n", argv[i-1]);
	  break;

	/* -bf:  Run user filter test
	   -bfd: Set domain for filter testing
	   -bfl: Set local part for filter testing
	   -bfp: Set prefix for filter testing
	   -bfs: Set suffix for filter testing
	*/
	case 'f':
	  if (!*argrest)
	    {
	    filter_test |= checking = FTEST_USER;
	    if (++i < argc) filter_test_ufile = argv[i];
	    else exim_fail("exim: file name expected after %s\n", argv[i-1]);
	    }
	  else
	    {
	    if (++i >= argc)
	      exim_fail("exim: string expected after %s\n", arg);
	    if (Ustrcmp(argrest, "d") == 0) ftest_domain = exim_str_fail_toolong(argv[i], EXIM_DOMAINNAME_MAX, "-bfd");
	    else if (Ustrcmp(argrest, "l") == 0) ftest_localpart = exim_str_fail_toolong(argv[i], EXIM_LOCALPART_MAX, "-bfl");
	    else if (Ustrcmp(argrest, "p") == 0) ftest_prefix = exim_str_fail_toolong(argv[i], EXIM_LOCALPART_MAX, "-bfp");
	    else if (Ustrcmp(argrest, "s") == 0) ftest_suffix = exim_str_fail_toolong(argv[i], EXIM_LOCALPART_MAX, "-bfs");
	    else badarg = TRUE;
	    }
	  break;

	/* -bh: Host checking - an IP address must follow. */
	case 'h':
	  if (!*argrest || Ustrcmp(argrest, "c") == 0)
	    {
	    if (++i >= argc) { badarg = TRUE; break; }
	    sender_host_address = string_copy_taint(
		  exim_str_fail_toolong(argv[i], EXIM_IPADDR_MAX, "-bh"),
		  GET_TAINTED);
	    host_checking = checking = f.log_testing_mode = TRUE;
	    f.host_checking_callout = *argrest == 'c';
	    message_logs = FALSE;
	    }
	  else badarg = TRUE;
	  break;

	/* -bi: This option is used by sendmail to initialize *the* alias file,
	though it has the -oA option to specify a different file. Exim has no
	concept of *the* alias file, but since Sun's YP make script calls
	sendmail this way, some support must be provided. */
	case 'i':
	  if (!*argrest) bi_option = TRUE;
	  else badarg = TRUE;
	  break;

	/* -bI: provide information, of the type to follow after a colon.
	This is an Exim flag. */
	case 'I':
	  if (Ustrlen(argrest) >= 1 && *argrest == ':')
	    {
	    uschar *p = argrest+1;
	    info_flag = CMDINFO_HELP;
	    if (Ustrlen(p))
	      if (strcmpic(p, CUS"sieve") == 0)
		{
		info_flag = CMDINFO_SIEVE;
		info_stdout = TRUE;
		}
	      else if (strcmpic(p, CUS"dscp") == 0)
		{
		info_flag = CMDINFO_DSCP;
		info_stdout = TRUE;
		}
	      else if (strcmpic(p, CUS"help") == 0)
		info_stdout = TRUE;
	    }
	  else badarg = TRUE;
	  break;

	/* -bm: Accept and deliver message - the default option. Reinstate
	receiving_message, which got turned off for all -b options.
	   -bmalware: test the filename given for malware */
	case 'm':
	  if (!*argrest) receiving_message = TRUE;
	  else if (Ustrcmp(argrest, "alware") == 0)
	    {
	    if (++i >= argc) { badarg = TRUE; break; }
	    checking = TRUE;
	    malware_test_file = argv[i];
	    }
	  else badarg = TRUE;
	  break;

	/* -bnq: For locally originating messages, do not qualify unqualified
	addresses. In the envelope, this causes errors; in header lines they
	just get left. */
	case 'n':
	  if (Ustrcmp(argrest, "q") == 0)
	    {
	    f.allow_unqualified_sender = FALSE;
	    f.allow_unqualified_recipient = FALSE;
	    }
	  else badarg = TRUE;
	  break;

	/* -bpxx: List the contents of the mail queue, in various forms. If
	the option is -bpc, just a queue count is needed. Otherwise, if the
	first letter after p is r, then order is random. */
	case 'p':
	  if (*argrest == 'c')
	    {
	    count_queue = TRUE;
	    if (*++argrest) badarg = TRUE;
	    break;
	    }

	  if (*argrest == 'r')
	    {
	    list_queue_option = 8;
	    argrest++;
	    }
	  else list_queue_option = 0;

	  list_queue = TRUE;

	  /* -bp: List the contents of the mail queue, top-level only */

	  if (!*argrest) {}

	  /* -bpu: List the contents of the mail queue, top-level undelivered */

	  else if (Ustrcmp(argrest, "u") == 0) list_queue_option += 1;

	  /* -bpa: List the contents of the mail queue, including all delivered */

	  else if (Ustrcmp(argrest, "a") == 0) list_queue_option += 2;

	  /* Unknown after -bp[r] */

	  else badarg = TRUE;
	  break;


	/* -bP: List the configuration variables given as the address list.
	Force -v, so configuration errors get displayed. */
	case 'P':

	  /* -bP config: we need to setup here, because later,
	  when list_options is checked, the config is read already */
	  if (*argrest)
	    badarg = TRUE;
	  else if (argv[i+1] && Ustrcmp(argv[i+1], "config") == 0)
	    {
	    list_config = TRUE;
	    readconf_save_config(version_string);
	    }
	  else
	    {
	    list_options = TRUE;
	    debug_selector |= D_v;
	    debug_file = stderr;
	    }
	  break;

	/* -brt: Test retry configuration lookup */
	case 'r':
	  if (Ustrcmp(argrest, "t") == 0)
	    {
	    checking = TRUE;
	    test_retry_arg = i + 1;
	    goto END_ARG;
	    }

	  /* -brw: Test rewrite configuration */

	  else if (Ustrcmp(argrest, "w") == 0)
	    {
	    checking = TRUE;
	    test_rewrite_arg = i + 1;
	    goto END_ARG;
	    }
	  else badarg = TRUE;
	  break;

	/* -bS: Read SMTP commands on standard input, but produce no replies -
	all errors are reported by sending messages. */
	case 'S':
	  if (!*argrest)
	    smtp_input = smtp_batched_input = receiving_message = TRUE;
	  else badarg = TRUE;
	  break;

	/* -bs: Read SMTP commands on standard input and produce SMTP replies
	on standard output. */
	case 's':
	  if (!*argrest) smtp_input = receiving_message = TRUE;
	  else badarg = TRUE;
	  break;

	/* -bt: address testing mode */
	case 't':
	  if (!*argrest)
	    f.address_test_mode = checking = f.log_testing_mode = TRUE;
	  else badarg = TRUE;
	  break;

	/* -bv: verify addresses */
	case 'v':
	  if (!*argrest)
	    verify_address_mode = checking = f.log_testing_mode = TRUE;

	/* -bvs: verify sender addresses */

	  else if (Ustrcmp(argrest, "s") == 0)
	    {
	    verify_address_mode = checking = f.log_testing_mode = TRUE;
	    verify_as_sender = TRUE;
	    }
	  else badarg = TRUE;
	  break;

	/* -bV: Print version string and support details */
	case 'V':
	  if (!*argrest)
	    {
	    printf("Exim version %s #%s built %s\n", version_string,
	      version_cnumber, version_date);
	    printf("%s\n", CS version_copyright);
	    version_printed = TRUE;
	    show_whats_supported(TRUE);
	    f.log_testing_mode = TRUE;
	    }
	  else badarg = TRUE;
	  break;

	/* -bw: inetd wait mode, accept a listening socket as stdin */
	case 'w':
	  f.inetd_wait_mode = TRUE;
	  f.background_daemon = FALSE;
	  f.daemon_listen = TRUE;
	  if (*argrest)
	    if ((inetd_wait_timeout = readconf_readtime(argrest, 0, FALSE)) <= 0)
	      exim_fail("exim: bad time value %s: abandoned\n", argv[i]);
	  break;

	default:
	  badarg = TRUE;
	  break;
	}
      break;
      }


    /* -C: change configuration file list; ignore if it isn't really
    a change! Enforce a prefix check if required. */

    case 'C':
    if (!*argrest)
      if (++i < argc) argrest = argv[i]; else { badarg = TRUE; break; }
    if (Ustrcmp(config_main_filelist, argrest) != 0)
      {
      #ifdef ALT_CONFIG_PREFIX
      int sep = 0;
      int len = Ustrlen(ALT_CONFIG_PREFIX);
      const uschar *list = argrest;
      uschar *filename;
      /* The argv is untainted, so big_buffer (also untainted) is ok to use */
      while((filename = string_nextinlist(&list, &sep, big_buffer,
             big_buffer_size)))
        if (  (  Ustrlen(filename) < len
	      || Ustrncmp(filename, ALT_CONFIG_PREFIX, len) != 0
	      || Ustrstr(filename, "/../") != NULL
	      )
	   && (Ustrcmp(filename, "/dev/null") != 0 || real_uid != root_uid)
	   )
          exim_fail("-C Permission denied\n");
      #endif
      if (real_uid != root_uid)
        {
        #ifdef TRUSTED_CONFIG_LIST

        if (real_uid != exim_uid
            #ifdef CONFIGURE_OWNER
            && real_uid != config_uid
            #endif
            )
          f.trusted_config = FALSE;
        else
          {
          FILE *trust_list = Ufopen(TRUSTED_CONFIG_LIST, "rb");
          if (trust_list)
            {
            struct stat statbuf;

            if (fstat(fileno(trust_list), &statbuf) != 0 ||
                (statbuf.st_uid != root_uid        /* owner not root */
                 #ifdef CONFIGURE_OWNER
                 && statbuf.st_uid != config_uid   /* owner not the special one */
                 #endif
                   ) ||                            /* or */
                (statbuf.st_gid != root_gid        /* group not root */
                 #ifdef CONFIGURE_GROUP
                 && statbuf.st_gid != config_gid   /* group not the special one */
                 #endif
                 && (statbuf.st_mode & 020) != 0   /* group writeable */
                   ) ||                            /* or */
                (statbuf.st_mode & 2) != 0)        /* world writeable */
              {
              f.trusted_config = FALSE;
              fclose(trust_list);
              }
	    else
              {
              /* Well, the trust list at least is up to scratch... */
              rmark reset_point;
              uschar *trusted_configs[32];
              int nr_configs = 0;
              int i = 0;
	      int old_pool = store_pool;
	      store_pool = POOL_MAIN;

              reset_point = store_mark();
              while (Ufgets(big_buffer, big_buffer_size, trust_list))
                {
                uschar *start = big_buffer, *nl;
                while (*start && isspace(*start))
                start++;
                if (*start != '/')
                  continue;
                nl = Ustrchr(start, '\n');
                if (nl)
                  *nl = 0;
                trusted_configs[nr_configs++] = string_copy(start);
                if (nr_configs == nelem(trusted_configs))
                  break;
                }
              fclose(trust_list);

              if (nr_configs)
                {
                int sep = 0;
                const uschar *list = argrest;
                uschar *filename;
                while (f.trusted_config && (filename = string_nextinlist(&list,
                        &sep, big_buffer, big_buffer_size)))
                  {
                  for (i=0; i < nr_configs; i++)
                    if (Ustrcmp(filename, trusted_configs[i]) == 0)
                      break;
                  if (i == nr_configs)
                    {
                    f.trusted_config = FALSE;
                    break;
                    }
                  }
                }
              else	/* No valid prefixes found in trust_list file. */
                f.trusted_config = FALSE;
              store_reset(reset_point);
	      store_pool = old_pool;
              }
	    }
          else		/* Could not open trust_list file. */
            f.trusted_config = FALSE;
          }
      #else
        /* Not root; don't trust config */
        f.trusted_config = FALSE;
      #endif
        }

      config_main_filelist = argrest;
      f.config_changed = TRUE;
      }
    break;


    /* -D: set up a macro definition */

    case 'D':
#ifdef DISABLE_D_OPTION
      exim_fail("exim: -D is not available in this Exim binary\n");
#else
      {
      int ptr = 0;
      macro_item *m;
      uschar name[24];
      uschar *s = argrest;

      opt_D_used = TRUE;
      while (isspace(*s)) s++;

      if (*s < 'A' || *s > 'Z')
        exim_fail("exim: macro name set by -D must start with "
          "an upper case letter\n");

      while (isalnum(*s) || *s == '_')
        {
        if (ptr < sizeof(name)-1) name[ptr++] = *s;
        s++;
        }
      name[ptr] = 0;
      if (ptr == 0) { badarg = TRUE; break; }
      while (isspace(*s)) s++;
      if (*s != 0)
        {
        if (*s++ != '=') { badarg = TRUE; break; }
        while (isspace(*s)) s++;
        }

      for (m = macros_user; m; m = m->next)
        if (Ustrcmp(m->name, name) == 0)
          exim_fail("exim: duplicated -D in command line\n");

      m = macro_create(name, s, TRUE);

      if (clmacro_count >= MAX_CLMACROS)
        exim_fail("exim: too many -D options on command line\n");
      clmacros[clmacro_count++] =
	string_sprintf("-D%s=%s", m->name, m->replacement);
      }
    #endif
    break;

    case 'd':

    /* -dropcr: Set this option.  Now a no-op, retained for compatibility only. */

    if (Ustrcmp(argrest, "ropcr") == 0)
      {
      /* drop_cr = TRUE; */
      }

    /* -dp: Set up a debug pretrigger buffer with given size. */

    else if (Ustrcmp(argrest, "p") == 0)
      if (++i >= argc)
	badarg = TRUE;
      else
	debug_pretrigger_setup(argv[i]);

    /* -dt: Set a debug trigger selector */

    else if (Ustrncmp(argrest, "t=", 2) == 0)
      dtrigger_selector = (unsigned int) Ustrtol(argrest + 2, NULL, 0);

    /* -d: Set debug level (see also -v below).
    If -dd is used, debugging subprocesses of the daemon is disabled. */

    else
      {
      /* Use an intermediate variable so that we don't set debugging while
      decoding the debugging bits. */

      unsigned int selector = D_default;
      debug_selector = 0;
      debug_file = NULL;
      if (*argrest == 'd')
        {
        f.debug_daemon = TRUE;
        argrest++;
        }
      if (*argrest)
        decode_bits(&selector, 1, debug_notall, argrest,
          debug_options, debug_options_count, US"debug", 0);
      debug_selector = selector;
      }
    break;


    /* -E: This is a local error message. This option is not intended for
    external use at all, but is not restricted to trusted callers because it
    does no harm (just suppresses certain error messages) and if Exim is run
    not setuid root it won't always be trusted when it generates error
    messages using this option. If there is a message id following -E, point
    message_reference at it, for logging. */

    case 'E':
    f.local_error_message = TRUE;
    if (mac_ismsgid(argrest)) message_reference = argrest;
    break;


    /* -ex: The vacation program calls sendmail with the undocumented "-eq"
    option, so it looks as if historically the -oex options are also callable
    without the leading -o. So we have to accept them. Before the switch,
    anything starting -oe has been converted to -e. Exim does not support all
    of the sendmail error options. */

    case 'e':
    if (Ustrcmp(argrest, "e") == 0)
      {
      arg_error_handling = ERRORS_SENDER;
      errors_sender_rc = EXIT_SUCCESS;
      }
    else if (Ustrcmp(argrest, "m") == 0) arg_error_handling = ERRORS_SENDER;
    else if (Ustrcmp(argrest, "p") == 0) arg_error_handling = ERRORS_STDERR;
    else if (Ustrcmp(argrest, "q") == 0) arg_error_handling = ERRORS_STDERR;
    else if (Ustrcmp(argrest, "w") == 0) arg_error_handling = ERRORS_SENDER;
    else badarg = TRUE;
    break;


    /* -F: Set sender's full name, used instead of the gecos entry from
    the password file. Since users can usually alter their gecos entries,
    there's no security involved in using this instead. The data can follow
    the -F or be in the next argument. */

    case 'F':
    if (!*argrest)
      if (++i < argc) argrest = argv[i]; else { badarg = TRUE; break; }
    originator_name = string_copy_taint(
		  exim_str_fail_toolong(argrest, EXIM_HUMANNAME_MAX, "-F"),
		  GET_TAINTED);
    f.sender_name_forced = TRUE;
    break;


    /* -f: Set sender's address - this value is only actually used if Exim is
    run by a trusted user, or if untrusted_set_sender is set and matches the
    address, except that the null address can always be set by any user. The
    test for this happens later, when the value given here is ignored when not
    permitted. For an untrusted user, the actual sender is still put in Sender:
    if it doesn't match the From: header (unless no_local_from_check is set).
    The data can follow the -f or be in the next argument. The -r switch is an
    obsolete form of -f but since there appear to be programs out there that
    use anything that sendmail has ever supported, better accept it - the
    synonymizing is done before the switch above.

    At this stage, we must allow domain literal addresses, because we don't
    know what the setting of allow_domain_literals is yet. Ditto for trailing
    dots and strip_trailing_dot. */

    case 'f':
      {
      int dummy_start, dummy_end;
      uschar *errmess;
      if (!*argrest)
        if (i+1 < argc) argrest = argv[++i]; else { badarg = TRUE; break; }
      (void) exim_str_fail_toolong(argrest, EXIM_DISPLAYMAIL_MAX, "-f");
      if (!*argrest)
        *(sender_address = store_get(1, GET_UNTAINTED)) = '\0';  /* Ensure writeable memory */
      else
        {
        uschar * temp = argrest + Ustrlen(argrest) - 1;
        while (temp >= argrest && isspace(*temp)) temp--;
        if (temp >= argrest && *temp == '.') f_end_dot = TRUE;
        allow_domain_literals = TRUE;
        strip_trailing_dot = TRUE;
#ifdef SUPPORT_I18N
	allow_utf8_domains = TRUE;
#endif
        if (!(sender_address = parse_extract_address(argrest, &errmess,
		  &dummy_start, &dummy_end, &sender_address_domain, TRUE)))
          exim_fail("exim: bad -f address \"%s\": %s\n", argrest, errmess);

	sender_address = string_copy_taint(sender_address, GET_TAINTED);
#ifdef SUPPORT_I18N
	message_smtputf8 =  string_is_utf8(sender_address);
	allow_utf8_domains = FALSE;
#endif
        allow_domain_literals = FALSE;
        strip_trailing_dot = FALSE;
        }
      f.sender_address_forced = TRUE;
      }
    break;

    /* -G: sendmail invocation to specify that it's a gateway submission and
    sendmail may complain about problems instead of fixing them.
    We make it equivalent to an ACL "control = suppress_local_fixups" and do
    not at this time complain about problems. */

    case 'G':
    flag_G = TRUE;
    break;

    /* -h: Set the hop count for an incoming message. Exim does not currently
    support this; it always computes it by counting the Received: headers.
    To put it in will require a change to the spool header file format. */

    case 'h':
    if (!*argrest)
      if (++i < argc) argrest = argv[i]; else { badarg = TRUE; break; }
    if (!isdigit(*argrest)) badarg = TRUE;
    break;


    /* -i: Set flag so dot doesn't end non-SMTP input (same as -oi, seems
    not to be documented for sendmail but mailx (at least) uses it) */

    case 'i':
    if (!*argrest) f.dot_ends = FALSE; else badarg = TRUE;
    break;


    /* -L: set the identifier used for syslog; equivalent to setting
    syslog_processname in the config file, but needs to be an admin option. */

    case 'L':
    if (!*argrest)
      if (++i < argc) argrest = argv[i]; else { badarg = TRUE; break; }
    if ((sz = Ustrlen(argrest)) > 32)
      exim_fail("exim: the -L syslog name is too long: \"%s\"\n", argrest);
    if (sz < 1)
      exim_fail("exim: the -L syslog name is too short\n");
    cmdline_syslog_name = string_copy_taint(argrest, GET_TAINTED);
    break;

    case 'M':
    receiving_message = FALSE;

    /* -MC:  continue delivery of another message via an existing open
    file descriptor. This option is used for an internal call by the
    smtp transport when there is a pending message waiting to go to an
    address to which it has got a connection. Five subsequent arguments are
    required: transport name, host name, IP address, sequence number, and
    message_id. Transports may decline to create new processes if the sequence
    number gets too big. The channel is stdin. This (-MC) must be the last
    argument. There's a subsequent check that the real-uid is privileged.

    If we are running in the test harness. delay for a bit, to let the process
    that set this one up complete. This makes for repeatability of the logging,
    etc. output. */

    if (Ustrcmp(argrest, "C") == 0)
      {
      union sockaddr_46 interface_sock;
      EXIM_SOCKLEN_T size = sizeof(interface_sock);

      if (argc != i + 6)
        exim_fail("exim: too many or too few arguments after -MC\n");

      if (msg_action_arg >= 0)
        exim_fail("exim: incompatible arguments\n");

      continue_transport = string_copy_taint(
	exim_str_fail_toolong(argv[++i], EXIM_DRIVERNAME_MAX, "-C internal transport"),
	GET_TAINTED);
      continue_hostname = string_copy_taint(
	exim_str_fail_toolong(argv[++i], EXIM_HOSTNAME_MAX, "-C internal hostname"),
	GET_TAINTED);
      continue_host_address = string_copy_taint(
	exim_str_fail_toolong(argv[++i], EXIM_IPADDR_MAX, "-C internal hostaddr"),
	GET_TAINTED);
      continue_sequence = Uatoi(argv[++i]);
      msg_action = MSG_DELIVER;
      msg_action_arg = ++i;
      forced_delivery = TRUE;
      queue_run_pid = passed_qr_pid;
      queue_run_pipe = passed_qr_pipe;

      if (!mac_ismsgid(argv[i]))
        exim_fail("exim: malformed message id %s after -MC option\n",
          argv[i]);

      /* Set up $sending_ip_address and $sending_port, unless proxied */

      if (!continue_proxy_cipher)
	if (getsockname(fileno(stdin), (struct sockaddr *)(&interface_sock),
	    &size) == 0)
	  sending_ip_address = host_ntoa(-1, &interface_sock, NULL,
	    &sending_port);
	else
	  exim_fail("exim: getsockname() failed after -MC option: %s\n",
	    strerror(errno));

      testharness_pause_ms(500);
      break;
      }

    else if (*argrest == 'C' && argrest[1] && !argrest[2])
      {
      switch(argrest[1])
	{
    /* -MCA: set the smtp_authenticated flag; this is useful only when it
    precedes -MC (see above). The flag indicates that the host to which
    Exim is connected has accepted an AUTH sequence. */

	case 'A': f.smtp_authenticated = TRUE; break;

    /* -MCD: set the smtp_use_dsn flag; this indicates that the host
       that exim is connected to supports the esmtp extension DSN */

	case 'D': smtp_peer_options |= OPTION_DSN; break;

    /* -MCd: for debug, set a process-purpose string */

	case 'd': if (++i < argc)
		    process_purpose = string_copy_taint(
		      exim_str_fail_toolong(argv[i], EXIM_DRIVERNAME_MAX, "-MCd"),
		      GET_TAINTED);
		  else badarg = TRUE;
		  break;

    /* -MCG: set the queue name, to a non-default value. Arguably, anything
       from the commandline should be tainted - but we will need an untainted
       value for the spoolfile when doing a -odi delivery process. */

	case 'G': if (++i < argc) queue_name = string_copy_taint(
		      exim_str_fail_toolong(argv[i], EXIM_DRIVERNAME_MAX, "-MCG"),
		      GET_UNTAINTED);
		  else badarg = TRUE;
		  break;

    /* -MCK: the peer offered CHUNKING.  Must precede -MC */

	case 'K': smtp_peer_options |= OPTION_CHUNKING; break;

#ifdef EXPERIMENTAL_ESMTP_LIMITS
    /* -MCL: peer used LIMITS RCPTMAX and/or RCPTDOMAINMAX */
	case 'L': if (++i < argc) continue_limit_mail = Uatoi(argv[i]);
		  else badarg = TRUE;
		  if (++i < argc) continue_limit_rcpt = Uatoi(argv[i]);
		  else badarg = TRUE;
		  if (++i < argc) continue_limit_rcptdom = Uatoi(argv[i]);
		  else badarg = TRUE;
		  break;
#endif

    /* -MCP: set the smtp_use_pipelining flag; this is useful only when
    it preceded -MC (see above) */

	case 'P': smtp_peer_options |= OPTION_PIPE; break;

#ifdef SUPPORT_SOCKS
    /* -MCp: Socks proxy in use; nearside IP, port, external IP, port */
	case 'p': proxy_session = TRUE;
		  if (++i < argc)
		    {
		    proxy_local_address = string_copy_taint(argv[i], GET_TAINTED);
		    if (++i < argc)
		      {
		      proxy_local_port = Uatoi(argv[i]);
		      if (++i < argc)
			{
			proxy_external_address = string_copy_taint(argv[i], GET_TAINTED);
			if (++i < argc)
			  {
			  proxy_external_port = Uatoi(argv[i]);
			  break;
		    } } } }
		  badarg = TRUE;
		  break;
#endif
    /* -MCQ: pass on the pid of the queue-running process that started
    this chain of deliveries and the fd of its synchronizing pipe; this
    is useful only when it precedes -MC (see above) */

	case 'Q': if (++i < argc) passed_qr_pid = (pid_t)(Uatol(argv[i]));
		  else badarg = TRUE;
		  if (++i < argc) passed_qr_pipe = (int)(Uatol(argv[i]));
		  else badarg = TRUE;
		  break;

    /* -MCq: do a quota check on the given recipient for the given size
    of message.  Separate from -MC. */
	case 'q': rcpt_verify_quota = TRUE;
		  if (++i < argc) message_size = Uatoi(argv[i]);
		  else badarg = TRUE;
		  break;

    /* -MCS: set the smtp_use_size flag; this is useful only when it
    precedes -MC (see above) */

	case 'S': smtp_peer_options |= OPTION_SIZE; break;

#ifndef DISABLE_TLS
    /* -MCs: used with -MCt; SNI was sent */
    /* -MCr: ditto, DANE */

	case 'r':
	case 's': if (++i < argc)
		    {
		    continue_proxy_sni = string_copy_taint(
		      exim_str_fail_toolong(argv[i], EXIM_HOSTNAME_MAX, "-MCr/-MCs"),
		      GET_TAINTED);
		    if (argrest[1] == 'r') continue_proxy_dane = TRUE;
		    }
		  else badarg = TRUE;
		  break;

    /* -MCt: similar to -MCT below but the connection is still open
    via a proxy process which handles the TLS context and coding.
    Require three arguments for the proxied local address and port,
    and the TLS cipher. */

	case 't': if (++i < argc)
		    sending_ip_address = string_copy_taint(
		      exim_str_fail_toolong(argv[i], EXIM_IPADDR_MAX, "-MCt IP"),
		      GET_TAINTED);
		  else badarg = TRUE;
		  if (++i < argc)
		    sending_port = (int)(Uatol(argv[i]));
		  else badarg = TRUE;
		  if (++i < argc)
		    continue_proxy_cipher = string_copy_taint(
		      exim_str_fail_toolong(argv[i], EXIM_CIPHERNAME_MAX, "-MCt cipher"),
		      GET_TAINTED);
		  else badarg = TRUE;
		  /*FALLTHROUGH*/

    /* -MCT: set the tls_offered flag; this is useful only when it
    precedes -MC (see above). The flag indicates that the host to which
    Exim is connected has offered TLS support. */

	case 'T': smtp_peer_options |= OPTION_TLS; break;
#endif

	default:  badarg = TRUE; break;
	}
      break;
      }

    /* -M[x]: various operations on the following list of message ids:
       -M    deliver the messages, ignoring next retry times and thawing
       -Mc   deliver the messages, checking next retry times, no thawing
       -Mf   freeze the messages
       -Mg   give up on the messages
       -Mt   thaw the messages
       -Mrm  remove the messages
    In the above cases, this must be the last option. There are also the
    following options which are followed by a single message id, and which
    act on that message. Some of them use the "recipient" addresses as well.
       -Mar  add recipient(s)
       -MG   move to a different queue
       -Mmad mark all recipients delivered
       -Mmd  mark recipients(s) delivered
       -Mes  edit sender
       -Mset load a message for use with -be
       -Mvb  show body
       -Mvc  show copy (of whole message, in RFC 2822 format)
       -Mvh  show header
       -Mvl  show log
    */

    else if (!*argrest)
      {
      msg_action = MSG_DELIVER;
      forced_delivery = f.deliver_force_thaw = TRUE;
      }
    else if (Ustrcmp(argrest, "ar") == 0)
      {
      msg_action = MSG_ADD_RECIPIENT;
      one_msg_action = TRUE;
      }
    else if (Ustrcmp(argrest, "c") == 0)  msg_action = MSG_DELIVER;
    else if (Ustrcmp(argrest, "es") == 0)
      {
      msg_action = MSG_EDIT_SENDER;
      one_msg_action = TRUE;
      }
    else if (Ustrcmp(argrest, "f") == 0)  msg_action = MSG_FREEZE;
    else if (Ustrcmp(argrest, "g") == 0)
      {
      msg_action = MSG_DELIVER;
      deliver_give_up = TRUE;
      }
   else if (Ustrcmp(argrest, "G") == 0)
      {
      msg_action = MSG_SETQUEUE;
      queue_name_dest = string_copy_taint(
	exim_str_fail_toolong(argv[++i], EXIM_DRIVERNAME_MAX, "-MG"),
	GET_TAINTED);
      }
    else if (Ustrcmp(argrest, "mad") == 0) msg_action = MSG_MARK_ALL_DELIVERED;
    else if (Ustrcmp(argrest, "md") == 0)
      {
      msg_action = MSG_MARK_DELIVERED;
      one_msg_action = TRUE;
      }
    else if (Ustrcmp(argrest, "rm") == 0) msg_action = MSG_REMOVE;
    else if (Ustrcmp(argrest, "set") == 0)
      {
      msg_action = MSG_LOAD;
      one_msg_action = TRUE;
      }
    else if (Ustrcmp(argrest, "t") == 0)  msg_action = MSG_THAW;
    else if (Ustrcmp(argrest, "vb") == 0)
      {
      msg_action = MSG_SHOW_BODY;
      one_msg_action = TRUE;
      }
    else if (Ustrcmp(argrest, "vc") == 0)
      {
      msg_action = MSG_SHOW_COPY;
      one_msg_action = TRUE;
      }
    else if (Ustrcmp(argrest, "vh") == 0)
      {
      msg_action = MSG_SHOW_HEADER;
      one_msg_action = TRUE;
      }
    else if (Ustrcmp(argrest, "vl") == 0)
      {
      msg_action = MSG_SHOW_LOG;
      one_msg_action = TRUE;
      }
    else { badarg = TRUE; break; }

    /* All the -Mxx options require at least one message id. */

    msg_action_arg = i + 1;
    if (msg_action_arg >= argc)
      exim_fail("exim: no message ids given after %s option\n", arg);

    /* Some require only message ids to follow */

    if (!one_msg_action)
      {
      for (int j = msg_action_arg; j < argc; j++) if (!mac_ismsgid(argv[j]))
        exim_fail("exim: malformed message id %s after %s option\n",
          argv[j], arg);
      goto END_ARG;   /* Remaining args are ids */
      }

    /* Others require only one message id, possibly followed by addresses,
    which will be handled as normal arguments. */

    else
      {
      if (!mac_ismsgid(argv[msg_action_arg]))
        exim_fail("exim: malformed message id %s after %s option\n",
          argv[msg_action_arg], arg);
      i++;
      }
    break;


    /* Some programs seem to call the -om option without the leading o;
    for sendmail it askes for "me too". Exim always does this. */

    case 'm':
    if (*argrest) badarg = TRUE;
    break;


    /* -N: don't do delivery - a debugging option that stops transports doing
    their thing. It implies debugging at the D_v level. */

    case 'N':
    if (!*argrest)
      {
      f.dont_deliver = TRUE;
      debug_selector |= D_v;
      debug_file = stderr;
      }
    else badarg = TRUE;
    break;


    /* -n: This means "don't alias" in sendmail, apparently.
    For normal invocations, it has no effect.
    It may affect some other options. */

    case 'n':
    flag_n = TRUE;
    break;

    /* -O: Just ignore it. In sendmail, apparently -O option=value means set
    option to the specified value. This form uses long names. We need to handle
    -O option=value and -Ooption=value. */

    case 'O':
    if (!*argrest)
      if (++i >= argc)
        exim_fail("exim: string expected after -O\n");
    break;

    case 'o':
    switch (*argrest++)
      {
      /* -oA: Set an argument for the bi command (sendmail's "alternate alias
      file" option). */
      case 'A':
	if (!*(alias_arg = argrest))
	  if (i+1 < argc) alias_arg = argv[++i];
	  else exim_fail("exim: string expected after -oA\n");
	break;

      /* -oB: Set a connection message max value for remote deliveries */
      case 'B':
	{
	uschar * p = argrest;
	if (!*p)
	  if (i+1 < argc && isdigit((argv[i+1][0])))
	    p = argv[++i];
	  else
	    {
	    connection_max_messages = 1;
	    p = NULL;
	    }

	if (p)
	  {
	  if (!isdigit(*p))
	    exim_fail("exim: number expected after -oB\n");
	  connection_max_messages = Uatoi(p);
	  }
	}
	break;

      /* -odb: background delivery */

      case 'd':
	if (Ustrcmp(argrest, "b") == 0)
	  {
	  f.synchronous_delivery = FALSE;
	  arg_queue_only = FALSE;
	  queue_only_set = TRUE;
	  }

      /* -odd: testsuite-only: add no inter-process delays */

	else if (Ustrcmp(argrest, "d") == 0)
	  f.testsuite_delays = FALSE;

      /* -odf: foreground delivery (smail-compatible option); same effect as
	 -odi: interactive (synchronous) delivery (sendmail-compatible option)
      */

	else if (Ustrcmp(argrest, "f") == 0 || Ustrcmp(argrest, "i") == 0)
	  {
	  f.synchronous_delivery = TRUE;
	  arg_queue_only = FALSE;
	  queue_only_set = TRUE;
	  }

      /* -odq: queue only */

	else if (Ustrcmp(argrest, "q") == 0)
	  {
	  f.synchronous_delivery = FALSE;
	  arg_queue_only = TRUE;
	  queue_only_set = TRUE;
	  }

      /* -odqs: queue SMTP only - do local deliveries and remote routing,
      but no remote delivery */

	else if (Ustrcmp(argrest, "qs") == 0)
	  {
	  f.queue_smtp = TRUE;
	  arg_queue_only = FALSE;
	  queue_only_set = TRUE;
	  }
	else badarg = TRUE;
	break;

      /* -oex: Sendmail error flags. As these are also accepted without the
      leading -o prefix, for compatibility with vacation and other callers,
      they are handled with -e above. */

      /* -oi:     Set flag so dot doesn't end non-SMTP input (same as -i)
	 -oitrue: Another sendmail syntax for the same */

      case 'i':
	if (!*argrest || Ustrcmp(argrest, "true") == 0)
	  f.dot_ends = FALSE;
	else badarg = TRUE;
	break;

    /* -oM*: Set various characteristics for an incoming message; actually
    acted on for trusted callers only. */

      case 'M':
	{
	if (i+1 >= argc)
	  exim_fail("exim: data expected after -oM%s\n", argrest);

	/* -oMa: Set sender host address */

	if (Ustrcmp(argrest, "a") == 0)
	  sender_host_address = string_copy_taint(
	    exim_str_fail_toolong(argv[++i], EXIM_IPADDR_MAX, "-oMa"),
	    GET_TAINTED);

	/* -oMaa: Set authenticator name */

	else if (Ustrcmp(argrest, "aa") == 0)
	  sender_host_authenticated = string_copy_taint(
	    exim_str_fail_toolong(argv[++i], EXIM_DRIVERNAME_MAX, "-oMaa"),
	    GET_TAINTED);

	/* -oMas: setting authenticated sender */

	else if (Ustrcmp(argrest, "as") == 0)
	  authenticated_sender = string_copy_taint(
	    exim_str_fail_toolong(argv[++i], EXIM_EMAILADDR_MAX, "-oMas"),
	    GET_TAINTED);

	/* -oMai: setting authenticated id */

	else if (Ustrcmp(argrest, "ai") == 0)
	  authenticated_id = string_copy_taint(
	    exim_str_fail_toolong(argv[++i], EXIM_EMAILADDR_MAX, "-oMas"),
	    GET_TAINTED);

	/* -oMi: Set incoming interface address */

	else if (Ustrcmp(argrest, "i") == 0)
	  interface_address = string_copy_taint(
	    exim_str_fail_toolong(argv[++i], EXIM_IPADDR_MAX, "-oMi"),
	    GET_TAINTED);

	/* -oMm: Message reference */

	else if (Ustrcmp(argrest, "m") == 0)
	  {
	  if (!mac_ismsgid(argv[i+1]))
	      exim_fail("-oMm must be a valid message ID\n");
	  if (!f.trusted_config)
	      exim_fail("-oMm must be called by a trusted user/config\n");
	    message_reference = argv[++i];
	  }

	/* -oMr: Received protocol */

	else if (Ustrcmp(argrest, "r") == 0)

	  if (received_protocol)
	    exim_fail("received_protocol is set already\n");
	  else
	    received_protocol = string_copy_taint(
	      exim_str_fail_toolong(argv[++i], EXIM_DRIVERNAME_MAX, "-oMr"),
	      GET_TAINTED);

	/* -oMs: Set sender host name */

	else if (Ustrcmp(argrest, "s") == 0)
	  sender_host_name = string_copy_taint(
	    exim_str_fail_toolong(argv[++i], EXIM_HOSTNAME_MAX, "-oMs"),
	    GET_TAINTED);

	/* -oMt: Set sender ident */

	else if (Ustrcmp(argrest, "t") == 0)
	  {
	  sender_ident_set = TRUE;
	  sender_ident = string_copy_taint(
	    exim_str_fail_toolong(argv[++i], EXIM_IDENTUSER_MAX, "-oMt"),
	    GET_TAINTED);
	  }

	/* Else a bad argument */

	else
	  badarg = TRUE;
	}
	break;

      /* -om: Me-too flag for aliases. Exim always does this. Some programs
      seem to call this as -m (undocumented), so that is also accepted (see
      above). */
      /* -oo: An ancient flag for old-style addresses which still seems to
      crop up in some calls (see in SCO). */

      case 'm':
      case 'o':
	if (*argrest) badarg = TRUE;
	break;

      /* -oP <name>: set pid file path for daemon
	 -oPX:       delete pid file of daemon */

      case 'P':
	if (!f.running_in_test_harness && real_uid != root_uid && real_uid != exim_uid)
	  exim_fail("exim: only uid=%d or uid=%d can use -oP and -oPX "
                    "(uid=%d euid=%d | %d)\n",
                    root_uid, exim_uid, getuid(), geteuid(), real_uid);
	if (!*argrest) override_pid_file_path = argv[++i];
	else if (Ustrcmp(argrest, "X") == 0) delete_pid_file();
	else badarg = TRUE;
	break;


      /* -or <n>: set timeout for non-SMTP acceptance
	 -os <n>: set timeout for SMTP acceptance */

      case 'r':
      case 's':
	{
	int * tp = argrest[-1] == 'r'
	  ? &arg_receive_timeout : &arg_smtp_receive_timeout;
	if (*argrest)
	  *tp = readconf_readtime(argrest, 0, FALSE);
	else if (i+1 < argc)
	  *tp = readconf_readtime(argv[++i], 0, FALSE);

	if (*tp < 0)
	  exim_fail("exim: bad time value %s: abandoned\n", argv[i]);
	}
	break;

      /* -oX <list>: Override local_interfaces and/or default daemon ports */
      /* Limits: Is there a real limit we want here?  1024 is very arbitrary. */

      case 'X':
	if (*argrest) badarg = TRUE;
	else override_local_interfaces = string_copy_taint(
	  exim_str_fail_toolong(argv[++i], 1024, "-oX"),
	  GET_TAINTED);
	break;

      /* -oY: Override creation of daemon notifier socket */

      case 'Y':
	if (*argrest) badarg = TRUE;
	else notifier_socket = NULL;
	break;

      /* Unknown -o argument */

      default:
	badarg = TRUE;
      }
    break;


    /* -ps: force Perl startup; -pd force delayed Perl startup */

    case 'p':
    #ifdef EXIM_PERL
    if (*argrest == 's' && argrest[1] == 0)
      {
      perl_start_option = 1;
      break;
      }
    if (*argrest == 'd' && argrest[1] == 0)
      {
      perl_start_option = -1;
      break;
      }
    #endif

    /* -panythingelse is taken as the Sendmail-compatible argument -prval:sval,
    which sets the host protocol and host name */

    if (!*argrest)
      if (i+1 < argc) argrest = argv[++i]; else { badarg = TRUE; break; }

    if (*argrest)
      {
      uschar * hn = Ustrchr(argrest, ':');

      if (received_protocol)
        exim_fail("received_protocol is set already\n");

      if (!hn)
        received_protocol = string_copy_taint(
	  exim_str_fail_toolong(argrest, EXIM_DRIVERNAME_MAX, "-p<protocol>"),
	  GET_TAINTED);
      else
        {
        (void) exim_str_fail_toolong(argrest, (EXIM_DRIVERNAME_MAX+1+EXIM_HOSTNAME_MAX), "-p<protocol>:<host>");
        received_protocol = string_copyn_taint(argrest, hn - argrest, GET_TAINTED);
        sender_host_name = string_copy_taint(hn + 1, GET_TAINTED);
        }
      }
    break;


    case 'q':
    receiving_message = FALSE;
    if (queue_interval >= 0)
      exim_fail("exim: -q specified more than once\n");

    /* -qq...: Do queue runs in a 2-stage manner */

    if (*argrest == 'q')
      {
      f.queue_2stage = TRUE;
      argrest++;
      }

    /* -qi...: Do only first (initial) deliveries */

    if (*argrest == 'i')
      {
      f.queue_run_first_delivery = TRUE;
      argrest++;
      }

    /* -qf...: Run the queue, forcing deliveries
       -qff..: Ditto, forcing thawing as well */

    if (*argrest == 'f')
      {
      f.queue_run_force = TRUE;
      if (*++argrest == 'f')
        {
        f.deliver_force_thaw = TRUE;
        argrest++;
        }
      }

    /* -q[f][f]l...: Run the queue only on local deliveries */

    if (*argrest == 'l')
      {
      f.queue_run_local = TRUE;
      argrest++;
      }

    /* -q[f][f][l][G<name>]... Work on the named queue */

    if (*argrest == 'G')
      {
      int i;
      for (argrest++, i = 0; argrest[i] && argrest[i] != '/'; ) i++;
      exim_len_fail_toolong(i, EXIM_DRIVERNAME_MAX, "-q*G<name>");
      queue_name = string_copyn(argrest, i);
      argrest += i;
      if (*argrest == '/') argrest++;
      }

    /* -q[f][f][l][G<name>]: Run the queue, optionally forced, optionally local
    only, optionally named, optionally starting from a given message id. */

    if (!(list_queue || count_queue))
      if (  !*argrest
	 && (i + 1 >= argc || argv[i+1][0] == '-' || mac_ismsgid(argv[i+1])))
	{
	queue_interval = 0;
	if (i+1 < argc && mac_ismsgid(argv[i+1]))
	  start_queue_run_id = string_copy_taint(argv[++i], GET_TAINTED);
	if (i+1 < argc && mac_ismsgid(argv[i+1]))
	  stop_queue_run_id = string_copy_taint(argv[++i], GET_TAINTED);
	}

    /* -q[f][f][l][G<name>/]<n>: Run the queue at regular intervals, optionally
    forced, optionally local only, optionally named. */

      else if ((queue_interval = readconf_readtime(*argrest ? argrest : argv[++i],
						  0, FALSE)) <= 0)
	exim_fail("exim: bad time value %s: abandoned\n", argv[i]);
    break;


    case 'R':   /* Synonymous with -qR... */
      {
      const uschar *tainted_selectstr;

      receiving_message = FALSE;

    /* -Rf:   As -R (below) but force all deliveries,
       -Rff:  Ditto, but also thaw all frozen messages,
       -Rr:   String is regex
       -Rrf:  Regex and force
       -Rrff: Regex and force and thaw

    in all cases provided there are no further characters in this
    argument. */

      if (*argrest)
	for (int i = 0; i < nelem(rsopts); i++)
	  if (Ustrcmp(argrest, rsopts[i]) == 0)
	    {
	    if (i != 2) f.queue_run_force = TRUE;
	    if (i >= 2) f.deliver_selectstring_regex = TRUE;
	    if (i == 1 || i == 4) f.deliver_force_thaw = TRUE;
	    argrest += Ustrlen(rsopts[i]);
	    }

    /* -R: Set string to match in addresses for forced queue run to
    pick out particular messages. */

      /* Avoid attacks from people providing very long strings, and do so before
      we make copies. */
      if (*argrest)
	tainted_selectstr = argrest;
      else if (i+1 < argc)
	tainted_selectstr = argv[++i];
      else
	exim_fail("exim: string expected after -R\n");
      deliver_selectstring = string_copy_taint(
	exim_str_fail_toolong(tainted_selectstr, EXIM_EMAILADDR_MAX, "-R"),
	GET_TAINTED);
      }
    break;

    /* -r: an obsolete synonym for -f (see above) */


    /* -S: Like -R but works on sender. */

    case 'S':   /* Synonymous with -qS... */
      {
      const uschar *tainted_selectstr;

      receiving_message = FALSE;

    /* -Sf:   As -S (below) but force all deliveries,
       -Sff:  Ditto, but also thaw all frozen messages,
       -Sr:   String is regex
       -Srf:  Regex and force
       -Srff: Regex and force and thaw

    in all cases provided there are no further characters in this
    argument. */

      if (*argrest)
	for (int i = 0; i < nelem(rsopts); i++)
	  if (Ustrcmp(argrest, rsopts[i]) == 0)
	    {
	    if (i != 2) f.queue_run_force = TRUE;
	    if (i >= 2) f.deliver_selectstring_sender_regex = TRUE;
	    if (i == 1 || i == 4) f.deliver_force_thaw = TRUE;
	    argrest += Ustrlen(rsopts[i]);
	    }

    /* -S: Set string to match in addresses for forced queue run to
    pick out particular messages. */

      if (*argrest)
	tainted_selectstr = argrest;
      else if (i+1 < argc)
	tainted_selectstr = argv[++i];
      else
	exim_fail("exim: string expected after -S\n");
      deliver_selectstring_sender = string_copy_taint(
	exim_str_fail_toolong(tainted_selectstr, EXIM_EMAILADDR_MAX, "-S"),
	GET_TAINTED);
      }
    break;

    /* -Tqt is an option that is exclusively for use by the testing suite.
    It is not recognized in other circumstances. It allows for the setting up
    of explicit "queue times" so that various warning/retry things can be
    tested. Otherwise variability of clock ticks etc. cause problems. */

    case 'T':
    if (f.running_in_test_harness && Ustrcmp(argrest, "qt") == 0)
      fudged_queue_times = string_copy_taint(argv[++i], GET_TAINTED);
    else badarg = TRUE;
    break;


    /* -t: Set flag to extract recipients from body of message. */

    case 't':
    if (!*argrest) extract_recipients = TRUE;

    /* -ti: Set flag to extract recipients from body of message, and also
    specify that dot does not end the message. */

    else if (Ustrcmp(argrest, "i") == 0)
      {
      extract_recipients = TRUE;
      f.dot_ends = FALSE;
      }

    /* -tls-on-connect: don't wait for STARTTLS (for old clients) */

    #ifndef DISABLE_TLS
    else if (Ustrcmp(argrest, "ls-on-connect") == 0) tls_in.on_connect = TRUE;
    #endif

    else badarg = TRUE;
    break;


    /* -U: This means "initial user submission" in sendmail, apparently. The
    doc claims that in future sendmail may refuse syntactically invalid
    messages instead of fixing them. For the moment, we just ignore it. */

    case 'U':
    break;


    /* -v: verify things - this is a very low-level debugging */

    case 'v':
    if (!*argrest)
      {
      debug_selector |= D_v;
      debug_file = stderr;
      }
    else badarg = TRUE;
    break;


    /* -x: AIX uses this to indicate some fancy 8-bit character stuff:

      The -x flag tells the sendmail command that mail from a local
      mail program has National Language Support (NLS) extended characters
      in the body of the mail item. The sendmail command can send mail with
      extended NLS characters across networks that normally corrupts these
      8-bit characters.

    As Exim is 8-bit clean, it just ignores this flag. */

    case 'x':
    if (*argrest) badarg = TRUE;
    break;

    /* -X: in sendmail: takes one parameter, logfile, and sends debugging
    logs to that file.  We swallow the parameter and otherwise ignore it. */

    case 'X':
    if (!*argrest)
      if (++i >= argc)
        exim_fail("exim: string expected after -X\n");
    break;

    /* -z: a line of text to log */

    case 'z':
    if (!*argrest)
      if (++i < argc)
	log_oneline = string_copy_taint(
	  exim_str_fail_toolong(argv[i], 2048, "-z logtext"),
	  GET_TAINTED);
      else
        exim_fail("exim: file name expected after %s\n", argv[i-1]);
    break;

    /* All other initial characters are errors */

    default:
    badarg = TRUE;
    break;
    }         /* End of high-level switch statement */

  /* Failed to recognize the option, or syntax error */

  if (badarg)
    exim_fail("exim abandoned: unknown, malformed, or incomplete "
      "option %s\n", arg);
  }


/* If -R or -S have been specified without -q, assume a single queue run. */

 if (  (deliver_selectstring || deliver_selectstring_sender)
    && queue_interval < 0)
  queue_interval = 0;


END_ARG:
 store_pool = old_pool;
 }

/* If usage_wanted is set we call the usage function - which never returns */
if (usage_wanted) exim_usage(called_as);

/* Arguments have been processed. Check for incompatibilities. */
if (  (  (smtp_input || extract_recipients || recipients_arg < argc)
      && (  f.daemon_listen || queue_interval >= 0 || bi_option
	 || test_retry_arg >= 0 || test_rewrite_arg >= 0
	 || filter_test != FTEST_NONE
	 || msg_action_arg > 0 && !one_msg_action
      )  )
   || (  msg_action_arg > 0
      && (  f.daemon_listen || queue_interval > 0 || list_options
	 || checking && msg_action != MSG_LOAD
	 || bi_option || test_retry_arg >= 0 || test_rewrite_arg >= 0
      )  )
   || (  (f.daemon_listen || queue_interval > 0)
      && (  sender_address || list_options || list_queue || checking
	 || bi_option
      )  )
   || f.daemon_listen && queue_interval == 0
   || f.inetd_wait_mode && queue_interval >= 0
   || (  list_options
      && (  checking || smtp_input || extract_recipients
	 || filter_test != FTEST_NONE || bi_option
      )  )
   || (  verify_address_mode
      && (  f.address_test_mode || smtp_input || extract_recipients
	 || filter_test != FTEST_NONE || bi_option
      )  )
   || (  f.address_test_mode
      && (  smtp_input || extract_recipients || filter_test != FTEST_NONE
	 || bi_option
      )  )
   || (  smtp_input
      && (sender_address || filter_test != FTEST_NONE || extract_recipients)
      )
   || deliver_selectstring && queue_interval < 0
   || msg_action == MSG_LOAD && (!expansion_test || expansion_test_message)
   )
  exim_fail("exim: incompatible command-line options or arguments\n");

/* If debugging is set up, set the file and the file descriptor to pass on to
child processes. It should, of course, be 2 for stderr. Also, force the daemon
to run in the foreground. */

if (debug_selector != 0)
  {
  debug_file = stderr;
  debug_fd = fileno(debug_file);
  f.background_daemon = FALSE;
  testharness_pause_ms(100);   /* lets caller finish */
  if (debug_selector != D_v)    /* -v only doesn't show this */
    {
    debug_printf("Exim version %s uid=%ld gid=%ld pid=%d D=%x\n",
      version_string, (long int)real_uid, (long int)real_gid, (int)getpid(),
      debug_selector);
    if (!version_printed)
      show_whats_supported(FALSE);
    }
  }

/* When started with root privilege, ensure that the limits on the number of
open files and the number of processes (where that is accessible) are
sufficiently large, or are unset, in case Exim has been called from an
environment where the limits are screwed down. Not all OS have the ability to
change some of these limits. */

if (unprivileged)
  {
  DEBUG(D_any) debug_print_ids(US"Exim has no root privilege:");
  }
else
  {
  struct rlimit rlp;

#ifdef RLIMIT_NOFILE
  if (getrlimit(RLIMIT_NOFILE, &rlp) < 0)
    {
    log_write(0, LOG_MAIN|LOG_PANIC, "getrlimit(RLIMIT_NOFILE) failed: %s",
      strerror(errno));
    rlp.rlim_cur = rlp.rlim_max = 0;
    }

  /* I originally chose 1000 as a nice big number that was unlikely to
  be exceeded. It turns out that some older OS have a fixed upper limit of
  256. */

  if (rlp.rlim_cur < 1000)
    {
    rlp.rlim_cur = rlp.rlim_max = 1000;
    if (setrlimit(RLIMIT_NOFILE, &rlp) < 0)
      {
      rlp.rlim_cur = rlp.rlim_max = 256;
      if (setrlimit(RLIMIT_NOFILE, &rlp) < 0)
        log_write(0, LOG_MAIN|LOG_PANIC, "setrlimit(RLIMIT_NOFILE) failed: %s",
          strerror(errno));
      }
    }
#endif

#ifdef RLIMIT_NPROC
  if (getrlimit(RLIMIT_NPROC, &rlp) < 0)
    {
    log_write(0, LOG_MAIN|LOG_PANIC, "getrlimit(RLIMIT_NPROC) failed: %s",
      strerror(errno));
    rlp.rlim_cur = rlp.rlim_max = 0;
    }

# ifdef RLIM_INFINITY
  if (rlp.rlim_cur != RLIM_INFINITY && rlp.rlim_cur < 1000)
    {
    rlp.rlim_cur = rlp.rlim_max = RLIM_INFINITY;
# else
  if (rlp.rlim_cur < 1000)
    {
    rlp.rlim_cur = rlp.rlim_max = 1000;
# endif
    if (setrlimit(RLIMIT_NPROC, &rlp) < 0)
      log_write(0, LOG_MAIN|LOG_PANIC, "setrlimit(RLIMIT_NPROC) failed: %s",
        strerror(errno));
    }
#endif
  }

/* Exim is normally entered as root (but some special configurations are
possible that don't do this). However, it always spins off sub-processes that
set their uid and gid as required for local delivery. We don't want to pass on
any extra groups that root may belong to, so we want to get rid of them all at
this point.

We need to obey setgroups() at this stage, before possibly giving up root
privilege for a changed configuration file, but later on we might need to
check on the additional groups for the admin user privilege - can't do that
till after reading the config, which might specify the exim gid. Therefore,
save the group list here first. */

if ((group_count = getgroups(nelem(group_list), group_list)) < 0)
  exim_fail("exim: getgroups() failed: %s\n", strerror(errno));

/* There is a fundamental difference in some BSD systems in the matter of
groups. FreeBSD and BSDI are known to be different; NetBSD and OpenBSD are
known not to be different. On the "different" systems there is a single group
list, and the first entry in it is the current group. On all other versions of
Unix there is a supplementary group list, which is in *addition* to the current
group. Consequently, to get rid of all extraneous groups on a "standard" system
you pass over 0 groups to setgroups(), while on a "different" system you pass
over a single group - the current group, which is always the first group in the
list. Calling setgroups() with zero groups on a "different" system results in
an error return. The following code should cope with both types of system.

 Unfortunately, recent MacOS, which should be a FreeBSD, "helpfully" succeeds
 the "setgroups() with zero groups" - and changes the egid.
 Thanks to that we had to stash the original_egid above, for use below
 in the call to exim_setugid().

However, if this process isn't running as root, setgroups() can't be used
since you have to be root to run it, even if throwing away groups.
Except, sigh, for Hurd - where you can.
Not being root here happens only in some unusual configurations. */

if (  !unprivileged
#ifndef OS_SETGROUPS_ZERO_DROPS_ALL
   && setgroups(0, NULL) != 0
#endif
   && setgroups(1, group_list) != 0)
  exim_fail("exim: setgroups() failed: %s\n", strerror(errno));

/* If the configuration file name has been altered by an argument on the
command line (either a new file name or a macro definition) and the caller is
not root, or if this is a filter testing run, remove any setuid privilege the
program has and run as the underlying user.

The exim user is locked out of this, which severely restricts the use of -C
for some purposes.

Otherwise, set the real ids to the effective values (should be root unless run
from inetd, which it can either be root or the exim uid, if one is configured).

There is a private mechanism for bypassing some of this, in order to make it
possible to test lots of configurations automatically, without having either to
recompile each time, or to patch in an actual configuration file name and other
values (such as the path name). If running in the test harness, pretend that
configuration file changes and macro definitions haven't happened. */

if ((                                            /* EITHER */
    (!f.trusted_config ||                          /* Config changed, or */
     !macros_trusted(opt_D_used)) &&		 /*  impermissible macros and */
    real_uid != root_uid &&                      /* Not root, and */
    !f.running_in_test_harness                     /* Not fudged */
    ) ||                                         /*   OR   */
    expansion_test                               /* expansion testing */
    ||                                           /*   OR   */
    filter_test != FTEST_NONE)                   /* Filter testing */
  {
  setgroups(group_count, group_list);
  exim_setugid(real_uid, real_gid, FALSE,
    US"-C, -D, -be or -bf forces real uid");
  removed_privilege = TRUE;

  /* In the normal case when Exim is called like this, stderr is available
  and should be used for any logging information because attempts to write
  to the log will usually fail. To arrange this, we unset really_exim. However,
  if no stderr is available there is no point - we might as well have a go
  at the log (if it fails, syslog will be written).

  Note that if the invoker is Exim, the logs remain available. Messing with
  this causes unlogged successful deliveries.  */

  if (log_stderr && real_uid != exim_uid)
    f.really_exim = FALSE;
  }

/* Privilege is to be retained for the moment. It may be dropped later,
depending on the job that this Exim process has been asked to do. For now, set
the real uid to the effective so that subsequent re-execs of Exim are done by a
privileged user. */

else
  exim_setugid(geteuid(), original_egid, FALSE, US"forcing real = effective");

/* If testing a filter, open the file(s) now, before wasting time doing other
setups and reading the message. */

if (filter_test & FTEST_SYSTEM)
  if ((filter_sfd = Uopen(filter_test_sfile, O_RDONLY, 0)) < 0)
    exim_fail("exim: failed to open %s: %s\n", filter_test_sfile,
      strerror(errno));

if (filter_test & FTEST_USER)
  if ((filter_ufd = Uopen(filter_test_ufile, O_RDONLY, 0)) < 0)
    exim_fail("exim: failed to open %s: %s\n", filter_test_ufile,
      strerror(errno));

/* Initialise lookup_list
If debugging, already called above via version reporting.
In either case, we initialise the list of available lookups while running
as root.  All dynamically modules are loaded from a directory which is
hard-coded into the binary and is code which, if not a module, would be
part of Exim already.  Ability to modify the content of the directory
is equivalent to the ability to modify a setuid binary!

This needs to happen before we read the main configuration. */
init_lookup_list();

/*XXX this excrescence could move to the testsuite standard config setup file */
#ifdef SUPPORT_I18N
if (f.running_in_test_harness) smtputf8_advertise_hosts = NULL;
#endif

/* Read the main runtime configuration data; this gives up if there
is a failure. It leaves the configuration file open so that the subsequent
configuration data for delivery can be read if needed.

NOTE: immediately after opening the configuration file we change the working
directory to "/"! Later we change to $spool_directory. We do it there, because
during readconf_main() some expansion takes place already. */

/* Store the initial cwd before we change directories.  Can be NULL if the
dir has already been unlinked. */
initial_cwd = os_getcwd(NULL, 0);
if (!initial_cwd && errno)
  exim_fail("exim: getting initial cwd failed: %s\n", strerror(errno));

if (initial_cwd && (strlen(CCS initial_cwd) >= BIG_BUFFER_SIZE))
  exim_fail("exim: initial cwd is far too long (%d)\n", Ustrlen(CCS initial_cwd));

/* checking:
    -be[m] expansion test        -
    -b[fF] filter test           new
    -bh[c] host test             -
    -bmalware malware_test_file  new
    -brt   retry test            new
    -brw   rewrite test          new
    -bt    address test          -
    -bv[s] address verify        -
   list_options:
    -bP <option> (except -bP config, which sets list_config)

If any of these options is set, we suppress warnings about configuration
issues (currently about tls_advertise_hosts and keep_environment not being
defined) */

  {
  int old_pool = store_pool;
#ifdef MEASURE_TIMING
  struct timeval t0;
  (void)gettimeofday(&t0, NULL);
#endif

  store_pool = POOL_CONFIG;
  readconf_main(checking || list_options);
  store_pool = old_pool;

#ifdef MEASURE_TIMING
  report_time_since(&t0, US"readconf_main (delta)");
#endif
  }

/* Now in directory "/" */

if (cleanup_environment() == FALSE)
  log_write(0, LOG_PANIC_DIE, "Can't cleanup environment");


/* If an action on specific messages is requested, or if a daemon or queue
runner is being started, we need to know if Exim was called by an admin user.
This is the case if the real user is root or exim, or if the real group is
exim, or if one of the supplementary groups is exim or a group listed in
admin_groups. We don't fail all message actions immediately if not admin_user,
since some actions can be performed by non-admin users. Instead, set admin_user
for later interrogation. */

if (real_uid == root_uid || real_uid == exim_uid || real_gid == exim_gid)
  f.admin_user = TRUE;
else
  for (int i = 0; i < group_count && !f.admin_user; i++)
    if (group_list[i] == exim_gid)
      f.admin_user = TRUE;
    else if (admin_groups)
      for (int j = 1; j <= (int)admin_groups[0] && !f.admin_user; j++)
        if (admin_groups[j] == group_list[i])
          f.admin_user = TRUE;

/* Another group of privileged users are the trusted users. These are root,
exim, and any caller matching trusted_users or trusted_groups. Trusted callers
are permitted to specify sender_addresses with -f on the command line, and
other message parameters as well. */

if (real_uid == root_uid || real_uid == exim_uid)
  f.trusted_caller = TRUE;
else
  {
  if (trusted_users)
    for (int i = 1; i <= (int)trusted_users[0] && !f.trusted_caller; i++)
      if (trusted_users[i] == real_uid)
        f.trusted_caller = TRUE;

  if (trusted_groups)
    for (int i = 1; i <= (int)trusted_groups[0] && !f.trusted_caller; i++)
      if (trusted_groups[i] == real_gid)
        f.trusted_caller = TRUE;
      else for (int j = 0; j < group_count && !f.trusted_caller; j++)
        if (trusted_groups[i] == group_list[j])
          f.trusted_caller = TRUE;
  }

/* At this point, we know if the user is privileged and some command-line
options become possibly impermissible, depending upon the configuration file. */

if (checking && commandline_checks_require_admin && !f.admin_user)
  exim_fail("exim: those command-line flags are set to require admin\n");

/* Handle the decoding of logging options. */

decode_bits(log_selector, log_selector_size, log_notall,
  log_selector_string, log_options, log_options_count, US"log", 0);

DEBUG(D_any)
  {
  debug_printf("configuration file is %s\n", config_main_filename);
  debug_printf("log selectors =");
  for (int i = 0; i < log_selector_size; i++)
    debug_printf(" %08x", log_selector[i]);
  debug_printf("\n");
  }

/* If domain literals are not allowed, check the sender address that was
supplied with -f. Ditto for a stripped trailing dot. */

if (sender_address)
  {
  if (sender_address[sender_address_domain] == '[' && !allow_domain_literals)
    exim_fail("exim: bad -f address \"%s\": domain literals not "
      "allowed\n", sender_address);
  if (f_end_dot && !strip_trailing_dot)
    exim_fail("exim: bad -f address \"%s.\": domain is malformed "
      "(trailing dot not allowed)\n", sender_address);
  }

/* See if an admin user overrode our logging. */

if (cmdline_syslog_name)
  if (f.admin_user)
    {
    syslog_processname = cmdline_syslog_name;
    log_file_path = string_copy(CUS"syslog");
    }
  else
    /* not a panic, non-privileged users should not be able to spam paniclog */
    exim_fail(
        "exim: you lack sufficient privilege to specify syslog process name\n");

/* Paranoia check of maximum lengths of certain strings. There is a check
on the length of the log file path in log.c, which will come into effect
if there are any calls to write the log earlier than this. However, if we
get this far but the string is very long, it is better to stop now than to
carry on and (e.g.) receive a message and then have to collapse. The call to
log_write() from here will cause the ultimate panic collapse if the complete
file name exceeds the buffer length. */

if (Ustrlen(log_file_path) > 200)
  log_write(0, LOG_MAIN|LOG_PANIC_DIE,
    "log_file_path is longer than 200 chars: aborting");

if (Ustrlen(pid_file_path) > 200)
  log_write(0, LOG_MAIN|LOG_PANIC_DIE,
    "pid_file_path is longer than 200 chars: aborting");

if (Ustrlen(spool_directory) > 200)
  log_write(0, LOG_MAIN|LOG_PANIC_DIE,
    "spool_directory is longer than 200 chars: aborting");

/* Length check on the process name given to syslog for its TAG field,
which is only permitted to be 32 characters or less. See RFC 3164. */

if (Ustrlen(syslog_processname) > 32)
  log_write(0, LOG_MAIN|LOG_PANIC_DIE,
    "syslog_processname is longer than 32 chars: aborting");

if (log_oneline)
  if (f.admin_user)
    {
    log_write(0, LOG_MAIN, "%s", log_oneline);
    return EXIT_SUCCESS;
    }
  else
    return EXIT_FAILURE;

/* In some operating systems, the environment variable TMPDIR controls where
temporary files are created; Exim doesn't use these (apart from when delivering
to MBX mailboxes), but called libraries such as DBM libraries may require them.
If TMPDIR is found in the environment, reset it to the value defined in the
EXIM_TMPDIR macro, if this macro is defined.  For backward compatibility this
macro may be called TMPDIR in old "Local/Makefile"s. It's converted to
EXIM_TMPDIR by the build scripts.
*/

#ifdef EXIM_TMPDIR
  if (environ) for (uschar ** p = USS environ; *p; p++)
    if (Ustrncmp(*p, "TMPDIR=", 7) == 0 && Ustrcmp(*p+7, EXIM_TMPDIR) != 0)
      {
      uschar * newp = store_malloc(Ustrlen(EXIM_TMPDIR) + 8);
      sprintf(CS newp, "TMPDIR=%s", EXIM_TMPDIR);
      *p = newp;
      DEBUG(D_any) debug_printf("reset TMPDIR=%s in environment\n", EXIM_TMPDIR);
      }
#endif

/* Timezone handling. If timezone_string is "utc", set a flag to cause all
timestamps to be in UTC (gmtime() is used instead of localtime()). Otherwise,
we may need to get rid of a bogus timezone setting. This can arise when Exim is
called by a user who has set the TZ variable. This then affects the timestamps
in log files and in Received: headers, and any created Date: header lines. The
required timezone is settable in the configuration file, so nothing can be done
about this earlier - but hopefully nothing will normally be logged earlier than
this. We have to make a new environment if TZ is wrong, but don't bother if
timestamps_utc is set, because then all times are in UTC anyway. */

if (timezone_string && strcmpic(timezone_string, US"UTC") == 0)
  f.timestamps_utc = TRUE;
else
  {
  uschar *envtz = US getenv("TZ");
  if (envtz
      ? !timezone_string || Ustrcmp(timezone_string, envtz) != 0
      : timezone_string != NULL
     )
    {
    uschar **p = USS environ;
    uschar **new;
    uschar **newp;
    int count = 0;
    if (environ) while (*p++) count++;
    if (!envtz) count++;
    newp = new = store_malloc(sizeof(uschar *) * (count + 1));
    if (environ) for (p = USS environ; *p; p++)
      if (Ustrncmp(*p, "TZ=", 3) != 0) *newp++ = *p;
    if (timezone_string)
      {
      *newp = store_malloc(Ustrlen(timezone_string) + 4);
      sprintf(CS *newp++, "TZ=%s", timezone_string);
      }
    *newp = NULL;
    environ = CSS new;
    tzset();
    DEBUG(D_any) debug_printf("Reset TZ to %s: time is %s\n", timezone_string,
      tod_stamp(tod_log));
    }
  }

/* Handle the case when we have removed the setuid privilege because of -C or
-D. This means that the caller of Exim was not root.

There is a problem if we were running as the Exim user. The sysadmin may
expect this case to retain privilege because "the binary was called by the
Exim user", but it hasn't, because either the -D option set macros, or the
-C option set a non-trusted configuration file. There are two possibilities:

  (1) If deliver_drop_privilege is set, Exim is not going to re-exec in order
      to do message deliveries. Thus, the fact that it is running as a
      non-privileged user is plausible, and might be wanted in some special
      configurations. However, really_exim will have been set false when
      privilege was dropped, to stop Exim trying to write to its normal log
      files. Therefore, re-enable normal log processing, assuming the sysadmin
      has set up the log directory correctly.

  (2) If deliver_drop_privilege is not set, the configuration won't work as
      apparently intended, and so we log a panic message. In order to retain
      root for -C or -D, the caller must either be root or be invoking a
      trusted configuration file (when deliver_drop_privilege is false). */

if (  removed_privilege
   && (!f.trusted_config || opt_D_used)
   && real_uid == exim_uid)
  if (deliver_drop_privilege)
    f.really_exim = TRUE; /* let logging work normally */
  else
    log_write(0, LOG_MAIN|LOG_PANIC,
      "exim user lost privilege for using %s option",
      f.trusted_config? "-D" : "-C");

/* Start up Perl interpreter if Perl support is configured and there is a
perl_startup option, and the configuration or the command line specifies
initializing starting. Note that the global variables are actually called
opt_perl_xxx to avoid clashing with perl's namespace (perl_*). */

#ifdef EXIM_PERL
if (perl_start_option != 0)
  opt_perl_at_start = (perl_start_option > 0);
if (opt_perl_at_start && opt_perl_startup != NULL)
  {
  uschar *errstr;
  DEBUG(D_any) debug_printf("Starting Perl interpreter\n");
  if ((errstr = init_perl(opt_perl_startup)))
    exim_fail("exim: error in perl_startup code: %s\n", errstr);
  opt_perl_started = TRUE;
  }
#endif /* EXIM_PERL */

/* Log the arguments of the call if the configuration file said so. This is
a debugging feature for finding out what arguments certain MUAs actually use.
Don't attempt it if logging is disabled, or if listing variables or if
verifying/testing addresses or expansions. */

if (  (debug_selector & D_any  ||  LOGGING(arguments))
   && f.really_exim && !list_options && !checking)
  {
  uschar *p = big_buffer;
  Ustrcpy(p, US"cwd= (failed)");

  if (!initial_cwd)
    p += 13;
  else
    {
    p += 4;
    snprintf(CS p, big_buffer_size - (p - big_buffer), "%s", CCS initial_cwd);
    p += Ustrlen(CCS p);
    }

  (void)string_format(p, big_buffer_size - (p - big_buffer), " %d args:", argc);
  while (*p) p++;
  for (int i = 0; i < argc; i++)
    {
    int len = Ustrlen(argv[i]);
    const uschar *printing;
    uschar *quote;
    if (p + len + 8 >= big_buffer + big_buffer_size)
      {
      Ustrcpy(p, US" ...");
      log_write(0, LOG_MAIN, "%s", big_buffer);
      Ustrcpy(big_buffer, US"...");
      p = big_buffer + 3;
      }
    printing = string_printing(argv[i]);
    if (!*printing) quote = US"\"";
    else
      {
      const uschar *pp = printing;
      quote = US"";
      while (*pp) if (isspace(*pp++)) { quote = US"\""; break; }
      }
    p += sprintf(CS p, " %s%.*s%s", quote, (int)(big_buffer_size -
      (p - big_buffer) - 4), printing, quote);
    }

  if (LOGGING(arguments))
    log_write(0, LOG_MAIN, "%s", big_buffer);
  else
    debug_printf("%s\n", big_buffer);
  }

/* Set the working directory to be the top-level spool directory. We don't rely
on this in the code, which always uses fully qualified names, but it's useful
for core dumps etc. Don't complain if it fails - the spool directory might not
be generally accessible and calls with the -C option (and others) have lost
privilege by now. Before the chdir, we try to ensure that the directory exists.
*/

if (Uchdir(spool_directory) != 0)
  {
  (void) directory_make(spool_directory, US"", SPOOL_DIRECTORY_MODE, FALSE);
  (void) Uchdir(spool_directory);
  }

/* Handle calls with the -bi option. This is a sendmail option to rebuild *the*
alias file. Exim doesn't have such a concept, but this call is screwed into
Sun's YP makefiles. Handle this by calling a configured script, as the real
user who called Exim. The -oA option can be used to pass an argument to the
script. */

if (bi_option)
  {
  (void) fclose(config_file);
  if (bi_command && *bi_command)
    {
    int i = 0;
    uschar *argv[3];
    argv[i++] = bi_command;	/* nonexpanded option so assume untainted */
    if (alias_arg) argv[i++] = alias_arg;
    argv[i++] = NULL;

    setgroups(group_count, group_list);
    exim_setugid(real_uid, real_gid, FALSE, US"running bi_command");

    DEBUG(D_exec) debug_printf("exec '%.256s' %s%.256s%s\n", argv[0],
      argv[1] ? "'" : "", argv[1] ? argv[1] : US"", argv[1] ? "'" : "");

    execv(CS argv[0], (char *const *)argv);
    exim_fail("exim: exec '%s' failed: %s\n", argv[0], strerror(errno));
    }
  else
    {
    DEBUG(D_any) debug_printf("-bi used but bi_command not set; exiting\n");
    exit(EXIT_SUCCESS);
    }
  }

/* We moved the admin/trusted check to be immediately after reading the
configuration file.  We leave these prints here to ensure that syslog setup,
logfile setup, and so on has already happened. */

if (f.trusted_caller) DEBUG(D_any) debug_printf("trusted user\n");
if (f.admin_user) DEBUG(D_any) debug_printf("admin user\n");

/* Only an admin user may start the daemon or force a queue run in the default
configuration, but the queue run restriction can be relaxed. Only an admin
user may request that a message be returned to its sender forthwith. Only an
admin user may specify a debug level greater than D_v (because it might show
passwords, etc. in lookup queries). Only an admin user may request a queue
count. Only an admin user can use the test interface to scan for email
(because Exim will be in the spool dir and able to look at mails). */

if (!f.admin_user)
  {
  BOOL debugset = (debug_selector & ~D_v) != 0;
  if (  deliver_give_up || f.daemon_listen || malware_test_file
     || count_queue && queue_list_requires_admin
     || list_queue && queue_list_requires_admin
     || queue_interval >= 0 && prod_requires_admin
     || queue_name_dest && prod_requires_admin
     || debugset && !f.running_in_test_harness
     )
    exim_fail("exim:%s permission denied\n", debugset ? " debugging" : "");
  }

/* If the real user is not root or the exim uid, the argument for passing
in an open TCP/IP connection for another message is not permitted, nor is
running with the -N option for any delivery action, unless this call to exim is
one that supplied an input message, or we are using a patched exim for
regression testing. */

if (  real_uid != root_uid && real_uid != exim_uid
   && (  continue_hostname
      || (  f.dont_deliver
	 && (queue_interval >= 0 || f.daemon_listen || msg_action_arg > 0)
      )  )
   && !f.running_in_test_harness
   )
  exim_fail("exim: Permission denied\n");

/* If the caller is not trusted, certain arguments are ignored when running for
real, but are permitted when checking things (-be, -bv, -bt, -bh, -bf, -bF).
Note that authority for performing certain actions on messages is tested in the
queue_action() function. */

if (!f.trusted_caller && !checking)
  {
  sender_host_name = sender_host_address = interface_address =
    sender_ident = received_protocol = NULL;
  sender_host_port = interface_port = 0;
  sender_host_authenticated = authenticated_sender = authenticated_id = NULL;
  }

/* If a sender host address is set, extract the optional port number off the
end of it and check its syntax. Do the same thing for the interface address.
Exim exits if the syntax is bad. */

else
  {
  if (sender_host_address)
    sender_host_port = check_port(sender_host_address);
  if (interface_address)
    interface_port = check_port(interface_address);
  }

/* If the caller is trusted, then they can use -G to suppress_local_fixups. */
if (flag_G)
  {
  if (f.trusted_caller)
    {
    f.suppress_local_fixups = f.suppress_local_fixups_default = TRUE;
    DEBUG(D_acl) debug_printf("suppress_local_fixups forced on by -G\n");
    }
  else
    exim_fail("exim: permission denied (-G requires a trusted user)\n");
  }

/* If an SMTP message is being received check to see if the standard input is a
TCP/IP socket. If it is, we assume that Exim was called from inetd if the
caller is root or the Exim user, or if the port is a privileged one. Otherwise,
barf. */

if (smtp_input)
  {
  union sockaddr_46 inetd_sock;
  EXIM_SOCKLEN_T size = sizeof(inetd_sock);
  if (getpeername(0, (struct sockaddr *)(&inetd_sock), &size) == 0)
    {
    int family = ((struct sockaddr *)(&inetd_sock))->sa_family;
    if (family == AF_INET || family == AF_INET6)
      {
      union sockaddr_46 interface_sock;
      size = sizeof(interface_sock);

      if (getsockname(0, (struct sockaddr *)(&interface_sock), &size) == 0)
        interface_address = host_ntoa(-1, &interface_sock, NULL,
          &interface_port);

      if (host_is_tls_on_connect_port(interface_port)) tls_in.on_connect = TRUE;

      if (real_uid == root_uid || real_uid == exim_uid || interface_port < 1024)
        {
        f.is_inetd = TRUE;
        sender_host_address = host_ntoa(-1, (struct sockaddr *)(&inetd_sock),
          NULL, &sender_host_port);
        if (mua_wrapper) log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Input from "
          "inetd is not supported when mua_wrapper is set");
        }
      else
        exim_fail(
          "exim: Permission denied (unprivileged user, unprivileged port)\n");
      }
    }
  }

/* If the load average is going to be needed while receiving a message, get it
now for those OS that require the first call to os_getloadavg() to be done as
root. There will be further calls later for each message received. */

#ifdef LOAD_AVG_NEEDS_ROOT
if (  receiving_message
   && (queue_only_load >= 0 || (f.is_inetd && smtp_load_reserve >= 0)))
  load_average = OS_GETLOADAVG();
#endif

/* The queue_only configuration option can be overridden by -odx on the command
line, except that if queue_only_override is false, queue_only cannot be unset
from the command line. */

if (queue_only_set && (queue_only_override || arg_queue_only))
  queue_only = arg_queue_only;

/* The receive_timeout and smtp_receive_timeout options can be overridden by
-or and -os. */

if (arg_receive_timeout >= 0) receive_timeout = arg_receive_timeout;
if (arg_smtp_receive_timeout >= 0)
  smtp_receive_timeout = arg_smtp_receive_timeout;

/* If Exim was started with root privilege, unless we have already removed the
root privilege above as a result of -C, -D, -be, -bf or -bF, remove it now
except when starting the daemon or doing some kind of delivery or address
testing (-bt). These are the only cases when root need to be retained. We run
as exim for -bv and -bh. However, if deliver_drop_privilege is set, root is
retained only for starting the daemon. We always do the initgroups() in this
situation (controlled by the TRUE below), in order to be as close as possible
to the state Exim usually runs in. */

if (  !unprivileged				/* originally had root AND */
   && !removed_privilege			/* still got root AND      */
   && !f.daemon_listen				/* not starting the daemon */
   && queue_interval <= 0			/* (either kind of daemon) */
   && (						/*    AND EITHER           */
         deliver_drop_privilege			/* requested unprivileged  */
      || (					/*       OR                */
            queue_interval < 0			/* not running the queue   */
         && (  msg_action_arg < 0		/*       and               */
            || msg_action != MSG_DELIVER	/* not delivering          */
	    )					/*       and               */
         && (!checking || !f.address_test_mode)	/* not address checking    */
	 && !rcpt_verify_quota			/* and not quota checking  */
   )  )  )
  exim_setugid(exim_uid, exim_gid, TRUE, US"privilege not needed");

/* When we are retaining a privileged uid, we still change to the exim gid. */

else
  {
  int rv;
  DEBUG(D_any) debug_printf("dropping to exim gid; retaining priv uid\n");
  rv = setgid(exim_gid);
  /* Impact of failure is that some stuff might end up with an incorrect group.
  We track this for failures from root, since any attempt to change privilege
  by root should succeed and failures should be examined.  For non-root,
  there's no security risk.  For me, it's { exim -bV } on a just-built binary,
  no need to complain then. */
  if (rv == -1)
    if (!(unprivileged || removed_privilege))
      exim_fail("exim: changing group failed: %s\n", strerror(errno));
    else
      {
      DEBUG(D_any) debug_printf("changing group to %ld failed: %s\n",
          (long int)exim_gid, strerror(errno));
      }
  }

/* Handle a request to scan a file for malware */
if (malware_test_file)
  {
#ifdef WITH_CONTENT_SCAN
  int result;
  set_process_info("scanning file for malware");
  if ((result = malware_in_file(malware_test_file)) == FAIL)
    {
    printf("No malware found.\n");
    exit(EXIT_SUCCESS);
    }
  if (result != OK)
    {
    printf("Malware lookup returned non-okay/fail: %d\n", result);
    exit(EXIT_FAILURE);
    }
  if (malware_name)
    printf("Malware found: %s\n", malware_name);
  else
    printf("Malware scan detected malware of unknown name.\n");
#else
  printf("Malware scanning not enabled at compile time.\n");
#endif
  exit(EXIT_FAILURE);
  }

/* Handle a request to list the delivery queue */

if (list_queue)
  {
  set_process_info("listing the queue");
  queue_list(list_queue_option, argv + recipients_arg, argc - recipients_arg);
  exit(EXIT_SUCCESS);
  }

/* Handle a request to count the delivery queue */

if (count_queue)
  {
  set_process_info("counting the queue");
  fprintf(stdout, "%u\n", queue_count());
  exit(EXIT_SUCCESS);
  }

/* Handle actions on specific messages, except for the force delivery and
message load actions, which are done below. Some actions take a whole list of
message ids, which are known to continue up to the end of the arguments. Others
take a single message id and then operate on the recipients list. */

if (msg_action_arg > 0 && msg_action != MSG_DELIVER && msg_action != MSG_LOAD)
  {
  int yield = EXIT_SUCCESS;
  set_process_info("acting on specified messages");

  /* ACL definitions may be needed when removing a message (-Mrm) because
  event_action gets expanded */

  if (msg_action == MSG_REMOVE)
    {
    int old_pool = store_pool;
    store_pool = POOL_CONFIG;
    readconf_rest();
    store_pool = old_pool;
    store_writeprotect(POOL_CONFIG);
    }

  if (!one_msg_action)
    {
    for (i = msg_action_arg; i < argc; i++)
      if (!queue_action(argv[i], msg_action, NULL, 0, 0))
        yield = EXIT_FAILURE;
    switch (msg_action)
      {
      case MSG_REMOVE: case MSG_FREEZE: case MSG_THAW: break;
      default: printf("\n"); break;
      }
    }

  else if (!queue_action(argv[msg_action_arg], msg_action, argv, argc,
    recipients_arg)) yield = EXIT_FAILURE;
  exit(yield);
  }

/* We used to set up here to skip reading the ACL section, on
 (msg_action_arg > 0 || (queue_interval == 0 && !f.daemon_listen)
Now, since the intro of the ${acl } expansion, ACL definitions may be
needed in transports so we lost the optimisation. */

  {
  int old_pool = store_pool;
#ifdef MEASURE_TIMING
  struct timeval t0;
  (void)gettimeofday(&t0, NULL);
#endif

  store_pool = POOL_CONFIG;
  readconf_rest();
  store_pool = old_pool;

  /* -be can add macro definitions, needing to link to the macro structure
  chain.  Otherwise, make the memory used for config data readonly. */

  if (!expansion_test)
    store_writeprotect(POOL_CONFIG);

#ifdef MEASURE_TIMING
  report_time_since(&t0, US"readconf_rest (delta)");
#endif
  }

/* Handle a request to check quota */
if (rcpt_verify_quota)
  if (real_uid != root_uid && real_uid != exim_uid)
    exim_fail("exim: Permission denied\n");
  else if (recipients_arg >= argc)
    exim_fail("exim: missing recipient for quota check\n");
  else
    {
    verify_quota(argv[recipients_arg]);
    exim_exit(EXIT_SUCCESS);
    }

/* Handle the -brt option. This is for checking out retry configurations.
The next three arguments are a domain name or a complete address, and
optionally two error numbers. All it does is to call the function that
scans the retry configuration data. */

if (test_retry_arg >= 0)
  {
  retry_config *yield;
  int basic_errno = 0;
  int more_errno = 0;
  const uschar *s1, *s2;

  if (test_retry_arg >= argc)
    {
    printf("-brt needs a domain or address argument\n");
    exim_exit(EXIT_FAILURE);
    }
  s1 = exim_str_fail_toolong(argv[test_retry_arg++], EXIM_EMAILADDR_MAX, "-brt");
  s2 = NULL;

  /* If the first argument contains no @ and no . it might be a local user
  or it might be a single-component name. Treat as a domain. */

  if (Ustrchr(s1, '@') == NULL && Ustrchr(s1, '.') == NULL)
    {
    printf("Warning: \"%s\" contains no '@' and no '.' characters. It is "
      "being \ntreated as a one-component domain, not as a local part.\n\n",
      s1);
    }

  /* There may be an optional second domain arg. */

  if (test_retry_arg < argc && Ustrchr(argv[test_retry_arg], '.') != NULL)
    s2 = exim_str_fail_toolong(argv[test_retry_arg++], EXIM_DOMAINNAME_MAX, "-brt 2nd");

  /* The final arg is an error name */

  if (test_retry_arg < argc)
    {
    const uschar *ss = exim_str_fail_toolong(argv[test_retry_arg], EXIM_DRIVERNAME_MAX, "-brt 3rd");
    uschar *error =
      readconf_retry_error(ss, ss + Ustrlen(ss), &basic_errno, &more_errno);
    if (error != NULL)
      {
      printf("%s\n", CS error);
      return EXIT_FAILURE;
      }

    /* For the {MAIL,RCPT,DATA}_4xx errors, a value of 255 means "any", and a
    code > 100 as an error is for matching codes to the decade. Turn them into
    a real error code, off the decade. */

    if (basic_errno == ERRNO_MAIL4XX ||
        basic_errno == ERRNO_RCPT4XX ||
        basic_errno == ERRNO_DATA4XX)
      {
      int code = (more_errno >> 8) & 255;
      if (code == 255)
        more_errno = (more_errno & 0xffff00ff) | (21 << 8);
      else if (code > 100)
        more_errno = (more_errno & 0xffff00ff) | ((code - 96) << 8);
      }
    }

  if (!(yield = retry_find_config(s1, s2, basic_errno, more_errno)))
    printf("No retry information found\n");
  else
    {
    more_errno = yield->more_errno;
    printf("Retry rule: %s  ", yield->pattern);

    if (yield->basic_errno == ERRNO_EXIMQUOTA)
      {
      printf("quota%s%s  ",
        (more_errno > 0)? "_" : "",
        (more_errno > 0)? readconf_printtime(more_errno) : US"");
      }
    else if (yield->basic_errno == ECONNREFUSED)
      {
      printf("refused%s%s  ",
        (more_errno > 0)? "_" : "",
        (more_errno == 'M')? "MX" :
        (more_errno == 'A')? "A" : "");
      }
    else if (yield->basic_errno == ETIMEDOUT)
      {
      printf("timeout");
      if ((more_errno & RTEF_CTOUT) != 0) printf("_connect");
      more_errno &= 255;
      if (more_errno != 0) printf("_%s",
        (more_errno == 'M')? "MX" : "A");
      printf("  ");
      }
    else if (yield->basic_errno == ERRNO_AUTHFAIL)
      printf("auth_failed  ");
    else printf("*  ");

    for (retry_rule * r = yield->rules; r; r = r->next)
      {
      printf("%c,%s", r->rule, readconf_printtime(r->timeout)); /* Do not */
      printf(",%s", readconf_printtime(r->p1));                 /* amalgamate */
      if (r->rule == 'G')
        {
        int x = r->p2;
        int f = x % 1000;
        int d = 100;
        printf(",%d.", x/1000);
        do
          {
          printf("%d", f/d);
          f %= d;
          d /= 10;
          }
        while (f != 0);
        }
      printf("; ");
      }

    printf("\n");
    }
  exim_exit(EXIT_SUCCESS);
  }

/* Handle a request to list one or more configuration options */
/* If -n was set, we suppress some information */

if (list_options)
  {
  BOOL fail = FALSE;
  set_process_info("listing variables");
  if (recipients_arg >= argc)
    fail = !readconf_print(US"all", NULL, flag_n);
  else for (i = recipients_arg; i < argc; i++)
    {
    if (i < argc - 1 &&
	(Ustrcmp(argv[i], "router") == 0 ||
	 Ustrcmp(argv[i], "transport") == 0 ||
	 Ustrcmp(argv[i], "authenticator") == 0 ||
	 Ustrcmp(argv[i], "macro") == 0 ||
	 Ustrcmp(argv[i], "environment") == 0))
      {
      fail |= !readconf_print(exim_str_fail_toolong(argv[i+1], EXIM_DRIVERNAME_MAX, "-bP name"), argv[i], flag_n);
      i++;
      }
    else
      fail = !readconf_print(exim_str_fail_toolong(argv[i], EXIM_DRIVERNAME_MAX, "-bP item"), NULL, flag_n);
    }
  exim_exit(fail ? EXIT_FAILURE : EXIT_SUCCESS);
  }

if (list_config)
  {
  set_process_info("listing config");
  exim_exit(readconf_print(US"config", NULL, flag_n)
		? EXIT_SUCCESS : EXIT_FAILURE);
  }


/* Initialise subsystems as required. */

tcp_init();

/* Handle a request to deliver one or more messages that are already on the
queue. Values of msg_action other than MSG_DELIVER and MSG_LOAD are dealt with
above. MSG_LOAD is handled with -be (which is the only time it applies) below.

Delivery of specific messages is typically used for a small number when
prodding by hand (when the option forced_delivery will be set) or when
re-execing to regain root privilege. Each message delivery must happen in a
separate process, so we fork a process for each one, and run them sequentially
so that debugging output doesn't get intertwined, and to avoid spawning too
many processes if a long list is given. However, don't fork for the last one;
this saves a process in the common case when Exim is called to deliver just one
message. */

if (msg_action_arg > 0 && msg_action != MSG_LOAD)
  {
  if (prod_requires_admin && !f.admin_user)
    {
    fprintf(stderr, "exim: Permission denied\n");
    exim_exit(EXIT_FAILURE);
    }
  set_process_info("delivering specified messages");
  if (deliver_give_up) forced_delivery = f.deliver_force_thaw = TRUE;
  for (i = msg_action_arg; i < argc; i++)
    {
    int status;
    pid_t pid;
    /*XXX This use of argv[i] for msg_id should really be tainted, but doing
    that runs into a later copy into the untainted global message_id[] */
    /*XXX Do we need a length limit check here? */
    if (i == argc - 1)
      (void)deliver_message(argv[i], forced_delivery, deliver_give_up);
    else if ((pid = exim_fork(US"cmdline-delivery")) == 0)
      {
      (void)deliver_message(argv[i], forced_delivery, deliver_give_up);
      exim_underbar_exit(EXIT_SUCCESS);
      }
    else if (pid < 0)
      {
      fprintf(stderr, "failed to fork delivery process for %s: %s\n", argv[i],
        strerror(errno));
      exim_exit(EXIT_FAILURE);
      }
    else wait(&status);
    }
  exim_exit(EXIT_SUCCESS);
  }


/* If only a single queue run is requested, without SMTP listening, we can just
turn into a queue runner, with an optional starting message id. */

if (queue_interval == 0 && !f.daemon_listen)
  {
  DEBUG(D_queue_run) debug_printf("Single queue run%s%s%s%s\n",
    start_queue_run_id ? US" starting at " : US"",
    start_queue_run_id ? start_queue_run_id: US"",
    stop_queue_run_id ?  US" stopping at " : US"",
    stop_queue_run_id ?  stop_queue_run_id : US"");
  if (*queue_name)
    set_process_info("running the '%s' queue (single queue run)", queue_name);
  else
    set_process_info("running the queue (single queue run)");
  queue_run(start_queue_run_id, stop_queue_run_id, FALSE);
  exim_exit(EXIT_SUCCESS);
  }


/* Find the login name of the real user running this process. This is always
needed when receiving a message, because it is written into the spool file. It
may also be used to construct a from: or a sender: header, and in this case we
need the user's full name as well, so save a copy of it, checked for RFC822
syntax and munged if necessary, if it hasn't previously been set by the -F
argument. We may try to get the passwd entry more than once, in case NIS or
other delays are in evidence. Save the home directory for use in filter testing
(only). */

for (i = 0;;)
  {
  if ((pw = getpwuid(real_uid)) != NULL)
    {
    originator_login = string_copy(US pw->pw_name);
    originator_home = string_copy(US pw->pw_dir);

    /* If user name has not been set by -F, set it from the passwd entry
    unless -f has been used to set the sender address by a trusted user. */

    if (!originator_name)
      {
      if (!sender_address || (!f.trusted_caller && filter_test == FTEST_NONE))
        {
        uschar *name = US pw->pw_gecos;
        uschar *amp = Ustrchr(name, '&');
        uschar buffer[256];

        /* Most Unix specify that a '&' character in the gecos field is
        replaced by a copy of the login name, and some even specify that
        the first character should be upper cased, so that's what we do. */

        if (amp)
          {
          int loffset;
          string_format(buffer, sizeof(buffer), "%.*s%n%s%s",
            (int)(amp - name), name, &loffset, originator_login, amp + 1);
          buffer[loffset] = toupper(buffer[loffset]);
          name = buffer;
          }

        /* If a pattern for matching the gecos field was supplied, apply
        it and then expand the name string. */

        if (gecos_pattern && gecos_name)
          {
          const pcre2_code *re;
          re = regex_must_compile(gecos_pattern, FALSE, TRUE); /* Use malloc */

          if (regex_match_and_setup(re, name, 0, -1))
            {
            uschar *new_name = expand_string(gecos_name);
            expand_nmax = -1;
            if (new_name)
              {
              DEBUG(D_receive) debug_printf("user name \"%s\" extracted from "
                "gecos field \"%s\"\n", new_name, name);
              name = new_name;
              }
            else DEBUG(D_receive) debug_printf("failed to expand gecos_name string "
              "\"%s\": %s\n", gecos_name, expand_string_message);
            }
          else DEBUG(D_receive) debug_printf("gecos_pattern \"%s\" did not match "
            "gecos field \"%s\"\n", gecos_pattern, name);
          store_free((void *)re);
          }
        originator_name = string_copy(name);
        }

      /* A trusted caller has used -f but not -F */

      else originator_name = US"";
      }

    /* Break the retry loop */

    break;
    }

  if (++i > finduser_retries) break;
  sleep(1);
  }

/* If we cannot get a user login, log the incident and give up, unless the
configuration specifies something to use. When running in the test harness,
any setting of unknown_login overrides the actual name. */

if (!originator_login || f.running_in_test_harness)
  {
  if (unknown_login)
    {
    originator_login = expand_string(unknown_login);
    if (!originator_name && unknown_username)
      originator_name = expand_string(unknown_username);
    if (!originator_name) originator_name = US"";
    }
  if (!originator_login)
    log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Failed to get user name for uid %d",
      (int)real_uid);
  }

/* Ensure that the user name is in a suitable form for use as a "phrase" in an
RFC822 address.*/

originator_name = US parse_fix_phrase(originator_name, Ustrlen(originator_name));

/* If a message is created by this call of Exim, the uid/gid of its originator
are those of the caller. These values are overridden if an existing message is
read in from the spool. */

originator_uid = real_uid;
originator_gid = real_gid;

DEBUG(D_receive) debug_printf("originator: uid=%d gid=%d login=%s name=%s\n",
  (int)originator_uid, (int)originator_gid, originator_login, originator_name);

/* Run in daemon and/or queue-running mode. The function daemon_go() never
returns. We leave this till here so that the originator_ fields are available
for incoming messages via the daemon. The daemon cannot be run in mua_wrapper
mode. */

if (f.daemon_listen || f.inetd_wait_mode || queue_interval > 0)
  {
  if (mua_wrapper)
    {
    fprintf(stderr, "Daemon cannot be run when mua_wrapper is set\n");
    log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Daemon cannot be run when "
      "mua_wrapper is set");
    }

# ifndef DISABLE_TLS
  /* This also checks that the library linkage is working and we can call
  routines in it, so call even if tls_require_ciphers is unset */
    {
# ifdef MEASURE_TIMING
    struct timeval t0;
    (void)gettimeofday(&t0, NULL);
# endif
    if (!tls_dropprivs_validate_require_cipher(FALSE))
      exit(1);
# ifdef MEASURE_TIMING
    report_time_since(&t0, US"validate_ciphers (delta)");
# endif
    }
#endif

  daemon_go();
  }

/* If the sender ident has not been set (by a trusted caller) set it to
the caller. This will get overwritten below for an inetd call. If a trusted
caller has set it empty, unset it. */

if (!sender_ident) sender_ident = originator_login;
else if (!*sender_ident) sender_ident = NULL;

/* Handle the -brw option, which is for checking out rewriting rules. Cause log
writes (on errors) to go to stderr instead. Can't do this earlier, as want the
originator_* variables set. */

if (test_rewrite_arg >= 0)
  {
  f.really_exim = FALSE;
  if (test_rewrite_arg >= argc)
    {
    printf("-brw needs an address argument\n");
    exim_exit(EXIT_FAILURE);
    }
  rewrite_test(exim_str_fail_toolong(argv[test_rewrite_arg], EXIM_EMAILADDR_MAX, "-brw"));
  exim_exit(EXIT_SUCCESS);
  }

/* A locally-supplied message is considered to be coming from a local user
unless a trusted caller supplies a sender address with -f, or is passing in the
message via SMTP (inetd invocation or otherwise). */

if (  !sender_address && !smtp_input
   || !f.trusted_caller && filter_test == FTEST_NONE)
  {
  f.sender_local = TRUE;

  /* A trusted caller can supply authenticated_sender and authenticated_id
  via -oMas and -oMai and if so, they will already be set. Otherwise, force
  defaults except when host checking. */

  if (!authenticated_sender && !host_checking)
    authenticated_sender = string_sprintf("%s@%s", originator_login,
      qualify_domain_sender);
  if (!authenticated_id && !host_checking)
    authenticated_id = originator_login;
  }

/* Trusted callers are always permitted to specify the sender address.
Untrusted callers may specify it if it matches untrusted_set_sender, or if what
is specified is the empty address. However, if a trusted caller does not
specify a sender address for SMTP input, we leave sender_address unset. This
causes the MAIL commands to be honoured. */

if (  !smtp_input && !sender_address
   || !receive_check_set_sender(sender_address))
  {
  /* Either the caller is not permitted to set a general sender, or this is
  non-SMTP input and the trusted caller has not set a sender. If there is no
  sender, or if a sender other than <> is set, override with the originator's
  login (which will get qualified below), except when checking things. */

  if (  !sender_address                  /* No sender_address set */
     ||                                  /*         OR            */
       (sender_address[0] != 0 &&        /* Non-empty sender address, AND */
       !checking))                       /* Not running tests, including filter tests */
    {
    sender_address = originator_login;
    f.sender_address_forced = FALSE;
    sender_address_domain = 0;
    }
  }

/* Remember whether an untrusted caller set the sender address */

f.sender_set_untrusted = sender_address != originator_login && !f.trusted_caller;

/* Ensure that the sender address is fully qualified unless it is the empty
address, which indicates an error message, or doesn't exist (root caller, smtp
interface, no -f argument). */

if (sender_address && *sender_address && sender_address_domain == 0)
  sender_address = string_sprintf("%s@%s", local_part_quote(sender_address),
    qualify_domain_sender);

DEBUG(D_receive) debug_printf("sender address = %s\n", sender_address);

/* Handle a request to verify a list of addresses, or test them for delivery.
This must follow the setting of the sender address, since routers can be
predicated upon the sender. If no arguments are given, read addresses from
stdin. Set debug_level to at least D_v to get full output for address testing.
*/

if (verify_address_mode || f.address_test_mode)
  {
  int exit_value = 0;
  int flags = vopt_qualify;

  if (verify_address_mode)
    {
    if (!verify_as_sender) flags |= vopt_is_recipient;
    DEBUG(D_verify) debug_print_ids(US"Verifying:");
    }

  else
    {
    flags |= vopt_is_recipient;
    debug_selector |= D_v;
    debug_file = stderr;
    debug_fd = fileno(debug_file);
    DEBUG(D_verify) debug_print_ids(US"Address testing:");
    }

  if (recipients_arg < argc)
    while (recipients_arg < argc)
      {
      /* Supplied addresses are tainted since they come from a user */
      uschar * s = string_copy_taint(
	exim_str_fail_toolong(argv[recipients_arg++], EXIM_DISPLAYMAIL_MAX, "address verification"),
	GET_TAINTED);
      while (*s)
        {
        BOOL finished = FALSE;
        uschar *ss = parse_find_address_end(s, FALSE);
        if (*ss == ',') *ss = 0; else finished = TRUE;
        test_address(s, flags, &exit_value);
        s = ss;
        if (!finished)
          while (*++s == ',' || isspace(*s)) ;
        }
      }

  else for (;;)
    {
    uschar * s = get_stdinput(NULL, NULL);
    if (!s) break;
    test_address(string_copy_taint(
	exim_str_fail_toolong(s, EXIM_DISPLAYMAIL_MAX, "address verification (stdin)"),
	GET_TAINTED),
      flags, &exit_value);
    }

  route_tidyup();
  exim_exit(exit_value);
  }

/* Handle expansion checking. Either expand items on the command line, or read
from stdin if there aren't any. If -Mset was specified, load the message so
that its variables can be used, but restrict this facility to admin users.
Otherwise, if -bem was used, read a message from stdin. */

if (expansion_test)
  {
  dns_init(FALSE, FALSE, FALSE);
  if (msg_action_arg > 0 && msg_action == MSG_LOAD)
    {
    uschar * spoolname;
    if (!f.admin_user)
      exim_fail("exim: permission denied\n");
    message_id = US exim_str_fail_toolong(argv[msg_action_arg], MESSAGE_ID_LENGTH, "message-id");
    /* Checking the length of the ID is sufficient to validate it.
    Get an untainted version so file opens can be done. */
    message_id = string_copy_taint(message_id, GET_UNTAINTED);

    spoolname = string_sprintf("%s-H", message_id);
    if ((deliver_datafile = spool_open_datafile(message_id)) < 0)
      printf ("Failed to load message datafile %s\n", message_id);
    if (spool_read_header(spoolname, TRUE, FALSE) != spool_read_OK)
      printf ("Failed to load message %s\n", message_id);
    }

  /* Read a test message from a file. We fudge it up to be on stdin, saving
  stdin itself for later reading of expansion strings. */

  else if (expansion_test_message)
    {
    int save_stdin = dup(0);
    int fd = Uopen(expansion_test_message, O_RDONLY, 0);
    if (fd < 0)
      exim_fail("exim: failed to open %s: %s\n", expansion_test_message,
        strerror(errno));
    (void) dup2(fd, 0);
    filter_test = FTEST_USER;      /* Fudge to make it look like filter test */
    message_ended = END_NOTENDED;
    read_message_body(receive_msg(extract_recipients));
    message_linecount += body_linecount;
    (void)dup2(save_stdin, 0);
    (void)close(save_stdin);
    clearerr(stdin);               /* Required by Darwin */
    }

  /* Only admin users may see config-file macros this way */

  if (!f.admin_user) macros_user = macros = mlast = NULL;

  /* Allow $recipients for this testing */

  f.enable_dollar_recipients = TRUE;

  /* Expand command line items */

  if (recipients_arg < argc)
    while (recipients_arg < argc)
      expansion_test_line(exim_str_fail_toolong(argv[recipients_arg++], EXIM_EMAILADDR_MAX, "recipient"));

  /* Read stdin */

  else
    {
    char *(*fn_readline)(const char *) = NULL;
    void (*fn_addhist)(const char *) = NULL;
    uschar * s;

#ifdef USE_READLINE
    void *dlhandle = set_readline(&fn_readline, &fn_addhist);
#endif

    while (s = get_stdinput(fn_readline, fn_addhist))
      expansion_test_line(s);

#ifdef USE_READLINE
    if (dlhandle) dlclose(dlhandle);
#endif
    }

  /* The data file will be open after -Mset */

  if (deliver_datafile >= 0)
    {
    (void)close(deliver_datafile);
    deliver_datafile = -1;
    }

  exim_exit(EXIT_SUCCESS);
  }


/* The active host name is normally the primary host name, but it can be varied
for hosts that want to play several parts at once. We need to ensure that it is
set for host checking, and for receiving messages. */

smtp_active_hostname = primary_hostname;
if (raw_active_hostname != NULL)
  {
  uschar *nah = expand_string(raw_active_hostname);
  if (nah == NULL)
    {
    if (!f.expand_string_forcedfail)
      log_write(0, LOG_MAIN|LOG_PANIC_DIE, "failed to expand \"%s\" "
        "(smtp_active_hostname): %s", raw_active_hostname,
        expand_string_message);
    }
  else if (nah[0] != 0) smtp_active_hostname = nah;
  }

/* Handle host checking: this facility mocks up an incoming SMTP call from a
given IP address so that the blocking and relay configuration can be tested.
Unless a sender_ident was set by -oMt, we discard it (the default is the
caller's login name). An RFC 1413 call is made only if we are running in the
test harness and an incoming interface and both ports are specified, because
there is no TCP/IP call to find the ident for. */

if (host_checking)
  {
  int x[4];
  int size;

  if (!sender_ident_set)
    {
    sender_ident = NULL;
    if (f.running_in_test_harness && sender_host_port
       && interface_address && interface_port)
      verify_get_ident(1223);		/* note hardwired port number */
    }

  /* In case the given address is a non-canonical IPv6 address, canonicalize
  it. The code works for both IPv4 and IPv6, as it happens. */

  size = host_aton(sender_host_address, x);
  sender_host_address = store_get(48, GET_UNTAINTED);  /* large enough for full IPv6 */
  (void)host_nmtoa(size, x, -1, sender_host_address, ':');

  /* Now set up for testing */

  host_build_sender_fullhost();
  smtp_input = TRUE;
  smtp_in = stdin;
  smtp_out = stdout;
  f.sender_local = FALSE;
  f.sender_host_notsocket = TRUE;
  debug_file = stderr;
  debug_fd = fileno(debug_file);
  fprintf(stdout, "\n**** SMTP testing session as if from host %s\n"
    "**** but without any ident (RFC 1413) callback.\n"
    "**** This is not for real!\n\n",
      sender_host_address);

  memset(sender_host_cache, 0, sizeof(sender_host_cache));
  if (verify_check_host(&hosts_connection_nolog) == OK)
    BIT_CLEAR(log_selector, log_selector_size, Li_smtp_connection);
  log_write(L_smtp_connection, LOG_MAIN, "%s", smtp_get_connection_info());

  /* NOTE: We do *not* call smtp_log_no_mail() if smtp_start_session() fails,
  because a log line has already been written for all its failure exists
  (usually "connection refused: <reason>") and writing another one is
  unnecessary clutter. */

  if (smtp_start_session())
    {
    rmark reset_point;
    for (; (reset_point = store_mark()); store_reset(reset_point))
      {
      if (smtp_setup_msg() <= 0) break;
      if (!receive_msg(FALSE)) break;

      return_path = sender_address = NULL;
      dnslist_domain = dnslist_matched = NULL;
#ifndef DISABLE_DKIM
      dkim_cur_signer = NULL;
#endif
      acl_var_m = NULL;
      deliver_localpart_orig = NULL;
      deliver_domain_orig = NULL;
      callout_address = sending_ip_address = NULL;
      deliver_localpart_data = deliver_domain_data =
      recipient_data = sender_data = NULL;
      sender_rate = sender_rate_limit = sender_rate_period = NULL;
      }
    smtp_log_no_mail();
    }
  exim_exit(EXIT_SUCCESS);
  }


/* Arrange for message reception if recipients or SMTP were specified;
otherwise complain unless a version print (-bV) happened or this is a filter
verification test or info dump.
In the former case, show the configuration file name. */

if (recipients_arg >= argc && !extract_recipients && !smtp_input)
  {
  if (version_printed)
    {
    if (Ustrchr(config_main_filelist, ':'))
      printf("Configuration file search path is %s\n", config_main_filelist);
    printf("Configuration file is %s\n", config_main_filename);
    return EXIT_SUCCESS;
    }

  if (info_flag != CMDINFO_NONE)
    {
    show_exim_information(info_flag, info_stdout ? stdout : stderr);
    return info_stdout ? EXIT_SUCCESS : EXIT_FAILURE;
    }

  if (filter_test == FTEST_NONE)
    exim_usage(called_as);
  }


/* If mua_wrapper is set, Exim is being used to turn an MUA that submits on the
standard input into an MUA that submits to a smarthost over TCP/IP. We know
that we are not called from inetd, because that is rejected above. The
following configuration settings are forced here:

  (1) Synchronous delivery (-odi)
  (2) Errors to stderr (-oep == -oeq)
  (3) No parallel remote delivery
  (4) Unprivileged delivery

We don't force overall queueing options because there are several of them;
instead, queueing is avoided below when mua_wrapper is set. However, we do need
to override any SMTP queueing. */

if (mua_wrapper)
  {
  f.synchronous_delivery = TRUE;
  arg_error_handling = ERRORS_STDERR;
  remote_max_parallel = 1;
  deliver_drop_privilege = TRUE;
  f.queue_smtp = FALSE;
  queue_smtp_domains = NULL;
#ifdef SUPPORT_I18N
  message_utf8_downconvert = -1;	/* convert-if-needed */
#endif
  }


/* Prepare to accept one or more new messages on the standard input. When a
message has been read, its id is returned in message_id[]. If doing immediate
delivery, we fork a delivery process for each received message, except for the
last one, where we can save a process switch.

It is only in non-smtp mode that error_handling is allowed to be changed from
its default of ERRORS_SENDER by argument. (Idle thought: are any of the
sendmail error modes other than -oem ever actually used? Later: yes.) */

if (!smtp_input) error_handling = arg_error_handling;

/* If this is an inetd call, ensure that stderr is closed to prevent panic
logging being sent down the socket and make an identd call to get the
sender_ident. */

else if (f.is_inetd)
  {
  (void)fclose(stderr);
  exim_nullstd();                       /* Re-open to /dev/null */
  verify_get_ident(IDENT_PORT);
  host_build_sender_fullhost();
  set_process_info("handling incoming connection from %s via inetd",
    sender_fullhost);
  }

/* If the sender host address has been set, build sender_fullhost if it hasn't
already been done (which it will have been for inetd). This caters for the
case when it is forced by -oMa. However, we must flag that it isn't a socket,
so that the test for IP options is skipped for -bs input. */

if (sender_host_address && !sender_fullhost)
  {
  host_build_sender_fullhost();
  set_process_info("handling incoming connection from %s via -oMa",
    sender_fullhost);
  f.sender_host_notsocket = TRUE;
  }

/* Otherwise, set the sender host as unknown except for inetd calls. This
prevents host checking in the case of -bs not from inetd and also for -bS. */

else if (!f.is_inetd) f.sender_host_unknown = TRUE;

/* If stdout does not exist, then dup stdin to stdout. This can happen
if exim is started from inetd. In this case fd 0 will be set to the socket,
but fd 1 will not be set. This also happens for passed SMTP channels. */

if (fstat(1, &statbuf) < 0) (void)dup2(0, 1);

/* Set up the incoming protocol name and the state of the program. Root is
allowed to force received protocol via the -oMr option above. If we have come
via inetd, the process info has already been set up. We don't set
received_protocol here for smtp input, as it varies according to
batch/HELO/EHLO/AUTH/TLS. */

if (smtp_input)
  {
  if (!f.is_inetd) set_process_info("accepting a local %sSMTP message from <%s>",
    smtp_batched_input? "batched " : "",
    sender_address ? sender_address : originator_login);
  }
else
  {
  int old_pool = store_pool;
  store_pool = POOL_PERM;
  if (!received_protocol)
    received_protocol = string_sprintf("local%s", called_as);
  store_pool = old_pool;
  set_process_info("accepting a local non-SMTP message from <%s>",
    sender_address);
  }

/* Initialize the session_local_queue-only flag (this will be ignored if
mua_wrapper is set) */

queue_check_only();
session_local_queue_only = queue_only;

/* For non-SMTP and for batched SMTP input, check that there is enough space on
the spool if so configured. On failure, we must not attempt to send an error
message! (For interactive SMTP, the check happens at MAIL FROM and an SMTP
error code is given.) */

if ((!smtp_input || smtp_batched_input) && !receive_check_fs(0))
  exim_fail("exim: insufficient disk space\n");

/* If this is smtp input of any kind, real or batched, handle the start of the
SMTP session.

NOTE: We do *not* call smtp_log_no_mail() if smtp_start_session() fails,
because a log line has already been written for all its failure exists
(usually "connection refused: <reason>") and writing another one is
unnecessary clutter. */

if (smtp_input)
  {
  smtp_in = stdin;
  smtp_out = stdout;
  memset(sender_host_cache, 0, sizeof(sender_host_cache));
  if (verify_check_host(&hosts_connection_nolog) == OK)
    BIT_CLEAR(log_selector, log_selector_size, Li_smtp_connection);
  log_write(L_smtp_connection, LOG_MAIN, "%s", smtp_get_connection_info());
  if (!smtp_start_session())
    {
    mac_smtp_fflush();
    exim_exit(EXIT_SUCCESS);
    }
  }

/* Otherwise, set up the input size limit here and set no stdin stdio buffer
(we handle buferring so as to have visibility of fill level). */

else
  {
  thismessage_size_limit = expand_string_integer(message_size_limit, TRUE);
  if (expand_string_message)
    if (thismessage_size_limit == -1)
      log_write(0, LOG_MAIN|LOG_PANIC_DIE, "failed to expand "
        "message_size_limit: %s", expand_string_message);
    else
      log_write(0, LOG_MAIN|LOG_PANIC_DIE, "invalid value for "
        "message_size_limit: %s", expand_string_message);

  setvbuf(stdin, NULL, _IONBF, 0);
  }

/* Loop for several messages when reading SMTP input. If we fork any child
processes, we don't want to wait for them unless synchronous delivery is
requested, so set SIGCHLD to SIG_IGN in that case. This is not necessarily the
same as SIG_DFL, despite the fact that documentation often lists the default as
"ignore". This is a confusing area. This is what I know:

At least on some systems (e.g. Solaris), just setting SIG_IGN causes child
processes that complete simply to go away without ever becoming defunct. You
can't then wait for them - but we don't want to wait for them in the
non-synchronous delivery case. However, this behaviour of SIG_IGN doesn't
happen for all OS (e.g. *BSD is different).

But that's not the end of the story. Some (many? all?) systems have the
SA_NOCLDWAIT option for sigaction(). This requests the behaviour that Solaris
has by default, so it seems that the difference is merely one of default
(compare restarting vs non-restarting signals).

To cover all cases, Exim sets SIG_IGN with SA_NOCLDWAIT here if it can. If not,
it just sets SIG_IGN. To be on the safe side it also calls waitpid() at the end
of the loop below. Paranoia rules.

February 2003: That's *still* not the end of the story. There are now versions
of Linux (where SIG_IGN does work) that are picky. If, having set SIG_IGN, a
process then calls waitpid(), a grumble is written to the system log, because
this is logically inconsistent. In other words, it doesn't like the paranoia.
As a consequence of this, the waitpid() below is now excluded if we are sure
that SIG_IGN works. */

if (!f.synchronous_delivery)
  {
#ifdef SA_NOCLDWAIT
  struct sigaction act;
  act.sa_handler = SIG_IGN;
  sigemptyset(&(act.sa_mask));
  act.sa_flags = SA_NOCLDWAIT;
  sigaction(SIGCHLD, &act, NULL);
#else
  signal(SIGCHLD, SIG_IGN);
#endif
  }

/* Save the current store pool point, for resetting at the start of
each message, and save the real sender address, if any. */

real_sender_address = sender_address;

/* Loop to receive messages; receive_msg() returns TRUE if there are more
messages to be read (SMTP input), or FALSE otherwise (not SMTP, or SMTP channel
collapsed). */

for (BOOL more = TRUE; more; )
  {
  rmark reset_point = store_mark();
  message_id[0] = 0;

  /* Handle the SMTP case; call smtp_setup_mst() to deal with the initial SMTP
  input and build the recipients list, before calling receive_msg() to read the
  message proper. Whatever sender address is given in the SMTP transaction is
  often ignored for local senders - we use the actual sender, which is normally
  either the underlying user running this process or a -f argument provided by
  a trusted caller. It is saved in real_sender_address. The test for whether to
  accept the SMTP sender is encapsulated in receive_check_set_sender(). */

  if (smtp_input)
    {
    int rc;
    if ((rc = smtp_setup_msg()) > 0)
      {
      if (real_sender_address != NULL &&
          !receive_check_set_sender(sender_address))
        {
        sender_address = raw_sender = real_sender_address;
        sender_address_unrewritten = NULL;
        }

      /* For batched SMTP, we have to run the acl_not_smtp_start ACL, since it
      isn't really SMTP, so no other ACL will run until the acl_not_smtp one at
      the very end. The result of the ACL is ignored (as for other non-SMTP
      messages). It is run for its potential side effects. */

      if (smtp_batched_input && acl_not_smtp_start != NULL)
        {
        uschar *user_msg, *log_msg;
        f.enable_dollar_recipients = TRUE;
        (void)acl_check(ACL_WHERE_NOTSMTP_START, NULL, acl_not_smtp_start,
          &user_msg, &log_msg);
        f.enable_dollar_recipients = FALSE;
        }

      /* Now get the data for the message */

      more = receive_msg(extract_recipients);
      if (!message_id[0])
        {
	cancel_cutthrough_connection(TRUE, US"receive dropped");
        if (more) goto MORELOOP;
        smtp_log_no_mail();               /* Log no mail if configured */
        exim_exit(EXIT_FAILURE);
        }
      }
    else
      {
      cancel_cutthrough_connection(TRUE, US"message setup dropped");
      smtp_log_no_mail();               /* Log no mail if configured */
      exim_exit(rc ? EXIT_FAILURE : EXIT_SUCCESS);
      }
    }

  /* In the non-SMTP case, we have all the information from the command
  line, but must process it in case it is in the more general RFC822
  format, and in any case, to detect syntax errors. Also, it appears that
  the use of comma-separated lists as single arguments is common, so we
  had better support them. */

  else
    {
    int rcount = 0;
    int count = argc - recipients_arg;
    uschar **list = argv + recipients_arg;

    /* These options cannot be changed dynamically for non-SMTP messages */

    f.active_local_sender_retain = local_sender_retain;
    f.active_local_from_check = local_from_check;

    /* Save before any rewriting */

    raw_sender = string_copy(sender_address);

    /* Loop for each argument (supplied by user hence tainted) */

    for (int i = 0; i < count; i++)
      {
      int start, end, domain;
      uschar * errmess;
      /* There can be multiple addresses, so EXIM_DISPLAYMAIL_MAX (tuned for 1) is too short.
       * We'll still want to cap it to something, just in case. */
      uschar * s = string_copy_taint(
	exim_str_fail_toolong(list[i], BIG_BUFFER_SIZE, "address argument"),
	GET_TAINTED);

      /* Loop for each comma-separated address */

      while (*s)
        {
        BOOL finished = FALSE;
        uschar *recipient;
        uschar *ss = parse_find_address_end(s, FALSE);

        if (*ss == ',') *ss = 0; else finished = TRUE;

        /* Check max recipients - if -t was used, these aren't recipients */

        if (recipients_max > 0 && ++rcount > recipients_max &&
            !extract_recipients)
          if (error_handling == ERRORS_STDERR)
            {
            fprintf(stderr, "exim: too many recipients\n");
            exim_exit(EXIT_FAILURE);
            }
          else
            return
              moan_to_sender(ERRMESS_TOOMANYRECIP, NULL, NULL, stdin, TRUE)?
                errors_sender_rc : EXIT_FAILURE;

#ifdef SUPPORT_I18N
	{
	BOOL b = allow_utf8_domains;
	allow_utf8_domains = TRUE;
#endif
        recipient =
          parse_extract_address(s, &errmess, &start, &end, &domain, FALSE);

#ifdef SUPPORT_I18N
        if (recipient)
          if (string_is_utf8(recipient)) message_smtputf8 = TRUE;
          else allow_utf8_domains = b;
	}
#else
        ;
#endif
        if (domain == 0 && !f.allow_unqualified_recipient)
          {
          recipient = NULL;
          errmess = US"unqualified recipient address not allowed";
          }

        if (!recipient)
          if (error_handling == ERRORS_STDERR)
            {
            fprintf(stderr, "exim: bad recipient address \"%s\": %s\n",
              string_printing(list[i]), errmess);
            exim_exit(EXIT_FAILURE);
            }
          else
            {
            error_block eblock;
            eblock.next = NULL;
            eblock.text1 = string_printing(list[i]);
            eblock.text2 = errmess;
            return
              moan_to_sender(ERRMESS_BADARGADDRESS, &eblock, NULL, stdin, TRUE)?
                errors_sender_rc : EXIT_FAILURE;
            }

        receive_add_recipient(string_copy_taint(recipient, GET_TAINTED), -1);
        s = ss;
        if (!finished)
          while (*(++s) != 0 && (*s == ',' || isspace(*s)));
        }
      }

    /* Show the recipients when debugging */

    DEBUG(D_receive)
      {
      if (sender_address) debug_printf("Sender: %s\n", sender_address);
      if (recipients_list)
        {
        debug_printf("Recipients:\n");
        for (int i = 0; i < recipients_count; i++)
          debug_printf("  %s\n", recipients_list[i].address);
        }
      }

    /* Run the acl_not_smtp_start ACL if required. The result of the ACL is
    ignored; rejecting here would just add complication, and it can just as
    well be done later. Allow $recipients to be visible in the ACL. */

    if (acl_not_smtp_start)
      {
      uschar *user_msg, *log_msg;
      f.enable_dollar_recipients = TRUE;
      (void)acl_check(ACL_WHERE_NOTSMTP_START, NULL, acl_not_smtp_start,
        &user_msg, &log_msg);
      f.enable_dollar_recipients = FALSE;
      }

    /* Pause for a while waiting for input.  If none received in that time,
    close the logfile, if we had one open; then if we wait for a long-running
    datasource (months, in one use-case) log rotation will not leave us holding
    the file copy. */

    if (!receive_timeout)
      if (poll_one_fd(0, POLLIN, 30*60*1000) == 0)	/* 30 minutes */
	mainlog_close();

    /* Read the data for the message. If filter_test is not FTEST_NONE, this
    will just read the headers for the message, and not write anything onto the
    spool. */

    message_ended = END_NOTENDED;
    more = receive_msg(extract_recipients);

    /* more is always FALSE here (not SMTP message) when reading a message
    for real; when reading the headers of a message for filter testing,
    it is TRUE if the headers were terminated by '.' and FALSE otherwise. */

    if (!message_id[0]) exim_exit(EXIT_FAILURE);
    }  /* Non-SMTP message reception */

  /* If this is a filter testing run, there are headers in store, but
  no message on the spool. Run the filtering code in testing mode, setting
  the domain to the qualify domain and the local part to the current user,
  unless they have been set by options. The prefix and suffix are left unset
  unless specified. The the return path is set to to the sender unless it has
  already been set from a return-path header in the message. */

  if (filter_test != FTEST_NONE)
    {
    deliver_domain = ftest_domain ? ftest_domain : qualify_domain_recipient;
    deliver_domain_orig = deliver_domain;
    deliver_localpart = ftest_localpart ? US ftest_localpart : originator_login;
    deliver_localpart_orig = deliver_localpart;
    deliver_localpart_prefix = US ftest_prefix;
    deliver_localpart_suffix = US ftest_suffix;
    deliver_home = originator_home;

    if (!return_path)
      {
      printf("Return-path copied from sender\n");
      return_path = string_copy(sender_address);
      }
    else
      printf("Return-path = %s\n", (return_path[0] == 0)? US"<>" : return_path);
    printf("Sender      = %s\n", (sender_address[0] == 0)? US"<>" : sender_address);

    receive_add_recipient(
      string_sprintf("%s%s%s@%s",
        ftest_prefix ? ftest_prefix : US"",
        deliver_localpart,
        ftest_suffix ? ftest_suffix : US"",
        deliver_domain), -1);

    printf("Recipient   = %s\n", recipients_list[0].address);
    if (ftest_prefix) printf("Prefix    = %s\n", ftest_prefix);
    if (ftest_suffix) printf("Suffix    = %s\n", ftest_suffix);

    if (chdir("/"))   /* Get away from wherever the user is running this from */
      {
      DEBUG(D_receive) debug_printf("chdir(\"/\") failed\n");
      exim_exit(EXIT_FAILURE);
      }

    /* Now we run either a system filter test, or a user filter test, or both.
    In the latter case, headers added by the system filter will persist and be
    available to the user filter. We need to copy the filter variables
    explicitly. */

    if (filter_test & FTEST_SYSTEM)
      if (!filter_runtest(filter_sfd, filter_test_sfile, TRUE, more))
        exim_exit(EXIT_FAILURE);

    memcpy(filter_sn, filter_n, sizeof(filter_sn));

    if (filter_test & FTEST_USER)
      if (!filter_runtest(filter_ufd, filter_test_ufile, FALSE, more))
        exim_exit(EXIT_FAILURE);

    exim_exit(EXIT_SUCCESS);
    }

  /* Else act on the result of message reception. We should not get here unless
  message_id[0] is non-zero. If queue_only is set, session_local_queue_only
  will be TRUE. If it is not, check on the number of messages received in this
  connection. */

  if (  !session_local_queue_only
     && smtp_accept_queue_per_connection > 0
     && receive_messagecount > smtp_accept_queue_per_connection)
    {
    session_local_queue_only = TRUE;
    queue_only_reason = 2;
    }

  /* Initialize local_queue_only from session_local_queue_only. If it is false,
  and queue_only_load is set, check that the load average is below it. If it is
  not, set local_queue_only TRUE. If queue_only_load_latch is true (the
  default), we put the whole session into queue_only mode. It then remains this
  way for any subsequent messages on the same SMTP connection. This is a
  deliberate choice; even though the load average may fall, it doesn't seem
  right to deliver later messages on the same call when not delivering earlier
  ones. However, there are odd cases where this is not wanted, so this can be
  changed by setting queue_only_load_latch false. */

  if (!(local_queue_only = session_local_queue_only) && queue_only_load >= 0)
    if ((local_queue_only = (load_average = OS_GETLOADAVG()) > queue_only_load))
      {
      queue_only_reason = 3;
      if (queue_only_load_latch) session_local_queue_only = TRUE;
      }

  /* If running as an MUA wrapper, all queueing options and freezing options
  are ignored. */

  if (mua_wrapper)
    local_queue_only = f.queue_only_policy = f.deliver_freeze = FALSE;

  /* Log the queueing here, when it will get a message id attached, but
  not if queue_only is set (case 0). Case 1 doesn't happen here (too many
  connections). */

  if (local_queue_only)
    {
    cancel_cutthrough_connection(TRUE, US"no delivery; queueing");
    switch(queue_only_reason)
      {
      case 2:
	log_write(L_delay_delivery,
		LOG_MAIN, "no immediate delivery: more than %d messages "
	  "received in one connection", smtp_accept_queue_per_connection);
	break;

      case 3:
	log_write(L_delay_delivery,
		LOG_MAIN, "no immediate delivery: load average %.2f",
		(double)load_average/1000.0);
      break;
      }
    }

  else if (f.queue_only_policy || f.deliver_freeze)
    cancel_cutthrough_connection(TRUE, US"no delivery; queueing");

  /* Else do the delivery unless the ACL or local_scan() called for queue only
  or froze the message. Always deliver in a separate process. A fork failure is
  not a disaster, as the delivery will eventually happen on a subsequent queue
  run. The search cache must be tidied before the fork, as the parent will
  do it before exiting. The child will trigger a lookup failure and
  thereby defer the delivery if it tries to use (for example) a cached ldap
  connection that the parent has called unbind on. */

  else
    {
    pid_t pid;
    search_tidyup();

    if ((pid = exim_fork(US"local-accept-delivery")) == 0)
      {
      int rc;
      close_unwanted();      /* Close unwanted file descriptors and TLS */
      exim_nullstd();        /* Ensure std{in,out,err} exist */

      /* Re-exec Exim if we need to regain privilege (note: in mua_wrapper
      mode, deliver_drop_privilege is forced TRUE). */

      if (geteuid() != root_uid && !deliver_drop_privilege && !unprivileged)
        {
	delivery_re_exec(CEE_EXEC_EXIT);
        /* Control does not return here. */
        }

      /* No need to re-exec */

      rc = deliver_message(message_id, FALSE, FALSE);
      search_tidyup();
      exim_underbar_exit(!mua_wrapper || rc == DELIVER_MUA_SUCCEEDED
        ? EXIT_SUCCESS : EXIT_FAILURE);
      }

    if (pid < 0)
      {
      cancel_cutthrough_connection(TRUE, US"delivery fork failed");
      log_write(0, LOG_MAIN|LOG_PANIC, "failed to fork automatic delivery "
        "process: %s", strerror(errno));
      }
    else
      {
      release_cutthrough_connection(US"msg passed for delivery");

      /* In the parent, wait if synchronous delivery is required. This will
      always be the case in MUA wrapper mode. */

      if (f.synchronous_delivery)
	{
	int status;
	while (wait(&status) != pid);
	if ((status & 0x00ff) != 0)
	  log_write(0, LOG_MAIN|LOG_PANIC,
	    "process %d crashed with signal %d while delivering %s",
	    (int)pid, status & 0x00ff, message_id);
	if (mua_wrapper && (status & 0xffff) != 0) exim_exit(EXIT_FAILURE);
	}
      }
    }

  /* The loop will repeat if more is TRUE. If we do not know know that the OS
  automatically reaps children (see comments above the loop), clear away any
  finished subprocesses here, in case there are lots of messages coming in
  from the same source. */

#ifndef SIG_IGN_WORKS
  while (waitpid(-1, NULL, WNOHANG) > 0);
#endif

MORELOOP:
  return_path = sender_address = NULL;
  authenticated_sender = NULL;
  deliver_localpart_orig = NULL;
  deliver_domain_orig = NULL;
  deliver_host = deliver_host_address = NULL;
  dnslist_domain = dnslist_matched = NULL;
#ifdef WITH_CONTENT_SCAN
  malware_name = NULL;
#endif
  callout_address = NULL;
  sending_ip_address = NULL;
  deliver_localpart_data = deliver_domain_data =
  recipient_data = sender_data = NULL;
  acl_var_m = NULL;
  for(int i = 0; i < REGEX_VARS; i++) regex_vars[i] = NULL;

  store_reset(reset_point);
  }

exim_exit(EXIT_SUCCESS);   /* Never returns */
return 0;                  /* To stop compiler warning */
}


/* End of exim.c */