/usr/src/open-vm-tools-10.0.7/vmhgfs/hgfsTransport.h is in open-vm-tools-dkms 2:10.0.7-3227872-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*********************************************************
* Copyright (C) 2010-2015 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.
*
*********************************************************/
/*********************************************************
* The contents of this file are subject to the terms of the Common
* Development and Distribution License (the "License") version 1.0
* and no later version. You may not use this file except in
* compliance with the License.
*
* You can obtain a copy of the License at
* http://www.opensource.org/licenses/cddl1.php
*
* See the License for the specific language governing permissions
* and limitations under the License.
*
*********************************************************/
/*
* hgfsTransport.h --
*
* Transport file shared between guest drivers and host.
*/
#ifndef _HGFS_TRANSPORT_H_
# define _HGFS_TRANSPORT_H_
#include "vmci_defs.h"
/************************************************
* VMCI specific data structures, macros *
************************************************/
/*
* Limit payload to 16M.
* This limit ensures that list of shared pages fits into VMCI datagram.
* Client may impose a lower limit in create session request.
*/
#define HGFS_VMCI_PACKET_MAX (0x1000000)
#define HGFS_VMCI_VERSION_1 0x1
#define HGFS_VMCI_VERSION_2 0x2
typedef enum {
HGFS_TS_IO_PENDING,
HGFS_TS_IO_COMPLETE,
HGFS_TS_IO_FAILED,
} HgfsTransportRequestState;
typedef enum {
HGFS_ASYNC_IOREQ_SHMEM,
HGFS_ASYNC_IOREQ_GET_PAGES,
HGFS_ASYNC_IOREP,
} HgfsTransportReplyType;
typedef enum {
HGFS_TH_REP_GET_PAGES,
HGFS_TH_REQUEST,
HGFS_TH_TERMINATE_SESSION,
} HgfsTransportRequestType;
#define HGFS_VMCI_TRANSPORT_ERROR (VMCI_ERROR_CLIENT_MIN - 1)
#define HGFS_VMCI_VERSION_MISMATCH (VMCI_ERROR_CLIENT_MIN - 2)
#define HGFS_VMCI_TYPE_NOT_SUPPORTED (VMCI_ERROR_CLIENT_MIN - 3)
/*
* Used By : Guest and Host
* Lives in : Inside HgfsVmciTransportHeader
*/
typedef
#include "vmware_pack_begin.h"
struct HgfsIov {
uint64 pa; /* Physical addr */
uint32 len; /* length of data; should be <= PAGE_SIZE */
}
#include "vmware_pack_end.h"
HgfsIov;
/*
* Used By : Guest and Host
* Lives in : Inside HgfsVmciTransportHeader
*/
typedef
#include "vmware_pack_begin.h"
struct HgfsAsyncIov {
uint64 pa; /* Physical addr */
uint64 va; /* Virtual addr */
uint32 len; /* length of data; should be <= PAGE_SIZE */
uint64 index; /* Guest opaque data; should not be changed by
host */
Bool chain; /* Are pages chained ? */
}
#include "vmware_pack_end.h"
HgfsAsyncIov;
/*
* Every VMCI request will have this transport Header sent over
* in the datagram by the Guest OS.
*
* Node fields are set to be compatible for backwards compatibility
* for version 1 and common for newer versions.
*
* Used By : Guest and Host
* Lives in : Sent by Guest inside VMCI datagram
*/
typedef
#include "vmware_pack_begin.h"
struct HgfsVmciHeaderNode {
uint32 version; /* Version number */
union {
HgfsTransportRequestType pktType; /* Type of packet for client to server */
HgfsTransportReplyType replyType; /* Type of packet for server to client */
};
}
#include "vmware_pack_end.h"
HgfsVmciHeaderNode;
typedef
#include "vmware_pack_begin.h"
struct HgfsVmciTransportHeader {
HgfsVmciHeaderNode node; /* Node: version, type etc. */
uint32 iovCount; /* Number of iovs */
union {
HgfsIov iov[1]; /* (PA, len) */
HgfsAsyncIov asyncIov[1];
};
}
#include "vmware_pack_end.h"
HgfsVmciTransportHeader;
/*
* Every VMCI request will have this transport Header sent over
* in the datagram by the Guest or the Host.
* This supersedes the above header and the HgfsVmciAsyncReply structure
* below.
*
* Used By : Guest and Host
* Lives in : Sent by Guest and Host inside VMCI datagram
*/
typedef
#include "vmware_pack_begin.h"
struct HgfsVmciTransportHeaderV2 {
HgfsVmciHeaderNode node; /* Common node for all versions. */
uint32 size; /* Size of the header. */
uint64 pktId; /* Id corresponding to the request */
uint64 flags; /* flags to indicate state of the header */
uint32 pktDataSize; /* packet data size (not buffer size) */
uint64 reserved1; /* For future use, sender must zero */
uint64 reserved2; /* For future use, sender must zero */
uint32 iovCount; /* Number of iovs to follow */
union {
HgfsIov iov[1]; /* (PA, len) */
HgfsAsyncIov asyncIov[1];
};
}
#include "vmware_pack_end.h"
HgfsVmciTransportHeaderV2;
#define HGFS_VMCI_HDR_FLAGS_REQUEST (1 << 0) /* CLient to the server */
#define HGFS_VMCI_HDR_FLAGS_REPLY (1 << 1) /* Server to the client */
#define HGFS_VMCI_HDR_FLAGS_ASYNCIOV (1 << 2) /* IOV type is async */
/*
* Indicates status of VMCI requests. If the requests are processed sync
* by the hgfsServer then guest should see IO_COMPLETE otherwise IO_PENDING.
*
* Used By: Guest and Host
* Lives in: Guest Memory
*/
typedef
#include "vmware_pack_begin.h"
struct HgfsVmciTransportStatus {
HgfsTransportRequestState status; /* IO_PENDING, IO_COMPLETE, IO_FAILED etc */
uint32 size; /* G->H: Size of the packet,H->G: How much more space is needed */
}
#include "vmware_pack_end.h"
HgfsVmciTransportStatus;
typedef
#include "vmware_pack_begin.h"
struct HgfsVmciAsyncResponse {
uint64 id; /* Id corresponding to the guest request */
}
#include "vmware_pack_end.h"
HgfsVmciAsyncResponse;
typedef
#include "vmware_pack_begin.h"
struct HgfsVmciAsyncShmem {
uint32 count; /* Number of iovs */
HgfsAsyncIov iov[1];
}
#include "vmware_pack_end.h"
HgfsVmciAsyncShmem;
typedef
#include "vmware_pack_begin.h"
struct HgfsVmciAsyncReply {
HgfsVmciHeaderNode node; /* Node: version, type etc. */
union {
HgfsVmciAsyncResponse response;
HgfsVmciAsyncShmem shmem;
};
}
#include "vmware_pack_end.h"
HgfsVmciAsyncReply;
#endif /* _HGFS_TRANSPORT_H_ */
|