1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
|
2006-06-23 Roger Leigh <rleigh@debian.org>
* The include order of all includes has been reviewed. Local
headers are included first to detect missing includes. C++
headers are used instead of C headers.
* All sources include only the headers they need, rather than
using sbuild.h.
* schroot/sbuild.h: Remove.
* schroot/sbuild-types.h: date operator << uses "%b" rather than
"%B" in the date format string.
2006-06-23 Roger Leigh <rleigh@debian.org>
* NEWS: Document dchroot compatibility fixes.
2006-06-23 Roger Leigh <rleigh@debian.org>
* schroot/schroot-main.cc, schroot/schroot-listmounts.cc,
schroot/schroot-releaselock.cc: Add date to version output.
* schroot/sbuild-types.h: Define a date class to format dates for
output.
* bootstrap: Generate m4/schroot_release.m4 with a unix time.
* scripts/schroot_release.m4.in: Define RELEASE_DATE as a unix
time.
* debian/changelog: Update rules.
2006-06-23 Roger Leigh <rleigh@debian.org>
* test/Makefile.am
(TESTS): Remove sbuild-lock, because it can fail randomly on slow
or heavily loaded systems due to timing constraints.
* bootstrap: Create m4 directory if it doesn't exist.
* Makefile.am
(dist-hook): Remove junk from distdir such as temorary files.
(EXTRA_DIST): Distribute bootstrap and m4 macros and templates.
* configure.ac: Add checks for find and xargs.
2006-06-23 Roger Leigh <rleigh@debian.org>
* API documentation additions.
* Add @RELEASE_DATE@ in place of hard-coded date in all manual
pages.
* configure.ac: Use SCHROOT_RELEASE_DATE.
* bootstrap: Generate autoconf macro with embedded release date.
* scripts/schroot_release.m4.in: New file. Autoconf macro
template to define release date.
2006-06-23 Roger Leigh <rleigh@debian.org>
* schroot/Makefile.am: Add new files. Additionally, build
schroot.la and dchroot.la static libraries to ease linking.
* schroot/dchroot-options.cc, schroot/dchroot-dsa-options.cc,
schroot/schroot-options.cc: Remove compatibility setup.
* schroot/schroot-options-base.(cc|h): Remove compatibility_type
and compat member.
* schroot/dchroot-main.(cc|h), schroot/dchroot-dsa-main.(cc|h):
New files. These two classes derive from schroot::main, and
override its virtual methods to customise it for dchroot and
dchroot-dsa respectively.
* schroot/schroot-main.(cc|h): New files. This new class contains
all the functionality of schroot.cc, but is separated into
separate methods, which may be overridden in other
implementations.
* dchroot.cc, dchroot-dsa.cc, schroot.cc: These files (two new)
are stubs to instantiate an appropriate main object and run it.
* schroot.cc: Move all functionality into schroot-main.cc.
* schroot/schroot.cc, schroot/schroot-listmounts.cc,
schroot/schroot-releaselock.cc (main): Don't disable debugging
messages if debugging is disabled. It defaults to disabled
anyway, and this prevents --debug from working.
2006-06-23 Roger Leigh <rleigh@debian.org>
* schroot/schroot.cc (main): When running dchroot-dsa, use
dchroot_dsa::chroot_config instead or dchroot::chroot_config.
* schroot/dchroot-chroot-config.(cc|h): New class. Remove
dchroot-dsa specific parts.
* schroot/dchroot-dsa-chroot-config.(cc|h): New class. Split
dchroot-dsa specific parts from dchroot::chroot_config.
2006-06-23 Roger Leigh <rleigh@debian.org>
* schroot/Makefile.am: Build with new headers.
* schroot/dchroot-session.h: Update API documentation.
* schroot/schroot.cc: Include the new options headers. The
options object is now a tr1::shared_ptr to the base_options
options base class.
* schroot/dchroot-dsa-options.(cc|h): dchroot-dsa-specific options
and parsing logic.
* schroot/dchroot-options.(cc|h): dchroot-specific options and
parsing logic.
* schroot/schroot-options.(cc|h): schroot-specific options and
parsing logic.
* schroot/schroot-options-base.(cc|h): New files. Base class
containing generic options parsing functionality and common
options.
2006-06-22 Roger Leigh <rleigh@debian.org>
* Update API reference.
2006-06-22 Roger Leigh <rleigh@debian.org>
* schroot/schroot.1.in, schroot/dchroot.1.in,
schroot/dchroot-dsa.1.in: Document differences in command
arguments and chdir behaviour.
2006-06-22 Roger Leigh <rleigh@debian.org>
* schroot/schroot-options.cc: Add a --debug option to enable
debugging messages.
* schroot/Makefile.am
(dchroot_SOURCES): Add dchroot-session-base.(cc|h).
(dchroot_dsa_SOURCES): Add dchroot-session-base.(cc|h). Use
dchroot-dsa-session.(cc|h) instead of dchroot-session.(cc|h).
* schroot/dchroot-dsa-session.(cc|h): New class, based upon
dchroot::session and derived from dchroot::session_base. Remove
specialisations for dchroot.
* schroot/dchroot-session.(cc|h): Derive from
dchroot::session_base. Remove specialisations for dchroot-dsa.
* schroot/dchroot-session-base.(cc|h): New class, split from
dchroot::session. It includes functionality common to dchroot and
dchroot-dsa sessions, as well as recording a compatibility state
which influences session behaviour depending on whether
dchroot.conf or schroot.conf are used.
* schroot/schroot.cc: When building for dchroot-dsa, include the
dchroot-dsa-session.h header.
(main): When building for dchroot-dsa, create a
dchroot_dsa::session session. dchroot-dsa and dchroot sessions
include a compatibility mode as a fifth argument.
* schroot/sbuild-session.cc
(get_login_command, get_user_command): Split the two parts of
get_command into separate protected virtual methods, so that they
may be independently overridden and chained up to by derived
session types.
(run_child): When reporting an exec error, use filename rather
than argv[0], which may differ for login shells.
2006-06-22 Luk Claes <luk@debian.org>
* po/vi.po: Update Vietnamese translation.
2006-06-22 Roger Leigh <rleigh@debian.org>
* schroot/schroot-options.cc: dchroot and dchroot-dsa only permit
a single command option.
* schroot/dchroot-session.cc
(get_login_directories): New virtual method. For dchroot, use the
home directory and then / if not preserving the environment,
otherwise use the current working directory and /. For
dchroot-dsa, always use the home directory and then /.
(get_command_directories): New virtual method. This simply wraps
get_login_directories; dchroot and dchroot-dsa do not distinguish
between these two use cases.
(get_command): When running a login shell, this behaves similarly
to sbuild::session::get_command. When running a command, dchroot
runs "sh -c command", and dchroot-dsa runs "command".
* schroot/sbuild-session.cc
(getcwd): New utility function, split out from run_child.
(get_login_directories): New protected virtual method. Get a list
of directories to use (including fallbacks) when running a login
shell. Use the current working directory, $HOME, passwd pw_dir
and / in that order.
(get_command_directories): New protected virtual method. Get a
list of directories to use (including fallbacks) when running a
command. This is currently only the current working directory;
there are no fallbacks.
(get_shell): New protected virtual method. Get the program to run
as a shell, falling back to /bin/sh if unavailable.
(get_command): New protected virtual method. Get the parameters
for calling exec with (file and argv).
(run_child): Use the new functions and methods getcwd,
get_login_directories, get_command_directories, get_shell and
get_command. Handle directory fallbacks when changing directory
inside the chroot.
(run_chroot): If debugging is enabled, automatically set the debug
level to DEBUG_NOTICE.
* schroot/sbuild-session.h (sbuild): New protected member cwd, to
hold the current directory before entering the chroot.
2006-06-21 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-chroot-file.h: Remove dangerous TODO item.
* schroot/sbuild-keyfile.h: Remove completed TODO item.
* NEWS: Document dchroot-dsa and new user access controls.
2006-06-21 Roger Leigh <rleigh@debian.org>
* schroot/schroot.cc (program_name): For safety, return a string
if the enum is invalid.
* schroot/sbuild-chroot-config.cc, schroot/sbuild-parse-error.cc:
Reindent and capitalise translatable error strings.
* schroot/sbuild-chroot.cc, schroot/sbuild-chroot-source.cc,
schroot/schroot-options.cc, schroot/schroot-listmounts-options.cc
schroot/schroot-releaselock-options.cc: Remove whitespace from
translatable strings.
* schroot/sbuild-format-detail.h: Ensure that some whitespace
always separates name and value, even when the name is over 21
characters.
2006-06-21 Roger Leigh <rleigh@debian.org>
* schroot/schroot.1.in: Document users and root-users.
* schroot/schroot.conf.5.in: Document "users", "root-users",
"source-users" and "source-root-users" keys.
* schroot/schroot.cc (main): Fix generated schroot.conf header to
document users and root-users.
* schroot/dchroot-session.cc (get_chroot_auth_status): New method
to replace get_auth_status. This overrides the sbuild::session
implementation to provide the correct authorisation checks for
dchroot and dchroot-dsa.
* schroot/dchroot-chroot-config.cc (parse_data): Set users rather
than groups for dchroot-dsa allowed user list.
* schroot/sbuild-chroot-source.cc: Save and restore source-users
and source-root-users keyfile keys.
* schroot/sbuild-chroot-source.h: Add source_users and
source_root_users members and methods.
* schroot/sbuild-chroot.cc: Save and restore source-users
and source-root-users keyfile keys.
* schroot/sbuild-chroot.h: Add users and root_users members and
methods.
* schroot/sbuild-session.cc (get_chroot_auth_status): New
protected virtual function. The chroot authorisation checks have
been split out from get_auth_status for reuse in derived classes.
2006-06-21 Roger Leigh <rleigh@debian.org>
* schroot/Makefile.am: Install dchroot-dsa setuid root.
2006-06-21 Roger Leigh <rleigh@debian.org>
* debian/changelog: Add dchroot-dsa package.
2006-06-21 Roger Leigh <rleigh@debian.org>
* configure.ac: Define and substiture DCHROOT_CONF. Generate
dchroot-dsa man page.
* schroot/Makefile.am: Add dchroot-dsa man page.
* schroot/dchroot-dsa.1.in: New file. Document dchroot-dsa.
* schroot/dchroot.1.in: Update documentation now dchroot is the
official dchroot package, and fix up minor formatting errors.
Document the --chroot option. Use @DCHROOT_CONF@ in place of
/etc/dchroot.conf.
* schroot/schroot.cc: Don't hard-code DCHROOT_CONF.
(program_name): New function to get program name.
(print_version): Use program_name.
(main): Use new options::compat. Add support for dchroot-dsa.
* schroot/dchroot-chroot-config.cc
(parse_data): When used by dchroot-dsa, extend the available
whitespace characters to " \t:;,", parse the third field as a user
list, and add to the chroot group list. dchroot-dsa chroots don't
set the "default" chroot alias.
* schroot/dchroot-session.cc
(get_auth_status): Add user checks for dchroot-dsa.
* schroot/schroot-options.cc: Use compat to adapt to selected
compatibility mode, in place of dchroot_compat. Add
specialisations for dchroot-dsa.
* schroot/schroot-options.h: Add compatibility_type enum
(for schroot, dchroot and dchroot-dsa). Add compat member to
store current compatibility mode, in place of dchroot_compat.
* schroot/sbuild-session.h: get_config returns a const reference.
* test/sbuild-util.cc: Update test for split_string.
* schroot/sbuild-keyfile.h: Use new split_string argument type.
* schroot/sbuild-util.h: split_string uses a string as a list of
separators, instead of a single character.
2006-06-20 Roger Leigh <rleigh@debian.org>
* schroot/Makefile.am: Add rules for dchroot-dsa.
* configure.ac: Add enable option for dchroot-dsa.
2006-06-20 Roger Leigh <rleigh@debian.org>
* Update translations.
2006-06-20 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-error.h: Remove runtime_error_custom.
* schroot/sbuild-custom-error.h: Add virtual destructor.
2006-06-20 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-auth-conv.h: Remove error typedef.
* schroot/sbuild-auth-conv-tty.(cc|h): Use the custom_error
exception class.
2006-06-20 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-custom-error.tcc (format_error): detail and error
arguments were used in the wrong order in the two argument case.
* schroot/dchroot-chroot-config.cc (parse_data): Use the
parse_error class.
* schroot/sbuild-chroot-config.(cc|h): Use the custom_error
exception class. Merge check_security with load_data.
(load_data): Report filename when throwing a parse error.
2006-06-20 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-personality.(cc|h): Use the custom_error
exception class.
2006-06-20 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.h: Reindent error codes.
* schroot/sbuild-lock.(cc|h): Use the custom_error exception
class.
2006-06-19 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-chroot.(cc|h), schroot/sbuild-chroot-file.cc,
schroot/sbuild-chroot-block-device.cc,
schroot/sbuild-chroot-lvm-snapshot.cc: Use the custom_error
exception class.
2006-06-19 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-auth.(cc|h), schroot/sbuild-session.(cc|h),
schroot/dchroot-session.cc (run_impl): Use new templated exception
type.
* schroot/sbuild-session-error.(cc|h): Remove.
* schroot/sbuild-auth-error.(cc|h): Remove.
* schroot/sbuild-custom-error.(cc|h): New files, providing an
exception class templated on an error code enum. It replaces the
auth_error and session_error exception classes.
2006-06-19 Roger Leigh <rleigh@debian.org>
* schroot/dchroot-session.cc (run_impl): Throw a session_error in
place of a runtime_error_custom.
* schroot/sbuild-session.cc: Throw a session_error in place of a
runtime_error_custom. Correct capitalisation of error messages.
Don't throw an exception when a child exits with a nonzero exit
status.
* schroot/sbuild-session.h: Use session_error as the error type.
* schroot/sbuild-auth.cc: Throw an auth_error in place of a
runtime_error_custom.
(pam_strerror): New private method to get a PAM error message.
* schroot/sbuild-auth.h: Use auth_error as the error type.
* schroot/Makefile.am: Add sbuild-auth-error.(cc|h) and
sbuild-session-error.(cc|h).
* schroot/sbuild-session-error.(cc|h): New files, providing an
exception class for reporting session errors.
* schroot/sbuild-auth-error.(cc|h): New files, providing an
exception class for reporting authentication errors.
2006-06-19 Roger Leigh <rleigh@debian.org>
* schroot/setup/00check: Make sanity check errors more
descriptive. Fix check for using / as a chroot location.
2006-06-19 Roger Leigh <rleigh@debian.org>
* schroot/setup/10mount: Only remove the mount location if it
exists (to quell a warning).
2006-06-18 Luk Claes <luk@debian.org>
* po/sv.po: Update Swedish translation.
2006-06-17 Roger Leigh <rleigh@debian.org>
* debian/changelog: Bump version to 0.99.1.
* NEWS: Bump version to 0.99.1.
* configure.ac: Bump version to 0.99.1.
2006-06-17 Roger Leigh <rleigh@debian.org>
* Version 0.99.0.
* debian/changelog: Finalise for 0.99.0.
* NEWS: Document init script changes.
2006-06-17 Roger Leigh <rleigh@debian.org>
* debian/changelog: Tidy up changes for release.
* debian/schroot.postinst: If upgrading from a version less than
0.99.0-1, remove the rc.d symlinks, because rcS is used instead of
the normal runlevels.
2006-06-17 Roger Leigh <rleigh@debian.org>
* debian/control: Add Luk Claes as a co-maintainer.
2006-06-17 Roger Leigh <rleigh@debian.org>
* debian/schroot.README.Debian: Move from debian/README.Debian.
Remove outdated dchroot bits.
* debian/schroot.NEWS: New file. Document the splitting out of
dchroot.
2006-06-16 Roger Leigh <rleigh@debian.org>
* schroot/schroot.conf.5.in: Remove command-prefix example of
using linux32, now that the personality option is the recommended
method of changing personality.
2006-06-15 Roger Leigh <rleigh@debian.org>
* po/en_GB.po: Update British English translation.
2006-06-15 Roger Leigh <rleigh@debian.org>
* po/POTFILES.in: Update list of source files. Remove all
headers.
2006-06-15 Roger Leigh <rleigh@debian.org>
* TODO: Remove completed items (translatable strings removed from
headers, and root no longer needs to be in groups or root groups).
* schroot/Makefile.am: Add sbuild-format-detail.cc.
* schroot/sbuild-format-detail.h: Remove ostream operator <<
format_detail<bool> specialisation.
* schroot/sbuild-format-detail.cc: New file. Move ostream
operator << format_detail<bool> specialisation from the headers,
so translatable strings are not used in the header.
2006-06-15 Roger Leigh <rleigh@debian.org>
* schroot/Makefile.am: Add sbuild-parse-error.(cc|h).
* schroot/sbuild-keyfile.cc (keyfile, check_priority) Use
parse_error instead of runtime_error_custom for throwing on parse
failures.
* schroot/sbuild-keyfile.h: Use parse_error instead of
runtime_error_custom for throwing on parse failures, and also for
logging warnings. Additionally, be stricter when parsing by
throwing a parse error when an empty group is specified, or a key
before a group definition.
* schroot/sbuild-parse-value.h: Throw a parse_error when parsing
fails.
* schroot/sbuild-parse-error.(cc|h): New files, providing an
exception class for reporting parse errors.
2006-06-14 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-personality.cc
(personality): On Linux, default to initialising with the current
process' personality, otherwise initialise to "undefined".
(get_name): New method. Return the current personality.
* schroot/sbuild-personality.h: Document constructors fully, and
add a get method to get the personality type.
2006-06-14 Roger Leigh <rleigh@debian.org>
* debian/changelog: dchroot doesn't need to Replace schroot.
2006-06-14 Roger Leigh <rleigh@debian.org>
* schroot/dchroot.1.in: Document incompatibilities with DSA
dchroot, and a few minor cleanups.
2006-06-14 Roger Leigh <rleigh@debian.org>
* Update translations.
2006-06-14 Roger Leigh <rleigh@debian.org>
* debian/changelog: Split dchroot into a separate package.
2006-06-14 Roger Leigh <rleigh@debian.org>
* schroot/schroot.cc (main): Output configuration file with a help
message in comments, to help migrating dchroot.conf.
2006-06-13 Roger Leigh <rleigh@debian.org>
* schroot/Makefile.am
(install-data-hook): Don't create $(SCHROOT_LOCK_DIR).
* configure.ac: Remove SCHROOT_LOCK_DIR, which is no longer used
now we use lockdev and fcntl locking.
2006-06-13 Roger Leigh <rleigh@debian.org>
* debian/changelog: Close #372874.
* NEWS: Document dchroot.conf change.
* schroot/dchroot.1.in: Document the new personality field in
dchroot.conf.
* schroot/dchroot-chroot-config.cc (parse_data): Parse a third
optional "personality" field, and if present, set the chroot
personality.
2006-06-13 Roger Leigh <rleigh@debian.org>
* debian/changelog: Close #372569.
* NEWS: Document changed authorisation behaviour.
* schroot/sbuild-session.cc
(get_auth_status): If no groups are specified, root can still gain
access (but still requires authentication).
2006-06-13 Roger Leigh <rleigh@debian.org>
* debian/changelog: Close #354344.
* schroot/setup/10mount: Mount plain chroots with --rbind rather
than --bind. This is safe now schroot-listmounts is used to
unmount all filesystems in the chroot.
2006-06-13 Roger Leigh <rleigh@debian.org>
* THANKS: New file. Add Ben Hutchings.
2006-06-13 Roger Leigh <rleigh@debian.org>
* NEWS: Document new "personality" option.
* po/POTFILES.in: Add schroot/sbuild-personality.(cc|h).
* test/Makefile.am: Add sbuild-personality.cc.
* test/sbuild-personality.cc: Tests for sbuild::personality.
* schroot/schroot.conf.5.in: Document new "personality" key.
* schroot/Makefile.am: Add sbuild-personality.(cc|h).
* schroot/sbuild.h: Include sbuild-personality.h.
* schroot/sbuild-session.cc (run_child): Set the personality
before chrooting.
* schroot/sbuild-chroot.cc:
(chroot) When constructing a chroot, the persona defaults to
"linux" on Linux systems, and "undefined" on all other systems.
(get_persona): New method to get the persona.
(set_persona): New method to set the persona.
(print_details): Print the persona.
(get_keyfile): Set "personality" key.
(set_keyfile): Get "personality" key.
* schroot/sbuild-chroot.h: Include personality as a persona
member, and provide a getter and setter for it.
* schroot/sbuild-personality.(cc|h): New files. This is a class
wrapping the functionality of personality(2) for changing the
process execution domain. It includes a mapping from names to
personality enumarations, to allow user specification of
personalities.
2006-06-12 Roger Leigh <rleigh@debian.org>
* debian/changelog: Bump version to 0.99.0.
* NEWS: Bump version to 0.99.0.
* configure.ac: Bump version to 0.99.0.
2006-06-10 Roger Leigh <rleigh@debian.org>
* Version 0.2.11.
* debian/changelog: Update for 0.2.11.
2006-06-10 Roger Leigh <rleigh@debian.org>
* schroot/schroot-listmounts-options.h
(schroot_listmounts): Fix typo.
2006-06-10 Roger Leigh <rleigh@debian.org>
* debian/changelog: Don't package libsbuild.la.
* schroot/Makefile.am (noinst_LTLIBRARIES): Do not install
libsbuild.la.
2006-06-10 Roger Leigh <rleigh@debian.org>
* NEWS: Document that scripts may now fail.
* schroot/schroot-setup.5.in: Document that scripts must be
idempotent.
2006-06-09 Roger Leigh <rleigh@debian.org>
* po/en_GB.po: Update translation.
* po/POTFILES.in: Add schroot-listmounts sources.
* debian/changelog: Close #369626.
* NEWS: Document 05file and 10mount changes.
* schroot/setup/05file: Use schroot-listmounts to check if there
are any mounted filesystems before purging the chroot.
* schroot/setup/10mount: Use schroot-listmounts to unmount all
filesystems in a chroot. Exit with an error if unmounting fails.
* test/sbuild-chroot.cc: Implement the new form of
sbuild::chroot::setup_lock().
* schroot/schroot-listmounts-options.(cc|h): New files. These are
the command-line option parser for schroot-listmounts.
* schroot/schroot-listmounts.cc: New file. This is a program to
list all of the mounts under a given mountpoint.
* schroot/sbuild-session.cc (setup_chroot): Use the chroot lock
and unlock methods, in place of setup_lock.
* schroot/sbuild-chroot-plain.cc, schroot/sbuild-chroot-file.cc,
schroot/sbuild-chroot-block-device.cc,
schroot/sbuild-chroot-lvm-snapshot.cc: setup_lock only removes the
session (using setup_session_info) if the setup scripts succeeded.
* schroot/sbuild-chroot-plain.h, schroot/sbuild-chroot-file.h,
schroot/sbuild-chroot-block-device.h,
schroot/sbuild-chroot-lvm-snapshot.h: setup_lock is protected and
has an additional status argument.
* schroot/sbuild-chroot.cc
(lock): New function; calls setup_lock.
(unlock): New function; calls setup_lock.
* schroot/sbuild-chroot.h: Replace setup_lock with lock and unlock
methods. Unlock takes a status argument which indicates if the
setup scripts failed or not. setup_lock is now a protected
virtual method used by lock and unlock.
2006-06-08 Roger Leigh <rleigh@debian.org>
* debian/changelog: Close #369633.
* AUTHORS: Add Andreas Bombe.
* schroot/schroot.conf.5.in: Correct typo.
* schroot/schroot.1.in: Correct ambiguity and mistakes in the
documentation relating to specifying session IDs.
2006-05-27 Roger Leigh <rleigh@debian.org>
* debian/changelog: Update.
* debian/control (Standards-Version): Update to 3.7.2.
2006-05-27 Roger Leigh <rleigh@debian.org>
* debian/changelog: Bump version to 0.2.11.
* NEWS: Bump version to 0.2.11.
* configure.ac: Bump version to 0.2.11.
2006-05-27 Roger Leigh <rleigh@debian.org>
* Version 0.2.10.
* debian/changelog: Update for 0.2.10.
2006-05-27 Roger Leigh <rleigh@debian.org>
* schroot/setup/50chrootname: Strip session UUID when writing
/etc/debian_chroot.
2006-05-15 Roger Leigh <rleigh@debian.org>
* po/sv.po: Updated translated from the Free Translation Project.
2006-05-14 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-chroot-config.cc (add): If a chroot alias is the
same as the chroot name, don't warn about it, because the effect
is still unambiguous.
2006-04-30 Roger Leigh <rleigh@debian.org>
* Remove unused .cvsignore files.
2006-04-30 Roger Leigh <rleigh@debian.org>
* schroot/schroot.cc: Update documentation.
* schroot/schroot-releaselock.cc: Update documentation.
2006-04-30 Roger Leigh <rleigh@debian.org>
* debian/control (Standards-Version): Upgrade to 3.7.0.
2006-04-30 Roger Leigh <rleigh@debian.org>
* configure.ac: Bump version to 0.2.10.
* NEWS: Bump version to 0.2.10.
* debian/changelog: Bump version to 0.2.10-1.
2006-04-30 Roger Leigh <rleigh@debian.org>
* Makefile.am (dist-hook): Don't distribute .svn directories.
2006-04-30 Roger Leigh <rleigh@debian.org>
* Version 0.2.9.
* debian/changelog: Update for 0.2.9.
* po/en_GB.po: Updated British English translation.
* README: Document new compiler requirements.
2006-04-30 Roger Leigh <rleigh@debian.org>
* NEWS: Document directory behaviour.
* schroot/sbuild-session.cc (run_child): If the current working
directory does not exist inside the chroot, change to the home
directory (for login shells), or fail with an error (for commands)
where the behaviour must be deterministic.
2006-04-30 Roger Leigh <rleigh@debian.org>
* test/sbuild-parse-value.cc: Update tests.
* schroot/sbuild-keyfile.h (get_value): Catch exceptions thrown by
parse errors and log a warning.
* schroot/sbuild-environment.h (get): Catch exceptions thrown by
parse errors and log a warning.
* schroot/sbuild-parse-value.cc (parse_value): Add class
constructor and destructor.
(parse): Parse functions use this->value rather than a string
value argument.
* schroot/sbuild-parse-value.h: Move parse_value functions into
the generic_value class as private parse methods; the string value
is taken directly from this->value, rather than passed as an
argument. generic_value class renamed to parse_value. On parse
failure, an exception is thrown.
2006-04-29 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-keyfile.h: Update documentation.
2006-04-29 Roger Leigh <rleigh@debian.org>
* TODO: Remove completed file repack item.
2006-04-29 Roger Leigh <rleigh@debian.org>
* test/sbuild-chroot-file.cc (chroot_file>): Check for
CHROOT_FILE_REPACK in the environment.
2006-04-29 Roger Leigh <rleigh@debian.org>
* NEWS: Document GCC portability.
* test/Makefile.am (AM_CXXFLAGS): Remove -Wextra, for GCC 3.3/3.4
portability.
* schroot/sbuild-chroot-config.cc (load_data): Construct
__gnu_cxx::stdio_filebuf appropriately, depending on the required
construction semantics.
* schroot/sbuild-chroot.cc (setup_session_info): Construct
__gnu_cxx::stdio_filebuf appropriately, depending on the required
construction semantics.
* configure.ac: Check whether the old (GCC < 3.4) or new (GCC >=
3.4) __gnu_cxx::stdio_filebuf construction semantics are required,
for portability to older GCC versions.
2006-04-26 Roger Leigh <rleigh@debian.org>
* schroot/setup/10mount (do_mount) : Create directories for
mounting filesystems onto if they don't exist.
2006-04-26 Roger Leigh <rleigh@debian.org>
* po/POTFILES.in: Add schroot/sbuild-format-detail.h
2006-04-26 Roger Leigh <rleigh@debian.org>
* GCC 4.2 compatibility fixes.
* test/sbuild-keyfile.cc (test_set_value): Use iterator ranges,
rather than whole containers, when calling
keyfile::set_list_value.
* schroot/sbuild-chroot-source.cc
(get_keyfile): Use iterator ranges, rather than whole containers,
when calling keyfile::set_list_value.
(set_keyfile): Reindent.
* schroot/sbuild-chroot.cc
(get_keyfile): Use iterator ranges, rather than whole containers,
when calling keyfile::set_list_value.
(set_keyfile): Reindent.
* schroot/sbuild-keyfile.h
(get_list_value): Templated on container type only; the value_type
is no longer a template parameter. generic_value is used for the
type conversion.
(set_list_value: A range specified by iterators is used, rather
than the whole container.
* schroot/sbuild-parse-value.h: Add a new generic_value class to
wrap type conversions from strings.
* schroot/sbuild-format-detail.h: Move templated operator<<
methods outside the class definition. Make format_details inline.
2006-04-08 Roger Leigh <rleigh@debian.org>
* schroot/Makefile.am
(sbuild_public_h_sources): Add sbuild-format-detail.h
* schroot/sbuild.h: Include sbuild-format-detail.h.
* schroot/sbuild-chroot.h: Remove sbuild::chroot::format_detail.
* schroot/sbuild-format-detail.h: New class,
sbuild::format_detail, moved from sbuild::chroot::format_detail.
2006-04-08 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-keyfile.h: Use Boost if TR1 is not available.
* schroot/sbuild-chroot.h: Use Boost if TR1 is not available.
* schroot/sbuild-auth.h: Use Boost if TR1 is not available.
* schroot/Makefile.am:
(AM_CXXFLAGS): Remove -Wextra.
(BUILT_SOURCES): Don't build sbuild.gch.
(#CLEANFILES): Don't clean sbuild.gch.
(nodist_libsbuild_la_SOURCES): Add sbuild-config.h.
* configure.ac: Add a new header, schroot/sbuild-config.h. Add
header checks for tr1/memory, boost/shared_ptr.hpp, tr1/tuple and
boost/tuple/tuple.hpp.
2006-04-07 Roger Leigh <rleigh@debian.org>
* debian/changelog: Close #361108.
* debian/README.Debian: Move chroot safety advice to README.
2006-04-07 Roger Leigh <rleigh@debian.org>
* configure.ac: Bump version to 0.2.9.
* NEWS: Bump version to 0.2.9.
* debian/changelog: Bump version to 0.2.9-1.
2006-04-07 Roger Leigh <rleigh@debian.org>
* po/vi.po: Update.
2006-03-19 Roger Leigh <rleigh@debian.org>
* Version 0.2.8.
* debian/changelog: Update for 0.2.8.
2006-03-18 Roger Leigh <rleigh@debian.org>
* configure.ac: Bump version to 0.2.8.
* NEWS: Bump version to 0.2.8.
* debian/changelog: Bump version to 0.2.8-1.
2006-03-18 Roger Leigh <rleigh@debian.org>
* po/vi.po: Update.
* po/sv.po: Update.
2006-03-18 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.cc (run_child): Don't fix up argv for a
login shell if using a command-prefix, since this will not be a
valid command for command-prefix to execute.
2006-03-08 Roger Leigh <rleigh@debian.org>
* debian/changelog: Version 0.2.7-2, released to fix a dchroot
crash.
* schroot/dchroot-session.cc
(run_impl): Correctly chain up to the base class.
2006-03-08 Roger Leigh <rleigh@debian.org>
* Version 0.2.7.
* debian/changelog: Update for 0.2.7.
* NEWS: Update for 0.2.7.
2006-03-07 Roger Leigh <rleigh@debian.org>
* debian/changelog: Bump version to 0.2.7.
* NEWS: Bump version to 0.2.7.
* configure.ac: Bump version to 0.2.7.
* po/en_GB.po: Update translation.
* schroot/sbuild-auth.cc
(setupenv): For security, PATH is always set to a sane state for
root, but only set in other cases if not preserving the
environment.
* schroot/sbuild-session.cc
(run_child): When "command-prefix" has been specified, correctly
set the filename to pass to execve. Mark four strings for
translation.
2006-03-06 Roger Leigh <rleigh@debian.org>
* Version 0.2.6.
* debian/changelog: Update for 0.2.6.
2006-03-06 Roger Leigh <rleigh@debian.org>
* po/en_GB.po: Update translation.
2006-03-06 Roger Leigh <rleigh@debian.org>
* TODO: Update.
* schroot/schroot.conf.5.in: Document required ownership and
permissions for file archives.
* schroot/sbuild-chroot-file.cc
(setup_lock): Check ownership and permissions of file archive.
* schroot/sbuild-chroot-config.cc (check_security): Tidy error
message formatting.
* schroot/setup/10mount:
(do_umount): Only umount if the mountpoint exists.
* schroot/setup/05file:
(repack_file): Preserve ownership and permissions of the original
archive file.
2006-03-06 Roger Leigh <rleigh@debian.org>
* schroot/schroot.1.in: Document environment sanitising.
* schroot/schroot.cc
(main): Allow the environment to be preserved even if changing
users.
* schroot/sbuild-auth.cc
(setupenv): Add SHELL to default environment. Sanitise the
environment by removing dangerous variables (the same set used by
sudo).
2006-03-06 Roger Leigh <rleigh@debian.org>
* po/sv.po: Updated translated from the Free Translation Project.
2006-03-02 Roger Leigh <rleigh@debian.org>
* debian/changelog: Close #354780.
* schroot/setup/05file: If the chroot status is not "ok", don't
repack the file archive.
* schroot/schroot-setup.5.in: Document second argument to setup
and exec scripts (chroot status).
* schroot/schroot.cc (main): Save and restore termios, so that
abnormal session termination leaves the terminal in a usable
state.
* schroot/sbuild-session.cc
(sighup_called): New variable to flag SIGHUP.
(sighup_handler): New function to handle SIGHUP.
(run_impl): Enable and disable handler for SIGHUP. Switch
chroot::SETUP_STOP action to after the catch block, to prevent it
being run twice on failure.
(setup_chroot): Set chroot_status to false on failure. Use this
as the second argument to setup and exec scripts. If chroot
locking fails, immediately unlock to ensure that any session
metadata files are unlinked.
(wait_for_child): If SIGHUP is caught, kill any child process and
throw an error.
(set_sighup_handler): Set a handler for SIGHUP.
(clear_sighup_handler): Restore the previous handler for SIGHUP.
* schroot/sbuild-session.h
(chroot_status): New member to track the state of the chroot.
(saved_signals): New member used to save and restore signals
handlers.
2006-02-28 Roger Leigh <rleigh@debian.org>
* NEWS: Document new source chroots and file repacking.
* schroot/schroot-setup.5.in: Document CHROOT_FILE_REPACK.
* schroot/schroot.conf.5.in: Document source chroot options.
2006-02-28 Roger Leigh <rleigh@debian.org>
* schroot/setup/05file:
(unpack_file): Use a temporary file to prevent data loss, and use
trap to clean up on failure.
2006-02-28 Roger Leigh <rleigh@debian.org>
* schroot/setup/05file:
(check_filetype): Correctly escape '.'.
2006-02-28 Roger Leigh <rleigh@debian.org>
* schroot/setup/05file: Fix incorrect comment.
2006-02-28 Roger Leigh <rleigh@debian.org>
* schroot/setup/05file: Run check_filetype in all cases.
(unpack_file): Correctly unpack tar.bz2 files.
(repack_file): New function to pack up the chroot tree back into
an archive file.
2006-02-28 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-environment.h
(add): Use std::boolalpha to correctly represent boolean values.
2006-02-28 Roger Leigh <rleigh@debian.org>
* schroot/exec/00check: Add check for CHROOT_FILE_REPACK.
* schroot/setup/00check: Add check for CHROOT_FILE_REPACK.
* schroot/sbuild-chroot-file.cc:
(chroot_file): repack member is false by default.
(clone_source): Create a chroot_block_device source chroot. Set
repack to true.
(setup_env): Chain up to chroot_source method. Add a
CHROOT_FILE_REPACK environment variable.
(print_details): Chain up to chroot_source method.
(get_keyfile): Chain up to chroot_source method. Set a
"file-repack" key.
(set_keyfile): Chain up to chroot_source method. Get a
"file-repack" key, but only when restoring an active session.
* schroot/sbuild-chroot-file.h: Derive from sbuild::chroot_source,
and implement sbuild::chroot_source::clone_source.
(repack): New member to allow repacking of the chroot on session
ending.
* schroot/sbuild-chroot-config.cc (parse_data): Remove unneeded
dynamic_cast to chroot_lvm_snapshot *. Make sure source chroot is
valid before adding it.
2006-02-28 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-chroot-config.cc
(parse_data): Remove special case for lvm-snapshot chroots.
Instead, create and add a source chroot for any inactive chroot
implementing chroot_source.
* schroot/sbuild-chroot-lvm-snapshot.cc
(clone_source): Create a chroot_block_device source chroot.
(setup_env): Chain up to chroot_source method.
(print_details): Chain up to chroot_source method.
(get_keyfile): Chain up to chroot_source method.
(set_keyfile): Chain up to chroot_source method.
* schroot/sbuild-chroot-lvm-snapshot.h: Derive from
sbuild::chroot_source, and implement
sbuild::chroot_source::clone_source.
2006-02-28 Roger Leigh <rleigh@debian.org>
* All classes derived from sbuild::chroot use virtual public
inheritance (to allow for the use of sbuild::chroot_source).
2006-02-28 Roger Leigh <rleigh@debian.org>
* Makefile.am: Add sbuild-chroot-source.(cc|h).
* schroot/sbuild.h: Include sbuild-chroot-source.h.
* schroot/sbuild-chroot-source.(cc|h): New file. This is an
interface class, to be implemented by chroots providing source
chroots in addition to normal chroots.
2006-02-28 Roger Leigh <rleigh@debian.org>
* debian/changelog: Update.
* debian/schroot.init: Rename $DAEMON to $SCHROOT. Don't exit
with an error if session recovery for an individual chroot fails.
2006-02-28 Roger Leigh <rleigh@debian.org>
* NEWS: Document changed behaviour of session operations.
* schroot/schroot-options.cc (options): Allow session recovery,
session running and session ending to be performed upon multiple
chroots, rather than one at once.
2006-02-28 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-chroot-config.cc (parse_data): Don't create a
"-source" chroot for LVM snapshots if the chroot is active.
2006-02-28 Roger Leigh <rleigh@debian.org>
* NEWS: Document exec.d and run-exec-scripts changes.
2006-02-28 Roger Leigh <rleigh@debian.org>
* debian/changelog: Update.
* debian/postinst: Move /etc/schroot/run.d/00check to
/etc/schroot/exec.d/00check if modified locally.
* debian/preinst: Remove /etc/schroot/run.d/00check if not
modified locally.
* Update tests.
* schroot/schroot.conf: Rename run-session-scripts to
run-exec-scripts.
* schroot/schroot.conf.5.in: Document new configuration
parameters, and deprecated parameters.
* schroot/schroot.1.in: Document new setup script locations.
* schroot/schroot-setup.5.in: Document new setup script locations
and parameters.
* schroot/Makefile.am (SUBDIRS): Rename run to exec.
* configure.ac: Rename SCHROOT_CONF_RUN_D to SCHROOT_CONF_EXEC_D.
Rename schroot/run/Makefile to schroot/exec/Makefile. Tidy
comments.
* schroot/sbuild-session.cc: Use new chroot functions and enums.
Also use SCHROOT_CONF_EXEC_D rather than SCHROOT_CONF_RUN_D.
Execution scripts are called with "exec-start" and "exec-stop",
rather than "run-start: and "run-stop", respectively.
* Use new functions and enums in all derived chroot types.
* schroot/sbuild-chroot.cc
(get_run_exec_scripts): Rename from get_run_session_scripts.
(set_run_exec_scripts): Rename from set_run_session_scripts.
(print_details): Print "Run Execution Scripts" rather than "Run
Session Scripts".
(get_keyfile): Set "run-exec-scripts" in the keyfile.
(set_keyfile): Get "run-exec-scripts" in the keyfile. Also get
"run-session-scripts" (now deprecated) for backward compatibility.
* schroot/sbuild-chroot.h
(setup_type): Rename RUN_START and RUN_STOP to EXEC_START and
EXEC_STOP.
(run_exec_scripts): Rename member from run_session_scripts.
* Rename schroot/run to schroot/exec.
2006-02-27 Roger Leigh <rleigh@debian.org>
* debian/postinst: Move /etc/schroot/run.d/50sbuild to
/etc/schroot/setup.d/50sbuild if modified locally.
* debian/preinst: Remove /etc/schroot/run.d/50sbuild if not
modified locally.
* schroot/schroot-setup.5.in: Update location of 50sbuild.
* Move 50sbuild from schroot/run.d to schroot/setup.d.
* schroot/setup/50sbuild: Move from schroot/run/50sbuild.
2006-02-27 Roger Leigh <rleigh@debian.org>
* configure.ac: Bump version to 0.2.6.
2006-02-27 Roger Leigh <rleigh@debian.org>
* NEWS: Document "command-prefix" option.
* schroot/schroot.conf.5.in: Document "command-prefix" option.
* schroot/sbuild-session.cc
(run_child): Concatenate command_prefix and command to get the
command to run in the chroot.
* schroot/sbuild-chroot.cc
(get_command_prefix): New method to get command prefix.
(set_command_prefix): New method to set command prefix.
(print_details): Display command_prefix if set.
(get_keyfile): Set command-prefix in keyfile.
(set_keyfile): Get command-prefix from keyfile.
* schroot/sbuild-chroot.h: New member command_prefix.
2006-02-27 Roger Leigh <rleigh@debian.org>
* Remove bashisms in all setup and run shell scripts (test "-o"
and "function" in shell functions). Thanks to Clint Adams for
this patch.
2006-02-26 Roger Leigh <rleigh@debian.org>
* Version 0.2.5.
* configure.ac: Update for 0.2.5.
* debian/changelog: Update for 0.2.5.
* NEWS: Document "Path" line. Update for 0.2.5.
* schroot/sbuild-chroot.cc (print_details): Output path
information if available.
2006-02-26 Roger Leigh <rleigh@debian.org>
* debian/changelog: Update to close the --help options (Bug
#354477).
2006-02-26 Roger Leigh <rleigh@debian.org>
* debian/changelog: Update.
* schroot/run/50sbuild: Create
${CHROOT_PATH}/var/lib/sbuild/srcdep-lock and set ownership and
permissions of all files under ${CHROOT_PATH}/var/lib/sbuild to
root:sbuild and 02775, respectively. Thanks to Adeodato Simó for
this patch.
2006-02-26 Roger Leigh <rleigh@debian.org>
* schroot/schroot.1.in: Correct the --help options. Thanks to
Clint Adams for this patch.
2006-02-25 Roger Leigh <rleigh@debian.org>
* debian/changelog: Add acknowledgement for #354257.
2006-02-25 Roger Leigh <rleigh@debian.org>
* Version 0.2.4.
* debian/changelog: Update for 0.2.4.
* TODO: Update.
2006-02-25 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-chroot-config.h: Fix Doxygen warnings.
* schroot/sbuild-parse-value.cc: Fix Doxygen warnings.
* schroot/sbuild-parse-value.h: Fix Doxygen warnings.
2006-02-25 Roger Leigh <rleigh@debian.org>
* debian/changelog: Update.
* NEWS: Update.
* Update tests.
* schroot/schroot.conf.5.in: Document "run-setup-scripts"
behaviour for plain chroots.
* schroot/setup/10mount: Allow plain chroots to run the mount
script. For plain chroots, bind mount LOCATION on MOUNT_LOCATION.
* schroot/setup/00check: For plain chroots, verify
CHROOT_LOCATION, rather than CHROOT_PATH (because CHROOT_PATH does
not exist at this point).
* schroot/sbuild-session.cc
(run_impl): In addition to all other chroot types, if chroot is a
chroot_plain chroot with setup scripts enabled, set the mount
location to the session id.
* schroot/sbuild-chroot-plain.cc
(get_path): New virtual method to override base class
implementation. When setup scripts are enabled, return the mount
location, or else the location.
(setup_lock): When setup scripts are enabled, write out a session
metadata.
(get_session_flags): When setup scripts are enabled, enable
SESSION_CREATE, or else 0.
2006-02-24 Roger Leigh <rleigh@debian.org>
* schroot/schroot.conf.5.in: Document "location" for block-device
chroots.
* schroot/schroot-setup.5.in: Document CHROOT_LOCATION and
CHROOT_PATH.
* Update tests to check CHROOT_LOCATION and CHROOT_PATH.
* schroot/setup/50chrootname: Replace CHROOT_MOUNT_LOCATION with
CHROOT_PATH.
* schroot/setup/30passwd: Replace CHROOT_MOUNT_LOCATION with
CHROOT_PATH.
* schroot/setup/20network: Replace CHROOT_MOUNT_LOCATION with
CHROOT_PATH.
* schroot/setup/10mount: Replace CHROOT_MOUNT_LOCATION with
CHROOT_PATH.
* schroot/setup/00check: Add CHROOT_LOCATION and CHROOT_PATH.
Replace CHROOT_MOUNT_LOCATION with CHROOT_PATH.
* schroot/run/50sbuild: Replace CHROOT_MOUNT_LOCATION with
CHROOT_PATH.
* schroot/run/00check: Add CHROOT_LOCATION and CHROOT_PATH.
* schroot/sbuild-chroot-config.cc
(print_chroot_location): Use get_path() instead of
get_mount_location().
* schroot/sbuild-session.cc
(run_child): Use get_path() instead of get_mount_location().
* schroot/sbuild-chroot-plain.cc
(get_location): Chain up to base class implementation.
(set_location): Chain up to base class implementation.
(print_details): Remove printing of location detail.
* schroot/sbuild-chroot-plain.h
(get_location): Make virtual.
(set_location): Make virtual.
(get_mount_location): Remove virtual function.
(location): Remove member.
* schroot/sbuild-chroot-block-device.cc
(get_location): New method. Get the location of a chroot on the
device filesystem.
(set_location): New method. Set the location of a chroot on the
device filesystem.
(get_keyfile): Set location in keyfile.
(set_keyfile): Get optional location from keyfile.
* schroot/sbuild-chroot.cc
(get_location): New virtual method.
(set_location): New virtual method.
(get_path): New virtual method. The default implementation
concatenates and returns the mount_location and the location.
(setup_env): Add CHROOT_LOCATION and CHROOT_PATH to the
environment.
(print_details): print Location and Path.
* schroot/sbuild-chroot.h:
(location): New member.
2006-02-24 Roger Leigh <rleigh@debian.org>
* po/en_GB.po: Add missing space.
2006-02-24 Roger Leigh <rleigh@debian.org>
* debian/changelog: Bump version to 0.2.4.
* NEWS: Bump version to 0.2.4.
* configure.ac: Bump version to 0.2.4.
2006-02-21 Roger Leigh <rleigh@debian.org>
* schroot/schroot.conf.5.in: Fix typo.
* schroot/dchroot.1.in: Fix syntax error.
2006-02-21 Roger Leigh <rleigh@debian.org>
* schroot/Makefile.am: Install dchroot setuid.
2006-02-21 Roger Leigh <rleigh@debian.org>
* debian/changelog: Update
* debian/rules: dchroot must be installed setuid root.
* debian/schroot.lintian-overrides: Add dchroot.
2006-02-21 Roger Leigh <rleigh@debian.org>
* Version 0.2.3.
* debian/changelog: Update for 0.2.3.
* NEWS: Document changed "--info" output.
* TODO: Update.
2006-02-21 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-chroot.cc (print_details): Add a "Session
Managed" line if SESSION_CREATE is used.
2006-02-21 Roger Leigh <rleigh@debian.org>
* test/sbuild-chroot-config.cc: Account for additional -source
chroots.
2006-02-21 Roger Leigh <rleigh@debian.org>
* NEWS: Document automatic block-device creation for lvm-snapshot
chroots.
* TODO: Remove completed item.
* schroot/schroot.conf.5.in: Document automatic block-device
creation for lvm-snapshot chroots.
* schroot/sbuild-chroot-config.cc (parse_data): Create a
corresponding block-device chroot for each lvm-snapshot chroot.
"-source" is appended to the chroot name and its aliases.
2006-02-20 Roger Leigh <rleigh@debian.org>
* schroot/dchroot.1.in: Document how to remove dchroot.conf.
2006-02-20 Roger Leigh <rleigh@debian.org>
* schroot/dchroot.1.in: Document reasons why schroot.conf should
be used in preference to dchroot.conf.
2006-02-20 Roger Leigh <rleigh@debian.org>
* schroot/dchroot-session.cc (run_impl): Use boost::format rather
than printf specifiers.
2006-02-20 Roger Leigh <rleigh@debian.org>
* Update po files.
* po/POTFILES.in: Add dchroot files.
2006-02-20 Roger Leigh <rleigh@debian.org>
* .cvsignore: Update for dchroot.
2006-02-20 Roger Leigh <rleigh@debian.org>
* schroot/schroot.cc (main): Use ACTION_LOCATION, not
ACTION_INFO_LOCATION.
2006-02-20 Roger Leigh <rleigh@debian.org>
* debian/changelog: Update for version 0.2.3-1.
* debian/README.Debian: Update dchroot notes.
* debian/rules (config.status): Add --enable-dchroot to configure,
to package the dchroot + wrapper.
* debian/control (schroot): Provide, Conflict and Replace dchroot.
Enhances sbuild. Suggest lvm-common for LVM support. Update
description.
2006-02-20 Roger Leigh <rleigh@debian.org>
* NEWS: Add dchroot.
2006-02-20 Roger Leigh <rleigh@debian.org>
* schroot/schroot.1.in: Document new --location option.
2006-02-20 Roger Leigh <rleigh@debian.org>
* TODO: Add dchroot.
* configure.ac: Create schroot/dchroot.1.
* schroot/Makefile.am: If --enable-dchroot was used, build and
install dchroot and dchroot.1.
2006-02-20 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.h (session): The contructor chroots
argument is a const reference rather than a value.
2006-02-20 Roger Leigh <rleigh@debian.org>
* schroot/dchroot.1.in: Add manual page for dchroot.
2006-02-20 Roger Leigh <rleigh@debian.org>
* schroot/schroot.cc: If SBUILD_DCHROOT_COMPAT is defined, run in
dchroot compatibility mode, using the alternate
dchroot::chroot_config and dchroot::session classes for reading
the configuration and session handling.
2006-02-20 Roger Leigh <rleigh@debian.org>
* schroot/schroot-options.cc
(options): Set dchroot_compat if SBUILD_DCHROOT_COMPAT is defined.
(options): If dchroot_compat is set, use dchroot compatible
options, otherwise schroot options.
* schroot/schroot-options.h
(action_type): New action ACTION_LOCATION to print chroot
location.
(chroot_path): New member; chroot to print path.
(dchroot_compat): New member; dchroot compatibility mode.
2006-02-20 Roger Leigh <rleigh@debian.org>
* schroot/dchroot-session.(cc|h): New class, dchroot::session,
derived from sbuild::session. This disables user authentication
(but not authorisation), and disables user switching.
* schroot/dchroot-chroot-config.(cc|h): New class,
dchroot::chroot_config, derived from sbuild::chroot_config. This
parses the dchroot.conf configuration file.
2006-02-20 Roger Leigh <rleigh@debian.org>
* configure.ac: Add --enable-dchroot check to enable dchroot
compatibility.
2006-02-20 Roger Leigh <rleigh@debian.org>
* schroot/schroot.cc (main): Use the new session::ptr typedef.
* schroot/sbuild-session.h: Add a ptr typedef, a shared_ptr to a
session.
2006-02-20 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-chroot-config.cc
(print_chroot_list_simple): New function to print the chroot list
on a single line, in the same style as dchroot (comma-separated,
with aliases in square brackets).
(print_chroot_location): New function to print the mount location
of the specified chroots.
2006-02-20 Roger Leigh <rleigh@debian.org>
* po/Makevars (XGETTEXT_OPTIONS): Add --boost so boost-format
strings are correctly extracted.
2006-02-18 Roger Leigh <rleigh@debian.org>
* Updated sv.po and vi.po from the Free Translation Project.
2006-02-18 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-chroot-config.h: Fix include guard naming.
* schroot/sbuild-chroot-config.cc (add): New overloaded protected
method to add a chroot, including checking for duplicates. Split
out from parse_data.
2006-02-17 Roger Leigh <rleigh@debian.org>
* test/sbuild-chroot-config.cc: Update tests.
* schroot/schroot.cc
(main): Use new chroot_config typedef, and use chroot_config::add
instead of add_config_file and add_config_directory.
* schroot/sbuild-chroot-config.h
(ptr): New typedef for a shared_ptr to a chroot_config.
(add_config_file: Now private.
(add_config_directory): Now private.
* schroot/sbuild-chroot-config.cc
(add): New method. This replaces the file/directory detection in
the constructor, and then calls add_config_file or
add_config_directory as required.
(load_data): New function, renamed from load.
(parse_data): New virtual function, called from load_data. This
parses the loaded data, and is split out from load.
2006-02-16 Roger Leigh <rleigh@debian.org>
* schroot/schroot.cc (main): If --quiet is specified, don't log an
error if the session fails. A non-zero exit status is still
returned.
2006-02-16 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.cc (run_child): If it is not possible to
change into the correct directory inside the chroot, print a
warning rather than an error.
2006-02-07 Roger Leigh <rleigh@debian.org>
* debian/changelog: Bump version to 0.2.3.
* debian/control (Build-Depends): Add pkg-config build dependency.
* NEWS: Bump version to 0.2.3.
* configure.ac: Bump version to 0.2.3.
2006-02-07 Roger Leigh <rleigh@debian.org>
* schroot/schroot-setup.5.in: Document setup/05file.
* schroot/schroot.1.in: Fix typo in macro.
2006-02-07 Roger Leigh <rleigh@debian.org>
* schroot/schroot-options.cc
(options): Fix typo (begining). Thanks to Clytie Siddall at the
Free Translation Project for spotting it.
2006-02-06 Roger Leigh <rleigh@debian.org>
* Version 0.2.2.
* debian/changelog: Update for 0.2.2.
2006-02-06 Roger Leigh <rleigh@debian.org>
* po/en_GB.po: Update.
* po/POTFILES.in: Update file list.
* Minor cosmetic cleanups.
2006-02-06 Roger Leigh <rleigh@debian.org>
* Remove static qualifer from functions in the unnamed namespace.
* schroot/sbuild-chroot-config.cc
(chroot_alphashort): Move to unnamed namespace.
* Update doxygen documentation for file members.
2006-02-06 Roger Leigh <rleigh@debian.org>
* Use the same indentation style for all function prototypes.
2006-02-06 Roger Leigh <rleigh@debian.org>
* NEWS: Document updated defaults.
* schroot/schroot.conf.5.in: Document updated defaults.
* schroot/sbuild-chroot-lvm-snapshot.cc
(chroot_lvm_snapshot): Default to running setup and session
scripts.
* schroot/sbuild-chroot-file.cc
(chroot_file): Default to running setup and session scripts.
2006-02-06 Roger Leigh <rleigh@debian.org>
* debian/control: Add versioned depends on libpam0g-dev >=
0.79-3.1, because earlier versions have broken headers, due to
redefining internal glibc/libstdc++ types.
2006-02-06 Roger Leigh <rleigh@debian.org>
* Remove all keyfile constructors from sbuild::chroot and derived
classes.
2006-02-06 Roger Leigh <rleigh@debian.org>
* doc/schroot.dox.in: Strip the build directory from file
pathnames, use built-in STL support, and sort classes by
namespace.
2006-02-06 Roger Leigh <rleigh@debian.org>
* Rename sbuild::chroot::chroot_ptr to sbuild::chroot::ptr,
sbuild::chroot::SetupType to sbuild::chroot::setup_type, and
sbuild::chroot::SessionFlags to sbuild::chroot::session_flags.
2006-02-06 Roger Leigh <rleigh@debian.org>
* Rename schroot::Options to schroot::options.
2006-02-06 Roger Leigh <rleigh@debian.org>
* Rename sbuild::Session to sbuild::session.
2006-02-06 Roger Leigh <rleigh@debian.org>
* Rename sbuild::AuthConvTty to sbuild::auth_conv_tty.
* Rename sbuild::AuthConv to sbuild::auth_conv.
2006-02-06 Roger Leigh <rleigh@debian.org>
* Rename sbuild::AuthMessage to sbuild::auth_message.
2006-02-06 Roger Leigh <rleigh@debian.org>
* Rename sbuild::Auth to sbuild::auth.
2006-02-05 Roger Leigh <rleigh@debian.org>
* Rename sbuild::Lock to sbuild::lock, sbuild::FileLock to
sbuild::file_lock, and sbuild::DeviceLock to sbuild::device_lock.
2006-02-05 Roger Leigh <rleigh@debian.org>
* Rename sbuild-config.(cc|h) to sbuild-chroot-config.(cc|h).
* Rename sbuild::Config to sbuild::chroot_config.
2006-02-05 Roger Leigh <rleigh@debian.org>
* Rename sbuild::ChrootLvmSnapshot to sbuild::chroot_lvm_snapshot.
* Rename sbuild::ChrootBlockDevice to sbuild::chroot_block_device.
* Rename sbuild::ChrootFile to sbuild::chroot_file.
* Rename sbuild::ChrootPlain to sbuild::chroot_plain.
2006-02-05 Roger Leigh <rleigh@debian.org>
* Rename sbuild::Chroot to sbuild::chroot.
* test/config.ex2/sarge
(run-session-scripts): Remove duplicate line.
2006-02-05 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-auth-conv.h: Add an error exception typedef.
* schroot/sbuild-auth-conv-tty.cc
(get_delay): Throw an exception on fatal timeout. Log a warning
rather than using std::cerr.
(read_string): Return a string rather than a pointer to an
allocated string. Throw an exception on failure.
(read_string): Don't print a newline after the prompt message.
(conversation): Remove all string cleanup code and replace with a
single exception handler.
2006-02-05 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-keyfile.h
(operator >>): Linecounting counts from line 1, rather than 0.
Fix error message capitalisation. All parsed groups and keys are
added to a temporary keyfile, which is then assigned to the
current keyfile, to allow the correct catching of duplicate groups
and keys.
* schroot/sbuild-keyfile.cc
(operator +=): New function. Add all of the keys in one keyfile
to another, overwriting keys on the lhs if already present.
Comments are carried across.
(operator +): New function. Add two keyfiles together.
2006-02-05 Roger Leigh <rleigh@debian.org>
* schroot/schroot.1.in: Add better description for the use of
"--config".
* schroot/schroot.conf.5.in: Document localised strings.
* schroot/sbuild-config.cc (load): Exceptions thrown by keyfile
parsing are not caught and treated as warnings; they are fatal.
* schroot/sbuild-chroot.cc (set_keyfile): Get a localised value
for the "description" key.
* schroot/sbuild-keyfile.cc (get_locale_string): Add a set of
overloaded functions to get localised string values.
2006-02-05 Roger Leigh <rleigh@debian.org>
* test/sbuild-keyfile.cc: Update.
* schroot/sbuild-keyfile.h
(set_value): Overload to provide an optional comment. Call
set_group to create nonexistent groups on the fly.
(set_list_value): Overload to provide an optional comment.
(operator >>): Parse comments.
* schroot/sbuild-keyfile.cc
(set_group): New function to add a group with a comment.
(get_comment): An overloaded function to get group and item
comments.
(print_comment): Split string to print on '\n', and correctly
reproduce whitespace.
2006-02-02 Roger Leigh <rleigh@debian.org>
* NEWS: Update.
2006-02-02 Roger Leigh <rleigh@debian.org>
* schroot/schroot.1.in: Document new "--config" option.
* schroot/schroot.cc (main): Print configuration if "--config" is
specified.
* schroot/schroot-options.cc: Add "--config" option to set
ACTION_CONFIG.
* schroot/schroot-options.h: New action_type enum ACTION_CONFIG.
* schroot/sbuild-config.cc (print_chroot_config): New function to
print chroot configuration (keyfile format).
2006-02-02 Roger Leigh <rleigh@debian.org>
* Update testcases.
* schroot/sbuild-config.cc
(print_chroot_info): Use new chroot streaming to output details to
an ostream.
* print_details is protected in all derived classes.
* schroot/sbuild-chroot.h
(print_details): Make protected.
(operator <<): New friend function to output chroot details to an
ostream.
2006-02-02 Roger Leigh <rleigh@debian.org>
* debian/changelog: Update.
* debian/control (Build-Depends): Remove GLib.
* README: Update build-dependencies.
2006-02-02 Roger Leigh <rleigh@debian.org>
* Update TODO list.
* Update testcases.
* schroot/sbuild-config.cc (load): Use the new Chroot keyfile
streaming functionality to initialise chroots.
* Implement all new virtual functions in Chroot in derived
classes.
* Remove all functions removed from Chroot in derived classes.
* schroot/sbuild-chroot.(cc|h)
(Chroot): Remove overloaded construction to initialise with a
keyfile.
(create): Remove overloaded method for creating from a keyfile.
(print_config): Remove.
(get_keyfile): New protected virtual method to serialise a chroot
to a keyfile.
(set_keyfile): New protected virtual method to initialise a chroot
from a keyfile.
(operator >>): New friend function to stream from a keyfile.
(operator <<): New friend function to stream to a keyfile.
2006-02-02 Roger Leigh <rleigh@debian.org>
* Simplify rethrow in catch blocks.
* schroot/sbuild-session.cc (run_impl): Remove unneeded else
block, to simplify the code.
2006-02-01 Roger Leigh <rleigh@debian.org>
* debian/changelog: Update version to 0.2.2.
* NEWS: Update version to 0.2.2.
* configure.ac: Update version to 0.2.2.
2006-02-01 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-chroot.cc
(Chroot): Get "mount-location" and "mount-device" from session
keyfiles.
(print_details): Use the correct virtual functions to get
"Mount Location" and "Mount Device".
(print_config): Use the correct virtual functions to get
"mount-location" and "mount-device".
2006-02-01 Roger Leigh <rleigh@debian.org>
* Version 0.2.1.
* debian/changelog: Update for 0.2.1.
* schroot/sbuild-session.cc (wait_for_child): Set child_status to
EXIT_FAILURE, rather than this->child_status. This prevents a
non-zero exit status being returned at all times by child
processes.
* NEWS: Update for 0.2.1.
* configure.ac: Update version to 0.2.1.
2006-01-30 Roger Leigh <rleigh@debian.org>
* Version 0.2.0.
* schroot/schroot.conf.5.in: Add example for file chroot.
* test/config.ex2/config: Removed (duplicated in
test/config.ex2/sarge).
* test/config.ex2/file: New file. Test data for file chroots.
2006-01-30 Roger Leigh <rleigh@debian.org>
* schroot/schroot-options.cc: Beginning a session only works with
normal chroots. Session operations on active sessions load all
chroots, not just session chroots.
* schroot/sbuild-session.cc
(run_impl): For persistent sessions, remove aliases prior to
writing out the session data, to prevent duplicate aliases.
(run_impl): Only run a command when performing the appropriate
operations, rather than all the time.
(setup_chroot): Correct bug in automatic operation which would
potentially prevent correct cleanup.
* schroot/sbuild-keyfile.h: Add TODO item for duplicate keys.
* schroot/sbuild-config.cc (load): Add warnings when chroots and
aliases names are duplicated.
2006-01-29 Roger Leigh <rleigh@debian.org>
* test/sbuild-chroot-file.cc: New file. Unit test for ChrootFile.
* schroot/sbuild-util.cc (string_list_to_strv): New function,
moved from sbuild-session.cc.
* schroot/sbuild-session.cc: Remove string functions.
2006-01-29 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-chroot.cc (create): Add support for "file" type
chroots.
* schroot/setup/05file: Split file type checking and unpacking
into shell functions.
* schroot/run/00check: Add support for file chroots.
* schroot/setup/00check: Add support for file chroots.
* schroot/setup/Makefile.am (setup_SCRIPTS): Add 05file.
* schroot/schroot.1.in: Update help options.
2006-01-29 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-util.cc (find_program_in_path): Return the
program name without the absolute prefix.
* schroot/sbuild-session.cc (run_child): Don't prefix the program
search path (find_program_in_path), because it's already running
inside the chroot.
* schroot/Makefile.am (DEFS): Remove G_LOG_DOMAIN.
* schroot/schroot-options.cc: Remove debugging messages.
2006-01-28 Roger Leigh <rleigh@debian.org>
* debian/rules: Don't run the testsuite.
2006-01-28 Roger Leigh <rleigh@debian.org>
* schroot/schroot-options.cc: Store positional arguments correctly
using positional_options_description.
2006-01-28 Roger Leigh <rleigh@debian.org>
* debian/rules: Don't run the testsuite, due to it requiring root,
or fake root, privileges.
2006-01-28 Roger Leigh <rleigh@debian.org>
* debian/changelog: Update for 0.2.0.
* debian/control: Suggest unzip.
* NEWS: Update for 0.2.0.
2006-01-28 Roger Leigh <rleigh@debian.org>
* po/en_GB.po: Updated British English translation.
2006-01-28 Roger Leigh <rleigh@debian.org>
* configure.ac: Remove check for stdbool.h.
2006-01-28 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-chroot.h: setup_session_info is protected and
virtual.
* test/Makefile.am: Distribute test data.
2006-01-28 Roger Leigh <rleigh@debian.org>
* schroot/setup/05file: Filetype checks are now quiet.
2006-01-28 Roger Leigh <rleigh@debian.org>
* Update documentation.
* schroot/setup/10mount: Add special cases for file chroots.
* schroot/setup/05file: New file for unpacking and deleting
file-based chroots.
* schroot/sbuild-chroot-file.(cc|h): New file implementing
file-based chroots.
* schroot/sbuild-chroot.cc (setup_session_info): Add
setup_session_info from ChrootLvmSnapshot.
* schroot/sbuild-chroot-lvm-snapshot.cc: Remove setup_session_info.
2006-01-28 Roger Leigh <rleigh@debian.org>
* test/sbuild-parse-value.cc: New file. Tests for parse_value.
* schroot/sbuild-parse-value.h (parse_value): Check failbit rather
than badbit to catch parse errors.
* schroot/sbuild-parse-value.cc (parse_value): Correctly parse
false boolean values.
2006-01-28 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.cc (run_child): Search for the program to
run inside the chroot, rather than on the root filesystem.
* schroot/sbuild-util.cc (find_program_in_path): Add a prefix
argument, to allow searching in non-root paths, for example inside
a chroot.
2006-01-28 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-config.cc (load): Catch and handle exceptions if
chroot creation fails.
* schroot/sbuild-chroot.cc (create): Throw an exception if
creation fails.
2006-01-28 Roger Leigh <rleigh@debian.org>
* configure.ac: Update maintainer email address.
* schroot/sbuild-config.h: Remove completed TODO item.
2006-01-27 Roger Leigh <rleigh@debian.org>
* test/sbuild-config.cc (class test_config): Update to use active
argument.
* schroot/schroot.cc (main): When loading chroot configuration,
specify if they are active sessions or not.
* schroot/sbuild-config.cc: All methods taking a file or directory
name also take an "active" argument to specify if the chroots
being loaded are active sessions or not.
2006-01-27 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-environment.h: Remove completed TODO item about
recommending strv_delete().
2006-01-27 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-auth-conv-tty.cc: Move static data and functions
into the unnamed namespace.
2006-01-26 Roger Leigh <rleigh@debian.org>
* schroot/schroot.cc (main): Only allow preservation of the user
environment if not switching users.
* schroot/sbuild-auth.cc (Auth, set_user): Throw exceptions rather
than exiting on failure.
(setupenv): Tidy up setting the environment.
2006-01-26 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-auth.cc
(~Auth): Shut down PAM if currently active.
2006-01-26 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-keyfile.cc
(check_priority): Add support for PRIORITY_DISALLOWED.
* schroot/sbuild-config.cc: Convert to throw exception instead of
immediately terminating with an error. This makes unit testing
possible, and errors are all caught correctly at the top-level.
* schroot/sbuild-chroot-lvm-snapshot.cc: When reading a keyfile,
only allow reading "lvm-snapshot-device" when restoring an active
chroot.
* configure.ac (AM_INIT_AUTOMAKE): Quote argument.
* test/sbuild-config.cc: New file. Test for sbuild::Config.
2006-01-16 Roger Leigh <rleigh@debian.org>
* po/vi.po: Add Vietnamese translation.
2006-01-13 Roger Leigh <rleigh@debian.org>
* test/sbuild-log.cc: New file. Test logging with stringbufs.
* test/sbuild-nostream.cc (test_nostream): Fix whitespace.
2006-01-13 Roger Leigh <rleigh@debian.org>
* test/sbuild-nostream.cc: New file. Test for nostream.
* test/sbuild-environment.cc (add_simple_examples): Correct
assertion.
2006-01-12 Roger Leigh <rleigh@debian.org>
* test/sbuild-lock.cc: New file. Tests for locking.
* schroot/sbuild-lock.cc (set_lock): If the current process
doesn't own the lock, unlocking always succeeds.
2006-01-12 Roger Leigh <rleigh@debian.org>
* test/sbuild-keyfile.cc: New file. Tests for keyfile.
* schroot/sbuild-keyfile.h
(set_value): Insert stringstream value, rather than templated
value.
(set_list_value): Fix bug with iterator by using binary operator +
rather than +=.
(operator <<): Print newline after key-value pairs.
* schroot/sbuild-keyfile.cc
(keyfile): Add constructor taking no arguments.
(print_comment: Turn into static member function.
2006-01-11 Roger Leigh <rleigh@debian.org>
* test/sbuild-environment.cc: New file. Tests for environment.
* test/testmain.cc (main): Add debugging checks.
* test/Makefile.am (libtest_la_LIBADD): Add libsbuild.la, and
remove from all binary LDADD lines.
* schroot/sbuild-util.cc (strv_delete): New function moved from
sbuild-session.cc, with the iterator type corrected.
* schroot/sbuild-session.cc: Remove strv_delete.
* schroot/sbuild-environment.h: Fix constness of overloaded
operators, and correct use of lvalue in binary operators.
2006-01-11 Roger Leigh <rleigh@debian.org>
* Remove completed and obsolete TODO items.
* test/sbuild-util.cc: Update testcase with fixed path.
* schroot/sbuild-session.cc (run_child): Use new
find_program_in_path syntax.
* schroot/sbuild-util.cc (find_program_in_path): Add path
argument, to allow use of paths other than $PATH.
2006-01-08 Roger Leigh <rleigh@debian.org>
* Update API reference.
* test/sbuild-chroot-lvm-snapshot.cc: New file. Tests for
ChrootLvmSnapshot.
* test/sbuild-chroot-block-device.cc: New file. Tests for
ChrootBlockDevice.
* test/sbuild-chroot-plain.cc: New file. Tests for ChrootPlain.
* test/test-sbuild-chroot.h: New file. Base class for all chroot
tests.
* test/test-helpers.h (test_list): New file of test helper
functions. The initial function is a templated test for testing
string_list getters and setters.
* test/Makefile.am (noinst_LTLIBRARIES): Add libtest.la, a generic
test library that contains the generic test runner and links with
CppUnit.
* schroot/sbuild-keyfile.h: Remove parse_value.
* schroot/sbuild-environment.h (get): Use parse_value to parse
values.
* schroot/sbuild-parse-value.(cc|h): New files. Split value
parsing out from sbuild-keyfile to allow reuse.
2006-01-07 Roger Leigh <rleigh@debian.org>
* po/sv.po: Add Swedish translation.
2006-01-07 Roger Leigh <rleigh@debian.org>
* Add copyright and GPL boilerplate to all testcase code.
* test/sbuild-chroot.cc: New testcase for sbuild::Chroot.
* schroot/sbuild-environment.cc (remove): For the "char **"
overloaded method, use the correct iterator type (the same as the
equivalent add function).
* schroot/sbuild-environment.h (add): Specialise templated method
for strings.
* schroot/sbuild-environment.h (get): New templated method to
retrieve the value of an environment variable by its name.
2006-01-06 Roger Leigh <rleigh@debian.org>
* doc/Makefile.am (all-local): Don't rebuild doxygen documentation
when not in maintainer mode.
* configure.ac: Enable maintainer mode.
2006-01-06 Roger Leigh <rleigh@debian.org>
* doc/Makefile.am (EXTRA_DIST): Distribute schroot-stamp, to
prevent documentation rebuild.
2006-01-06 Roger Leigh <rleigh@debian.org>
* debian/rules: Build and run the testsuite in the build target.
* debian/control (Build-Depends): Add libcppunit-dev.
* schroot/sbuild-util.cc
(find_program_in_path): Split PATH on ':' characters.
* test/sbuild-util.cc: New file: tests for sbuild-util functions.
* test/testmain.cc: New file: test runner for all tests.
* configure.ac: Add check and conditinal for CppUnit.
* Makefile.am (SUBDIRS): Add test directory.
2006-01-03 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.cc
(unnamed namespace): Add child_wait variable to allow debugging of
child processes.
(get_auth_status): Correct checks for null chroot.
(run_impl): Correct checks for null chroot.
(setup_chroot): Call closelog in child before exec.
(run_child): Remove mount_location assertion, since for some
chroot types this will fail.
(run_child): Use command[0] rather than command[1], which may not
exist. Call closelog in before exec.
(run_chroot): Loop on child_wait to allow a debugger to be
attached to the child, if debugging is enabled.
* schroot/sbuild-environment.cc (add): Use char ** for iterator
type, and add additional checks for null.
(add): Add stricter substring range checks
(remove): Add stricter substring range checks.
* schroot/sbuild-chroot.cc
* schroot/sbuild-chroot-plain.cc
(ChrootPlain): Move read_keyfile code into the constructor.
* schroot/sbuild-chroot-lvm-snapshot.cc
(ChrootLvmSnapshot): Move read_keyfile code into the constructor.
* schroot/sbuild-chroot-block-device.cc
(ChrootBlockDevice): Move read_keyfile code into the constructor.
* schroot/sbuild-chroot.cc
(Chroot): Move read_keyfile code into the constructor.
(print_details): Print mount_location and mount_device if set for
both session and non-session chroots.
2006-01-03 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-auth.cc: Log a warning if construction fails.
Correct buggy user assertions.
2006-01-02 Roger Leigh <rleigh@debian.org>
* Actually commit the new environment class.
2006-01-02 Roger Leigh <rleigh@debian.org>
* schroot/schroot-options.cc (Options): Rewrite the checks which
decide which chroot configuration files should be read, depending
upon the action specified.
* schroot/schroot-options.h (all_used): new method to detect if
any of the --all* options are in effect.
* schroot/schroot.cc (main): If no chroots are available, warn
rather than exiting with an error, since for several commands
there may well not be any chroots defined.
* schroot/sbuild-config.cc (validate_chroots): Correct inverse
match which treated all correctly named chroots as being invalid.
2006-01-02 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-types.h: Remove env and env_list typedefs.
* schroot/sbuild-session.cc: Remove env_list_to_strv helper,
replaced by environment::get_strv(). Replace setup_env_var
helper with environment add method.
* schroot/sbuild-chroot.h: Chroot::setup_env() uses environment
rather than env_list; derived classes also changed. Removed
setup_env_var helper.
* schroot/sbuild-auth.h: Replace env_list with environment.
Rename Auth::environment member to user_environment.
* schroot/sbuild-auth.cc: Remove env_string helper.
* schroot/sbuild-environment.(cc|h): New class sbuild::environment
to replace sbuild::env_list and its associated helpers in a number
of classes. This is a collection of environment variables.
2006-01-01 Roger Leigh <rleigh@debian.org>
* Updated copyright notices to include 2006 changes.
* schroot/Makefile.am: Generate a sbuild.gch precompiled header,
and include sbuild.h in all sources which previously included an
sbuild header. This should improve compilation speed.
* Rename schroot.h to sbuild.h, and include all sbuild-*.h
headers.
* schroot/sbuild-auth.cc (run): Fix casting to "const void **".
2005-12-31 Roger Leigh <rleigh@debian.org>
* schroot/Makefile.am (AM_CXXFLAGS): Add additional warning flags.
* schroot/sbuild-auth.cc (run): Use a static_cast instead of a
C-style cast.
* schroot/sbuild-lock.cc (set_lock): Initialise the l_pid member
of struct flock.
2005-12-31 Roger Leigh <rleigh@debian.org>
* Change all instances of "const T&" to "T const&" for
consistency.
2005-12-30 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-chroot-lvm-snapshot.cc (setup_session_info):
Imbue ostream with "C" locale.
* schroot/sbuild-config.cc (load): Imbue istream with "C" locale.
* schroot/sbuild-keyfile.cc (keyfile): Imbue ifstream with "C"
locale.
* schroot/sbuild-chroot.h (setup_env_var): Imbue stringstream with
"C" locale.
* schroot/sbuild-keyfile.h: All stringstreams are imbued with the
"C" locale for locale-independent formatting.
* schroot/schroot-releaselock.cc (main): Use C++ locale setup.
* schroot/schroot.cc (main): Use C++ locale setup.
2005-12-30 Roger Leigh <rleigh@debian.org>
* schroot/schroot.cc (main): Use actions rather than old bool
values. Compute the session operation using the action type.
Surround the entire function in a try/catch block, so that
exceptions thrown during program execution are reported nicely.
* schroot/schroot-options.cc
(set_action): Only allow one action to be specified.
(Options): Set the appropriate actions when parsing. Session
operations are represented within the action member.
* schroot/schroot-options.h (schroot): Add action_type enum. This
is used to represent all actions the user may specify, rather than
using a separate bool for each. Remove the session operation
member.
2005-12-30 Roger Leigh <rleigh@debian.org>
* schroot/schroot-options.h: Fix include guard naming scheme.
* schroot/schroot-releaselock-options.(cc|h): New class for
schroot-releaselock options parsing. The options structure has
been split out from schroot-releaselock.cc to create this new
class.
2005-12-30 Roger Leigh <rleigh@debian.org>
* Replace all format_detail_* typedef usage with format_details.
* schroot/sbuild-chroot.h (format_details): Templated member
function to construct the correct format_details class template.
This replaces all the format_detail_* typedefs.
2005-12-30 Roger Leigh <rleigh@debian.org>
* All code updated to use Chroot::chroot_ptr.
* schroot/sbuild-config.cc (load): Create chroots from keyfile
using Chroot::create.
* schroot/sbuild-chroot.h: Chroots are created by a factory
function returning a shared_ptr (chroot_ptr). All chroot types
have protected constructors, and must be created using the static
create methods.
2005-12-30 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-chroot.h
(format_detail::operator <<): Fix justification.
* schroot/sbuild-chroot.cc (read_keyfile): Set chroot priority.
2005-12-30 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-config.cc (load): Insert chroot name into alias
map in addition to alias names.
2005-12-30 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-chroot-plain.cc (read_keyfile): Use keyfile
priorities.
* schroot/sbuild-chroot-block-device.cc (read_keyfile): Use
keyfile priorities.
* schroot/sbuild-chroot.cc (read_keyfile): Set chroot name from
group name, and use keyfile priorities.
* schroot/sbuild-keyfile.h
(parse_value): New templated method to parse a key value and set
the value of the specified value type.
(get_value): Use parse_value, and add debugging messages. Add
overloaded method to check key priority.
(get_list_value): Use parse_value. Add overloaded method to check
key priority.
(set_list, set_list_value): Use std::boolalpha to get text
representation of bool.
(operator >>): Correct off-by-one errors with substring lengths.
* schroot/sbuild-keyfile.cc (check_priority): New method to check
if a key is required, optional, deprecated or obsolete. Log a
warning or error message if a key is missing or present when it
should not be.
* schroot/sbuild-config.cc
(Config): Throw error if construction fails.
(add_config_directory): Correct error message.
(load): Chroot type defaults to "plain". Log a warning if the
chroot type is incorrect.
* schroot/sbuild-log.cc (log_debug): Report the debug level when
printing messages.
* schroot/schroot.cc (main): Set the default debugging level to
DEBUG_NOTICE.
2005-12-29 Roger Leigh <rleigh@debian.org>
* NEWS: Bump version to 2.0
2005-12-29 Roger Leigh <rleigh@debian.org>
* doc/schroot.dox.in
(PROJECT_NUMBER): Use @VERSION@.
(WARN_LOGFILE): Log to schroot.log.
2005-12-29 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-nostream.h: Rename m_sbuf to nbuf.
2005-12-29 Roger Leigh <rleigh@debian.org>
* configure.ac: Bump version to 0.2.0, following the C++ and
doxygen work.
2005-12-28 Roger Leigh <rleigh@debian.org>
* Add doxygen support to configure and doc/Makefile.am, and
distribute the doxygen-generated documentation.
2005-12-28 Roger Leigh <rleigh@debian.org>
* schroot/schroot-options.cc: Always qualify string_list with
sbuild::.
2005-12-28 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-auth-conv-tty.h: (sbuild::AuthConvTty): Rename
conversation_impl to conversation.
* schroot/sbuild-auth-conv.h (sbuild::AuthConv): Remove
conversation_impl method, replacing it with conversation.
2005-12-28 Roger Leigh <rleigh@debian.org>
* Document remaining undocumented functions and typedefs.
Implementations of pure virtual functions are not documented (a
doxygen bug, Debian bug #324117).
2005-12-28 Roger Leigh <rleigh@debian.org>
* Convert all inline gtk-doc documentation to Doxygen format, and
move it from the sources into the headers.
2005-12-26 Roger Leigh <rleigh@debian.org>
* Convert all classes to use runtime_error_custom, and remove all
error code enums.
* schroot/sbuild-error.h: Remove Exception class, and replace with
a runtime_error base class, and runtime_error_custom<> template
class (templated on class using it), which no longer has an error
code member (the error code was a GError holdover which was not
used).
2005-12-26 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.c:
(run_impl, setup_chroot): Add mising format strings.
2005-12-26 Roger Leigh <rleigh@debian.org>
* Remove typedef'd enums in favour of plain enums.
2005-12-26 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.cc (is_group_member): Use new rather than
C99 VLAs.
(setup_chroot): setup_type_string is a std::string, rather than a
char *.
* schroot/sbuild-config.cc (validate_chroots): Return bad_chroots.
* schroot/sbuild-chroot.cc (read_keyfile): Initialise bool values
to quell compiler warning.
* schroot/sbuild-auth.h (ErrorCode): Remove trailing comma.
* schroot/sbuild-auth.cc
(auth_conv): Use signed rather than unsigned int in for loops.
(Auth::Auth): Correct member initialisation order.
* schroot/Makefile.am (AM_CXXFLAGS): Add additional flags: -Wall
-Wcast-align -Wwrite-strings -pedantic -Wcast-qual
-Wredundant-decls.
2005-12-25 Roger Leigh <rleigh@debian.org>
* configure.ac: Remove checks for Glib. Glib is now completely
removed from the sources.
* schroot/Makefile.am (libsbuild_la_LIBADD): Remove Glib library.
* schroot/schroot-releaselock.cc: Convert from GOption to
Boost.Program_options.
* schroot/schroot-options.cc: Convert from GOption to
Boost.Program_options.
2005-12-24 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-util.cc: Remove format_string.
* Convert all uses of sbuild::format_string to boost::format.
* schroot/sbuild-error.h (sbuild): Add a constructor which gets
its message from a boost::format, rather than a std::string.
2005-12-24 Roger Leigh <rleigh@debian.org>
* debian/control (Build-Depends): Add libboost-dev and
libboost-program-options.
* schroot/Makefile.am (libsbuild_la_LIBADD): Add BOOST_LIBS.
* configure.ac: Add checks for Boost.Format and
Boost.Program_options headers and shared libraries.
2005-12-23 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.cc:
(sbuild_session_setup_chroot_child_setup): Remove.
(setup_chroot): Replace g_spawn_sync with fork(), exec() and
wait(). The uid, gid and group list are set prior to calling
exec, as with sbuild_session_setup_chroot_child_setup previously.
(run_child): Replace g_get_current_dir with GNU libc getcwd, and
replace g_find_program_in_path with find_program_in_path.
(wait_for_child): The variable to store the child exit status is
passed in by reference, rather than being fixed.
* schroot/sbuild-keyfile.h (keyfile::get_list_value): Use
split_string instead of get_list_items.
* schroot/sbuild-keyfile.cc (get_list_items): remove.
* schroot/sbuild-util.cc
(split_string): New function to split a string into a string_list,
based upon sbuild::keyfile::get_list_value, but allows
specification of a custom split character. *
(find_program_in_path): New function to search for an executable
in $PATH. A replacement for g_find_program_in_path.
2005-12-22 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-chroot.h (sbuild::Chroot::format_detail):
template helper class to simplify streaming outout of chroot
details. Used by all derived chroot classes.
* All Glib string functions have been replaced with the C++ or C99
equivalent.
* All uses of g_return[_val]_if_fail have been replaced with
conditionals or static assertions.
* All Glib logging and message functions have been replaced with
the new logging functions and standard C++ streams.
* All Glib types have been completely removed, with the exception
of one instance of GError, and two uses of GOption.
* Support for gtk-doc has been disabled and partially removed.
* The dependency upon libsigc++ has been removed. Virtual
functions are used instead, which will provide more safety and
security.
* schroot/sbuild-keyfile.(cc|h): New class sbuild::keyfile, a
replacement for GKeyFile. Unlike GKeyFile, it uses templated
methods to allow its use with any streamable type, in a type-safe
manner. The existing GKeyFile helper functions have been removed.
* schroot/sbuild-log.(cc|h): New file: logging functions to
replace the Glib print and logging utility functions. Unlike the
Glib types, these are based around ostreams.
* schroot/sbuild-nostream.(cc|h): New class sbuild::basic_nostream
with nostream and wnostream typedefs. This is a "null ostream",
which is a bit-bucket stream which discards all input.
* schroot/sbuild-types.h: New file: commonly-used types.
* Continue purge of Glib.
2005-12-19 Roger Leigh <rleigh@debian.org>
* schroot/Makefile.am: Replace $(GOBJECT_LIBS) with $(GLIB_LIBS).
* configure.ac: Replace check for GObject with a check for GLib,
and adjust $SCHROOT_CFLAGS accordingly.
* Remove GObject support.
2005-12-19 Roger Leigh <rleigh@debian.org>
* Replace all use of glib/gi18n.h with sbuild-i18n.h.
* schroot/sbuild-i18n.h: New file: gettext macros.
2005-12-19 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-auth-conv-tty.cc, sbuild-auth.cc: Add support for
iostream.
* Replace most uses of g_strdup_printf with format_string.
* schroot/sbuild-util.cc (format_string): New function to create a
std::string from a C-style format string.
2005-12-18 Roger Leigh <rleigh@debian.org>
* Remove GLib types (gboolean, gchar, gint), and replace with
standard C++ types.
2005-12-18 Roger Leigh <rleigh@debian.org>
* All typedefs and enums have been moved into the class
declarations, with the Sbuild and Object prefixes removed.
* GError error propagation has been replaced with
sbuild::Exception<> in all code. The catch blocks are still
local, simply replacing GError, but this will be fixed up later.
* All Sbuild objects are in the "sbuild" namespace, and Schroot
object are in the "schroot" namespace, with the prefix removed
from the class names.
* schroot/sbuild-error.h: Remove GError/GType glue, and replace
with a simple templated exception class derived from
std::runtime_error, initially to replace GError in a compatible
manner.
2005-12-17 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-config.cc (load): Add GKeyFile error checking.
* schroot/sbuild-chroot-lvm-snapshot.cc (read_keyfile): New
private method to read a GKeyFile.
* schroot/sbuild-chroot-block-device.cc (read_keyfile): New
private method to read a GKeyFile.
* schroot/sbuild-chroot-plain.cc (read_keyfile): New private
method to read a GKeyFile.
* schroot/sbuild-chroot.cc (read_keyfile): New private method to
read a GKeyFile.
* schroot/sbuild-keyfile.h: New file. Simple wrapper funtions for
interfacing with GKeyFile.
2005-12-16 Roger Leigh <rleigh@debian.org>
* Convert all sources from GObject-based C to ISO C++. This
conversion is not yet complete, but builds without error.
2005-11-07 Roger Leigh <rleigh@debian.org>
* debian/changelog: Update.
* debian/schroot.init: Remove "function" bashism.
2005-11-05 Roger Leigh <rleigh@debian.org>
* debian/changelog: Update.
* debian/rules (config.status): Use /usr/lib rather than
${prefix}/lib for libexecdir, to avoid unexpanded shell vars in
config.h.
2005-11-05 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.c (is_group_member): Don't fail if the
supplementary group count is 0. Also check the process' GID in
addition to the supplementary groups.
2005-11-05 Roger Leigh <rleigh@debian.org>
* debian/changelog: Update for 0.1.8.
* NEWS: Update for 0.1.8.
* configure.ac: Update version to 0.1.8.
2005-11-04 Roger Leigh <rleigh@debian.org>
* Version 0.1.7.
* debian/changelog: Update date.
* NEWS: Update.
2005-11-04 Roger Leigh <rleigh@debian.org>
* TODO: Remove completed items, and update new items.
* README: Document new build dependencies.
* schroot/schroot.conf.5.in: Add new chroot options to the examples.
* schroot/schroot.conf: Add new chroot options to the examples.
* schroot/schroot-setup.5.in: Document the setup and run scripts.
2005-11-03 Roger Leigh <rleigh@debian.org>
* debian/schroot.init: Use --quiet option to suppress an
unnecessary error message.
* schroot/schroot.c
(main): If --quiet is used, don't print an error message if no
chroots are defined. Remove check for --quiet and --verbose, now
moved to schroot_options_parse.
* schroot/schroot-options.c
(schroot_options_parse): Check if both --quiet and --verbose have
been specified.
2005-11-02 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.c
(sbuild_session_run): Ensure child exit status is set to
EXIT_FAILURE on session failure.
(sbuild_session_init): Set child exit status to EXIT_SUCCESS by
default.
* debian/changelog: Document changes.
* debian/rules (binary-arch): Use dh_installinit to install init
script.
* debian/schroot.init (NAME): New init script to perform session
recovery at system startup.
2005-11-02 Roger Leigh <rleigh@debian.org>
* schroot/schroot-options.c
(schroot_options_parse): Don't load all chroot configurations when
in list mode.
2005-11-02 Roger Leigh <rleigh@debian.org>
* schroot/schroot.c
(main): Delegate the decision about which chroot configuration
files to load to schroot_options_parse. Use
sbuild_config_print_chroot_info to print chroot information.
* schroot/schroot-options.h
(struct _SchrootOptions): Add load_chroots and load_sessions
members.
* schroot/schroot-options.c
(schroot_options_parse): Determine which chroot configuration
files to load more accurately.
* schroot/sbuild-config.c
(sbuild_config_print_chroot_info): New function, split out from
main() in schroot.c.
2005-11-01 Roger Leigh <rleigh@debian.org>
* Updated documentation.
* schroot/schroot.c: Update to use the new SchrootOptions option
parsing:
(get_chroot_options): An SchrootOptions struct is passed as an
argument, since the options are no longer global.
(main): Create and free an SchrootOptions struct.
* schroot/schroot-options.[ch]: New files. The command-line
option parsing has been split out of schroot.c, with an new
SchrootOptions struct to contain the parsed options.
2005-10-30 Roger Leigh <rleigh@debian.org>
* schroot/schroot.1.in: Document --recover-session.
* schroot/setup/*: Add support to setup scripts for
"setup-recover" option. In particular, filesystems are all
remounted, and all "setup-start" tasks are performed, except for
snapshotting.
* schroot/schroot.c
(parse_options): Add "--recover-session" session option.
(parse_session_options): Parse "--recover-session".
(main): Update configuration file loading to account for recovery.
* schroot/sbuild-session.c
(sbuild_session_setup_chroot): Add support for "setup-recover"
argument in scripts.
(sbuild_session_run): Add support for session recovery option.
* schroot/sbuild-session.h
(SbuildSessionOperation): Add SBUILD_SESSION_OPERATION_RECOVER.
* schroot/sbuild-chroot.h
(SbuildChrootSetupType): Add SBUILD_CHROOT_SETUP_RECOVER.
2005-10-30 Roger Leigh <rleigh@debian.org>
* schroot/schroot.c
(main): Allow selection of non-session chroots as sessions, in
order to allow session-like behaviour for all chroots, even those
that can't natively support sessions.
* schroot/sbuild-session.c
(sbuild_session_run): Don't append a UUID to the session ID if the
chroot does not support session creation.
2005-10-30 Roger Leigh <rleigh@debian.org>
* schroot/schroot.c (main): Abort if more than one chroot is
specified when starting a session.
2005-10-28 Roger Leigh <rleigh@debian.org>
* schroot/schroot.c
(parse_options): Remove unused "UUID" argument description for
running and ending sessions.
(main): Don't set the session id.
* schroot/sbuild-session.c
(sbuild_session_run): If not running or ending a session, generate
a session ID in the form "chroot_name-uuid".
2005-10-27 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.c
(sbuild_session_setup_chroot): Propagate GError from
sbuild_chroot_setup_lock.
* schroot/sbuild-chroot-lvm-snapshot.c
(sbuild_chroot_lvm_snapshot_setup_lock): Use GError. Refactor to
propagate GError on failure, and reduce the number of return
points.
(sbuild_chroot_lvm_snapshot_setup_session_info): New function,
split out from sbuild_chroot_lvm_snapshot_setup_lock to increase
readability.
* schroot/sbuild-chroot-block-device.c
(sbuild_chroot_block_device_setup_lock): Use GError. Refactor to
propagate GError on failure, and reduce the number of return
points.
* schroot/sbuild-chroot-plain.c
(sbuild_chroot_plain_setup_lock): Use GError.
* schroot/sbuild-chroot.c
(sbuild_chroot_error_quark): New function.
* schroot/sbuild-chroot.h
(SbuildChrootError): Add error enum.
(SbuildChrootSetupLockFunc): Add a GError.
2005-10-27 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-config.c
(sbuild_config_clear_chroot_list): New helper function to clear
stored chroot list.
(sbuild_config_clear): New function; uses
sbuild_config_clear_chroot_list.
(sbuild_config_finalize): Use sbuild_config_clear_chroot_list.
2005-10-23 Roger Leigh <rleigh@debian.org>
* TODO: Remove chroot default item.
* schroot/schroot.1.in: Document default fallback.
* schroot/schroot.c (get_chroot_options): Fall back to "default"
chroot if no chroot was specified.
2005-10-23 Roger Leigh <rleigh@debian.org>
* po/en_GB.po: Updated translation.
* TODO: Update. All locking and session items removed now that
they are implemented.
* schroot/schroot.1.in: Document new "--all-chroots" and
"--all-sessions" options.
* schroot/schroot.c: Add "--all-chroots" and "--all-sessions"
command-line options.
(get_chroot_options): Use new "--all" options.
(get_chroot_options): Print a list of invalid chroots found during
chroot validation.
(main): Create the configuration using sbuild_config_new(), and
add the approprate configuration and session configuration
depending on the command-line options used.
* schroot/sbuild-session.c
(sbuild_session_run): When restoring a session, set the session ID
from the chroot name.
(sbuild_session_run): The session operations are only run if
specified in the session operations.
* schroot/sbuild-config.c
(sbuild_config_new): New function. This does not load any
configuration files.
(sbuild_config_add_config_file): New function, renamed from
sbuild_config_set_config_file. This now exported.
(sbuild_config_add_config_directory): New function, renamed from
sbuild_config_set_config_directory. This now exported.
(sbuild_config_find_generic): Cope with the case that no chroots
exist.
(sbuild_config_get_chroot_list): Cope with the case that no
chroots exist.
(sbuild_config_validate_chroots): Return a list of invalid chroot
names, rather than FALSE.
(sbuild_config_class_init): "config-file" and "config-directory"
are no longer construct-only. Both properties are now completely
virtual, with no corresponding member data (a single filename no
longer makes sense when multiple configuration files may be added
at any time).
* schroot/sbuild-config.h (struct _SbuildConfig): Removed file
member.
* schroot/sbuild-chroot.h: Fix function misordering.
* schroot/sbuild-chroot.c
(sbuild_chroot_print_config): Print "active" property, don't
translate any option names, and format "mount-device" correctly.
(sbuild_chroot_set_property): Add the PROP_ACTIVE property.
(sbuild_chroot_class_init): Make "active" a construction property;
this is not documented, as it is not intended for use by users; it
is for session recovery.
* schroot/sbuild-chroot-lvm-snapshot.c
(sbuild_chroot_lvm_snapshot_print_config): Chain up using the
print_config vfunc.
(sbuild_chroot_lvm_snapshot_setup_lock): Use
sbuild_chroot_print_config rather than
sbuild_chroot_print_details.
2005-10-20 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.c (sbuild_session_run): Set and unset the
chroot "active" property before and after running a session.
* schroot/sbuild-config.c (sbuild_config_load): Remove active
argument from sbuild_chroot_new_from_keyfile call.
* schroot/sbuild-chroot.c
(sbuild_chroot_class_init): Make "active" property writable, and
add methods to get and set the active property.
(sbuild_chroot_new_from_keyfile): Remove active argument.
2005-10-20 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.c (sbuild_session_run): If a chroot sets
SBUILD_CHROOT_SESSION_CREATE, update the chroot name with the
session name.
* schroot/sbuild-chroot.h (SbuildChrootSessionFlags) Removed
unused session flags, and renamed SBUILD_CHROOT_SESSION_PERSISTENT
to SBUILD_CHROOT_SESSION_CREATE. All chroot types updated to
reflect the change.
2005-10-20 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.c (sbuild_session_run): For LVM
snapshots, set the chroot name to the session name.
* schroot/sbuild-chroot-lvm-snapshot.c
(sbuild_chroot_lvm_snapshot_setup_lock): Write out a session file
on session startup, and remove it when stopping the session.
2005-10-18 Roger Leigh <rleigh@debian.org>
* debian/rules (config.status): Add --libexecdir option to
configure.
* schroot/run/00check: Print new environment variables.
* schroot/setup/05lvm: Use schroot-releaselock to release snapshot
device lock just prior to snapshot removal.
* schroot/setup/00check: Print new environment variables.
* schroot/schroot-setup.5.in: Document new environment variables.
* schroot/sbuild-session.c (sbuild_session_setup_chroot): Add
LIBEXEC_DIR and PID setup environment variables.
* schroot/sbuild-chroot-lvm-snapshot.c
(sbuild_chroot_lvm_snapshot_setup_lock): Don't unlock device at
setup stop.
* schroot/Makefile.am
(pkglibexecdir): Set to $(SCHROOT_LIBEXEC_DIR).
(pkglibexec_PROGRAMS): Add schroot-releaselock.
* schroot/schroot-releaselock.c: New program to release device
lock files using liblockdev.
* configure.ac: Add SCHROOT_LIBEXEC_DIR define and substvar.
2005-10-17 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-lock.c (sbuild_lock_set_device_lock): Remove
debugging print and sleep statements.
2005-10-17 Roger Leigh <rleigh@debian.org>
* Update documentation.
* schroot/sbuild-chroot.c (sbuild_chroot_class_init): Remove the
"current-users" and "max-users" properties, and associated object
members and methods.
2005-10-17 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-chroot-lvm-snapshot.c
(sbuild_chroot_lvm_snapshot_setup_lock): The device lock is held
on the source device during snapshotting (setup start), and on the
snapshot device from run start to run stop and then during setup
stop while the chroot is destroyed.
* schroot/sbuild-chroot-block-device.c
(sbuild_chroot_block_device_setup_lock): The device lock is held
throughout the entire session. It is acquired at setup start and
released at setup stop. This uses the new sbuild-lock device
locking primitives.
* schroot/sbuild-chroot.h: SbuildChrootSetupLockFunc uses a
mutable chroot object. All implementations of the setup_lock
vfunc have been changed accordingly.
* schroot/sbuild-lock.c
(sbuild_lock_set_device_lock): New function. Lock a device using
liblockdev.
(sbuild_lock_unset_device_lock): New function. Unlock a device
using liblockdev.
2005-10-14 Roger Leigh <rleigh@debian.org>
* debian/changelog: Bump version to 0.1.7.
* debian/control (Build-Depends): Add liblockdev1-dev.
* schroot/Makefile.am (schroot_LDADD): Add $(LOCKDEV_LIBS).
* configure.ac: Check for liblockdev.
* Bump version to 0.1.7.
2005-10-14 Roger Leigh <rleigh@debian.org>
* schroot/schroot.1.in: Restore session options.
* schroot/schroot.c (parse_options): Restore session options.
2005-10-13 Roger Leigh <rleigh@debian.org>
* Version 0.1.6.
* debian/changelog: Update
* TODO: Update.
* NEWS: Update.
* schroot/schroot.1.in: Remove unused session options.
* schroot/schroot.c: Disable unused session options.
2005-10-12 Roger Leigh <rleigh@debian.org>
* All manpages updated to document the new names and directory
locations.
* schroot/sbuild-chroot.h: Rename SBUILD_CHROOT_SETUP_START and
SBUILD_CHROOT_SETUP_STOP to SBUILD_CHROOT_RUN_START and
SBUILD_CHROOT_RUN_STOP. Users of the enum changed to use the new
names.
* session.d script "session-start" and "session-stop" script
arguments renamed to "run-start" and "run-stop". All scripts
changed to use the new names, and sbuild-session.c runs the
scripts with the new new names.
* Rename schroot/session to schroot/run. Install scripts into
$sysconfdir/schroot/run.d. Update configure.ac, and
schroot/Makefile.am.
2005-10-12 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.c (sbuild_session_setup_chroot): Use new
function names.
* schroot/sbuild-chroot-lvm-snapshot.c: Use new vfunc names.
(sbuild_chroot_lvm_snapshot_setup_lock): stat devices, but still
needs liblockdev support for full locking.
* schroot/sbuild-chroot-block-device.c: Use new vfunc names.
(sbuild_chroot_block_device_setup_lock): stat devices, but still
needs liblockdev support for full locking.
* schroot/sbuild-chroot-plain.c: Use new vfunc names.
(sbuild_chroot_plain_setup_lock): Do no locking by default.
* schroot/sbuild-chroot.c
(sbuild_chroot_setup_lock): Renamed from
setup_chroot_get_setup_name.
(sbuild_chroot_setup_env): Renamed from sbuild_chroot_setup.
(sbuild_chroot_class_init): Use new vfunc names.
* schroot/sbuild-chroot.h (struct _SbuildChrootClass): Rename
setup to setup_env and get_setup_name to setup_lock, which now
returns gboolean on lock failure.
2005-10-05 Roger Leigh <rleigh@debian.org>
* debian/changelog: Manual pages say "schroot" rather than
"sbuild". Closes Debian Bug #331550.
* schroot/schroot.conf.5.in: Use "schroot" rather than "sbuild".
2005-10-01 Roger Leigh <rleigh@debian.org>
* configure.ac: Output schroot-setup.5
* schroot/Makefile.am (man_MANS): Add schroot-setup.5
* schroot/schroot.1.in: Remove setup script documentation.
* schroot/schroot-setup.5.in: New file, documenting setup script
environment.
2005-10-01 Roger Leigh <rleigh@debian.org>
* schroot/setup/Makefile.am: Distribute 05lvm.
* schroot/setup/10mount: Use new LVM variables, so snapshot names
and mount locations are as set by the session. Remove mount
directory after unmounting, but only if it's under $MOUNT_DIR.
* schroot/setup/05lvm: Use new LVM variables, so snapshot names
and mount locations are as set by the session.
* schroot/setup/00check, schroot/session/00check: Add MOUNT_DIR,
SESSION_ID, CHROOT_LVM_SNAPSHOT_NAME and
CHROOT_LVM_SNAPSHOT_DEVICE.
* schroot/schroot.c
(parse_options): Free the option context after use.
(main): If a session ID was not specified, generate a UUID for the
session.
(main): Free the chroot list to make valgrind happy.
* schroot/schroot.1.in: Document MOUNT_DIR, SESSION_ID,
CHROOT_LVM_SNAPSHOT_NAME and CHROOT_LVM_SNAPSHOT_DEVICE
environment variables.
* schroot/sbuild-session.c
(sbuild_session_get_session_id): session-id is no longer required
to be a UUID.
(sbuild_session_set_session_id): session-id is no longer required
to be a UUID. Allow setting of arbitrary strings.
(sbuild_session_setup_chroot): Export MOUNT_DIR and SESSION_ID in
the environment.
(sbuild_session_run): Set the chroot mount location if the chroot
did not already do so.
(sbuild_session_run): For LVM snapshot chroots, set the snapshot
name to the session ID.
(sbuild_session_run): Cascade error handling properly on failure.
(sbuild_session_class_init): Update session-id documentation now
it is no longer a strict UUID.
* schroot/sbuild-session.h (struct _SbuildSession): Change
session_id type from uuid_t to gchar *.
* schroot/sbuild-config.c (sbuild_config_load): Free GIOChannel,
file data buffer and GKeyFile structure after use.
* schroot/sbuild-chroot-lvm-snapshot.c
(sbuild_chroot_lvm_snapshot_print_config): Don't print NULL
values.
(sbuild_chroot_lvm_snapshot_setup): Don't set NULL values. Set
snapshot device name (path stripped) as CHROOT_LVM_SNAPSHOT_NAME.
(sbuild_chroot_lvm_snapshot_get_setup_name): Implement
get_setup_name vfunc. This is of the form block-major-minor,
obtained by stat()ing the block device. For setup-start, this is
the source LV, but for all other cases is the snapshot LV.
(sbuild_chroot_lvm_snapshot_class_init): Added new
"snapshot-device" property. The "device" property is slaved to
this value, and indirectly, the "device" property is also slaved.
* schroot/sbuild-chroot-lvm-snapshot.h (struct
_SbuildChrootLvmSnapshot): New snapshot_device member.
* schroot/sbuild-chroot-block-device.c
(sbuild_chroot_block_device_print_details): Don't print NULL
values.
(sbuild_chroot_block_device_print_config): Don't print NULL
values.
(sbuild_chroot_block_device_setup): Don't set NULL values.
(sbuild_chroot_block_device_get_setup_name): Implement
get_setup_name vfunc. This is of the form block-major-minor,
obtained by stat()ing the block device.
* schroot/sbuild-chroot-plain.c
(sbuild_chroot_plain_print_details): Don't print NULL values.
(sbuild_chroot_plain_print_config): Don't print NULL values.
(sbuild_chroot_plain_setup): Don't set NULL values.
(sbuild_chroot_plain_get_setup_name): Implement get_setup_name
vfunc. This is of the form directory-major-minor-inode, obtained
by stat()ing the mount location.
* schroot/sbuild-chroot.c
(sbuild_chroot_set_properties_from_keyfile): Don't leak GKeyFile
string and string vector values.
(sbuild_chroot_get_setup_name): New function. Get the name for
e.g. locking during setup.
(sbuild_chroot_print_details): Don't print NULL values.
(sbuild_chroot_print_config): Don't print NULL values.
(setup_env_string): New helper function to build environment list.
(setup_env_unsigned): New helper function to build environment list.
* schroot/sbuild-chroot.h (struct _SbuildChrootClass): Add
get_setup_name vfunc.
* schroot/sbuild-auth.c (sbuild_auth_setupenv): Don't leak new
environment.
* schroot/Makefile.am (install-data-hook): Create mount directory.
* configure.ac (SCHROOT_MOUNT_DIR): Add mount directory.
2005-09-27 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-lock.c: Minor documentation and error message
tidying.
2005-09-27 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-config.c (sbuild_config_load): Report GError
messages propagated by locking failure.
* schroot/sbuild-lock.c
(sbuild_lock_set_lock): Return errors as a GError, rather than
aborting. Don't run fcntl in a while loop now that timeouts are
implemented with an itimer.
(sbuild_lock_unset_lock): Return errors as a GError.
(sbuild_lock_error_quark): New function.
* schroot/sbuild-lock.h (SBUILD_LOCK_ERROR): Add error domain.
Add locking errors as SbuildLockError enum.
2005-09-27 Roger Leigh <rleigh@debian.org>
* schroot/schroot.conf.5.in: Update documentation.
* schroot/sbuild-chroot.c (sbuild_chroot_class_init): The
run-session-scripts property defaults to FALSE, for compatibility
with dchroot out-of-the-box.
2005-09-27 Roger Leigh <rleigh@debian.org>
* Update documentation.
* schroot/sbuild-config.c (sbuild_config_load): Acquire a read
lock while reading schroot.conf.
* schroot/schroot.h: Add sbuild-lock.h.
* schroot/Makefile.am: Add sbuild-lock.[ch].
* schroot/sbuild-lock.[ch]: New file, implementing simple
whole-file advisory locking primitives.
2005-09-25 Roger Leigh <rleigh@debian.org>
* schroot/setup/00check: Remove "session-start" check.
* schroot/session/00check: Remove duplicate "session-start" check.
* schroot/session/50sbuild: New script to set up sbuild build
directory and fix its ownership and permissions.
2005-09-25 Roger Leigh <rleigh@debian.org>
* schroot/schroot.1.in: Document new session.d directory.
* schroot/schroot.conf.5.in: Document run-setup-scripts and
run-session-scripts options.
* schroot/sbuild-chroot.c (sbuild_chroot_class_init): Replace
run-setup property and associated accessors with two new
properties, run-setup-scripts and run-session-scripts and
associated accessors. Setup script are not run by default,
whereas session scripts are.
* schroot/sbuild-chroot.h (struct _SbuildChroot): Replace
run_setup with two members, run_setup_scripts and
run_session_scripts.
* schroot/Makefile.am (SUBDIRS): Add session.
* schroot/session/00check: New session script.
* schroot/session/Makefile.am: New file for installing session
scripts.
* configure.ac (SCHROOT_CONF_SETUP_D): New define and substitution
variable.
2005-09-25 Roger Leigh <rleigh@debian.org>
* Update API reference.
* schroot/schroot.1.in: Document new command-line options.
* schroot/schroot.c: Add new session_opt struct, with operation,
id and force members.
(parse_options): Add new command line options: -b/--begin-session,
-r/--run-session, -e/--end-session and --force in a new "session"
option group. These options do not currently have any effect.
(parse_session_options): New helper function to parse session
options.
(main): Set session operation when creating a new session. Set
additional session properties (session-id, force) after
construction.
* schroot/sbuild-session.c (sbuild_session_class_init): Added new
"operation" and "force" properties, and associated accessors.
(sbuild_session_new): Add operation argument, and set the
operation contruction property.
* schroot/sbuild-session.h: Added SbuildSessionOperation enum to
specify session operations.
(struct _SbuildSession): Added new operation and force members.
* schroot/sbuild-chroot-lvm-snapshot.c
(sbuild_chroot_lvm_snapshot_get_session_flags): New virtual
function to get session flags.
* schroot/sbuild-chroot-block-device.c
(sbuild_chroot_block_device_get_session_flags): New virtual
function to get session flags.
* schroot/sbuild-chroot-plain.c
(sbuild_chroot_plain_get_session_flags): New virtual function to
get session flags.
* schroot/sbuild-chroot.c
(sbuild_chroot_get_session_flags): New function. Calls
get_session_flags vfunc.
(sbuild_chroot_class_init): get_session_flags is pure virtual, so
must be implemented in derived classes.
* schroot/sbuild-chroot.h: Add SbuildChrootSessionFlags enum to
specify chroot session behaviour.
(struct _SbuildChrootClass): Added get_session_flags vfunc.
2005-09-24 Roger Leigh <rleigh@debian.org>
* debian/rules (config.status): Set $localstatedir when running configure.
2005-09-24 Roger Leigh <rleigh@debian.org>
* schroot/schroot.1.in: Document new setup script parameters.
* Modify all setup scripts to use the new setup names.
* schroot/sbuild-session.c
(sbuild_session_setup_chroot): Use SbuildChrootSetupTyoe to run
the four different types of setup operation.
(sbuild_session_run): Run the four different kinds of setup script
in the correct order.
* schroot/sbuild-chroot.h: Add SbuildChrootSetupType enum to
replace internal SbuildSessionChrootSetupType. This has
enumerations for starting and stopping both chroot setup and
session setup.
2005-09-24 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-chroot.c
(sbuild_chroot_set_properties_from_keyfile): Split keyfile
property code out from sbuild_chroot_new_from_keyfile. This will
allow re-reading chroot configuration from disk for session
handling.
2005-09-24 Roger Leigh <rleigh@debian.org>
* debian/preinst, debian/postinst: Preserve schroot.conf changes
correctly when moving to /etc/schroot/schroot.conf, by checking
the md5sum to detect local modifictions. If not modified, delete
and replace with the package version.
2005-09-22 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.c (sbuild_session_run): Move chroot mount
location fallback from sbuild_session_setup_chroot.
* schroot/schroot.conf.5.in: Add additional "run-setup" notes.
2005-09-21 Roger Leigh <rleigh@debian.org>
* debian/changelog: Bump version to 0.1.6. Document run-setup
changes for Debian Bug #329403.
* schroot/schroot.conf.5.in: Document "run-setup" configuration
option.
* schroot/sbuild-session.c (sbuild_session_run): Only run setup
scripts if enabled in the chroot configuration.
* schroot/sbuild-chroot.c
(sbuild_chroot_class_init): Add "run-setup" property, and
associated accessors.
(sbuild_chroot_new_from_keyfile): Add support for G_TYPE_BOOLEAN
properties as configuration options.
* schroot/sbuild-chroot.h (struct _SbuildChroot): Add run_setup
member.
2005-09-20 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-chroot.c
(sbuild_chroot_new_from_keyfile): Fix a memory leak during chroot
type identification. Reorganise code to make layout more logical.
(sbuild_chroot_print_details): Format detail listing to make it
more readable, in the same style as used by the LVM tools.
* schroot/sbuild-config.c (sbuild_config_load): Only add chroots
to the SbuildConfig if they were successfully constructed.
2005-09-18 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.c (sbuild_session_class_init): Add a new
session-id property and associated accessors, which handle
conversions between a string and uuid_t.
* schroot/sbuild-session.h (struct _SbuildSession): Add a new
session_id member containing the session UUID.
* schroot/sbuild-config.c
(sbuild_config_new_from_file): New function to replace
sbuild_config_new.
(sbuild_config_new_from_directory): New function to load a set of
configuration files from a directory.
(sbuild_config_class_init): config-file property is no longer
readable. Added new contruct only and write-only config-directory
property.
(sbuild_config_set_config_directory): New function to read a
directory and load config files.
(sbuild_config_load): Pass back the chroot list as an OUT
parameter rather than a return value, to allow reusing the same
list.
(sbuild_config_set_config_file): Remove the restriction on loading
a single config file.
* schroot/sbuild-chroot-lvm-snapshot.c
(sbuild_chroot_lvm_snapshot_print_config): New virtual function to
print additional configuration details.
* schroot/sbuild-chroot-block-device.c
(sbuild_chroot_block_device_print_config): New virtual function to
print additional configuration details.
* schroot/sbuild-chroot-plain.c
(sbuild_chroot_plain_print_config): New virtual function to print
additional configuration details.
* schroot/sbuild-chroot.c
(sbuild_chroot_class_init): Added current-users, max-users and
active properties, and associated accessors.
(sbuild_chroot_new_from_keyfile): Add additional active parameter
which is TRUE if reloading an existing session configuration.
This relaxes permissions checks to allow setting of writable but
not construction parameters.
(sbuild_chroot_print_details): Print new properties.
(sbuild_chroot_print_config): New function to write out current
session state to a a configuration file for later restoration.
(sbuild_chroot_setup): Set new properties as environment
variables, except for active, since this is implicit in running a
session).
* schroot/sbuild-chroot.h
(struct _SbuildChroot): Add current_users, max_users and active
members.
(struct _SbuildChrootClass): Add print_config vfunc.
* debian/control (Build-Depends): Build-depend upon uuid-dev
* schroot/Makefile.am
(schroot_LDADD): Link with libuuid.
(install-data-hook): Make SCHROOT_LOCK_DIR and
SCHROOT_SESSION_DIR.
* configure.ac:
Check for libuuid and add UUID_CFLAGS to SCHROOT_CFLAGS.
Add substitutions and defines for SCHROOT_LOCK_DIR and
SCHROOT_SESSION_DIR.
2005-09-16 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-chroot.c (sbuild_chroot_new_from_keyfile):
Require settable properties to be both constructible and writable.
2005-09-15 Roger Leigh <rleigh@debian.org>
* TODO: Update.
* schroot/schroot.1.in: Document LVM snapshot script variables.
* schroot/schroot.conf.5.in: Document LVM snapshot options.
* schroot/setup/10mount: Hack LVM snapshot device name until it's
supported by the session code.
* schroot/setup/05lvm: New script to create and remove LVM
snapshots. Hack LVM snapshot device name until it's supported by
the session code.
* schroot/setup/00check: Report $CHROOT_LVM_SNAPSHOT_OPTIONS.
* schroot/sbuild-chroot.c (sbuild_chroot_new_from_keyfile): Allow
creation from type "lvm-snapshot".
* schroot/sbuild-chroot-lvm-snapshot.[ch]: New files, implementing
SbuildChrootLvmSnapshot, an object representing a chroot on a LVM
logical volume which has a snapshot LV taken on demand, derived
from SbuildChrootBlockDevice.
2005-09-15 Roger Leigh <rleigh@debian.org>
* schroot/setup/Makefile.am (setup_SCRIPTS): Distribute 00check
and 10mount.
2005-09-15 Roger Leigh <rleigh@debian.org>
* schroot/setup/10mount: Use $CHROOT_MOUNT_DEVICE.
* schroot/setup/00check: Report $CHROOT_MOUNT_DEVICE.
* schroot/sbuild-chroot-plain.c: Minor indentation fixes.
* schroot/sbuild-chroot-block-device.c
(sbuild_chroot_block_device_set_mount_device): New function to
slave the "device" property to the parent class "mount-device"
property.
Minor indentation fixes.
* schroot/sbuild-chroot.c (sbuild_chroot_class_init): Added
"mount-location" property and associated accessors.
* schroot/sbuild-chroot.h (struct _SbuildChroot): Added
mount_location member.
2005-09-15 Roger Leigh <rleigh@debian.org>
* schroot/setup/50chrootname: Use ${CHROOT_MOUNT_LOCATION}.
2005-09-14 Roger Leigh <rleigh@debian.org>
* schroot/schroot.conf.5.in: Document "mount-options".
* schroot/setup/00check: Report $CHROOT_MOUNT_OPTIONS.
* schroot/sbuild-chroot-block-device.c
(sbuild_chroot_block_device_class_init): Added a "mount-options"
property and associated accessors.
* schroot/sbuild-chroot-block-device.h (struct
_SbuildChrootBlockDevice): Added a mount_options member.
2005-09-14 Roger Leigh <rleigh@debian.org>
* Updated documentation.
* schroot/setup/30passwd: Use $CHROOT_MOUNT_LOCATION.
* schroot/setup/20network: Use $CHROOT_MOUNT_LOCATION.
* schroot/setup/10mount: New script to mount block devices.
* schroot/setup/00check: New script to do sanity checking before
other scripts are run, and print the environment when run in
verbose mode.
* schroot/sbuild-session.c
(sbuild_session_setup_chroot): Fall back to "/mnt" if no mount
location is available. This is temporary.
(sbuild_session_setup_chroot): Set the environment correctly for
subclassed SbuildChroot objects.
(sbuild_session_setup_chroot_child_setup): New helper function to
ensure that the setup scripts run as real and effective user and
group root.
* schroot/sbuild-chroot.c
(sbuild_chroot_get_chroot_type): New function, which calls the
get_type vfunc.
(sbuild_chroot_class_init): Renamed "location" property to
"mount-location", and updated all methods accordingly. "location"
is now implemented only in SbuildChrootPlain.
(sbuild_chroot_new_from_keyfile): Check the GKeyFile "type" key to
check which SbuildChroot subclass to instantiate. Add stricter
checking of GKeyFile keys, by validating names and types against
the registered properties for the GObjectClass, as well as
checking if the properties are constructible and writable.
* schroot/sbuild-chroot.h (struct _SbuildChrootClass): Added new
get_type vfunc, for getting the type name of the chroot.
* schroot/sbuild-chroot-block-device.[ch]: New files, implementing
SbuildChrootBlockDevice, an object representing a chroot on a
block device mounted on demand, derived from SbuildChroot.
* schroot/sbuild-chroot-plain.[ch]: New files, implementing
SbuildChrootPlain, an object representing a simple filesystem
chroot, derived from SbuildChroot.
* NEWS: Bump version to 0.1.6.
* configure.ac: Bump version to 0.1.6.
* schroot/sbuild-chroot.c (sbuild_chroot_new_from_keyfile): Warn
if not constructible or writable types are used.
2005-09-13 Roger Leigh <rleigh@debian.org>
* Translate g_warning messages.
* schroot/schroot.c (main): When printing detailed chroot
information, add a blank line between chroots.
* schroot/sbuild-chroot.c (sbuild_chroot_new_from_keyfile): Parse
options automatically by introspecting the GObject properties for
a given chroot GType. This will allow for automatic extension of
the file format as new chroot types are added.
2005-09-12 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.c (sbuild_session_setup_chroot): Call
sbuild_chroot_setup to get chroot environment variables, and add
additional auth environment variables to the same linked list.
Convert the linked list into a vector.
* schroot/sbuild-chroot.c (sbuild_chroot_print_details): Call
print_details vfunc.
(sbuild_chroot_setup): New function, used to set the environment
in setup scripts. It calls the setup vfunc to allow derived
classes to set additional environment variables.
* schroot/sbuild-chroot.h:
(struct _SbuildChrootClass): New print_details and setup virtual
functions.
2005-09-11 Roger Leigh <rleigh@debian.org>
* Fixed minor typos in API reference.
* Updated TODO.
2005-09-11 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.c (sbuild_session_setup_chroot): Set
AUTH_VERBOSITY, not AUTH_VERBOSE.
* schroot/setup/50chrootname: Use $AUTH_VERBOSITY.
* schroot/setup/30passwd: Use $AUTH_VERBOSITY.
* schroot/setup/20network: Use $AUTH_VERBOSITY.
* schroot/schroot.c (main): Fix pointer type warning.
2005-09-11 Roger Leigh <rleigh@debian.org>
* Update API reference.
* schroot/schroot.1.in: Document new option, and the
AUTH_VERBOSITY environment variable used in setup scripts.
* schroot/schroot.c
(parse_options): Add a new --verbose option.
(main): Set requested verbosity level.
* schroot/sbuild-session.c
(sbuild_session_setup_chroot): Check verbosity level to set in the
environment, and to pass to run-parts.
(sbuild_session_run_child): Check verbosity level when printing
information about the command being run.
* schroot/sbuild-auth.c
(sbuild_auth_get_verbosity): Replacement for
sbuild_auth_get_quiet.
(sbuild_auth_set_verbosity): Replacement for
sbuild_auth_set_quiet.
(sbuild_auth_class_init): Replace "quiet" property with
"verbosity" property.
* schroot/sbuild-auth.h:
Add SbuildAuthVerbosity enum to specify message verbosity.
(struct _SbuildAuth): Replace quiet member with verbosity member.
2005-09-11 Roger Leigh <rleigh@debian.org>
* Version 0.1.5.
* po/en_GB.po: Update.
* debian/changelog: Update.
2005-09-11 Roger Leigh <rleigh@debian.org>
* debian/rules: Install the lintian override.
* debian/schroot.lintian-overrides: New file to override
setuid-binary lintian warning.
2005-09-11 Roger Leigh <rleigh@debian.org>
* schroot/Makefile.am (EXTRA_DIST): Correctly distribute
schroot.conf.
* debian/copyright (License): Update the FSF address.
2005-09-11 Roger Leigh <rleigh@debian.org>
* configure.ac:
Check for run-parts.
Define $PACKAGE_SYSCONF_DIR as the location for configuration files.
Define $SCHROOT_CONF_SETUP_D as the location for setup scripts.
* schroot/Makefile.am (pkgsysconfdir): Install schroot.conf into
$(PACKAGE_SYSCONF_DIR).
* schroot/schroot.conf.5.in: Update date.
* schroot/schroot.1.in: Add setup.d to FILES. Update date.
* schroot/setup/Makefile.am: Distribute and install 20network,
30passwd and 50chrootname into $sysconfdir/schroot/setup.d.
* schroot/setup/50chrootname: New file to set up chroot name in
/etc/debian_chroot.
* schroot/setup/30passwd: New file to set up passwd, shadow and
group.
* schroot/setup/20network: New file to set up resolv.conf.
* schroot/sbuild-session.h: Add SBUILD_SESSION_ERROR_CHROOT_SETUP
GError enum.
* schroot/sbuild-session.c
(sbuild_session_setup_chroot): New function to call run-parts(8).
(sbuild_session_run): Call sbuild_session_setup_chroot before and
after running the session command or shell.
2005-08-25 Roger Leigh <rleigh@debian.org>
* schroot/schroot.c (main): Replace SCHROOT_CONFIG_FILE with
SCHROOT_CONF.
* schroot/Makefile.am (DEFS): Remove SCHROOT_CONFIG_FILE.
* schroot/schroot.conf.5.in: Use @SCHROOT_CONF@, rather than the
incorrect @prefix@/etc/schroot.conf.
* schroot/schroot.1.in: Use @SCHROOT_CONF@, rather than the
incorrect @prefix@/etc/schroot.conf.
* configure.ac (PACKAGE_SYSCONF_DIR): Compute the final value of
$sysconfdir before configure ends, and substitute and define
SCHROOT_CONF with the location of schroot.conf.
2005-08-22 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-auth.c (sbuild_auth_require_auth_impl): Remove
special root priveleges.
* schroot/sbuild-session.c (sbuild_session_require_auth): Remove
special root priveleges.
2005-08-21 Roger Leigh <rleigh@debian.org>
* schroot/Makefile.am: Added new source files.
* schroot/schroot.c (main): Add support for SbuildAuthConv
timeouts.
* schroot/schroot.h: Added new headers.
* schroot/sbuild-marshallers.list: Added new marshaller
BOOLEAN:UINT,BOXED.
* configure.ac: Remove check for libpam_misc. Bump version to
0.1.5
* schroot/sbuild-auth.c: Add support for the conv member as a
GObject property:
(sbuild_auth_get_conv): New function.
(sbuild_auth_set_conv): New function.
(sbuild_auth_conv): New function; glue to interface PAM to
SbuildAuthConv.
(sbuild_auth_start): Create a custom pam_conv which uses
sbuild_auth_conv to hook back into SbuildAuthConv from PAM.
* schroot/sbuild-auth.h: Add conv member to _SbuildAuthConv and
sbuild_auth_get_conv and sbuild_auth_set_conv getters and setters,
used to get and set the SbuildAuthConv interface used.
* schroot/sbuild-auth-conv-tty.[ch]: New files, adding the
SbuildAuthConvTty implementation of SbuildAuthConv.
* schroot/sbuild-auth-conv.[ch]: New files, adding the
SbuildAuthConv GInterface.
* schroot/sbuild-auth-message.[ch] New files, adding the
SbuildAuthMessagea and SbuildAuthMessageVector structures
(registered as GBoxed types).
2005-07-31 Roger Leigh <rleigh@debian.org>
* Version 0.1.4.
* NEWS: Update for 0.1.4.
* po/en_GB.po: Update translation.
2005-07-31 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.c (sbuild_session_run_child): Alter the
message printed to stderr or logged with syslog, depending on
whether the environment is being preserved (no login shell) or not
(login shell).
2005-07-31 Roger Leigh <rleigh@debian.org>
* schroot/schroot.c (main): Set the service name to "schroot".
* schroot/sbuild-session.c (sbuild_session_new): Set the
SbuildAuth "service" construction property.
* schroot/sbuild-auth.h (struct _SbuildAuth): Add service member.
* schroot/sbuild-auth.c: Don't hardcode the PAM service name:
(sbuild_auth_get_service): New function.
(sbuild_auth_set_service): New function.
(sbuild_auth_start): Use the service member when initialising PAM.
2005-07-31 Roger Leigh <rleigh@debian.org>
* schroot/schroot.1.in: Include priority in the examples.
* schroot/schroot.conf.5.in: Document new priority option and
include it in the examples.
* schroot/sbuild-chroot.h (struct _SbuildChroot): Add priority
member.
* schroot/sbuild-chroot.c
(sbuild_chroot_get_priority): New function
(sbuild_chroot_set_priority): New function
(sbuild_chroot_new_from_keyfile): Parse priority
2005-07-31 Roger Leigh <rleigh@debian.org>
* schroot/schroot.c (parse_options): Fix typo in documentation.
* schroot/sbuild-session.c (sbuild_session_require_auth): Simplify
by removing all redundant checks.
2005-07-17 Roger Leigh <rleigh@debian.org>
* debian/control (Build-Depends): Add gettext.
* Bump version numbers to 0.1.4.
2005-07-17 Roger Leigh <rleigh@debian.org>
* Version 0.1.3.
* NEWS: Update for 0.1.3.
2005-07-17 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-auth.c (sbuild_auth_setupenv): Add USER and
LOGNAME to the list of environment variables to set if not
preserving the old environment.
2005-07-17 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-auth.c
(sbuild_auth_get_home): Add home directory property and get
function for the session user.
(sbuild_auth_setupenv): Add HOME to the list of environment
variables to set if not preserving the old environment.
2005-07-16 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.c
(sbuild_session_run_chroot): Split into two separate functions,
sbuild_session_run_child() and sbuild_session_wait_for_child().
(sbuild_session_wait_for_child): Notify the "child-status"
property on change.
2005-07-11 Roger Leigh <rleigh@debian.org>
* TODO: Update.
* Update gtk-doc documentation.
2005-07-10 Roger Leigh <rleigh@debian.org>
* schroot/schroot.c (main): Abort earlier if no chroots are
defined in schroot.conf.
2005-07-09 Roger Leigh <rleigh@debian.org>
* schroot/schroot.c (parse_options): Move the option entries[]
array into the function as a static const variable. Make sure the
array is terminated by a null option entry, to prevent a segfault
when parsing the options.
2005-07-08 Roger Leigh <rleigh@debian.org>
* TODO: Update.
* schroot/schroot.c (main): Use new SBUILD_AUTH casts and methods,
to replace the corresponding SBUILD_SESSION types and methods.
* SbuildSession derives from SbuildAuth.
- The duplicated functionality has been removed from
SbuildSession.
- SbuildSession overrides the SbuildAuth virtual functions
require_auth and session_run.
2005-07-08 Roger Leigh <rleigh@debian.org>
* schroot/schroot.h: Add sbuild-auth.[ch].
* schroot/sbuild-marshallers.list: Add new marshaller
(sbuild_cclosure_marshal_BOOLEAN__BOXED).
* Split SbuildSession PAM functionality into a separate SbuildAuth
class, from which SbuildSession is derived. SbuildAuth handles
authentication and authorisation using PAM, with hooks for
customising its behaviour.
2005-07-07 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-session.h, schroot/sbuild-config.h: Make error
quark functions publicly visible.
2005-07-07 Roger Leigh <rleigh@debian.org>
* schroot/schroot.c
(entries): Make entries const, to fix compiliation with gcc-4.0.
(parse_options): Check for parse errors, and exit on error.
2005-07-07 Roger Leigh <rleigh@debian.org>
* schroot/sbuild-error.c, schroot/sbuild-error.h: Wrap GError as a
GType (SBUILD_TYPE_ERROR and SBUILD_TYPE_ERROR_POINTER) for use
with signals (GError * may be used as an "out" argument).
2005-07-05 Roger Leigh <rleigh@debian.org>
* po/.cvsignore: Ignore generated files.
2005-07-04 Roger Leigh <rleigh@debian.org>
* doc/schroot/schroot-docs.sgml: Include marshallers section.
* doc/schroot/schroot-sections.txt: Add marshallers section.
* schroot/schroot.h: New header. This includes all other headers,
and is used by glib-mkenums.
* schroot/sbuild-marshallers.list: New file. Generate a
marshaller returning an enum and taking no arguments
(sbuild_cclosure_marshal_ENUM__VOID).
* schroot/Makefile.am: Generate GObject closure marshallers and
GType typebuiltins. Distribute the generated code.
2005-07-03 Roger Leigh <rleigh@debian.org>
* configure.ac, NEWS, debian/changelog: Increase version number to
0.1.3.
2005-07-02 Roger Leigh <rleigh@debian.org>
* Version 0.1.2.
* schroot/sbuild-session.c
(sbuild_session_pam_setupenv): If no environment was specified,
create an initial environment containing PATH and TERM.
(sbuild_session_run_chroot): Search PATH for the specified
command, in case the user didn't use an absolute path.
* schroot/schroot.1.in: Add additional usage examples.
2005-07-02 Roger Leigh <rleigh@debian.org>
* README: Remove usage examples.
* schroot/schroot.conf.5.in: Don't indent example.
* schroot/schroot.1.in: Add usage examples.
2005-07-02 Roger Leigh <rleigh@debian.org>
* Updated README (translation and usage examples).
* po/en_GB.po: Add British English translation.
* po/en.po: Remove.
2005-06-25 Roger Leigh <rleigh@debian.org>
* debian/control (Standards-Version): Upgrade to Standards-Version
3.6.2.
2005-06-25 Roger Leigh <rleigh@debian.org>
* configure.ac, NEWS, debian/changelog: Increase version number to
0.1.2.
2005-06-25 Roger Leigh <rleigh@debian.org>
* Remove UCS characters from string literals. For the time being,
gettext will have to handle this.
* Update .cvsignore files.
* TODO: Remove gettext item.
* po/en.po: Add an English translation, to make use of UTF-8
characters.
* schroot/Makefile.am, schroot/*.c: Mark up strings for
translation with gettext, and add gettext and locale
initialisation code to main().
* Add po/POTFILES.in with all C source files included.
* Add additional options to po/Makevars, to make xgettext read
the source as UTF-8.
* bootstrap, configure.ac, Makefile.am: add GNU gettext support.
2005-06-21 Roger Leigh <rleigh@debian.org>
* Version 0.1.1.
* schroot/sbuild-config.c (sbuild_config_validate_chroots):
use g_return_val_if_fail, not g_return_if_fail.
* configure.ac: Remove the automake "tar-pax" option, because the
Debian build infrastructure can't cope with it yet.
2005-06-21 Roger Leigh <rleigh@debian.org>
* Change all GPL boilerplate to use the new FSF postal address.
2005-06-21 Roger Leigh <rleigh@debian.org>
* debian/copyright:
- Update the postal address of the FSF.
- Refer to /usr/share/common-licenses/GPL.
- Add new download location.
* Makefile.am: Remove CVS directories from the generated tarball.
* schroot/schroot.conf.5.in: Correct .TH section from 1 to 5.
* Remove debian/conffiles, which is not required by debhelper.
* debian/control: Add buildd-tools developers to
Uploaders, and remove unused ${misc:Depends}.
* debian/changelog: Update.
2005-06-21 Roger Leigh <rleigh@debian.org>
* Add .cvsignore files to replace lost .arch-inventory files.
2005-06-21 Roger Leigh <rleigh@debian.org>
* Add ChangeLog to CVS
* No longer generate ChangeLog with "tla changelog". It must now
be edited manually.
2005-06-20 23:06:04 GMT Roger Leigh <rleigh@debian.org> patch-1
Summary:
Add strict pointer checks and bump version
Revision:
schroot--mainline--0.1.1--patch-1
- Add strict pointer checks to all function arguments and before
dereferencing object members.
- Increase version number to 0.1.1.
modified files:
NEWS configure.ac debian/changelog schroot/sbuild-chroot.c
schroot/sbuild-config.c schroot/sbuild-session.c
schroot/schroot.c
2005-06-20 15:45:19 GMT Roger Leigh <rleigh@debian.org> base-0
Summary:
tag of rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--version-0
Revision:
schroot--mainline--0.1.1--base-0
(automatically generated log message)
new patches:
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--base-0
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--patch-1
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--patch-2
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--patch-3
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--patch-4
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--patch-5
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--patch-6
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--patch-7
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--patch-8
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--patch-9
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--patch-10
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--patch-11
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--patch-12
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--patch-13
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--patch-14
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--patch-15
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--patch-16
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--patch-17
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--patch-18
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--patch-19
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--patch-20
rleigh@debian.org--2005-debian/schroot--mainline--0.1.0--version-0
2005-06-19 17:00:46 GMT Roger Leigh <rleigh@debian.org> version-0
Summary:
0.1.0 released.
Revision:
schroot--mainline--0.1.0--version-0
- Preparation for 0.1.0.
modified files:
AUTHORS NEWS debian/changelog
2005-06-19 16:29:07 GMT Roger Leigh <rleigh@debian.org> patch-20
Summary:
Update configuration file
Revision:
schroot--mainline--0.1.0--patch-20
- Comment out all entries in the sample configuration file, so that
the installation is secure from the start.
- Add comments to the top of the configuration file.
modified files:
schroot/schroot.conf
2005-06-19 15:55:26 GMT Roger Leigh <rleigh@debian.org> patch-19
Summary:
Add initial Debian packaging
Revision:
schroot--mainline--0.1.0--patch-19
- Add debian directory and initial files.
- Makefile.am: add debian to SUBDIRS.
new files:
debian/.arch-ids/=id debian/.arch-ids/README.Debian.id
debian/.arch-ids/changelog.id debian/.arch-ids/compat.id
debian/.arch-ids/conffiles.id debian/.arch-ids/control.id
debian/.arch-ids/copyright.id debian/.arch-ids/docs.id
debian/.arch-ids/rules.id debian/README.Debian
debian/changelog debian/compat debian/conffiles debian/control
debian/copyright debian/docs debian/rules
modified files:
Makefile.am
new directories:
debian debian/.arch-ids
2005-06-19 14:06:22 GMT Roger Leigh <rleigh@debian.org> patch-18
Summary:
Run a real login shell
Revision:
schroot--mainline--0.1.0--patch-18
- SbuildSession: If no environment has been set, and no command has been
specified, run a real login shell by prefixing - to argv[0].
modified files:
schroot/sbuild-session.c
2005-06-19 13:23:46 GMT Roger Leigh <rleigh@debian.org> patch-17
Summary:
Implement --quiet option
Revision:
schroot--mainline--0.1.0--patch-17
- SbuildSession
+ Add "quiet" property, and get_quiet and set_quiet methods.
+ Only print fatal error messages if quiet is true.
- schroot.c: If --quiet is used, set the session quiet status.
modified files:
TODO doc/schroot/schroot-sections.txt
doc/schroot/tmpl/sbuild-session.sgml schroot/sbuild-session.c
schroot/sbuild-session.h schroot/schroot.c
2005-06-19 13:01:06 GMT Roger Leigh <rleigh@debian.org> patch-16
Summary:
Add --enable-debug configure option
Revision:
schroot--mainline--0.1.0--patch-16
- Add --enable-debug configure option
- All source files include <config.h> to detect if debugging is
enabled.
- schroot.c: If debugging is enabled, install a null log handler
for g_debug messages.
- SbuildSession: add a missing "gid" property.
- Add the initial project requirements file.
new files:
doc/.arch-ids/REQUIREMENTS.id doc/REQUIREMENTS
modified files:
configure.ac doc/schroot/tmpl/sbuild-session.sgml
schroot/sbuild-chroot.c schroot/sbuild-config.c
schroot/sbuild-session.c schroot/schroot.c
2005-06-19 11:32:37 GMT Roger Leigh <rleigh@debian.org> patch-15
Summary:
Enable preservation of user environment
Revision:
schroot--mainline--0.1.0--patch-15
- SbuildSession:
+ Add public get_environment and set_environment methods, and
an environment data member and property.
+ Add private pam_setupenv method to copy environment into PAM.
+ sbuild_session_run: After authentication has succeeded, call
pam_setupenv.
+ schroot.c:
Call sbuild_session_set_environment if required.
modified files:
TODO doc/schroot/schroot-sections.txt
doc/schroot/tmpl/sbuild-session.sgml schroot/sbuild-session.c
schroot/sbuild-session.h schroot/schroot.1.in
schroot/schroot.c
2005-06-19 10:47:54 GMT Roger Leigh <rleigh@debian.org> patch-14
Summary:
Return child exit status
Revision:
schroot--mainline--0.1.0--patch-14
- Propagate child exit status bacl to caller.
- Update TODO.
modified files:
TODO doc/schroot/tmpl/sbuild-session.sgml
schroot/sbuild-session.c schroot/sbuild-session.h
schroot/schroot.c
2005-06-19 10:27:37 GMT Roger Leigh <rleigh@debian.org> patch-13
Summary:
Document internal API
Revision:
schroot--mainline--0.1.0--patch-13
- Document internals (private functions).
- Update TODO.
modified files:
TODO schroot/sbuild-chroot.c schroot/sbuild-config.c
schroot/sbuild-session.c schroot/schroot.c
2005-06-18 23:37:36 GMT Roger Leigh <rleigh@debian.org> patch-12
Summary:
Update TODO
Revision:
schroot--mainline--0.1.0--patch-12
- Remove gtk-doc item.
modified files:
TODO
2005-06-18 23:36:40 GMT Roger Leigh <rleigh@debian.org> patch-11
Summary:
Fix const correctness
Revision:
schroot--mainline--0.1.0--patch-11
- schroot.c:
+ Cast const GList * to GList * to work around const-correctness
bugs in GLib.
+ All options are non-const.
modified files:
schroot/schroot.c
2005-06-18 23:32:14 GMT Roger Leigh <rleigh@debian.org> patch-10
Summary:
Document all user-visible symbols.
Revision:
schroot--mainline--0.1.0--patch-10
- Document all user-visible symbols with gtk-doc.
modified files:
doc/schroot/tmpl/sbuild-chroot.sgml
doc/schroot/tmpl/sbuild-config.sgml
doc/schroot/tmpl/sbuild-session.sgml schroot/sbuild-chroot.c
schroot/sbuild-config.c schroot/sbuild-session.c
2005-06-18 21:45:22 GMT Roger Leigh <rleigh@debian.org> patch-9
Summary:
Add gtk-doc framework
Revision:
schroot--mainline--0.1.0--patch-9
- Added gtk-doc API reference to doc/schroot.
- Updated README.
- Updated TODO.
new files:
doc/.arch-ids/=id doc/.arch-ids/Makefile.am.id doc/Makefile.am
doc/schroot/.arch-ids/.arch-inventory.id
doc/schroot/.arch-ids/=id doc/schroot/.arch-ids/Makefile.am.id
doc/schroot/.arch-ids/schroot-docs.sgml.id
doc/schroot/.arch-ids/schroot-overrides.txt.id
doc/schroot/.arch-ids/schroot-sections.txt.id
doc/schroot/.arch-ids/schroot.types.id
doc/schroot/.arch-inventory doc/schroot/Makefile.am
doc/schroot/schroot-docs.sgml
doc/schroot/schroot-overrides.txt
doc/schroot/schroot-sections.txt doc/schroot/schroot.types
doc/schroot/tmpl/.arch-ids/=id
doc/schroot/tmpl/.arch-ids/sbuild-chroot.sgml.id
doc/schroot/tmpl/.arch-ids/sbuild-config.sgml.id
doc/schroot/tmpl/.arch-ids/sbuild-session.sgml.id
doc/schroot/tmpl/.arch-ids/schroot-unused.sgml.id
doc/schroot/tmpl/sbuild-chroot.sgml
doc/schroot/tmpl/sbuild-config.sgml
doc/schroot/tmpl/sbuild-session.sgml
doc/schroot/tmpl/schroot-unused.sgml
modified files:
Makefile.am README TODO configure.ac schroot/.arch-inventory
schroot/Makefile.am schroot/sbuild-session.c
schroot/sbuild-session.h
new directories:
doc doc/.arch-ids doc/schroot doc/schroot/.arch-ids
doc/schroot/tmpl doc/schroot/tmpl/.arch-ids
2005-06-18 21:08:53 GMT Roger Leigh <rleigh@debian.org> patch-8
Summary:
Improve syslog support
Revision:
schroot--mainline--0.1.0--patch-8
- schroot.c:
+ Use LOG_NDELAY with openlog(), otherwise messages in child processes
are not correctly logged.
- SbuildSession:
+ Log command or shell being run.
+ Log authentication or permissions failures.
+ Call pam_open_session correctly.
modified files:
schroot/sbuild-session.c schroot/schroot.c
2005-06-18 19:47:27 GMT Roger Leigh <rleigh@debian.org> patch-7
Summary:
Add session properties and PAM debugging statements
Revision:
schroot--mainline--0.1.0--patch-7
- SbuildSession
+ Add read-only properties for uid, gid, shell, ruid and ruser.
+ Add PAM debugging statements to track PAM failure paths.
- Updated TODO.
modified files:
TODO schroot/sbuild-session.c
2005-06-18 19:13:21 GMT Roger Leigh <rleigh@debian.org> patch-6
Summary:
Tighten up root access
Revision:
schroot--mainline--0.1.0--patch-6
- sbuild_session_require_auth(): Check that the user is in both
groups and root_groups for all chroots before granting access.
modified files:
schroot/sbuild-session.c
2005-06-18 12:30:50 GMT Roger Leigh <rleigh@debian.org> patch-5
Summary:
Add manual pages and TODO
Revision:
schroot--mainline--0.1.0--patch-5
- Add sbuild.1.in and sbuild.conf.5.in manual pages.
- Add TODO
- Fix typo in sbuild-session.c.
new files:
.arch-ids/TODO.id TODO schroot/.arch-ids/schroot.1.in.id
schroot/.arch-ids/schroot.conf.5.in.id schroot/schroot.1.in
schroot/schroot.conf.5.in
modified files:
configure.ac schroot/Makefile.am schroot/sbuild-session.c
2005-06-18 12:20:34 GMT Roger Leigh <rleigh@debian.org> patch-4
Summary:
Improve session error handling and authorisation
Revision:
schroot--mainline--0.1.0--patch-4
- SbuildSession:
+ Use GError checks with nested conditionals so that we can shut down
the PAM library in the correct order on failure. The first failure
only is reported in the case of multiple errors being propagated.
+ The root user is always granted unconditional access
+ If the host and chroot user are the same, authentication is not
required.
+ If the user is not in groups, they do not get any access, even
with a password. root access still needs tighter checking.
modified files:
schroot/sbuild-session.c
2005-06-18 10:37:12 GMT Roger Leigh <rleigh@debian.org> patch-3
Summary:
Split PAM calls into separate functions
Revision:
schroot--mainline--0.1.0--patch-3
- SbuildSession:
+ Each PAM call (or related set of calls) is a separate function
(sbuild_session_pam_*).
+ PAM errors are propagated back to the caller using GError.
+ sbuild_session_run prototype changed to propagate any PAM or
session errors to the caller.
- SbuildConfig:
+ sbuild.conf does not require root group ownership, to allow
more flexible administration.
- schroot.c: Use GError to detect any session errors.
modified files:
schroot/sbuild-config.c schroot/sbuild-session.c
schroot/sbuild-session.h schroot/schroot.c
2005-06-17 22:00:59 GMT Roger Leigh <rleigh@debian.org> patch-2
Summary:
Add PAM configuration file
Revision:
schroot--mainline--0.1.0--patch-2
- Add schroot/pam/schroot containing a PAM configuration file to
install in /etc/pam.d/schroot.
new files:
schroot/pam/.arch-ids/=id schroot/pam/.arch-ids/Makefile.am.id
schroot/pam/.arch-ids/schroot.id schroot/pam/Makefile.am
schroot/pam/schroot
modified files:
configure.ac schroot/Makefile.am
new directories:
schroot/pam schroot/pam/.arch-ids
2005-06-17 20:52:04 GMT Roger Leigh <rleigh@debian.org> patch-1
Summary:
Add autotools framework
Revision:
schroot--mainline--0.1.0--patch-1
- Add support for autoconf, automake and libtool.
- Add support for gtk-doc.
- Install schroot setuid root.
- Add --version option and embed version number in the output.
- Add AUTHORS and NEWS files.
- Generate ChangeLog with tla.
new files:
.arch-ids/AUTHORS.id .arch-ids/Makefile.am.id
.arch-ids/NEWS.id .arch-ids/bootstrap.id
.arch-ids/configure.ac.id AUTHORS Makefile.am NEWS bootstrap
configure.ac schroot/.arch-ids/Makefile.am.id
schroot/Makefile.am
modified files:
schroot/schroot.c
2005-06-17 17:51:17 GMT Roger Leigh <rleigh@debian.org> base-0
Summary:
Initial import
Revision:
schroot--mainline--0.1.0--base-0
Initial import into GNU Arch.
new files:
COPYING README schroot/sbuild-chroot.c schroot/sbuild-chroot.h
schroot/sbuild-config.c schroot/sbuild-config.h
schroot/sbuild-session.c schroot/sbuild-session.h
schroot/schroot.c schroot/schroot.conf
|