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
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/* Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T */
/* All Rights Reserved */
/*
* Portions of this source code were derived from Berkeley 4.3 BSD
* under license from the Regents of the University of California.
*/
#include "dump.h"
#include <rmt.h>
#include <setjmp.h>
#include <sys/fdio.h>
#include <sys/mkdev.h>
#include <assert.h>
#include <limits.h>
#define SLEEPMS 50
static uint_t writesize; /* size of malloc()ed buffer for tape */
static ino_t inos[TP_NINOS]; /* starting inodes on each tape */
/*
* The req structure is used to pass commands from the parent
* process through the pipes to the slave processes. It comes
* in two flavors, depending on which mode dump is operating under:
* an inode request (on-line mode) and a disk block request ("old" mode).
*/
/*
* The inode request structure is used during on-line mode.
* The master passes inode numbers and starting offsets to
* the slaves. The tape writer passes out the current inode,
* offset, and number of tape records written after completing a volume.
*/
struct ireq {
ino_t inumber; /* inode number to open/dump */
long igen; /* inode generation number */
off_t offset; /* starting offset in inode */
int count; /* count for 1st spclrec */
};
/*
* The block request structure is used in off-line mode to pass
* commands to dump disk blocks from the parent process through
* the pipes to the slave processes.
*/
struct breq {
diskaddr_t dblk; /* disk address to read */
size_t size; /* number of bytes to read from disk */
ulong_t spclrec[1]; /* actually longer */
};
struct req {
short aflag; /* write data to archive process as well */
short tflag; /* begin new tape */
union reqdata {
struct ireq ino; /* used for on-line mode */
struct breq blks; /* used for off-line mode */
} data;
};
#define ir_inumber data.ino.inumber
#define ir_igen data.ino.igen
#define ir_offset data.ino.offset
#define ir_count data.ino.count
#define br_dblk data.blks.dblk
#define br_size data.blks.size
#define br_spcl data.blks.spclrec
static int reqsiz = 0; /* alloctape will initialize */
#define SLAVES 3
struct slaves {
int sl_slavefd; /* pipe from master to slave */
pid_t sl_slavepid; /* slave pid; used by killall() */
ino_t sl_inos; /* inos, if this record starts tape */
int sl_offset; /* logical blocks written for object */
int sl_count; /* logical blocks left in spclrec */
int sl_tapea; /* header number, if starting tape */
int sl_firstrec; /* number of first block on tape */
int sl_state; /* dump output state */
struct req *sl_req; /* instruction packet to slave */
};
static struct slaves slaves[SLAVES]; /* one per slave */
static struct slaves *slp; /* pointer to current slave */
static struct slaves chkpt; /* checkpointed data */
struct bdesc {
char *b_data; /* pointer to buffer data */
int b_flags; /* flags (see below) */
};
/*
* The following variables are in shared memory, and must be
* explicitly checkpointed and/or reset.
*/
static caddr_t shared; /* pointer to block of shared memory */
static struct bdesc *bufp; /* buffer descriptors */
static struct bdesc **current; /* output buffer to fill */
static int *tapea; /* logical record count */
#ifdef INSTRUMENT
static int *readmissp; /* number of times writer was idle */
static int *idle; /* number of times slaves were idle */
#endif /* INSTRUMENT */
/*
* Buffer flags
*/
#define BUF_EMPTY 0x0 /* nothing in buffer */
#define BUF_FULL 0x1 /* data in buffer */
#define BUF_SPCLREC 0x2 /* contains special record */
#define BUF_ARCHIVE 0x4 /* dump to archive */
static int recsout; /* number of req's sent to slaves */
static int totalrecsout; /* total number of req's sent to slaves */
static int rotor; /* next slave to be instructed */
static pid_t master; /* pid of master, for sending error signals */
static int writer = -1; /* fd of tape writer */
static pid_t writepid; /* pid of tape writer */
static int arch; /* fd of output archiver */
static pid_t archivepid; /* pid of output archiver */
static int archivefd; /* fd of archive file (proper) */
static offset_t lf_archoffset; /* checkpointed offset into archive file */
int caught; /* caught signal -- imported by mapfile() */
#ifdef DEBUG
extern int xflag;
#endif
#ifdef __STDC__
static void cmdwrterr(void);
static void cmdrderr(void);
static void freetape(void);
static void bufclear(void);
static pid_t setuparchive(void);
static pid_t setupwriter(void);
static void nextslave(void);
static void tperror(int);
static void rollforward(int);
static void nap(int);
static void alrm(int);
static void just_rewind(void);
static void killall(void);
static void proceed(int);
static void die(int);
static void enslave(void);
static void wait_our_turn(void);
static void dumpoffline(int, pid_t, int);
static void onxfsz(int);
static void dowrite(int);
static void checkpoint(struct bdesc *, int);
static ssize_t atomic(int (*)(), int, char *, int);
#else
static void cmdwrterr();
static void cmdrderr();
static void freetape();
static void bufclear();
static pid_t setuparchive();
static pid_t setupwriter();
static void nextslave();
static void tperror();
static void rollforward();
static void nap();
static void alrm();
static void just_rewind();
static void killall();
static void proceed();
static void die();
static void enslave();
static void wait_our_turn();
static void dumpoffline();
static void onxfsz();
static void dowrite();
static void checkpoint();
static ssize_t atomic();
#endif
static size_t tapesize;
/*
* Allocate buffers and shared memory variables. Tape buffers are
* allocated on page boundaries for tape write() efficiency.
*/
void
#ifdef __STDC__
#else
#endif
alloctape(void)
{
struct slaves *slavep;
ulong_t pgoff = (unsigned)(getpagesize() - 1); /* 2**n - 1 */
int mapfd;
char *obuf;
int saverr;
int i, j;
writesize = ntrec * tp_bsize;
if (!printsize)
msg(gettext("Writing %d Kilobyte records\n"),
writesize / TP_BSIZE_MIN);
/*
* set up shared memory seg for here and child
*/
mapfd = open("/dev/zero", O_RDWR);
if (mapfd == -1) {
saverr = errno;
msg(gettext("Cannot open `%s': %s\n"),
"/dev/zero", strerror(saverr));
dumpabort();
/*NOTREACHED*/
}
/*
* Allocate space such that buffers are page-aligned and
* pointers are aligned on 4-byte boundaries (for SPARC).
* This code assumes that (NBUF * writesize) is a multiple
* of the page size and that pages are aligned on 4-byte
* boundaries. Space is allocated as follows:
*
* (NBUF * writesize) for the actual buffers
* (pagesize - 1) for padding so the buffers are page-aligned
* (NBUF * ntrec * sizeof (struct bdesc)) for each buffer
* (n * sizeof (int)) for [n] debugging variables/pointers
* (n * sizeof (int)) for [n] miscellaneous variables/pointers
*/
tapesize =
(NBUF * writesize) /* output buffers */
/* LINTED: pgoff fits into a size_t */
+ (size_t)pgoff /* page alignment */
/* buffer descriptors */
+ (((size_t)sizeof (struct bdesc)) * NBUF * ntrec)
#ifdef INSTRUMENT
+ (2 * (size_t)sizeof (int *)) /* instrumentation */
#endif
/* shared variables */
+ (size_t)sizeof (struct bdesc **)
+ (size_t)sizeof (int *)
+ (3 * (size_t)sizeof (time_t));
shared = mmap((char *)0, tapesize, PROT_READ|PROT_WRITE,
MAP_SHARED, mapfd, (off_t)0);
if (shared == (caddr_t)-1) {
saverr = errno;
msg(gettext("Cannot memory map output buffers: %s\n"),
strerror(saverr));
dumpabort();
/*NOTREACHED*/
}
(void) close(mapfd);
/*
* Buffers and buffer headers
*/
obuf = (char *)(((ulong_t)shared + pgoff) & ~pgoff);
/* LINTED obuf and writesize are aligned */
bufp = (struct bdesc *)(obuf + NBUF*writesize);
/*
* Shared memory variables
*/
current = (struct bdesc **)&bufp[NBUF*ntrec];
tapea = (int *)(current + 1);
/* LINTED pointer alignment ok */
telapsed = (time_t *)(tapea + 1);
tstart_writing = telapsed + 1;
tschedule = tstart_writing + 1;
#ifdef INSTRUMENT
/*
* Debugging and instrumentation variables
*/
readmissp = (int *)(tschedule + 1);
idle = readmissp + 1;
#endif
for (i = 0, j = 0; i < NBUF * ntrec; i++, j += tp_bsize) {
bufp[i].b_data = &obuf[j];
}
reqsiz = sizeof (struct req) + tp_bsize - sizeof (long);
for (slavep = slaves; slavep < &slaves[SLAVES]; slavep++)
slavep->sl_req = (struct req *)xmalloc(reqsiz);
chkpt.sl_offset = 0; /* start at offset 0 */
chkpt.sl_count = 0;
chkpt.sl_inos = UFSROOTINO; /* in root inode */
chkpt.sl_firstrec = 1;
chkpt.sl_tapea = 0;
}
static void
#ifdef __STDC__
freetape(void)
#else
freetape()
#endif
{
if (shared == NULL)
return;
(void) timeclock((time_t)0);
(void) munmap(shared, tapesize);
shared = NULL;
}
/*
* Reset tape state variables -- called
* before a pass to dump active files.
*/
void
#ifdef __STDC__
reset(void)
#else
reset()
#endif
{
bufclear();
#ifdef INSTRUMENT
(*readmissp) = 0;
(*idle) = 0;
#endif
spcl.c_flags = 0;
spcl.c_volume = 0;
tapeno = 0;
chkpt.sl_offset = 0; /* start at offset 0 */
chkpt.sl_count = 0;
chkpt.sl_inos = UFSROOTINO; /* in root inode */
chkpt.sl_firstrec = 1;
chkpt.sl_tapea = 0;
}
static void
#ifdef __STDC__
bufclear(void)
#else
bufclear()
#endif
{
struct bdesc *bp;
int i;
for (i = 0, bp = bufp; i < NBUF * ntrec; i++, bp++)
bp->b_flags = BUF_EMPTY;
if ((caddr_t)current < shared ||
(caddr_t)current > (shared + tapesize)) {
msg(gettext(
"bufclear: current pointer out of range of shared memory\n"));
dumpabort();
/*NOTREACHED*/
}
if ((*current != NULL) &&
(*current < &bufp[0] || *current > &bufp[NBUF*ntrec])) {
/* ANSI string catenation, to shut cstyle up */
msg(gettext("bufclear: current buffer pointer (0x%x) "
"out of range of buffer\naddresses (0x%x - 0x%x)\n"),
*current, &bufp[0], &bufp[NBUF*ntrec]);
dumpabort();
/*NOTREACHED*/
}
*current = bufp;
}
/*
* Start a process to collect information describing the dump.
* This data takes two forms:
* the bitmap and directory information being written to
* the front of the tape (the "archive" file)
* information describing each directory and inode (to
* be included in the database tmp file)
* Write the data to the files as it is received so huge file
* systems don't cause dump to consume large amounts of memory.
*/
static pid_t
setuparchive(void)
{
struct slaves *slavep;
int cmd[2];
pid_t pid;
ssize_t size;
char *data;
char *errmsg;
int flags, saverr;
int punt = 0;
/*
* Both the archive and database tmp files are
* checkpointed by taking their current offsets
* (sizes) after completing each volume. Restoring
* from a checkpoint involves truncating to the
* checkpointed size.
*/
if (archive && !doingactive) {
/* It's allowed/expected to exist, so can't use O_EXCL */
archivefd = safe_file_open(archivefile, O_WRONLY, 0600);
if (archivefd < 0) {
saverr = errno;
msg(gettext("Cannot open archive file `%s': %s\n"),
archivefile, strerror(saverr));
dumpabort();
/*NOTREACHED*/
}
archive_opened = 1;
if (lseek64(archivefd, lf_archoffset, 0) < 0) {
saverr = errno;
msg(gettext(
"Cannot position archive file `%s' : %s\n"),
archivefile, strerror(saverr));
dumpabort();
/*NOTREACHED*/
}
if (ftruncate64(archivefd, lf_archoffset) < 0) {
saverr = errno;
msg(gettext(
"Cannot truncate archive file `%s' : %s\n"),
archivefile, strerror(saverr));
dumpabort();
/*NOTREACHED*/
}
}
if (pipe(cmd) < 0) {
saverr = errno;
msg(gettext("%s: %s error: %s\n"),
"setuparchive", "pipe", strerror(saverr));
return (0);
}
sighold(SIGINT);
if ((pid = fork()) < 0) {
saverr = errno;
msg(gettext("%s: %s error: %s\n"),
"setuparchive", "fork", strerror(saverr));
return (0);
}
if (pid > 0) {
sigrelse(SIGINT);
/* parent process */
(void) close(cmd[0]);
arch = cmd[1];
return (pid);
}
/*
* child process
*/
(void) signal(SIGINT, SIG_IGN); /* master handles this */
#ifdef TDEBUG
(void) sleep(4); /* allow time for parent's message to get out */
/* XGETTEXT: #ifdef TDEBUG only */
msg(gettext("Archiver has pid = %ld\n"), (long)getpid());
#endif
freeino(); /* release unneeded resources */
freetape();
for (slavep = &slaves[0]; slavep < &slaves[SLAVES]; slavep++) {
if (slavep->sl_slavefd != -1) {
(void) close(slavep->sl_slavefd);
slavep->sl_slavefd = -1;
}
}
(void) close(to);
(void) close(fi);
to = fi = -1;
(void) close(cmd[1]);
data = xmalloc(tp_bsize);
for (;;) {
size = atomic((int(*)())read, cmd[0], (char *)&flags,
sizeof (flags));
if ((unsigned)size != sizeof (flags))
break;
size = atomic((int(*)())read, cmd[0], data, tp_bsize);
if (size == tp_bsize) {
if (archive && flags & BUF_ARCHIVE && !punt &&
(size = write(archivefd, data, tp_bsize))
!= tp_bsize) {
struct stat64 stats;
if (size != -1) {
errmsg = strdup(gettext(
"Output truncated"));
if (errmsg == NULL)
errmsg = "";
} else {
errmsg = strerror(errno);
}
if (fstat64(archivefd, &stats) < 0)
stats.st_size = -1;
/* cast to keep lint&printf happy */
msg(gettext(
"Cannot write archive file `%s' at offset %lld: %s\n"),
archivefile, (longlong_t)stats.st_size,
errmsg);
msg(gettext(
"Archive file will be deleted, dump will continue\n"));
punt++;
if ((size != -1) && (*errmsg != '\0')) {
free(errmsg);
}
}
} else {
break;
}
}
(void) close(cmd[0]);
if (archive) {
(void) close(archivefd);
archivefd = -1;
}
if (punt) {
(void) unlink(archivefile);
Exit(X_ABORT);
}
Exit(X_FINOK);
/* NOTREACHED */
return (0);
}
/*
* Start a process to read the output buffers and write the data
* to the output device.
*/
static pid_t
setupwriter(void)
{
struct slaves *slavep;
int cmd[2];
pid_t pid;
int saverr;
caught = 0;
if (pipe(cmd) < 0) {
saverr = errno;
msg(gettext("%s: %s error: %s\n"),
"setupwriter", "pipe", strerror(saverr));
return (0);
}
sighold(SIGINT);
if ((pid = fork()) < 0) {
saverr = errno;
msg(gettext("%s: %s error: %s\n"),
"setupwriter", "fork", strerror(saverr));
return (0);
}
if (pid > 0) {
/*
* Parent process
*/
sigrelse(SIGINT);
(void) close(cmd[0]);
writer = cmd[1];
return (pid);
}
/*
* Child (writer) process
*/
(void) signal(SIGINT, SIG_IGN); /* master handles this */
#ifdef TDEBUG
(void) sleep(4); /* allow time for parent's message to get out */
/* XGETTEXT: #ifdef TDEBUG only */
msg(gettext("Writer has pid = %ld\n"), (long)getpid());
#endif
child_chdir();
freeino(); /* release unneeded resources */
for (slavep = &slaves[0]; slavep < &slaves[SLAVES]; slavep++) {
if (slavep->sl_slavefd != -1) {
(void) close(slavep->sl_slavefd);
slavep->sl_slavefd = -1;
}
}
(void) close(fi);
fi = -1;
(void) close(cmd[1]);
dowrite(cmd[0]);
if (arch >= 0) {
(void) close(arch);
arch = -1;
}
(void) close(cmd[0]);
Exit(X_FINOK);
/* NOTREACHED */
return (0);
}
void
#ifdef __STDC__
spclrec(void)
#else
spclrec()
#endif
{
int s, i;
int32_t *ip;
int flags = BUF_SPCLREC;
if ((BIT(ino, shamap)) && (spcl.c_type == TS_INODE)) {
spcl.c_type = TS_ADDR;
/* LINTED: result fits in a short */
spcl.c_dinode.di_mode &= ~S_IFMT;
/* LINTED: result fits in a short */
spcl.c_dinode.di_mode |= IFSHAD;
}
/*
* Only TS_INODEs should have short metadata, if this
* isn't such a spclrec, clear the metadata flag and
* the c_shadow contents.
*/
if (!(spcl.c_type == TS_INODE && (spcl.c_flags & DR_HASMETA))) {
spcl.c_flags &= ~DR_HASMETA;
bcopy(c_shadow_save, &(spcl.c_shadow),
sizeof (spcl.c_shadow));
}
if (spcl.c_type == TS_END) {
spcl.c_count = 1;
spcl.c_flags |= DR_INODEINFO;
bcopy((char *)inos, (char *)spcl.c_inos, sizeof (inos));
} else if (spcl.c_type == TS_TAPE) {
spcl.c_flags |= DR_NEWHEADER;
if (doingactive)
spcl.c_flags |= DR_REDUMP;
} else if (spcl.c_type != TS_INODE)
flags = BUF_SPCLREC;
spcl.c_tapea = *tapea;
/* LINTED for now, max inode # is 2**31 (ufs max size is 4TB) */
spcl.c_inumber = (ino32_t)ino;
spcl.c_magic = (tp_bsize == TP_BSIZE_MIN) ? NFS_MAGIC : MTB_MAGIC;
spcl.c_checksum = 0;
ip = (int32_t *)&spcl;
s = CHECKSUM;
assert((tp_bsize % sizeof (*ip)) == 0);
i = tp_bsize / sizeof (*ip);
assert((i%8) == 0);
i /= 8;
do {
s -= *ip++; s -= *ip++; s -= *ip++; s -= *ip++;
s -= *ip++; s -= *ip++; s -= *ip++; s -= *ip++;
} while (--i > 0);
spcl.c_checksum = s;
taprec((uchar_t *)&spcl, flags, sizeof (spcl));
if (spcl.c_type == TS_END)
spcl.c_flags &= ~DR_INODEINFO;
else if (spcl.c_type == TS_TAPE)
spcl.c_flags &= ~(DR_NEWHEADER|DR_REDUMP|DR_TRUEINC);
}
/*
* Fill appropriate buffer
*/
void
taprec(uchar_t *dp, int flags, int size)
{
if (size > tp_bsize) {
msg(gettext(
"taprec: Unexpected buffer size, expected %d, got %d.\n"),
tp_bsize, size);
dumpabort();
/*NOTREACHED*/
}
while ((*current)->b_flags & BUF_FULL)
nap(10);
bcopy(dp, (*current)->b_data, (size_t)size);
if (size < tp_bsize) {
bzero((*current)->b_data + size, tp_bsize - size);
}
if (dumptoarchive)
flags |= BUF_ARCHIVE;
/* no locking as we assume only one reader and one writer active */
(*current)->b_flags = (flags | BUF_FULL);
if (++*current >= &bufp[NBUF*ntrec])
(*current) = &bufp[0];
(*tapea)++;
}
void
dmpblk(daddr32_t blkno, size_t size, off_t offset)
{
diskaddr_t dblkno;
assert((offset >> DEV_BSHIFT) <= INT32_MAX);
dblkno = fsbtodb(sblock, blkno) + (offset >> DEV_BSHIFT);
size = (size + DEV_BSIZE-1) & ~(DEV_BSIZE-1);
slp->sl_req->br_dblk = dblkno;
slp->sl_req->br_size = size;
if (dumptoarchive) {
/* LINTED: result fits in a short */
slp->sl_req->aflag |= BUF_ARCHIVE;
}
toslave((void(*)())0, ino);
}
/*ARGSUSED*/
static void
tperror(int sig)
{
char buf[3000];
if (pipeout) {
msg(gettext("Write error on %s\n"), tape);
msg(gettext("Cannot recover\n"));
dumpabort();
/* NOTREACHED */
}
if (!doingverify) {
broadcast(gettext("WRITE ERROR!\n"));
(void) snprintf(buf, sizeof (buf),
gettext("Do you want to restart?: (\"yes\" or \"no\") "));
if (!query(buf)) {
dumpabort();
/*NOTREACHED*/
}
if (tapeout && (isrewind(to) || offline)) {
/* ANSI string catenation, to shut cstyle up */
msg(gettext("This tape will rewind. After "
"it is rewound,\nreplace the faulty tape "
"with a new one;\nthis dump volume will "
"be rewritten.\n"));
}
} else {
broadcast(gettext("TAPE VERIFICATION ERROR!\n"));
(void) snprintf(buf, sizeof (buf), gettext(
"Do you want to rewrite?: (\"yes\" or \"no\") "));
if (!query(buf)) {
dumpabort();
/*NOTREACHED*/
}
msg(gettext(
"This tape will be rewritten and then verified\n"));
}
killall();
trewind();
Exit(X_REWRITE);
}
/*
* Called by master from pass() to send a request to dump files/blocks
* to one of the slaves. Slaves return whether the file was active
* when it was being dumped. The tape writer process sends checkpoint
* info when it completes a volume.
*/
void
toslave(void (*fn)(), ino_t inumber)
{
int wasactive;
if (recsout >= SLAVES) {
if ((unsigned)atomic((int(*)())read, slp->sl_slavefd,
(char *)&wasactive, sizeof (wasactive)) !=
sizeof (wasactive)) {
cmdrderr();
dumpabort();
/*NOTREACHED*/
}
if (wasactive) {
active++;
msg(gettext(
"The file at inode `%lu' was active and will be recopied\n"),
slp->sl_req->ir_inumber);
/* LINTED: 32-bit to 8-bit assignment ok */
BIS(slp->sl_req->ir_inumber, activemap);
}
}
slp->sl_req->aflag = 0;
if (dumptoarchive) {
/* LINTED: result fits in a short */
slp->sl_req->aflag |= BUF_ARCHIVE;
}
if (fn)
(*fn)(inumber);
if (atomic((int(*)())write, slp->sl_slavefd, (char *)slp->sl_req,
reqsiz) != reqsiz) {
cmdwrterr();
dumpabort();
/*NOTREACHED*/
}
++recsout;
nextslave();
}
void
dospcl(ino_t inumber)
{
/* LINTED for now, max inode # is 2**31 (ufs max size is 1TB) */
spcl.c_inumber = (ino32_t)inumber;
slp->sl_req->br_dblk = 0;
bcopy((char *)&spcl, (char *)slp->sl_req->br_spcl, tp_bsize);
}
static void
#ifdef __STDC__
nextslave(void)
#else
nextslave()
#endif
{
if (++rotor >= SLAVES) {
rotor = 0;
}
slp = &slaves[rotor];
}
void
#ifdef __STDC__
flushcmds(void)
#else
flushcmds()
#endif
{
int i;
int wasactive;
/*
* Retrieve all slave status
*/
if (recsout < SLAVES) {
slp = slaves;
rotor = 0;
}
for (i = 0; i < (recsout < SLAVES ? recsout : SLAVES); i++) {
if ((unsigned)atomic((int(*)())read, slp->sl_slavefd,
(char *)&wasactive, sizeof (wasactive)) !=
sizeof (wasactive)) {
cmdrderr();
dumpabort();
/*NOTREACHED*/
}
if (wasactive) {
active++;
msg(gettext(
"inode %d was active and will be recopied\n"),
slp->sl_req->ir_inumber);
/* LINTED: 32-bit to 8-bit assignment ok */
BIS(slp->sl_req->ir_inumber, activemap);
}
nextslave();
}
}
void
#ifdef __STDC__
flusht(void)
#else
flusht()
#endif
{
sigset_t block_set, oset; /* hold SIGUSR1 and atomically sleep */
(void) sigemptyset(&block_set);
(void) sigaddset(&block_set, SIGUSR1);
(void) sigprocmask(SIG_BLOCK, &block_set, &oset);
(void) kill(writepid, SIGUSR1); /* tell writer to flush */
(void) sigpause(SIGUSR1); /* wait for SIGUSR1 from writer */
/*NOTREACHED*/
}
jmp_buf checkpoint_buf;
/*
* Roll forward to the next volume after receiving
* an EOT signal from writer. Get checkpoint data
* from writer and return if done, otherwise fork
* a new process and jump back to main state loop
* to begin the next volume. Installed as the master's
* signal handler for SIGUSR1.
*/
/*ARGSUSED*/
static void
rollforward(int sig)
{
int status;
(void) sighold(SIGUSR1);
/*
* Writer sends us checkpoint information after
* each volume. A returned state of DS_DONE with no
* unwritten (left-over) records differentiates a
* clean flush from one in which EOT was encountered.
*/
if ((unsigned)atomic((int(*)())read, writer, (char *)&chkpt,
sizeof (struct slaves)) != sizeof (struct slaves)) {
cmdrderr();
dumpabort();
/*NOTREACHED*/
}
if (atomic((int(*)())read, writer, (char *)&spcl,
TP_BSIZE_MIN) != TP_BSIZE_MIN) {
cmdrderr();
dumpabort();
/*NOTREACHED*/
}
ino = chkpt.sl_inos - 1;
pos = chkpt.sl_offset;
leftover = chkpt.sl_count;
dumpstate = chkpt.sl_state;
blockswritten = ++chkpt.sl_tapea;
if (dumpstate == DS_DONE) {
if (archivepid) {
/*
* If archiving (either archive or
* database), signal the archiver
* to finish up. This must happen
* before the writer exits in order
* to avoid a race.
*/
(void) kill(archivepid, SIGUSR1);
}
(void) signal(SIGUSR1, SIG_IGN);
(void) sigrelse(SIGUSR1);
(void) kill(writepid, SIGUSR1); /* tell writer to exit */
lf_archoffset = 0LL;
longjmp(checkpoint_buf, 1);
/*NOTREACHED*/
}
if (leftover) {
(void) memmove(spcl.c_addr,
&spcl.c_addr[spcl.c_count-leftover], leftover);
bzero(&spcl.c_addr[leftover], TP_NINDIR-leftover);
}
if (writepid) {
(void) kill(writepid, SIGUSR1); /* tell writer to exit */
(void) close(writer);
writer = -1;
}
if (archivepid) {
(void) waitpid(archivepid, &status, 0); /* wait for archiver */
#ifdef TDEBUG
/* XGETTEXT: #ifdef TDEBUG only */
msg(gettext("Archiver %ld returns with status %d\n"),
(long)archivepid, status);
#endif
archivepid = 0;
}
/*
* Checkpoint archive file
*/
if (!doingverify && archive) {
lf_archoffset = lseek64(archivefd, (off64_t)0, 2);
if (lf_archoffset < 0) {
int saverr = errno;
msg(gettext("Cannot position archive file `%s': %s\n"),
archivefile, strerror(saverr));
dumpabort();
/*NOTREACHED*/
}
(void) close(archivefd);
archivefd = -1;
}
resetino(ino);
if (dumpstate == DS_START) {
msg(gettext(
"Tape too short: changing volumes and restarting\n"));
reset();
}
if (!pipeout) {
if (verify && !doingverify)
trewind();
else {
close_rewind();
changevol();
}
}
(void) sigrelse(SIGUSR1);
otape(0);
longjmp(checkpoint_buf, 1);
/*NOTREACHED*/
}
static void
nap(int ms)
{
struct timeval tv;
tv.tv_sec = ms / 1000;
tv.tv_usec = (ms - tv.tv_sec * 1000) * 1000;
(void) select(0, (fd_set *)0, (fd_set *)0, (fd_set *)0, &tv);
}
static jmp_buf alrm_buf;
/*ARGSUSED*/
static void
alrm(int sig)
{
longjmp(alrm_buf, 1);
/*NOTREACHED*/
}
void
#ifdef __STDC__
nextdevice(void)
#else
nextdevice()
#endif
{
char *cp;
if (host != NULL) /* we set the host only once in ufsdump */
return;
host = NULL;
if (strchr(tape, ':')) {
if (diskette) {
msg(gettext("Cannot do remote dump to diskette\n"));
Exit(X_ABORT);
}
host = tape;
tape = strchr(host, ':');
*tape++ = 0;
cp = strchr(host, '@'); /* user@host? */
if (cp != (char *)0)
cp++;
else
cp = host;
} else
cp = spcl.c_host;
/*
* dumpdev is provided for use in prompts and is of
* the form:
* hostname:device
* sdumpdev is of the form:
* hostname:device
* for remote devices, and simply:
* device
* for local devices.
*/
if (dumpdev != (char *)NULL) {
/* LINTED: dumpdev is not NULL */
free(dumpdev);
}
/*LINTED [cast to smaller integer]*/
dumpdev = xmalloc((size_t)((sizeof (spcl.c_host) + strlen(tape) + 2)));
/* LINTED unsigned -> signed cast ok */
(void) sprintf(dumpdev, "%.*s:%s", (int)sizeof (spcl.c_host), cp, tape);
if (cp == spcl.c_host)
sdumpdev = strchr(dumpdev, ':') + 1;
else
sdumpdev = dumpdev;
}
/*
* Gross hack due to misfeature of mt tape driver that causes
* the device to rewind if we generate any signals. Guess
* whether tape is rewind device or not -- for local devices
* we can just look at the minor number. For rmt devices,
* make an educated guess.
*/
int
isrewind(int f)
{
struct stat64 sbuf;
char *c;
int unit;
int rewind;
if (host) {
c = strrchr(tape, '/');
if (c == NULL)
c = tape;
else
c++;
/*
* If the last component begins or ends with an 'n', it is
* assumed to be a non-rewind device.
*/
if (c[0] == 'n' || c[strlen(c)-1] == 'n')
rewind = 0;
else if ((strstr(tape, "mt") || strstr(tape, "st")) &&
sscanf(tape, "%*[a-zA-Z/]%d", &unit) == 1 &&
(unit & MT_NOREWIND))
rewind = 0;
else
rewind = 1;
} else {
if (fstat64(f, &sbuf) < 0) {
msg(gettext(
"Cannot obtain status of output device `%s'\n"),
tape);
dumpabort();
/*NOTREACHED*/
}
rewind = minor(sbuf.st_rdev) & MT_NOREWIND ? 0 : 1;
}
return (rewind);
}
static void
#ifdef __STDC__
just_rewind(void)
#else
just_rewind()
#endif
{
struct slaves *slavep;
char *rewinding = gettext("Tape rewinding\n");
for (slavep = &slaves[0]; slavep < &slaves[SLAVES]; slavep++) {
if (slavep->sl_slavepid > 0) /* signal normal exit */
(void) kill(slavep->sl_slavepid, SIGTERM);
if (slavep->sl_slavefd >= 0) {
(void) close(slavep->sl_slavefd);
slavep->sl_slavefd = -1;
}
}
/* wait for any signals from slaves */
while (waitpid(0, (int *)0, 0) >= 0)
/*LINTED [empty body]*/
continue;
if (pipeout)
return;
if (doingverify) {
/*
* Space to the end of the tape.
* Backup first in case we already read the EOF.
*/
if (host) {
(void) rmtioctl(MTBSR, 1);
if (rmtioctl(MTEOM, 1) < 0)
(void) rmtioctl(MTFSF, 1);
} else {
static struct mtop bsr = { MTBSR, 1 };
static struct mtop eom = { MTEOM, 1 };
static struct mtop fsf = { MTFSF, 1 };
(void) ioctl(to, MTIOCTOP, &bsr);
if (ioctl(to, MTIOCTOP, &eom) < 0)
(void) ioctl(to, MTIOCTOP, &fsf);
}
}
/*
* Guess whether the tape is rewinding so we can tell
* the operator if it's going to take a long time.
*/
if (tapeout && isrewind(to)) {
/* tape is probably rewinding */
msg(rewinding);
}
}
void
#ifdef __STDC__
trewind(void)
#else
trewind()
#endif
{
(void) timeclock((time_t)0);
if (offline && (!verify || doingverify)) {
close_rewind();
} else {
just_rewind();
if (host)
rmtclose();
else {
(void) close(to);
to = -1;
}
}
}
void
#ifdef __STDC__
close_rewind(void)
#else
close_rewind()
#endif
{
char *rewinding = gettext("Tape rewinding\n");
(void) timeclock((time_t)0);
just_rewind();
/*
* The check in just_rewind won't catch the case in
* which the current volume is being taken off-line
* and is not mounted on a no-rewind device (and is
* not the last volume, which is not taken off-line).
*/
if (tapeout && !isrewind(to) && offline) {
/* tape is probably rewinding */
msg(rewinding);
}
if (host) {
if (offline || autoload)
(void) rmtioctl(MTOFFL, 0);
rmtclose();
} else {
if (offline || autoload) {
static struct mtop offl = { MTOFFL, 0 };
(void) ioctl(to, MTIOCTOP, &offl);
if (diskette)
(void) ioctl(to, FDEJECT, 0);
}
(void) close(to);
to = -1;
}
}
void
#ifdef __STDC__
changevol(void)
#else
changevol()
#endif
{
char buf1[3000], buf2[3000];
char volname[LBLSIZE+1];
/*CONSTANTCONDITION*/
assert(sizeof (spcl.c_label) < sizeof (volname));
filenum = 1;
nextdevice();
(void) strcpy(spcl.c_label, tlabel);
if (host) {
char *rhost = host;
char *cp = strchr(host, '@');
if (cp == (char *)0)
cp = host;
else
cp++;
if (rmthost(rhost, ntrec) == 0) {
msg(gettext("Cannot connect to tape host `%s'\n"), cp);
dumpabort();
/*NOTREACHED*/
}
if (rhost != host)
free(rhost);
}
/*
* Make volume switching as automatic as possible
* while avoiding overwriting volumes. We will
* switch automatically under the following condition:
* 1) The user specified autoloading from the
* command line.
* At one time, we (in the guise of hsmdump) had the
* concept of a sequence of devices to rotate through,
* but that's never been a ufsdump feature.
*/
if (autoload) {
int tries;
/*
* Stop the clock for throughput calculations.
*/
if ((telapsed != NULL) && (tstart_writing != NULL)) {
*telapsed += time((time_t *)NULL) - *tstart_writing;
}
(void) snprintf(volname, sizeof (volname), "#%d", tapeno+1);
(void) snprintf(buf1, sizeof (buf1), gettext(
"Mounting volume %s on %s\n"), volname, dumpdev);
msg(buf1);
broadcast(buf1);
/*
* Wait for the tape to autoload. Note that the delay
* period doesn't take into account however long it takes
* for the open to fail (measured at 21 seconds for an
* Exabyte 8200 under 2.7 on an Ultra 2).
*/
for (tries = 0; tries < autoload_tries; tries++) {
if (host) {
if (rmtopen(tape, O_RDONLY) >= 0) {
rmtclose();
return;
}
} else {
int f, m;
m = (access(tape, F_OK) == 0) ? 0 : O_CREAT;
if ((f = doingverify ?
safe_device_open(tape, O_RDONLY, 0600) :
safe_device_open(tape, O_RDONLY|m, 0600))
>= 0) {
(void) close(f);
return;
}
}
(void) sleep(autoload_period);
}
/*
* Autoload timed out, ask the operator to do it.
* Note that query() will update *telapsed, and we
* shouldn't charge for the autoload time. So, since
* we updated *telapsed ourselves above, we just set
* tstart_writing to the current time, and query()
* will end up making a null-effect change. This,
* of course, assumes that our caller will be resetting
* *tstart_writing. This is currently the case.
* If tstart_writing is NULL (should never happen),
* we're ok, since time(2) will accept a NULL pointer.
*/
(void) time(tstart_writing);
}
if (strncmp(spcl.c_label, "none", 5)) {
(void) strncpy(volname, spcl.c_label, sizeof (spcl.c_label));
volname[sizeof (spcl.c_label)] = '\0';
} else
(void) snprintf(volname, sizeof (volname), "#%d", tapeno+1);
timeest(1, spcl.c_tapea);
(void) snprintf(buf1, sizeof (buf1), gettext(
"Change Volumes: Mount volume `%s' on `%s'\n"), volname, dumpdev);
msg(buf1);
broadcast(gettext("CHANGE VOLUMES!\7\7\n"));
(void) snprintf(buf1, sizeof (buf1), gettext(
"Is the new volume (%s) mounted on `%s' and ready to go?: %s"),
volname, dumpdev, gettext("(\"yes\" or \"no\") "));
while (!query(buf1)) {
(void) snprintf(buf2, sizeof (buf2), gettext(
"Do you want to abort dump?: (\"yes\" or \"no\") "));
if (query(buf2)) {
dumpabort();
/*NOTREACHED*/
}
}
}
/*
* We implement taking and restoring checkpoints on the tape level.
* When each tape is opened, a new process is created by forking; this
* saves all of the necessary context in the parent. The child
* continues the dump; the parent waits around, saving the context.
* If the child returns X_REWRITE, then it had problems writing that tape;
* this causes the parent to fork again, duplicating the context, and
* everything continues as if nothing had happened.
*/
void
otape(int top)
{
static struct mtget mt;
char buf[3000];
pid_t parentpid;
pid_t childpid;
pid_t waitproc;
int status;
struct sigvec sv, osv;
sv.sv_flags = SA_RESTART;
(void) sigemptyset(&sv.sa_mask);
sv.sv_handler = SIG_IGN;
(void) sigvec(SIGINT, &sv, (struct sigvec *)0);
parentpid = getpid();
if (verify) {
if (doingverify)
doingverify = 0;
else
Exit(X_VERIFY);
}
restore_check_point:
sv.sv_handler = interrupt;
(void) sigvec(SIGINT, &sv, (struct sigvec *)0);
(void) fflush(stderr);
/*
* All signals are inherited...
*/
sighold(SIGINT);
childpid = fork();
if (childpid < 0) {
msg(gettext(
"Context-saving fork failed in parent %ld\n"),
(long)parentpid);
Exit(X_ABORT);
}
if (childpid != 0) {
/*
* PARENT:
* save the context by waiting
* until the child doing all of the work returns.
* let the child catch user interrupts
*/
sv.sv_handler = SIG_IGN;
(void) sigvec(SIGINT, &sv, (struct sigvec *)0);
sigrelse(SIGINT);
#ifdef TDEBUG
/* XGETTEXT: #ifdef TDEBUG only */
msg(gettext(
"Volume: %d; parent process: %ld child process %ld\n"),
tapeno+1, (long)parentpid, (long)childpid);
#endif /* TDEBUG */
for (;;) {
waitproc = waitpid(0, &status, 0);
if (waitproc == childpid)
break;
msg(gettext(
"Parent %ld waiting for child %ld had another child %ld return\n"),
(long)parentpid, (long)childpid, (long)waitproc);
}
if (WIFSIGNALED(status)) {
msg(gettext("Process %ld killed by signal %d: %s\n"),
(long)childpid, WTERMSIG(status),
strsignal(WTERMSIG(status)));
status = X_ABORT;
} else
status = WEXITSTATUS(status);
#ifdef TDEBUG
switch (status) {
case X_FINOK:
/* XGETTEXT: #ifdef TDEBUG only */
msg(gettext(
"Child %ld finishes X_FINOK\n"), (long)childpid);
break;
case X_ABORT:
/* XGETTEXT: #ifdef TDEBUG only */
msg(gettext(
"Child %ld finishes X_ABORT\n"), (long)childpid);
break;
case X_REWRITE:
/* XGETTEXT: #ifdef TDEBUG only */
msg(gettext(
"Child %ld finishes X_REWRITE\n"), (long)childpid);
break;
case X_RESTART:
/* XGETTEXT: #ifdef TDEBUG only */
msg(gettext(
"Child %ld finishes X_RESTART\n"), (long)childpid);
break;
case X_VERIFY:
/* XGETTEXT: #ifdef TDEBUG only */
msg(gettext(
"Child %ld finishes X_VERIFY\n"), (long)childpid);
break;
default:
/* XGETTEXT: #ifdef TDEBUG only */
msg(gettext("Child %ld finishes unknown %d\n"),
(long)childpid, status);
break;
}
#endif /* TDEBUG */
switch (status) {
case X_FINOK:
/* wait for children */
while (waitpid(0, (int *)0, 0) >= 0)
/*LINTED [empty body]*/
continue;
Exit(X_FINOK);
/*NOTREACHED*/
case X_ABORT:
Exit(X_ABORT);
/*NOTREACHED*/
case X_VERIFY:
doingverify++;
goto restore_check_point;
/*NOTREACHED*/
case X_REWRITE:
doingverify = 0;
changevol();
goto restore_check_point;
/* NOTREACHED */
case X_RESTART:
doingverify = 0;
if (!top) {
Exit(X_RESTART);
}
if (!offline)
autoload = 0;
changevol();
sv.sv_handler = interrupt;
(void) sigvec(SIGINT, &sv, (struct sigvec *)0);
return;
/* NOTREACHED */
default:
msg(gettext("Bad return code from dump: %d\n"), status);
Exit(X_ABORT);
/*NOTREACHED*/
}
/*NOTREACHED*/
} else { /* we are the child; just continue */
child_chdir();
sigrelse(SIGINT);
#ifdef TDEBUG
(void) sleep(4); /* time for parent's message to get out */
/* XGETTEXT: #ifdef TDEBUG only */
msg(gettext(
"Child on Volume %d has parent %ld, my pid = %ld\n"),
tapeno+1, (long)parentpid, (long)getpid());
#endif
(void) snprintf(buf, sizeof (buf), gettext(
"Cannot open `%s'. Do you want to retry the open?: (\"yes\" or \"no\") "),
dumpdev);
if (doingverify) {
/* 1 for stdout */
while ((to = host ? rmtopen(tape, O_RDONLY) :
pipeout ? 1 :
safe_device_open(tape, O_RDONLY, 0600)) < 0) {
perror(tape);
if (autoload) {
if (!query_once(buf, 1)) {
dumpabort();
/*NOTREACHED*/
}
} else {
if (!query(buf)) {
dumpabort();
/*NOTREACHED*/
}
}
}
/*
* If we're using the non-rewinding tape device,
* the tape will be left positioned after the
* EOF mark. We need to back up to the beginning
* of this tape file (cross two tape marks in the
* reverse direction and one in the forward
* direction) before the verify pass.
*/
if (host) {
if (rmtioctl(MTBSF, 2) >= 0)
(void) rmtioctl(MTFSF, 1);
else
(void) rmtioctl(MTNBSF, 1);
} else {
static struct mtop bsf = { MTBSF, 2 };
static struct mtop fsf = { MTFSF, 1 };
static struct mtop nbsf = { MTNBSF, 1 };
if (ioctl(to, MTIOCTOP, &bsf) >= 0)
(void) ioctl(to, MTIOCTOP, &fsf);
else
(void) ioctl(to, MTIOCTOP, &nbsf);
}
} else {
/*
* XXX Add logic to test for "tape" being a
* XXX device or a non-existent file.
* Current behaviour is that it must exist,
* and we over-write whatever's there.
* This can be bad if tape == "/etc/passwd".
*/
if (!pipeout && doposition && (tapeno == 0)) {
positiontape(buf);
if (setjmp(alrm_buf)) {
/*
* The tape is rewinding;
* we're screwed.
*/
msg(gettext(
"Cannot position tape using rewind device!\n"));
dumpabort();
/*NOTREACHED*/
} else {
sv.sv_handler = alrm;
(void) sigvec(SIGALRM, &sv, &osv);
(void) alarm(15);
}
while ((to = host ? rmtopen(tape, O_WRONLY) :
safe_device_open(tape, O_WRONLY, 0600)) < 0)
(void) sleep(10);
(void) alarm(0);
(void) sigvec(SIGALRM, &osv,
(struct sigvec *)0);
} else {
int m;
m = (access(tape, F_OK) == 0) ? 0 : O_CREAT;
/*
* Only verify the tape label if label
* verification is on and we are at BOT
*/
if (pipeout)
to = 1;
else while ((to = host ?
rmtopen(tape, O_WRONLY) :
safe_device_open(tape, O_WRONLY|m, 0600))
< 0)
if (!query_once(buf, 1)) {
dumpabort();
/*NOTREACHED*/
}
}
}
if (!pipeout) {
tapeout = host ? rmtstatus(&mt) >= 0 :
ioctl(to, MTIOCGET, &mt) >= 0; /* set state */
/*
* Make sure the tape is positioned
* where it is supposed to be
*/
if (tapeout && (tapeno > 0) &&
(mt.mt_fileno != (filenum-1))) {
(void) snprintf(buf, sizeof (buf), gettext(
"Warning - tape positioning error!\n\
\t%s current file %ld, should be %ld\n"),
tape, mt.mt_fileno+1, filenum);
msg(buf);
dumpailing();
}
}
tapeno++; /* current tape sequence */
if (tapeno < TP_NINOS)
inos[tapeno] = chkpt.sl_inos;
spcl.c_firstrec = chkpt.sl_firstrec;
spcl.c_tapea = (*tapea) = chkpt.sl_tapea;
spcl.c_volume++;
enslave(); /* Share tape buffers with slaves */
#ifdef DEBUG
if (xflag) {
/* XGETTEXT: #ifdef DEBUG only */
msg(gettext("Checkpoint state:\n"));
msg(" blockswritten %u\n", blockswritten);
msg(" ino %u\n", ino);
msg(" pos %u\n", pos);
msg(" left %u\n", leftover);
msg(" tapea %u\n", (*tapea));
msg(" state %d\n", dumpstate);
}
#endif
spcl.c_type = TS_TAPE;
spcl.c_tpbsize = tp_bsize;
if (leftover == 0) {
spcl.c_count = 0;
spclrec();
newtape = 0;
} else
newtape++; /* new volume indication */
if (doingverify) {
msg(gettext("Starting verify pass\n"));
} else if (tapeno > 1) {
msg(gettext(
"Volume %d begins with blocks from inode %lu\n"),
tapeno, chkpt.sl_inos);
}
(void) timeclock((time_t)1);
(void) time(tstart_writing);
timeest(0, spcl.c_tapea);
}
}
void
#ifdef __STDC__
dumpabort(void)
#else
dumpabort()
#endif
{
if (master && master != getpid())
/*
* signal master to call dumpabort
*/
(void) kill(master, SIGTERM);
else {
killall();
if (archivefile && archive_opened)
(void) unlink(archivefile);
msg(gettext("The ENTIRE dump is aborted.\n"));
}
Exit(X_ABORT);
}
void
dumpailing(void)
{
broadcast(gettext("DUMP IS AILING!\n"));
if (!query(gettext(
"Do you want to attempt to continue? (\"yes\" or \"no\") "))) {
dumpabort();
/*NOTREACHED*/
}
}
void
Exit(status)
{
/*
* Clean up message system
*/
#ifdef TDEBUG
/* XGETTEXT: #ifdef TDEBUG only */
msg(gettext("pid = %ld exits with status %d\n"),
(long)getpid(), status);
#endif /* TDEBUG */
exit(status);
}
static void
#ifdef __STDC__
killall(void)
#else
killall()
#endif
{
struct slaves *slavep;
for (slavep = &slaves[0]; slavep < &slaves[SLAVES]; slavep++)
if (slavep->sl_slavepid > 0) {
(void) kill(slavep->sl_slavepid, SIGKILL);
#ifdef TDEBUG
/* XGETTEXT: #ifdef TDEBUG only */
msg(gettext("Slave child %ld killed\n"),
(long)slavep->sl_slavepid);
#endif
}
if (writepid) {
(void) kill(writepid, SIGKILL);
#ifdef TDEBUG
/* XGETTEXT: #ifdef TDEBUG only */
msg(gettext("Writer child %ld killed\n"), (long)writepid);
#endif
}
if (archivepid) {
(void) kill(archivepid, SIGKILL);
#ifdef TDEBUG
/* XGETTEXT: #ifdef TDEBUG only */
msg(gettext("Archiver child %ld killed\n"), (long)archivepid);
#endif
}
}
/*ARGSUSED*/
static void
proceed(int sig)
{
caught++;
}
/*ARGSUSED*/
static void
die(int sig)
{
Exit(X_FINOK);
}
static void
#ifdef __STDC__
enslave(void)
#else
enslave()
#endif
{
int cmd[2]; /* file descriptors */
int i;
struct sigvec sv;
struct slaves *slavep;
int saverr;
sv.sv_flags = SA_RESTART;
(void) sigemptyset(&sv.sa_mask);
master = getpid();
/*
* slave sends SIGTERM on dumpabort
*/
sv.sv_handler = (void(*)(int))dumpabort;
(void) sigvec(SIGTERM, &sv, (struct sigvec *)0);
sv.sv_handler = tperror;
(void) sigvec(SIGUSR2, &sv, (struct sigvec *)0);
sv.sv_handler = proceed;
(void) sigvec(SIGUSR1, &sv, (struct sigvec *)0);
totalrecsout += recsout;
caught = 0;
recsout = 0;
rotor = 0;
bufclear();
for (slavep = &slaves[0]; slavep < &slaves[SLAVES]; slavep++)
slavep->sl_slavefd = -1;
archivefd = arch = writer = -1;
for (i = 0; i < SLAVES; i++) {
if (pipe(cmd) < 0) {
saverr = errno;
msg(gettext(
"Cannot create pipe for slave process: %s\n"),
strerror(saverr));
dumpabort();
/*NOTREACHED*/
}
sighold(SIGUSR2);
sighold(SIGINT);
sighold(SIGTERM);
if ((slaves[i].sl_slavepid = fork()) < 0) {
saverr = errno;
msg(gettext("Cannot create slave process: %s\n"),
strerror(saverr));
dumpabort();
/*NOTREACHED*/
}
slaves[i].sl_slavefd = cmd[1];
if (slaves[i].sl_slavepid == 0) { /* Slave starts up here */
pid_t next; /* pid of neighbor */
sv.sv_handler = SIG_DFL;
(void) sigvec(SIGUSR2, &sv, (struct sigvec *)0);
sv.sv_handler = SIG_IGN; /* master handler INT */
(void) sigvec(SIGINT, &sv, (struct sigvec *)0);
sv.sv_handler = die; /* normal slave exit */
(void) sigvec(SIGTERM, &sv, (struct sigvec *)0);
child_chdir();
sigrelse(SIGUSR2);
sigrelse(SIGINT);
sigrelse(SIGTERM);
freeino(); /* release unneeded resources */
#ifdef TDEBUG
(void) sleep(4); /* time for parent's message to get out */
/* XGETTEXT: #ifdef TDEBUG only */
msg(gettext("Neighbor has pid = %ld\n"), (long)getpid());
#endif
/* Closes cmd[1] as a side-effect */
for (slavep = &slaves[0];
slavep < &slaves[SLAVES];
slavep++)
if (slavep->sl_slavefd >= 0) {
(void) close(slavep->sl_slavefd);
slavep->sl_slavefd = -1;
}
(void) close(to);
(void) close(fi); /* Need our own seek ptr */
to = -1;
fi = open(disk, O_RDONLY);
if (fi < 0) {
saverr = errno;
msg(gettext(
"Cannot open dump device `%s': %s\n"),
disk, strerror(saverr));
dumpabort();
/*NOTREACHED*/
}
if ((unsigned)atomic((int(*)())read, cmd[0],
(char *)&next, sizeof (next)) != sizeof (next)) {
cmdrderr();
dumpabort();
/*NOTREACHED*/
}
dumpoffline(cmd[0], next, i);
Exit(X_FINOK);
}
/* Parent continues here */
sigrelse(SIGUSR2);
sigrelse(SIGINT);
sigrelse(SIGTERM);
(void) close(cmd[0]);
}
if (archive) {
archivepid = setuparchive();
if (!archivepid) {
dumpabort();
/*NOTREACHED*/
}
}
writepid = setupwriter();
if (!writepid) {
dumpabort();
/*NOTREACHED*/
}
if (arch >= 0) {
(void) close(arch); /* only writer has this open */
arch = -1;
}
/* Tell each slave who follows it */
for (i = 0; i < SLAVES; i++) {
if ((unsigned)atomic((int(*)())write, slaves[i].sl_slavefd,
(char *)&(slaves[(i + 1) % SLAVES].sl_slavepid),
sizeof (int)) != sizeof (int)) {
cmdwrterr();
dumpabort();
/*NOTREACHED*/
}
}
sv.sv_handler = rollforward; /* rcvd from writer on EOT */
(void) sigvec(SIGUSR1, &sv, (struct sigvec *)0);
slp = slaves;
(void) kill(slp->sl_slavepid, SIGUSR1);
master = 0;
}
static void
#ifdef __STDC__
wait_our_turn(void)
#else
wait_our_turn()
#endif
{
(void) sighold(SIGUSR1);
if (!caught) {
#ifdef INSTRUMENT
(*idle)++;
#endif
(void) sigpause(SIGUSR1);
}
caught = 0;
(void) sigrelse(SIGUSR1);
}
static void
dumpoffline(int cmd, pid_t next, int mynum)
{
struct req *p = slaves[mynum].sl_req;
ulong_t i;
uchar_t *cp;
uchar_t *blkbuf;
int notactive = 0;
blkbuf = xmalloc(sblock->fs_bsize);
/*CONSTANTCONDITION*/
assert(sizeof (spcl) == TP_BSIZE_MIN);
while (atomic((int(*)())read, cmd, (char *)p, reqsiz) == reqsiz) {
if (p->br_dblk) {
bread(p->br_dblk, (uchar_t *)blkbuf, p->br_size);
} else {
bcopy((char *)p->br_spcl, (char *)&spcl,
sizeof (spcl));
ino = spcl.c_inumber;
}
dumptoarchive = p->aflag & BUF_ARCHIVE;
wait_our_turn();
if (p->br_dblk) {
for (i = p->br_size, cp = blkbuf;
i > 0;
/* LINTED character pointers aren't signed */
cp += i > tp_bsize ? tp_bsize : i,
i -= i > tp_bsize ? tp_bsize : i) {
/* LINTED unsigned to signed conversion ok */
taprec(cp, 0, i > tp_bsize ? tp_bsize : (int)i);
}
} else
spclrec();
(void) kill(next, SIGUSR1); /* Next slave's turn */
/*
* Note that we lie about file activity since we don't
* check for it.
*/
if ((unsigned)atomic((int(*)())write, cmd, (char *)¬active,
sizeof (notactive)) != sizeof (notactive)) {
cmdwrterr();
dumpabort();
/*NOTREACHED*/
}
}
free(blkbuf);
}
static int count; /* tape blocks written since last spclrec */
/*ARGSUSED*/
static void
onxfsz(int sig)
{
msg(gettext("File size limit exceeded writing output volume %d\n"),
tapeno);
(void) kill(master, SIGUSR2);
Exit(X_REWRITE);
}
static long lastnonaddr; /* last DS_{INODE,CLRI,BITS} written */
static long lastnonaddrm; /* and the mode thereof */
/*
* dowrite -- the main body of the output writer process
*/
static void
dowrite(int cmd)
{
struct bdesc *last =
&bufp[(NBUF*ntrec)-1]; /* last buffer in pool */
struct bdesc *bp = bufp; /* current buf in tape block */
struct bdesc *begin = bufp; /* first buf of tape block */
struct bdesc *end = bufp + (ntrec-1); /* last buf of tape block */
int siz; /* bytes written (block) */
int trecs; /* records written (block) */
long asize = 0; /* number of 0.1" units... */
/* ...written on current tape */
char *tp, *rbuf = NULL;
char *recmap = spcl.c_addr; /* current tape record map */
char *endmp; /* end of valid map data */
char *mp; /* current map entry */
union u_spcl *sp;
(void) signal(SIGXFSZ, onxfsz);
bzero((char *)&spcl, sizeof (spcl));
count = 0;
if (doingverify) {
rbuf = (char *)malloc((uint_t)writesize);
if (rbuf == 0) {
/* Restart from checkpoint */
(void) kill(master, SIGUSR2);
Exit(X_REWRITE);
}
}
for (;;) {
/* START: wait until all buffers in tape block are full */
if ((bp->b_flags & BUF_FULL) == 0) {
if (caught) { /* master signalled flush */
(void) sighold(SIGUSR1);
caught = 0;
/* signal ready */
(void) kill(master, SIGUSR1);
chkpt.sl_count = 0; /* signal not at EOT */
checkpoint(bp-1, cmd); /* send data */
(void) sigpause(SIGUSR1);
break;
}
#ifdef INSTRUMENT
(*readmissp)++;
#endif
nap(50);
continue;
}
if (bp < end) {
bp++;
continue;
}
/* END: wait until all buffers in tape block are full */
tp = begin->b_data;
(void) sighold(SIGUSR1);
if (host) {
if (!doingverify)
siz = rmtwrite(tp, writesize);
else if ((siz = rmtread(rbuf, writesize)) ==
writesize && bcmp(rbuf, tp, writesize))
siz = -1;
} else {
if (!doingverify)
siz = write(to, tp, writesize);
else if ((siz = read(to, rbuf, writesize)) ==
writesize && bcmp(rbuf, tp, writesize))
siz = -1;
if (siz < 0 && diskette && errno == ENOSPC)
siz = 0; /* really EOF */
}
(void) sigrelse(SIGUSR1);
if (siz < 0 ||
(pipeout && siz != writesize)) {
char buf[3000];
/*
* Isn't i18n wonderful?
*/
if (doingverify) {
if (diskette)
(void) snprintf(buf, sizeof (buf),
gettext(
"Verification error %ld blocks into diskette %d\n"),
asize * 2, tapeno);
else if (tapeout)
(void) snprintf(buf, sizeof (buf),
gettext(
"Verification error %ld feet into tape %d\n"),
(cartridge ? asize/tracks :
asize)/120L,
tapeno);
else
(void) snprintf(buf, sizeof (buf),
gettext(
"Verification error %ld blocks into volume %d\n"),
asize * 2, tapeno);
} else {
if (diskette)
(void) snprintf(buf, sizeof (buf),
gettext(
"Write error %ld blocks into diskette %d\n"),
asize * 2, tapeno);
else if (tapeout)
(void) snprintf(buf, sizeof (buf),
gettext(
"Write error %ld feet into tape %d\n"),
(cartridge ? asize/tracks :
asize)/120L, tapeno);
else
(void) snprintf(buf, sizeof (buf),
gettext(
"Write error %ld blocks into volume %d\n"),
asize * 2, tapeno);
}
msg(buf);
/* Restart from checkpoint */
#ifdef TDEBUG
/* XGETTEXT: #ifdef TDEBUG only */
msg(gettext("sending SIGUSR2 to pid %ld\n"), master);
#endif
(void) kill(master, SIGUSR2);
Exit(X_REWRITE);
}
trecs = siz / tp_bsize;
if (diskette)
asize += trecs; /* asize == blocks written */
else
asize += (siz/density + tenthsperirg);
if (trecs)
chkpt.sl_firstrec++;
for (bp = begin; bp < begin + trecs; bp++) {
if ((arch >= 0) && (bp->b_flags & BUF_ARCHIVE)) {
if ((unsigned)atomic((int(*)())write, arch,
(char *)&bp->b_flags, sizeof (bp->b_flags))
!= sizeof (bp->b_flags)) {
cmdwrterr();
dumpabort();
/*NOTREACHED*/
}
if (atomic((int(*)())write, arch, bp->b_data,
tp_bsize) != tp_bsize) {
cmdwrterr();
dumpabort();
/*NOTREACHED*/
}
}
if (bp->b_flags & BUF_SPCLREC) {
/*LINTED [bp->b_data is aligned]*/
sp = (union u_spcl *)bp->b_data;
if (sp->s_spcl.c_type != TS_ADDR) {
lastnonaddr = sp->s_spcl.c_type;
lastnonaddrm =
sp->s_spcl.c_dinode.di_mode;
if (sp->s_spcl.c_type != TS_TAPE)
chkpt.sl_offset = 0;
}
chkpt.sl_count = sp->s_spcl.c_count;
bcopy((char *)sp,
(char *)&spcl, sizeof (spcl));
mp = recmap;
endmp = &recmap[spcl.c_count];
count = 0;
} else {
chkpt.sl_offset++;
chkpt.sl_count--;
count++;
mp++;
}
/*
* Adjust for contiguous hole
*/
for (; mp < endmp; mp++) {
if (*mp)
break;
chkpt.sl_offset++;
chkpt.sl_count--;
}
}
/*
* Check for end of tape
*/
if (trecs < ntrec ||
(!pipeout && tsize > 0 && asize > tsize)) {
if (tapeout)
msg(gettext("End-of-tape detected\n"));
else
msg(gettext("End-of-file detected\n"));
(void) sighold(SIGUSR1);
caught = 0;
(void) kill(master, SIGUSR1); /* signal EOT */
checkpoint(--bp, cmd); /* send checkpoint data */
(void) sigpause(SIGUSR1);
break;
}
for (bp = begin; bp <= end; bp++)
bp->b_flags = BUF_EMPTY;
if (end + ntrec > last) {
bp = begin = bufp;
timeest(0, spcl.c_tapea);
} else
bp = begin = end+1;
end = begin + (ntrec-1);
}
if (rbuf != NULL)
free(rbuf);
}
/*
* Send checkpoint info back to master. This information
* consists of the current inode number, number of logical
* blocks written for that inode (or bitmap), the last logical
* block number written, the number of logical blocks written
* to this volume, the current dump state, and the current
* special record map.
*/
static void
checkpoint(struct bdesc *bp, int cmd)
{
int state, type;
ino_t ino;
if (++bp >= &bufp[NBUF*ntrec])
bp = bufp;
/*
* If we are dumping files and the record following
* the last written to tape is a special record, use
* it to get an accurate indication of current state.
*/
if ((bp->b_flags & BUF_SPCLREC) && (bp->b_flags & BUF_FULL) &&
lastnonaddr == TS_INODE) {
/*LINTED [bp->b_data is aligned]*/
union u_spcl *nextspcl = (union u_spcl *)bp->b_data;
if (nextspcl->s_spcl.c_type == TS_INODE) {
chkpt.sl_offset = 0;
chkpt.sl_count = 0;
} else if (nextspcl->s_spcl.c_type == TS_END) {
chkpt.sl_offset = 0;
chkpt.sl_count = 1; /* EOT indicator */
}
ino = nextspcl->s_spcl.c_inumber;
type = nextspcl->s_spcl.c_type;
} else {
/*
* If not, use what we have.
*/
ino = spcl.c_inumber;
type = spcl.c_type;
}
switch (type) { /* set output state */
case TS_ADDR:
switch (lastnonaddr) {
case TS_INODE:
case TS_TAPE:
if ((lastnonaddrm & IFMT) == IFDIR ||
(lastnonaddrm & IFMT) == IFATTRDIR)
state = DS_DIRS;
else
state = DS_FILES;
break;
case TS_CLRI:
state = DS_CLRI;
break;
case TS_BITS:
state = DS_BITS;
break;
}
break;
case TS_INODE:
if ((spcl.c_dinode.di_mode & IFMT) == IFDIR ||
(spcl.c_dinode.di_mode & IFMT) == IFATTRDIR)
state = DS_DIRS;
else
state = DS_FILES;
break;
case 0: /* EOT on 1st record */
case TS_TAPE:
state = DS_START;
ino = UFSROOTINO;
break;
case TS_CLRI:
state = DS_CLRI;
break;
case TS_BITS:
state = DS_BITS;
break;
case TS_END:
if (spcl.c_type == TS_END)
state = DS_DONE;
else
state = DS_END;
break;
}
/*
* Checkpoint info to be processed by rollforward():
* The inode with which the next volume should begin
* The last inode number on this volume
* The last logical block number on this volume
* The current output state
* The offset within the current inode (already in sl_offset)
* The number of records left from last spclrec (in sl_count)
* The physical block the next vol begins with (in sl_firstrec)
*/
chkpt.sl_inos = ino;
chkpt.sl_tapea = spcl.c_tapea + count;
chkpt.sl_state = state;
if ((unsigned)atomic((int(*)())write, cmd, (char *)&chkpt,
sizeof (chkpt)) != sizeof (chkpt)) {
cmdwrterr();
dumpabort();
/*NOTREACHED*/
}
if ((unsigned)atomic((int(*)())write, cmd, (char *)&spcl,
sizeof (spcl)) != sizeof (spcl)) {
cmdwrterr();
dumpabort();
/*NOTREACHED*/
}
#ifdef DEBUG
if (xflag) {
/* XGETTEXT: #ifdef DEBUG only */
msg(gettext("sent chkpt to master:\n"));
msg(" ino %u\n", chkpt.sl_inos);
msg(" 1strec %u\n", chkpt.sl_firstrec);
msg(" lastrec %u\n", chkpt.sl_tapea);
msg(" written %u\n", chkpt.sl_offset);
msg(" left %u\n", chkpt.sl_count);
msg(" state %d\n", chkpt.sl_state);
}
#endif
}
/*
* Since a read from a pipe may not return all we asked for,
* or a write may not write all we ask if we get a signal,
* loop until the count is satisfied (or error).
*/
static ssize_t
atomic(int (*func)(), int fd, char *buf, int count)
{
ssize_t got = 0, need = count;
/* don't inherit random value if immediately get zero back from func */
errno = 0;
while (need > 0) {
got = (*func)(fd, buf, MIN(need, 4096));
if (got < 0 && errno == EINTR)
continue;
if (got <= 0)
break;
buf += got;
need -= got;
}
/* if we got what was asked for, return count, else failure (got) */
return ((need != 0) ? got : count);
}
void
#ifdef __STDC__
positiontape(char *msgbuf)
#else
positiontape(char *msgbuf)
#endif
{
/* Static as never change, no need to waste stack space */
static struct mtget mt;
static struct mtop rew = { MTREW, 1 };
static struct mtop fsf = { MTFSF, 1 };
char *info = strdup(gettext("Positioning `%s' to file %ld\n"));
char *fail = strdup(gettext("Cannot position tape to file %d\n"));
int m;
/* gettext()'s return value is volatile, hence the strdup()s */
m = (access(tape, F_OK) == 0) ? 0 : O_CREAT;
/*
* To avoid writing tape marks at inappropriate places, we open the
* device read-only, position it, close it, and reopen it for writing.
*/
while ((to = host ? rmtopen(tape, O_RDONLY) :
safe_device_open(tape, O_RDONLY|m, 0600)) < 0) {
if (autoload) {
if (!query_once(msgbuf, 1)) {
dumpabort();
/*NOTREACHED*/
}
} else {
if (!query(msgbuf)) {
dumpabort();
/*NOTREACHED*/
}
}
}
if (host) {
if (rmtstatus(&mt) >= 0 &&
rmtioctl(MTREW, 1) >= 0 &&
filenum > 1) {
msg(info, dumpdev, filenum);
if (rmtioctl(MTFSF, filenum-1) < 0) {
msg(fail, filenum);
dumpabort();
/*NOTREACHED*/
}
}
rmtclose();
} else {
if (ioctl(to, MTIOCGET, &mt) >= 0 &&
ioctl(to, MTIOCTOP, &rew) >= 0 &&
filenum > 1) {
msg(info, dumpdev, filenum);
fsf.mt_count = filenum - 1;
if (ioctl(to, MTIOCTOP, &fsf) < 0) {
msg(fail, filenum);
dumpabort();
/*NOTREACHED*/
}
}
(void) close(to);
to = -1;
}
free(info);
free(fail);
}
static void
#ifdef __STDC__
cmdwrterr(void)
#else
cmdwrterr()
#endif
{
int saverr = errno;
msg(gettext("Error writing command pipe: %s\n"), strerror(saverr));
}
static void
#ifdef __STDC__
cmdrderr(void)
#else
cmdrderr()
#endif
{
int saverr = errno;
msg(gettext("Error reading command pipe: %s\n"), strerror(saverr));
}
|