1 | /** @file
|
---|
2 | * Shared Clipboard - Common header for host service and guest clients.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2019 Oracle Corporation
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | */
|
---|
25 |
|
---|
26 | /**
|
---|
27 | * Protocol handling and notes:
|
---|
28 | * All client/server components should be backwards compatible.
|
---|
29 | *
|
---|
30 | ******************************************************************************
|
---|
31 | *
|
---|
32 | * Protocol changelog:
|
---|
33 | *
|
---|
34 | * VBox < 6.1, deprecated:
|
---|
35 | * | First, initial implementation since feature was developed.
|
---|
36 | * Has no protocol handshake / versioning support, the client's
|
---|
37 | * waiting message also acted as retrieving the parameters from
|
---|
38 | * the host (always and only *exactly* two parameters). Does
|
---|
39 | * not have the ability to control / handle parallel transfers.
|
---|
40 | *
|
---|
41 | * VBox >= 6.1:
|
---|
42 | * + Adds host/guest feature flags and context IDs for parallel,
|
---|
43 | * asynchronous transfers.
|
---|
44 | * | Keeps backwards-compatbility with by translating messages to
|
---|
45 | * the older protocol (< 6.1), to not break compatibility with older
|
---|
46 | * Guest Additions.
|
---|
47 | */
|
---|
48 |
|
---|
49 | #ifndef VBOX_INCLUDED_HostServices_VBoxClipboardSvc_h
|
---|
50 | #define VBOX_INCLUDED_HostServices_VBoxClipboardSvc_h
|
---|
51 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
52 | # pragma once
|
---|
53 | #endif
|
---|
54 |
|
---|
55 | #include <VBox/VMMDevCoreTypes.h>
|
---|
56 | #include <VBox/VBoxGuestCoreTypes.h>
|
---|
57 | #include <VBox/hgcmsvc.h>
|
---|
58 |
|
---|
59 | #ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS
|
---|
60 | #include <VBox/GuestHost/SharedClipboard-transfers.h>
|
---|
61 | #endif
|
---|
62 |
|
---|
63 | /*
|
---|
64 | * The saved state versions.
|
---|
65 | * We're using it as a version field with the high bit set.
|
---|
66 | */
|
---|
67 | /** Older saved states (VBox < 6.1). Includes legacy protocol state. */
|
---|
68 | #define VBOX_SHCL_SSM_VER_0 UINT32_C(0x80000002)
|
---|
69 | /** New saved state (VBox >= 6.1). */
|
---|
70 | #define VBOX_SHCL_SSM_VER_1 UINT32_C(0x80000003)
|
---|
71 |
|
---|
72 | /*
|
---|
73 | * The Shared Clipboard modes of operation.
|
---|
74 | */
|
---|
75 | /** Shared Clipboard is disabled completely. */
|
---|
76 | #define VBOX_SHCL_MODE_OFF 0
|
---|
77 | /** Only transfers from host to the guest are possible. */
|
---|
78 | #define VBOX_SHCL_MODE_HOST_TO_GUEST 1
|
---|
79 | /** Only transfers from guest to the host are possible. */
|
---|
80 | #define VBOX_SHCL_MODE_GUEST_TO_HOST 2
|
---|
81 | /** Bidirectional transfers between guest and host are possible. */
|
---|
82 | #define VBOX_SHCL_MODE_BIDIRECTIONAL 3
|
---|
83 |
|
---|
84 | /*
|
---|
85 | * The Shared Clipboard file transfer mode (bit field).
|
---|
86 | */
|
---|
87 | /** Shared Clipboard file transfers are disabled. */
|
---|
88 | #define VBOX_SHCL_TRANSFER_MODE_DISABLED UINT32_C(0)
|
---|
89 | /** Shared Clipboard file transfers are enabled. */
|
---|
90 | #define VBOX_SHCL_TRANSFER_MODE_ENABLED RT_BIT(0)
|
---|
91 | /** Shared Clipboard file transfer mode valid mask. */
|
---|
92 | #define VBOX_SHCL_TRANSFER_MODE_VALID_MASK UINT32_C(0x1)
|
---|
93 |
|
---|
94 | /*
|
---|
95 | * The service functions which are callable by host.
|
---|
96 | */
|
---|
97 | /** Sets the current Shared Clipboard operation mode. */
|
---|
98 | #define VBOX_SHCL_HOST_FN_SET_MODE 1
|
---|
99 | /** Sets the current Shared Clipboard (file) transfers mode.
|
---|
100 | * Operates on the VBOX_SHCL_TRANSFERS_ defines.
|
---|
101 | *
|
---|
102 | * @since 6.1
|
---|
103 | */
|
---|
104 | #define VBOX_SHCL_HOST_FN_SET_TRANSFER_MODE 2
|
---|
105 | /** Run headless on the host, i.e. do not touch the host clipboard. */
|
---|
106 | #define VBOX_SHCL_HOST_FN_SET_HEADLESS 3
|
---|
107 | /** Reports cancellation of the current operation to the guest.
|
---|
108 | * @since 6.1
|
---|
109 | */
|
---|
110 | #define VBOX_SHCL_HOST_FN_CANCEL 4
|
---|
111 | /** Reports an error to the guest.
|
---|
112 | * @since 6.1
|
---|
113 | */
|
---|
114 | #define VBOX_SHCL_HOST_FN_ERROR 5
|
---|
115 | /** Reports that a new clipboard area has been registered.
|
---|
116 | * @since 6.1
|
---|
117 | */
|
---|
118 | #define VBOX_SHCL_HOST_FN_AREA_REGISTER 6
|
---|
119 | /** Reports that a clipboard area has been unregistered.
|
---|
120 | * @since 6.1
|
---|
121 | */
|
---|
122 | #define VBOX_SHCL_HOST_FN_AREA_UNREGISTER 7
|
---|
123 | /** Reports that a client (host / guest) has attached to a clipboard area.
|
---|
124 | * @since 6.1
|
---|
125 | */
|
---|
126 | #define VBOX_SHCL_HOST_FN_AREA_ATTACH 8
|
---|
127 | /** Reports that a client (host / guest) has detached from a clipboard area.
|
---|
128 | * @since 6.1
|
---|
129 | */
|
---|
130 | #define VBOX_SHCL_HOST_FN_AREA_DETACH 9
|
---|
131 |
|
---|
132 | /**
|
---|
133 | * The host messages for the guest.
|
---|
134 | */
|
---|
135 | /** Asks the client to quit / terminate. */
|
---|
136 | #define VBOX_SHCL_HOST_MSG_QUIT 1
|
---|
137 | /** Reads (simple) data from the guest. */
|
---|
138 | #define VBOX_SHCL_HOST_MSG_READ_DATA 2
|
---|
139 | /** Reports available clipboard format from host to the guest.
|
---|
140 | * Formerly known as VBOX_SHCL_HOST_MSG_REPORT_FORMATS. */
|
---|
141 | #define VBOX_SHCL_HOST_MSG_FORMATS_REPORT 3
|
---|
142 |
|
---|
143 | /** Sends a transfer status to the guest side.
|
---|
144 | *
|
---|
145 | * @retval VINF_SUCCESS on success.
|
---|
146 | * @retval VERR_INVALID_CLIENT_ID
|
---|
147 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
148 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
149 | * @since 6.1
|
---|
150 | */
|
---|
151 | #define VBOX_SHCL_HOST_MSG_TRANSFER_STATUS 50
|
---|
152 | /** Reads the root list header from the guest.
|
---|
153 | *
|
---|
154 | * @retval VINF_SUCCESS on success.
|
---|
155 | * @retval VERR_INVALID_CLIENT_ID
|
---|
156 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
157 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
158 | * @since 6.1
|
---|
159 | */
|
---|
160 | #define VBOX_SHCL_HOST_MSG_TRANSFER_ROOT_LIST_HDR_READ 51
|
---|
161 | /** Writes the root list header to the guest.
|
---|
162 | *
|
---|
163 | * @retval VINF_SUCCESS on success.
|
---|
164 | * @retval VERR_INVALID_CLIENT_ID
|
---|
165 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
166 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
167 | * @since 6.1
|
---|
168 | */
|
---|
169 | #define VBOX_SHCL_HOST_MSG_TRANSFER_ROOT_LIST_HDR_WRITE 52
|
---|
170 | /** Reads a root list entry from the guest.
|
---|
171 | *
|
---|
172 | * @retval VINF_SUCCESS on success.
|
---|
173 | * @retval VERR_INVALID_CLIENT_ID
|
---|
174 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
175 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
176 | * @since 6.1
|
---|
177 | */
|
---|
178 | #define VBOX_SHCL_HOST_MSG_TRANSFER_ROOT_LIST_ENTRY_READ 53
|
---|
179 | /** Writes a root list entry to the guest.
|
---|
180 | *
|
---|
181 | * @retval VINF_SUCCESS on success.
|
---|
182 | * @retval VERR_INVALID_CLIENT_ID
|
---|
183 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
184 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
185 | * @since 6.1
|
---|
186 | */
|
---|
187 | #define VBOX_SHCL_HOST_MSG_TRANSFER_ROOT_LIST_ENTRY_WRITE 54
|
---|
188 | /** Open a transfer list on the guest side.
|
---|
189 | *
|
---|
190 | * @retval VINF_SUCCESS on success.
|
---|
191 | * @retval VERR_INVALID_CLIENT_ID
|
---|
192 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
193 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
194 | * @since 6.1
|
---|
195 | */
|
---|
196 | #define VBOX_SHCL_HOST_MSG_TRANSFER_LIST_OPEN 55
|
---|
197 | /** Closes a formerly opened transfer list on the guest side.
|
---|
198 | *
|
---|
199 | * @retval VINF_SUCCESS on success.
|
---|
200 | * @retval VERR_INVALID_CLIENT_ID
|
---|
201 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
202 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
203 | * @since 6.1
|
---|
204 | */
|
---|
205 | #define VBOX_SHCL_HOST_MSG_TRANSFER_LIST_CLOSE 56
|
---|
206 | /** Reads a list header from the guest.
|
---|
207 | *
|
---|
208 | * @retval VINF_SUCCESS on success.
|
---|
209 | * @retval VERR_INVALID_CLIENT_ID
|
---|
210 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
211 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
212 | * @since 6.1
|
---|
213 | */
|
---|
214 | #define VBOX_SHCL_HOST_MSG_TRANSFER_LIST_HDR_READ 57
|
---|
215 | /** Writes a list header to the guest.
|
---|
216 | *
|
---|
217 | * @retval VINF_SUCCESS on success.
|
---|
218 | * @retval VERR_INVALID_CLIENT_ID
|
---|
219 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
220 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
221 | * @since 6.1
|
---|
222 | */
|
---|
223 | #define VBOX_SHCL_HOST_MSG_TRANSFER_LIST_HDR_WRITE 58
|
---|
224 | /** Reads a list entry from the guest.
|
---|
225 | *
|
---|
226 | * @retval VINF_SUCCESS on success.
|
---|
227 | * @retval VERR_INVALID_CLIENT_ID
|
---|
228 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
229 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
230 | * @since 6.1
|
---|
231 | */
|
---|
232 | #define VBOX_SHCL_HOST_MSG_TRANSFER_LIST_ENTRY_READ 59
|
---|
233 | /** Writes a list entry to the guest.
|
---|
234 | *
|
---|
235 | * @retval VINF_SUCCESS on success.
|
---|
236 | * @retval VERR_INVALID_CLIENT_ID
|
---|
237 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
238 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
239 | * @since 6.1
|
---|
240 | */
|
---|
241 | #define VBOX_SHCL_HOST_MSG_TRANSFER_LIST_ENTRY_WRITE 60
|
---|
242 | /** Open a transfer object on the guest side.
|
---|
243 | *
|
---|
244 | * @retval VINF_SUCCESS on success.
|
---|
245 | * @retval VERR_INVALID_CLIENT_ID
|
---|
246 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
247 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
248 | * @since 6.1
|
---|
249 | */
|
---|
250 | #define VBOX_SHCL_HOST_MSG_TRANSFER_OBJ_OPEN 61
|
---|
251 | /** Closes a formerly opened transfer object on the guest side.
|
---|
252 | *
|
---|
253 | * @retval VINF_SUCCESS on success.
|
---|
254 | * @retval VERR_INVALID_CLIENT_ID
|
---|
255 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
256 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
257 | * @since 6.1
|
---|
258 | */
|
---|
259 | #define VBOX_SHCL_HOST_MSG_TRANSFER_OBJ_CLOSE 62
|
---|
260 | /** Reads from an object on the guest side.
|
---|
261 | *
|
---|
262 | * @retval VINF_SUCCESS on success.
|
---|
263 | * @retval VERR_INVALID_CLIENT_ID
|
---|
264 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
265 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
266 | * @since 6.1
|
---|
267 | */
|
---|
268 | #define VBOX_SHCL_HOST_MSG_TRANSFER_OBJ_READ 63
|
---|
269 | /** Writes to an object on the guest side.
|
---|
270 | *
|
---|
271 | * @retval VINF_SUCCESS on success.
|
---|
272 | * @retval VERR_INVALID_CLIENT_ID
|
---|
273 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
274 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
275 | * @since 6.1
|
---|
276 | */
|
---|
277 | #define VBOX_SHCL_HOST_MSG_TRANSFER_OBJ_WRITE 64
|
---|
278 | /** Indicates that the host has canceled a transfer.
|
---|
279 | *
|
---|
280 | * @retval VINF_SUCCESS on success.
|
---|
281 | * @retval VERR_INVALID_CLIENT_ID
|
---|
282 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
283 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
284 | * @since 6.1
|
---|
285 | */
|
---|
286 | #define VBOX_SHCL_HOST_MSG_TRANSFER_CANCEL 65
|
---|
287 | /** Indicates that the an unrecoverable error on the host occurred.
|
---|
288 | *
|
---|
289 | * @retval VINF_SUCCESS on success.
|
---|
290 | * @retval VERR_INVALID_CLIENT_ID
|
---|
291 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
292 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
293 | * @since 6.1
|
---|
294 | */
|
---|
295 | #define VBOX_SHCL_HOST_MSG_TRANSFER_ERROR 66
|
---|
296 |
|
---|
297 | /*
|
---|
298 | * The service functions which are called by guest.
|
---|
299 | */
|
---|
300 | /** Calls the host and waits (blocking) for an host event VBOX_SHCL_HOST_MSG_*.
|
---|
301 | * Deprecated, do not use anymore. Kept to not break compatibility with older
|
---|
302 | * Guest Additions / VBox versions. */
|
---|
303 | #define VBOX_SHCL_GUEST_FN_GET_HOST_MSG_OLD 1
|
---|
304 | /** Sends a list of available formats to the host.
|
---|
305 | * Formely known as VBOX_SHCL_GUEST_FN_REPORT_FORMATS. */
|
---|
306 | #define VBOX_SHCL_GUEST_FN_FORMATS_REPORT 2
|
---|
307 | /** Reads data in specified format from the host. */
|
---|
308 | #define VBOX_SHCL_GUEST_FN_DATA_READ 3
|
---|
309 | /** Writes data in requested format to the host. */
|
---|
310 | #define VBOX_SHCL_GUEST_FN_DATA_WRITE 4
|
---|
311 |
|
---|
312 | /** Does the actual protocol handshake. If this message is not
|
---|
313 | * being sent by the guest, the host handles that particular client
|
---|
314 | * with the legacy protocol (v0).
|
---|
315 | *
|
---|
316 | * @retval VINF_SUCCESS on success.
|
---|
317 | * @retval VERR_INVALID_CLIENT_ID
|
---|
318 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
319 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
320 | * @since 6.1
|
---|
321 | */
|
---|
322 | #define VBOX_SHCL_GUEST_FN_CONNECT 5
|
---|
323 | /** Report guest side feature flags and retrieve the host ones.
|
---|
324 | *
|
---|
325 | * The guest replies to the host what features it support in addition.
|
---|
326 | * In return the host will return features the host supports.
|
---|
327 | *
|
---|
328 | * Two 64-bit parameters are passed in from the
|
---|
329 | * guest with the guest features (VBOX_SHCL_GF_XXX), the host replies by
|
---|
330 | * replacing the parameter values with the host ones (VBOX_SHCL_HF_XXX).
|
---|
331 | *
|
---|
332 | * @retval VINF_SUCCESS on success.
|
---|
333 | * @retval VERR_INVALID_CLIENT_ID
|
---|
334 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
335 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
336 | * @since 6.1
|
---|
337 | */
|
---|
338 | #define VBOX_SHCL_GUEST_FN_REPORT_FEATURES 6
|
---|
339 | /** Query the host ones feature masks.
|
---|
340 | *
|
---|
341 | * That way the guest (client) can get hold of the features
|
---|
342 | * from the host. Again, it is prudent to set the 127 bit and observe it being
|
---|
343 | * cleared on success, as older hosts might return success without doing
|
---|
344 | * anything.
|
---|
345 | *
|
---|
346 | * @retval VINF_SUCCESS on success.
|
---|
347 | * @retval VERR_INVALID_CLIENT_ID
|
---|
348 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
349 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
350 | * @since 6.1
|
---|
351 | */
|
---|
352 | #define VBOX_SHCL_GUEST_FN_QUERY_FEATURES 7
|
---|
353 | /** Peeks at the next message, returning immediately.
|
---|
354 | *
|
---|
355 | * @retval VINF_SUCCESS on success.
|
---|
356 | * @retval VERR_INVALID_CLIENT_ID
|
---|
357 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
358 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
359 | * @since 6.1
|
---|
360 | */
|
---|
361 | #define VBOX_SHCL_GUEST_FN_MSG_PEEK_NOWAIT 8
|
---|
362 | /** Peeks at the next message, waiting for one to arrive.
|
---|
363 | *
|
---|
364 | * @retval VINF_SUCCESS on success.
|
---|
365 | * @retval VERR_INVALID_CLIENT_ID
|
---|
366 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
367 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
368 | * @since 6.1
|
---|
369 | */
|
---|
370 | #define VBOX_SHCL_GUEST_FN_MSG_PEEK_WAIT 9
|
---|
371 | /** Gets the next message, returning immediately.
|
---|
372 | *
|
---|
373 | * @retval VINF_SUCCESS on success.
|
---|
374 | * @retval VERR_INVALID_CLIENT_ID
|
---|
375 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
376 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
377 | * @since 6.1
|
---|
378 | */
|
---|
379 | #define VBOX_SHCL_GUEST_FN_MSG_GET 10
|
---|
380 | /** Replies to a function from the host.
|
---|
381 | *
|
---|
382 | * @retval VINF_SUCCESS on success.
|
---|
383 | * @retval VERR_INVALID_CLIENT_ID
|
---|
384 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
385 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
386 | * @since 6.1
|
---|
387 | */
|
---|
388 | #define VBOX_SHCL_GUEST_FN_REPLY 11
|
---|
389 | /** Gets the root list header from the host.
|
---|
390 | *
|
---|
391 | * @retval VINF_SUCCESS on success.
|
---|
392 | * @retval VERR_INVALID_CLIENT_ID
|
---|
393 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
394 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
395 | * @since 6.1
|
---|
396 | */
|
---|
397 | #define VBOX_SHCL_GUEST_FN_ROOT_LIST_HDR_READ 12
|
---|
398 | /** Sends the root list header to the host.
|
---|
399 | *
|
---|
400 | * @retval VINF_SUCCESS on success.
|
---|
401 | * @retval VERR_INVALID_CLIENT_ID
|
---|
402 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
403 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
404 | * @since 6.1
|
---|
405 | */
|
---|
406 | #define VBOX_SHCL_GUEST_FN_ROOT_LIST_HDR_WRITE 13
|
---|
407 | /** Gets a root list root entry from the host.
|
---|
408 | *
|
---|
409 | * @retval VINF_SUCCESS on success.
|
---|
410 | * @retval VERR_INVALID_CLIENT_ID
|
---|
411 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
412 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
413 | * @since 6.1
|
---|
414 | */
|
---|
415 | #define VBOX_SHCL_GUEST_FN_ROOT_LIST_ENTRY_READ 14
|
---|
416 | /** Sends a root list root entry to the host.
|
---|
417 | *
|
---|
418 | * @retval VINF_SUCCESS on success.
|
---|
419 | * @retval VERR_INVALID_CLIENT_ID
|
---|
420 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
421 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
422 | * @since 6.1
|
---|
423 | */
|
---|
424 | #define VBOX_SHCL_GUEST_FN_ROOT_LIST_ENTRY_WRITE 15
|
---|
425 | /** Opens / gets a list handle from the host.
|
---|
426 | *
|
---|
427 | * @retval VINF_SUCCESS on success.
|
---|
428 | * @retval VERR_INVALID_CLIENT_ID
|
---|
429 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
430 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
431 | * @since 6.1
|
---|
432 | */
|
---|
433 | #define VBOX_SHCL_GUEST_FN_LIST_OPEN 16
|
---|
434 | /** Closes a list handle from the host.
|
---|
435 | *
|
---|
436 | * @retval VINF_SUCCESS on success.
|
---|
437 | * @retval VERR_INVALID_CLIENT_ID
|
---|
438 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
439 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
440 | * @since 6.1
|
---|
441 | */
|
---|
442 | #define VBOX_SHCL_GUEST_FN_LIST_CLOSE 17
|
---|
443 | /** Reads a list header from the host.
|
---|
444 | *
|
---|
445 | * @retval VINF_SUCCESS on success.
|
---|
446 | * @retval VERR_INVALID_CLIENT_ID
|
---|
447 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
448 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
449 | * @since 6.1
|
---|
450 | */
|
---|
451 | #define VBOX_SHCL_GUEST_FN_LIST_HDR_READ 18
|
---|
452 | /** Writes a list header to the host.
|
---|
453 | *
|
---|
454 | * @retval VINF_SUCCESS on success.
|
---|
455 | * @retval VERR_INVALID_CLIENT_ID
|
---|
456 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
457 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
458 | * @since 6.1
|
---|
459 | */
|
---|
460 | #define VBOX_SHCL_GUEST_FN_LIST_HDR_WRITE 19
|
---|
461 | /** Reads a list entry from the host.
|
---|
462 | *
|
---|
463 | * @retval VINF_SUCCESS on success.
|
---|
464 | * @retval VERR_INVALID_CLIENT_ID
|
---|
465 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
466 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
467 | * @since 6.1
|
---|
468 | */
|
---|
469 | #define VBOX_SHCL_GUEST_FN_LIST_ENTRY_READ 20
|
---|
470 | /** Sends a list entry to the host.
|
---|
471 | *
|
---|
472 | * @retval VINF_SUCCESS on success.
|
---|
473 | * @retval VERR_INVALID_CLIENT_ID
|
---|
474 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
475 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
476 | * @since 6.1
|
---|
477 | */
|
---|
478 | #define VBOX_SHCL_GUEST_FN_LIST_ENTRY_WRITE 21
|
---|
479 | /** Opens an object on the host.
|
---|
480 | *
|
---|
481 | * @retval VINF_SUCCESS on success.
|
---|
482 | * @retval VERR_INVALID_CLIENT_ID
|
---|
483 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
484 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
485 | * @since 6.1
|
---|
486 | */
|
---|
487 | #define VBOX_SHCL_GUEST_FN_OBJ_OPEN 22
|
---|
488 | /** Closes an object on the host.
|
---|
489 | *
|
---|
490 | * @retval VINF_SUCCESS on success.
|
---|
491 | * @retval VERR_INVALID_CLIENT_ID
|
---|
492 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
493 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
494 | * @since 6.1
|
---|
495 | */
|
---|
496 | #define VBOX_SHCL_GUEST_FN_OBJ_CLOSE 23
|
---|
497 | /** Reads from an object on the host.
|
---|
498 | *
|
---|
499 | * @retval VINF_SUCCESS on success.
|
---|
500 | * @retval VERR_INVALID_CLIENT_ID
|
---|
501 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
502 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
503 | * @since 6.1
|
---|
504 | */
|
---|
505 | #define VBOX_SHCL_GUEST_FN_OBJ_READ 24
|
---|
506 | /** Writes to an object on the host.
|
---|
507 | *
|
---|
508 | * @retval VINF_SUCCESS on success.
|
---|
509 | * @retval VERR_INVALID_CLIENT_ID
|
---|
510 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
511 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
512 | * @since 6.1
|
---|
513 | */
|
---|
514 | #define VBOX_SHCL_GUEST_FN_OBJ_WRITE 25
|
---|
515 | /** Reports cancellation of the current operation to the host.
|
---|
516 | *
|
---|
517 | * @retval VINF_SUCCESS on success.
|
---|
518 | * @retval VERR_INVALID_CLIENT_ID
|
---|
519 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
520 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
521 | * @since 6.1
|
---|
522 | */
|
---|
523 | #define VBOX_SHCL_GUEST_FN_CANCEL 26
|
---|
524 | /** Reports an error to the host.
|
---|
525 | *
|
---|
526 | * @retval VINF_SUCCESS on success.
|
---|
527 | * @retval VERR_INVALID_CLIENT_ID
|
---|
528 | * @retval VERR_WRONG_PARAMETER_COUNT
|
---|
529 | * @retval VERR_WRONG_PARAMETER_TYPE
|
---|
530 | * @since 6.1
|
---|
531 | */
|
---|
532 | #define VBOX_SHCL_GUEST_FN_ERROR 27
|
---|
533 |
|
---|
534 | /** The maximum default chunk size for a single data transfer. */
|
---|
535 | #define VBOX_SHCL_MAX_CHUNK_SIZE _64K
|
---|
536 |
|
---|
537 | /** @name VBOX_SHCL_GF_XXX - Guest features.
|
---|
538 | * @sa VBOX_SHCL_GUEST_FN_REPORT_FEATURES
|
---|
539 | * @{ */
|
---|
540 | /** No flags set. */
|
---|
541 | #define VBOX_SHCL_GF_NONE 0
|
---|
542 | /** Guest can handle context IDs (uint64_t, in paParam[0]). */
|
---|
543 | #define VBOX_SHCL_GF_0_CONTEXT_ID RT_BIT_64(0)
|
---|
544 | /** Bit that must be set in the 2nd parameter, will be cleared if the host reponds
|
---|
545 | * correctly (old hosts might not). */
|
---|
546 | #define VBOX_SHCL_GF_1_MUST_BE_ONE RT_BIT_64(63)
|
---|
547 | /** @} */
|
---|
548 |
|
---|
549 | /** @name VBOX_GUESTCTRL_HF_XXX - Host features.
|
---|
550 | * @sa VBOX_SHCL_GUEST_FN_REPORT_FEATURES
|
---|
551 | * @{ */
|
---|
552 | /** No flags set. */
|
---|
553 | #define VBOX_SHCL_HF_NONE 0
|
---|
554 | /** @} */
|
---|
555 |
|
---|
556 | /*
|
---|
557 | * HGCM parameter structures.
|
---|
558 | */
|
---|
559 | #pragma pack(1)
|
---|
560 | /**
|
---|
561 | * Waits (blocking) for a new host message to arrive.
|
---|
562 | * Deprecated; do not use anymore.
|
---|
563 | * Kept for maintaining compatibility with older Guest Additions.
|
---|
564 | */
|
---|
565 | typedef struct _VBoxShClGetHostMsgOld
|
---|
566 | {
|
---|
567 | VBGLIOCHGCMCALL hdr;
|
---|
568 |
|
---|
569 | /** uint32_t, out: Host message type. */
|
---|
570 | HGCMFunctionParameter msg;
|
---|
571 | /** uint32_t, out: VBOX_SHCL_FMT_*, depends on the 'msg'.
|
---|
572 | * r=andy This actual can have *different* meanings, depending on the host message type. */
|
---|
573 | HGCMFunctionParameter formats; /* OUT uint32_t */
|
---|
574 | } VBoxShClGetHostMsgOld;
|
---|
575 |
|
---|
576 | #define VBOX_SHCL_CPARMS_GET_HOST_MSG_OLD 2
|
---|
577 |
|
---|
578 | /**
|
---|
579 | * Message for doing the protocol negotiation between the host
|
---|
580 | * and the guest. Not available on older (VBox <= 6.0) hosts.
|
---|
581 | *
|
---|
582 | * This message acts as a beacon between the old protocol (VBox <= 6.0) and
|
---|
583 | * the new protocol (>= VBox 6.1). Newer features are getting introduced soley via
|
---|
584 | * the guest / host feature flags then.
|
---|
585 | */
|
---|
586 | typedef struct _VBoxShClConnect
|
---|
587 | {
|
---|
588 | VBGLIOCHGCMCALL hdr;
|
---|
589 |
|
---|
590 | /** uint32_t, out: Maximum chunk size for data transfers. */
|
---|
591 | HGCMFunctionParameter cbChunkSize;
|
---|
592 | /** uint32_t, in/out: Compression type. Currently unused. */
|
---|
593 | HGCMFunctionParameter enmCompression;
|
---|
594 | /** uint32_t, in/out: Checksum type used for data transfer. Currently unused. */
|
---|
595 | HGCMFunctionParameter enmChecksumType;
|
---|
596 | } VBoxShClConnect;
|
---|
597 |
|
---|
598 | #define VBOX_SHCL_CPARMS_CONNECT 3
|
---|
599 |
|
---|
600 | /**
|
---|
601 | * Reports available formats.
|
---|
602 | */
|
---|
603 | typedef struct _VBoxShClFormatsMsg
|
---|
604 | {
|
---|
605 | VBGLIOCHGCMCALL hdr;
|
---|
606 |
|
---|
607 | union
|
---|
608 | {
|
---|
609 | struct
|
---|
610 | {
|
---|
611 | /** uint32_t, out: VBOX_SHCL_FMT_*. */
|
---|
612 | HGCMFunctionParameter uFormats;
|
---|
613 | } v0;
|
---|
614 |
|
---|
615 | struct
|
---|
616 | {
|
---|
617 | /** uint64_t, out: Context ID. */
|
---|
618 | HGCMFunctionParameter uContext;
|
---|
619 | /** uint32_t, out: VBOX_SHCL_FMT_*. */
|
---|
620 | HGCMFunctionParameter uFormats;
|
---|
621 | /** uint32_t, out: Format flags. */
|
---|
622 | HGCMFunctionParameter fFlags;
|
---|
623 | } v1;
|
---|
624 | } u;
|
---|
625 | } VBoxShClFormatsMsg;
|
---|
626 |
|
---|
627 | /**
|
---|
628 | * Requests to read clipboard data.
|
---|
629 | */
|
---|
630 | typedef struct _VBoxShClReadDataReqMsg
|
---|
631 | {
|
---|
632 | VBGLIOCHGCMCALL hdr;
|
---|
633 |
|
---|
634 | /** uint64_t, out: Context ID. */
|
---|
635 | HGCMFunctionParameter uContext;
|
---|
636 | /** uint32_t, out: Requested format to read data in. */
|
---|
637 | HGCMFunctionParameter uFormat;
|
---|
638 | /** uint32_t, out: Maximum size (in bytes) to read. */
|
---|
639 | HGCMFunctionParameter cbSize;
|
---|
640 | } VBoxShClReadDataReqMsg;
|
---|
641 |
|
---|
642 | #define VBOX_SHCL_CPARMS_READ_DATA_REQ 2
|
---|
643 |
|
---|
644 | /**
|
---|
645 | * Reads clipboard data.
|
---|
646 | */
|
---|
647 | typedef struct _VBoxShClReadDataMsg
|
---|
648 | {
|
---|
649 | VBGLIOCHGCMCALL hdr;
|
---|
650 |
|
---|
651 | /** uint32_t, out: Requested format. */
|
---|
652 | HGCMFunctionParameter format; /* IN uint32_t */
|
---|
653 | /** ptr, out: The data buffer. */
|
---|
654 | HGCMFunctionParameter ptr; /* IN linear pointer. */
|
---|
655 | /** uint32_t, out: Size of returned data, if > ptr->cb, then no data was
|
---|
656 | * actually transferred and the guest must repeat the call.
|
---|
657 | */
|
---|
658 | HGCMFunctionParameter size; /* OUT uint32_t */
|
---|
659 |
|
---|
660 | } VBoxShClReadDataMsg;
|
---|
661 |
|
---|
662 | #define VBOX_SHCL_CPARMS_READ_DATA 3
|
---|
663 |
|
---|
664 | /**
|
---|
665 | * Writes clipboard data.
|
---|
666 | */
|
---|
667 | typedef struct _VBoxShClWriteDataMsg
|
---|
668 | {
|
---|
669 | VBGLIOCHGCMCALL hdr;
|
---|
670 |
|
---|
671 | union
|
---|
672 | {
|
---|
673 | struct
|
---|
674 | {
|
---|
675 | /** Returned format as requested in the VBOX_SHCL_HOST_MSG_READ_DATA message. */
|
---|
676 | HGCMFunctionParameter format; /* IN uint32_t */
|
---|
677 | /** Data. */
|
---|
678 | HGCMFunctionParameter ptr; /* IN linear pointer. */
|
---|
679 | } v0;
|
---|
680 | struct
|
---|
681 | {
|
---|
682 | /** uint64_t, out: Context ID. */
|
---|
683 | HGCMFunctionParameter uContext;
|
---|
684 | /** uint32_t, out: Requested format to read data in. */
|
---|
685 | HGCMFunctionParameter uFormat;
|
---|
686 | /** uint32_t, out: Size of data (in bytes). */
|
---|
687 | HGCMFunctionParameter cbData;
|
---|
688 | /** ptr, out: Actual data. */
|
---|
689 | HGCMFunctionParameter pvData;
|
---|
690 | } v1;
|
---|
691 | } u;
|
---|
692 | } VBoxShClWriteDataMsg;
|
---|
693 |
|
---|
694 | #define VBOX_SHCL_CPARMS_WRITE_DATA 4
|
---|
695 |
|
---|
696 | /**
|
---|
697 | * Reports a transfer status.
|
---|
698 | */
|
---|
699 | typedef struct _VBoxShClTransferStatusMsg
|
---|
700 | {
|
---|
701 | VBGLIOCHGCMCALL hdr;
|
---|
702 |
|
---|
703 | /** uint64_t, out: Context ID. */
|
---|
704 | HGCMFunctionParameter uContext;
|
---|
705 | /** uint32_t, out: Direction of transfer; of type SHCLTRANSFERDIR_. */
|
---|
706 | HGCMFunctionParameter enmDir;
|
---|
707 | /** uint32_t, out: Status to report; of type SHCLTRANSFERSTATUS_. */
|
---|
708 | HGCMFunctionParameter enmStatus;
|
---|
709 | /** uint32_t, out: Result code to report. Optional. */
|
---|
710 | HGCMFunctionParameter rc;
|
---|
711 | /** uint32_t, out: Reporting flags. Currently unused and must be 0. */
|
---|
712 | HGCMFunctionParameter fFlags;
|
---|
713 | } VBoxShClTransferStatusMsg;
|
---|
714 |
|
---|
715 | #define VBOX_SHCL_CPARMS_TRANSFER_STATUS 5
|
---|
716 |
|
---|
717 | /**
|
---|
718 | * Asks the host for the next command to process, along
|
---|
719 | * with the needed amount of parameters and an optional blocking
|
---|
720 | * flag.
|
---|
721 | *
|
---|
722 | * Used by: VBOX_SHCL_GUEST_FN_GET_HOST_MSG
|
---|
723 | *
|
---|
724 | */
|
---|
725 | typedef struct _VBoxShClGetHostMsg
|
---|
726 | {
|
---|
727 | VBGLIOCHGCMCALL hdr;
|
---|
728 |
|
---|
729 | /** uint32_t, out: Message ID. */
|
---|
730 | HGCMFunctionParameter uMsg;
|
---|
731 | /** uint32_t, out: Number of parameters the message needs. */
|
---|
732 | HGCMFunctionParameter cParms;
|
---|
733 | /** uint32_t, in: Whether or not to block (wait) for a new message to arrive. */
|
---|
734 | HGCMFunctionParameter fBlock;
|
---|
735 | } VBoxShClPeekMsg;
|
---|
736 |
|
---|
737 | #define VBOX_SHCL_CPARMS_GET_HOST_MSG 3
|
---|
738 |
|
---|
739 | /** No listing flags specified. */
|
---|
740 | #define VBOX_SHCL_LIST_FLAG_NONE 0
|
---|
741 | /** Only returns one entry per read. */
|
---|
742 | #define VBOX_SHCL_LIST_FLAG_RETURN_ONE RT_BIT(0)
|
---|
743 | /** Restarts reading a list from the beginning. */
|
---|
744 | #define VBOX_SHCL_LIST_FLAG_RESTART RT_BIT(1)
|
---|
745 |
|
---|
746 | #define VBOX_SHCL_LISTHDR_FLAG_NONE 0
|
---|
747 |
|
---|
748 | /** No additional information provided. */
|
---|
749 | #define VBOX_SHCL_INFO_FLAG_NONE 0
|
---|
750 | /** Get object information of type SHCLFSOBJINFO. */
|
---|
751 | #define VBOX_SHCL_INFO_FLAG_FSOBJINFO RT_BIT(0)
|
---|
752 |
|
---|
753 | /**
|
---|
754 | * Status messag for lists and objects.
|
---|
755 | */
|
---|
756 | typedef struct _VBoxShClStatusMsg
|
---|
757 | {
|
---|
758 | VBGLIOCHGCMCALL hdr;
|
---|
759 |
|
---|
760 | /** uint64_t, in: Context ID. */
|
---|
761 | HGCMFunctionParameter uContext;
|
---|
762 | /** uint32_t, in: Transfer status of type SHCLTRANSFERSTATUS. */
|
---|
763 | HGCMFunctionParameter uStatus;
|
---|
764 | /** uint32_t, in: Size of payload of this status, based on the status type. */
|
---|
765 | HGCMFunctionParameter cbPayload;
|
---|
766 | /** pointer, in: Optional payload of this status, based on the status type. */
|
---|
767 | HGCMFunctionParameter pvPayload;
|
---|
768 | } VBoxShClStatusMsg;
|
---|
769 |
|
---|
770 | #define VBOX_SHCL_CPARMS_STATUS 4
|
---|
771 |
|
---|
772 | /** Invalid message type, do not use. */
|
---|
773 | #define VBOX_SHCL_REPLYMSGTYPE_INVALID 0
|
---|
774 | /** Replies a transfer status. */
|
---|
775 | #define VBOX_SHCL_REPLYMSGTYPE_TRANSFER_STATUS 1
|
---|
776 | /** Replies a list open status. */
|
---|
777 | #define VBOX_SHCL_REPLYMSGTYPE_LIST_OPEN 2
|
---|
778 | /** Replies a list close status. */
|
---|
779 | #define VBOX_SHCL_REPLYMSGTYPE_LIST_CLOSE 3
|
---|
780 | /** Replies an object open status. */
|
---|
781 | #define VBOX_SHCL_REPLYMSGTYPE_OBJ_OPEN 4
|
---|
782 | /** Replies an object close status. */
|
---|
783 | #define VBOX_SHCL_REPLYMSGTYPE_OBJ_CLOSE 5
|
---|
784 |
|
---|
785 | /**
|
---|
786 | * Generic reply message.
|
---|
787 | */
|
---|
788 | typedef struct _VBoxShClReplyMsg
|
---|
789 | {
|
---|
790 | VBGLIOCHGCMCALL hdr;
|
---|
791 |
|
---|
792 | /** uint64_t, out: Context ID. */
|
---|
793 | HGCMFunctionParameter uContext;
|
---|
794 | /** uint32_t, out: Message type of type VBOX_SHCL_REPLYMSGTYPE_XXX. */
|
---|
795 | HGCMFunctionParameter enmType;
|
---|
796 | /** uint32_t, out: IPRT result of overall operation. */
|
---|
797 | HGCMFunctionParameter rc;
|
---|
798 | /** uint32_t, out: Size of optional payload of this reply, based on the message type. */
|
---|
799 | HGCMFunctionParameter cbPayload;
|
---|
800 | /** pointer, out: Optional payload of this reply, based on the message type. */
|
---|
801 | HGCMFunctionParameter pvPayload;
|
---|
802 | union
|
---|
803 | {
|
---|
804 | struct
|
---|
805 | {
|
---|
806 | HGCMFunctionParameter enmStatus;
|
---|
807 | } TransferStatus;
|
---|
808 | struct
|
---|
809 | {
|
---|
810 | HGCMFunctionParameter uHandle;
|
---|
811 | } ListOpen;
|
---|
812 | struct
|
---|
813 | {
|
---|
814 | HGCMFunctionParameter uHandle;
|
---|
815 | } ObjOpen;
|
---|
816 | struct
|
---|
817 | {
|
---|
818 | HGCMFunctionParameter uHandle;
|
---|
819 | } ObjClose;
|
---|
820 | } u;
|
---|
821 | } VBoxShClReplyMsg;
|
---|
822 |
|
---|
823 | /** Minimum parameters (HGCM function parameters minus the union) a reply message must have. */
|
---|
824 | #define VBOX_SHCL_CPARMS_REPLY_MIN 5
|
---|
825 |
|
---|
826 | /**
|
---|
827 | * Structure for keeping root list message parameters.
|
---|
828 | */
|
---|
829 | typedef struct _VBoxShClRootListParms
|
---|
830 | {
|
---|
831 | /** uint64_t, in: Context ID. */
|
---|
832 | HGCMFunctionParameter uContext;
|
---|
833 | /** uint32_t, in: Roots listing flags; unused at the moment. */
|
---|
834 | HGCMFunctionParameter fRoots;
|
---|
835 | } VBoxShClRootListParms;
|
---|
836 |
|
---|
837 | /**
|
---|
838 | * Requests to read the root list header.
|
---|
839 | */
|
---|
840 | typedef struct _VBoxShClRootListReadReqMsg
|
---|
841 | {
|
---|
842 | VBGLIOCHGCMCALL hdr;
|
---|
843 |
|
---|
844 | VBoxShClRootListParms ReqParms;
|
---|
845 | } VBoxShClRootListReadReqMsg;
|
---|
846 |
|
---|
847 | #define VBOX_SHCL_CPARMS_ROOT_LIST_HDR_READ_REQ 2
|
---|
848 |
|
---|
849 | /**
|
---|
850 | * Reads / Writes a root list header.
|
---|
851 | */
|
---|
852 | typedef struct _VBoxShClRootListHdrMsg
|
---|
853 | {
|
---|
854 | VBGLIOCHGCMCALL hdr;
|
---|
855 |
|
---|
856 | VBoxShClRootListParms ReqParms;
|
---|
857 | /** uint64_t, in/out: Number of total root list entries. */
|
---|
858 | HGCMFunctionParameter cRoots;
|
---|
859 | } VBoxShClRootListHdrMsg;
|
---|
860 |
|
---|
861 | #define VBOX_SHCL_CPARMS_ROOT_LIST_HDR_READ 3
|
---|
862 | #define VBOX_SHCL_CPARMS_ROOT_LIST_HDR_WRITE 3
|
---|
863 |
|
---|
864 | /**
|
---|
865 | * Structure for keeping list entry message parameters.
|
---|
866 | */
|
---|
867 | typedef struct _VBoxShClRootListEntryParms
|
---|
868 | {
|
---|
869 | /** uint64_t, in: Context ID. */
|
---|
870 | HGCMFunctionParameter uContext;
|
---|
871 | /** uint32_t, in: VBOX_SHCL_INFO_FLAG_XXX. */
|
---|
872 | HGCMFunctionParameter fInfo;
|
---|
873 | /** uint32_t, in: Index of root list entry to get (zero-based). */
|
---|
874 | HGCMFunctionParameter uIndex;
|
---|
875 | } VBoxShClRootListEntryParms;
|
---|
876 |
|
---|
877 | /**
|
---|
878 | * Request to read a list root entry.
|
---|
879 | */
|
---|
880 | typedef struct _VBoxShClRootListEntryReadReqMsg
|
---|
881 | {
|
---|
882 | VBGLIOCHGCMCALL hdr;
|
---|
883 |
|
---|
884 | /** in: Request parameters. */
|
---|
885 | VBoxShClRootListEntryParms Parms;
|
---|
886 | } VBoxShClRootListEntryReadReqMsg;
|
---|
887 |
|
---|
888 | #define VBOX_SHCL_CPARMS_ROOT_LIST_ENTRY_READ_REQ 3
|
---|
889 |
|
---|
890 | /**
|
---|
891 | * Reads / Writes a root list entry.
|
---|
892 | */
|
---|
893 | typedef struct _VBoxShClRootListEntryMsg
|
---|
894 | {
|
---|
895 | VBGLIOCHGCMCALL hdr;
|
---|
896 |
|
---|
897 | /** in/out: Request parameters. */
|
---|
898 | VBoxShClRootListEntryParms Parms;
|
---|
899 | /** pointer, in/out: Entry name. */
|
---|
900 | HGCMFunctionParameter szName;
|
---|
901 | /** uint32_t, out: Bytes to be used for information/How many bytes were used. */
|
---|
902 | HGCMFunctionParameter cbInfo;
|
---|
903 | /** pointer, in/out: Information to be set/get (SHCLFSOBJINFO only currently).
|
---|
904 | * Do not forget to set the SHCLFSOBJINFO::Attr::enmAdditional for Get operation as well. */
|
---|
905 | HGCMFunctionParameter pvInfo;
|
---|
906 | } VBoxShClRootListEntryMsg;
|
---|
907 |
|
---|
908 | #define VBOX_SHCL_CPARMS_ROOT_LIST_ENTRY_READ 6
|
---|
909 | #define VBOX_SHCL_CPARMS_ROOT_LIST_ENTRY_WRITE 6
|
---|
910 |
|
---|
911 | /**
|
---|
912 | * Opens a list.
|
---|
913 | */
|
---|
914 | typedef struct _VBoxShClListOpenMsg
|
---|
915 | {
|
---|
916 | VBGLIOCHGCMCALL hdr;
|
---|
917 |
|
---|
918 | /** uint64_t, in: Context ID. */
|
---|
919 | HGCMFunctionParameter uContext;
|
---|
920 | /** uint32_t, in: Listing flags (see VBOX_SHCL_LIST_FLAG_XXX). */
|
---|
921 | HGCMFunctionParameter fList;
|
---|
922 | /** uint32_t, in: Size (in bytes) of the filter string. */
|
---|
923 | HGCMFunctionParameter cbFilter;
|
---|
924 | /** pointer, in: Filter string. */
|
---|
925 | HGCMFunctionParameter pvFilter;
|
---|
926 | /** uint32_t, in: Size (in bytes) of the listing path. */
|
---|
927 | HGCMFunctionParameter cbPath;
|
---|
928 | /** pointer, in: Listing poth. If empty or NULL the listing's root path will be opened. */
|
---|
929 | HGCMFunctionParameter pvPath;
|
---|
930 | /** uint64_t, out: List handle. */
|
---|
931 | HGCMFunctionParameter uHandle;
|
---|
932 | } VBoxShClListOpenMsg;
|
---|
933 |
|
---|
934 | #define VBOX_SHCL_CPARMS_LIST_OPEN 7
|
---|
935 |
|
---|
936 | /**
|
---|
937 | * Closes a list.
|
---|
938 | */
|
---|
939 | typedef struct _VBoxShClListCloseMsg
|
---|
940 | {
|
---|
941 | VBGLIOCHGCMCALL hdr;
|
---|
942 |
|
---|
943 | /** uint64_t, in/out: Context ID. */
|
---|
944 | HGCMFunctionParameter uContext;
|
---|
945 | /** uint64_t, in: List handle. */
|
---|
946 | HGCMFunctionParameter uHandle;
|
---|
947 | } VBoxShClListCloseMsg;
|
---|
948 |
|
---|
949 | #define VBOX_SHCL_CPARMS_LIST_CLOSE 2
|
---|
950 |
|
---|
951 | typedef struct _VBoxShClListHdrReqParms
|
---|
952 | {
|
---|
953 | /** uint64_t, in: Context ID. */
|
---|
954 | HGCMFunctionParameter uContext;
|
---|
955 | /** uint64_t, in: List handle. */
|
---|
956 | HGCMFunctionParameter uHandle;
|
---|
957 | /** uint32_t, in: Flags of type VBOX_SHCL_LISTHDR_FLAG_XXX. */
|
---|
958 | HGCMFunctionParameter fFlags;
|
---|
959 | } VBoxShClListHdrReqParms;
|
---|
960 |
|
---|
961 | /**
|
---|
962 | * Request to read a list header.
|
---|
963 | */
|
---|
964 | typedef struct _VBoxShClListHdrReadReqMsg
|
---|
965 | {
|
---|
966 | VBGLIOCHGCMCALL hdr;
|
---|
967 |
|
---|
968 | VBoxShClListHdrReqParms ReqParms;
|
---|
969 | } VBoxShClListHdrReadReqMsg;
|
---|
970 |
|
---|
971 | #define VBOX_SHCL_CPARMS_LIST_HDR_READ_REQ 3
|
---|
972 |
|
---|
973 | /**
|
---|
974 | * Reads / Writes a list header.
|
---|
975 | */
|
---|
976 | typedef struct _VBoxShClListHdrMsg
|
---|
977 | {
|
---|
978 | VBGLIOCHGCMCALL hdr;
|
---|
979 |
|
---|
980 | VBoxShClListHdrReqParms ReqParms;
|
---|
981 | /** uint32_t, in/out: Feature flags (see VBOX_SHCL_FEATURE_FLAG_XXX). */
|
---|
982 | HGCMFunctionParameter fFeatures;
|
---|
983 | /** uint64_t, in/out: Number of total objects to transfer. */
|
---|
984 | HGCMFunctionParameter cTotalObjects;
|
---|
985 | /** uint64_t, in/out: Number of total bytes to transfer. */
|
---|
986 | HGCMFunctionParameter cbTotalSize;
|
---|
987 | } VBoxShClListHdrMsg;
|
---|
988 |
|
---|
989 | #define VBOX_SHCL_CPARMS_LIST_HDR 6
|
---|
990 |
|
---|
991 | typedef struct _VBoxShClListEntryReqParms
|
---|
992 | {
|
---|
993 | /** uint64_t, in: Context ID. */
|
---|
994 | HGCMFunctionParameter uContext;
|
---|
995 | /** uint64_t, in: List handle. */
|
---|
996 | HGCMFunctionParameter uHandle;
|
---|
997 | /** uint32_t, in: VBOX_SHCL_INFO_FLAG_XXX. */
|
---|
998 | HGCMFunctionParameter fInfo;
|
---|
999 | } VBoxShClListEntryReqParms;
|
---|
1000 |
|
---|
1001 | /**
|
---|
1002 | * Request to read a list entry.
|
---|
1003 | */
|
---|
1004 | typedef struct _VBoxShClListEntryReadReqMsg
|
---|
1005 | {
|
---|
1006 | VBGLIOCHGCMCALL hdr;
|
---|
1007 |
|
---|
1008 | VBoxShClListEntryReqParms ReqParms;
|
---|
1009 | } VBoxShClListEntryReadReqMsg;
|
---|
1010 |
|
---|
1011 | #define VBOX_SHCL_CPARMS_LIST_ENTRY_READ 3
|
---|
1012 |
|
---|
1013 | /**
|
---|
1014 | * Reads / Writes a list entry.
|
---|
1015 | */
|
---|
1016 | typedef struct _VBoxShClListEntryMsg
|
---|
1017 | {
|
---|
1018 | VBGLIOCHGCMCALL hdr;
|
---|
1019 |
|
---|
1020 | /** in/out: Request parameters. */
|
---|
1021 | VBoxShClListEntryReqParms ReqParms;
|
---|
1022 | /** pointer, in/out: Entry name. */
|
---|
1023 | HGCMFunctionParameter szName;
|
---|
1024 | /** uint32_t, out: Bytes to be used for information/How many bytes were used. */
|
---|
1025 | HGCMFunctionParameter cbInfo;
|
---|
1026 | /** pointer, in/out: Information to be set/get (SHCLFSOBJINFO only currently).
|
---|
1027 | * Do not forget to set the SHCLFSOBJINFO::Attr::enmAdditional for Get operation as well. */
|
---|
1028 | HGCMFunctionParameter pvInfo;
|
---|
1029 | } VBoxShClListEntryMsg;
|
---|
1030 |
|
---|
1031 | #define VBOX_SHCL_CPARMS_LIST_ENTRY 6
|
---|
1032 |
|
---|
1033 | /**
|
---|
1034 | * Opens a Shared Clipboard object.
|
---|
1035 | */
|
---|
1036 | typedef struct _VBoxShClObjOpenMsg
|
---|
1037 | {
|
---|
1038 | VBGLIOCHGCMCALL hdr;
|
---|
1039 |
|
---|
1040 | /** uint64_t, in/out: Context ID. */
|
---|
1041 | HGCMFunctionParameter uContext;
|
---|
1042 | /** uint64_t, in/out: Object handle. */
|
---|
1043 | HGCMFunctionParameter uHandle;
|
---|
1044 | /** uint32_t, in/out: Size (in bytes) of absoulte path of object to open/create. */
|
---|
1045 | HGCMFunctionParameter cbPath;
|
---|
1046 | /** pointer, in/out: Absoulte path of object to open/create. */
|
---|
1047 | HGCMFunctionParameter szPath;
|
---|
1048 | /** uint32_t in/out: Open / Create flags of type SHCL_OBJ_CF_. */
|
---|
1049 | HGCMFunctionParameter fCreate;
|
---|
1050 | } VBoxShClObjOpenMsg;
|
---|
1051 |
|
---|
1052 | #define VBOX_SHCL_CPARMS_OBJ_OPEN 5
|
---|
1053 |
|
---|
1054 | /**
|
---|
1055 | * Closes a Shared Clipboard object.
|
---|
1056 | */
|
---|
1057 | typedef struct _VBoxShClObjCloseMsg
|
---|
1058 | {
|
---|
1059 | VBGLIOCHGCMCALL hdr;
|
---|
1060 |
|
---|
1061 | /** uint64_t, in/out: Context ID. */
|
---|
1062 | HGCMFunctionParameter uContext;
|
---|
1063 | /** uint64_t, in: SHCLOBJHANDLE of object to close. */
|
---|
1064 | HGCMFunctionParameter uHandle;
|
---|
1065 | } VBoxShClObjCloseMsg;
|
---|
1066 |
|
---|
1067 | #define VBOX_SHCL_CPARMS_OBJ_CLOSE 2
|
---|
1068 |
|
---|
1069 | /**
|
---|
1070 | * Structure for keeping read parameters of a Shared Clipboard object.
|
---|
1071 | */
|
---|
1072 | typedef struct _VBoxShClObjReadReqParms
|
---|
1073 | {
|
---|
1074 | /** uint64_t, in: Context ID. */
|
---|
1075 | HGCMFunctionParameter uContext;
|
---|
1076 | /** uint64_t, in: SHCLOBJHANDLE of object to write to. */
|
---|
1077 | HGCMFunctionParameter uHandle;
|
---|
1078 | /** uint32_t, in: How many bytes to read. */
|
---|
1079 | HGCMFunctionParameter cbToRead;
|
---|
1080 | /** uint32_t, in: Read flags. Currently unused and must be 0. */
|
---|
1081 | HGCMFunctionParameter fRead;
|
---|
1082 | } VBoxShClObjReadReqParms;
|
---|
1083 |
|
---|
1084 | /**
|
---|
1085 | * Reads from a Shared Clipboard object.
|
---|
1086 | */
|
---|
1087 | typedef struct _VBoxShClObjReadReqMsg
|
---|
1088 | {
|
---|
1089 | VBGLIOCHGCMCALL hdr;
|
---|
1090 |
|
---|
1091 | VBoxShClObjReadReqParms ReqParms;
|
---|
1092 | } VBoxShClObjReadReqMsg;
|
---|
1093 |
|
---|
1094 | #define VBOX_SHCL_CPARMS_OBJ_READ_REQ 4
|
---|
1095 |
|
---|
1096 | /**
|
---|
1097 | * Reads / writes data of / to an object.
|
---|
1098 | *
|
---|
1099 | * Used by:
|
---|
1100 | * VBOX_SHCL_FN_OBJ_READ
|
---|
1101 | * VBOX_SHCL_FN_OBJ_WRITE
|
---|
1102 | */
|
---|
1103 | typedef struct _VBoxShClObjReadWriteMsg
|
---|
1104 | {
|
---|
1105 | VBGLIOCHGCMCALL hdr;
|
---|
1106 |
|
---|
1107 | /** uint64_t, in/out: Context ID. */
|
---|
1108 | HGCMFunctionParameter uContext;
|
---|
1109 | /** uint64_t, in/out: SHCLOBJHANDLE of object to write to. */
|
---|
1110 | HGCMFunctionParameter uHandle;
|
---|
1111 | /** uint32_t, in/out: Size (in bytes) of current data chunk. */
|
---|
1112 | HGCMFunctionParameter cbData;
|
---|
1113 | /** pointer, in/out: Current data chunk. */
|
---|
1114 | HGCMFunctionParameter pvData;
|
---|
1115 | /** uint32_t, in/out: Size (in bytes) of current data chunk checksum. */
|
---|
1116 | HGCMFunctionParameter cbChecksum;
|
---|
1117 | /** pointer, in/out: Checksum of data block, based on the checksum
|
---|
1118 | * type in the data header. Optional. */
|
---|
1119 | HGCMFunctionParameter pvChecksum;
|
---|
1120 | } VBoxShClObjReadWriteMsg;
|
---|
1121 |
|
---|
1122 | #define VBOX_SHCL_CPARMS_OBJ_READ 6
|
---|
1123 | #define VBOX_SHCL_CPARMS_OBJ_WRITE 6
|
---|
1124 |
|
---|
1125 | /**
|
---|
1126 | * Sends an error event.
|
---|
1127 | *
|
---|
1128 | * Used by:
|
---|
1129 | * VBOX_SHCL_FN_WRITE_ERROR
|
---|
1130 | */
|
---|
1131 | typedef struct _VBoxShClErrorMsg
|
---|
1132 | {
|
---|
1133 | VBGLIOCHGCMCALL hdr;
|
---|
1134 |
|
---|
1135 | /** uint64_t, in: Context ID. */
|
---|
1136 | HGCMFunctionParameter uContext;
|
---|
1137 | /** uint32_t, in: The error code (IPRT-style). */
|
---|
1138 | HGCMFunctionParameter rc;
|
---|
1139 | } VBoxShClWriteErrorMsg;
|
---|
1140 |
|
---|
1141 | #define VBOX_SHCL_CPARMS_ERROR 2
|
---|
1142 |
|
---|
1143 | #pragma pack()
|
---|
1144 |
|
---|
1145 | /**
|
---|
1146 | * Structure for keeping a Shared Clipboard file data chunk.
|
---|
1147 | *
|
---|
1148 | * @returns VBox status code.
|
---|
1149 | */
|
---|
1150 | typedef struct _SHCLFILEDATA
|
---|
1151 | {
|
---|
1152 | /** Current file data chunk. */
|
---|
1153 | void *pvData;
|
---|
1154 | /** Size (in bytes) of current data chunk. */
|
---|
1155 | uint32_t cbData;
|
---|
1156 | /** Checksum for current file data chunk. */
|
---|
1157 | void *pvChecksum;
|
---|
1158 | /** Size (in bytes) of current data chunk. */
|
---|
1159 | uint32_t cbChecksum;
|
---|
1160 | } SHCLFILEDATA, *PSHCLFILEDATA;
|
---|
1161 |
|
---|
1162 | /**
|
---|
1163 | * Structure for keeping Shared Clipboard error data.
|
---|
1164 | */
|
---|
1165 | typedef struct _SHCLERRORDATA
|
---|
1166 | {
|
---|
1167 | int32_t rc;
|
---|
1168 | } SHCLERRORDATA, *PSHCLERRORDATA;
|
---|
1169 |
|
---|
1170 | uint32_t ShClSvcGetMode(void);
|
---|
1171 | bool ShClSvcGetHeadless(void);
|
---|
1172 | bool ShClSvcLock(void);
|
---|
1173 | void ShClSvcUnlock(void);
|
---|
1174 |
|
---|
1175 | #endif /* !VBOX_INCLUDED_HostServices_VBoxClipboardSvc_h */
|
---|
1176 |
|
---|