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
|
/*
* Main.vala
*
* Copyright 2016 Tony George <teejeetech@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*
*
*/
using GLib;
using Gtk;
using Gee;
using Json;
using TeeJee.Logging;
using TeeJee.FileSystem;
using TeeJee.JsonHelper;
using TeeJee.ProcessHelper;
using TeeJee.GtkHelper;
using TeeJee.System;
using TeeJee.Misc;
public class Main : GLib.Object{
public string app_path = "";
public string share_folder = "";
public string rsnapshot_conf_path = "";
public string app_conf_path = "";
public bool first_run = false;
public string backup_uuid = "";
public string backup_parent_uuid = "";
public bool btrfs_mode = true;
public bool stop_cron_emails = true;
public Gee.ArrayList<Device> partitions;
public Gee.ArrayList<string> exclude_list_user;
public Gee.ArrayList<string> exclude_list_default;
public Gee.ArrayList<string> exclude_list_default_extra;
public Gee.ArrayList<string> exclude_list_home;
public Gee.ArrayList<string> exclude_list_restore;
public Gee.ArrayList<AppExcludeEntry> exclude_list_apps;
public Gee.ArrayList<MountEntry> mount_list;
public Gee.ArrayList<string> exclude_app_names;
public SnapshotRepo repo;
//temp
//private Gee.ArrayList<Device> grub_device_list;
public Device sys_root;
public Device sys_boot;
public Device sys_efi;
public Device sys_home;
public Gee.HashMap<string, Subvolume> sys_subvolumes;
public string mount_point_restore = "";
public string mount_point_app = "/mnt/timeshift";
public LinuxDistro current_distro;
public bool mirror_system = false;
public bool schedule_monthly = false;
public bool schedule_weekly = false;
public bool schedule_daily = true;
public bool schedule_hourly = false;
public bool schedule_boot = true;
public int count_monthly = 2;
public int count_weekly = 3;
public int count_daily = 5;
public int count_hourly = 6;
public int count_boot = 5;
public string app_mode = "";
//global vars for controlling threads
public bool thr_success = false;
public bool thread_estimate_running = false;
public bool thread_estimate_success = false;
public bool thread_restore_running = false;
public bool thread_restore_success = false;
public bool thread_delete_running = false;
public bool thread_delete_success = false;
public int thr_retval = -1;
public string thr_arg1 = "";
public bool thr_timeout_active = false;
public string thr_timeout_cmd = "";
public int startup_delay_interval_mins = 10;
public int retain_snapshots_max_days = 200;
public int64 snapshot_location_free_space = 0;
public const int SHIELD_ICON_SIZE = 64;
public const int64 MIN_FREE_SPACE = 1 * GB;
public static int64 first_snapshot_size = 0;
public static int64 first_snapshot_count = 0;
public string log_dir = "";
public string log_file = "";
public AppLock app_lock;
public Gee.ArrayList<Snapshot> delete_list;
public Snapshot snapshot_to_delete;
public Snapshot snapshot_to_restore;
//public Device restore_target;
public bool reinstall_grub2 = true;
public bool update_initramfs = false;
public bool update_grub = true;
public string grub_device = "";
public bool cmd_skip_grub = false;
public string cmd_grub_device = "";
public string cmd_target_device = "";
public string cmd_backup_device = "";
public string cmd_snapshot = "";
public bool cmd_confirm = false;
public bool cmd_verbose = true;
public string cmd_comments = "";
public string cmd_tags = "";
public bool? cmd_btrfs_mode = null;
public string progress_text = "";
public Gtk.Window? parent_window = null;
public RsyncTask task;
public DeleteFileTask delete_file_task;
public Main(string[] args, bool gui_mode){
parse_some_arguments(args);
if (gui_mode){
app_mode = "";
parent_window = new Gtk.Window(); // dummy
}
log_debug("Main()");
if (LOG_DEBUG || gui_mode){
log_debug("");
log_debug(_("Running") + " %s v%s".printf(AppName, AppVersion));
log_debug("");
}
check_and_remove_timeshift_btrfs();
// init log ------------------
try {
string suffix = gui_mode ? "gui" : app_mode;
DateTime now = new DateTime.now_local();
log_dir = "/var/log/timeshift";
log_file = path_combine(log_dir,
"%s_%s.log".printf(now.format("%Y-%m-%d_%H-%M-%S"), suffix));
var file = File.new_for_path (log_dir);
if (!file.query_exists ()) {
file.make_directory_with_parents();
}
file = File.new_for_path (log_file);
if (file.query_exists ()) {
file.delete ();
}
dos_log = new DataOutputStream (file.create(FileCreateFlags.REPLACE_DESTINATION));
if (LOG_DEBUG || gui_mode){
log_debug(_("Session log file") + ": %s".printf(log_file));
}
}
catch (Error e) {
log_error (e.message);
}
// get Linux distribution info -----------------------
this.current_distro = LinuxDistro.get_dist_info("/");
if (LOG_DEBUG || gui_mode){
log_debug(_("Distribution") + ": " + current_distro.full_name());
log_debug("DIST_ID" + ": " + current_distro.dist_id);
}
// check dependencies ---------------------
string message;
if (!check_dependencies(out message)){
if (gui_mode){
string title = _("Missing Dependencies");
gtk_messagebox(title, message, null, true);
}
exit_app(1);
}
// check and create lock ----------------------------
app_lock = new AppLock();
if (!app_lock.create("timeshift", app_mode)){
if (gui_mode){
string msg = "";
if (app_lock.lock_message == "backup"){
msg = _("Another instance of Timeshift is creating a snapshot.") + "\n";
msg += _("Please wait a few minutes and try again.");
}
else{
msg = _("Another instance of timeshift is currently running!") + "\n";
msg += _("Please check if you have multiple windows open.") + "\n";
}
string title = _("Scheduled snapshot in progress...");
gtk_messagebox(title, msg, null, true);
}
else{
//already logged - do nothing
}
exit(1);
}
// initialize variables -------------------------------
this.app_path = (File.new_for_path (args[0])).get_parent().get_path ();
this.share_folder = "/usr/share";
this.app_conf_path = "/etc/timeshift.json";
//sys_root and sys_home will be initalized by update_partition_list()
// check if running locally ------------------------
string local_exec = args[0];
string local_conf = app_path + "/timeshift.json";
string local_share = app_path + "/share";
var f_local_exec = File.new_for_path(local_exec);
if (f_local_exec.query_exists()){
var f_local_conf = File.new_for_path(local_conf);
if (f_local_conf.query_exists()){
this.app_conf_path = local_conf;
}
var f_local_share = File.new_for_path(local_share);
if (f_local_share.query_exists()){
this.share_folder = local_share;
}
}
else{
//timeshift is running from system directory - update app_path
this.app_path = get_cmd_path("timeshift");
}
// initialize lists -----------------
repo = new SnapshotRepo();
mount_list = new Gee.ArrayList<MountEntry>();
delete_list = new Gee.ArrayList<Snapshot>();
sys_subvolumes = new Gee.HashMap<string, Subvolume>();
exclude_app_names = new Gee.ArrayList<string>();
add_default_exclude_entries();
//add_app_exclude_entries();
task = new RsyncTask();
delete_file_task = new DeleteFileTask();
update_partitions();
detect_system_devices();
// set settings from config file ---------------------
load_app_config();
log_debug("Main(): ok");
}
public void initialize(){
initialize_repo();
}
public bool check_dependencies(out string msg){
msg = "";
log_debug("Main: check_dependencies()");
string[] dependencies = { "rsync","/sbin/blkid","df","mount","umount","fuser","crontab","cp","rm","touch","ln","sync"}; //"shutdown","chroot",
string path;
foreach(string cmd_tool in dependencies){
path = get_cmd_path (cmd_tool);
if ((path == null) || (path.length == 0)){
msg += " * " + cmd_tool + "\n";
}
}
if (msg.length > 0){
msg = _("Commands listed below are not available on this system") + ":\n\n" + msg + "\n";
msg += _("Please install required packages and try running TimeShift again");
log_error(msg);
return false;
}
else{
return true;
}
}
public void check_and_remove_timeshift_btrfs(){
if (cmd_exists("timeshift-btrfs")){
string std_out, std_err;
exec_sync("timeshift-btrfs-uninstall", out std_out, out std_err);
log_msg(_("** Uninstalled Timeshift BTRFS **"));
}
}
public bool check_btrfs_layout_system(Gtk.Window? win = null){
log_debug("check_btrfs_layout_system()");
bool supported = sys_subvolumes.has_key("@") && sys_subvolumes.has_key("@home");
if (!supported){
string msg = _("The system partition has an unsupported subvolume layout.") + " ";
msg += _("Only ubuntu-type layouts with @ and @home subvolumes are currently supported.") + "\n\n";
msg += _("Application will exit.") + "\n\n";
string title = _("Not Supported");
if (app_mode == ""){
gtk_set_busy(false, win);
gtk_messagebox(title, msg, win, true);
}
else{
log_error(msg);
}
}
return supported;
}
public bool check_btrfs_layout(Device? dev_root, Device? dev_home){
bool supported = true; // keep true for non-btrfs systems
if ((dev_root != null) && (dev_root.fstype == "btrfs")){
if ((dev_home != null) && (dev_home.fstype == "btrfs")){
if (dev_home != dev_root){
supported = supported && check_btrfs_volume(dev_root, "@");
supported = supported && check_btrfs_volume(dev_home, "@home");
}
else{
supported = supported && check_btrfs_volume(dev_root, "@,@home");
}
}
}
return supported;
}
private void parse_some_arguments(string[] args){
for (int k = 1; k < args.length; k++) // Oth arg is app path
{
switch (args[k].down()){
case "--debug":
LOG_COMMANDS = true;
LOG_DEBUG = true;
break;
case "--btrfs":
btrfs_mode = true;
cmd_btrfs_mode = btrfs_mode;
break;
case "--rsync":
btrfs_mode = false;
cmd_btrfs_mode = btrfs_mode;
break;
case "--check":
app_mode = "backup";
break;
case "--delete":
app_mode = "delete";
break;
case "--delete-all":
app_mode = "delete-all";
break;
case "--restore":
app_mode = "restore";
break;
case "--clone":
app_mode = "restore";
break;
case "--create":
app_mode = "ondemand";
break;
case "--list":
case "--list-snapshots":
app_mode = "list-snapshots";
break;
case "--list-devices":
app_mode = "list-devices";
break;
}
}
}
// exclude lists
public void add_default_exclude_entries(){
log_debug("Main: add_default_exclude_entries()");
exclude_list_user = new Gee.ArrayList<string>();
exclude_list_default = new Gee.ArrayList<string>();
exclude_list_default_extra = new Gee.ArrayList<string>();
exclude_list_home = new Gee.ArrayList<string>();
exclude_list_restore = new Gee.ArrayList<string>();
exclude_list_apps = new Gee.ArrayList<AppExcludeEntry>();
partitions = new Gee.ArrayList<Device>();
//default exclude entries -------------------
exclude_list_default.add("/dev/*");
exclude_list_default.add("/proc/*");
exclude_list_default.add("/sys/*");
exclude_list_default.add("/media/*");
exclude_list_default.add("/mnt/*");
exclude_list_default.add("/tmp/*");
exclude_list_default.add("/run/*");
exclude_list_default.add("/var/run/*");
exclude_list_default.add("/var/lock/*");
exclude_list_default.add("/var/spool/*");
exclude_list_default.add("/var/lib/docker/*");
exclude_list_default.add("/lost+found");
exclude_list_default.add("/timeshift/*");
exclude_list_default.add("/timeshift-btrfs/*");
exclude_list_default.add("/data/*");
exclude_list_default.add("/cdrom/*");
exclude_list_default.add("/etc/timeshift.json");
exclude_list_default.add("/var/log/timeshift/*");
exclude_list_default.add("/var/log/timeshift-btrfs/*");
exclude_list_default.add("/root/.thumbnails");
exclude_list_default.add("/root/.cache");
exclude_list_default.add("/root/.dbus");
exclude_list_default.add("/root/.gvfs");
exclude_list_default.add("/root/.local/share/[Tt]rash");
exclude_list_default.add("/home/*/.thumbnails");
exclude_list_default.add("/home/*/.cache");
exclude_list_default.add("/home/*/.dbus");
exclude_list_default.add("/home/*/.gvfs");
exclude_list_default.add("/home/*/.local/share/[Tt]rash");
//default extra ------------------
exclude_list_default_extra.add("/root/.mozilla/firefox/*.default/Cache");
exclude_list_default_extra.add("/root/.mozilla/firefox/*.default/OfflineCache");
exclude_list_default_extra.add("/root/.opera/cache");
exclude_list_default_extra.add("/root/.kde/share/apps/kio_http/cache");
exclude_list_default_extra.add("/root/.kde/share/cache/http");
exclude_list_default_extra.add("/home/*/.mozilla/firefox/*.default/Cache");
exclude_list_default_extra.add("/home/*/.mozilla/firefox/*.default/OfflineCache");
exclude_list_default_extra.add("/home/*/.opera/cache");
exclude_list_default_extra.add("/home/*/.kde/share/apps/kio_http/cache");
exclude_list_default_extra.add("/home/*/.kde/share/cache/http");
//default home ----------------
exclude_list_home.add("+ /root/.**");
exclude_list_home.add("/root/**");
exclude_list_home.add("+ /home/*/.**");
exclude_list_home.add("/home/*/**");
/*
Most web browsers store their cache under ~/.cache and /tmp
These files will be excluded by the entries for ~/.cache and /tmp
There is no need to add special entries.
~/.cache/google-chrome -- Google Chrome
~/.cache/chromium -- Chromium
~/.cache/epiphany-browser -- Epiphany
~/.cache/midori/web -- Midori
/var/tmp/kdecache-$USER/http -- Rekonq
*/
log_debug("Main: add_default_exclude_entries(): exit");
}
public void add_app_exclude_entries(){
log_debug("Main: add_app_exclude_entries()");
AppExcludeEntry.clear();
if (snapshot_to_restore != null){
add_app_exclude_entries_for_prefix(path_combine(snapshot_to_restore.path, "localhost"));
}
if (!restore_current_system){
add_app_exclude_entries_for_prefix(mount_point_restore);
}
exclude_list_apps = AppExcludeEntry.get_apps_list(exclude_app_names);
log_debug("Main: add_app_exclude_entries(): exit");
}
private void add_app_exclude_entries_for_prefix(string path_prefix){
string path = "";
path = path_combine(path_prefix, "root");
AppExcludeEntry.add_app_exclude_entries_from_path(path);
path = path_combine(path_prefix, "home");
AppExcludeEntry.add_app_exclude_entries_from_home(path);
}
public Gee.ArrayList<string> create_exclude_list_for_backup(){
log_debug("Main: create_exclude_list_for_backup()");
var list = new Gee.ArrayList<string>();
//add default entries
foreach(string path in exclude_list_default){
if (!list.contains(path)){
list.add(path);
}
}
//add default extra entries
foreach(string path in exclude_list_default_extra){
if (!list.contains(path)){
list.add(path);
}
}
//add user entries from current settings
foreach(string path in exclude_list_user){
if (!list.contains(path)){
list.add(path);
}
}
//add home entries
foreach(string path in exclude_list_home){
if (!list.contains(path)){
list.add(path);
}
}
string timeshift_path = "/timeshift/*";
if (!list.contains(timeshift_path)){
list.add(timeshift_path);
}
log_debug("Main: create_exclude_list_for_backup(): exit");
return list;
}
public Gee.ArrayList<string> create_exclude_list_for_restore(){
log_debug("Main: create_exclude_list_for_restore()");
exclude_list_restore.clear();
//add default entries
foreach(string path in exclude_list_default){
if (!exclude_list_restore.contains(path)){
exclude_list_restore.add(path);
}
}
if (!mirror_system){
//add default_extra entries
foreach(string path in exclude_list_default_extra){
if (!exclude_list_restore.contains(path)){
exclude_list_restore.add(path);
}
}
}
//add app entries
foreach(var entry in exclude_list_apps){
if (entry.enabled){
foreach(var pattern in entry.patterns){
if (!exclude_list_restore.contains(pattern)){
exclude_list_restore.add(pattern);
}
}
}
}
//add user entries from current settings
foreach(string path in exclude_list_user){
if (!exclude_list_restore.contains(path) && !exclude_list_home.contains(path)){
exclude_list_restore.add(path);
}
}
//add user entries from snapshot exclude list
if (snapshot_to_restore != null){
string list_file = path_combine(snapshot_to_restore.path, "exclude.list");
if (file_exists(list_file)){
foreach(string path in file_read(list_file).split("\n")){
if (!exclude_list_restore.contains(path) && !exclude_list_home.contains(path)){
exclude_list_restore.add(path);
}
}
}
}
//add home entries
foreach(string path in exclude_list_home){
if (!exclude_list_restore.contains(path)){
exclude_list_restore.add(path);
}
}
string timeshift_path = "/timeshift/*";
if (!exclude_list_restore.contains(timeshift_path)){
exclude_list_restore.add(timeshift_path);
}
log_debug("Main: create_exclude_list_for_restore(): exit");
return exclude_list_restore;
}
public bool save_exclude_list_for_backup(string output_path){
log_debug("Main: save_exclude_list_for_backup()");
var list = create_exclude_list_for_backup();
var txt = "";
foreach(var pattern in list){
if (pattern.strip().length > 0){
txt += "%s\n".printf(pattern);
}
}
string list_file = path_combine(output_path, "exclude.list");
return file_write(list_file, txt);
}
public bool save_exclude_list_for_restore(string output_path){
log_debug("Main: save_exclude_list_for_restore()");
var list = create_exclude_list_for_restore();
log_debug("Exclude list -------------");
var txt = "";
foreach(var pattern in list){
if (pattern.strip().length > 0){
txt += "%s\n".printf(pattern);
log_debug(pattern);
}
}
return file_write(restore_exclude_file, txt);
}
public void save_exclude_list_selections(){
log_debug("Main: save_exclude_list_selections()");
// add new selected items
foreach(var entry in exclude_list_apps){
if (entry.enabled && !exclude_app_names.contains(entry.name)){
exclude_app_names.add(entry.name);
log_debug("add app name: %s".printf(entry.name));
}
}
// remove item only if present in current list and un-selected
foreach(var entry in exclude_list_apps){
if (!entry.enabled && exclude_app_names.contains(entry.name)){
exclude_app_names.remove(entry.name);
log_debug("remove app name: %s".printf(entry.name));
}
}
exclude_app_names.sort((a,b) => {
return Posix.strcmp(a,b);
});
}
//properties
public bool scheduled{
get{
return !live_system()
&& (schedule_boot || schedule_hourly || schedule_daily ||
schedule_weekly || schedule_monthly);
}
}
public bool live_system(){
//return true;
return (sys_root == null);
}
// backup
public bool create_snapshot (bool is_ondemand, Gtk.Window? parent_win){
log_debug("Main: create_snapshot()");
bool status = true;
bool update_symlinks = false;
string sys_uuid = (sys_root == null) ? "" : sys_root.uuid;
try
{
if (btrfs_mode && (check_btrfs_layout_system() == false)){
return false;
}
// create a timestamp
DateTime now = new DateTime.now_local();
// check space
if (!repo.has_space()){
log_error(repo.status_message);
log_error(repo.status_details + "\n");
// remove invalid snapshots
if (app_mode.length != 0){
repo.auto_remove();
}
// check again ------------
if (!repo.has_space()){
log_error(repo.status_message);
log_error(repo.status_details + "\n");
return false;
}
}
// create snapshot root if missing
var f = File.new_for_path(repo.snapshots_path);
if (!f.query_exists()){
log_debug("mkdir: %s".printf(repo.snapshots_path));
f.make_directory_with_parents();
}
// ondemand
if (is_ondemand){
bool ok = create_snapshot_for_tag ("ondemand",now);
if(!ok){
return false;
}
else{
update_symlinks = true;
}
}
else if (scheduled){
Snapshot last_snapshot_boot = repo.get_latest_snapshot("boot", sys_uuid);
Snapshot last_snapshot_hourly = repo.get_latest_snapshot("hourly", sys_uuid);
Snapshot last_snapshot_daily = repo.get_latest_snapshot("daily", sys_uuid);
Snapshot last_snapshot_weekly = repo.get_latest_snapshot("weekly", sys_uuid);
Snapshot last_snapshot_monthly = repo.get_latest_snapshot("monthly", sys_uuid);
DateTime dt_sys_boot = now.add_seconds((-1) * get_system_uptime_seconds());
bool take_new = false;
if (schedule_boot){
log_msg(_("Boot snapshots are enabled"));
if (last_snapshot_boot == null){
log_msg(_("Last boot snapshot not found"));
take_new = true;
}
else if (last_snapshot_boot.date.compare(dt_sys_boot) < 0){
log_msg(_("Last boot snapshot is older than system start time"));
take_new = true;
}
else{
int hours = (int) ((float) now.difference(last_snapshot_boot.date) / TimeSpan.HOUR);
log_msg(_("Last boot snapshot is %d hours old").printf(hours));
take_new = false;
}
if (take_new){
status = create_snapshot_for_tag ("boot",now);
if(!status){
log_error(_("Boot snapshot failed!"));
return false;
}
else{
update_symlinks = true;
}
}
}
if (schedule_hourly){
log_msg(_("Hourly snapshots are enabled"));
if (last_snapshot_hourly == null){
log_msg(_("Last hourly snapshot not found"));
take_new = true;
}
else if (last_snapshot_hourly.date.compare(now.add_hours(-1).add_minutes(1)) < 0){
log_msg(_("Last hourly snapshot is more than 1 hour old"));
take_new = true;
}
else{
int mins = (int) ((float) now.difference(last_snapshot_hourly.date) / TimeSpan.MINUTE);
log_msg(_("Last hourly snapshot is %d minutes old").printf(mins));
take_new = false;
}
if (take_new){
status = create_snapshot_for_tag ("hourly",now);
if(!status){
log_error(_("Hourly snapshot failed!"));
return false;
}
else{
update_symlinks = true;
}
}
}
if (schedule_daily){
log_msg(_("Daily snapshots are enabled"));
if (last_snapshot_daily == null){
log_msg(_("Last daily snapshot not found"));
take_new = true;
}
else if (last_snapshot_daily.date.compare(now.add_days(-1).add_minutes(1)) < 0){
log_msg(_("Last daily snapshot is more than 1 day old"));
take_new = true;
}
else{
int hours = (int) ((float) now.difference(last_snapshot_daily.date) / TimeSpan.HOUR);
log_msg(_("Last daily snapshot is %d hours old").printf(hours));
take_new = false;
}
if (take_new){
status = create_snapshot_for_tag ("daily",now);
if(!status){
log_error(_("Daily snapshot failed!"));
return false;
}
else{
update_symlinks = true;
}
}
}
if (schedule_weekly){
log_msg(_("Weekly snapshots are enabled"));
if (last_snapshot_weekly == null){
log_msg(_("Last weekly snapshot not found"));
take_new = true;
}
else if (last_snapshot_weekly.date.compare(now.add_weeks(-1).add_minutes(1)) < 0){
log_msg(_("Last weekly snapshot is more than 1 week old"));
take_new = true;
}
else{
int days = (int) ((float) now.difference(last_snapshot_weekly.date) / TimeSpan.DAY);
log_msg(_("Last weekly snapshot is %d days old").printf(days));
take_new = false;
}
if (take_new){
status = create_snapshot_for_tag ("weekly",now);
if(!status){
log_error(_("Weekly snapshot failed!"));
return false;
}
else{
update_symlinks = true;
}
}
}
if (schedule_monthly){
log_msg(_("Monthly snapshot are enabled"));
if (last_snapshot_monthly == null){
log_msg(_("Last monthly snapshot not found"));
take_new = true;
}
else if (last_snapshot_monthly.date.compare(now.add_months(-1).add_minutes(1)) < 0){
log_msg(_("Last monthly snapshot is more than 1 month old"));
take_new = true;
}
else{
int days = (int) ((float) now.difference(last_snapshot_monthly.date) / TimeSpan.DAY);
log_msg(_("Last monthly snapshot is %d days old").printf(days));
take_new = false;
}
if (take_new){
status = create_snapshot_for_tag ("monthly",now);
if(!status){
log_error(_("Monthly snapshot failed!"));
return false;
}
else{
update_symlinks = true;
}
}
}
}
else{
log_msg(_("Scheduled snapshots are disabled") + " - " + _("Nothing to do!"));
cron_job_update();
}
log_msg(string.nfill(78, '-'));
if (app_mode.length != 0){
repo.auto_remove();
}
if (update_symlinks){
repo.load_snapshots();
repo.create_symlinks();
}
//log_msg("OK");
}
catch(Error e){
log_error (e.message);
return false;
}
return status;
}
private bool create_snapshot_for_tag(string tag, DateTime dt_created){
log_debug("Main: backup_and_rotate()");
// save start time
var dt_begin = new DateTime.now_local();
bool status = true;
try{
// get system boot time
DateTime now = new DateTime.now_local();
DateTime dt_sys_boot = now.add_seconds((-1) * get_system_uptime_seconds());
// check if we can rotate an existing backup -------------
DateTime dt_filter = null;
if (tag != "ondemand"){
switch(tag){
case "boot":
dt_filter = dt_sys_boot;
break;
case "hourly":
case "daily":
case "weekly":
case "monthly":
dt_filter = now.add_hours(-1);
break;
default:
log_error(_("Unknown snapshot type") + ": %s".printf(tag));
return false;
}
// find a recent backup that can be used
Snapshot backup_to_rotate = null;
foreach(var bak in repo.snapshots){
if (bak.date.compare(dt_filter) > 0){
backup_to_rotate = bak;
break;
}
}
if (backup_to_rotate != null){
// tag the backup
backup_to_rotate.add_tag(tag);
var message = _("Tagged snapshot") + " '%s': %s".printf(backup_to_rotate.name, tag);
log_msg(message);
return true;
}
}
if (!repo.available() || !repo.has_space()){
log_error(repo.status_message);
log_error(repo.status_details);
exit_app();
}
// create new snapshot -----------------------
Snapshot new_snapshot = null;
if (btrfs_mode){
new_snapshot = create_snapshot_with_btrfs(tag, dt_created);
}
else{
new_snapshot = create_snapshot_with_rsync(tag, dt_created);
}
// finish ------------------------------
var dt_end = new DateTime.now_local();
TimeSpan elapsed = dt_end.difference(dt_begin);
long seconds = (long)(elapsed * 1.0 / TimeSpan.SECOND);
var message = "";
if (new_snapshot != null){
message = "%s %s (%lds)".printf((btrfs_mode ? "BTRFS" : "RSYNC"), _("Snapshot saved successfully"), seconds);
}
else{
message = _("Failed to create snapshot");
}
log_msg(message);
OSDNotify.notify_send("TimeShift", message, 10000, "low");
if (new_snapshot != null){
message = _("Tagged snapshot") + " '%s': %s".printf(new_snapshot.name, tag);
log_msg(message);
}
repo.load_snapshots();
}
catch(Error e){
log_error (e.message);
return false;
}
return status;
}
private Snapshot? create_snapshot_with_rsync(string tag, DateTime dt_created){
log_msg(string.nfill(78, '-'));
if (first_snapshot_size == 0){
log_msg(_("Estimating system size..."));
estimate_system_size();
}
log_msg(_("Creating new snapshot...") + "(RSYNC)");
log_msg(_("Saving to device") + ": %s".printf(repo.device.device) + ", " + _("mounted at path") + ": %s".printf(repo.mount_path));
// take new backup ---------------------------------
if (repo.mount_path.length == 0){
log_error("Backup location not mounted");
exit_app();
}
string time_stamp = dt_created.format("%Y-%m-%d_%H-%M-%S");
string snapshot_dir = repo.snapshots_path;
string snapshot_name = time_stamp;
string snapshot_path = path_combine(snapshot_dir, snapshot_name);
dir_create(snapshot_path);
string localhost_path = path_combine(snapshot_path, "localhost");
dir_create(localhost_path);
string sys_uuid = (sys_root == null) ? "" : sys_root.uuid;
Snapshot snapshot_to_link = null;
// check if a snapshot was restored recently and use it for linking ---------
try{
string ctl_path = path_combine(snapshot_dir, ".sync-restore");
var f = File.new_for_path(ctl_path);
if (f.query_exists()){
// read snapshot name from file
string snap_path = file_read(ctl_path);
string snap_name = file_basename(snap_path);
// find the snapshot that was restored
foreach(var bak in repo.snapshots){
if ((bak.name == snap_name) && (bak.sys_uuid == sys_uuid)){
// use for linking
snapshot_to_link = bak;
// delete the restore-control-file
f.delete();
break;
}
}
}
}
catch(Error e){
log_error (e.message);
return null;
}
// get latest snapshot to link if not set -------
if (snapshot_to_link == null){
snapshot_to_link = repo.get_latest_snapshot("", sys_uuid);
}
string link_from_path = "";
if (snapshot_to_link != null){
log_msg("%s: %s".printf(_("Linking from snapshot"), snapshot_to_link.name));
link_from_path = "%s/localhost/".printf(snapshot_to_link.path);
}
// save exclude list ----------------
bool ok = save_exclude_list_for_backup(snapshot_path);
string exclude_from_file = path_combine(snapshot_path, "exclude.list");
if (!ok){
log_error(_("Failed to save exclude list"));
return null;
}
// rsync file system -------------------
progress_text = _("Synching files with rsync...");
log_msg(progress_text);
var log_file = snapshot_path + "/rsync-log";
file_delete(log_file);
task = new RsyncTask();
task.source_path = "";
task.dest_path = snapshot_path + "/localhost/";
task.link_from_path = link_from_path;
task.exclude_from_file = exclude_from_file;
task.rsync_log_file = log_file;
task.prg_count_total = Main.first_snapshot_count;
task.relative = true;
task.verbose = true;
task.delete_extra = true;
task.delete_excluded = true;
task.delete_after = false;
if (app_mode.length > 0){
// console mode
task.io_nice = true;
}
task.execute();
while (task.status == AppStatus.RUNNING){
sleep(1000);
gtk_do_events();
stdout.printf("%6.2f%% %s (%s %s)\r".printf(task.progress * 100.0, _("complete"), task.stat_time_remaining, _("remaining")));
stdout.flush();
}
stdout.printf(string.nfill(80, ' '));
stdout.flush();
stdout.printf("\r");
stdout.flush();
if (task.total_size == 0){
log_error(_("rsync returned an error"));
log_error(_("Failed to create new snapshot"));
return null;
}
string initial_tags = (tag == "ondemand") ? "" : tag;
// write control file
// this step is redundant - just in case if app crashes while parsing log file in next step
Snapshot.write_control_file(
snapshot_path, dt_created, sys_uuid, current_distro.full_name(),
initial_tags, cmd_comments, 0, false, false, repo);
// parse log file
progress_text = _("Parsing log file...");
log_msg(progress_text);
var task = new RsyncTask();
task.parse_log(log_file);
// write control file (final - with file count after parsing log)
var snapshot = Snapshot.write_control_file(
snapshot_path, dt_created, sys_uuid, current_distro.full_name(),
initial_tags, cmd_comments, task.prg_count_total, false, false, repo, true);
set_tags(snapshot); // set_tags() will update the control file
return snapshot;
}
private Snapshot? create_snapshot_with_btrfs(string tag, DateTime dt_created){
log_msg(_("Creating new backup...") + "(BTRFS)");
log_msg(_("Saving to device") + ": %s".printf(repo.device.device) + ", " + _("mounted at path") + ": %s".printf(repo.mount_paths["@"]));
if ((repo.device_home != null) && (repo.device_home.uuid != repo.device.uuid)){
log_msg(_("Saving to device") + ": %s".printf(repo.device_home.device) + ", " + _("mounted at path") + ": %s".printf(repo.mount_paths["@home"]));
}
// take new backup ---------------------------------
if (repo.mount_path.length == 0){
log_error("Snapshot device not mounted");
exit_app();
}
string time_stamp = dt_created.format("%Y-%m-%d_%H-%M-%S");
string snapshot_name = time_stamp;
string sys_uuid = (sys_root == null) ? "" : sys_root.uuid;
string snapshot_path = "";
// create subvolume snapshots
foreach(var subvol in sys_subvolumes.values){
snapshot_path = path_combine(repo.mount_paths[subvol.name], "timeshift-btrfs/snapshots/%s".printf(snapshot_name));
dir_create(snapshot_path, true);
string src_path = path_combine(repo.mount_paths[subvol.name], subvol.name);
string dst_path = path_combine(snapshot_path, subvol.name);
string cmd = "btrfs subvolume snapshot '%s' '%s' \n".printf(src_path, dst_path);
if (LOG_COMMANDS) { log_debug(cmd); }
string std_out, std_err;
int ret_val = exec_sync(cmd, out std_out, out std_err);
if (ret_val != 0){
log_error (std_err);
log_error(_("btrfs returned an error") + ": %d".printf(ret_val));
log_error(_("Failed to create subvolume snapshot") + ": %s".printf(subvol.name));
return null;
}
else{
log_msg(_("Created subvolume snapshot") + ": %s".printf(dst_path));
}
}
//log_msg(_("Writing control file..."));
snapshot_path = path_combine(repo.mount_paths["@"], "timeshift-btrfs/snapshots/%s".printf(snapshot_name));
string initial_tags = (tag == "ondemand") ? "" : tag;
// write control file
var snapshot = Snapshot.write_control_file(
snapshot_path, dt_created, sys_uuid, current_distro.full_name(),
initial_tags, cmd_comments, 0, true, false, repo);
// write subvolume info
foreach(var subvol in sys_subvolumes.values){
snapshot.subvolumes.set(subvol.name, subvol);
}
snapshot.update_control_file(); // save subvolume info
set_tags(snapshot); // set_tags() will update the control file
return snapshot;
}
private void set_tags(Snapshot snapshot){
// add tags passed on commandline for both --check and --create
foreach(string tag in cmd_tags.split(",")){
switch(tag.strip().up()){
case "B":
snapshot.add_tag("boot");
break;
case "H":
snapshot.add_tag("hourly");
break;
case "D":
snapshot.add_tag("daily");
break;
case "W":
snapshot.add_tag("weekly");
break;
case "M":
snapshot.add_tag("monthly");
break;
}
}
// add tag as ondemand if no other tag is specified
if (snapshot.tags.size == 0){
snapshot.add_tag("ondemand");
}
}
public void validate_cmd_tags(){
foreach(string tag in cmd_tags.split(",")){
switch(tag.strip().up()){
case "B":
case "H":
case "D":
case "W":
case "M":
break;
default:
log_error(_("Unknown value specified for option --tags") + " (%s).".printf(tag));
log_error(_("Expected values: O, B, H, D, W, M"));
exit_app(1);
break;
}
}
}
// gui delete
public void delete_begin(){
log_debug("Main: delete_begin()");
try {
thread_delete_running = true;
thread_delete_success = false;
Thread.create<void> (delete_thread, true);
//new Thread<bool> ("", delete_thread);
log_debug("delete_begin(): thread created");
}
catch (Error e) {
thread_delete_running = false;
thread_delete_success = false;
log_error (e.message);
}
log_debug("Main: delete_begin(): exit");
}
public void delete_thread(){
log_debug("delete_thread()");
bool status = true;
foreach(var bak in delete_list){
bak.mark_for_deletion();
}
while (delete_list.size > 0){
var bak = delete_list[0];
bak.mark_for_deletion(); // mark for deletion again since initial list may have changed
if (btrfs_mode){
status = bak.remove(true); // wait till complete
var message = "%s '%s'".printf(_("Removed"), bak.name);
OSDNotify.notify_send("TimeShift", message, 10000, "low");
}
else{
delete_file_task = bak.delete_file_task;
delete_file_task.prg_count_total = Main.first_snapshot_count;
status = bak.remove(true); // wait till complete
if (delete_file_task.status != AppStatus.CANCELLED){
var message = "%s '%s' (%s)".printf(_("Removed"), bak.name, delete_file_task.stat_time_elapsed);
OSDNotify.notify_send("TimeShift", message, 10000, "low");
}
}
delete_list.remove(bak);
}
thread_delete_running = false;
thread_delete_success = status;
}
// restore - properties
public Device? dst_root{
get {
foreach(var mnt in mount_list){
if (mnt.mount_point == "/"){
return mnt.device;
}
}
return null;
}
set{
foreach(var mnt in mount_list){
if (mnt.mount_point == "/"){
mnt.device = value;
break;
}
}
}
}
public Device? dst_boot{
get {
foreach(var mnt in mount_list){
if (mnt.mount_point == "/boot"){
return mnt.device;
}
}
return null;
}
set{
foreach(var mnt in mount_list){
if (mnt.mount_point == "/boot"){
mnt.device = value;
break;
}
}
}
}
public Device? dst_efi{
get {
foreach(var mnt in mount_list){
if (mnt.mount_point == "/boot/efi"){
return mnt.device;
}
}
return null;
}
set{
foreach(var mnt in mount_list){
if (mnt.mount_point == "/boot/efi"){
mnt.device = value;
break;
}
}
}
}
public Device? dst_home{
get {
foreach(var mnt in mount_list){
if (mnt.mount_point == "/home"){
return mnt.device;
}
}
return null;
}
set{
foreach(var mnt in mount_list){
if (mnt.mount_point == "/home"){
mnt.device = value;
break;
}
}
}
}
public bool restore_current_system{
get {
if ((sys_root != null) &&
((dst_root.device == sys_root.device) || (dst_root.uuid == sys_root.uuid))){
return true;
}
else{
return false;
}
}
}
public string restore_source_path{
owned get {
if (mirror_system){
string source_path = "/tmp/timeshift";
dir_create(source_path);
return source_path;
}
else{
return snapshot_to_restore.path;
}
}
}
public string restore_target_path{
owned get {
if (restore_current_system){
return "/";
}
else{
return mount_point_restore + "/";
}
}
}
public string restore_log_file{
owned get {
return restore_source_path + "/rsync-log-restore";
}
}
public string restore_exclude_file{
owned get {
return restore_source_path + "/exclude-restore.list";
}
}
// restore
public void init_mount_list(){
log_debug("Main: init_mount_list()");
mount_list.clear();
Gee.ArrayList<FsTabEntry> fstab_list = null;
Gee.ArrayList<CryptTabEntry> crypttab_list = null;
if (mirror_system){
string fstab_path = "/etc/fstab";
fstab_list = FsTabEntry.read_file(fstab_path);
string cryttab_path = "/etc/crypttab";
crypttab_list = CryptTabEntry.read_file(cryttab_path);
}
else{
fstab_list = snapshot_to_restore.fstab_list;
crypttab_list = snapshot_to_restore.cryttab_list;
}
bool root_found = false;
bool boot_found = false;
bool home_found = false;
dst_root = null;
foreach(var fs_entry in fstab_list){
// skip mounting for non-system devices
if (!fs_entry.is_for_system_directory()){
continue;
}
// find device by name or uuid
Device dev_fstab = null;
if (fs_entry.device_uuid.length > 0){
dev_fstab = Device.get_device_by_uuid(fs_entry.device_uuid);
}
else{
dev_fstab = Device.get_device_by_name(fs_entry.device_string);
}
if (dev_fstab == null){
/*
Check if the device mentioned in fstab entry is a mapped device.
If it is, then try finding the parent device which may be available on the current system.
Prompt user to unlock it if found.
Note:
Mapped name may be different on running system, or it may be same.
Since it is not reliable, we will try to identify the parent intead of the mapped device.
*/
if (fs_entry.device_string.has_prefix("/dev/mapper/")){
string mapped_name = fs_entry.device_string.replace("/dev/mapper/","");
foreach(var crypt_entry in crypttab_list){
if (crypt_entry.mapped_name == mapped_name){
// we found the entry for the mapped device
fs_entry.device_string = crypt_entry.device_string;
if (fs_entry.device_uuid.length > 0){
// we have the parent's uuid. get the luks device and prompt user to unlock it.
var dev_luks = Device.get_device_by_uuid(fs_entry.device_uuid);
if (dev_luks != null){
string msg_out, msg_err;
var dev_unlocked = Device.luks_unlock(
dev_luks, "", "", parent_window, out msg_out, out msg_err);
if (dev_unlocked != null){
dev_fstab = dev_unlocked;
update_partitions();
}
else{
dev_fstab = dev_luks; // map to parent
}
}
}
else{
// nothing to do: we don't have the parent's uuid
}
break;
}
}
}
}
if (dev_fstab != null){
log_debug("added: dev: %s, path: %s, options: %s".printf(
dev_fstab.device, fs_entry.mount_point, fs_entry.options));
mount_list.add(new MountEntry(dev_fstab, fs_entry.mount_point, fs_entry.options));
if (fs_entry.mount_point == "/"){
dst_root = dev_fstab;
}
}
else{
log_debug("missing: dev: %s, path: %s, options: %s".printf(
fs_entry.device_string, fs_entry.mount_point, fs_entry.options));
mount_list.add(new MountEntry(null, fs_entry.mount_point, fs_entry.options));
}
if (fs_entry.mount_point == "/"){
root_found = true;
}
if (fs_entry.mount_point == "/boot"){
boot_found = true;
}
if (fs_entry.mount_point == "/home"){
home_found = true;
}
}
if (!root_found){
log_debug("added null entry: /");
mount_list.add(new MountEntry(null, "/", "")); // add root entry
}
if (!boot_found){
log_debug("added null entry: /boot");
mount_list.add(new MountEntry(null, "/boot", "")); // add boot entry
}
if (!home_found){
log_debug("added null entry: /home");
mount_list.add(new MountEntry(null, "/home", "")); // add home entry
}
/*
While cloning the system, /boot is the only mount point that
we will leave unchanged (to avoid encrypted systems from breaking).
All other mounts like /home will be defaulted to target device
(to prevent the "cloned" system from using the original device)
*/
if (mirror_system){
dst_root = null;
foreach (var entry in mount_list){
// user should select another device
entry.device = null;
}
}
foreach(var mnt in mount_list){
if (mnt.device != null){
log_debug("Entry: %s -> %s".printf(mnt.device.device, mnt.mount_point));
}
else{
log_debug("Entry: null -> %s".printf(mnt.mount_point));
}
}
// sort - parent mountpoints will be placed above children
mount_list.sort((a,b) => {
return strcmp(a.mount_point, b.mount_point);
});
init_boot_options(); // boot options depend on the mount list
log_debug("Main: init_mount_list(): exit");
}
public void init_boot_options(){
var grub_dev = dst_root;
if(grub_dev != null){
grub_device = grub_dev.device;
}
while ((grub_dev != null) && grub_dev.has_parent()){
grub_dev = grub_dev.parent;
grub_device = grub_dev.device;
}
if (mirror_system){
// bootloader must be re-installed
reinstall_grub2 = true;
update_initramfs = true;
update_grub = true;
}
else{
if (snapshot_to_restore.distro.dist_id == "fedora"){
// grub2-install should never be run on EFI fedora systems
reinstall_grub2 = false;
update_initramfs = false;
update_grub = true;
}
else{
reinstall_grub2 = true;
update_initramfs = false;
update_grub = true;
}
}
}
public bool restore_snapshot(Gtk.Window? parent_win){
log_debug("Main: restore_snapshot()");
parent_window = parent_win;
// remove mount points which will remain on root fs
for(int i = mount_list.size-1; i >= 0; i--){
var entry = mount_list[i];
if (entry.device == null){
mount_list.remove(entry);
}
}
// check if we have all required inputs and abort on error
if (!mirror_system){
if (repo.device == null){
log_error(_("Backup device not specified!"));
return false;
}
else{
log_msg(string.nfill(78, '*'));
log_msg(_("Backup Device") + ": %s".printf(repo.device.device));
log_msg(string.nfill(78, '*'));
}
if (snapshot_to_restore == null){
log_error(_("Snapshot to restore not specified!"));
return false;
}
else if ((snapshot_to_restore != null) && (snapshot_to_restore.marked_for_deletion)){
log_error(_("Invalid Snapshot"));
log_error(_("Selected snapshot is marked for deletion"));
return false;
}
else {
log_msg(string.nfill(78, '*'));
log_msg("%s: %s ~ %s".printf(_("Snapshot"), snapshot_to_restore.name, snapshot_to_restore.description));
log_msg(string.nfill(78, '*'));
}
}
// final check - check if target root device is mounted
if (btrfs_mode){
if (repo.mount_paths["@"].length == 0){
log_error(_("BTRFS device is not mounted") + ": @");
return false;
}
if (repo.mount_paths["@home"].length == 0){
log_error(_("BTRFS device is not mounted") + ": @home");
return false;
}
}
else{
if (dst_root == null){
log_error(_("Target device not specified!"));
return false;
}
if (!restore_current_system){
if (mount_point_restore.strip().length == 0){
log_error(_("Target device is not mounted"));
return false;
}
}
}
try {
thread_restore_running = true;
thr_success = false;
if (btrfs_mode){
Thread.create<bool> (restore_execute_btrfs, true);
}
else{
Thread.create<bool> (restore_execute_rsync, true);
}
}
catch (ThreadError e) {
thread_restore_running = false;
thr_success = false;
log_error (e.message);
}
while (thread_restore_running){
gtk_do_events ();
Thread.usleep((ulong) GLib.TimeSpan.MILLISECOND * 100);
}
snapshot_to_restore = null;
log_debug("Main: restore_snapshot(): exit");
return thr_success;
}
public void get_restore_messages(bool formatted,
out string msg_devices, out string msg_reboot, out string msg_disclaimer){
string msg = "";
log_debug("Main: get_restore_messages()");
// msg_devices -----------------------------------------
if (!formatted){
msg += "\n%s\n%s\n%s\n".printf(
string.nfill(70,'='),
_("Warning").up(),
string.nfill(70,'=')
);
}
msg += _("Data will be modified on following devices:") + "\n\n";
int max_mount = _("Mount").length;
int max_dev = _("Device").length;
foreach(var entry in mount_list){
if (entry.device == null){ continue; }
if (btrfs_mode){
if (entry.subvolume_name().length == 0){
continue;
}
}
string dev_name = entry.device.full_name_with_parent;
if (entry.subvolume_name().length > 0){
dev_name = dev_name + "(%s)".printf(entry.subvolume_name());
}
else if (entry.lvm_name().length > 0){
dev_name = dev_name + "(%s)".printf(entry.lvm_name());
}
if (dev_name.length > max_dev){
max_dev = dev_name.length;
}
if (entry.mount_point.length > max_mount){
max_mount = entry.mount_point.length;
}
}
var txt = ("%%-%ds %%-%ds".printf(max_dev, max_mount))
.printf(_("Device"),_("Mount"));
txt += "\n";
txt += string.nfill(max_dev, '-') + " " + string.nfill(max_mount, '-');
txt += "\n";
foreach(var entry in mount_list){
if (entry.device == null){ continue; }
if (btrfs_mode){
if (entry.subvolume_name().length == 0){
continue;
}
}
string dev_name = entry.device.full_name_with_parent;
if (entry.subvolume_name().length > 0){
dev_name = dev_name + "(%s)".printf(entry.subvolume_name());
}
else if (entry.lvm_name().length > 0){
dev_name = dev_name + "(%s)".printf(entry.lvm_name());
}
txt += ("%%-%ds %%-%ds".printf(max_dev, max_mount)).printf(
dev_name, entry.mount_point);
txt += "\n";
}
if (formatted){
msg += "<span size=\"medium\"><tt>%s</tt></span>".printf(txt);
}
else{
msg += "%s\n".printf(txt);
}
msg_devices = msg;
//msg += _("Files will be overwritten on the target device!") + "\n";
//msg += _("If restore fails and you are unable to boot the system, then boot from the Ubuntu Live CD, install Timeshift, and try to restore again.") + "\n";
// msg_reboot -----------------------
msg = "";
if (restore_current_system){
msg += _("Please save your work and close all applications.") + "\n";
msg += _("System will reboot after files are restored.");
}
msg_reboot = msg;
// msg_disclaimer --------------------------------------
msg = "";
if (!formatted){
msg += "\n%s\n%s\n%s\n".printf(
string.nfill(70,'='),
_("Disclaimer").up(),
string.nfill(70,'=')
);
}
msg += _("This software comes without absolutely NO warranty and the author takes no responsibility for any damage arising from the use of this program.");
msg += " " + _("If these terms are not acceptable to you, please do not proceed beyond this point!");
if (!formatted){
msg += "\n";
}
msg_disclaimer = msg;
// display messages in console mode
if (app_mode.length > 0){
log_msg(msg_devices);
log_msg(msg_reboot);
log_msg(msg_disclaimer);
}
log_debug("Main: get_restore_messages(): exit");
}
private void create_restore_scripts(out string sh_sync, out string sh_finish){
log_debug("Main: create_restore_scripts()");
string sh = "";
// create scripts --------------------------------------
sh = "";
sh += "echo ''\n";
if (restore_current_system){
log_debug("restoring current system");
sh += "echo '" + _("Please do not interrupt the restore process!") + "'\n";
sh += "echo '" + _("System will reboot after files are restored") + "'\n";
}
sh += "echo ''\n";
sh += "sleep 3s\n";
// run rsync ---------------------------------------
sh += "rsync -avir --force --delete --delete-after";
sh += " --log-file=\"%s\"".printf(restore_log_file);
sh += " --exclude-from=\"%s\"".printf(restore_exclude_file);
if (mirror_system){
sh += " \"%s\" \"%s\" \n".printf("/", restore_target_path);
}
else{
sh += " \"%s\" \"%s\" \n".printf(restore_source_path + "/localhost/", restore_target_path);
}
sh += "sync \n"; // sync file system
log_debug("rsync script:");
log_debug(sh);
sh_sync = sh;
// chroot and re-install grub2 ---------------------
log_debug("reinstall_grub2=%s".printf(reinstall_grub2.to_string()));
log_debug("grub_device=%s".printf((grub_device == null) ? "null" : grub_device));
var target_distro = LinuxDistro.get_dist_info(restore_target_path);
sh = "";
string chroot = "";
if (!restore_current_system){
//if ((current_distro.dist_type == "arch") && cmd_exists("arch-chroot")){
//chroot += "arch-chroot \"%s\"".printf(restore_target_path);
//}
//else{
chroot += "chroot \"%s\"".printf(restore_target_path);
//}
// bind system directories for chrooted system
sh += "for i in dev dev/pts proc run sys; do mount --bind \"/$i\" \"%s$i\"; done \n".printf(restore_target_path);
}
if (reinstall_grub2 && (grub_device != null) && (grub_device.length > 0)){
sh += "sync \n";
sh += "echo '' \n";
sh += "echo '" + _("Re-installing GRUB2 bootloader...") + "' \n";
// search for other operating systems
//sh += "chroot \"%s\" os-prober \n".printf(restore_target_path);
// re-install grub ---------------
if (target_distro.dist_type == "redhat"){
// this will run only in clone mode
sh += "%s grub2-install %s \n".printf(chroot, grub_device);
sh += "%s grub2-install --recheck %s \n".printf(chroot, grub_device);
/* NOTE:
* grub2-install should NOT be run on Fedora EFI systems
* https://fedoraproject.org/wiki/GRUB_2
* Instead following packages should be reinstalled:
* dnf reinstall grub2-efi grub2-efi-modules shim
*
* Bootloader installation will be skipped while restoring in GUI mode.
* Fedora seems to boot correctly even after installing new
* kernels and restoring a snapshot with an older kernel.
*/
}
else {
sh += "%s grub-install %s \n".printf(chroot, grub_device);
sh += "%s grub-install --recheck %s \n".printf(chroot, grub_device);
}
// create new grub menu
//sh += "chroot \"%s\" grub-mkconfig -o /boot/grub/grub.cfg \n".printf(restore_target_path);
}
else{
log_debug("skipping sh_grub: reinstall_grub2=%s, grub_device=%s".printf(
reinstall_grub2.to_string(), (grub_device == null) ? "null" : grub_device));
}
// update initramfs --------------
if (update_initramfs){
sh += "echo '' \n";
sh += "echo '" + _("Generating initramfs...") + "' \n";
if (target_distro.dist_type == "redhat"){
sh += "%s dracut -f -v \n".printf(chroot);
}
else if (target_distro.dist_type == "arch"){
sh += "%s mkinitcpio -p /etc/mkinitcpio.d/*.preset\n".printf(chroot);
}
else{
sh += "%s update-initramfs -u -k all \n".printf(chroot);
}
}
// update grub menu --------------
if (update_grub){
sh += "echo '' \n";
sh += "echo '" + _("Updating GRUB menu...") + "' \n";
if (target_distro.dist_type == "redhat"){
sh += "%s grub2-mkconfig -o /boot/grub2/grub.cfg \n".printf(chroot);
}
if (target_distro.dist_type == "arch"){
sh += "%s grub-mkconfig -o /boot/grub/grub.cfg \n".printf(chroot);
}
else{
sh += "%s update-grub \n".printf(chroot);
}
sh += "sync \n";
sh += "echo '' \n";
}
// sync file systems
sh += "echo '" + _("Synching file systems...") + "' \n";
sh += "sync ; sleep 10s; \n";
sh += "echo '' \n";
if (!restore_current_system){
// unmount chrooted system
sh += "echo '" + _("Cleaning up...") + "' \n";
sh += "for i in dev/pts dev proc run sys; do umount -f \"%s$i\"; done \n".printf(restore_target_path);
sh += "sync \n";
}
log_debug("GRUB2 install script:");
log_debug(sh);
// reboot if required -----------------------------------
if (restore_current_system){
sh += "echo '' \n";
sh += "echo '" + _("Rebooting system...") + "' \n";
sh += "reboot -f \n";
//sh_reboot += "shutdown -r now \n";
}
sh_finish = sh;
}
private bool restore_current_console(string sh_sync, string sh_finish){
log_debug("Main: restore_current_console()");
string script = sh_sync + sh_finish;
int ret_val = -1;
if (cmd_verbose){
//current/other system, console, verbose
ret_val = exec_script_sync(script, null, null, false, false, false, true);
log_msg("");
}
else{
//current/other system, console, quiet
string std_out, std_err;
ret_val = exec_script_sync(script, out std_out, out std_err);
log_to_file(std_out);
log_to_file(std_err);
}
return (ret_val == 0);
}
private bool restore_current_gui(string sh_sync, string sh_finish){
log_debug("Main: restore_current_gui()");
string script = sh_sync + sh_finish;
string temp_script = save_bash_script_temp(script);
var dlg = new TerminalWindow.with_parent(parent_window);
dlg.execute_script(temp_script, true);
return true;
}
private bool restore_other_console(string sh_sync, string sh_finish){
log_debug("Main: restore_other_console()");
// execute sh_sync --------------------
string script = sh_sync;
int ret_val = -1;
if (cmd_verbose){
ret_val = exec_script_sync(script, null, null, false, false, false, true);
log_msg("");
}
else{
string std_out, std_err;
ret_val = exec_script_sync(script, out std_out, out std_err);
log_to_file(std_out);
log_to_file(std_err);
}
// update files -------------------
fix_fstab_file(restore_target_path);
fix_crypttab_file(restore_target_path);
progress_text = _("Parsing log file...");
log_msg(progress_text);
var task = new RsyncTask();
task.parse_log(restore_log_file);
// execute sh_finish --------------------
log_debug("executing sh_finish: ");
log_debug(sh_finish);
script = sh_finish;
if (cmd_verbose){
ret_val = exec_script_sync(script, null, null, false, false, false, true);
log_msg("");
}
else{
string std_out, std_err;
ret_val = exec_script_sync(script, out std_out, out std_err);
log_to_file(std_out);
log_to_file(std_err);
}
return (ret_val == 0);
}
private bool restore_other_gui(string sh_sync, string sh_finish){
log_debug("Main: restore_other_gui()");
progress_text = _("Building file list...");
task = new RsyncTask();
task.relative = false;
task.verbose = true;
task.delete_extra = true;
task.delete_excluded = false;
task.delete_after = true;
if (mirror_system){
task.source_path = "/";
}
else{
task.source_path = path_combine(snapshot_to_restore.path, "localhost");
}
task.dest_path = restore_target_path;
task.exclude_from_file = restore_exclude_file;
task.rsync_log_file = restore_log_file;
if ((snapshot_to_restore != null) && (snapshot_to_restore.file_count > 0)){
task.prg_count_total = snapshot_to_restore.file_count;
}
else if (Main.first_snapshot_count > 0){
task.prg_count_total = Main.first_snapshot_count;
}
else{
task.prg_count_total = 500000;
}
task.execute();
while (task.status == AppStatus.RUNNING){
sleep(1000);
if (task.status_line.length > 0){
progress_text = _("Synching files with rsync...");
}
gtk_do_events();
}
// update files after sync --------------------
fix_fstab_file(restore_target_path);
fix_crypttab_file(restore_target_path);
progress_text = _("Parsing log file...");
log_msg(progress_text);
var task = new RsyncTask();
task.parse_log(restore_log_file);
// execute sh_finish ------------
if (reinstall_grub2 || update_initramfs || update_grub){
progress_text = _("Updating bootloader configuration...");
}
log_debug("executing sh_finish: ");
log_debug(sh_finish);
int ret_val = exec_script_sync(sh_finish, null, null, false, false, false, true);
log_debug("script exit code: %d".printf(ret_val));
return (ret_val == 0);
}
private void fix_fstab_file(string target_path){
log_debug("Main: fix_fstab_file()");
string fstab_path = path_combine(target_path, "etc/fstab");
if (!file_exists(fstab_path)){
log_debug("File not found: %s".printf(fstab_path));
return;
}
var fstab_list = FsTabEntry.read_file(fstab_path);
log_debug("updating entries (1/2)...");
foreach(var mnt in mount_list){
// find existing
var entry = FsTabEntry.find_entry_by_mount_point(fstab_list, mnt.mount_point);
// add if missing
if (entry == null){
entry = new FsTabEntry();
entry.mount_point = mnt.mount_point;
fstab_list.add(entry);
}
//update fstab entry
entry.device_string = "UUID=%s".printf(mnt.device.uuid);
entry.type = mnt.device.fstype;
// fix mount options for non-btrfs device
if (mnt.device.fstype != "btrfs"){
// remove subvol option
entry.remove_option("subvol=%s".printf(entry.subvolume_name()));
}
}
/*
* Remove fstab entries for any system directories that
* the user has not explicitly mapped before restore/clone
* This ensures that the cloned/restored system does not mount
* any devices to system paths that the user has not explicitly specified
* */
log_debug("updating entries(2/2)...");
for(int i = fstab_list.size - 1; i >= 0; i--){
var entry = fstab_list[i];
if (!entry.is_for_system_directory()){ continue; }
var mnt = MountEntry.find_entry_by_mount_point(mount_list, entry.mount_point);
if (mnt == null){
fstab_list.remove(entry);
}
}
// write the updated file
log_debug("writing updated file...");
FsTabEntry.write_file(fstab_list, fstab_path, false);
log_msg(_("Updated /etc/fstab on target device") + ": %s".printf(fstab_path));
// create directories on disk for mount points in /etc/fstab
foreach(var entry in fstab_list){
if (entry.mount_point.length == 0){ continue; }
if (!entry.mount_point.has_prefix("/")){ continue; }
string mount_path = path_combine(
target_path, entry.mount_point);
if (entry.is_comment
|| entry.is_empty_line
|| (mount_path.length == 0)){
continue;
}
if (!dir_exists(mount_path)){
log_msg("Created mount point on target device: %s".printf(
entry.mount_point));
dir_create(mount_path);
}
}
log_debug("Main: fix_fstab_file(): exit");
}
private void fix_crypttab_file(string target_path){
log_debug("Main: fix_crypttab_file()");
string crypttab_path = path_combine(target_path, "etc/crypttab");
if (!file_exists(crypttab_path)){
log_debug("File not found: %s".printf(crypttab_path));
return;
}
var crypttab_list = CryptTabEntry.read_file(crypttab_path);
// add option "nofail" to existing entries
log_debug("checking for 'nofail' option...");
foreach(var entry in crypttab_list){
entry.append_option("nofail");
}
log_debug("updating entries...");
// check and add entries for mapped devices which are encrypted
foreach(var mnt in mount_list){
if ((mnt.device != null) && (mnt.device.parent != null) && (mnt.device.is_on_encrypted_partition())){
// find existing
var entry = CryptTabEntry.find_entry_by_uuid(
crypttab_list, mnt.device.parent.uuid);
// add if missing
if (entry == null){
entry = new CryptTabEntry();
crypttab_list.add(entry);
}
// set custom values
entry.device_uuid = mnt.device.parent.uuid;
entry.mapped_name = "luks-%s".printf(mnt.device.parent.uuid);
entry.keyfile = "none";
entry.options = "luks,nofail";
}
}
log_debug("writing updated file...");
CryptTabEntry.write_file(crypttab_list, crypttab_path, false);
log_msg(_("Updated /etc/crypttab on target device") + ": %s".printf(crypttab_path));
log_debug("Main: fix_crypttab_file(): exit");
}
private void check_and_repair_filesystems(){
if (!restore_current_system){
string sh_fsck = "echo '" + _("Checking file systems for errors...") + "' \n";
foreach(var mnt in mount_list){
if (mnt.device != null) {
sh_fsck += "fsck -y %s \n".printf(mnt.device.device);
}
}
sh_fsck += "echo '' \n";
int ret_val = exec_script_sync(sh_fsck, null, null, false, false, false, true);
}
}
public bool restore_execute_rsync(){
log_debug("Main: restore_execute_rsync()");
try{
log_debug("source_path=%s".printf(restore_source_path));
log_debug("target_path=%s".printf(restore_target_path));
string sh_sync, sh_finish;
create_restore_scripts(out sh_sync, out sh_finish);
save_exclude_list_for_restore(restore_source_path);
file_delete(restore_log_file);
file_delete(restore_log_file + "-changes");
file_delete(restore_log_file + ".gz");
if (restore_current_system){
string control_file_path = path_combine(snapshot_to_restore.path,".sync-restore");
var f = File.new_for_path(control_file_path);
if(f.query_exists()){
f.delete(); //delete existing file
}
file_write(control_file_path, snapshot_to_restore.path); //save snapshot name
}
// run the scripts --------------------
if (snapshot_to_restore != null){
log_msg(_("Restoring snapshot..."));
}
else{
log_msg(_("Cloning system..."));
}
progress_text = _("Synching files with rsync...");
log_msg(progress_text);
bool ok = true;
if (app_mode == ""){ // GUI
if (restore_current_system){
ok = restore_current_gui(sh_sync, sh_finish);
}
else{
ok = restore_other_gui(sh_sync, sh_finish);
}
}
else{
if (restore_current_system){
ok = restore_current_console(sh_sync, sh_finish);
}
else{
ok = restore_other_console(sh_sync, sh_finish);
}
}
log_msg(_("Restore completed"));
thr_success = true;
log_msg(string.nfill(78, '-'));
/*if (ok){
}
else{
log_error(_("Restore completed with errors"));
thr_success = false;
}*/
// unmount ----------
unmount_target_device(false);
// check and repair file system errors
check_and_repair_filesystems();
}
catch(Error e){
log_error (e.message);
thr_success = false;
}
thread_restore_running = false;
return thr_success;
}
public bool restore_execute_btrfs(){
log_debug("Main: restore_execute_btrfs()");
string cmd, std_out, std_err;
//query_subvolume_info();
bool ok = create_pre_restore_snapshot_btrfs();
log_msg(string.nfill(78, '-'));
if (!ok){
thread_restore_running = false;
thr_success = false;
return thr_success;
}
// restore snapshot subvolumes by creating new subvolume snapshots
foreach(string subvol_name in new string[] { "@","@home" }){
string snapshot_path = path_combine(repo.mount_paths[subvol_name], "timeshift-btrfs/snapshots/%s".printf(snapshot_to_restore.name));
if (dir_exists(snapshot_path)){
string src_path = path_combine(snapshot_path, subvol_name);
string dst_path = path_combine(repo.mount_paths[subvol_name], subvol_name);
cmd = "btrfs subvolume snapshot '%s' '%s'".printf(src_path, dst_path);
log_debug(cmd);
int status = exec_sync(cmd, out std_out, out std_err);
if (status != 0){
log_error (std_err);
log_error(_("btrfs returned an error") + ": %d".printf(status));
log_error(_("Failed to restore system subvolume") + ": %s".printf(subvol_name));
thread_restore_running = false;
thr_success = false;
return thr_success;
}
else{
log_msg(_("Restored system subvolume") + ": %s".printf(subvol_name));
}
}
}
log_msg(_("Restore completed"));
thr_success = true;
if (restore_current_system){
log_msg(_("Snapshot will become active after system is rebooted."));
}
log_msg(string.nfill(78, '-'));
thread_restore_running = false;
return thr_success;
}
public bool create_pre_restore_snapshot_btrfs(){
log_debug("Main: create_pre_restore_snapshot_btrfs()");
string cmd, std_out, std_err;
DateTime dt_created = new DateTime.now_local();
string time_stamp = dt_created.format("%Y-%m-%d_%H-%M-%S");
string snapshot_name = time_stamp;
string snapshot_path = "";
/* Note:
* The @ and @home subvolumes need to be backed-up only if they are in use by the system.
* If user restores a snapshot and then tries to restore another snapshot before the next reboot
* then the @ and @home subvolumes are the ones that were previously restored and need to be deleted.
* */
bool create_pre_restore_backup = false;
if (restore_current_system){
// check for an existing pre-restore backup
Snapshot snap_prev = null;
bool found = false;
foreach(var bak in repo.snapshots){
if (bak.live){
found = true;
snap_prev = bak;
log_msg(_("Found existing pre-restore snapshot") + ": %s".printf(bak.name));
break;
}
}
if (found){
//delete system subvolumes
sys_subvolumes["@"].remove();
sys_subvolumes["@home"].remove();
log_msg(_("Deleted system subvolumes: @, @home"));
//update description for pre-restore backup
snap_prev.description = "Before restoring '%s'".printf(snapshot_to_restore.date_formatted);
snap_prev.update_control_file();
}
else{
create_pre_restore_backup = true;
}
}
else{
create_pre_restore_backup = true;
}
if (create_pre_restore_backup){
log_msg(_("Creating pre-restore snapshot from system subvolumes..."));
dir_create(snapshot_path);
// move subvolumes ----------------
bool no_subvolumes_found = true;
foreach(string subvol_name in new string[] { "@", "@home" }){
snapshot_path = path_combine(repo.mount_paths[subvol_name], "timeshift-btrfs/snapshots/%s".printf(snapshot_name));
dir_create(snapshot_path, true);
string src_path = path_combine(repo.mount_paths[subvol_name], subvol_name);
if (!dir_exists(src_path)){
log_error(_("Could not find system subvolume") + ": %s".printf(subvol_name));
dir_delete(snapshot_path);
continue;
}
no_subvolumes_found = false;
string dst_path = path_combine(snapshot_path, subvol_name);
cmd = "mv '%s' '%s'".printf(src_path, dst_path);
log_debug(cmd);
int status = exec_sync(cmd, out std_out, out std_err);
if (status != 0){
log_error (std_err);
log_error(_("Failed to move system subvolume to snapshot directory") + ": %s".printf(subvol_name));
return false;
}
else{
log_msg(_("Moved system subvolume to snapshot directory") + ": %s".printf(subvol_name));
}
}
if (no_subvolumes_found){
//could not find system subvolumes for backing up(!)
log_error(_("Could not find system subvolumes for creating pre-restore snapshot"));
}
else{
// write control file -----------
snapshot_path = path_combine(repo.mount_paths["@"], "timeshift-btrfs/snapshots/%s".printf(snapshot_name));
var snap = Snapshot.write_control_file(
snapshot_path, dt_created, repo.device.uuid,
LinuxDistro.get_dist_info(repo.mount_paths["@"] + "/@").full_name(),
"ondemand", "", 0, true, false, repo);
snap.description = "Before restoring '%s'".printf(snapshot_to_restore.date_formatted);
snap.live = true;
// write subvolume info
foreach(var subvol in sys_subvolumes.values){
snap.subvolumes.set(subvol.name, subvol);
}
snap.update_control_file(); // save subvolume info
log_msg(_("Created pre-restore snapshot") + ": %s".printf(snap.name));
repo.load_snapshots();
}
}
return true;
}
//app config
public void save_app_config(){
log_debug("Main: save_app_config()");
var config = new Json.Object();
if ((repo != null) && repo.available()){
// save backup device uuid
config.set_string_member("backup_device_uuid",
(repo.device == null) ? "" : repo.device.uuid);
// save parent uuid if backup device has parent
config.set_string_member("parent_device_uuid",
(repo.device.has_parent()) ? repo.device.parent.uuid : "");
}
else{
// retain values for next run
config.set_string_member("backup_device_uuid", backup_uuid);
config.set_string_member("parent_device_uuid", backup_parent_uuid);
}
config.set_string_member("btrfs_mode", btrfs_mode.to_string());
config.set_string_member("stop_cron_emails", stop_cron_emails.to_string());
config.set_string_member("schedule_monthly", schedule_monthly.to_string());
config.set_string_member("schedule_weekly", schedule_weekly.to_string());
config.set_string_member("schedule_daily", schedule_daily.to_string());
config.set_string_member("schedule_hourly", schedule_hourly.to_string());
config.set_string_member("schedule_boot", schedule_boot.to_string());
config.set_string_member("count_monthly", count_monthly.to_string());
config.set_string_member("count_weekly", count_weekly.to_string());
config.set_string_member("count_daily", count_daily.to_string());
config.set_string_member("count_hourly", count_hourly.to_string());
config.set_string_member("count_boot", count_boot.to_string());
config.set_string_member("snapshot_size", first_snapshot_size.to_string());
config.set_string_member("snapshot_count", first_snapshot_count.to_string());
Json.Array arr = new Json.Array();
foreach(string path in exclude_list_user){
arr.add_string_element(path);
}
config.set_array_member("exclude",arr);
arr = new Json.Array();
foreach(var name in exclude_app_names){
arr.add_string_element(name);
}
config.set_array_member("exclude-apps",arr);
var json = new Json.Generator();
json.pretty = true;
json.indent = 2;
var node = new Json.Node(NodeType.OBJECT);
node.set_object(config);
json.set_root(node);
try{
json.to_file(this.app_conf_path);
} catch (Error e) {
log_error (e.message);
}
if ((app_mode == "")||(LOG_DEBUG)){
log_msg(_("App config saved") + ": %s".printf(this.app_conf_path));
}
}
public void load_app_config(){
log_debug("Main: load_app_config()");
// check if first run -----------------------
var f = File.new_for_path(this.app_conf_path);
if (!f.query_exists()) {
first_run = true;
log_msg("First run mode (config file not found)");
// load some defaults for first-run based on user's system type
bool supported = sys_subvolumes.has_key("@") && sys_subvolumes.has_key("@home") && cmd_exists("btrfs");
if (supported){
log_msg(_("Selected default snapshot type") + ": %s".printf("BTRFS"));
btrfs_mode = true;
}
else{
log_msg(_("Selected default snapshot type") + ": %s".printf("RSYNC"));
btrfs_mode = false;
}
return;
}
// load settings from config file --------------------------
var parser = new Json.Parser();
try{
parser.load_from_file(this.app_conf_path);
} catch (Error e) {
log_error (e.message);
}
var node = parser.get_root();
var config = node.get_object();
btrfs_mode = json_get_bool(config, "btrfs_mode", false); // false as default
stop_cron_emails = json_get_bool(config, "stop_cron_emails", stop_cron_emails);
if (cmd_btrfs_mode != null){
btrfs_mode = cmd_btrfs_mode; //override
}
backup_uuid = json_get_string(config,"backup_device_uuid", backup_uuid);
backup_parent_uuid = json_get_string(config,"parent_device_uuid", backup_parent_uuid);
this.schedule_monthly = json_get_bool(config,"schedule_monthly",schedule_monthly);
this.schedule_weekly = json_get_bool(config,"schedule_weekly",schedule_weekly);
this.schedule_daily = json_get_bool(config,"schedule_daily",schedule_daily);
this.schedule_hourly = json_get_bool(config,"schedule_hourly",schedule_hourly);
this.schedule_boot = json_get_bool(config,"schedule_boot",schedule_boot);
this.count_monthly = json_get_int(config,"count_monthly",count_monthly);
this.count_weekly = json_get_int(config,"count_weekly",count_weekly);
this.count_daily = json_get_int(config,"count_daily",count_daily);
this.count_hourly = json_get_int(config,"count_hourly",count_hourly);
this.count_boot = json_get_int(config,"count_boot",count_boot);
Main.first_snapshot_size = json_get_int64(config,"snapshot_size", Main.first_snapshot_size);
Main.first_snapshot_count = json_get_int64(config,"snapshot_count", Main.first_snapshot_count);
exclude_list_user.clear();
if (config.has_member ("exclude")){
foreach (Json.Node jnode in config.get_array_member ("exclude").get_elements()) {
string path = jnode.get_string();
if (!exclude_list_user.contains(path)
&& !exclude_list_default.contains(path)
&& !exclude_list_home.contains(path)){
exclude_list_user.add(path);
}
}
}
exclude_app_names.clear();
if (config.has_member ("exclude-apps")){
var apps = config.get_array_member("exclude-apps");
foreach (Json.Node jnode in apps.get_elements()) {
string name = jnode.get_string();
if (!exclude_app_names.contains(name)){
exclude_app_names.add(name);
}
}
}
if ((app_mode == "")||(LOG_DEBUG)){
log_msg(_("App config loaded") + ": %s".printf(this.app_conf_path));
}
}
public void initialize_repo(){
log_debug("Main: initialize_repo()");
log_debug("backup_uuid=%s".printf(backup_uuid));
log_debug("backup_parent_uuid=%s".printf(backup_parent_uuid));
// use system disk as snapshot device in btrfs mode for backup
if (((app_mode == "backup")||((app_mode == "ondemand"))) && btrfs_mode){
if (sys_root != null){
log_msg("Using system disk as snapshot device for creating snapshots in BTRFS mode");
if (cmd_backup_device.length > 0){
log_msg(_("Option --snapshot-device should not be specified for creating snapshots in BTRFS mode"));
}
repo = new SnapshotRepo.from_device(sys_root, parent_window, btrfs_mode);
}
else{
log_error("System disk not found!");
exit_app(1);
}
}
// initialize repo using command line parameter if specified
else if (cmd_backup_device.length > 0){
var cmd_dev = Device.get_device_by_name(cmd_backup_device);
if (cmd_dev != null){
log_debug("Using snapshot device specified as command argument: %s".printf(cmd_backup_device));
repo = new SnapshotRepo.from_device(cmd_dev, parent_window, btrfs_mode);
// TODO: move this code to main window
}
else{
log_error(_("Device not found") + ": '%s'".printf(cmd_backup_device));
exit_app(1);
}
}
// select default device for first run mode
else if (first_run && (backup_uuid.length == 0)){
try_select_default_device_for_backup(parent_window);
if ((repo != null) && (repo.device != null)){
log_msg(_("Selected default snapshot device") + ": %s".printf(repo.device.device));
}
}
else {
log_debug("Setting snapshot device from config file");
// find devices from uuid
Device dev = null;
Device dev_parent = null;
if (backup_uuid.length > 0){
dev = Device.get_device_by_uuid(backup_uuid);
}
if (backup_parent_uuid.length > 0){
dev_parent = Device.get_device_by_uuid(backup_parent_uuid);
}
// try unlocking encrypted parent
if ((dev_parent != null) && dev_parent.is_encrypted_partition() && !dev_parent.has_children()){
log_debug("Snapshot device is on an encrypted partition");
repo = new SnapshotRepo.from_uuid(backup_parent_uuid, parent_window, btrfs_mode);
}
// try device
else if (dev != null){
log_debug("repo: creating from uuid");
repo = new SnapshotRepo.from_uuid(backup_uuid, parent_window, btrfs_mode);
}
// try system disk
else {
log_debug("Could not find device with UUID" + ": %s".printf(backup_uuid));
if (sys_root != null){
log_debug("Using system disk as snapshot device");
repo = new SnapshotRepo.from_device(sys_root, parent_window, btrfs_mode);
}
else{
log_debug("System disk not found");
repo = new SnapshotRepo.from_null();
}
}
}
/* Note: In command-line mode, user will be prompted for backup device */
/* The backup device specified in config file will be mounted at this point if:
* 1) app is running in GUI mode, OR
* 2) app is running command mode without backup device argument
* */
log_debug("Main: initialize_repo(): exit");
}
//core functions
public void update_partitions(){
log_debug("update_partitions()");
partitions.clear();
partitions = Device.get_filesystems();
foreach(var pi in partitions){
// sys_root and sys_home will be detected by detect_system_devices()
if ((repo != null) && (repo.device != null) && (pi.uuid == repo.device.uuid)){
repo.device = pi;
}
if (pi.is_mounted){
pi.dist_info = LinuxDistro.get_dist_info(pi.mount_points[0].mount_point).full_name();
}
}
if (partitions.size == 0){
log_error("ts: " + _("Failed to get partition list."));
}
log_debug("partition list updated");
}
public void detect_system_devices(){
log_debug("detect_system_devices()");
sys_root = null;
sys_boot = null;
sys_efi = null;
sys_home = null;
foreach(Device pi in partitions){
foreach(var mp in pi.mount_points){
// skip loop devices - Fedora Live uses loop devices containing ext4-formatted lvm volumes
if ((pi.type == "loop") || (pi.has_parent() && (pi.parent.type == "loop"))){
continue;
}
if (mp.mount_point == "/"){
sys_root = pi;
if ((app_mode == "")||(LOG_DEBUG)){
string txt = _("/ is mapped to device") + ": %s, UUID=%s".printf(pi.device,pi.uuid);
if (mp.subvolume_name().length > 0){
txt += ", subvol=%s".printf(mp.subvolume_name());
}
log_debug(txt);
}
}
if (mp.mount_point == "/home"){
sys_home = pi;
if ((app_mode == "")||(LOG_DEBUG)){
string txt = _("/home is mapped to device") + ": %s, UUID=%s".printf(pi.device,pi.uuid);
if (mp.subvolume_name().length > 0){
txt += ", subvol=%s".printf(mp.subvolume_name());
}
log_debug(txt);
}
}
if (mp.mount_point == "/boot"){
sys_boot = pi;
if ((app_mode == "")||(LOG_DEBUG)){
string txt = _("/boot is mapped to device") + ": %s, UUID=%s".printf(pi.device,pi.uuid);
if (mp.subvolume_name().length > 0){
txt += ", subvol=%s".printf(mp.subvolume_name());
}
log_debug(txt);
}
}
if (mp.mount_point == "/boot/efi"){
sys_efi = pi;
if ((app_mode == "")||(LOG_DEBUG)){
string txt = _("/boot/efi is mapped to device") + ": %s, UUID=%s".printf(pi.device,pi.uuid);
if (mp.subvolume_name().length > 0){
txt += ", subvol=%s".printf(mp.subvolume_name());
}
log_debug(txt);
}
}
}
}
sys_subvolumes = Subvolume.detect_subvolumes_for_system_by_path("/", parent_window);
}
public bool mount_target_devices(Gtk.Window? parent_win = null){
/* Note:
* Target device will be mounted explicitly to /mnt/timeshift/restore
* Existing mount points are not used since we need to mount other devices in sub-directories
* */
log_debug("mount_target_device()");
if (dst_root == null){
return false;
}
//check and create restore mount point for restore
mount_point_restore = mount_point_app + "/restore";
dir_create(mount_point_restore);
/*var already_mounted = false;
var dev_mounted = Device.get_device_by_path(mount_point_restore);
if ((dev_mounted != null)
&& (dev_mounted.uuid == dst_root.uuid)){
foreach(var mp in dev_mounted.mount_points){
if ((mp.mount_point == mount_point_restore)
&& (mp.mount_options == "subvol=@")){
= true;
return; //already_mounted
}
}
}*/
// unmount
unmount_target_device();
// mount root device
if (dst_root.fstype == "btrfs"){
//check subvolume layout
bool supported = check_btrfs_layout(dst_root, dst_home);
if (!supported && snapshot_to_restore.has_subvolumes()){
string msg = _("The target partition has an unsupported subvolume layout.") + "\n";
msg += _("Only ubuntu-type layouts with @ and @home subvolumes are currently supported.");
if (app_mode == ""){
string title = _("Unsupported Subvolume Layout");
gtk_messagebox(title, msg, null, true);
}
else{
log_error("\n" + msg);
}
return false;
}
}
// mount all devices
foreach (var mnt in mount_list) {
if (mnt.device == null){
continue;
}
// unlock encrypted device
if (mnt.device.is_encrypted_partition()){
// check if unlocked
if (mnt.device.has_children()){
mnt.device = mnt.device.children[0];
}
else{
// prompt user
string msg_out, msg_err;
var dev_unlocked = Device.luks_unlock(
mnt.device, "", "", parent_win, out msg_out, out msg_err);
//exit if not found
if (dev_unlocked == null){
return false;
}
else{
mnt.device = dev_unlocked;
}
}
}
string mount_options = "";
if (mnt.device.fstype == "btrfs"){
if (mnt.mount_point == "/"){
mount_options = "subvol=@";
}
else if (mnt.mount_point == "/home"){
mount_options = "subvol=@home";
}
}
if (!Device.mount(mnt.device.uuid, mount_point_restore + mnt.mount_point, mount_options)){
return false;
}
}
return true;
}
public void unmount_target_device(bool exit_on_error = true){
if (mount_point_restore == null) { return; }
log_debug("unmount_target_device()");
//unmount the target device only if it was mounted by application
if (mount_point_restore.has_prefix(mount_point_app)){ //always true
unmount_device(mount_point_restore, exit_on_error);
}
else{
//don't unmount
}
}
public bool unmount_device(string mount_point, bool exit_on_error = true){
bool is_unmounted = Device.unmount(mount_point);
if (!is_unmounted){
if (exit_on_error){
if (app_mode == ""){
string title = _("Critical Error");
string msg = _("Failed to unmount device!") + "\n" + _("Application will exit");
gtk_messagebox(title, msg, null, true);
}
exit_app(1);
}
}
return is_unmounted;
}
public SnapshotLocationStatus check_backup_location(out string message, out string details){
repo.check_status();
message = repo.status_message;
details = repo.status_details;
return repo.status_code;
}
public bool check_btrfs_volume(Device dev, string subvol_names){
log_debug("check_btrfs_volume():%s".printf(subvol_names));
string mnt_btrfs = mount_point_app + "/btrfs";
dir_create(mnt_btrfs);
if (!dev.is_mounted_at_path("", mnt_btrfs)){
Device.unmount(mnt_btrfs);
Device.mount(dev.uuid, mnt_btrfs, "", true);
}
bool supported = true;
foreach(string subvol_name in subvol_names.split(",")){
supported = supported && dir_exists(path_combine(mnt_btrfs,subvol_name));
}
if (Device.unmount(mnt_btrfs)){
if (dir_exists(mnt_btrfs) && (dir_count(mnt_btrfs) == 0)){
dir_delete(mnt_btrfs);
log_debug(_("Removed mount directory: '%s'").printf(mnt_btrfs));
}
}
return supported;
}
public void try_select_default_device_for_backup(Gtk.Window? parent_win){
log_debug("try_select_default_device_for_backup()");
// check if currently selected device can be used
if (repo.available()){
if (check_device_for_backup(repo.device)){
if (repo.btrfs_mode != btrfs_mode){
// reinitialize
repo = new SnapshotRepo.from_device(repo.device, parent_win, btrfs_mode);
}
return;
}
else{
repo = new SnapshotRepo.from_null();
}
}
update_partitions();
// In BTRFS mode, select the system disk if system disk is BTRFS
if (btrfs_mode && sys_subvolumes.has_key("@")){
var subvol_root = sys_subvolumes["@"];
repo = new SnapshotRepo.from_device(subvol_root.get_device(), parent_win, btrfs_mode);
return;
}
foreach(var dev in partitions){
if (check_device_for_backup(dev)){
repo = new SnapshotRepo.from_device(dev, parent_win, btrfs_mode);
}
else{
continue;
}
}
}
public bool check_device_for_backup(Device dev){
bool ok = false;
if (dev.type == "disk") { return false; }
if (dev.has_children()) { return false; }
if (btrfs_mode && (dev.fstype == "btrfs")){
if (check_btrfs_volume(dev, "@")){
return true;
}
}
else if (!btrfs_mode && dev.has_linux_filesystem()){
// TODO: check free space
return true;
}
return ok;
}
public int64 estimate_system_size(){
log_debug("estimate_system_size()");
if (Main.first_snapshot_size > 0){
return Main.first_snapshot_size;
}
else if (live_system()){
return 0;
}
try {
thread_estimate_running = true;
thr_success = false;
Thread.create<void> (estimate_system_size_thread, true);
} catch (ThreadError e) {
thread_estimate_running = false;
thr_success = false;
log_error (e.message);
}
while (thread_estimate_running){
gtk_do_events ();
Thread.usleep((ulong) GLib.TimeSpan.MILLISECOND * 100);
}
save_app_config();
log_debug("estimate_system_size(): ok");
return Main.first_snapshot_size;
}
public void estimate_system_size_thread(){
thread_estimate_running = true;
string cmd = "";
string std_out;
string std_err;
int ret_val;
int64 required_space = 0;
int64 file_count = 0;
try{
log_debug("Using temp dir '%s'".printf(TEMP_DIR));
string file_exclude_list = path_combine(TEMP_DIR, "exclude.list");
var f = File.new_for_path(file_exclude_list);
if (f.query_exists()){
f.delete();
}
string file_log = path_combine(TEMP_DIR, "rsync.log");
f = File.new_for_path(file_log);
if (f.query_exists()){
f.delete();
}
string dir_empty = path_combine(TEMP_DIR, "empty");
f = File.new_for_path(dir_empty);
if (!f.query_exists()){
dir_create(dir_empty);
}
save_exclude_list_for_backup(TEMP_DIR);
cmd = "LC_ALL=C ; rsync -ai --delete --numeric-ids --relative --stats --dry-run --delete-excluded --exclude-from='%s' /. '%s' &> '%s'".printf(file_exclude_list, dir_empty, file_log);
log_debug(cmd);
ret_val = exec_script_sync(cmd, out std_out, out std_err);
if (file_exists(file_log)){
cmd = "cat '%s' | awk '/Total file size/ {print $4}'".printf(file_log);
ret_val = exec_script_sync(cmd, out std_out, out std_err);
if (ret_val == 0){
required_space = long.parse(std_out.replace(",","").strip());
cmd = "wc -l '%s'".printf(escape_single_quote(file_log));
ret_val = exec_script_sync(cmd, out std_out, out std_err);
if (ret_val == 0){
file_count = long.parse(std_out.split(" ")[0].strip());
}
thr_success = true;
}
else{
log_error (_("Failed to estimate system size"));
log_error (std_err);
thr_success = false;
}
}
else{
log_error (_("Failed to estimate system size"));
log_error (std_err);
log_error (std_out);
thr_success = false;
}
}
catch(Error e){
log_error (e.message);
thr_success = false;
}
if ((required_space == 0) && (sys_root != null)){
required_space = sys_root.used_bytes;
}
Main.first_snapshot_size = required_space;
Main.first_snapshot_count = file_count;
log_debug("First snapshot size: %s".printf(format_file_size(required_space)));
log_debug("File count: %lld".printf(first_snapshot_count));
thread_estimate_running = false;
}
// cron jobs
public void cron_job_update(){
if (live_system()) { return; }
string entry = "timeshift --backup";
int count = 0;
while (CronTab.has_job(entry, true, false)){
CronTab.remove_job(entry, true, true);
if (++count == 100){
break;
}
}
entry = "timeshift-btrfs --backup";
count = 0;
while (CronTab.has_job(entry, true, false)){
CronTab.remove_job(entry, true, true);
if (++count == 100){
break;
}
}
if (scheduled){
CronTab.add_script_file("timeshift-hourly", "hourly", "timeshift --check", stop_cron_emails);
if (schedule_boot){
CronTab.add_script_file("timeshift-boot", "d", "@reboot root sleep 10m && timeshift --create --tags B", stop_cron_emails);
}
else{
CronTab.remove_script_file("timeshift-boot", "d");
}
}
else{
CronTab.remove_script_file("timeshift-hourly", "hourly");
CronTab.remove_script_file("timeshift-boot", "d");
}
}
// cleanup
public void clean_logs(){
log_debug("clean_logs()");
Gee.ArrayList<string> list = new Gee.ArrayList<string>();
try{
var dir = File.new_for_path (log_dir);
var enumerator = dir.enumerate_children ("*", 0);
var info = enumerator.next_file ();
string path;
while (info != null) {
if (info.get_file_type() == FileType.REGULAR) {
path = log_dir + "/" + info.get_name();
if (path != log_file) {
list.add(path);
}
}
info = enumerator.next_file ();
}
CompareDataFunc<string> compare_func = (a, b) => {
return strcmp(a,b);
};
list.sort((owned) compare_func);
if (list.size > 500){
for(int k=0; k<100; k++){
var file = File.new_for_path (list[k]);
if (file.query_exists()){
file.delete();
}
}
log_msg(_("Older log files removed"));
}
}
catch(Error e){
log_error (e.message);
}
}
public void exit_app (int exit_code = 0){
log_debug("exit_app()");
if (app_mode == ""){
//update app config only in GUI mode
save_app_config();
}
cron_job_update();
unmount_target_device(false);
clean_logs();
app_lock.remove();
exit(exit_code);
//Gtk.main_quit ();
}
}
|