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
|
/*********************************************************
* Copyright (C) 1998 VMware, Inc. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation version 2.1 and no later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the Lesser GNU General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
*********************************************************/
/*
* hgfsProto.h --
*
* Header file for data types and message formats used in the
* Host/Guest File System (hgfs) protocol.
*/
#ifndef _HGFS_PROTO_H_
# define _HGFS_PROTO_H_
#define INCLUDE_ALLOW_USERLEVEL
#define INCLUDE_ALLOW_MODULE
#define INCLUDE_ALLOW_DISTRIBUTE
#include "includeCheck.h"
#include "vm_basic_types.h"
#include "hgfs.h"
/*
* Handle used by the server to identify files and searches. Used
* by the driver to match server replies with pending requests.
*/
typedef uint32 HgfsHandle;
#define HGFS_INVALID_HANDLE ((HgfsHandle)~((HgfsHandle)0))
/*
* Opcodes for server operations.
*
* Changing the ordering of this enum will break the protocol; new ops
* should be added at the end (but before HGFS_OP_MAX).
*/
typedef enum {
HGFS_OP_OPEN, /* Open file */
HGFS_OP_READ, /* Read from file */
HGFS_OP_WRITE, /* Write to file */
HGFS_OP_CLOSE, /* Close file */
HGFS_OP_SEARCH_OPEN, /* Start new search */
HGFS_OP_SEARCH_READ, /* Get next search response */
HGFS_OP_SEARCH_CLOSE, /* End a search */
HGFS_OP_GETATTR, /* Get file attributes */
HGFS_OP_SETATTR, /* Set file attributes */
HGFS_OP_CREATE_DIR, /* Create new directory */
HGFS_OP_DELETE_FILE, /* Delete a file */
HGFS_OP_DELETE_DIR, /* Delete a directory */
HGFS_OP_RENAME, /* Rename a file or directory */
HGFS_OP_QUERY_VOLUME_INFO, /* Query volume information */
/*
* The following operations are only available in version 2 of the hgfs
* protocol. The corresponding version 1 opcodes above are deprecated.
*/
HGFS_OP_OPEN_V2, /* Open file */
HGFS_OP_GETATTR_V2, /* Get file attributes */
HGFS_OP_SETATTR_V2, /* Set file attributes */
HGFS_OP_SEARCH_READ_V2, /* Get next search response */
HGFS_OP_CREATE_SYMLINK, /* Create a symlink */
HGFS_OP_SERVER_LOCK_CHANGE, /* Change the oplock on a file */
HGFS_OP_CREATE_DIR_V2, /* Create a directory */
HGFS_OP_DELETE_FILE_V2, /* Delete a file */
HGFS_OP_DELETE_DIR_V2, /* Delete a directory */
HGFS_OP_RENAME_V2, /* Rename a file or directory */
/*
* Operations for version 3, deprecating version 2 operations.
*/
HGFS_OP_OPEN_V3, /* Open file */
HGFS_OP_READ_V3, /* Read from file */
HGFS_OP_WRITE_V3, /* Write to file */
HGFS_OP_CLOSE_V3, /* Close file */
HGFS_OP_SEARCH_OPEN_V3, /* Start new search */
HGFS_OP_SEARCH_READ_V3, /* Start new search */
HGFS_OP_SEARCH_CLOSE_V3, /* End a search */
HGFS_OP_GETATTR_V3, /* Get file attributes */
HGFS_OP_SETATTR_V3, /* Set file attributes */
HGFS_OP_CREATE_DIR_V3, /* Create new directory */
HGFS_OP_DELETE_FILE_V3, /* Delete a file */
HGFS_OP_DELETE_DIR_V3, /* Delete a directory */
HGFS_OP_RENAME_V3, /* Rename a file or directory */
HGFS_OP_QUERY_VOLUME_INFO_V3, /* Query volume information */
HGFS_OP_CREATE_SYMLINK_V3, /* Create a symlink */
HGFS_OP_SERVER_LOCK_CHANGE_V3, /* Change the oplock on a file */
HGFS_OP_MAX, /* Dummy op, must be last in enum */
} HgfsOp;
/* HGFS protocol versions. */
#define HGFS_VERSION_OLD (1 << 0)
#define HGFS_VERSION_3 (1 << 1)
/* XXX: Needs change when VMCI is supported. */
#define HGFS_REQ_PAYLOAD_SIZE_V3(hgfsReq) (sizeof *hgfsReq + sizeof(HgfsRequest))
#define HGFS_REP_PAYLOAD_SIZE_V3(hgfsRep) (sizeof *hgfsRep + sizeof(HgfsReply))
/* XXX: Needs change when VMCI is supported. */
#define HGFS_REQ_GET_PAYLOAD_V3(hgfsReq) ((char *)(hgfsReq) + sizeof(HgfsRequest))
#define HGFS_REP_GET_PAYLOAD_V3(hgfsRep) ((char *)(hgfsRep) + sizeof(HgfsReply))
/* Some fudged values for TCP over sockets. */
#define HGFS_HOST_PORT 2000
/* Socket packet magic. */
#define HGFS_SOCKET_VERSION1 1
/*
* Socket status codes.
*/
typedef enum {
HGFS_SOCKET_STATUS_SUCCESS, /* Socket header is good. */
HGFS_SOCKET_STATUS_SIZE_MISMATCH, /* Size and version are incompatible. */
HGFS_SOCKET_STATUS_VERSION_NOT_SUPPORTED, /* Version not handled by remote. */
HGFS_SOCKET_STATUS_INVALID_PACKETLEN, /* Message len exceeds maximum. */
} HgfsSocketStatus;
/*
* Socket flags.
*/
typedef uint32 HgfsSocketFlags;
/* Used by backdoor proxy socket client to Hgfs server (out of VMX process). */
#define HGFS_SOCKET_SYNC (1 << 0)
/* Socket packet header. */
typedef
#include "vmware_pack_begin.h"
struct HgfsSocketHeader {
uint32 version; /* Header version. */
uint32 size; /* Header size, should match for the specified version. */
HgfsSocketStatus status; /* Status: always success when sending (ignored) valid on replies. */
uint32 packetLen; /* The length of the packet to follow. */
HgfsSocketFlags flags; /* The flags to indicate how to deal with the packet. */
}
#include "vmware_pack_end.h"
HgfsSocketHeader;
#define HgfsSocketHeaderInit(hdr, _version, _size, _status, _pktLen, _flags) \
do { \
(hdr)->version = (_version); \
(hdr)->size = (_size); \
(hdr)->status = (_status); \
(hdr)->packetLen = (_pktLen); \
(hdr)->flags = (_flags); \
} while (0)
/*
* File types, used in HgfsAttr. We support regular files,
* directories, and symlinks.
*
* Changing the order of this enum will break the protocol; new types
* should be added at the end.
*/
typedef enum {
HGFS_FILE_TYPE_REGULAR,
HGFS_FILE_TYPE_DIRECTORY,
HGFS_FILE_TYPE_SYMLINK,
} HgfsFileType;
/*
* Open flags.
*
* Changing the order of this enum will break stuff. Do not add any flags to
* this enum: it has been frozen and all new flags should be added to
* HgfsOpenMode. This was done because HgfsOpenMode could still be converted
* to a bitmask (so that it's easier to add flags to) whereas this enum was
* already too large.
*/
typedef enum { // File doesn't exist File exists
HGFS_OPEN, // error
HGFS_OPEN_EMPTY, // error size = 0
HGFS_OPEN_CREATE, // create
HGFS_OPEN_CREATE_SAFE, // create error
HGFS_OPEN_CREATE_EMPTY, // create size = 0
} HgfsOpenFlags;
/*
* Write flags.
*/
typedef uint8 HgfsWriteFlags;
#define HGFS_WRITE_APPEND 1
/*
* Permissions bits.
*
* These are intentionally similar to Unix permissions bits, and we
* convert to/from Unix permissions using simple shift operations, so
* don't change these or you will break things.
*/
typedef uint8 HgfsPermissions;
#define HGFS_PERM_READ 4
#define HGFS_PERM_WRITE 2
#define HGFS_PERM_EXEC 1
/*
* Access mode bits.
*
* Different operating systems have different set of file access mode.
* Here are constants that are rich enough to describe all access modes in an OS
* independent way.
*/
typedef uint32 HgfsAccessMode;
/*
* Generic access rights control coarse grain access for the file.
* A particular generic rigth can be expanded into different set of specific rights
* on different OS.
*/
/*
* HGFS_MODE_GENERIC_READ means ability to read file data and read various file
* attributes and properties.
*/
#define HGFS_MODE_GENERIC_READ (1 << 0)
/*
* HGFS_MODE_GENERIC_WRITE means ability to write file data and updaate various file
* attributes and properties.
*/
#define HGFS_MODE_GENERIC_WRITE (1 << 1)
/*
* HGFS_MODE_GENERIC_EXECUE means ability to execute file. For network redirectors
* ability to execute usualy implies ability to read data; for local file systems
* HGFS_MODE_GENERIC_EXECUTE does not imply ability to read data.
*/
#define HGFS_MODE_GENERIC_EXECUTE (1 << 2)
/* Specific rights define fine grain access modes. */
#define HGFS_MODE_READ_DATA (1 << 3) // Ability to read file data
#define HGFS_MODE_WRITE_DATA (1 << 4) // Ability to writge file data
#define HGFS_MODE_APPEND_DATA (1 << 5) // Appending data to the end of file
#define HGFS_MODE_DELETE (1 << 6) // Ability to delete the file
#define HGFS_MODE_TRAVERSE_DIRECTORY (1 << 7) // Ability to access files in a directory
#define HGFS_MODE_LIST_DIRECTORY (1 << 8) // Ability to list file names
#define HGFS_MODE_ADD_SUBDIRECTORY (1 << 9) // Ability to create a new subdirectory
#define HGFS_MODE_ADD_FILE (1 << 10) // Ability to create a new file
#define HGFS_MODE_DELETE_CHILD (1 << 11) // Ability to delete file/subdirectory
#define HGFS_MODE_READ_ATTRIBUTES (1 << 12) // Ability to read attributes
#define HGFS_MODE_WRITE_ATTRIBUTES (1 << 13) // Ability to write attributes
#define HGFS_MODE_READ_EXTATTRIBUTES (1 << 14) // Ability to read extended attributes
#define HGFS_MODE_WRITE_EXTATTRIBUTES (1 << 15) // Ability to write extended attributes
#define HGFS_MODE_READ_SECURITY (1 << 16) // Ability to read permissions/ACLs/owner
#define HGFS_MODE_WRITE_SECURITY (1 << 17) // Ability to change permissions/ACLs
#define HGFS_MODE_TAKE_OWNERSHIP (1 << 18) // Ability to change file owner/group
/*
* Server-side locking (oplocks and leases).
*
* The client can ask the server to acquire opportunistic locking/leasing
* from the host FS on its behalf. This is communicated as part of an open request.
*
* HGFS_LOCK_OPPORTUNISTIC means that the client trusts the server
* to decide what kind of locking to request from the host FS.
* All other values tell the server explicitly the type of lock to
* request.
*
* The server will attempt to acquire the desired lock and will notify the client
* which type of lock was acquired as part of the reply to the open request.
* Note that HGFS_LOCK_OPPORTUNISTIC should not be specified as the type of
* lock acquired by the server, since HGFS_LOCK_OPPORTUNISTIC is not an
* actual lock.
*/
typedef enum {
HGFS_LOCK_NONE,
HGFS_LOCK_OPPORTUNISTIC,
HGFS_LOCK_EXCLUSIVE,
HGFS_LOCK_SHARED,
} HgfsServerLock;
/*
* Flags to indicate in a setattr request which fields should be
* updated. Deprecated.
*/
typedef uint8 HgfsAttrChanges;
#define HGFS_ATTR_SIZE (1 << 0)
#define HGFS_ATTR_CREATE_TIME (1 << 1)
#define HGFS_ATTR_ACCESS_TIME (1 << 2)
#define HGFS_ATTR_WRITE_TIME (1 << 3)
#define HGFS_ATTR_CHANGE_TIME (1 << 4)
#define HGFS_ATTR_PERMISSIONS (1 << 5)
#define HGFS_ATTR_ACCESS_TIME_SET (1 << 6)
#define HGFS_ATTR_WRITE_TIME_SET (1 << 7)
/*
* Hints to indicate in a getattr or setattr which attributes
* are valid for the request.
* For setattr only, attributes should be set by host even if
* no valid values are specified by the guest.
*/
typedef uint64 HgfsAttrHint;
#define HGFS_ATTR_HINT_SET_ACCESS_TIME (1 << 0)
#define HGFS_ATTR_HINT_SET_WRITE_TIME (1 << 1)
#define HGFS_ATTR_HINT_USE_FILE_DESC (1 << 2)
/*
* Hint to determine using a name or a handle to determine
* what to delete.
*/
typedef uint64 HgfsDeleteHint;
#define HGFS_DELETE_HINT_USE_FILE_DESC (1 << 0)
/*
* Hint to determine using a name or a handle to determine
* what to renames.
*/
typedef uint64 HgfsRenameHint;
#define HGFS_RENAME_HINT_USE_SRCFILE_DESC (1 << 0)
#define HGFS_RENAME_HINT_USE_TARGETFILE_DESC (1 << 1)
#define HGFS_RENAME_HINT_NO_REPLACE_EXISTING (1 << 2)
#define HGFS_RENAME_HINT_NO_COPY_ALLOWED (1 << 3)
/*
* File attributes.
*
* The four time fields below are in Windows NT format, which is in
* units of 100ns since Jan 1, 1601, UTC.
*/
/*
* Version 1 attributes. Deprecated.
* Version 2 should be using HgfsAttrV2.
*/
typedef
#include "vmware_pack_begin.h"
struct HgfsAttr {
HgfsFileType type; /* File type */
uint64 size; /* File size (in bytes) */
uint64 creationTime; /* Creation time. Ignored by POSIX */
uint64 accessTime; /* Time of last access */
uint64 writeTime; /* Time of last write */
uint64 attrChangeTime; /* Time file attributess were last
* changed. Ignored by Windows */
HgfsPermissions permissions; /* Permissions bits */
}
#include "vmware_pack_end.h"
HgfsAttr;
/* Various flags and Windows attributes. */
typedef uint64 HgfsAttrFlags;
#define HGFS_ATTR_HIDDEN (1 << 0)
#define HGFS_ATTR_SYSTEM (1 << 1)
#define HGFS_ATTR_ARCHIVE (1 << 2)
#define HGFS_ATTR_HIDDEN_FORCED (1 << 3)
#define HGFS_ATTR_REPARSE_POINT (1 << 4)
/*
* Specifies which open request fields contain
* valid values.
*/
typedef uint64 HgfsOpenValid;
#define HGFS_OPEN_VALID_NONE 0
#define HGFS_OPEN_VALID_MODE (1 << 0)
#define HGFS_OPEN_VALID_FLAGS (1 << 1)
#define HGFS_OPEN_VALID_SPECIAL_PERMS (1 << 2)
#define HGFS_OPEN_VALID_OWNER_PERMS (1 << 3)
#define HGFS_OPEN_VALID_GROUP_PERMS (1 << 4)
#define HGFS_OPEN_VALID_OTHER_PERMS (1 << 5)
#define HGFS_OPEN_VALID_FILE_ATTR (1 << 6)
#define HGFS_OPEN_VALID_ALLOCATION_SIZE (1 << 7)
#define HGFS_OPEN_VALID_DESIRED_ACCESS (1 << 8)
#define HGFS_OPEN_VALID_SHARE_ACCESS (1 << 9)
#define HGFS_OPEN_VALID_SERVER_LOCK (1 << 10)
#define HGFS_OPEN_VALID_FILE_NAME (1 << 11)
/*
* Specifies which attribute fields contain
* valid values.
*/
typedef uint64 HgfsAttrValid;
#define HGFS_ATTR_VALID_NONE 0
#define HGFS_ATTR_VALID_TYPE (1 << 0)
#define HGFS_ATTR_VALID_SIZE (1 << 1)
#define HGFS_ATTR_VALID_CREATE_TIME (1 << 2)
#define HGFS_ATTR_VALID_ACCESS_TIME (1 << 3)
#define HGFS_ATTR_VALID_WRITE_TIME (1 << 4)
#define HGFS_ATTR_VALID_CHANGE_TIME (1 << 5)
#define HGFS_ATTR_VALID_SPECIAL_PERMS (1 << 6)
#define HGFS_ATTR_VALID_OWNER_PERMS (1 << 7)
#define HGFS_ATTR_VALID_GROUP_PERMS (1 << 8)
#define HGFS_ATTR_VALID_OTHER_PERMS (1 << 9)
#define HGFS_ATTR_VALID_FLAGS (1 << 10)
#define HGFS_ATTR_VALID_ALLOCATION_SIZE (1 << 11)
#define HGFS_ATTR_VALID_USERID (1 << 12)
#define HGFS_ATTR_VALID_GROUPID (1 << 13)
#define HGFS_ATTR_VALID_FILEID (1 << 14)
#define HGFS_ATTR_VALID_VOLID (1 << 15)
/*
* Add our file and volume identifiers.
* NOTE: On Windows hosts, the file identifier is not guaranteed to be valid
* particularly with FAT. A defrag operation could cause it to change.
* Therefore, to not confuse older clients, and non-Windows
* clients we have added a separate flag.
* The Windows client will check for both flags for the
* file ID, and return the information to the guest application.
* However, it will use the ID internally, when it has an open
* handle on the server.
* Non-Windows clients need the file ID to be always guaranteed,
* which is to say, that the ID remains constant over the course of the
* file's lifetime, and will use the HGFS_ATTR_VALID_FILEID flag
* only to determine if the ID is valid.
*/
#define HGFS_ATTR_VALID_NON_STATIC_FILEID (1 << 16)
/*
* File permissions that are in effect for the user which runs HGFS server.
* Client needs to know effective permissions in order to implement access(2).
* Client can't derive it from group/owner/other permissions because of two resaons:
* 1. It does not know user/group id of the user which runs HGFS server
* 2. Effective permissions account for additional restrictions that may be imposed
* by host file system, for example by ACL.
*/
#define HGFS_ATTR_VALID_EFFECTIVE_PERMS (1 << 17)
/*
* Specifies which create dir request fields contain
* valid values.
*/
typedef uint64 HgfsCreateDirValid;
#define HGFS_CREATE_DIR_VALID_NONE 0
#define HGFS_CREATE_DIR_VALID_SPECIAL_PERMS (1 << 0)
#define HGFS_CREATE_DIR_VALID_OWNER_PERMS (1 << 1)
#define HGFS_CREATE_DIR_VALID_GROUP_PERMS (1 << 2)
#define HGFS_CREATE_DIR_VALID_OTHER_PERMS (1 << 3)
#define HGFS_CREATE_DIR_VALID_FILE_NAME (1 << 4)
#define HGFS_CREATE_DIR_VALID_FILE_ATTR (1 << 5)
/*
* Version 2 of HgfsAttr
*/
typedef
#include "vmware_pack_begin.h"
struct HgfsAttrV2 {
HgfsAttrValid mask; /* A bit mask to determine valid attribute fields */
HgfsFileType type; /* File type */
uint64 size; /* File size (in bytes) */
uint64 creationTime; /* Creation time. Ignored by POSIX */
uint64 accessTime; /* Time of last access */
uint64 writeTime; /* Time of last write */
uint64 attrChangeTime; /* Time file attributes were last
* changed. Ignored by Windows */
HgfsPermissions specialPerms; /* Special permissions bits (suid, etc.).
* Ignored by Windows */
HgfsPermissions ownerPerms; /* Owner permissions bits */
HgfsPermissions groupPerms; /* Group permissions bits. Ignored by
* Windows */
HgfsPermissions otherPerms; /* Other permissions bits. Ignored by
* Windows */
HgfsAttrFlags flags; /* Various flags and Windows 'attributes' */
uint64 allocationSize; /* Actual size of file on disk */
uint32 userId; /* User identifier, ignored by Windows */
uint32 groupId; /* group identifier, ignored by Windows */
uint64 hostFileId; /* File Id of the file on host: inode_t on Linux */
uint32 volumeId; /* volume identifier, non-zero is valid. */
uint32 effectivePerms; /* Permissions in effect for the user on the host. */
uint64 reserved2; /* Reserved for future use */
}
#include "vmware_pack_end.h"
HgfsAttrV2;
/*
* Cross-platform filename representation
*
* Cross-platform (CP) names are represented by a string with each
* path component separated by NULs, and terminated with a final NUL,
* but with no leading path separator.
*
* For example, the representations of a POSIX and Windows name
* are as follows, with "0" meaning NUL.
*
* Original name Cross-platform name
* -----------------------------------------------------
* "/home/bac/temp" -> "home0bac0temp0"
* "C:\temp\file.txt" -> "C0temp0file.txt0"
*
* Note that as in the example above, Windows should strip the colon
* off of drive letters as part of the conversion. Aside from that,
* all characters in each path component should be left unescaped and
* unmodified. Each OS is responsible for escaping any characters that
* are not legal in its filenames when converting FROM the CP name
* format, and unescaping them when converting TO the CP name format.
*
* In some requests (OPEN, GETATTR, SETATTR, DELETE, CREATE_DIR) the
* CP name is used to represent a particular file, but it is also used
* to represent a search pattern for looking up files using
* SEARCH_OPEN.
*
* In the current HGFS server implementation, each request has a minimum packet
* size that must be met for it to be considered valid. This minimum is simply
* the sizeof the particular request, which includes the solitary byte from the
* HgfsFileName struct. For these particular requests, clients add an extra
* byte to their payload size, without that byte being present anywhere.
*
* It isn't clear that this behavior is correct, but the end result is that
* neither end malfunctions, as an extra byte gets sent by the client and is
* ignored by the server. Unfortunately, it cannot be easily fixed. The
* server's minimum packet size can be changed, but the client should continue
* to send an extra byte, otherwise older servers with a slightly longer
* minimum packet size may consider the new client's packets to be too short.
*
* UTF-8 representation
* --------------------
* XXX: It is expected that file names in the HGFS protocol will be a valid UTF-8
* encoding.
* See RFC 3629 (http://tools.ietf.org/html/rfc3629)
*
* Unicode Format
* --------------
* HGFS protocol requests that contain file names as in the structure below,
* should contain unicode normal form C (precomposed see explanation below)
* characters therefore hosts such as Mac OS which
* use HFS+ and unicode form D should convert names before
* processing or sending HGFS requests.
*
* Precomposed (normal form C) versus Decomposed (normal form D)
* -------------------------------------------------------------
* Certain Unicode characters can be encoded in more than one way.
* For example, an (A acute) can be encoded either precomposed,
* as U+00C1 (LATIN CAPITAL LETTER A WITH ACUTE), or decomposed,
* as U+0041 U+0301 (LATIN CAPITAL LETTER A followed by a COMBINING ACUTE ACCENT).
* Precomposed characters are more common in the Windows world,
* whereas decomposed characters are more common on the Mac.
*
* See UAX 15 (http://unicode.org/reports/tr15/)
*/
typedef
#include "vmware_pack_begin.h"
struct HgfsFileName {
uint32 length; /* Does NOT include terminating NUL */
char name[1];
}
#include "vmware_pack_end.h"
HgfsFileName;
/*
* Case-sensitiviy flags are only used when any lookup is
* involved on the server side.
*/
typedef enum {
HGFS_FILE_NAME_DEFAULT_CASE,
HGFS_FILE_NAME_CASE_SENSITIVE,
HGFS_FILE_NAME_CASE_INSENSITIVE,
} HgfsCaseType;
/*
* HgfsFileNameV3 - new header to incorporate case-sensitivity flags along with
* Hgfs file handle.
*/
typedef
#include "vmware_pack_begin.h"
struct HgfsFileNameV3 {
uint32 length; /* Does NOT include terminating NUL */
uint32 flags; /* Flags described below. */
HgfsCaseType caseType; /* Case-sensitivity type. */
HgfsHandle fid;
char name[1];
}
#include "vmware_pack_end.h"
HgfsFileNameV3;
/*
* HgfsFileNameV3 flags. Case-sensitiviy flags are only used when any lookup is
* involved on the server side.
*/
#define HGFS_FILE_NAME_USE_FILE_DESC (1 << 0) /* Case type ignored if set. */
/*
* Request/reply structs. These are the first members of all
* operation request and reply messages, respectively.
*/
typedef
#include "vmware_pack_begin.h"
struct HgfsRequest {
HgfsHandle id; /* Opaque request ID used by the requestor */
HgfsOp op;
}
#include "vmware_pack_end.h"
HgfsRequest;
typedef
#include "vmware_pack_begin.h"
struct HgfsReply {
HgfsHandle id; /* Opaque request ID used by the requestor */
HgfsStatus status;
}
#include "vmware_pack_end.h"
HgfsReply;
/*
* Messages for our file operations.
*/
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestOpen {
HgfsRequest header;
HgfsOpenMode mode; /* Which type of access is requested */
HgfsOpenFlags flags; /* Which flags to open the file with */
HgfsPermissions permissions; /* Which permissions to *create* a new file with */
HgfsFileName fileName;
}
#include "vmware_pack_end.h"
HgfsRequestOpen;
/* Version 2 of HgfsRequestOpen */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestOpenV2 {
HgfsRequest header;
HgfsOpenValid mask; /* Bitmask that specified which fields are valid. */
HgfsOpenMode mode; /* Which type of access requested. See desiredAccess */
HgfsOpenFlags flags; /* Which flags to open the file with */
HgfsPermissions specialPerms; /* Desired 'special' permissions for file creation */
HgfsPermissions ownerPerms; /* Desired 'owner' permissions for file creation */
HgfsPermissions groupPerms; /* Desired 'group' permissions for file creation */
HgfsPermissions otherPerms; /* Desired 'other' permissions for file creation */
HgfsAttrFlags attr; /* Attributes, if any, for file creation */
uint64 allocationSize; /* How much space to pre-allocate during creation */
uint32 desiredAccess; /* Extended support for windows access modes */
uint32 shareAccess; /* Windows only, share access modes */
HgfsServerLock desiredLock; /* The type of lock desired by the client */
uint64 reserved1; /* Reserved for future use */
uint64 reserved2; /* Reserved for future use */
HgfsFileName fileName;
}
#include "vmware_pack_end.h"
HgfsRequestOpenV2;
/* Version 3 of HgfsRequestOpen */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestOpenV3 {
HgfsOpenValid mask; /* Bitmask that specified which fields are valid. */
HgfsOpenMode mode; /* Which type of access requested. See desiredAccess */
HgfsOpenFlags flags; /* Which flags to open the file with */
HgfsPermissions specialPerms; /* Desired 'special' permissions for file creation */
HgfsPermissions ownerPerms; /* Desired 'owner' permissions for file creation */
HgfsPermissions groupPerms; /* Desired 'group' permissions for file creation */
HgfsPermissions otherPerms; /* Desired 'other' permissions for file creation */
HgfsAttrFlags attr; /* Attributes, if any, for file creation */
uint64 allocationSize; /* How much space to pre-allocate during creation */
uint32 desiredAccess; /* Extended support for windows access modes */
uint32 shareAccess; /* Windows only, share access modes */
HgfsServerLock desiredLock; /* The type of lock desired by the client */
uint64 reserved1; /* Reserved for future use */
uint64 reserved2; /* Reserved for future use */
HgfsFileNameV3 fileName;
}
#include "vmware_pack_end.h"
HgfsRequestOpenV3;
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyOpen {
HgfsReply header;
HgfsHandle file; /* Opaque file ID used by the server */
}
#include "vmware_pack_end.h"
HgfsReplyOpen;
/* Version 2 of HgfsReplyOpen */
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyOpenV2 {
HgfsReply header;
HgfsHandle file; /* Opaque file ID used by the server */
HgfsServerLock acquiredLock; /* The type of lock acquired by the server */
}
#include "vmware_pack_end.h"
HgfsReplyOpenV2;
/* Version 3 of HgfsReplyOpen */
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyOpenV3 {
HgfsHandle file; /* Opaque file ID used by the server */
HgfsServerLock acquiredLock; /* The type of lock acquired by the server */
uint64 reserved; /* Reserved for future use */
}
#include "vmware_pack_end.h"
HgfsReplyOpenV3;
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestRead {
HgfsRequest header;
HgfsHandle file; /* Opaque file ID used by the server */
uint64 offset;
uint32 requiredSize;
}
#include "vmware_pack_end.h"
HgfsRequestRead;
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyRead {
HgfsReply header;
uint32 actualSize;
char payload[1];
}
#include "vmware_pack_end.h"
HgfsReplyRead;
/*
* Version 3 of HgfsRequestRead.
* Server must support HGFS_LARGE_PACKET_MAX to implement this op.
*/
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestReadV3 {
HgfsHandle file; /* Opaque file ID used by the server */
uint64 offset;
uint32 requiredSize;
uint64 reserved; /* Reserved for future use */
}
#include "vmware_pack_end.h"
HgfsRequestReadV3;
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyReadV3 {
uint32 actualSize;
uint64 reserved; /* Reserved for future use */
char payload[1];
}
#include "vmware_pack_end.h"
HgfsReplyReadV3;
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestWrite {
HgfsRequest header;
HgfsHandle file; /* Opaque file ID used by the server */
HgfsWriteFlags flags;
uint64 offset;
uint32 requiredSize;
char payload[1];
}
#include "vmware_pack_end.h"
HgfsRequestWrite;
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyWrite {
HgfsReply header;
uint32 actualSize;
}
#include "vmware_pack_end.h"
HgfsReplyWrite;
/*
* Version 3 of HgfsRequestWrite.
* Server must support HGFS_LARGE_PACKET_MAX to implement this op.
*/
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestWriteV3 {
HgfsHandle file; /* Opaque file ID used by the server */
HgfsWriteFlags flags;
uint64 offset;
uint32 requiredSize;
uint64 reserved; /* Reserved for future use */
char payload[1];
}
#include "vmware_pack_end.h"
HgfsRequestWriteV3;
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyWriteV3 {
uint32 actualSize;
uint64 reserved; /* Reserved for future use */
}
#include "vmware_pack_end.h"
HgfsReplyWriteV3;
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestClose {
HgfsRequest header;
HgfsHandle file; /* Opaque file ID used by the server */
}
#include "vmware_pack_end.h"
HgfsRequestClose;
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyClose {
HgfsReply header;
}
#include "vmware_pack_end.h"
HgfsReplyClose;
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestCloseV3 {
HgfsHandle file; /* Opaque file ID used by the server */
uint64 reserved; /* Reserved for future use */
}
#include "vmware_pack_end.h"
HgfsRequestCloseV3;
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyCloseV3 {
uint64 reserved;
}
#include "vmware_pack_end.h"
HgfsReplyCloseV3;
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestSearchOpen {
HgfsRequest header;
HgfsFileName dirName;
}
#include "vmware_pack_end.h"
HgfsRequestSearchOpen;
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestSearchOpenV3 {
uint64 reserved; /* Reserved for future use */
HgfsFileNameV3 dirName;
}
#include "vmware_pack_end.h"
HgfsRequestSearchOpenV3;
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsReplySearchOpen {
HgfsReply header;
HgfsHandle search; /* Opaque search ID used by the server */
}
#include "vmware_pack_end.h"
HgfsReplySearchOpen;
typedef
#include "vmware_pack_begin.h"
struct HgfsReplySearchOpenV3 {
HgfsHandle search; /* Opaque search ID used by the server */
uint64 reserved; /* Reserved for future use */
}
#include "vmware_pack_end.h"
HgfsReplySearchOpenV3;
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestSearchRead {
HgfsRequest header;
HgfsHandle search; /* Opaque search ID used by the server */
uint32 offset; /* The first result is offset 0 */
}
#include "vmware_pack_end.h"
HgfsRequestSearchRead;
/* Version 2 of HgfsRequestSearchRead */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestSearchReadV2 {
HgfsRequest header;
HgfsHandle search; /* Opaque search ID used by the server */
uint32 offset; /* The first result is offset 0 */
}
#include "vmware_pack_end.h"
HgfsRequestSearchReadV2;
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestSearchReadV3 {
HgfsHandle search; /* Opaque search ID used by the server */
uint32 offset; /* The first result is offset 0 */
uint32 flags; /* Reserved for reading multiple directory entries. */
uint64 reserved; /* Reserved for future use */
}
#include "vmware_pack_end.h"
HgfsRequestSearchReadV3;
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsReplySearchRead {
HgfsReply header;
HgfsAttr attr;
HgfsFileName fileName;
/* fileName.length = 0 means "no entry at this offset" */
}
#include "vmware_pack_end.h"
HgfsReplySearchRead;
/* Version 2 of HgfsReplySearchRead */
typedef
#include "vmware_pack_begin.h"
struct HgfsReplySearchReadV2 {
HgfsReply header;
HgfsAttrV2 attr;
/*
* fileName.length = 0 means "no entry at this offset"
* If the file is a symlink (as specified in attr)
* this name is the name of the symlink, not the target.
*/
HgfsFileName fileName;
}
#include "vmware_pack_end.h"
HgfsReplySearchReadV2;
/* Directory entry structure. */
typedef struct HgfsDirEntry {
uint32 nextEntry;
HgfsAttrV2 attr;
/*
* fileName.length = 0 means "no entry at this offset"
* If the file is a symlink (as specified in attr)
* this name is the name of the symlink, not the target.
*/
HgfsFileNameV3 fileName;
} HgfsDirEntry;
typedef
#include "vmware_pack_begin.h"
struct HgfsReplySearchReadV3 {
uint64 count; /* Number of directory entries. */
uint64 reserved; /* Reserved for future use. */
char payload[1]; /* Directory entries. */
}
#include "vmware_pack_end.h"
HgfsReplySearchReadV3;
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestSearchClose {
HgfsRequest header;
HgfsHandle search; /* Opaque search ID used by the server */
}
#include "vmware_pack_end.h"
HgfsRequestSearchClose;
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsReplySearchClose {
HgfsReply header;
}
#include "vmware_pack_end.h"
HgfsReplySearchClose;
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestSearchCloseV3 {
HgfsHandle search; /* Opaque search ID used by the server */
uint64 reserved; /* Reserved for future use */
}
#include "vmware_pack_end.h"
HgfsRequestSearchCloseV3;
typedef
#include "vmware_pack_begin.h"
struct HgfsReplySearchCloseV3 {
uint64 reserved; /* Reserved for future use */
}
#include "vmware_pack_end.h"
HgfsReplySearchCloseV3;
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestGetattr {
HgfsRequest header;
HgfsFileName fileName;
}
#include "vmware_pack_end.h"
HgfsRequestGetattr;
/* Version 2 of HgfsRequestGetattr */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestGetattrV2 {
HgfsRequest header;
HgfsAttrHint hints; /* Flags for file handle valid. */
HgfsHandle file; /* Opaque file ID used by the server. */
HgfsFileName fileName; /* Filename used when file handle invalid. */
}
#include "vmware_pack_end.h"
HgfsRequestGetattrV2;
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestGetattrV3 {
HgfsAttrHint hints; /* Flags for file handle valid. */
uint64 reserved; /* Reserved for future use */
HgfsFileNameV3 fileName; /* Filename used when file handle invalid. */
}
#include "vmware_pack_end.h"
HgfsRequestGetattrV3;
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyGetattr {
HgfsReply header;
HgfsAttr attr;
}
#include "vmware_pack_end.h"
HgfsReplyGetattr;
/* Version 2 of HgfsReplyGetattr */
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyGetattrV2 {
HgfsReply header;
HgfsAttrV2 attr;
/*
* If the file is a symlink, as specified in attr.type, then this is
* the target for the symlink. If the file is not a symlink, this should
* be ignored.
*
* This filename is in "CPNameLite" format. See CPNameLite.c for details.
*/
HgfsFileName symlinkTarget;
}
#include "vmware_pack_end.h"
HgfsReplyGetattrV2;
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyGetattrV3 {
HgfsAttrV2 attr;
/*
* If the file is a symlink, as specified in attr.type, then this is
* the target for the symlink. If the file is not a symlink, this should
* be ignored.
*
* This filename is in "CPNameLite" format. See CPNameLite.c for details.
*/
uint64 reserved; /* Reserved for future use */
HgfsFileNameV3 symlinkTarget;
}
#include "vmware_pack_end.h"
HgfsReplyGetattrV3;
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestSetattr {
HgfsRequest header;
HgfsAttrChanges update; /* Which fields need to be updated */
HgfsAttr attr;
HgfsFileName fileName;
}
#include "vmware_pack_end.h"
HgfsRequestSetattr;
/* Version 2 of HgfsRequestSetattr */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestSetattrV2 {
HgfsRequest header;
HgfsAttrHint hints;
HgfsAttrV2 attr;
HgfsHandle file; /* Opaque file ID used by the server. */
HgfsFileName fileName; /* Filename used when file handle invalid. */
}
#include "vmware_pack_end.h"
HgfsRequestSetattrV2;
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestSetattrV3 {
HgfsAttrHint hints;
HgfsAttrV2 attr;
uint64 reserved; /* Reserved for future use */
HgfsFileNameV3 fileName; /* Filename used when file handle invalid. */
}
#include "vmware_pack_end.h"
HgfsRequestSetattrV3;
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsReplySetattr {
HgfsReply header;
}
#include "vmware_pack_end.h"
HgfsReplySetattr;
/* Version 2 of HgfsReplySetattr */
typedef
#include "vmware_pack_begin.h"
struct HgfsReplySetattrV2 {
HgfsReply header;
}
#include "vmware_pack_end.h"
HgfsReplySetattrV2;
typedef
#include "vmware_pack_begin.h"
struct HgfsReplySetattrV3 {
uint64 reserved; /* Reserved for future use */
}
#include "vmware_pack_end.h"
HgfsReplySetattrV3;
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestCreateDir {
HgfsRequest header;
HgfsPermissions permissions;
HgfsFileName fileName;
}
#include "vmware_pack_end.h"
HgfsRequestCreateDir;
/* Version 2 of HgfsRequestCreateDir */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestCreateDirV2 {
HgfsRequest header;
HgfsCreateDirValid mask;
HgfsPermissions specialPerms;
HgfsPermissions ownerPerms;
HgfsPermissions groupPerms;
HgfsPermissions otherPerms;
HgfsFileName fileName;
}
#include "vmware_pack_end.h"
HgfsRequestCreateDirV2;
/* Version 3 of HgfsRequestCreateDir */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestCreateDirV3 {
HgfsCreateDirValid mask;
HgfsPermissions specialPerms;
HgfsPermissions ownerPerms;
HgfsPermissions groupPerms;
HgfsPermissions otherPerms;
HgfsAttrFlags fileAttr;
HgfsFileNameV3 fileName;
}
#include "vmware_pack_end.h"
HgfsRequestCreateDirV3;
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyCreateDir {
HgfsReply header;
}
#include "vmware_pack_end.h"
HgfsReplyCreateDir;
/* Version 2 of HgfsReplyCreateDir */
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyCreateDirV2 {
HgfsReply header;
}
#include "vmware_pack_end.h"
HgfsReplyCreateDirV2;
/* Version 3 of HgfsReplyCreateDir */
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyCreateDirV3 {
uint64 reserved; /* Reserved for future use */
}
#include "vmware_pack_end.h"
HgfsReplyCreateDirV3;
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestDelete {
HgfsRequest header;
HgfsFileName fileName;
}
#include "vmware_pack_end.h"
HgfsRequestDelete;
/* Version 2 of HgfsRequestDelete */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestDeleteV2 {
HgfsRequest header;
HgfsDeleteHint hints;
HgfsHandle file; /* Opaque file ID used by the server. */
HgfsFileName fileName; /* Name used if the file is HGFS_HANDLE_INVALID */
}
#include "vmware_pack_end.h"
HgfsRequestDeleteV2;
/* Version 3 of HgfsRequestDelete */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestDeleteV3 {
HgfsDeleteHint hints;
uint64 reserved; /* Reserved for future use */
HgfsFileNameV3 fileName; /* Name used if the file is HGFS_HANDLE_INVALID */
}
#include "vmware_pack_end.h"
HgfsRequestDeleteV3;
/* Deprecated */
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyDelete {
HgfsReply header;
}
#include "vmware_pack_end.h"
HgfsReplyDelete;
/* Version 2 of HgfsReplyDelete */
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyDeleteV2 {
HgfsReply header;
}
#include "vmware_pack_end.h"
HgfsReplyDeleteV2;
/* Version 2 of HgfsReplyDelete */
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyDeleteV3 {
uint64 reserved; /* Reserved for future use */
}
#include "vmware_pack_end.h"
HgfsReplyDeleteV3;
/*
* The size of the HgfsFileName struct is variable depending on the
* length of the name, so you can't use request->newName to get the
* actual address of the new name, because where it starts is
* dependant on how long the oldName is. To get the address of
* newName, use this:
*
* &oldName + sizeof(HgfsFileName) + oldName.length
*/
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestRename {
HgfsRequest header;
HgfsFileName oldName;
HgfsFileName newName;
}
#include "vmware_pack_end.h"
HgfsRequestRename;
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyRename {
HgfsReply header;
}
#include "vmware_pack_end.h"
HgfsReplyRename;
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestRenameV2 {
HgfsRequest header;
HgfsRenameHint hints;
HgfsHandle srcFile; /* Opaque file ID to "old name" used by the server. */
HgfsHandle targetFile; /* Opaque file ID to "old name" used by the server. */
HgfsFileName oldName;
HgfsFileName newName;
}
#include "vmware_pack_end.h"
HgfsRequestRenameV2;
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyRenameV2 {
HgfsReply header;
}
#include "vmware_pack_end.h"
HgfsReplyRenameV2;
/* HgfsRequestRename and HgfsReplyRename for v3. */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestRenameV3 {
HgfsRenameHint hints;
uint64 reserved; /* Reserved for future use */
HgfsFileNameV3 oldName;
HgfsFileNameV3 newName;
}
#include "vmware_pack_end.h"
HgfsRequestRenameV3;
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyRenameV3 {
uint64 reserved; /* Reserved for future use */
}
#include "vmware_pack_end.h"
HgfsReplyRenameV3;
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestQueryVolume {
HgfsRequest header;
HgfsFileName fileName;
}
#include "vmware_pack_end.h"
HgfsRequestQueryVolume;
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyQueryVolume {
HgfsReply header;
uint64 freeBytes;
uint64 totalBytes;
}
#include "vmware_pack_end.h"
HgfsReplyQueryVolume;
/* HgfsRequestQueryVolume and HgfsReplyQueryVolume for v3. */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestQueryVolumeV3 {
uint64 reserved; /* Reserved for future use */
HgfsFileNameV3 fileName;
}
#include "vmware_pack_end.h"
HgfsRequestQueryVolumeV3;
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyQueryVolumeV3 {
uint64 freeBytes;
uint64 totalBytes;
uint64 reserved; /* Reserved for future use */
}
#include "vmware_pack_end.h"
HgfsReplyQueryVolumeV3;
/* New operations for Version 2 */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestServerLockChange {
HgfsRequest header;
HgfsHandle file;
HgfsServerLock newServerLock;
}
#include "vmware_pack_end.h"
HgfsRequestServerLockChange;
typedef
#include "vmware_pack_begin.h"
struct HgfsReplyServerLockChange {
HgfsReply header;
HgfsServerLock serverLock;
}
#include "vmware_pack_end.h"
HgfsReplyServerLockChange;
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestSymlinkCreate {
HgfsRequest header;
HgfsFileName symlinkName;
/* This filename is in "CPNameLite" format. See CPNameLite.c for details. */
HgfsFileName targetName;
}
#include "vmware_pack_end.h"
HgfsRequestSymlinkCreate;
typedef
#include "vmware_pack_begin.h"
struct HgfsReplySymlinkCreate {
HgfsReply header;
}
#include "vmware_pack_end.h"
HgfsReplySymlinkCreate;
/* HgfsRequestSymlinkCreate and HgfsReplySymlinkCreate for v3. */
typedef
#include "vmware_pack_begin.h"
struct HgfsRequestSymlinkCreateV3 {
uint64 reserved; /* Reserved for future use */
HgfsFileNameV3 symlinkName;
/* This filename is in "CPNameLite" format. See CPNameLite.c for details. */
HgfsFileNameV3 targetName;
}
#include "vmware_pack_end.h"
HgfsRequestSymlinkCreateV3;
typedef
#include "vmware_pack_begin.h"
struct HgfsReplySymlinkCreateV3 {
uint64 reserved; /* Reserved for future use */
}
#include "vmware_pack_end.h"
HgfsReplySymlinkCreateV3;
#endif /* _HGFS_PROTO_H_ */
|