|
root / base / usr / src / cmd / ndmpd / ndmp / ndmp.x
ndmp.x Plain Text 2160 lines 52.4 KB
   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
/*
 * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
 * Use is subject to license terms.
 */

/*
 * BSD 3 Clause License
 *
 * Copyright (c) 2007, The Storage Networking Industry Association.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 	- Redistributions of source code must retain the above copyright
 *	  notice, this list of conditions and the following disclaimer.
 *
 * 	- Redistributions in binary form must reproduce the above copyright
 *	  notice, this list of conditions and the following disclaimer in
 *	  the documentation and/or other materials provided with the
 *	  distribution.
 *
 *	- Neither the name of The Storage Networking Industry Association (SNIA)
 *	  nor the names of its contributors may be used to endorse or promote
 *	  products derived from this software without specific prior written
 *	  permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */
/* Copyright (c) 1996, 1997 PDC, Network Appliance. All Rights Reserved */

#define VER 3

const NDMPV2 = 2;
const NDMPV3 = 3;
const NDMPV4 = 4;
const NDMPVER = NDMPV4;
const NDMPPORT = 10000;

struct ndmp_u_quad
{
	u_long	high;
	u_long	low;
};

struct ndmp_pval
{
	string	name<>;
	string	value<>;
};

struct ndmp_scsi_device
{
	string	name<>;
};

struct ndmp_tape_device
{
	string	name<>;
};

enum ndmp_error  
{ 
	NDMP_NO_ERR                     =  0, /* No error */
	NDMP_NOT_SUPPORTED_ERR          =  1, /* Call is not supported */
	NDMP_DEVICE_BUSY_ERR            =  2, /* The device is in use */
	NDMP_DEVICE_OPENED_ERR          =  3, /* Another tape or scsi device is already open */
	NDMP_NOT_AUTHORIZED_ERR         =  4, /* Connection has not been authorized */
	NDMP_PERMISSION_ERR             =  5, /* Some sort of permission problem */
	NDMP_DEV_NOT_OPEN_ERR           =  6, /* SCSI device is not open */
	NDMP_IO_ERR                     =  7, /* I/O error */   
	NDMP_TIMEOUT_ERR                =  8, /* command timed out */   
	NDMP_ILLEGAL_ARGS_ERR           =  9, /* illegal arguments in request */   
	NDMP_NO_TAPE_LOADED_ERR         = 10, /* Cannot open because there is no tape loaded */   
	NDMP_WRITE_PROTECT_ERR          = 11, /* tape cannot be open for write */   
	NDMP_EOF_ERR                    = 12, /* Command encountered EOF */   
	NDMP_EOM_ERR                    = 13, /* Command encountered EOM */   
	NDMP_FILE_NOT_FOUND_ERR         = 14, /* File not found during restore */   
	NDMP_BAD_FILE_ERR               = 15, /* The file descriptor is invalid */   
	NDMP_NO_DEVICE_ERR              = 16, /* The device is not at that target */   
	NDMP_NO_BUS_ERR                 = 17, /* Invalid controller */   
	NDMP_XDR_DECODE_ERR             = 18, /* Can't decode the request argument */   
	NDMP_ILLEGAL_STATE_ERR          = 19, /* Call can't be performed at this state */   
	NDMP_UNDEFINED_ERR              = 20, /* Undefined Error */   
	NDMP_XDR_ENCODE_ERR             = 21, /* Can't encode the reply argument */   
	NDMP_NO_MEM_ERR                 = 22, /* No memory */   

	/*
	 * NDMP V3
	 */
	NDMP_CONNECT_ERR                = 23,  

	/*
	 * NDMP V4
	 */
	NDMP_SEQUENCE_NUM_ERR           = 24,    
	NDMP_READ_IN_PROGRESS_ERR       = 25, 
	NDMP_PRECONDITION_ERR           = 26,  
	NDMP_CLASS_NOT_SUPPORTED_ERR    = 27, 
	NDMP_VERSION_NOT_SUPPORTED_ERR  = 28, 
	NDMP_EXT_DUPL_CLASSES_ERR       = 29, 
	NDMP_EXT_DANDN_ILLEGAL_ERR      = 30 
}; 

enum ndmp_header_message_type
{
	NDMP_MESSAGE_REQUEST,
	NDMP_MESSAGE_REPLY
};

enum ndmp_message
{
	NDMP_CONNECT_OPEN               = 0x900, 
	NDMP_CONNECT_CLIENT_AUTH        = 0x901, 
	NDMP_CONNECT_CLOSE              = 0x902, 
	NDMP_CONNECT_SERVER_AUTH        = 0x903, 

	NDMP_CONFIG_GET_HOST_INFO       = 0x100, 
	NDMP_CONFIG_GET_BUTYPE_ATTR     = 0x101, 	/* NDMP V2 */
	NDMP_CONFIG_GET_CONNECTION_TYPE = 0x102,           
	NDMP_CONFIG_GET_AUTH_ATTR       = 0x103, 
	NDMP_CONFIG_GET_BUTYPE_INFO     = 0x104, 	/* NDMP V3,4 */
	NDMP_CONFIG_GET_FS_INFO         = 0x105,  	/* NDMP V3,4 */
	NDMP_CONFIG_GET_TAPE_INFO       = 0x106,  	/* NDMP V3,4 */
	NDMP_CONFIG_GET_SCSI_INFO       = 0x107,  	/* NDMP V3,4 */
	NDMP_CONFIG_GET_SERVER_INFO     = 0x108,  	/* NDMP V3,4 */
	NDMP_CONFIG_SET_EXT_LIST        = 0x109, 	/* NDMP V4 */
	NDMP_CONFIG_GET_EXT_LIST        = 0x10A, 	/* NDMP V4 */

	NDMP_SCSI_OPEN                  = 0x200,     
	NDMP_SCSI_CLOSE                 = 0x201, 
	NDMP_SCSI_GET_STATE             = 0x202, 
	NDMP_SCSI_SET_TARGET            = 0x203,	/* NDMP V2,3 */
	NDMP_SCSI_RESET_DEVICE          = 0x204, 
	NDMP_SCSI_RESET_BUS             = 0x205,	/* NDMP V2,3 */
	NDMP_SCSI_EXECUTE_CDB           = 0x206, 

	NDMP_TAPE_OPEN                  = 0x300, 
	NDMP_TAPE_CLOSE                 = 0x301, 
	NDMP_TAPE_GET_STATE             = 0x302, 
	NDMP_TAPE_MTIO                  = 0x303, 
	NDMP_TAPE_WRITE                 = 0x304, 
	NDMP_TAPE_READ                  = 0x305, 
	NDMP_TAPE_SET_RECORD_SIZE	= 0x306,	/* NDMP V1 */
	NDMP_TAPE_EXECUTE_CDB           = 0x307, 

	NDMP_DATA_GET_STATE             = 0x400, 
	NDMP_DATA_START_BACKUP          = 0x401, 
	NDMP_DATA_START_RECOVER         = 0x402, 
	NDMP_DATA_ABORT                 = 0x403, 
	NDMP_DATA_GET_ENV               = 0x404, 
	NDMP_DATA_RESVD1                = 0x405,
	NDMP_DATA_RESVD2                = 0x406,
	NDMP_DATA_STOP                  = 0x407, 
	NDMP_DATA_CONTINUE		= 0x408,	/* NDMP V1 */
	NDMP_DATA_LISTEN                = 0x409,  
	NDMP_DATA_CONNECT               = 0x40A, 
	NDMP_DATA_START_RECOVER_FILEHIST = 0x40B, 	/* NDMP V4 */

	NDMP_NOTIFY_RESERVED            = 0x500,
	NDMP_NOTIFY_DATA_HALTED         = 0x501,     
	NDMP_NOTIFY_CONNECTION_STATUS   = 0x502,     
	NDMP_NOTIFY_MOVER_HALTED        = 0x503, 
	NDMP_NOTIFY_MOVER_PAUSED        = 0x504, 
	NDMP_NOTIFY_DATA_READ           = 0x505, 

	_NDMP_LOG_LOG                   = 0x600, 	/* NDMP V2 */
	_NDMP_LOG_DEBUG                 = 0x601, 	/* NDMP V2 */
	NDMP_LOG_FILE                   = 0x602, 	/* NDMP V3,4 */
	NDMP_LOG_MESSAGE                = 0x603, 	/* NDMP V3,4 */ 

	NDMP_FH_ADD_UNIX_PATH           = 0x700, 	/* NDMP V2,3 */
	NDMP_FH_ADD_UNIX_DIR            = 0x701, 	/* NDMP V2,3 */
	NDMP_FH_ADD_UNIX_NODE           = 0x702, 	/* NDMP V2,3 */
	NDMP_FH_ADD_FILE                = 0x703, 	/* NDMP V3,4 */
	NDMP_FH_ADD_DIR                 = 0x704, 	/* NDMP V3,4 */
	NDMP_FH_ADD_NODE                = 0x705, 	/* NDMP V3,4 */

	NDMP_MOVER_GET_STATE            = 0xA00, 
	NDMP_MOVER_LISTEN               = 0xA01, 
	NDMP_MOVER_CONTINUE             = 0xA02, 
	NDMP_MOVER_ABORT                = 0xA03, 
	NDMP_MOVER_STOP                 = 0xA04, 
	NDMP_MOVER_SET_WINDOW           = 0xA05, 
	NDMP_MOVER_READ                 = 0xA06, 
	NDMP_MOVER_CLOSE                = 0xA07, 
	NDMP_MOVER_SET_RECORD_SIZE      = 0xA08, 
	NDMP_MOVER_CONNECT              = 0xA09, 	/* NDMP V3,4 */

	NDMP_EXT_STANDARD_BASE          = 0x10000, 

	NDMP_EXT_PROPRIETARY_BASE       = 0x20000000 

};

const NDMP_CONNECT_AUTH = NDMP_CONNECT_CLIENT_AUTH;
const NDMP_MESSAGE_POST = NDMP_MESSAGE_REQUEST; 

struct ndmp_header
{
	u_long sequence;			/* Monotonically increasing number */
	u_long time_stamp;			/* Time stamp of message */
	ndmp_header_message_type message_type;	/* What type of message */
	enum ndmp_message message;		/* Message number */
	u_long reply_sequence;			/* Reply is in response to */
	ndmp_error error;			/* Communications errors */
};


/***************************/
/*  CONNECT INTERFACE (V2) */
/***************************/

/* NDMP_CONNECT_OPEN */
struct ndmp_connect_open_request
{
	u_short	protocol_version;	/* the version of protocol supported */
};

struct ndmp_connect_open_reply
{
	ndmp_error	error;
};

/* NDMP_CONNECT_CLIENT_AUTH = NDMP_CONNECT_AUTH */
enum ndmp_auth_type
{
	NDMP_AUTH_NONE,		/* no password is required */
	NDMP_AUTH_TEXT,		/* the clear text password */
	NDMP_AUTH_MD5		/* md5 */
};

struct ndmp_auth_text
{
	string	user<>;
	string	password<>;
};

struct ndmp_auth_md5
{
	string	user<>;
	opaque	auth_digest[16];
};

union ndmp_auth_data switch (enum ndmp_auth_type auth_type)
{
	case NDMP_AUTH_NONE:
		void;
	case NDMP_AUTH_TEXT:
		struct ndmp_auth_text	auth_text;
	case NDMP_AUTH_MD5:
		struct ndmp_auth_md5	auth_md5;
};

struct ndmp_connect_client_auth_request
{
	ndmp_auth_data	auth_data;
};

struct ndmp_connect_client_auth_reply
{
	ndmp_error	error;
};


/* NDMP_CONNECT_CLOSE */
/* no request arguments */
/* no reply arguments */

/* NDMP_CONNECT_SERVER_AUTH */
union ndmp_auth_attr switch (enum ndmp_auth_type auth_type)
{
	case NDMP_AUTH_NONE:
		void;
	case NDMP_AUTH_TEXT:
		void;
	case NDMP_AUTH_MD5:
		opaque	challenge[64];
};

struct ndmp_connect_server_auth_request
{
	ndmp_auth_attr	client_attr;
};

struct ndmp_connect_server_auth_reply
{
	ndmp_error	error;
	ndmp_auth_data	auth_result;
};


/***************************/
/*  CONNECT INTERFACE (V3) */
/***************************/

/* NDMP_CONNECT_OPEN - same as V2 */

struct ndmp_auth_text_v3
{
	string	auth_id<>;
	string	auth_password<>;

};

struct ndmp_auth_md5_v3
{
	string	auth_id<>;
	opaque	auth_digest[16];
};

union ndmp_auth_data_v3 switch (enum ndmp_auth_type auth_type)
{
	case NDMP_AUTH_NONE:
		void;
	case NDMP_AUTH_TEXT:
		struct ndmp_auth_text_v3	auth_text;
	case NDMP_AUTH_MD5:
		struct ndmp_auth_md5_v3	auth_md5;
};

struct ndmp_connect_client_auth_request_v3
{
	ndmp_auth_data_v3	auth_data;
};

struct ndmp_connect_client_auth_reply_v3
{
	ndmp_error	error;
};

/* NDMP_CONNECT_CLOSE - same as V2 */

/* NDMP_CONNECT_SERVER_AUTH - same as V2 */


/***************************/
/*  CONNECT INTERFACE (V4) */
/***************************/

/* NDMP_CONNECT_OPEN - same as V3 */

/* NDMP_CONNECT_CLIENT_AUTH - same as V3 */

/* NDMP_CONNECT_CLOSE - same as V3 */

/* NDMP_CONNECT_SERVER_AUTH - same as V3 */


/*************************/
/* CONFIG INTERFACE (V2) */
/*************************/

/* NDMP_CONFIG_GET_HOST_INFO */
/* no request arguments */

struct ndmp_config_get_host_info_reply
{
	ndmp_error	error;
	string		hostname<>;	/* host name */
	string		os_type<>;	/* The operating system type (i.e. SOLARIS) */
	string		os_vers<>;	/* The version number of the OS (i.e. 2.5) */
	string		hostid<>;
	ndmp_auth_type	auth_type<>;
};

/* NDMP_CONFIG_GET_BUTYPE_ATTR */
const NDMP_NO_BACKUP_FILELIST	= 0x0001;
const NDMP_NO_BACKUP_FHINFO	= 0x0002;
const NDMP_NO_RECOVER_FILELIST	= 0x0004;
const NDMP_NO_RECOVER_FHINFO	= 0x0008;
const NDMP_NO_RECOVER_SSID	= 0x0010;
const NDMP_NO_RECOVER_INC_ONLY	= 0x0020;

struct ndmp_config_get_butype_attr_request
{
	string	name<>;		/* backup type name */
};

struct ndmp_config_get_butype_attr_reply
{
	ndmp_error	error;
	u_long		attrs;
};

/* NDMP_CONFIG_GET_MOVER_TYPE */
/* no request arguments */

enum ndmp_addr_type  
{ 
	NDMP_ADDR_LOCAL    = 0, 
	NDMP_ADDR_TCP      = 1, 
	NDMP_ADDR_FC       = 2, 	/* NDMP V2,3 */
	NDMP_ADDR_IPC      = 3 
}; 

struct ndmp_config_get_mover_type_reply
{
	ndmp_error		error;
	ndmp_addr_type		methods<>;
};

/* NDMP_CONFIG_GET_AUTH_ATTR */
struct ndmp_config_get_auth_attr_request
{
	ndmp_auth_type	auth_type;
};

struct ndmp_config_get_auth_attr_reply
{
	ndmp_error		error;
	ndmp_auth_attr		server_attr;
};


/*************************/
/* CONFIG INTERFACE (V3) */
/*************************/

/* NDMP_CONFIG_GET_HOST_INFO */
/* no request arguments */

struct ndmp_config_get_host_info_reply_v3
{
	ndmp_error	error;
	string		hostname<>;	/* host name */
	string		os_type<>;	/* The operating system type (i.e. SOLARIS) */
	string		os_vers<>;	/* The version number of the OS (i.e. 2.5) */
	string		hostid<>;
};

/* NDMP_CONFIG_GET_CONNECTION_TYPE */
/* no request arguments */

struct ndmp_config_get_connection_type_reply_v3
{
	ndmp_error	error;
	ndmp_addr_type	addr_types<>;
};

/* NDMP_CONFIG_GET_AUTH_ATTR - same as V2 */

/* NDMP_CONFIG_GET_SERVER_INFO */
/* no requset arguments */

struct ndmp_config_get_server_info_reply_v3
{
	ndmp_error	error;
	string		vendor_name<>;
	string		product_name<>;
	string		revision_number<>;
	ndmp_auth_type	auth_type<>;
};

/* Backup type attributes */
const NDMP_BUTYPE_BACKUP_FILE_HISTORY	 = 0x0001;	/* NDMP V2,3 */
const NDMP_BUTYPE_BACKUP_FILELIST        = 0x0002; 
const NDMP_BUTYPE_RECOVER_FILELIST       = 0x0004; 
const NDMP_BUTYPE_BACKUP_DIRECT          = 0x0008; 
const NDMP_BUTYPE_RECOVER_DIRECT         = 0x0010; 
const NDMP_BUTYPE_BACKUP_INCREMENTAL     = 0x0020; 
const NDMP_BUTYPE_RECOVER_INCREMENTAL    = 0x0040; 
const NDMP_BUTYPE_BACKUP_UTF8            = 0x0080; 
const NDMP_BUTYPE_RECOVER_UTF8           = 0x0100; 
const NDMP_BUTYPE_BACKUP_FH_FILE         = 0x0200; 	/* NDMP V4 */
const NDMP_BUTYPE_BACKUP_FH_DIR          = 0x0400; 	/* NDMP V4 */
const NDMP_BUTYPE_RECOVER_FILEHIST       = 0x0800; 	/* NDMP V4 */
const NDMP_BUTYPE_RECOVER_FH_FILE        = 0x1000; 	/* NDMP V4 */
const NDMP_BUTYPE_RECOVER_FH_DIR         = 0x2000; 	/* NDMP V4 */

 
struct ndmp_butype_info
{
	string		butype_name<>;
	ndmp_pval	default_env<>;
	u_long		attrs;
};

/* NDMP_CONFIG_GET_BUTYPE_INFO */
/* no request arguments */

struct ndmp_config_get_butype_info_reply_v3 
{
	ndmp_error		error;
	ndmp_butype_info	butype_info<>;
};

/* invalid bit */
const	NDMP_FS_INFO_TOTAL_SIZE_INVALID 	= 0x00000001;
const	NDMP_FS_INFO_USED_SIZE_INVALID		= 0x00000002;
const	NDMP_FS_INFO_AVAIL_SIZE_INVALID		= 0x00000004;
const	NDMP_FS_INFO_TOTAL_INODES_INVALID	= 0x00000008;
const	NDMP_FS_INFO_USED_INODES_INVALID	= 0x00000010;

struct ndmp_fs_info_v3
{
	u_long		invalid;
	string		fs_type<>;
	string		fs_logical_device<>;
	string		fs_physical_device<>;
	ndmp_u_quad	total_size;
	ndmp_u_quad	used_size;
	ndmp_u_quad	avail_size;
	ndmp_u_quad	total_inodes;
	ndmp_u_quad	used_inodes;
	ndmp_pval	fs_env<>;
	string		fs_status<>;
};

/* NDMP_CONFIG_GET_FS_INFO */
/* no request arguments */

struct ndmp_config_get_fs_info_reply_v3
{
	ndmp_error		error;
	ndmp_fs_info_v3		fs_info<>;
};

/* NDMP_CONFIG_GET_TAPE_INFO */
/* no request arguments */

/* tape attributes */
const NDMP_TAPE_ATTR_REWIND = 0x00000001; 
const NDMP_TAPE_ATTR_UNLOAD = 0x00000002; 
const NDMP_TAPE_ATTR_RAW    = 0x00000004; 


struct ndmp_device_capability_v3
{
	string		device<>;
	u_long		attr;
	ndmp_pval	capability<>;
};

struct ndmp_device_info_v3
{
	string				model<>;
	ndmp_device_capability_v3	caplist<>;

};
struct ndmp_config_get_tape_info_reply_v3 
{
	ndmp_error		error;
	ndmp_device_info_v3	tape_info<>;

};

/* NDMP_CONFIG_GET_SCSI_INFO */

/* jukebox attributes */
struct ndmp_config_get_scsi_info_reply_v3
{
	ndmp_error		error;
	ndmp_device_info_v3	scsi_info<>;
};


/*************************/
/* CONFIG INTERFACE (V4) */
/*************************/

/* NDMP_CONFIG_GET_HOST_INFO - same as V3 */

/* NDMP_CONFIG_GET_SERVER_INFO - same as V3 */

/* NDMP_CONFIG_GET_CONNECTION_TYPE - same as V3 */

/* NDMP_CONFIG_GET_AUTH_ATTR - same as V3 */


struct ndmp_config_get_butype_info_reply_v4
{ 
	ndmp_error            error; 
	ndmp_butype_info      butype_info<>; 
}; 


/* NDMP_CONFIG_GET_FS_INFO - same as V3 */

struct ndmp_class_list  
{ 
	u_short      ext_class_id; 
	u_short      ext_version<>; 
};  

struct ndmp_class_version 
{ 
	u_short      ext_class_id; 
	u_short      ext_version; 
}; 

struct ndmp_config_get_ext_list_reply 
{ 
	ndmp_error         error; 
	ndmp_class_list    class_list<>; 
}; 

struct ndmp_config_set_ext_list_request 
{ 
	ndmp_class_version    ndmp_selected_ext<>; 
};  

struct ndmp_config_set_ext_list_reply 
{ 
	ndmp_error      error; 
}; 


/***********************/
/* SCSI INTERFACE (V2) */
/***********************/

/* NDMP_SCSI_OPEN */
struct ndmp_scsi_open_request
{
	ndmp_scsi_device	device;
};

struct ndmp_scsi_open_reply
{
	ndmp_error	error;
};

/* NDMP_SCSI_CLOSE */
/* no request arguments */

struct ndmp_scsi_close_reply
{
	ndmp_error	error;
};

/* NDMP_SCSI_GET_STATE */
/* no request arguments */

struct ndmp_scsi_get_state_reply
{
	ndmp_error	error;
	short		target_controller;
	short		target_id;
	short		target_lun;
};

/* NDMP_SCSI_SET_TARGET */
struct ndmp_scsi_set_target_request
{
	ndmp_scsi_device	device;
	u_short			target_controller;
	u_short			target_id;
	u_short			target_lun;
};

struct ndmp_scsi_set_target_reply
{
	ndmp_error	error;
};

/* NDMP_SCSI_RESET_DEVICE */
/* no request arguments */

struct ndmp_scsi_reset_device_reply
{
	ndmp_error	error;
};

/* NDMP_SCSI_RESET_BUS */
/* no request arguments */

struct ndmp_scsi_reset_bus_reply
{
	ndmp_error	error;
};

/* NDMP_SCSI_EXECUTE_CDB */
const NDMP_SCSI_DATA_IN		= 0x00000001;	/* Expect data from SCSI device */
const NDMP_SCSI_DATA_OUT	= 0x00000002;	/* Transfer data to SCSI device */

struct ndmp_execute_cdb_request
{
	u_long	flags;
	u_long	timeout;
	u_long	datain_len;		/* Set for expected datain */
	opaque	cdb<>;
	opaque	dataout<>;
};

struct ndmp_execute_cdb_reply
{
	ndmp_error	error;
	u_char		status;		/* SCSI status bytes */
	u_long		dataout_len;
	opaque		datain<>;	/* SCSI datain */
	opaque		ext_sense<>;	/* Extended sense data */
};


/***********************/
/* SCSI INTERFACE (V3) */
/***********************/

/* NDMP_SCSI_OPEN */
struct ndmp_scsi_open_request_v3
{
	string	device<>;
};
/* reply the same as V2 */


/* NDMP_SCSI_CLOSE - same as V2 */

/* NDMP_SCSI_GET_STATE - same as V2 */

struct ndmp_scsi_set_target_request_v3
{
	string		device<>;
	u_short		target_controller;
	u_short		target_id;
	u_short		target_lun;
};
/* reply the same as V2 */


/* NDMP_SCSI_RESET_DEVICE - same as V2 */

/* NDMP_SCSI_RESET_BUS - same as V2 */

/* NDMP_SCSI_EXECUTE_CDB - same as V2 */


/***********************/
/* SCSI INTERFACE (V4) */
/***********************/

/* NDMP_SCSI_OPEN - same as V3 */

/* NDMP_SCSI_CLOSE - same as V3 */

/* NDMP_SCSI_GET_STATE - same as V3 */

/* NDMP_SCSI_RESET_DEVICE - same as V3 */

/* NDMP_SCSI_EXECUTE_CDB - same as V3 */


/***********************/
/* TAPE INTERFACE (V2) */
/***********************/

/* NDMP_TAPE_OPEN */
enum ndmp_tape_open_mode
{
	NDMP_TAPE_READ_MODE,
	NDMP_TAPE_WRITE_MODE,
	NDMP_TAPE_RAW_MODE,				/* NDMP V4 */
	NDMP_TAPE_RAW1_MODE = 0x7fffffff,		/* NDMP V3 */
	NDMP_TAPE_RAW2_MODE = NDMP_TAPE_RAW_MODE	/* NDMP V3 */
	
};

struct ndmp_tape_open_request
{
	ndmp_tape_device	device;
	ndmp_tape_open_mode	mode;
};

struct ndmp_tape_open_reply
{
	ndmp_error	error;
};

/* NDMP_TAPE_CLOSE */
/* no request arguments */
struct ndmp_tape_close_reply
{
	ndmp_error	error;
};

/* NDMP_TAPE_GET_STATE */
/* no request arguments */
const NDMP_TAPE_NOREWIND	= 0x0008;	/* non-rewind device */
const NDMP_TAPE_WR_PROT		= 0x0010;	/* write-protected */
const NDMP_TAPE_ERROR		= 0x0020;	/* media error */
const NDMP_TAPE_UNLOAD		= 0x0040;	/* tape will be unloaded when the device is closed */

struct ndmp_tape_get_state_reply
{
	ndmp_error	error;
	u_long		flags;
	u_long		file_num;
	u_long		soft_errors;
	u_long		block_size;
	u_long		blockno;
	ndmp_u_quad	total_space;
	ndmp_u_quad	space_remain;
};

enum ndmp_tape_mtio_op 
{ 
	NDMP_MTIO_FSF  = 0, 
	NDMP_MTIO_BSF  = 1, 
	NDMP_MTIO_FSR  = 2, 
	NDMP_MTIO_BSR  = 3, 
	NDMP_MTIO_REW  = 4, 
	NDMP_MTIO_EOF  = 5, 
	NDMP_MTIO_OFF  = 6, 
	NDMP_MTIO_TUR  = 7 	/* NDMP V4 */
}; 


struct ndmp_tape_mtio_request
{
	ndmp_tape_mtio_op	tape_op;
	u_long			count;
};

struct ndmp_tape_mtio_reply
{
	ndmp_error	error;
	u_long		resid_count;
};

/* NDMP_TAPE_WRITE */
struct ndmp_tape_write_request
{
	opaque	data_out<>;
};

struct ndmp_tape_write_reply
{
	ndmp_error	error;
	u_long		count;
};

/* NDMP_TAPE_READ */
struct ndmp_tape_read_request
{
	u_long	count;
};

struct ndmp_tape_read_reply
{
	ndmp_error	error;
	opaque		data_in<>;
};

/* NDMP_TAPE_EXECUTE_CDB */
typedef ndmp_execute_cdb_request	ndmp_tape_execute_cdb_request;
typedef ndmp_execute_cdb_reply		ndmp_tape_execute_cdb_reply;


/***********************/
/* TAPE INTERFACE (V3) */
/***********************/

/* NDMP_TAPE_OPEN */
struct ndmp_tape_open_request_v3
{
	string	device<>;
	ndmp_tape_open_mode	mode;
};
/* reply the same as V2 */


/* NDMP_TAPE_CLOSE - same as V2 */

/* NDMP_TAPE_GET_STATE */
/* no request arguments */
const NDMP_TAPE_STATE_NOREWIND	= 0x0008;	/* non-rewind device */
const NDMP_TAPE_STATE_WR_PROT	= 0x0010;	/* write-protected */
const NDMP_TAPE_STATE_ERROR	= 0x0020;	/* media error */
const NDMP_TAPE_STATE_UNLOAD	= 0x0040;	/* tape will be unloaded when the device is closed */

/* invalid bit */
const NDMP_TAPE_STATE_FILE_NUM_INVALID		= 0x00000001;
const NDMP_TAPE_STATE_SOFT_ERRORS_INVALID	= 0x00000002;
const NDMP_TAPE_STATE_BLOCK_SIZE_INVALID	= 0x00000004;
const NDMP_TAPE_STATE_BLOCKNO_INVALID		= 0x00000008;
const NDMP_TAPE_STATE_TOTAL_SPACE_INVALID	= 0x00000010;
const NDMP_TAPE_STATE_SPACE_REMAIN_INVALID	= 0x00000020;
const NDMP_TAPE_STATE_PARTITION_INVALID		= 0x00000040;

struct ndmp_tape_get_state_reply_v3
{
	u_long		invalid;
	ndmp_error	error;
	u_long		flags;
	u_long		file_num;
	u_long		soft_errors;
	u_long		block_size;
	u_long		blockno;
	ndmp_u_quad	total_space;
	ndmp_u_quad	space_remain;
	u_long		partition;
};

/* NDMP_TAPE_MTIO - same as V2 */

/* NDMP_TAPE_WRITE - same as V2 */

/* NDMP_TAPE_READ - same as V2 */

/* NDMP_TAPE_EXECUTE_CDB - same as V2 */


/***********************/
/* TAPE INTERFACE (V4) */
/***********************/

/* NDMP_TAPE_OPEN - same as V3 */

/* NDMP_TAPE_CLOSE - same as V3 */

struct ndmp_tape_get_state_reply_v4
{ 
	u_long       unsupported; 
	ndmp_error   error; 
	u_long       flags; 
	u_long       file_num; 
	u_long       soft_errors; 
	u_long       block_size; 
	u_long       blockno; 
	ndmp_u_quad  total_space; 
	ndmp_u_quad  space_remain; 
}; 

/* NDMP_TAPE_MTIO - same as V3 */

/* NDMP_TAPE_WRITE - same as V3 */

/* NDMP_TAPE_READ - same as V3 */

/* NDMP_TAPE_EXECUTE_CDB - same as V3 */


/************************/
/* MOVER INTERFACE (V2) */
/************************/
enum ndmp_mover_mode  
{ 
	NDMP_MOVER_MODE_READ            = 0,  
	NDMP_MOVER_MODE_WRITE           = 1,  
	NDMP_MOVER_MODE_NOACTION        = 2  	/* NDMP V4 */
};  

enum ndmp_mover_state 
{ 
	NDMP_MOVER_STATE_IDLE    = 0, 
	NDMP_MOVER_STATE_LISTEN  = 1, 
	NDMP_MOVER_STATE_ACTIVE  = 2, 
	NDMP_MOVER_STATE_PAUSED  = 3, 
	NDMP_MOVER_STATE_HALTED  = 4 
}; 

enum ndmp_mover_pause_reason 
{ 
	NDMP_MOVER_PAUSE_NA    = 0, 
	NDMP_MOVER_PAUSE_EOM   = 1, 
	NDMP_MOVER_PAUSE_EOF   = 2, 
	NDMP_MOVER_PAUSE_SEEK  = 3, 
	NDMP_MOVER_PAUSE_MEDIA_ERROR = 4, 	/* NDMP V2,3 */
	NDMP_MOVER_PAUSE_EOW  = 5 
}; 

enum ndmp_mover_halt_reason 
{ 
	NDMP_MOVER_HALT_NA             = 0, 
	NDMP_MOVER_HALT_CONNECT_CLOSED = 1, 
	NDMP_MOVER_HALT_ABORTED        = 2, 
	NDMP_MOVER_HALT_INTERNAL_ERROR = 3, 
	NDMP_MOVER_HALT_CONNECT_ERROR  = 4, 
	NDMP_MOVER_HALT_MEDIA_ERROR    = 5 	/* NDMP V4 */
}; 


/* NDMP_MOVER_GET_STATE */

/* no request arguments */
struct ndmp_mover_get_state_reply
{
	ndmp_error		error;
	ndmp_mover_state	state;
	ndmp_mover_pause_reason	pause_reason;
	ndmp_mover_halt_reason	halt_reason;
	u_long			record_size;
	u_long			record_num;
	ndmp_u_quad		data_written;
	ndmp_u_quad		seek_position;
	ndmp_u_quad		bytes_left_to_read;
	ndmp_u_quad		window_offset;
	ndmp_u_quad		window_length;
};

/* NDMP_MOVER_LISTEN */

struct ndmp_tcp_addr
{
	u_long	ip_addr;
	u_short	port;
};

union ndmp_mover_addr switch (ndmp_addr_type addr_type)
{
	case NDMP_ADDR_LOCAL:
		void;
	case NDMP_ADDR_TCP:
	  ndmp_tcp_addr	addr;
};

struct ndmp_mover_listen_request
{
	ndmp_mover_mode		mode;
	ndmp_addr_type		addr_type;
};

struct ndmp_mover_listen_reply
{
	ndmp_error		error;
	ndmp_mover_addr		mover;
};

/* NDMP_MOVER_SET_RECORD_SIZE */
struct ndmp_mover_set_record_size_request
{
	u_long	len;
};

struct ndmp_mover_set_record_size_reply
{
	ndmp_error	error;
};

/* NDMP_MOVER_SET_WINDOW */
struct ndmp_mover_set_window_request
{
	ndmp_u_quad	offset;
	ndmp_u_quad	length;
};

struct ndmp_mover_set_window_reply
{
	ndmp_error	error;
};

/* NDMP_MOVER_CONTINUE */
/* no request arguments */

struct ndmp_mover_continue_reply
{
	ndmp_error	error;
};


/* NDMP_MOVER_ABORT */
/* no request arguments */
struct ndmp_mover_abort_reply
{
	ndmp_error	error;
};

/* NDMP_MOVER_STOP */
/* no request arguments */

struct ndmp_mover_stop_reply
{
	ndmp_error	error;
};

/* NDMP_MOVER_READ */
struct ndmp_mover_read_request
{
	ndmp_u_quad	offset;
	ndmp_u_quad	length;
};

struct ndmp_mover_read_reply
{
	ndmp_error	error;
};

/* NDMP_MOVER_CLOSE */
/* no request arguments */

struct ndmp_mover_close_reply
{
	ndmp_error	error;
};


/************************/
/* MOVER INTERFACE (V3) */
/************************/

/* NDMP_MOVER_STATE - same as V2 */

/* NDMP_MOVER_PAUSE_REASON - same as V2 */

/* NDMP_MOVER_HALT_REASON - same as V2 */

/* NDMP_MOVER_MODE - same as V2 */

struct ndmp_fc_addr_v3
{
	u_long	loop_id;
};

struct ndmp_ipc_addr_v3
{
	opaque comm_data<>;
};

union ndmp_addr_v3 switch (ndmp_addr_type addr_type)
{
	case NDMP_ADDR_LOCAL:
		void;
	case NDMP_ADDR_TCP:
		ndmp_tcp_addr		tcp_addr;
	case NDMP_ADDR_FC:
		ndmp_fc_addr_v3		fc_addr;
	case NDMP_ADDR_IPC:
		ndmp_ipc_addr_v3	ipc_addr;
	
};

%
%
%/*
% * Macros to access the port and IP address of TCP addresses.
% */
%#ifndef tcp_ip_v3
%#define tcp_ip_v3	ndmp_addr_v3_u.tcp_addr.ip_addr
%#endif /* tcp_ip_v3 */
%#ifndef tcp_port_v3
%#define tcp_port_v3	ndmp_addr_v3_u.tcp_addr.port
%#endif /* tcp_port_v3 */

/* NDMP_MOVER_GET_STATE */
/* no request arguments */

struct ndmp_mover_get_state_reply_v3
{
	ndmp_error		error;
	ndmp_mover_state	state;
	ndmp_mover_pause_reason	pause_reason;
	ndmp_mover_halt_reason	halt_reason;
	u_long			record_size;
	u_long			record_num;
	ndmp_u_quad		data_written;
	ndmp_u_quad		seek_position;
	ndmp_u_quad		bytes_left_to_read;
	ndmp_u_quad		window_offset;
	ndmp_u_quad		window_length;
	ndmp_addr_v3		data_connection_addr;
};

/* NDMP_MOVER_LISTEN - same as v2 */

struct ndmp_mover_listen_reply_v3
{
	ndmp_error	error;
	ndmp_addr_v3	data_connection_addr;
};

/* NDMP_MOVER_CONNECT */
struct ndmp_mover_connect_request_v3
{
	ndmp_mover_mode		mode;
	ndmp_addr_v3		addr;
};

struct ndmp_mover_connect_reply_v3
{
	ndmp_error	error;
};

/* NDMP_MOVER_SET_RECORD_SIZE - same as V2 */

/* NDMP_MOVER_SET_WINDOW - same as V2 */

/* NDMP_MOVER_CONTINUE - same as V2 */

/* NDMP_MOVER_ABORT - same as V2 */

/* NDMP_MOVER_STOP - same as V2 */

/* NDMP_MOVER_READ - same as V2 */

/* NDMP_MOVER_CLOSE - same as V2 */


/************************/
/* MOVER INTERFACE (V4) */
/************************/

/* NDMP_MOVER_SET_RECORD_SIZE - same as V3 */

/* NDMP_MOVER_SET_WINDOW_SIZE - same as V3 */

%
%
%/*
% * Macros to access the port and IP address of TCP addresses.
% */
%#ifndef tcp_addr_v4
%#define tcp_addr_v4	ndmp_addr_v4_u.tcp_addr.tcp_addr_val
%#endif /* tcp_addr_v4 */
%#ifndef tcp_ip_v4
%#define tcp_ip_v4(n)	ndmp_addr_v4_u.tcp_addr.tcp_addr_val[n].ip_addr
%#endif /* tcp_ip_v4 */
%#ifndef tcp_port_v4
%#define tcp_port_v4(n)	ndmp_addr_v4_u.tcp_addr.tcp_addr_val[n].port
%#endif /* tcp_port_v4 */
%#ifndef tcp_len_v4
%#define tcp_len_v4	ndmp_addr_v4_u.tcp_addr.tcp_addr_len
%#endif /* tcp_len_v4 */
%#ifndef tcp_env_v4
%#define tcp_env_v4(n)	ndmp_addr_v4_u.tcp_addr.tcp_addr_val[n].addr_env
%#endif /* tcp_env_v4 */

struct ndmp_tcp_addr_v4
{ 
	u_long       ip_addr; 
	u_short      port; 
	ndmp_pval    addr_env<>; 
}; 

union ndmp_addr_v4
switch (ndmp_addr_type addr_type)  
{ 
	case NDMP_ADDR_LOCAL: 
		void; 
	case NDMP_ADDR_TCP: 
		ndmp_tcp_addr_v4  tcp_addr<>; 
	case NDMP_ADDR_IPC: 
		ndmp_ipc_addr_v3  ipc_addr; 
};  

struct ndmp_mover_connect_request_v4
{ 
	ndmp_mover_mode       mode; 
	ndmp_addr_v4          addr; 
}; 

struct ndmp_mover_listen_reply_v4
{ 
	ndmp_error           error; 
	ndmp_addr_v4         connect_addr; 
}; 

/* NDMP_MOVER_READ - same as v3 */

struct ndmp_mover_get_state_reply_v4
{  
	ndmp_error               error;  
	ndmp_mover_mode          mode;  
	ndmp_mover_state         state;  
	ndmp_mover_pause_reason  pause_reason;  
	ndmp_mover_halt_reason   halt_reason;  
	u_long                   record_size;  
	u_long                   record_num;  
	ndmp_u_quad              bytes_moved;  
	ndmp_u_quad              seek_position;  
	ndmp_u_quad              bytes_left_to_read;  
	ndmp_u_quad              window_offset;  
	ndmp_u_quad              window_length;  
	ndmp_addr_v4             data_connection_addr;  
};  

/* NDMP_MOVER_CONTINUE - same as V3 */

/* NDMP_MOVER_CLOSE - same as V3 */

/* NDMP_MOVER_ABORT - same as V3 */

/* NDMP_MOVER_STOP - same as V3 */


/***********************/
/* DATA INTERFACE (V2) */
/***********************/

/* NDMP_DATA_GET_STATE */
/* no request arguments */

enum ndmp_data_operation  
{  
	NDMP_DATA_OP_NOACTION           = 0,  
	NDMP_DATA_OP_BACKUP             = 1,  
	NDMP_DATA_OP_RECOVER            = 2,  
	NDMP_DATA_OP_RECOVER_FILEHIST   = 3  	/* NDMP V4 */
}; 

enum ndmp_data_state  
{ 
	NDMP_DATA_STATE_IDLE      = 0, 
	NDMP_DATA_STATE_ACTIVE    = 1, 
	NDMP_DATA_STATE_HALTED    = 2, 
	NDMP_DATA_STATE_LISTEN    = 3, 		/* NDMP V3 */
	NDMP_DATA_STATE_CONNECTED = 4 		/* NDMP V3 */
};  

enum ndmp_data_halt_reason  
{ 
	NDMP_DATA_HALT_NA             = 0, 
	NDMP_DATA_HALT_SUCCESSFUL     = 1, 
	NDMP_DATA_HALT_ABORTED        = 2, 
	NDMP_DATA_HALT_INTERNAL_ERROR = 3, 
	NDMP_DATA_HALT_CONNECT_ERROR  = 4 
}; 

struct ndmp_data_get_state_reply
{
	ndmp_error		error;
	ndmp_data_operation	operation;
	ndmp_data_state		state;
	ndmp_data_halt_reason	halt_reason;
	ndmp_u_quad		bytes_processed;
	ndmp_u_quad		est_bytes_remain;
	u_long			est_time_remain;
	ndmp_mover_addr		mover;
	ndmp_u_quad		read_offset;
	ndmp_u_quad		read_length;
};

/* NDMP_DATA_START_BACKUP */

struct ndmp_data_start_backup_request
{
	ndmp_mover_addr		mover;		/* mover to receive data */
	string			bu_type<>;	/* backup method to use */
	ndmp_pval		env<>;		/* Parameters that may modify backup */
};

struct ndmp_data_start_backup_reply
{
	ndmp_error	error;
};

/* NDMP_DATA_START_RECOVER */
struct ndmp_name
{
	string		name<>;
	string		dest<>;
	u_short		ssid;
	ndmp_u_quad	fh_info;
};

struct ndmp_data_start_recover_request
{
	ndmp_mover_addr		mover;
	ndmp_pval		env<>;
	ndmp_name		nlist<>;
	string			bu_type<>;

};

struct ndmp_data_start_recover_reply
{
	ndmp_error	error;
};

/* NDMP_DATA_ABORT */
/* no request arguments */

struct ndmp_data_abort_reply
{
	ndmp_error	error;
};

/* NDMP_DATA_STOP */
/* no request arguments */

struct ndmp_data_stop_reply
{
	ndmp_error	error;
};

/* NDMP_DATA_GET_ENV */
/* no request arguments */

struct ndmp_data_get_env_reply
{
	ndmp_error	error;
	ndmp_pval	env<>;
};
/* no reply arguments */

struct ndmp_notify_data_halted_request
{
	ndmp_data_halt_reason		reason;
	string				text_reason<>;
};
/* no reply arguments */


/***********************/
/* DATA INTERFACE (V3) */
/***********************/

/* NDMP_DATA_GET_STATE */
/* no request arguments */
/* ndmp_data_operation the same as V2 */

/* invalid bit */
const NDMP_DATA_STATE_EST_BYTES_REMAIN_INVALID	= 0x00000001;
const NDMP_DATA_STATE_EST_TIME_REMAIN_INVALID	= 0x00000002;

struct ndmp_data_get_state_reply_v3
{
	u_long			invalid;
	ndmp_error		error;
	ndmp_data_operation	operation;
	ndmp_data_state		state;
	ndmp_data_halt_reason	halt_reason;
	ndmp_u_quad		bytes_processed;
	ndmp_u_quad		est_bytes_remain;
	u_long			est_time_remain;
	ndmp_addr_v3		data_connection_addr;
	ndmp_u_quad		read_offset;
	ndmp_u_quad		read_length;
};

/* NDMP_DATA_START_BACKUP */
struct ndmp_data_start_backup_request_v3
{
	string		bu_type<>;	/* backup method to use */
	ndmp_pval	env<>;		/* Parameters that may modify backup */
};

/* NDMP_DATA_START_RECOVER */
struct ndmp_name_v3
{
	string		original_path<>;
	string		destination_dir<>;
	string		new_name<>;	/* Direct access restore only */
	string		other_name<>;	/* Direct access restore only */
	ndmp_u_quad	node;		/* Direct access restore only */
	ndmp_u_quad	fh_info;	/* Direct access restore only */
};

struct ndmp_data_start_recover_request_v3
{
	ndmp_pval	env<>;
	ndmp_name_v3	nlist<>;
	string		bu_type<>;
};

/* NDMP_DATA_ABORT - same as V2 */

/* NDMP_DATA_STOP - same as V2 */

/* NDMP_DATA_GET_ENV - same as V2 */

/* NDMP_DATA_LISTEN */
struct ndmp_data_listen_request_v3
{
	ndmp_addr_type	addr_type;
};

struct ndmp_data_listen_reply_v3
{
	ndmp_error	error;
	ndmp_addr_v3	data_connection_addr;
};

/* NDMP_DATA_CONNECT */
struct ndmp_data_connect_request_v3
{
	ndmp_addr_v3	addr;
};

struct ndmp_data_connect_reply_v3
{
	ndmp_error	error;
};


/***********************/
/* DATA INTERFACE (V4) */
/***********************/

struct ndmp_data_get_state_reply_v4
{ 
	u_long                    unsupported; 
	ndmp_error                error; 
	ndmp_data_operation       operation; 
	ndmp_data_state           state; 
	ndmp_data_halt_reason     halt_reason; 
	ndmp_u_quad               bytes_processed; 
	ndmp_u_quad               est_bytes_remain; 
	u_long                    est_time_remain; 
	ndmp_addr_v4              data_connection_addr; 
	ndmp_u_quad               read_offset; 
	ndmp_u_quad               read_length; 
}; 

struct ndmp_data_listen_reply_v4
{ 
	ndmp_error   error; 
	ndmp_addr_v4    connect_addr; 
}; 

struct ndmp_data_connect_request_v4
{ 
	ndmp_addr_v4   addr; 
};  


/* NDMP_DATA_START_BACKUP - same as V3 */

/* NDMP_DATA_START_RECOVER - same as V3 */

/* NDMP_DATA_ABORT - same as V3 */

/* NDMP_DATA_STOP - same as V3 */

/* NDMP_DATA_GET_ENV - same as V3 */


/*************************/
/* NOTIFY INTERFACE (V2) */
/*************************/

/* NDMP_NOTIFY_CONNECTED */
enum ndmp_connect_reason
{
	NDMP_CONNECTED,		/* Connect successfully */
	NDMP_SHUTDOWN,		/* Connection shutdown */
	NDMP_REFUSED		/* reach the maximum number of connections */
};

struct ndmp_notify_connected_request
{
	ndmp_connect_reason	reason;
	u_short			protocol_version;
	string			text_reason<>;
};

/* NDMP_NOTIFY_MOVER_PAUSED */
struct ndmp_notify_mover_paused_request
{
	ndmp_mover_pause_reason	reason;
	ndmp_u_quad		seek_position;
};
/* no reply arguments */

/* NDMP_NOTIFY_MOVER_HALTED */
struct ndmp_notify_mover_halted_request
{
	ndmp_mover_halt_reason	reason;
	string			text_reason<>;
};
/* no reply arguments */

/* NDMP_NOTIFY_DATA_READ */
struct ndmp_notify_data_read_request
{
	ndmp_u_quad	offset;
	ndmp_u_quad	length;
};
/* no reply arguments */


/*************************/
/* NOTIFY INTERFACE (V3) */
/*************************/

/* NDMP_NOTIFY_DATA_HALTED - same as V2 */

/* NDMP_NOTIFY_CONNECTED - same as V2 */

/* NDMP_NOTIFY_MOVER_PAUSED - same as V2 */

/* NDMP_NOTIFY_MOVER_HALTED - same as V2 */

/* NDMP_NOTIFY_DATA_READ - same as V2 */


/*************************/
/* NOTIFY INTERFACE (V4) */
/*************************/

struct ndmp_notify_data_halted_request_v4
{ 
	ndmp_data_halt_reason   reason; 
}; 

/* NDMP_NOTIFY_CONNECTION_STATUS - same as V3 */

struct ndmp_notify_mover_halted_request_v4
{ 
	ndmp_mover_halt_reason      reason; 
}; 

/* NDMP_NOTIFY_MOVER_PAUSED - same as V3 */

/* NDMP_NOTIFY_DATA_READ - same as V3 */


/**********************/
/* LOG INTERFACE (V2) */
/**********************/

/* NDMP_LOG_LOG */
struct ndmp_log_log_request
{
	string	entry<>;
};
/* no reply arguments */

/* NDMP_LOG_DEBUG */
enum ndmp_debug_level
{
	NDMP_DBG_USER_INFO,
	NDMP_DBG_USER_SUMMARY,
	NDMP_DBG_USER_DETAIL,
	NDMP_DBG_DIAG_INFO,
	NDMP_DBG_DIAG_SUMMARY,
	NDMP_DBG_DIAG_DETAIL,
	NDMP_DBG_PROG_INFO,
	NDMP_DBG_PROG_SUMMARY,
	NDMP_DBG_PROG_DETAIL
};

struct ndmp_log_debug_request
{
	ndmp_debug_level	level;
	string			message<>;
};
/* no reply arguments */

/* NDMP_LOG_FILE */
struct ndmp_log_file_request
{
	string		name<>;
	u_short		ssid;
	ndmp_error	error;
};
/* no reply arguments */


/**********************/
/* LOG INTERFACE (V3) */
/**********************/

/* NDMP_LOG_MESSAGE */
enum ndmp_log_type 
{ 
	NDMP_LOG_NORMAL  = 0, 
	NDMP_LOG_DEBUG   = 1, 
	NDMP_LOG_ERROR   = 2, 
	NDMP_LOG_WARNING = 3 
}; 

struct ndmp_log_message_request_v3
{
	ndmp_log_type		log_type;
	u_long			message_id;
	string			entry<>;
};
/* no reply arguments */

/* NDMP_LOG_FILE */
struct ndmp_log_file_request_v3
{
	string		name<>;
	ndmp_error	error;
};
/* no reply arguments */


/**********************/
/* LOG INTERFACE (V4) */
/**********************/

enum ndmp_has_associated_message 
{ 
	NDMP_NO_ASSOCIATED_MESSAGE     = 0, 
	NDMP_HAS_ASSOCIATED_MESSAGE    = 1 
}; 

enum ndmp_recovery_status 
{ 
	NDMP_RECOVERY_SUCCESSFUL                 = 0,    
	NDMP_RECOVERY_FAILED_PERMISSION          = 1, 
	NDMP_RECOVERY_FAILED_NOT_FOUND           = 2, 
	NDMP_RECOVERY_FAILED_NO_DIRECTORY        = 3, 
	NDMP_RECOVERY_FAILED_OUT_OF_MEMORY       = 4, 
	NDMP_RECOVERY_FAILED_IO_ERROR            = 5, 
	NDMP_RECOVERY_FAILED_UNDEFINED_ERROR     = 6, 
	NDMP_RECOVERY_FAILED_FILE_PATH_EXISTS    = 7 
}; 

struct ndmp_log_message_request_v4
{ 
	ndmp_log_type      log_type; 
	u_long             message_id; 
	string             entry<>; 
	ndmp_has_associated_message associated_message_valid; 
	u_long             associated_message_sequence; 
}; 

struct ndmp_log_file_request_v4
{ 
	string                   name<>; 
	ndmp_recovery_status     recovery_status; 
}; 



/*******************************/
/* FILE HISTORY INTERFACE (V2) */
/*******************************/

/* NDMP_FH_ADD_UNIX_PATH */
typedef string ndmp_unix_path<>;
enum ndmp_file_type 
{ 
	NDMP_FILE_DIR      = 0, 
	NDMP_FILE_FIFO     = 1, 
	NDMP_FILE_CSPEC    = 2, 
	NDMP_FILE_BSPEC    = 3, 
	NDMP_FILE_REG      = 4, 
	NDMP_FILE_SLINK    = 5, 
	NDMP_FILE_SOCK     = 6, 
	NDMP_FILE_REGISTRY = 7, 
	NDMP_FILE_OTHER    = 8 
}; 

struct ndmp_unix_file_stat
{
	ndmp_file_type	ftype;
	u_long			mtime;
	u_long			atime;
	u_long			ctime;
	u_long			uid;
	u_long			gid;
	u_long			mode;
	ndmp_u_quad		size;
	ndmp_u_quad		fh_info;
};

struct ndmp_fh_unix_path
{
	ndmp_unix_path		name;
	ndmp_unix_file_stat	fstat;
};

struct ndmp_fh_add_unix_path_request
{
	ndmp_fh_unix_path	paths<>;
};
/* no reply arguments */

/* NDMP_FH_ADD_UNIX_DIR */
struct ndmp_fh_unix_dir
{
	ndmp_unix_path		name;
	u_long			node;
	u_long			parent;
};

struct ndmp_fh_add_unix_dir_request
{
	ndmp_fh_unix_dir	dirs<>;
};
/* no reply arguments */

/* NDMP_FH_ADD_UNIX_NODE */
struct ndmp_fh_unix_node
{
	ndmp_unix_file_stat	fstat;
	u_long			node;
};

struct ndmp_fh_add_unix_node_request
{
	ndmp_fh_unix_node	nodes<>;
};
/* no reply arguments */


/********************************/
/* FILE HISTORY INTERFACE (V3) */
/********************************/

/* NDMP_FH_ADD_FILE */
enum ndmp_fs_type 
{ 
	NDMP_FS_UNIX   = 0, 
	NDMP_FS_NT     = 1, 
	NDMP_FS_OTHER  = 2 
}; 


typedef string ndmp_path_v3<>;
struct ndmp_nt_path_v3
{
	ndmp_path_v3	nt_path;
	ndmp_path_v3	dos_path;
};
 
union ndmp_file_name_v3 switch (ndmp_fs_type fs_type)
{
	case NDMP_FS_UNIX:
		ndmp_path_v3		unix_name;
	case NDMP_FS_NT:
		ndmp_nt_path_v3	nt_name;
	default:
		ndmp_path_v3		other_name;
};

/* invalid bit */
const NDMP_FILE_STAT_ATIME_INVALID	= 0x00000001;
const NDMP_FILE_STAT_CTIME_INVALID	= 0x00000002;
const NDMP_FILE_STAT_GROUP_INVALID	= 0x00000004;

struct ndmp_file_stat_v3
{
	u_long			invalid;
	ndmp_fs_type		fs_type;
	ndmp_file_type		ftype;
	u_long			mtime;
	u_long			atime;
	u_long			ctime;
	u_long			owner; /* uid for UNIX, owner for NT */
	u_long			group; /* gid for UNIX, NA for NT */
	u_long			fattr; /* mode for UNIX, fattr for NT */
	ndmp_u_quad		size;
	u_long			links;
};


/* one file could have both UNIX and NT name and attributes */
struct ndmp_file_v3
{
	ndmp_file_name_v3	names<>;
	ndmp_file_stat_v3	stats<>;
	ndmp_u_quad		node;		/* used for the direct access */
	ndmp_u_quad		fh_info;	/* used for the direct access */
};

struct ndmp_fh_add_file_request_v3
{
	ndmp_file_v3		files<>;
};
/* no reply arguments */

/* NDMP_FH_ADD_DIR */

struct ndmp_dir_v3
{
	ndmp_file_name_v3	names<>;
	ndmp_u_quad		node;
	ndmp_u_quad		parent;
};
 
struct ndmp_fh_add_dir_request_v3
{
	ndmp_dir_v3	dirs<>;
};
/* no reply arguments */
 
/* NDMP_FH_ADD_NODE */

struct ndmp_node_v3
{
	ndmp_file_stat_v3	stats<>;
	ndmp_u_quad		node;
	ndmp_u_quad		fh_info;
};
 
struct ndmp_fh_add_node_request_v3
{
	ndmp_node_v3	nodes<>;
};
/* no reply arguments */


/********************************/
/* FILE HISTORY INTERFACE (V4) */
/********************************/

/* NDMP_FH_ADD_FILE - same as V3 */

/* NDMP_FH_ADD_DIR - same as V3 */

/* NDMP_FH_ADD_NODE - same as V3 */



/********************************/
/* NDMP requests		*/
/********************************/
/* CONNECT */
typedef ndmp_auth_text ndmp_auth_text_v2;
typedef ndmp_auth_text_v3 ndmp_auth_text_v4;
typedef ndmp_auth_md5 ndmp_auth_md5_v2;
typedef ndmp_auth_md5_v3 ndmp_auth_md5_v4;
typedef ndmp_auth_data ndmp_auth_data_v2;
typedef ndmp_auth_data_v3 ndmp_auth_data_v4;

typedef ndmp_connect_open_request ndmp_connect_open_request_v2;
typedef ndmp_connect_open_request ndmp_connect_open_request_v3;
typedef ndmp_connect_open_request ndmp_connect_open_request_v4;
typedef ndmp_connect_open_reply ndmp_connect_open_reply_v2;
typedef ndmp_connect_open_reply ndmp_connect_open_reply_v3;
typedef ndmp_connect_open_reply ndmp_connect_open_reply_v4;
typedef ndmp_connect_client_auth_request ndmp_connect_client_auth_request_v2;
typedef ndmp_connect_client_auth_request_v3 ndmp_connect_client_auth_request_v4;
typedef ndmp_connect_client_auth_reply ndmp_connect_client_auth_reply_v2;
typedef ndmp_connect_client_auth_reply_v3 ndmp_connect_client_auth_reply_v4;
typedef ndmp_connect_server_auth_request ndmp_connect_server_auth_request_v2;
typedef ndmp_connect_server_auth_request ndmp_connect_server_auth_request_v3;
typedef ndmp_connect_server_auth_request ndmp_connect_server_auth_request_v4;
typedef ndmp_connect_server_auth_reply ndmp_connect_server_auth_reply_v2;
typedef ndmp_connect_server_auth_reply ndmp_connect_server_auth_reply_v3;
typedef ndmp_connect_server_auth_reply ndmp_connect_server_auth_reply_v4;


/* CONFIG */
typedef ndmp_config_get_host_info_reply ndmp_config_get_host_info_reply_v2;
typedef ndmp_config_get_host_info_reply_v3 ndmp_config_get_host_info_reply_v4;
typedef ndmp_config_get_butype_attr_request ndmp_config_get_butype_attr_request_v2;
typedef ndmp_config_get_butype_attr_reply ndmp_config_get_butype_attr_reply_v2;
typedef ndmp_config_get_mover_type_reply ndmp_config_get_mover_type_reply_v2;
typedef ndmp_config_get_auth_attr_request ndmp_config_get_auth_attr_request_v2;
typedef ndmp_config_get_auth_attr_request ndmp_config_get_auth_attr_request_v3;
typedef ndmp_config_get_auth_attr_request ndmp_config_get_auth_attr_request_v4;
typedef ndmp_config_get_auth_attr_reply ndmp_config_get_auth_attr_reply_v2;
typedef ndmp_config_get_auth_attr_reply ndmp_config_get_auth_attr_reply_v3;
typedef ndmp_config_get_auth_attr_reply ndmp_config_get_auth_attr_reply_v4;
typedef ndmp_config_get_connection_type_reply_v3 ndmp_config_get_connection_type_reply_v4;
typedef ndmp_config_get_server_info_reply_v3 ndmp_config_get_server_info_reply_v4;
typedef ndmp_fs_info_v3 ndmp_fs_info_v4;
typedef ndmp_config_get_fs_info_reply_v3 ndmp_config_get_fs_info_reply_v4;
typedef ndmp_device_info_v3 ndmp_device_info_v4;
typedef ndmp_config_get_tape_info_reply_v3  ndmp_config_get_tape_info_reply_v4;
typedef ndmp_config_get_scsi_info_reply_v3 ndmp_config_get_scsi_info_reply_v4;
typedef ndmp_config_get_ext_list_reply ndmp_config_get_ext_list_reply_v4;
typedef ndmp_config_set_ext_list_request ndmp_config_set_ext_list_request_v4;
typedef ndmp_config_set_ext_list_reply ndmp_config_set_ext_list_reply_v4;


/* SCSI */
typedef ndmp_scsi_open_request ndmp_scsi_open_request_v2;
typedef ndmp_scsi_open_request_v3 ndmp_scsi_open_request_v4;
typedef ndmp_scsi_open_reply ndmp_scsi_open_reply_v2;
typedef ndmp_scsi_open_reply ndmp_scsi_open_reply_v3;
typedef ndmp_scsi_open_reply ndmp_scsi_open_reply_v4;
typedef ndmp_scsi_close_reply ndmp_scsi_close_reply_v2;
typedef ndmp_scsi_close_reply ndmp_scsi_close_reply_v3;
typedef ndmp_scsi_close_reply ndmp_scsi_close_reply_v4;
typedef ndmp_scsi_get_state_reply ndmp_scsi_get_state_reply_v2;
typedef ndmp_scsi_get_state_reply ndmp_scsi_get_state_reply_v3;
typedef ndmp_scsi_get_state_reply ndmp_scsi_get_state_reply_v4;
typedef ndmp_scsi_set_target_request ndmp_scsi_set_target_request_v2;
typedef ndmp_scsi_set_target_reply ndmp_scsi_set_target_reply_v2;
typedef ndmp_scsi_set_target_reply ndmp_scsi_set_target_reply_v3;
typedef ndmp_scsi_reset_device_reply ndmp_scsi_reset_device_reply_v2;
typedef ndmp_scsi_reset_device_reply ndmp_scsi_reset_device_reply_v3;
typedef ndmp_scsi_reset_device_reply ndmp_scsi_reset_device_reply_v4;
typedef ndmp_scsi_reset_bus_reply ndmp_scsi_reset_bus_reply_v2;
typedef ndmp_scsi_reset_bus_reply ndmp_scsi_reset_bus_reply_v3;
typedef ndmp_execute_cdb_request ndmp_scsi_execute_cdb_request_v2;
typedef ndmp_execute_cdb_request ndmp_scsi_execute_cdb_request_v3;
typedef ndmp_execute_cdb_request ndmp_scsi_execute_cdb_request_v4;
typedef ndmp_execute_cdb_reply ndmp_scsi_execute_cdb_reply_v2;
typedef ndmp_execute_cdb_reply ndmp_scsi_execute_cdb_reply_v3;
typedef ndmp_execute_cdb_reply ndmp_scsi_execute_cdb_reply_v4;


/* TAPE */
typedef ndmp_tape_open_request ndmp_tape_open_request_v2;
typedef ndmp_tape_open_request_v3 ndmp_tape_open_request_v4;
typedef ndmp_tape_open_reply ndmp_tape_open_reply_v2;
typedef ndmp_tape_open_reply ndmp_tape_open_reply_v3;
typedef ndmp_tape_open_reply ndmp_tape_open_reply_v4;
typedef ndmp_tape_close_reply ndmp_tape_close_reply_v2;
typedef ndmp_tape_close_reply ndmp_tape_close_reply_v3;
typedef ndmp_tape_close_reply ndmp_tape_close_reply_v4;
typedef ndmp_tape_get_state_reply ndmp_tape_get_state_reply_v2;
typedef ndmp_tape_mtio_request ndmp_tape_mtio_request_v2;
typedef ndmp_tape_mtio_request ndmp_tape_mtio_request_v3;
typedef ndmp_tape_mtio_request ndmp_tape_mtio_request_v4;
typedef ndmp_tape_mtio_reply ndmp_tape_mtio_reply_v2;
typedef ndmp_tape_mtio_reply ndmp_tape_mtio_reply_v3;
typedef ndmp_tape_mtio_reply ndmp_tape_mtio_reply_v4;
typedef ndmp_tape_write_request ndmp_tape_write_request_v2;
typedef ndmp_tape_write_request ndmp_tape_write_request_v3;
typedef ndmp_tape_write_request ndmp_tape_write_request_v4;
typedef ndmp_tape_write_reply ndmp_tape_write_reply_v2;
typedef ndmp_tape_write_reply ndmp_tape_write_reply_v3;
typedef ndmp_tape_write_reply ndmp_tape_write_reply_v4;
typedef ndmp_tape_read_request ndmp_tape_read_request_v2;
typedef ndmp_tape_read_request ndmp_tape_read_request_v3;
typedef ndmp_tape_read_request ndmp_tape_read_request_v4;
typedef ndmp_tape_read_reply ndmp_tape_read_reply_v2;
typedef ndmp_tape_read_reply ndmp_tape_read_reply_v3;
typedef ndmp_tape_read_reply ndmp_tape_read_reply_v4;
typedef ndmp_tape_execute_cdb_request ndmp_tape_execute_cdb_request_v2;
typedef ndmp_tape_execute_cdb_request ndmp_tape_execute_cdb_request_v3;
typedef ndmp_tape_execute_cdb_request ndmp_tape_execute_cdb_request_v4;
typedef ndmp_tape_execute_cdb_reply ndmp_tape_execute_cdb_reply_v2;
typedef ndmp_tape_execute_cdb_reply ndmp_tape_execute_cdb_reply_v3;
typedef ndmp_tape_execute_cdb_reply ndmp_tape_execute_cdb_reply_v4;


/* MOVER */
typedef ndmp_fc_addr_v3 ndmp_fc_addr;
typedef ndmp_ipc_addr_v3 ndmp_ipc_addr;
typedef ndmp_mover_get_state_reply ndmp_mover_get_state_reply_v2;
typedef ndmp_mover_listen_request ndmp_mover_listen_request_v2;
typedef ndmp_mover_listen_request ndmp_mover_listen_request_v3;
typedef ndmp_mover_listen_request ndmp_mover_listen_request_v4;
typedef ndmp_mover_listen_reply ndmp_mover_listen_reply_v2;
typedef ndmp_mover_set_record_size_request ndmp_mover_set_record_size_request_v2;
typedef ndmp_mover_set_record_size_request ndmp_mover_set_record_size_request_v3;
typedef ndmp_mover_set_record_size_request ndmp_mover_set_record_size_request_v4;
typedef ndmp_mover_set_record_size_reply ndmp_mover_set_record_size_reply_v2;
typedef ndmp_mover_set_record_size_reply ndmp_mover_set_record_size_reply_v3;
typedef ndmp_mover_set_record_size_reply ndmp_mover_set_record_size_reply_v4;
typedef ndmp_mover_set_window_request ndmp_mover_set_window_request_v2;
typedef ndmp_mover_set_window_request ndmp_mover_set_window_request_v3;
typedef ndmp_mover_set_window_request ndmp_mover_set_window_request_v4;
typedef ndmp_mover_set_window_reply ndmp_mover_set_window_reply_v2;
typedef ndmp_mover_set_window_reply ndmp_mover_set_window_reply_v3;
typedef ndmp_mover_set_window_reply ndmp_mover_set_window_reply_v4;
typedef ndmp_mover_continue_reply ndmp_mover_continue_reply_v2;
typedef ndmp_mover_continue_reply ndmp_mover_continue_reply_v3;
typedef ndmp_mover_continue_reply ndmp_mover_continue_reply_v4;
typedef ndmp_mover_abort_reply ndmp_mover_abort_reply_v2;
typedef ndmp_mover_abort_reply ndmp_mover_abort_reply_v3;
typedef ndmp_mover_abort_reply ndmp_mover_abort_reply_v4;
typedef ndmp_mover_stop_reply ndmp_mover_stop_reply_v2;
typedef ndmp_mover_stop_reply ndmp_mover_stop_reply_v3;
typedef ndmp_mover_stop_reply ndmp_mover_stop_reply_v4;
typedef ndmp_mover_read_request ndmp_mover_read_request_v2;
typedef ndmp_mover_read_request ndmp_mover_read_request_v3;
typedef ndmp_mover_read_request ndmp_mover_read_request_v4;
typedef ndmp_mover_read_reply ndmp_mover_read_reply_v2;
typedef ndmp_mover_read_reply ndmp_mover_read_reply_v3;
typedef ndmp_mover_read_reply ndmp_mover_read_reply_v4;
typedef ndmp_mover_close_reply ndmp_mover_close_reply_v2;
typedef ndmp_mover_close_reply ndmp_mover_close_reply_v3;
typedef ndmp_mover_close_reply ndmp_mover_close_reply_v4;
typedef ndmp_mover_connect_reply_v3 ndmp_mover_connect_reply_v4;


/* DATA */
typedef ndmp_data_get_state_reply ndmp_data_get_state_reply_v2;
typedef ndmp_data_start_backup_request ndmp_data_start_backup_request_v2;
typedef ndmp_data_start_backup_request_v3 ndmp_data_start_backup_request_v4;
typedef ndmp_data_start_backup_reply ndmp_data_start_backup_reply_v2;
typedef ndmp_data_start_backup_reply ndmp_data_start_backup_reply_v3;
typedef ndmp_data_start_backup_reply ndmp_data_start_backup_reply_v4;
typedef ndmp_name ndmp_name_v2;
typedef ndmp_data_start_recover_request ndmp_data_start_recover_request_v2;
typedef ndmp_data_start_recover_request_v3 ndmp_data_start_recover_request_v4;
typedef ndmp_data_start_recover_reply ndmp_data_start_recover_reply_v2;
typedef ndmp_data_start_recover_reply ndmp_data_start_recover_reply_v3;
typedef ndmp_data_start_recover_reply ndmp_data_start_recover_reply_v4;
typedef ndmp_data_start_recover_reply ndmp_data_start_recover_filehist_reply_v4;
typedef ndmp_data_abort_reply ndmp_data_abort_reply_v2;
typedef ndmp_data_abort_reply ndmp_data_abort_reply_v3;
typedef ndmp_data_abort_reply ndmp_data_abort_reply_v4;
typedef ndmp_data_stop_reply ndmp_data_stop_reply_v2;
typedef ndmp_data_stop_reply ndmp_data_stop_reply_v3;
typedef ndmp_data_stop_reply ndmp_data_stop_reply_v4;
typedef ndmp_data_get_env_reply ndmp_data_get_env_reply_v2;
typedef ndmp_data_get_env_reply ndmp_data_get_env_reply_v3;
typedef ndmp_data_get_env_reply ndmp_data_get_env_reply_v4;
typedef ndmp_data_listen_request_v3 ndmp_data_listen_request_v4;
typedef ndmp_data_connect_reply_v3 ndmp_data_connect_reply_v4;


/* NOTIFY */
typedef ndmp_notify_data_halted_request ndmp_notify_data_halted_request_v2;
typedef ndmp_notify_data_halted_request ndmp_notify_data_halted_request_v3;
typedef ndmp_notify_connected_request ndmp_notify_connection_status_request_v2;
typedef ndmp_notify_connected_request ndmp_notify_connection_status_request_v3;
typedef ndmp_notify_connected_request ndmp_notify_connection_status_request_v4;
typedef ndmp_notify_mover_paused_request ndmp_notify_mover_paused_request_v2;
typedef ndmp_notify_mover_paused_request ndmp_notify_mover_paused_request_v3;
typedef ndmp_notify_mover_paused_request ndmp_notify_mover_paused_request_v4;
typedef ndmp_notify_mover_halted_request ndmp_notify_mover_halted_request_v2;
typedef ndmp_notify_mover_halted_request ndmp_notify_mover_halted_request_v3;
typedef ndmp_notify_data_read_request ndmp_notify_data_read_request_v2;
typedef ndmp_notify_data_read_request ndmp_notify_data_read_request_v3;
typedef ndmp_notify_data_read_request ndmp_notify_data_read_request_v4;


/* LOG */
typedef ndmp_log_log_request ndmp_log_log_request_v2;
typedef ndmp_log_log_request ndmp_log_log_request_v3;
typedef ndmp_log_log_request ndmp_log_log_request_v4;
typedef ndmp_log_debug_request ndmp_log_debug_request_v2;
typedef ndmp_log_debug_request ndmp_log_debug_request_v3;
typedef ndmp_log_debug_request ndmp_log_debug_request_v4;
typedef ndmp_log_file_request ndmp_log_file_request_v2;


/* FILE HISTORY */
typedef ndmp_file_v3 ndmp_file;
typedef ndmp_dir_v3 ndmp_dir;
typedef ndmp_node_v3 ndmp_node;
typedef ndmp_fh_add_unix_path_request ndmp_fh_add_unix_path_request_v2;
typedef ndmp_fh_add_unix_path_request ndmp_fh_add_unix_path_request_v3;
typedef ndmp_fh_add_file_request_v3 ndmp_fh_add_file_request_v4;
typedef ndmp_fh_add_unix_dir_request ndmp_fh_add_unix_dir_request_v2;
typedef ndmp_fh_add_unix_dir_request ndmp_fh_add_unix_dir_request_v3;
typedef ndmp_fh_add_dir_request_v3 ndmp_fh_add_dir_request_v4;
typedef ndmp_fh_add_unix_node_request ndmp_fh_add_unix_node_request_v2;
typedef ndmp_fh_add_unix_node_request ndmp_fh_add_unix_node_request_v3;
typedef ndmp_fh_add_node_request_v3 ndmp_fh_add_node_request_v4;