summaryrefslogtreecommitdiff
path: root/ikisite
blob: 88a3def71330311c54ccb1d09c93d40cb5130c67 (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
#!/usr/bin/perl
package IkiWiki::Hosting;

no lib '.';
use warnings;
use strict;
use IkiWiki;
use IkiWiki::Hosting;

my $apache_before_2_4=undef;

sub apache_before_2_4 {
	return $apache_before_2_4 if defined $apache_before_2_4;
	my $query_result = getshell('dpkg-query', '-W', 'apache2.2-common');
	if ($query_result =~ m/^apache2.2-common\s+2\.[012]\./) {
		$apache_before_2_4=1;
	}
	else {
		$apache_before_2_4=0;
	}
	return $apache_before_2_4;
}

sub meta_create {
	required => [qw{hostname}],
	options => [qw{type=s vcs=s wikiname=s owner=s admin=s adminemail=s createnonce!}],
	description => "create new site",
	section => "primary",
}
sub create {
	my $hostname=lc(shift);
	my %options=(%config, @_);

	assert_root();
	my $nonce=$ENV{IKISITE_NONCE}; # stash for later
	assert_wrapper_unsafe();

	# All inputs are verified, so that ikisite create can be run
	# from a suid wrapper.
	if (! exists $options{admin}) {
		error "must specify --admin=username";
	}
	if (! defined IkiWiki::openiduser($options{admin}) && ! defined IkiWiki::emailuser($options{admin})) {
		error "$options{admin} is not a valid openid or email";
	}
	my $owner=exists $options{owner} ? $options{owner} : $options{admin};
	if (! defined IkiWiki::openiduser($owner) && ! defined IkiWiki::emailuser($owner)) {
		error "$owner is not a valid openid or email";
	}
	if ($options{vcs} !~ /^(git)$/) {
		error "unsupported vcs $options{vcs}";
	}

	# This will also fail if the hostname is invalid.
	locksite($hostname);
	assert_siteexists($hostname, 0);

	# Avoid path traversal etc when looking up autosetup file.
	$options{type}=~s/[^-a-zA-Z0-9]//g if defined $options{type};

	if (! isemail($options{adminemail})) {
		$options{adminemail}=$config{adminemail};
	}
	if (! defined $options{wikiname} || ! length $options{wikiname}) {
		$options{wikiname}=wikiname($hostname);
	}

	# Create user
	usercreate($hostname);
	my $home = homedir($hostname);

	# Enable DNS early, to help give it time to propigate.
	enabledns($hostname);

	# Setup ikiwiki. It creates the VCS repository, and builds
	# the site. Configuration is passed in via the environment.
	$ENV{IKIWIKI_WIKINAME}=$options{wikiname};
	$ENV{IKIWIKI_HOSTNAME}=$hostname;
	$ENV{IKIWIKI_VCS}=$options{vcs};
	$ENV{IKIWIKI_REPOSITORY}=$home."/source.$options{vcs}";
	$ENV{IKIWIKI_ADMIN}=$options{admin};
	$ENV{IKIWIKI_OWNER}=$owner;
	$ENV{IKIWIKI_CREATED}=time;
	$ENV{IKIWIKI_ADMINEMAIL}=$options{adminemail};
	$ENV{IKIWIKI_SRCDIR}=srcdir($hostname);
	$ENV{IKIWIKI_DESTDIR}=destdir($hostname);
	$ENV{IKIWIKI_CGIDIR}=cgidir($hostname);
	$ENV{IKIWIKI_LOGDIR}=logdir($hostname);
	$ENV{IKIWIKI_OPENID_REALM}=$config{openid_realm};
	$ENV{IKIWIKI_GITDAEMONUSER}=$config{gitdaemonuser};
	# This is normally 06755, but for new users (with suexec) we can't use
	# suid/sgid
	$ENV{IKIWIKI_CGI_WRAPPERMODE}="0755";
	$ENV{IKIWIKI_GIT_WRAPPERMODE}="6755";
	my $autosetup=defined $options{type} ? "$config{autosetupdir}/auto-$options{type}.setup" : undef;
	if (! defined $autosetup || ! -e $autosetup) {
		$autosetup="$config{autosetupdir}/auto.setup";
	}
	add_wikilist($hostname);
	eval q{use Cwd q{abs_path}};
	$autosetup=abs_path($autosetup);
	runas(username($hostname), sub {
		chdir($home) || error "chdir $home: $!";
		shell("ikiwiki", "-setup", $autosetup);
		chmod(0600, "$home/ikiwiki.setup") || error "chmod $home/ikiwiki.setup: $!";
		chmod(0700, "$home/source") || error "chmod $home/source: $!";
	});
	
	if ($options{vcs} eq "git") {
		githooks($ENV{IKIWIKI_REPOSITORY});
	}

	createsetupbranch($hostname);

	calendar($hostname);

	enable($hostname);

	accountinglog("create", $hostname, $owner);

	if ($options{createnonce}) {
		# If IKISITE_NONCE was set to a non-dummy nonce
		# initially, create a nonce with that value.
		if (defined $nonce && $nonce ne 'dummy') {
			return createnonce($hostname, value => $nonce);
		}
		else {
			return createnonce($hostname);
		}
	}
	else {
		return 1;
	}
}

sub meta_delete {
	required => [qw{hostname}],
	options => [qw{}],
	description => "delete a site",
	section => "primary",
}
sub delete {
	my $hostname=lc(shift);
	
	assert_root();
	locksite($hostname);
	assert_siteexists($hostname, 1);
	assert_wrapper_safe($hostname);
	
	accountinglog("delete", $hostname);

	disable($hostname);
	ikiwikiclean($hostname);
	if ($config{morguedir}) {
		backup($hostname, morgue => 1);
	}
	remove_letsencrypt_config($hostname);
	userdelete($hostname);
}

sub meta_backup {
	required => [qw{hostname}],
	options => [qw{filename=s morgue stdout srconly}],
	description => "back up a site to the specified output",
	section => "primary",
}
sub backup {
	my $hostname=lc(shift);
	my %options=@_;
	
	assert_root();
	locksite($hostname);
	assert_siteexists($hostname, 1);
	assert_wrapper_denied();

	my $file;
	if ($options{stdout}) {
		$file="/dev/stdout";
	}
	elsif ($options{morgue}) {
		if (! $config{morguedir}) {
			error "morguedir not set (configure in $config{ikisite_conffile})";
		}
		shell("mkdir", "-p", $config{morguedir});
		$file=$config{morguedir}."/$hostname.backup";
	}
	elsif (defined $options{filename}) {
		eval q{use Cwd q{abs_path}};
		error $@ if $@;
		$file=abs_path($options{filename});
	}
	else {
		error "must specify --filename=value or --morgue or --stdout"
	}
	
	# Ensure setup and wiki state are committed to the setup branch.
	# Note that since this pushes into the repo, it triggers ikiwiki
	# to run, and thus it must come before lockwiki, to avoid a
	# deadlock.
	commitsetup($hostname);
	
	# Generate VCS dump.
	my $vcs=getsetup($hostname, "rcs");
	my $dump=homedir($hostname)."/$vcs.dump";
	my @tobackup="$vcs.dump";
	if (-e $dump) {
		unlink($dump) || error("unlink $dump: $!");
	}
	if ($vcs eq "git") {
		chdir(repository($hostname)) || error "chdir repository: $!";
		# The wiki is not locked while this is run to the git repo
		# could be changed; this assumes that git is reasonably
		# atomic in its updating of eg, refs, so that the bundle
		# will either see the new or old refs, and not no refs.
		# Also, this relies on git writing objects before
		# updating the refs to point to them.
		runas(username($hostname), sub {
			shell("git", "bundle", "create", $dump, "--all");
		});
		# git bundle does not preserve git's config file,
		# so that will be backed up separately.
		push @tobackup, repository($hostname)."/config";
	}
	else {
		error "backup not implemented for $vcs";
	}

	foreach my $extrafile (glob(homedir($hostname)."/.ssh/id_*"),
	                       homedir($hostname)."/.ssh/known_hosts",
		               glob(homedir($hostname)."/apache/*"),) {
		push @tobackup, $extrafile if -e $extrafile;
	}

	# Copy rootconfig into home directory so it can be included
	# in backup. Nuke ~/rootconfig if it already exists;
	# the user should not be allowed to add files to rootconfig!
	my $tmprootconfig=homedir($hostname)."/rootconfig/";
	my @rootconfigs=glob(rootconfig($hostname)."/*");
	if (@rootconfigs) {
		if (! mkdir($tmprootconfig)) {
			system("rm", "-rf", $tmprootconfig);
			if (! mkdir("rootconfig")) {
				error "failed to create $tmprootconfig directory: $!";
			}
		}

		foreach my $config (@rootconfigs) {
			shell("cp", "-a", $config, $tmprootconfig."/");
		}
		push @tobackup, $tmprootconfig;
	}

	# Prepare for running tar
	chdir(homedir($hostname)) || error "chdir HOME: $!";
	my $umask=umask(0277); # owner read-only backup file
	my $homedir=homedir($hostname);
	my $runtar=sub {
		my $l=shift;
		shell("tar", @_, $file,
			map {
				# avoid full paths to home directory in tarball
				my $f=$_;
				$f=~s/\Q$homedir\E\///;
				$f;
			} @$l,
			"--owner=root", "--group=root");	
	};

	# Back up the wiki's state files.
	# The wiki is locked while doing this, to avoid any files being
	# in an inconsistent state during backup. To keep it locked
	# for a minimum time, the backup tarball is created here,
	# containing only the state files, and the other files in @tobackup
	# will be appended later once the lock is released.
	$config{wikistatedir}=srcdir($hostname)."/.ikiwiki";
	IkiWiki::lockwiki();
	my @tobackupfirst;
	if (! $options{srconly}) {
		# sessions.db is not included. The file can get quite large
		# and the worst that will happen if it's lost is users
		# have to log back in earlier than usuual.
		foreach my $ikifile (qw{indexdb userdb transient}) {
			my $f=srcdir($hostname)."/.ikiwiki/$ikifile";
			push @tobackupfirst, $f if -e $f;
		}
		$runtar->(\@tobackupfirst, "cf")
			if @tobackupfirst;
	}
	IkiWiki::unlockwiki();

	# Back up everything else.
	if (@tobackupfirst) {
		$runtar->(\@tobackup, "--append", "-f");
	}
	else {
		$runtar->(\@tobackup, "cf");
	}

	# Cleanup.
	umask($umask);
	unlink($dump);
	shell("rm", "-rf", $tmprootconfig);

	return; # avoid writing status to stdout
}

sub meta_restore {
	required => [qw{hostname}],
	options => [qw{filename=s morgue! stdin! no-setup! no-sshkeys!}],
	description => "restore a site from the specified input",
	section => "primary",
}
sub restore {
	my $hostname=lc(shift);
	my %options=@_;
	
	assert_root();
	locksite($hostname);
	assert_siteexists($hostname, 0);
	assert_wrapper_denied();

	my $file;
	if ($options{stdin}) {
		$file="/dev/stdin";
	}
	elsif ($options{morgue}) {
		if (! $config{morguedir}) {
			error "morguedir not set (configure in $config{ikisite_conffile})";
		}
		$file=$config{morguedir}."/$hostname.backup";
	}
	elsif (defined $options{filename}) {
		eval q{use Cwd q{abs_path}};
		error $@ if $@;
		$file=abs_path($options{filename});
	}
	else {
		error "must specify --filename=value or --morgue or --stdin"
	}

	if (! -e $file) {
		error "$file does not exist";
	}

	usercreate($hostname);
	
	# Enable DNS early, to help give it time to propigate.
	enabledns($hostname) unless $options{"no-setup"};
	
	# Extract the VCS dump from the backup tarball.
	chdir(homedir($hostname)) || error "chdir HOME: $!";
	shell("tar", "xf", $file, "--wildcards", "*.dump");
	my $dump=glob("*.dump");
	my ($vcs)=$dump=~/(.*)\.dump/;
	my $repository="source.$vcs";

	# Extract repository from VCS dump and then check out the source
	# and setup branches from VCS. Since VCS typically have issues
	# around checking out directly into an existing home directory,
	# setup is extracted into a home-tmp.
	if ($vcs eq "git") {
		shell("git", "clone", $dump, $repository, "--bare");
		# denyNonFastforwards and sharedrepository are normally
		# set by git init --shared; replicate that in our bare clone.
		chdir($repository) || error "chdir repository: $!";
		shell("git", "config", "core.sharedrepository", 1);
		shell("git", "config", "receive.denyNonFastforwards", "true");
		chdir(homedir($hostname)) || error "chdir HOME: $!";

		githooks($repository);

		shell("git", "clone", $repository, "source");
		shell("git", "clone", $repository, "home-tmp",
			"--branch", "setup");

		chmod(0700, "source") || error "chmod source: $!";
		chmod(0700, "home-tmp/.git") || error "chmod home-tmp/.git: $!";
		chmod(0600, "home-tmp/ikiwiki.setup") || error "chmod home-tmp/ikiwiki.setup: $!";
		chmod(0600, "home-tmp/.gitignore") || error "chmod home-tmp/.gitignore: $!"
			if -e "home-tmp/.gitignore";
	}
	else {
		error "restore not implemented for $vcs";
	}
	unlink($dump) || error "unlink: $!";
	
	# XXX Using rsync to merge the tree in means more disk IO
	# than strictly necessary. But is easy.
	shell("rsync", "-a", "--exclude=.ssh/", "home-tmp/", ".");

	# Extract remainder of backup tarball.
	shell("tar", "xf", $file, "--exclude", $dump);

	# Move rootconfig into place.
	if (-d "rootconfig") {
		shell("rm", "-rf", rootconfig($hostname));
		shell("mv", "rootconfig", rootconfig($hostname));
	}
	
	# Make all extracted files be owned by the user.
	my $username=username($hostname);
	shell("chown", "$username:$username", "-R", ".");

	# apache/ should be readable by www-data.
	if (-d "apache") {
		shell("chgrp", "www-data", "apache");
		chmod(0750, "apache") || error "chmod apache: $!";
	}

	if (! $options{'no-sshkeys'}) {
		# Restore ssh last, to ensure the git repo is set up
		# before any attempt is made to push changes into it.
		foreach my $file (glob("home-tmp/.ssh/*")) {
			if (-f $file) {
				shell("mv", "-f", $file,
					".ssh/".IkiWiki::basename($file));
			}
			
		}
		# ssh requires this file be mode 400, and most
		# VCS do not preserve the mode.
		shell("chmod", "400", ".ssh/authorized_keys")
			if -e ".ssh/authorized_keys";
	}
	else {
		# record that the ssh keys were dropped
		commitsetup($hostname);
	}
	
	shell("rm", "-rf", "home-tmp");
	
	if (! $options{"no-setup"}) {
		ikiwikisetup($hostname);
		enable($hostname);
		accountinglog("create", $hostname, getsetup($hostname, "owner"));
	}

	# This is the same as IkiWiki::Setup::Automator does when
	# creating a new site.
	runas($username, sub {
		mkdir(homedir($hostname)."/.ikiwiki");
		open (WIKILIST, ">", homedir($hostname)."/.ikiwiki/wikilist") || die "wikilist: $!";
		print WIKILIST $username." ".homedir($hostname)."/ikiwiki.setup\n";
		close WIKILIST;
	});
	add_wikilist($hostname);

	return 1;
}

sub meta_branch {
	required => [qw{oldhostname newhostname}],
	options => [qw{owner=s admin=s ... adminemail=s wikiname=s createnonce!}],
	description => "generate a branch of a site with a new hostname,
		optionally with a different admin",
	section => "primary",
}
sub branch {
	my $oldhostname=lc(shift);
	my $newhostname=lc(shift);
	my %options=@_;
	
	assert_root();
	my $nonce=$ENV{IKISITE_NONCE}; # stash for later
	assert_wrapper_unsafe();
	
	# All inputs are verified, so that ikisite create can be run
	# from a suid wrapper.
	my $adminchanged=0;
	my %oldadmin=map { $_ => 1 } @{getsetup($oldhostname, "adminuser")};
	my $owner=$options{owner};
	if (exists $options{admin}) {
		foreach my $admin (@{$options{admin}}) {
			if (! defined IkiWiki::openiduser($admin) && ! defined IkiWiki::emailuser($admin)) {
				error "$admin is not a valid openid or email";
			}
			if (! exists $oldadmin{$admin}) {
				$adminchanged=1;
			}
			$owner=$admin unless defined $owner;
		}
	}
	if (defined $owner && ! defined IkiWiki::openiduser($owner) && ! defined IkiWiki::emailuser($owner)) {
		error "$owner is not a valid openid or email";
	}

	# These will also fail if the hostnames are invalid.
	locksite($oldhostname);
	assert_siteexists($oldhostname, 1);
	locksite($newhostname);
	assert_siteexists($newhostname, 0);

	# The adminemail must be changed when the admin is changed.
	# If it's not valid, use the default value.
	if (exists $options{adminemail} && ! isemail($options{adminemail})) {
		$options{adminemail}=$config{adminemail};
	}
	if (! exists $options{adminemail} && $adminchanged) {
		$options{adminemail}=$config{adminemail};
	}
	
	eval q{use File::Temp};
	my ($tempfh, $tempfile) = File::Temp::tempfile(UNLINK => 1);
	backup($oldhostname, filename => $tempfile);
	restore($newhostname, filename => $tempfile, "no-setup" => 1,
		# don't include database files in branch
		# (no email subscriptions, etc)
		srconly => 1,
		# when admin is changed, do not copy ssh keys from
		# oldhostname
		"no-sshkeys" => ($adminchanged ? 1 : 0));
	
	# Enable DNS early, to help give it time to propigate.
	enabledns($newhostname);
	
	my $vcs=getsetup($oldhostname, "rcs");
	my $vcswrapper;
	# XXX this duplicates code from IkiWiki::Setup::Automator
	if ($vcs eq 'git') {
		$vcswrapper=repository($newhostname)."/hooks/post-update";
	}
	else {
		error "branch not implemented for $vcs";
	}

	# The srcdir may be inside a subdirectory of the
	# repo. If so, this should be preserved when branching.
	my $oldsrcdir=srcdir($oldhostname);
	my $oldhomedir=homedir($oldhostname);
	$oldsrcdir=~s/^\Q$oldhomedir\E\//\//;
	my $srcdir=homedir($newhostname).$oldsrcdir;
	
	my $historyurl=getsetup($oldhostname, "historyurl");
	$historyurl=~s/source\.\Q$oldhostname\E/source.$newhostname/i
		if defined $historyurl;
	my $diffurl=getsetup($oldhostname, "diffurl");
	$diffurl=~s/source\.\Q$oldhostname\E/source.$newhostname/i
		if defined $diffurl;

	my @settings;
	push @settings, set => [
		"wikiname" ."=". (exists $options{wikiname} ? $options{wikiname} : wikiname($newhostname)),
		"srcdir" ."=". $srcdir,
		"destdir" ."=". destdir($newhostname),
		"url" ."=". "http://$newhostname",
		"cgiurl" ."=". "http://$newhostname/ikiwiki.cgi",
		"openid_cgiurl" ."=". "http://$newhostname/ikiwiki.cgi",
		"cgi_wrapper" ."=". cgidir($newhostname)."/ikiwiki.cgi",
		"libdir" ."=". homedir($newhostname)."/.ikiwiki",
		$vcs."_wrapper" ."=". $vcswrapper,
		(defined $historyurl ? "historyurl" ."=". $historyurl : ()),
		(defined $diffurl ? "diffurl" ."=". $diffurl : ()),
		(exists $options{adminemail} ? "adminemail=$options{adminemail}" : ()),
		(defined $owner ? "owner=$owner" : ()),
		"created" ."=". time,
		"hostname" ."=". $newhostname,
		"parent" ."=". $oldhostname,
	];
		
	eval q{use YAML::Syck};
	die $@ if $@;
	push @settings, 'set-yaml' => [
		"urlalias=".Dump([]),
		($options{admin} ? "adminuser=".Dump($options{admin}) : ()),
		"ENV=".Dump({TMPDIR => homedir($newhostname)."/tmp"}),
	];

	# avoid git pushes from branch unless explicitly turned back on
	push @settings, 'disable-plugin' => ['gitpush'];
	
	changesetup($newhostname,
		rebuild => 1,
		commit => 1,
		message => "branched $newhostname from $oldhostname",
		@settings,
	);

	if ($options{admin}) {
		# TODO modify .ikiwiki/userdb to add new admin, if not an openid or email?
	}

	enable($newhostname);
	
	accountinglog("create", $newhostname,
	       defined $owner ? $owner : getsetup($newhostname, "owner"));
	
	if ($options{createnonce}) {
		# If IKISITE_NONCE was set to a non-dummy nonce
		# initially, create a nonce with that value.
		if (defined $nonce && $nonce ne 'dummy') {
			return createnonce($newhostname, value => $nonce);
		}
		else {
			return createnonce($newhostname);
		}
	}
	else {
		return 1;
	}
}

sub meta_rename {
	required => [qw{oldhostname newhostname}],
	options => [qw{}],
	description => "rename a site to use a different hostname",
	section => "primary",
}
sub rename {
	my $oldhostname=lc(shift);
	my $newhostname=lc(shift);
	
	assert_root();
	locksite($oldhostname);
	assert_siteexists($oldhostname, 1);
	locksite($newhostname);
	assert_siteexists($newhostname, 0);
	assert_wrapper_denied();

	branch($oldhostname, $newhostname);
	IkiWiki::Hosting::delete($oldhostname); # silly perl, not the builtin delete..

	return 1;
}

sub meta_compact {
	required => [qw{hostname}],
	options => [qw{aggressive!}],
	description => "log rotation and vcs cleanup for a site",
	section => "primary",
}
sub compact {
	my $hostname=lc(shift);
	my %options=@_;
	
	assert_root();
	locksite($hostname);
	assert_siteexists($hostname, 1);
	assert_wrapper_denied();

	# log rotation
	my $log_period=getsetup($hostname, "log_period") || 7;
	$log_period = 2 if $log_period < 2; # savelog does not support 0 or 1
	chdir(logdir($hostname)) || error "chdir logs: $!";
	shell("savelog", "-p", "-n", "-t", "-c", $log_period,
		"ikisite.log", "error.log", "access.log");
	# Note that apache still has logs open, but this is ok since
	# the logs are only renamed to .0, so it can still write to them.
	# So, apache is not HUP'd -- but it would be a good idea to
	# HUP apache after running a compact cron job.
	
	# VCS optimisations
	if (getsetup($hostname, "rcs") eq "git") {
		runas(username($hostname), sub {
			foreach my $repo (repository($hostname), srcdir($hostname)) {
				chdir($repo) || error "chdir $repo: $!";
				shell("git", "gc",
					$options{aggressive} ? "--aggressive" : ());
			}
		});
	}

	return 1;
}

sub meta_list {
	required => [qw{}],
	options => [qw{admin=s ... owner=s ... extended! aggregatedue!}],
	description => "lists all sites that exist on the current host, or match a condition",
	section => "query",
}
sub list {
	my %options=@_;

	# Root is needed to read setup files in some circumstances.
	assert_root();

	# All inputs (and outputs) are safe, so this can be run from
	# a suid wrapper.
	assert_wrapper_unsafe();

	my @list;
	my %seen;
	setpwent();
	while (my $user=(getpwent())[0]) {
		my $hostname=userlookup(user => $user);
		next unless defined $hostname && length $hostname;

		$seen{$hostname}=1 if $options{extended};

		my $owner;
		my %admins;
		if ($options{extended} || $options{owner} || $options{admin}) {
			# avoid list crashing if setup file is broken
			eval { $owner=getsetup($hostname, "owner") };
			next if $@;
			%admins=map { $_ => 1 } @{getsetup($hostname, "adminuser")};
		}

		my $isowner=defined $options{owner} && grep { $_ eq $owner } @{$options{owner}};
		next if defined $options{owner} && ! $isowner && ! defined $options{admin};
		my $isadmin=defined $options{admin} && grep { $admins{$_} } @{$options{admin}};
		next if defined $options{admin} && ! $isowner && ! $isadmin;

		if ($options{aggregatedue}) {
			my $timestamp=eval { readfile(srcdir($hostname)."/.ikiwiki/aggregatetime") };
			next unless defined $timestamp && length $timestamp && $timestamp <= time();
		}

		if (! $options{extended}) {
			push @list, $hostname;
		}
		else {
			# Extended mode includes the information the
			# controlpanel module needs, as well as some
			# information needed by other programs.
			my @admins=@{getsetup($hostname, "adminuser")};
			my $unfinished=0; # unfinished site will have dummy admin
			if (@admins && ! grep { $_ ne "http://none/" } @admins) {
				$unfinished=1;
			}
			push @list, {
				isowner => $isowner,
				isadmin => $isadmin,
				site_owner => $owner, 
				site_hostname => $hostname,
				site_url => getsetup($hostname, "url"),
				site_cgiurl => getsetup($hostname, "cgiurl"),
				site_wikiname => getsetup($hostname, "wikiname"),
				site_created => getsetup($hostname, "created"),
				site_parent => getsetup($hostname, "parent"),
				use_letsencrypt => getsetup($hostname, "use_letsencrypt"),
				isunfinished => $unfinished,
			};
		}
	}

	return @list unless $options{extended};

	# Filter no longer existing parents.
	foreach my $siteinfo (@list) {
		my $parent=$siteinfo->{site_parent};
		if (defined $parent && ! $seen{$parent}) {
			$siteinfo->{site_parent} = undef;
		}
	}

	return \@list; # complex data structure
}

sub meta_userlookup {
	required => [qw{}],
	options => [qw{user=s}],
	description => "returns the internal hostname corresponding to a unix username",
	section => "query",
}
{
my %prefixes;
sub userlookup {
	my %options=@_;
	
	assert_wrapper_unsafe();
	
	if (! exists $options{user} || ! length $options{user}) {
		error "specify user to lookup with --user";
	}

	if (! keys %prefixes) {
		foreach my $key (keys %config) {
			if ($key =~ /^prefix_(.*)/) {
				$prefixes{$1}=$config{$key};
			}
		}
	}

	foreach my $prefix (keys %prefixes) {
		if ($options{user}=~/^\Q$prefix\E-(.*)/) {
			return "$1.$prefixes{$prefix}";
		}
		elsif ($options{user}=~/^\Q$prefix\E5-(.*)/) {
			# md5'd username; look up real hostname
			# in setup file, and ensure it md5sums
			# to the same username.
			my $homedir=(getpwnam($options{user}))[7];
			if (defined $homedir && -e "$homedir/ikiwiki.setup") {
				foreach my $url (urllist($options{user})) {
					my $host=$url->host;
					if ($host=~/^(([a-z0-9][-a-z0-9]+)\.)\Q$prefixes{$prefix}\E$/ &&
					    $options{user} eq username($host)) {
					    	return $url->host;
					}
				}
			}
			print STDERR "cannot determine hostname for user $options{user}\n";
		}
	}
	return "";
}
}


sub meta_sitelookup {
	required => [qw{}],
	options => [qw{site=s}],
	description => "returns the internal hostname for an url or external hostname",
	section => "query",
}
sub sitelookup {
	my %options=@_;
	
	# Root is needed to read setup files in some circumstances.
	assert_root();
	assert_wrapper_unsafe();
	
	if (! exists $options{site} || ! length $options{site}) {
		error "specify site to lookup with --site";
	}

	eval q{use URI};
	my $url=URI->new($options{site});
	my $host=$url->can("host") ? $url->host : $options{site};

	if (eval { sitexists($host) } && ! $@) {
		return $host;
	}

	foreach my $hostname (list()) {
		foreach my $url (urllist(username($hostname))) {
			if (lc $url->host eq lc $host) {
				return $hostname;
			}
		}
	}

	error "$host not found";
}


sub meta_siteexists {
	required => [qw{hostname}],
	options => [qw{}],
	description => "returns true if the hostname already exists",
	section => "query",
}
sub siteexists {
	my $hostname=lc(shift);
	
	my $user=username($hostname);

	# TODO Assumes one server. To handle multiple servers, will need to
	# query DNS or a database of sites.
	my $uid=getpwnam($user);
	return defined $uid ? IkiWiki::SuccessReason->new("$hostname exists")
	                    : IkiWiki::FailReason->new("$hostname does not exist (user $user not found)");
}

sub meta_username {
	required => [qw{hostname}],
	options => [qw{}],
	description => "returns the unix username for a site",
	section => "query",
}
sub username {
	my $hostname=lc(shift);
	
	# paranoia: make sure the hostname looks like a FQDN
	if ($hostname !~ /^([a-z0-9][-a-z0-9]*)\.\w+(\.\w+)+$/) {
		error "illegal hostname \"$hostname\"";
	}
	if (length $hostname > 252) { # why not 253? Trailing dot..
		error "hostname too long \"$hostname\"";
	}

	# since unix usernames are limited to 32 characters (see utmp(5))
	# chop off the subdomain of the hostname, and use that as the
	# username
	my ($subdomain, $topdomain)=$hostname=~/^([a-z0-9][-a-z0-9]*)\.(.*)/;

	# add unique prefix to avoid collisions with system users and 
	# other top domains
	my $prefix;
	foreach my $key (keys %config) {
		next unless $key =~ m/^prefix_/;
		next unless defined $config{$key};
		next unless $config{$key} eq $topdomain;
		$prefix=$key;
		$prefix=~s/^prefix_//;
		last;
	}
	if (! $prefix) {
		error "unknown prefix for $topdomain (configure in $config{ikisite_conffile})";
	}
	my $username=$prefix.'-'.$subdomain;

	if (length($username) > 32) {
		# Fall back to using a hash for longer subdomains.
		eval q{use Digest::MD5};
		die $@ if $@;

		my $md5=Digest::MD5::md5_hex($subdomain);
		$username=$prefix.'5-'.substr($md5, 0, 16).'-'.
			substr($subdomain, 0, 12);
	}

	return $username;
}

sub meta_homedir {
	required => [qw{hostname}],
	options => [qw{}],
	description => "returns the home directory for a site",
	section => "query",
}
sub homedir {
	my $hostname=lc(shift);
	
	return (getpwnam(username($hostname)))[7];
}

sub meta_srcdir {
	required => [qw{hostname}],
	options => [qw{}],
	description => "returns the ikiwiki srcdir for a site",
	section => "query",
}
sub srcdir {
	my $hostname=shift;
	
	# Normally it is ~/srcdir, but the setup file can be modified 
	# to only use a subdirectory of that.
	if (-e homedir($hostname)."/ikiwiki.setup") {
		return getsetup($hostname, "srcdir");
	}
	else {
		return homedir($hostname)."/source";
	}
}

sub meta_destdir {
	required => [qw{hostname}],
	options => [qw{}],
	description => "returns the ikiwiki destdir for a site",
	section => "query",
}
sub destdir {
	my $hostname=shift;

	return homedir($hostname)."/public_html";
}

sub meta_cgidir {
	required => [qw{hostname}],
	options => [qw{}],
	description => "returns the CGI directory for a site",
	section => "query",
}
sub cgidir {
	my $hostname=shift;
	my $newly_created=shift;
	my $dir = "/var/www/".username($hostname);

	if ($newly_created || -d $dir) {
		return $dir;
	}

	return homedir($hostname)."/public_html";
}

sub meta_logdir {
	required => [qw{hostname}],
	options => [qw{}],
	description => "returns the server log directory for a site",
	section => "query",
}
sub logdir {
	my $hostname=shift;
	my $newly_created=shift;
	my $dir = userlogdir(username($hostname));

	if ($newly_created || -d $dir) {
		return $dir;
	}

	my $home=homedir($hostname);
	return unless defined $home;
	return $home."/logs";
}

sub userlogdir {
	my $username=shift;
	return "/var/log/ikiwiki-hosting/".$username;
}

sub meta_rootconfig {
	required => [qw{hostname}],
	options => [qw{}],
	description => "returns the root configuration directory of the site",
	section => "query",
}
sub rootconfig {
	my $hostname=lc(shift);
	
	return $config{ikisite_rootconfigdir}."/".username($hostname);
}

sub ssl_file {
	my $ext=shift;
	my $hostname=shift;
	my $domain=shift;
	my $no_fallback=shift;

	my $perdomain=rootconfig($hostname)."/".$domain.".".$ext;
	if ($no_fallback || -e $perdomain) {
		return $perdomain;
	}
	else {
		return rootconfig($hostname)."/ssl.".$ext;
	}
}

sub ssl_cert_file { ssl_file("crt", @_) }
sub ssl_key_file { ssl_file("key", @_) }
sub ssl_chain_file { ssl_file("chain", @_) }
sub ssl_fullchain_file { ssl_file("fullchain", @_) }

sub is_letsencrypt_link {
	my $file=shift;
	my $link=readlink($file);
	return (defined $link && $link=~m!/etc/letsencrypt/live!);
}

sub meta_wikiname {
	required => [qw{hostname}],
	options => [qw{}],
	description => "calculates the default wikiname to use for a site",
	section => "query",
}
sub wikiname {
	my $hostname=shift;
	
	my ($wikiname)=$hostname=~/^([a-zA-Z0-9][-a-zA-Z0-9_]*)\./;
	return $wikiname;
}

sub meta_repository {
	required => [qw{hostname}],
	options => [qw{}],
	description => "returns the vcs repository for a site",
	section => "query",
}
sub repository {
	my $hostname=lc(shift);
	
	return homedir($hostname)."/source.".getsetup($hostname, "rcs");
}

sub meta_getsetup {
	required => [qw{hostname key}],
	options => [qw{}],
	description => "returns a value from the site's ikiwiki.setup",
	section => "query",
}

my ($getsetup_cache_setup, $getsetup_homedir_old); # memoized for speed
sub getsetup {
	my $hostname=shift;
	my $key=shift;
	my %options=@_;
	
	# The suid wrapper can only be used to access a few values.
	if ($key eq 'branchable' || $key eq 'adminuser') {
		assert_wrapper_unsafe();
	}
	else {
		assert_wrapper_denied();
	}
	
	my $homedir;
	# this option is used internally, when the hostname is not known
	if (exists $options{user}) {
		$homedir=(getpwnam($options{user}))[7];
	}
	else {
		$hostname=lc($hostname);
		assert_siteexists($hostname, 1);
		$homedir=homedir($hostname);
	}

	if (! defined $getsetup_homedir_old ||
	    $homedir ne $getsetup_homedir_old) {
		$getsetup_cache_setup=loadsetup_safe($homedir."/ikiwiki.setup");
		# Only keep cache if setup was successfully loaded.
		if (keys %$getsetup_cache_setup) {
			$getsetup_homedir_old=$homedir;
		}
	}

	return $getsetup_cache_setup->{$key};
}

sub meta_changesetup {
	required => [qw{hostname}],
	options => [qw{set=key=value ... set-yaml=key=value ... enable-plugin=s ... disable-plugin=s ... rebuild! commit! message=s}],
	description => "changes settings in the site's ikiwiki.setup",
	section => "utility",
}
sub changesetup {
	my $hostname=lc(shift);
	my %options=@_;
		
	locksite($hostname);
	assert_siteexists($hostname, 1);
	assert_wrapper_safe($hostname);

	runas(username($hostname), sub {
		my $home=homedir($hostname);
		chdir($home) || error "chdir $home: $!";
		my $cgi_wrapper=getsetup($hostname, "cgi_wrapper");
		my $srcdir=srcdir($hostname);
	
		my @settings;
		my $changedesc="changed ";
		foreach my $type (qw{set set-yaml}) {
			next unless $options{$type};
			while (@{$options{$type}}) {
				my ($key, $value)=split("=", shift @{$options{$type}}, 2);
				if (! length $key) {
					error "no key specified";
				}
				if (! defined $value) {
					error "no value specified for $key";
				}
				$changedesc.="$key to '$value' ;";
				if ($key eq "cgi_wrapper") {
					$cgi_wrapper=$value;
				}
				elsif ($key eq "srcdir") {
					$srcdir=$value;
				}
				push @settings, "--$type", "$key=$value";
			}
		}
		
		if ($options{"enable-plugin"} || $options{"disable-plugin"}) {
			my @add_plugins=@{getsetup($hostname, "add_plugins")};
			my @disable_plugins=@{getsetup($hostname, "disable_plugins")};
			foreach my $plugin (@{$options{"enable-plugin"}}) {
				$changedesc.="$plugin (enabled) ;";
				@disable_plugins=grep { $_ ne $plugin } @disable_plugins;
				push @add_plugins, $plugin unless grep { $_ eq $plugin } @add_plugins;
			}
			foreach my $plugin (@{$options{"disable-plugin"}}) {
				$changedesc.="$plugin (disabled) ;";
				@add_plugins=grep { $_ ne $plugin } @add_plugins;
				push @disable_plugins, $plugin unless grep { $_ eq $plugin } @disable_plugins;
			}
			eval q{use YAML::Syck};
			die $@ if $@;

			push @settings, "--set-yaml", "add_plugins=".
				Dump(\@add_plugins);
			push @settings, "--set-yaml", "disable_plugins=".
				Dump(\@disable_plugins);
		}

		$changedesc=~s/ ;$//;
		$changedesc=$options{message} if exists $options{message};
	
		# There's a potential race with websetup; if a websetup
		# change is taking place at the same time, ikiwiki will
		# be running with the old configuration, and will write
		# a version of that back out to the setup file, overwriting
		# our changes.
		#
		# Simply calling lockwiki() will not help, because ikiwiki
		# could still start up, with the old configuration.
		# Instead, we need to prevent the ikiwiki cgi from running
		# (at least for websetup) while the setup file is being
		# changed.
		#
		# To accomplish that, let's first take the cgilock,
		# to ensure no cgi is currently running. Note that this assumes
		# that perl flock() really calls flock(2), which is currently
		# the case in Debian, but not guaranteed of all perls.
		$config{wikistatedir}="$srcdir/.ikiwiki";
		if (-d $config{wikistatedir}) {
			open(CGILOCK, ">", "$config{wikistatedir}/cgilock") ||
				error("$config{wikistatedir}/cgilock: $!");
			flock(CGILOCK, 2) || error("flock: $!");
		}

		# Now, replace the cgi wrapper with a program that waits
		# for the cgilock to free up, and then re-execs the cgi
		# wrapper, loading the new wrapper we will generate,
		# with the changed configuration.
		if (-e $cgi_wrapper) {
			link($cgi_wrapper, $cgi_wrapper.".old") || error("$cgi_wrapper.old: $!");
			open(OUT, ">", $cgi_wrapper.".tmp") || error("$cgi_wrapper.tmp: $!");
			print OUT qq{#!/usr/bin/perl
				# Temporary wrapper inserted by ikisite changesetup.
				open(LOCK, ">", "$config{wikistatedir}/cgilock") ||
					die "error opening $config{wikistatedir}/cgilock";
				flock(LOCK, 2) || die "flock error";
				close LOCK;
				# When this is reached, the new wrapper has
				# replaced this program.
				exec(\$0, \@ARGV);
				die "exec: \$!";
			};
			close OUT || error("close: $!");
			shell("chmod", "755", $cgi_wrapper.".tmp");
			my $user=username($hostname);
			shell("chown", "$user:$user", $cgi_wrapper.".tmp");
			CORE::rename($cgi_wrapper.".tmp", $cgi_wrapper) || error("rename: $!");
		}

		my $setupfile=homedir($hostname)."/ikiwiki.setup";
		my $oldsetup=readfile($setupfile);
		eval {
			shell("ikiwiki", "-setup", $setupfile,
				"-dumpsetup", $setupfile,
				@settings);
			ikiwikisetup($hostname, refresh => 1, wrappers => 1);
		};
		if ($@) {
			# error unwind
			if (-e $cgi_wrapper.".old") {
				CORE::rename($cgi_wrapper.".old", $cgi_wrapper) || error("rename: $!");
			}
			writefile($setupfile, "", $oldsetup);
			error $@;
		}
		unlink $cgi_wrapper.".old";
		
		close CGILOCK; # Now any CGIs that were waiting to start up can run.

		if ($options{rebuild}) {
			ikiwikisetup($hostname);
		}
		
		if ($options{commit}) {
			commitsetup($hostname, message => $changedesc);
		}
	});

	$getsetup_homedir_old=undef; # memoized setup values no longer valid

	return 1;
}

sub meta_domains {
	required => [qw{hostname}],
	options => [qw{external=s alias=s ...}],
	description => "configure a site's external domain name and aliases",
	section => "utility",
}
sub domains {
	my $hostname=lc(shift);
	my %options=@_;

	assert_root();
	locksite($hostname);
	assert_siteexists($hostname, 1);
	assert_wrapper_safe($hostname);
	
	# This subcommand can be run from a suid wrapper so inputs
	# cannot be trusted; check and sanitize.
	my @newdomains;
	my @urlalias;
	my @settings;
	my $rebuild=0;
	if (defined $options{external}) {
		push @newdomains, $options{external};

		if (isinternaldomain($options{external})) {
			error "$options{external} is a reserved hostname";
		}

		# The external domain name does need to be configured
		# correctly in the DNS.
		my $address=host_address_or_cname($options{external}, $hostname);
		if (! defined $address) {
			print STDERR "DNS not correctly configured for $options{external}. (Should point to $hostname)\n";
			exit 2; # special code
		}
		if ($address ne $hostname) {
			if (! grep { defined $_ && $_ eq $address } site_addresses()) {
				print STDERR "DNS not configured correctly for $options{external} - $address\n";
				exit 3; # special code
			}
			else {
				print STDERR "warning: DNS for $options{external} hardcodes IP $address\n";
			}
		}
		
		# It can't be a name used by another site.
		my $exists=eval{ sitelookup(site => $options{external}) };
		if (! $@ && defined $exists && $exists ne $hostname) {
			error "$options{external} is in use by $exists";
		}

		if (getsetup($hostname, "url") ne "http://$options{external}/") {
			push @settings, 'set' => [
				"url=http://$options{external}",
				"cgiurl=http://$options{external}/ikiwiki.cgi",
			];
			$rebuild=1;
		}

		# When using an external domain, the internal hostname
		# must be listed as one of the urlaliases.
		push @urlalias, "http://$hostname/";
	}
	else {
		push @settings, 'set' => [
			"url=http://$hostname",
			"cgiurl=http://$hostname/ikiwiki.cgi",
		];
		push @newdomains, $hostname;
	}
	my %seen;
	foreach my $alias (@{$options{alias}}) {
		$alias=lc($alias);

		# Sanitize aliases to avoid path traversal, etc.
		if ($alias !~ /^[-.a-zA-Z0-9]+$/) {
			error "bad alias \"$alias\": illegal hostname";
		}
		# Prevent aliases being set to (possibly unused) internal
		# site names.
		if ($alias ne $hostname && isinternaldomain($alias)) {
			error "bad alias \"$alias\": reserved hostname";
		}
		# Aliases should not be in use by other sites.
		my $site=eval{ sitelookup(site => $alias) };
	       	if (defined $site && !$@ && $site ne $hostname) {
			error "alias \"$alias\": already in use by $site";
		}
		# Note that aliases do not have to be set in the DNS.
		# Eg, www.foo.com may be an alias but not set up yet,
		# and should still be accepted.
		push @urlalias, "http://$alias/" unless $seen{$alias};
		$seen{$alias}=1;
	}

	eval q{use YAML::Syck};
	die $@ if $@;
	push @settings, 'set-yaml' => [
		"urlalias=".Dump(\@urlalias),
	];

	push @newdomains, @urlalias;
	my @olddomains;
	foreach my $url (urllist(username($hostname))) {
		push @olddomains, $url->host;
	}

	disable($hostname, temporary => 1);
	changesetup($hostname,
		rebuild => 0, # not yet; slow
		commit => 1,
		message => "configured domains",
		@settings,
	);
	enable($hostname);

	# When there was a change to the set of domains used for a site,
	# need to either get a new cert from letsencrypt, or temporarily
	# disable using the old cert. This has to come after the site is
	# enabled using the new domains, so that letsencrypt can get certs
	# for them.
	if (getsetup($hostname, "use_letsencrypt")) {
		eval q{use Data::Compare};
		error $@ if $@;
		my $domainschanged = ! Compare([sort @olddomains], [sort @newdomains]);
		if ($domainschanged &&
			! letsencrypt($hostname)) {
			letsnotencrypt($hostname, temporary => 1);
		}
	}

	if ($rebuild) {
		# A full site rebuild can take a long time for
		# large sites, so is postponed until after the site's
		# changed domain has been configured.
		# 
		# Unfortunatly, a long rebuild also blocks other ikiwiki
		# cgis from running. That needs to be dealt with in
		# ikiwiki, not here.
		ikiwikisetup($hostname);
	}
}

sub meta_usercreate {
	required => [qw{hostname}],
	options => [qw{}],
	description => "creates the unix user for a site",
	section => "utility",
}
sub usercreate {
	my $hostname=lc(shift);

	assert_root();
	my $lockfile=locksite($hostname);
	assert_wrapper_denied();

	my $user=username($hostname);
	my @useradd_opts = ( "--base-dir", $config{useradd_basedir} )
		if ($config{useradd_basedir}) ;
	shell("useradd", $user, 
		"--create-home",
		"--skel", "/dev/null", # disable /etc/skel files
		@useradd_opts,
	);

	mkdir(rootconfig($hostname));

	my $uid=int getpwnam($user);
	my $gid=int getgrnam($user);

	# The user needs to own the site lock file, so ikisite
	# processes running as it can do locking.
	chown($uid, $gid, $lockfile)
		|| error "chown $lockfile: $!";

	# create skeleton
	my $home=homedir($hostname);
	mkdir("$home/.ssh") || error "mkdir $home/.ssh: $!";
	mkdir("$home/tmp") || error "mkdir $home/tmp: $!";
	foreach my $file (".ssh", "tmp") {
		chown($uid, $gid, "$home/$file")
			|| error "chown $home/$file: $!";
	}
	chmod(0700, "$home/tmp") || error "chmod $home/tmp: $!";

	my $logdir=logdir($hostname, 1);
	mkdir($logdir) || error "mkdir $logdir: $!";
	writefile("ikisite.log", $logdir, "");
	foreach my $file (".", "ikisite.log") {
		chown(0, $gid, "$logdir/$file")
			|| error "chown $logdir/$file: $!";
	}
	chmod(0750, "$logdir") || error "chmod $logdir: $!";

	my $cgidir=cgidir($hostname, 1);
	mkdir($cgidir) || error "mkdir $cgidir: $!";
	chown($uid, $gid, "$cgidir") || error "chown $cgidir: $!";
	chmod(0755, "$cgidir") || error "chmod $cgidir: $!";

	# configure default username and email for git commits
	runas(username($hostname), sub {
		# we need to move to a directory we can edit
		chdir($home) || error "chdir $home: $!";
		shell(qw{git config --global user.name admin});
		shell(qw{git config --global user.email}, $config{adminemail});
		chmod(0600, "$home/.gitconfig") || error "chmod $home/.gitconfig: $!";
	});
}

sub meta_userdelete {
	required => [qw{hostname}],
	options => [qw{}],
	description => "removes the unix user for a site",
	section => "utility",
}
sub userdelete {
	my $hostname=lc(shift);
	
	assert_root();
	my $lockfile=locksite($hostname);
	assert_wrapper_denied();
	
	shell("rm", "-rf", logdir($hostname));
	shell("rm", "-rf", cgidir($hostname));

	my $user=username($hostname);
	my $status=shell_exitcode("userdel", "-rf", $user);
	# userdel -f returns exit code 12 if it cannot delete the mail
	# spool, which typically will not exist. Work around this bug.
	if ($status != 0 && ($status >> 8) != 12) {
		error("userdel failed");
	}

	shell("rm", "-rf", rootconfig($hostname));
	unlink($lockfile);
}

sub get_apache_conf_tmpl {
	my $hostname = shift;
	my $suffix = shift;
	my $apache_template_vars = shift;

	if (-f rootconfig($hostname)."/apache$suffix.conf.tmpl") {
		my @bits=stat(_);
		if ($bits[4] == 0 && $bits[5] == 0) {
			require HTML::Template;
			my $template=HTML::Template->new(
				filename => rootconfig($hostname)."/apache$suffix.conf.tmpl",
				die_on_bad_params => 0,
			);
			$template->param(@$apache_template_vars);
			return $template->output;
		}
		else {
			print STDERR "warning: ignoring apache$suffix.conf.tmpl; not owned by root\n";
		}
	}

	return "";
}

sub meta_enable {
	required => [qw{hostname}],
	options => [qw{}],
	description => "enables user access to a site",
	section => "utility",
}
sub enable {
	my $hostname=lc(shift);
	
	assert_root();
	locksite($hostname);
	# Allow the wrapper to enable a site. The CGI for a site uses
	# this when its configuration is changed; the site is necessarily
	# already enabled for the CGI to run so this should not let
	# disabled sites be enabled via the CGI.
	assert_wrapper_unsafe();

	my $user=username($hostname);
	my $home=homedir($hostname);

	my @hostnames=map { $_->host } urllist($user);
	
	# Lock down the public_html directory so only the site user and
	# www-data can access it.
	my $uid=int getpwnam($user);
	my $www_data_gid=int getgrnam("www-data");
	chown($uid, $www_data_gid, "$home/public_html") || error "chown $home/public_html: $!";
	chmod(0750, "$home/public_html") || error "chmod $home/public_html: $!";

	my $vcs=getsetup($hostname, "rcs");
	if ($vcs eq "git") {
		# Setup git-daemon.
		foreach my $h (@hostnames) {
			my $dest="$config{gitdaemondir}/$h.git";
			unlink($dest);
			# The symlink is always made, but git-daemon will only
			# serve the site if its repository contains
			# git-daemon-export-ok.
			symlink(repository($hostname), $dest);
		}
		
		# Create file if site currently allows branching.
		# The branchable plugin will also create/remove it
		# as needed when the setting is changed.
		my $branchable=getsetup($hostname, "branchable");
		my $flagfile=repository($hostname)."/git-daemon-export-ok";
		if ($branchable) {
			open(FLAG, ">", $flagfile);
			close FLAG;
			shell("chown", "$user:$user", $flagfile);
			chmod(02755, "$home/source.git") || error "chmod $home/source.git: $!";
		}
		else {
			unlink($flagfile);
			chmod(02750, "$home/source.git") || error "chmod $home/source.git: $!";
		}
		
		# Allow git-daemon to read and write to the repo via ACL.
		# This has to come after any chmod of the source.git
		# directory, as such chmods will mess up the ACL this sets
		# up.
		readconfig();
		eval { shell("setfacl", "-R", "-m", "d:g:$config{gitdaemonuser}:rwX,d:g:$user:rwX,g:$config{gitdaemonuser}:rwX,g:$user:rwX", "$home/source.git") };
		if ($@) {
			print STDERR "warning: setfacl failed, anonpush will not work (perhaps the filesystem is not mounted with option 'acl'?)\n";
		}

		# Setup gitweb.
		# An environment variable to points gitweb to
		# this file. We make it a symlink pointing at the real 
		# file, and only enable the link for branchable sites.
		my $gitweb_conf_file=srcdir($hostname)."/.ikiwiki/gitweb.conf";

		# To avoid privilege escalation via gitweb.conf, we run gitweb
		# via a suexec'able CGI script.
		my $cgidir=cgidir($hostname);
		my $gitweb = "$cgidir/gitweb.cgi";
		my $uid=int getpwnam($user);
		my $gid=int getgrnam($user);
		open(GITWEB, ">", "$gitweb") || die "open $gitweb: $!";
		print GITWEB "#!/bin/sh\n";
		print GITWEB "GITWEB_CONFIG=$gitweb_conf_file\n";
		print GITWEB "export GITWEB_CONFIG\n";
		print GITWEB "exec /usr/lib/cgi-bin/gitweb.cgi \"\$@\"\n";
		close GITWEB;
		chown($uid, $gid, $gitweb) || error "chown $gitweb: $!";
		chmod(0755, $gitweb) || error "chmod $gitweb: $!";

		my $gitweb_projectslist=srcdir($hostname)."/.ikiwiki/gitweb-projectslist";
		my $git_description=repository($hostname)."/description";
		outtemplate("$gitweb_conf_file.real", "gitweb.conf.tmpl",
			user => $user,
			home => $home,
			destdir => destdir($hostname),
			cgidir => cgidir($hostname),
			logdir => logdir($hostname),
			hostname => $hostname,
			projectslist => $gitweb_projectslist,
		);
		shell("chown", "$user:$user", "$gitweb_conf_file.real");
		if ($branchable) {
			unlink($gitweb_conf_file); # force refresh symlink
			symlink("$gitweb_conf_file.real", $gitweb_conf_file);
		}
		else {
			unlink($gitweb_conf_file);
		}
		open(DESC, ">", $git_description) || die "$git_description: $!";
		print DESC "source repository for $hostname\n";
		close DESC;
		shell("chown", "$user:$user", $git_description);
		open(PLIST, ">", $gitweb_projectslist) || die "$gitweb_projectslist: $!";
		print PLIST "source.git source\n";
		close PLIST;
		shell("chown", "$user:$user", $gitweb_projectslist);
	}
	
	# Get the url from the setup file. The hostname in this url
	# may be different from the internal site hostname; configure
	# apache to serve the url's hostname.
	eval q{use URI};
	error $@ if $@;
	# ensure url has a trailing slash (apache requires it)
	my $u=getsetup($hostname, "url")."/";
	$u=~s://$:/:;
	my $url=URI->new($u);
	
	# write and enable apache config file
	my $apache_site="ikisite-".$url->host;
	my $apache_conf_file="/etc/apache2/sites-available/$apache_site.conf";
	my @apache_template_vars=(
		suexec => (cgidir($hostname) =~ m!^/var/www!),
		user => $user,
		hostname => $url->host,
		home => homedir($hostname),
		destdir => destdir($hostname),
		cgidir => cgidir($hostname),
		logdir => logdir($hostname),
		source_hostname => "source.$hostname",
		domain_template_vars($hostname, $url->host, $url)
	);
	outtemplate($apache_conf_file, "apache-site.tmpl",
		@apache_template_vars,
		# If an apache.conf.tmpl is available,
		# it will be added into the apache config file in the default
		# and SSL vhosts.
		apache_conf_tmpl => get_apache_conf_tmpl($hostname, "", [@apache_template_vars]),
		# Similarly, apache-source.conf.tmpl will be added to the
		# source.foo.example.com vhost, and apache-ssl.conf.tmpl
		# to the SSL vhost (only).
		apache_source_conf_tmpl => get_apache_conf_tmpl($hostname, '-source', [@apache_template_vars]),
		apache_ssl_conf_tmpl => get_apache_conf_tmpl($hostname, '-ssl', [@apache_template_vars]),
	);
	my %setup;
	$setup{$url->host}=1;
	if (apache_before_2_4()) {
		shell("a2ensite", "$apache_site.conf");
	}
	else {
		shell("a2ensite", $apache_site);
	}

	# generate apache config files for alias urls, that redirect to the
	# main url
	foreach my $alias (@hostnames) {
		next if $setup{$alias};
		$setup{$alias}=1;
		$apache_site="ikisite-$alias";
		$apache_conf_file="/etc/apache2/sites-available/$apache_site.conf";
		outtemplate($apache_conf_file, "apache-sitealias.tmpl",
			suexec => (cgidir($hostname) =~ m!^/var/www!),
			user => $user,
			hostname => $url->host,
			home => homedir($hostname),
			destdir => destdir($hostname),
			cgidir => cgidir($hostname),
			logdir => logdir($hostname),
			alias => $alias,
			domain_template_vars($hostname, $alias, $url)
		);
		if (apache_before_2_4()) {
			shell("a2ensite", "$apache_site.conf");
		}
		else {
			shell("a2ensite", $apache_site);
		}
	}

	# reload apache config
	if (! apache_reload_graceful()) {
		# avoid leaving apache in a broken state
		foreach my $site (keys %setup) {
			if (apache_before_2_4()) {
				shell("a2dissite", "$site.conf");
			}
			else {
				shell("a2dissite", $site);
			}
		}
	}
	
	enabledns($hostname);

	return 1;
}

sub domain_template_vars {
	my $hostname=shift; # ikisite hostname
	my $domain=shift; # domain to generate template for
	my $mainurl=shift; # main url of the site

	my $ssl_cert_file=ssl_cert_file($hostname, $domain);
	my $ssl_key_file=ssl_key_file($hostname, $domain);
	my $ssl_chain_file=ssl_chain_file($hostname, $domain);
	my $ssl_fullchain_file=ssl_fullchain_file($hostname, $domain);
	# Check that any user provided key file is not password protected,
	# as that makes apache startup hang. (Also checks that it's valid.)
	if (-e $ssl_key_file) {
		if (shell_exitcode("openssl", "rsa",
				"-in" => $ssl_key_file,
				"-out" => $ssl_key_file, 
				"-passin" => "pass:dummy",
				"-passout" => "pass:dummy") != 0) {
			$ssl_key_file='';
			$ssl_cert_file='';
			$ssl_chain_file='';
			$ssl_fullchain_file='';
		}
	}

	# Use wildcard cert if there is no site specific one.
	if (! -e $ssl_cert_file && ! -e $ssl_key_file) {
		my $wilddir=find_wildcard_ssl_cert_dir($domain);
		if (length $wilddir) {
			$ssl_cert_file="$wilddir/cert.pem";
			$ssl_key_file="$wilddir/privkey.pem";
			if (-e "$wilddir/fullchain.pem") {
				$ssl_fullchain_file="$wilddir/fullchain.pem";
			}
			else {
				$ssl_fullchain_file='';
			}
			if (-e "$wilddir/chain.pem") {
				$ssl_chain_file="$wilddir/chain.pem";
			}
			else {
				$ssl_chain_file='';
			}
		}
	}

	my $ssl_enabled=-e $ssl_key_file && -e $ssl_cert_file;
	my @ssl_template_vars=(
		ssl_cert_file => $ssl_cert_file,
		ssl_key_file => $ssl_key_file,
		ssl_enabled => $ssl_enabled,
	);
	if (-e $ssl_chain_file) {
		push @ssl_template_vars, (
			ssl_chain_file => $ssl_chain_file,
			ssl_chain => 1,
		);
	}
	if (-e $ssl_fullchain_file) {
		push @ssl_template_vars, (
			ssl_fullchain_file => $ssl_fullchain_file,
			ssl_fullchain => 1,
		);
	}
	
	# This is the url that alias urls redirect to.
	my $redirurl=$mainurl->clone;
	my $httpsredirurl=$mainurl->clone;
	if ($ssl_enabled) {
		$httpsredirurl->scheme("https");
		if (getsetup($hostname, 'redirect_to_https')) {
			$redirurl->scheme("https");
			push @ssl_template_vars, (redirect_to_https => 1);
		}
	}

	return (
		# Value escaped to prevent leakage
		# into RewriteEngine regexp.
		url_escaped => quotemeta($redirurl),
		https_url_escaped => quotemeta($httpsredirurl),
		@ssl_template_vars
	);
}

sub find_wildcard_ssl_cert_dir {
	my $domain=shift;

	if (defined $config{wildcard_ssl_cert_dir}
	    && length $config{wildcard_ssl_cert_dir}) {
		foreach my $wilddir (glob("$config{wildcard_ssl_cert_dir}/*")) {
			my $wilddomain=IkiWiki::basename($wilddir);
			if (($domain =~ /^.+\.\Q$wilddomain\E$/i || lc $domain eq lc $wilddomain) &&
			    -e "$wilddir/cert.pem" && -e "$wilddir/privkey.pem") {
			    	return $wilddir;
			}
		}
	}
	return "";
}

sub meta_disable {
	required => [qw{hostname}],
	options => [qw{temporary!}],
	description => "disables user access to a site, without removing it",
	section => "utility",
}
sub disable {
	my $hostname=lc(shift);
	my %options=@_;

	assert_root();
	locksite($hostname);
	assert_wrapper_denied();

	disabledns($hostname) unless $options{temporary};

	my @urls=urllist(username($hostname));

	my $vcs=getsetup($hostname, "rcs");
	if ($vcs eq "git") {
		foreach my $h (map { $_->host } @urls) {
			unlink("$config{gitdaemondir}/$h.git");
		}
	}
	
	# remove apache config file(s)
	my $reload=0;
	foreach my $url (@urls) {
		my $apache_site="ikisite-".$url->host;
		my $apache_conf_file="/etc/apache2/sites-available/$apache_site.conf";
		if (-e $apache_conf_file) {
			# inside guard because a2dissite fails if the config
			# file does not exist, and this needs to be idempotent
			if (apache_before_2_4()) {
				shell("a2dissite", "$apache_site.conf");
			}
			else {
				shell("a2dissite", $apache_site);
			}
			unlink($apache_conf_file);
			$reload=1;
		}
		# If we're now using Apache 2.4, there might be old versions
		# from Apache 2.2 still lying around
		foreach my $detritus (
			"/etc/apache2/sites-enabled/$apache_site",
			"/etc/apache2/sites-available/$apache_site") {
			unlink $detritus || error("unlink $detritus: $!");
			$reload=1;
		}
	}
	apache_reload_graceful() if $reload && ! $options{temporary};

	return 1;
}

sub meta_letsencrypt {
	required => [qw{hostname}],
	options => [qw{}],
	description => "use Lets Encrypt to get https certificate",
	section => "utility",
}
sub letsencrypt {
	my $hostname=lc(shift);

	assert_root();
	my $lockfile=locksite($hostname);
	assert_wrapper_denied();

	changesetup($hostname,
		rebuild => 0,
		commit => 1,
		message => "letsencrypt enabled",
		set => [
			"use_letsencrypt=1",
		],
	) unless getsetup($hostname, "use_letsencrypt");

	my $allsuccess=1;
	my $madechange=0;
	foreach my $url (urllist(username($hostname))) {
		my $host=$url->host;
		
		my $livedir="/etc/letsencrypt/live/$host";
		my $certexists=sub {
			-e "$livedir/cert.pem" && 
			-e "$livedir/privkey.pem" &&
			-e "$livedir/fullchain.pem"
		};

		# If there's a wildcard cert, don't get a per-domain cert.
		#
		# If we already got a per-domain cert using letsencrypt,
		# that cert is no longer necessary thanks to the wildcard,
		# and could be deleted. But deleting certs is too
		# dangerous, so the cert will continue to be used.
		if (length find_wildcard_ssl_cert_dir($host)) {
			next;
		}

		# Some of the domains in the urllist may not have DNS set
		# up for them. Rather than trying and failing for those,
		# which would make maintaincerts noisy in cron,
		# just skip them.
		next unless defined host_address_or_cname($host, $hostname);
		shell_exitcode("certbot", "certonly",
			"--text", "--noninteractive", "--quiet", "--keep-until-expiring",
			"--agree-tos", "--email=$config{adminemail}",
			"--webroot", "--webroot-path", destdir($hostname),
			"--domain=".$host) unless $certexists->();
		if ($certexists->()) {
			my $cert=ssl_cert_file($hostname, $host, 1);
			if (! is_letsencrypt_link($cert)) {
				$madechange=1;
				shell("ln", "-sf", "$livedir/cert.pem", $cert);
			}
			my $key=ssl_key_file($hostname, $host, 1);
			if (! is_letsencrypt_link($key)) {
				$madechange=1;
				shell("ln", "-sf", "$livedir/privkey.pem", $key);
			}
			my $chain=ssl_chain_file($hostname, $host, 1);
			if (! is_letsencrypt_link($chain)) {
				$madechange=1;
				shell("ln", "-sf", "$livedir/chain.pem", $chain);
			}
			my $fullchain=ssl_fullchain_file($hostname, $host, 1);
			if (! is_letsencrypt_link($fullchain)) {
				$madechange=1;
				shell("ln", "-sf", "$livedir/fullchain.pem", $fullchain);
			}
		}
		else {
			print STDERR "warning: Unable to get letsencrypt certificate for $host at this time; will retry later.\n";
			$allsuccess=0;
		}
	}
	
	if ($madechange) {
		return enable($hostname);
	}

	return $allsuccess;
}

sub meta_letsnotencrypt {
	required => [qw{hostname}],
	options => [qw{temporary!}],
	description => "disable use of Lets Encrypt and delete ssl certificate",
	section => "utility",
}
sub letsnotencrypt {
	my $hostname=lc(shift);
	my %options=@_;

	assert_root();
	my $lockfile=locksite($hostname);
	assert_wrapper_denied();

	changesetup($hostname,
		rebuild => 0,
		commit => 1,
		message => "letsencrypt disabled",
		set => [
			"use_letsencrypt=0",
		],
	) unless $options{temporary};
	remove_letsencrypt_cert($hostname);
	remove_letsencrypt_config($hostname);
	enable($hostname);
}

sub remove_letsencrypt_cert {
	my $hostname=shift;
	foreach my $url (urllist(username($hostname))) {
		foreach my $f (ssl_cert_file($hostname, $url->host), ssl_key_file($hostname, $url->host), ssl_chain_file($hostname, $url->host), ssl_fullchain_file($hostname, $url->host)) {
			if (is_letsencrypt_link($f)) {
				unlink($f);
			}
		}
	}

}

sub remove_letsencrypt_config {
	my $hostname=shift;
	foreach my $f ("/etc/letsencrypt/renewal/$hostname.conf") {
		unlink($f) || 1;
	}
}

sub meta_maintaincerts {
	required => [],
	options => [qw{}],
	description => "request and renew Lets Encrypt certificates as needed",
	section => "utility",
}
sub maintaincerts {
	assert_root();
	assert_wrapper_denied();

	my $inuse=0;
	foreach my $site (@{list(extended => 1)}) {
		next if $site->{isunfinished};
		next unless $site->{use_letsencrypt};
		$inuse=1;
		letsencrypt($site->{site_hostname});
	}

	# Debian installs a cron.d script that runs certbot renew,
	# so assume that if it's present, we don't need to renew on our
	# own.
	if ($inuse && ! -e "/etc/cron.d/certbot") {
		eval { shell("certbot", "renew", "--non-interactive", "--quiet") };
		apache_reload_graceful();
	}

	return 1;
}

sub meta_enabledns {
	required => [qw{hostname}],
	options => [qw{}],
	description => "adds a hostname to DNS",
	section => "utility",
}
sub enabledns {
	my $hostname=lc(shift);
	
	assert_root();
	# Enabling dns is a fairly safe operation, and sites need to be
	# able to call it when ipv6_disabled is changed.
	assert_wrapper_unsafe();

	locksite($hostname);

	if ($config{allow_ipv4} || $config{allow_ipv6}) {
		my @commands;
		# A site's setup file can be used to disable ipv6.
		# But, the setup file may not yet exist, if an early dns
		# setup is being done. In that case, ipv6 is assumed not
		# to be disabled, and enabledns is expected to be run
		# a second time once the setup file is in place, and
		# can disable it then.
		my $ipv6_disabled = eval { getsetup($hostname, "ipv6_disabled") };

		my ($ipv4, $ipv6)=site_addresses();
		foreach my $h ($hostname, "source.$hostname") {
			if ($ipv6_disabled || ! defined $ipv6 || ! $config{allow_ipv6}) {
				push @commands, "update delete $h AAAA";
			}
			else {
				push @commands, "update add $h $config{ttl} IN AAAA $ipv6";
			}
			push @commands, "update add $h $config{ttl} IN A $ipv4"
				if defined $ipv4 && $config{allow_ipv4};
		}
		if (! @commands) {
			error("failed to determine IP address");
		}
		nsupdate(@commands);
	}
}

sub meta_disabledns {
	required => [qw{hostname}],
	options => [qw{}],
	description => "removes a hostname from DNS",
	section => "utility",
}
sub disabledns {
	my $hostname=lc(shift);

	assert_root();
	locksite($hostname);
	assert_wrapper_denied();

	if ($config{allow_ipv4} || $config{allow_ipv6}) {
		nsupdate(
			"update delete $hostname",
			"update delete source.$hostname",
		);
	}
}

sub meta_ikiwikisetup {
	required => [qw{hostname}],
	options => [qw{refresh! wrappers!}],
	description => "calls ikiwiki to setup a site",
	section => "utility",
}
sub ikiwikisetup {
	my $hostname=lc(shift);
	my %options=@_;
	
	locksite($hostname);
	assert_wrapper_denied();

	runas(username($hostname), sub {
		my $home=homedir($hostname);
		chdir($home) || error "chdir $home: $!";
		my $setupfile="$home/ikiwiki.setup";
		shell("ikiwiki", "-setup", $setupfile,
			($options{refresh} ? "-refresh" : ()),
			($options{wrappers} ? "-wrappers" : ()));
	});
}

sub meta_ikiwikiclean {
	required => [qw{hostname}],
	options => [qw{}],
	description => "removes ikiwiki generated files",
	section => "utility",
}
sub ikiwikiclean {
	my $hostname=lc(shift);
	
	locksite($hostname);
	assert_wrapper_denied();

	remove_wikilist($hostname);
	runas(username($hostname), sub {
		my $home=homedir($hostname);
		chdir($home) || error "chdir $home: $!";
		my $setupfile="$home/ikiwiki.setup";
		shell("ikiwiki", "-setup", $setupfile, "-clean");

		return 1;
	});
}

sub meta_createsetupbranch {
	required => [qw{hostname}],
	options => [qw{}],
	description => "creates \"setup\" branch in VCS",
	section => "utility",
}
sub createsetupbranch {
	my $hostname=lc(shift);
	
	locksite($hostname);
	assert_wrapper_denied();

	runas(username($hostname), sub {
		chdir(homedir($hostname)) || error "chdir HOME: $!";

		my $vcs=getsetup($hostname, "rcs");

		my @ignores=(
			".ikiwiki",
			"public_html",
			"source",
			"source.".$vcs,
			"logs",
			".ikisite-nonce",
		);
	
		if ($vcs eq "git") {
			push @ignores, ".gitconfig";
			if (-d ".git") {
				error ".git directory already exists";
			}
			shell("git", "init");
			chmod(0700, ".git") || error "chmod .git: $!";
			# convince git to start committing to setup branch
			writefile(".git/HEAD", ".", "ref: refs/heads/setup\n");
			writefile(".gitignore", ".", join("\n", @ignores)."\n");
			chmod(0600, ".gitignore") || error "chmod .gitignore: $!";
			shell("git", "remote", "add", "origin", repository($hostname));
	
			commitsetup($hostname, message => "initial commit of setup files");
	
		}
		else {
			error "createsetupbranch not implemented for $vcs";
		}

		return 1;
	});
}

sub meta_commitsetup {
	required => [qw{hostname}],
	options => [qw{message=s}],
	description => "commits to \"setup\" branch in VCS",
	section => "utility",
}
sub commitsetup {
	my $hostname=lc(shift);
	my %options=@_;
	
	locksite($hostname);
	assert_wrapper_denied();

	runas(username($hostname), sub {
		chdir(homedir($hostname)) || error "chdir HOME: $!";
	
		my $vcs=getsetup($hostname, "rcs");

		my @files=(
			"ikiwiki.setup",
			".ssh/authorized_keys",
			"apache.conf.tmpl", 
		);
		
		my $message=$options{message} ? $options{message} : "commit of setup files";

		if ($vcs eq "git") {
			push @files, ".gitignore";
	
			foreach my $file (@files) {
				if (-e $file) {
					shell("git", "add", $file);
				}
				else {
					# the file may have never been added,
					# so --ignore-unmatch
					shell("git", "rm", "--ignore-unmatch", $file);
				}
			}
			my $changed=`git status --porcelain | grep -v '^\?\?'`;
			if (length $changed) {
				shell("git", "commit", "-m", $message);
				shell("git", "push", "origin", "setup");
			}
		}
		else {
			error "commitsetup not implemented for $vcs";
		}
	
		return 1;
	});
}

sub meta_observe {
	required => [qw{hostname}],
	options => [qw{force!}],
	description => "informs observersites about site creation or removal",
	section => "utility",
}
sub observe {
	my $hostname=lc(shift);
	my %options=@_;

	assert_wrapper_denied();

	readconfig();
	return unless defined $config{observersites};
	my $exists=siteexists($hostname);
	foreach my $observer (split(' ', $config{observersites})) {
		next if $observer eq $hostname;
		next unless siteexists($observer);
		
		runas(username($observer), sub {
			# Load observer site's ikiwiki setup file,
			# and plugins, so rcs_* functions can be used.
			require IkiWiki::Setup;
			%config=(%config, IkiWiki::defaultconfig());
			# Note use of safe mode to avoid running perl 
			# format setup files.
			IkiWiki::Setup::load(homedir($observer)."/ikiwiki.setup", 1);
			IkiWiki::loadplugins();
			IkiWiki::checkconfig();

			chdir(srcdir($observer));
			my $templatefile="templates/observersite.tmpl";
			return unless -e $templatefile;

			my $e="existing/$hostname";
			my $r="removed/$hostname";
			my $page=$exists ? $e : $r;
			my $other=$exists ? $r : $e;
			my $staged=0;
			
			# Handle moving page if it already existed.
			if (-e $other.".mdwn") {
				IkiWiki::rcs_rename($other.".mdwn", $page.".mdwn");
				$staged=1;
				# reset timestamp
				system("touch", $page.".mdwn");
				# just in case $other was not checked into
				# git, remove it
				unlink($other.".mdwn");
			}
			# Handle moving any subpages.
			if (-d $other) {
				IkiWiki::rcs_rename($other, $page);
				$staged=1;
			}

			# Ensure page exists, but avoid destructive
			# overwrites, unless in force mode.
			if (! -e $page.".mdwn" || $options{force}) {
				eval q{use HTML::Template};
				error $@ if $@;
				my $template=HTML::Template->new(
					filename => $templatefile,
				);
				$template->param(hostname => $hostname);
				writefile($page.".mdwn", srcdir($observer), $template->output);
				IkiWiki::rcs_add($page.".mdwn");
				$staged=1;
			}

			if ($staged) {
				IkiWiki::rcs_commit_staged(
					message => "automatic update",
				);
			}
		});
	}
}

sub meta_updatecustomersite {
	required => [qw{hostname}],
	options => [],
	description => "updates customersite checkout",
	section => "utility",
}
sub updatecustomersite {
	my $hostname=lc(shift);
	
	locksite($hostname);
	assert_wrapper_unsafe();

	runas(username($hostname), sub {
		eval q{use IkiWiki::Customer};
		if (! defined IkiWiki::Customer::basedir(1)) {
			error "no customersite checked out; cannot update";
		}
		if (! IkiWiki::Customer::update()) {
			error "update failed";
		}
		return 1;
	});
}

sub meta_add_wikilist {
	required => [qw{hostname}],
	options => [],
	description => "adds hostname's user to /etc/ikiwiki/wikilist",
	section => "utility",
}
sub add_wikilist {
	my $hostname=lc(shift);
	ikiwiki_update_wikilist($hostname, 0);
}

sub meta_remove_wikilist {
	required => [qw{hostname}],
	options => [],
	description => "removes hostname's user to /etc/ikiwiki/wikilist",
	section => "utility",
}
sub remove_wikilist {
	my $hostname=lc(shift);
	ikiwiki_update_wikilist($hostname, 1);
}

sub ikiwiki_update_wikilist {
	my $hostname=lc(shift);
	my $remove=shift;

	assert_root();
	assert_siteexists($hostname, 1);
	
	my $username=username($hostname);

	my $wikilist="/etc/ikiwiki/wikilist";
	if (! -e $wikilist) {
		print "$wikilist does not exist\n";
		return;
	}

	my $changed=0;
	my $seen=0;
	my @lines;
	open (my $list, "<$wikilist") || die "read $wikilist: $!";
	while (<$list>) {
		chomp;
		if (/^\s*([^\s]+)\s*$/) {
			my $user=$1;
			if ($user eq $username) {
				if (! $remove) {
					$seen=1;
					push @lines, $_;
				}
				else {
					$changed=1;
				}
			}
			else {
				push @lines, $_;
			}
		}
		else {
			push @lines, $_;
		}
	}
	if (! $seen && ! $remove) {
		push @lines, $username;
		$changed=1;
	}
	if ($changed) {
		close $list || die "error reading $list: $!\n";
		open ($list, ">$wikilist") || die "cannot write to $wikilist\n";
		foreach (@lines) {
			print $list "$_\n";
		}
		close $list || die "error writing $wikilist: $!\n";
	}

	return 1;
}

sub meta_sshkeys {
	required => [qw{hostname}],
	options => [qw{}],
	description => "lists enabled ssh keys",
	section => "query",
}
sub sshkeys {
	my $hostname=lc(shift);
	
	assert_siteexists($hostname, 1);
	assert_wrapper_denied();
	
	my @ret;
	my $user=username($hostname);
	my $sshdir=homedir($hostname)."/.ssh";
	my $authorized_keys=$sshdir."/authorized_keys";
	if (! -e $authorized_keys) {
		return ();
	}
	open(IN, "<", $authorized_keys) || error("open $authorized_keys: $!");
	while (<IN>) {
		chomp;
		my $k=parse_sshkey($_);
		if (defined $k) {
			push @ret, $k;
		}
	}
	close IN;

	return @ret;
}

sub meta_enablesshkey {
	required => [qw{hostname}],
	options => [qw{key=s}],
	description => "adds the specified ssh key to .ssh/authorized_keys",
	section => "utility",
}
sub enablesshkey {
	my $hostname=lc(shift);
	my %options=@_;
	
	locksite($hostname);
	assert_siteexists($hostname, 1);
	assert_wrapper_denied();

	if (! exists $options{key}) {
		error("must specify a key with --key=");
	}
	my $key=parse_sshkey($options{key});
	if (! defined $key) {
		error "invalid or unsupported ssh key";
	}

	my $user=username($hostname);
	my $sshdir=homedir($hostname)."/.ssh";
	my $authorized_keys=$sshdir."/authorized_keys";
	if (! -d $sshdir) {
		shell("mkdir", "-p", $sshdir);
		shell("chown", "$user:$user", $sshdir);
	}

	# regenerate file, adding key if it is not already present
	my %seen;
	$seen{$key}=1;
	if (-e $authorized_keys) {
		open(IN, "<", $authorized_keys) || error("open $authorized_keys: $!");
		while (<IN>) {
			chomp;
			my $k=parse_sshkey($_);
			$seen{$k}=1 if defined $k;
		}
		close IN;
	}
	my $vcs=getsetup($hostname, "rcs");
	open(OUT, ">", $authorized_keys.".tmp") || error("open: $authorized_keys.tmp: $!");
	foreach my $key (sort keys %seen) {
		print OUT sshkey_line($key, $vcs);
	}
	close OUT || error("close: $!");
	shell("chmod", "400", $authorized_keys.".tmp");
	shell("chown", "$user:$user", $authorized_keys.".tmp");
	CORE::rename($authorized_keys.".tmp", $authorized_keys) || error("rename; $!");

	return 1;
}

sub meta_disablesshkey {
	required => [qw{hostname}],
	options => [qw{key=s all}],
	description => "removes the specified ssh key (or all keys)",
	section => "utility",
}
sub disablesshkey {
	my $hostname=lc(shift);
	my %options=@_;
	
	locksite($hostname);
	assert_siteexists($hostname, 1);
	assert_wrapper_denied();

	my $key;
	if (exists $options{all}) {
		$key=undef;
	}
	elsif (exists $options{key}) {
		$key=parse_sshkey($options{key});
	}
	else {
		error("must specify --all or a key with --key=");
	}
	
	my $user=username($hostname);
	my $sshdir=homedir($hostname)."/.ssh";
	my $authorized_keys=$sshdir."/authorized_keys";

	return 1 if ! -e $authorized_keys;

	if (! -d $sshdir) {
		shell("mkdir", "-p", $sshdir);
		shell("chown", "$user:$user", $sshdir);
	}

	# regenerate file, removing matching keys
	open(IN, "<", $authorized_keys) || error("open $authorized_keys: $!");
	open(OUT, ">", $authorized_keys.".tmp") || error("open: $authorized_keys.tmp: $!");
	my $vcs=getsetup($hostname, "rcs");
	while (<IN>) {
		chomp;
		my $k=parse_sshkey($_);
		if (defined $k && defined $key && $k ne $key) {
			print OUT sshkey_line($k, $vcs);
		}
	}
	close IN;
	close OUT || error("close: $!");
	shell("chmod", "400", $authorized_keys.".tmp");
	shell("chown", "$user:$user", $authorized_keys.".tmp");
	CORE::rename($authorized_keys.".tmp", $authorized_keys) || error("rename; $!");

	return 1;
}

sub meta_calendar {
	required => [qw{hostname}],
	options => [qw{force! startyear=s endyear=s}],
	description => "runs ikiwiki-calendar if the site has the calendar plugin enabled",
	section => "utility",
}
sub calendar {
	my $hostname=lc(shift);
	my %options=@_;
	
	locksite($hostname);
	assert_siteexists($hostname, 1);
	assert_wrapper_denied();

	if ($options{endyear} && ! $options{startyear}) {
		error "cannot specify endyear without startyear";
	}

	if (plugin_enabled($hostname, "calendar") &&
	    defined getsetup($hostname, "archivebase") &&
	    length getsetup($hostname, "archivebase")) {
		runas(username($hostname), sub {
			shell("ikiwiki-calendar",
				($options{force} ? "-f" : ()),
				homedir($hostname)."/ikiwiki.setup",
				($options{startyear} ? $options{startyear} : ()),
				($options{endyear} ? $options{endyear} : ()),
			);
		});
	}
}

sub meta_checksetup {
	required => [qw{setupref}],
	options => [qw{}],
	description => "checks that the specified ref contains only safe changes to the setup branch",
	section => "utility",
}
sub checksetup {
	my $setupref=shift;
	
	my $hostname=userlookup(user => getpwuid($<));
	if (! defined $hostname) {
		error "unable to determine internal hostname";
	}

	# Make a temporary checkout of the ref.
	my $homedir=homedir($hostname);
	eval q{use File::Temp};
	error $@ if $@;
	my $tmpcheckout=File::Temp::tempdir(CLEANUP => 1, DIR => "$homedir/tmp");
	my $newsetup="$tmpcheckout/ikiwiki.setup";
	my $vcs=getsetup($hostname, "rcs");
	if ($vcs eq "git") {
		# doing a shared clone makes the setupref, which has
		# not landed on any branch, be available for checkout
		shell("git", "clone", "--quiet", "--shared",
			"--no-checkout", repository($hostname), $tmpcheckout);
		chdir($tmpcheckout) || error "chdir $tmpcheckout: $!";
		shell("git", "checkout", "--quiet", $setupref, "-b", "setup");
	}
	else {
		error "checksetup not implemented for $vcs";
	}

	# Only allow changes to ikiwiki.setup.
	my @files=map { chomp; $_ } `git diff --name-only remotes/origin/setup...`;
	chdir($homedir) || error "chdir $tmpcheckout: $!";
	if (grep { $_ ne "ikiwiki.setup" } @files) {
		error "rejecting change to setup branch: modification of files other than ikiwiki.setup is not allowed";
	}

	# Make sure that ikiwiki.setup didn't turn into a symlink or other
	# special file, and was not removed.
	if (-l $newsetup || ! -f $newsetup || ! -e $newsetup) {
		error "rejecting change to setup branch: ikiwiki.setup must remain a regular file";
	}
	# paranoia
	if (-x $newsetup || -X $newsetup) {
		error "rejecting change to setup branch: ikiwiki.setup cannot be executable";
	}

	# Load new and current setup file into temporary hashes.
	my $config_new=eval { loadsetup_safe($newsetup) };
	if ($@ || ! defined $config_new) {
		error "rejecting change to setup branch: failed to parse ikiwiki.setup as YAML formatted file (check syntax)\n$@";
	}
	my $config_old=loadsetup_safe($homedir."/ikiwiki.setup");
	# Compare to see which settings changed.
	eval q{use Data::Compare};
	error $@ if $@;
	my %changed;
	my %changed_plugins;
	foreach my $key (keys %$config_new, keys %$config_old) {
		if (! Compare($config_new->{$key}, $config_old->{$key})) {
			if ($key eq 'add_plugins' || $key eq 'disable_plugins') {
				my %old=map { $_ => 1 } @{$config_old->{$key}};
				my %new=map { $_ => 1 } @{$config_new->{$key}};
				foreach my $k (keys %new, keys %old) {
					if (! Compare($new{$k}, $old{$k})) {
						$changed_plugins{$k}=1;
					}
				}
			}
			else {
				$changed{$key}=1;
			}
		}
	}

	# Check that each setting that changed is one that ikiwiki
	# considers safe. Take into account any overrides configured
	# into the websetup plugin.
	# Also, see if a full rebuild is called for by the changes made.
	my $rebuild_needed=0;
	eval q{use IkiWiki::Setup};
	error $@ if $@;
	# bootstrap enough of ikiwiki to load plugins
	my %oldconfig=%config;
	%config=(%config,IkiWiki::defaultconfig(), %$config_old);
	IkiWiki::checkconfig();
	my @setup=([main => [IkiWiki::getsetup()]], IkiWiki::Setup::getsetup());
	%config=%oldconfig;

	my @unsafe_changes;
	my $websetup_unsafe=getsetup($hostname, "websetup_unsafe");
CHANGE:	foreach my $setting (keys %changed) {
		if (! ref $websetup_unsafe ||
		    ! grep { $_ eq $setting } @$websetup_unsafe) {
			foreach my $pair (@setup) {
				my %setup=@{$pair->[1]};
	
				foreach my $key (keys %setup) {
					if ($key eq $setting) {
						$rebuild_needed=1 unless Compare($setup{$key}->{rebuild}, 0);
						next CHANGE if $setup{$key}->{safe};
					}
				}
			}
		}

		push @unsafe_changes, $setting;
	}
	if (@unsafe_changes) {
		print STDERR "the following settings cannot be changed:\n";
		print STDERR "\t$_\n" foreach @unsafe_changes;
	}
	
	my @unsafe_plugin_changes;
	my $websetup_force_plugins=getsetup($hostname, "websetup_force_plugins");
PCHANGE:
	foreach my $p (keys %changed_plugins) {
		if (! ref $websetup_force_plugins ||
		    ! grep { $_ eq $p } @$websetup_force_plugins) {
			foreach my $pair (@setup) {
				next if $pair->[0] ne $p;
				my %setup=@{$pair->[1]};
				$rebuild_needed=1 unless Compare($setup{plugin}->{rebuild}, 0);
				next PCHANGE if $setup{plugin}->{safe};
			}
		}
		
		push @unsafe_plugin_changes, $p;
	}
	if (@unsafe_plugin_changes) {
		print STDERR "the following plugins cannot be enabled/disabled:\n";
		print STDERR "\t$_\n" foreach @unsafe_plugin_changes;
	}
		
	error "rejecting change to setup branch"
		if @unsafe_changes || @unsafe_plugin_changes;
	
	if (%changed || %changed_plugins) {
		# Check out setup file in toplevel. This is slightly tricky
		# as the commit has not landed in the bare git repo yet --
		# but it is available in the tmpcheckout.
		shell("git", "pull", "-q", $tmpcheckout, "setup");
	
		# Refresh or rebuild site to reflect setup changes.
		print STDERR "Updating site to reflect setup changes...\n";
		shell("ikiwiki", "-setup", "ikiwiki.setup", "-v",
			($rebuild_needed ? ("-rebuild") : ("-refresh", "-wrappers"))
		);
	}

	exit 0;
}

sub meta_sudo {
	required => [qw{hostname ...}],
	options => [],
	description => "runs sudo as site user (example: ikisite sudo \$SITE -- ls -l)",
	section => "utility",
}
sub sudo {
	my $hostname=lc(shift);
	
	assert_root();
	# note: no locksite, as commands that themselves lock may be run inside the sudo
	assert_siteexists($hostname, 1);
	assert_wrapper_denied();
	
	$ENV{HOME}=homedir($hostname);
	chdir($ENV{HOME}) || error "chdir: $!";
	shell("sudo", "-u", username($hostname), (@_ ? @_ : ($ENV{SHELL} || "/bin/sh")));
	return undef; # don't print return code
}

sub meta_analog {
	required => [qw{hostname ...}],
	options => [],
	description => "runs analog, generates report to stdout",
	section => "utility",
}
sub analog {
	my $hostname=lc(shift);
	
	assert_siteexists($hostname, 1);
	assert_wrapper_unsafe();
	if (! $config{allow_analog_reports}) {
		assert_root();
	}
	
	chdir(logdir($hostname)) || die "chdir: $!";
	system("analog", "+CREFREPEXCLUDE http://${hostname}/*", "+a", "+f", "+D", glob("access.log*"), @_);
	return undef; # don't print return code
}

sub meta_logview {
	required => [qw{hostname ...}],
	options => [],
	description => "tail -f of all log files",
	section => "utility",
}
sub logview {
	my $hostname=lc(shift);
	
	assert_root();
	assert_siteexists($hostname, 1);
	assert_wrapper_unsafe();
	
	chdir(logdir($hostname)) || die "chdir: $!";
	system("tail", "-f", glob("*.log"), @_);
	return undef; # don't print return code
}

# Run by iki-git-shell, don't trust inputs or stdio.
sub meta_logs {
	required => [qw{}],
	options => [qw{dump tail}],
	description => "tails or dumps apache access.log for current user's site",
	section => "utility",
}
sub logs {
	my %options=@_;

	assert_wrapper_unsafe();
	
	my $username=(getpwuid($<))[0];
	if (! defined $username || ! length $username) {
		error "unable to determine username";
	}
	chdir(userlogdir($username)) || die "chdir: $!";
	if ($options{dump}) {
		foreach my $n (reverse(1..9)) {
			if (-e "access.log.$n.gz") {
				system("zcat", "access.log.$n.gz");
			}
		}
		foreach my $l ("access.log.0", "access.log") {
			if (-e $l) {
				system("cat", $l);
			}
		}
	}
	else {
		print "Viewing logs.. press ctrl-c to exit.\n\n";
		system("tail", "-f", "access.log");
	}
	return undef; # don't print return code
}

sub meta_createnonce {
	required => [qw{hostname}],
	options => [qw{value=s}],
	description => "returns a nonce for ikisite-wrapper",
	section => "utility",
}
sub createnonce {
	my $hostname=shift;
	my %options=@_;

	locksite($hostname);
	assert_siteexists($hostname, 1);
	assert_wrapper_denied();

	my $nonce=defined $options{value} ? $options{value} : time().':'.`uuid -v4`;
	chomp $nonce;
	my $noncefile=homedir($hostname)."/.ikisite-nonce";
	open(NONCE, ">>", $noncefile) || die "$noncefile: $!";
	my $username=username($hostname);
	shell("chown", "$username:$username", $noncefile);
	shell("chmod", "600", $noncefile);
	print NONCE "$nonce\n";
	close NONCE;
	return $nonce;
}

sub meta_deletenonce {
	required => [qw{hostname}],
	options => [qw{nonce=s}],
	description => "invalidates the specified nonce",
	section => "utility",
}
sub deletenonce {
	my $hostname=lc(shift);
	my %options=@_;

	assert_root();
	locksite($hostname);
	assert_siteexists($hostname, 1);
	assert_wrapper_safe($hostname);

	if (! defined $options{nonce}) {
		error "--nonce required";
	}

	my $noncefile=homedir($hostname)."/.ikisite-nonce";
	open(NONCE, "<", $noncefile) || die "$noncefile: $!";
	my %nonces;
	while (<NONCE>) {
		chomp;
		$nonces{$_}=1;
	}
	close NONCE;
	delete $nonces{$options{nonce}};
	open(NONCE, ">", $noncefile) || die "$noncefile: $!";
	my $username=username($hostname);
	shell("chown", "$username:$username", $noncefile);
	shell("chmod", "600", $noncefile);
	print NONCE "$_\n" foreach keys %nonces;
	close NONCE;

	return 1;
}

sub meta_checksite {
	required => [qw{hostname}],
	options => [qw{wait hasnonce}],
	description => "checks if site is done being created",
	section => "query",
}
sub checksite {
	my $hostname=lc(shift);
	my %options=@_;
	
	assert_root();
	assert_siteexists($hostname, 1);
	assert_wrapper_unsafe();

	my $checknonce = sub {
		if ($options{hasnonce}) {
			my $noncefile=homedir($hostname)."/.ikisite-nonce";
			if (! -e $noncefile) {
				return IkiWiki::SuccessReason->new("$hostname lacks nonce");
			}
		}
		return IkiWiki::SuccessReason->new("$hostname is ready");
	};

	if ($options{wait}) {
		# blocking wait
		locksite($hostname);
		return $checknonce->();
	}
	else {
		# nonblocking lock test
		my $lockfile="$config{lockdir}/".username($hostname);
		open(CHECKLOCK, '>', $lockfile) ||
			error ("cannot write to $lockfile: $!");
		if (! flock(CHECKLOCK, 2 | 4)) { # LOCK_EX | LOCK_NB
			close CHECKLOCK;
			return IkiWiki::FailReason->new("$hostname is locked");
		}
		else {
			close CHECKLOCK;
			return $checknonce->();
		}
	}
}

sub meta_upgrade {
	required => [qw{hostname}],
	options => [],
	description => "upgrade a site to new layout",
	section => "primary",
}
sub upgrade {
	my $hostname=lc(shift);

	assert_root();
	assert_siteexists($hostname, 1);
	assert_wrapper_denied();

	my $home=homedir($hostname);

	my @cleanup;
		
	my $user=username($hostname);
	my $uid=int getpwnam($user);
	my $gid=int getgrnam($user);

	# logs moved
	if (-d "$home/logs") {
		my $newlogdir=logdir($hostname, 1);
		if (! -d $newlogdir) {
			mkdir($newlogdir) || error "mkdir $newlogdir: $!";
			chmod(0750, "$newlogdir") || error "chmod $newlogdir: $!";
		}
		foreach my $file (<$home/logs/*>) {
			my $basefile=IkiWiki::basename($file);
			my $dest="$newlogdir/$basefile";
			if (! -e $dest) {
				shell("mv", "-f", $file, $dest);
			}
			else {
				print STDERR "warning: $file not moved to $basefile, which already exists\n";
			}
		}
		rmdir("$home/logs");

		# Only ikisite log is writable by the site user's gid.
		foreach my $file (".", "ikisite.log") {
			chown(0, $gid, "$newlogdir/$file")
				|| error "chown $newlogdir/$file: $!";
		}
	}

	# cgi moved, and is no longer suid, as suidexec is used.
	my $oldcgi=$home."/public_html/ikiwiki.cgi";
	if (-e $oldcgi) {
		push @cleanup, $oldcgi;

		my $cgidir=cgidir($hostname, 1);
		mkdir($cgidir) || error "mkdir $cgidir: $!";
		chown($uid, $gid, "$cgidir") || error "chown $cgidir: $!";
		chmod(0755, "$cgidir") || error "chmod $cgidir: $!";

		eval q{use YAML::Syck};
		die $@ if $@;
		readconfig();

		changesetup($hostname,
			rebuild => 0,
			commit => 1,
			message => "ikisite upgrade",
			set => [
				"cgi_wrapper" ."=". $cgidir."/ikiwiki.cgi",
				"cgi_wrappermode" ."=". "0755",
			],
			# gitdaemonuser became an untrusted committer
			'set-yaml' => [
				"untrusted_committers=".Dump([$config{gitdaemonuser}]),
			],
		);

		changesetup($hostname,
			rebuild => 0,
			commit => 1,
			message => "ikisite upgrade",
			set => [
				"cgi_wrapper" ."=". $cgidir."/ikiwiki.cgi",
				"cgi_wrappermode" ."=". "0755",
			],
		);
	}

	# File perms were locked down.
	foreach my $file ("ikiwiki.setup", ".gitconfig", ".gitignore") {
		if (-e "$home/$file") {
			chmod(0600, "$home/$file") || error "chmod $home/$file: $!";
		}
	}
	# Dir perms were locked down.
	foreach my $dir (".git", "source") {
		if (-e "$home/$dir") {
			chmod(0700, "$home/$dir") || error "chmod $home/$dir: $!";
		}
	}
	foreach my $dir ("apache") {
		if (-e "$home/$dir") {
			shell("chown", "$user:www-data", "$home/$dir");
			chmod(0750, "$home/$dir") || error "chmod $home/$dir: $!";
		}
	}

	# New rootconfig directory created.
	my $rootconfig=rootconfig($hostname);
	if (! -d $rootconfig) {
		mkdir($rootconfig) || error "mkdir $rootconfig: $!";
		my $old=homedir($hostname)."/apache.conf.tmpl";
		if (-e $old &&
		    ! -e "$rootconfig/apache.conf.tmpl") {
		    	# Safe because the file will only be used if owned
			# by root.
			shell("mv", "-f", $old, $rootconfig);
		}
	}

	# Disable and re-enable to write new apache configs, etc.
	disable($hostname, temporary => 1);
	enable($hostname);

	foreach my $file (@cleanup) {
		unlink($file) || error "unlink $file: $!";
	}
}

############################################################################

my %locks;
sub locksite {
	my $hostname=shift;

	my $lockfile="$config{lockdir}/".username($hostname);

	if (! exists $locks{$hostname}) {
		open($locks{$hostname}, '>', $lockfile) ||
			error ("cannot write to $lockfile: $!");
		if (! flock($locks{$hostname}, 2)) { # LOCK_EX
			error("flock: $!");
		}
	}

	return $lockfile;
}

sub urllist {
	my $username=shift;

	my @urls;
	my $urlalias=getsetup(undef, "urlalias", user => $username);
	if (ref $urlalias) {
		push @urls, @$urlalias;
	}
	push @urls, getsetup(undef, "url", user => $username);
	eval q{use URI};
	error $@ if $@;
	return grep { $_->can("host") } map { URI->new($_) } @urls;
}

sub githooks {
	my $repository=shift;

	unlink("$repository/hooks/update");
	symlink("/usr/bin/iki-git-hook-update", "$repository/hooks/update") || error("symlink: $!");
}

sub parse_sshkey {
	my $line=shift;
	
	return undef if $line=~/^\s*#/;

	# Parse key out of line, which may be just the key,
	# or may be an authorized_keys line, and may have surrounding whitespace.
	# Retain one word of optional comment part.
	if ($line =~ /^(?:.* )?\s*(ssh-\w+\s+[A-Za-z0-9+\/=]+(?:\s+[^\s]*)?)\s*.*$/) {
		return $1;
	}
	else {
		return undef;
	}
}

sub sshkey_line {
	my $key=shift;
	my $vcs=shift;

	if ($vcs eq 'git') {
		return "command=\"iki-git-shell\",no-agent-forwarding,no-port-forwarding,no-X11-forwarding,no-pty,no-user-rc $key\n";
	}
	else {
		error("unsupported vcs $vcs");
	}
}

sub assert_siteexists {
	my $hostname=shift;
	my $should=shift;

	my $exists=siteexists($hostname);
	if ($exists != $should) {
		if ($exists) {
			error "$hostname already exists";
		}
		else {
			if (ref($exists) eq 'IkiWiki::FailReason') {
				error "$exists";
			}
			else {
				error "$hostname does not exist";
			}
		}
	}

}

sub assert_wrapper_denied {
	if (exists $ENV{IKISITE_NONCE}) {
		error "subcommand cannot be run via wrapper";
	}
}

sub assert_wrapper_unsafe {
	my $hostname=shift;

	delete $ENV{IKISITE_NONCE};
}

sub assert_wrapper_safe {
	my $hostname=shift;

	# IKISITE_NONCE, if set, must be equal to a line from the
	# .ikisite-nonce file. This allows suid wrappers to pass the
	# variable through to check that their caller knows a valid nonce
	# for the site.
	if (exists $ENV{IKISITE_NONCE}) {
		my $noncefile=homedir($hostname)."/.ikisite-nonce";
		open(NONCE, "<", $noncefile) || die "$noncefile: $!";
		while (<NONCE>) {
			chomp;
			if ($_ eq $ENV{IKISITE_NONCE}) {
				close NONCE;
				delete $ENV{IKISITE_NONCE};
				return 1;
			}
		}
		close NONCE;

		error "nonce check failure";
	}
}

sub isemail {
	my $email=shift;

	return unless defined $email && length $email;

	# This is not intended to be a complete RFC compliant email address
	# check. It only makes sure the email contains only legal
	# characters.
	return $email =~ /[^-+@_.a-zA-Z0-9]/;
}

sub isinternaldomain {
	my $domain=shift;

	while (length $domain) {
		if (defined eval { username($domain) } && !$@) {
			return 1;
		}
		$domain=~s/^[^.]+(\.|$)//; # strip subdomains
	}

	return 0;
}

sub plugin_enabled {
	my $hostname=shift;
	my $plugin=shift;

	my @add_plugins=@{getsetup($hostname, "add_plugins")};
	my @disable_plugins=@{getsetup($hostname, "disable_plugins")};

	return 0 if grep { $_ eq $plugin } @disable_plugins;
	return 1 if grep { $_ eq $plugin } @add_plugins;
	return undef; # might be enabled by default or pulled in via plugin bundle
}

sub actionlog {
	my $message=shift;
	my $subcommand=shift;
	my $hostname=shift; # hostname is always the first required parameter
	return unless defined $hostname && length $hostname;

	my $username=eval { username($hostname) };
	return unless defined $username;

	my $logdir=eval { logdir($hostname) };
	return unless defined $logdir;

	my $localhost=eval q{use Sys::Hostname; hostname()} || "somehost";

	open(LOG, ">>", "$logdir/ikisite.log") || return;
	print LOG gmtime()." $localhost: $subcommand: $message\n";
	close LOG;
}

# used only for recording a few specific actions:
# site creation and deletion
sub accountinglog ($$;$) {
	my $action=shift; # "create" or "delete"
	my $hostname=shift;
	my $username=shift; # only for create

	readconfig();
	open(ACCOUNTING_LOG, ">>", $config{accountinglog}) || error "$config{accountinglog}: $!";
	if ($action eq "create") {
		print ACCOUNTING_LOG gmtime(time)." create $hostname $username\n";
	}
	elsif ($action eq "delete") {
		print ACCOUNTING_LOG gmtime(time)." delete $hostname\n";
	}
	else {
		error "accountinglog: unsupported action $action";
	}
	close ACCOUNTING_LOG;
	
	# Inform observers as background job to avoid delaying eg, 
	# site creation.
	my $pid=IkiWiki::Hosting::daemonize();
	if ($pid) {
		return;
	}
	# Avoid keeping sites locked while daemonized.
	foreach my $site (keys %locks) {
		close($locks{$site});
	}
	# Wait a minute to let anything that is being done settle.
	sleep(60);
	observe($hostname);
	exit;
}

sub nsupdate {
	# chdir done here because nsupdate expects the other key in the pwd
	chdir "$config{keydir}/dns" || error "chdir $config{keydir}/dns: $!";

	my @privkey=glob("K**.private");
	if (! @privkey) {
		error("cannot find private key in $config{keydir}/dns");
	}

	# Any key in the directory is assumed to work, so just take the first.
	debug("nsupdate -k $privkey[0] <<EOF");
	open(NSUPDATE, "|-", "nsupdate", "-k", $privkey[0]) || error("nsupdate: $!");
	print NSUPDATE join("\n", @_)."\n\n";
	debug($_) foreach @_;
	debug("EOF");
	if (! close NSUPDATE) {
		error("nsupdate failed")
	}

	chdir "/";
}

# checks apache config, only reloading apache if the config is legal to
# prevent a bad config leaving it not running
#
# returns false if the config is bad; the caller should then revert
# whatever changes it made
sub apache_reload_graceful {
	if (shell_exitcode("sh", "-c", "apache2ctl configtest >/dev/null 2>/dev/null") == 0) {
		# Use service rather than letting apache2ctl graceful
		# reload apache, because the latter has been observed
		# sometimes stopping apache and starting it again under a
		# different cgroup than the one systemd keeps apache in.
		eval { shell("service", "apache2", "reload") };
		if ($@) {
			return 0;
		}
		else {
			return 1;
		}
	}
	else {
		return 0;
	}
}


sub loadsetup_safe {
	my $setupfile=shift;

	require IkiWiki::Setup;
	# Avoid polluting our %config with site setup.
	my %ret;
	no warnings;
	my $overridden=\&IkiWiki::Setup::merge;
	*IkiWiki::Setup::merge=sub { %ret=%{shift()} };
	# This can fail with error; catch to clean up.
	eval {
		# Note that safe mode is enabled, to avoid this
		# executing IkiWiki::Setup::Standard setup files.
		IkiWiki::Setup::load($setupfile, 1);
	};
	*IkiWiki::Setup::merge=$overridden;
	use warnings;
	die $@ if $@;

	return \%ret;
}

main(\&actionlog);