VirtualBox

source: vbox/trunk/include/VBox/VBoxGuest.h@ 4108

Last change on this file since 4108 was 4108, checked in by vboxsync, 18 years ago

Decreased VBOX_HGCM_MAX_PARMS to 32.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 41.2 KB
Line 
1/** @file
2 * VBoxGuest - VirtualBox Guest Additions interface
3 */
4
5/*
6 * Copyright (C) 2006-2007 innotek GmbH
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 as published by the Free Software Foundation,
12 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
13 * distribution. VirtualBox OSE is distributed in the hope that it will
14 * be useful, but WITHOUT ANY WARRANTY of any kind.
15 */
16
17#ifndef ___VBox_VBoxGuest_h
18#define ___VBox_VBoxGuest_h
19
20#include <iprt/cdefs.h>
21#include <iprt/types.h>
22#include <VBox/err.h>
23#include <VBox/ostypes.h>
24
25/*******************************************************************************
26* Defined Constants And Macros *
27*******************************************************************************/
28
29/** @todo The following is a temporary fix for the problem of accessing
30 hypervisor pointers from within guest additions */
31
32/** Hypervisor linear pointer size type */
33typedef uint32_t vmmDevHypPtr;
34/** Hypervisor physical pointer size type */
35typedef uint32_t vmmDevHypPhys;
36
37#if defined(RT_OS_LINUX)
38/** The support device name. */
39# define VBOXGUEST_DEVICE_NAME "/dev/vboxadd"
40
41#elif defined(RT_OS_OS2)
42/** The support device name. */
43# define VBOXGUEST_DEVICE_NAME "\\Dev\\VBoxGst$"
44
45#elif defined(RT_OS_WINDOWS)
46/** The support service name. */
47# define VBOXGUEST_SERVICE_NAME "VBoxGuest"
48/** Win32 Device name. */
49# define VBOXGUEST_DEVICE_NAME "\\\\.\\VBoxGuest"
50/** Global name for Win2k+ */
51# define VBOXGUEST_DEVICE_NAME_GLOBAL "\\\\.\\Global\\VBoxGuest"
52/** Win32 driver name */
53# define VBOXGUEST_DEVICE_NAME_NT L"\\Device\\VBoxGuest"
54/** device name */
55# define VBOXGUEST_DEVICE_NAME_DOS L"\\DosDevices\\VBoxGuest"
56
57#else
58/* PORTME */
59#endif
60
61/** VirtualBox vendor ID */
62#define VBOX_PCI_VENDORID (0x80ee)
63
64/** VMMDev PCI card identifiers */
65#define VMMDEV_VENDORID VBOX_PCI_VENDORID
66#define VMMDEV_DEVICEID (0xcafe)
67
68/** VirtualBox graphics card identifiers */
69#define VBOX_VENDORID VBOX_PCI_VENDORID
70#define VBOX_VESA_VENDORID VBOX_PCI_VENDORID
71#define VBOX_DEVICEID (0xbeef)
72#define VBOX_VESA_DEVICEID (0xbeef)
73
74/**
75 * VBoxGuest port definitions
76 * @{
77 */
78
79/** guest can (== wants to) handle absolute coordinates */
80#define VBOXGUEST_MOUSE_GUEST_CAN_ABSOLUTE BIT(0)
81/** host can (== wants to) send absolute coordinates */
82#define VBOXGUEST_MOUSE_HOST_CAN_ABSOLUTE BIT(1)
83/** guest can *NOT* switch to software cursor and therefore depends on the host cursor */
84#define VBOXGUEST_MOUSE_GUEST_NEEDS_HOST_CURSOR BIT(2)
85/** host does NOT provide support for drawing the cursor itself (e.g. L4 console) */
86#define VBOXGUEST_MOUSE_HOST_CANNOT_HWPOINTER BIT(3)
87
88/** fictive start address of the hypervisor physical memory for MmMapIoSpace */
89#define HYPERVISOR_PHYSICAL_START 0xf8000000
90
91/*
92 * VMMDev Generic Request Interface
93 */
94
95/** port for generic request interface */
96#define PORT_VMMDEV_REQUEST_OFFSET 0
97
98/** Current version of the VMMDev interface.
99 *
100 * Additions are allowed to work only if
101 * additions_major == vmmdev_current && additions_minor <= vmmdev_current.
102 * Additions version is reported to host (VMMDev) by VMMDevReq_ReportGuestInfo.
103 *
104 * @remark These defines also live in the 16-bit and assembly versions of this header.
105 */
106#define VMMDEV_VERSION_MAJOR (0x1)
107#define VMMDEV_VERSION_MINOR (0x4)
108#define VMMDEV_VERSION ((VMMDEV_VERSION_MAJOR << 16) | VMMDEV_VERSION_MINOR)
109
110/**
111 * VMMDev request types.
112 * @note when updating this, adjust vmmdevGetRequestSize() as well
113 */
114typedef enum
115{
116 VMMDevReq_InvalidRequest = 0,
117 VMMDevReq_GetMouseStatus = 1,
118 VMMDevReq_SetMouseStatus = 2,
119 VMMDevReq_SetPointerShape = 3,
120 /** @todo implement on host side */
121 VMMDevReq_GetHostVersion = 4,
122 VMMDevReq_Idle = 5,
123 VMMDevReq_GetHostTime = 10,
124 VMMDevReq_GetHypervisorInfo = 20,
125 VMMDevReq_SetHypervisorInfo = 21,
126 VMMDevReq_SetPowerStatus = 30,
127 VMMDevReq_AcknowledgeEvents = 41,
128 VMMDevReq_CtlGuestFilterMask = 42,
129 VMMDevReq_ReportGuestInfo = 50,
130 VMMDevReq_GetDisplayChangeRequest = 51,
131 VMMDevReq_VideoModeSupported = 52,
132 VMMDevReq_GetHeightReduction = 53,
133 VMMDevReq_GetDisplayChangeRequest2 = 54,
134 VMMDevReq_ReportGuestCapabilities = 55,
135#ifdef VBOX_HGCM
136 VMMDevReq_HGCMConnect = 60,
137 VMMDevReq_HGCMDisconnect = 61,
138 VMMDevReq_HGCMCall = 62,
139#endif
140 VMMDevReq_VideoAccelEnable = 70,
141 VMMDevReq_VideoAccelFlush = 71,
142 VMMDevReq_VideoSetVisibleRegion = 72,
143 VMMDevReq_GetSeamlessChangeRequest = 73,
144 VMMDevReq_QueryCredentials = 100,
145 VMMDevReq_ReportCredentialsJudgement = 101,
146 VMMDevReq_LogString = 200,
147 VMMDevReq_SizeHack = 0x7fffffff
148} VMMDevRequestType;
149
150/** Version of VMMDevRequestHeader structure. */
151#define VMMDEV_REQUEST_HEADER_VERSION (0x10001)
152
153#pragma pack(4)
154/** generic VMMDev request header */
155typedef struct
156{
157 /** size of the structure in bytes (including body). Filled by caller */
158 uint32_t size;
159 /** version of the structure. Filled by caller */
160 uint32_t version;
161 /** type of the request */
162 VMMDevRequestType requestType;
163 /** return code. Filled by VMMDev */
164 int32_t rc;
165 /** reserved fields */
166 uint32_t reserved1;
167 uint32_t reserved2;
168} VMMDevRequestHeader;
169
170/** mouse status request structure */
171typedef struct
172{
173 /** header */
174 VMMDevRequestHeader header;
175 /** mouse feature mask */
176 uint32_t mouseFeatures;
177 /** mouse x position */
178 uint32_t pointerXPos;
179 /** mouse y position */
180 uint32_t pointerYPos;
181} VMMDevReqMouseStatus;
182
183/** Note VBOX_MOUSE_POINTER_* flags are used in guest video driver,
184 * values must be <= 0x8000 and must not be changed.
185 */
186
187/** pointer is visible */
188#define VBOX_MOUSE_POINTER_VISIBLE (0x0001)
189/** pointer has alpha channel */
190#define VBOX_MOUSE_POINTER_ALPHA (0x0002)
191/** pointerData contains new pointer shape */
192#define VBOX_MOUSE_POINTER_SHAPE (0x0004)
193
194/** mouse pointer shape/visibility change request */
195typedef struct
196{
197 /** header */
198 VMMDevRequestHeader header;
199 /** VBOX_MOUSE_POINTER_* bit flags */
200 uint32_t fFlags;
201 /** x coordinate of hot spot */
202 uint32_t xHot;
203 /** y coordinate of hot spot */
204 uint32_t yHot;
205 /** width of the pointer in pixels */
206 uint32_t width;
207 /** height of the pointer in scanlines */
208 uint32_t height;
209 /** Pointer data.
210 *
211 ****
212 * The data consists of 1 bpp AND mask followed by 32 bpp XOR (color) mask.
213 *
214 * For pointers without alpha channel the XOR mask pixels are 32 bit values: (lsb)BGR0(msb).
215 * For pointers with alpha channel the XOR mask consists of (lsb)BGRA(msb) 32 bit values.
216 *
217 * Guest driver must create the AND mask for pointers with alpha channel, so if host does not
218 * support alpha, the pointer could be displayed as a normal color pointer. The AND mask can
219 * be constructed from alpha values. For example alpha value >= 0xf0 means bit 0 in the AND mask.
220 *
221 * The AND mask is 1 bpp bitmap with byte aligned scanlines. Size of AND mask,
222 * therefore, is cbAnd = (width + 7) / 8 * height. The padding bits at the
223 * end of any scanline are undefined.
224 *
225 * The XOR mask follows the AND mask on the next 4 bytes aligned offset:
226 * uint8_t *pXor = pAnd + (cbAnd + 3) & ~3
227 * Bytes in the gap between the AND and the XOR mask are undefined.
228 * XOR mask scanlines have no gap between them and size of XOR mask is:
229 * cXor = width * 4 * height.
230 ****
231 *
232 * Preallocate 4 bytes for accessing actual data as p->pointerData
233 */
234 char pointerData[4];
235} VMMDevReqMousePointer;
236
237/** string log request structure */
238typedef struct
239{
240 /** header */
241 VMMDevRequestHeader header;
242 /** variable length string data */
243 char szString[1];
244} VMMDevReqLogString;
245
246/** host version request structure */
247typedef struct
248{
249 /** header */
250 VMMDevRequestHeader header;
251 /** major version */
252 uint32_t major;
253 /** minor version */
254 uint32_t minor;
255 /** build number */
256 uint32_t build;
257} VMMDevReqHostVersion;
258
259/** guest capabilites structure */
260typedef struct
261{
262 /** header */
263 VMMDevRequestHeader header;
264 /** capabilities (VMMDEV_GUEST_*) */
265 uint32_t caps;
266} VMMDevReqGuestCapabilities;
267
268/** idle request structure */
269typedef struct
270{
271 /** header */
272 VMMDevRequestHeader header;
273} VMMDevReqIdle;
274
275/** host time request structure */
276typedef struct
277{
278 /** header */
279 VMMDevRequestHeader header;
280 /** time in milliseconds since unix epoch. Filled by VMMDev. */
281 uint64_t time;
282} VMMDevReqHostTime;
283
284/** hypervisor info structure */
285typedef struct
286{
287 /** header */
288 VMMDevRequestHeader header;
289 /** guest virtual address of proposed hypervisor start */
290 vmmDevHypPtr hypervisorStart;
291 /** hypervisor size in bytes */
292 uint32_t hypervisorSize;
293} VMMDevReqHypervisorInfo;
294
295/** system power requests */
296typedef enum
297{
298 VMMDevPowerState_Invalid = 0,
299 VMMDevPowerState_Pause = 1,
300 VMMDevPowerState_PowerOff = 2,
301 VMMDevPowerState_SaveState = 3,
302 VMMDevPowerState_SizeHack = 0x7fffffff
303} VMMDevPowerState;
304
305/** system power status structure */
306typedef struct
307{
308 /** header */
309 VMMDevRequestHeader header;
310 /** power state request */
311 VMMDevPowerState powerState;
312} VMMDevPowerStateRequest;
313
314/** pending events structure */
315typedef struct
316{
317 /** header */
318 VMMDevRequestHeader header;
319 /** pending event bitmap */
320 uint32_t events;
321} VMMDevEvents;
322
323/** guest filter mask control */
324typedef struct
325{
326 /** header */
327 VMMDevRequestHeader header;
328 /** mask of events to be added to filter */
329 uint32_t u32OrMask;
330 /** mask of events to be removed from filter */
331 uint32_t u32NotMask;
332} VMMDevCtlGuestFilterMask;
333
334/** guest information structure */
335typedef struct VBoxGuestInfo
336{
337 /** The VMMDev interface version expected by additions. */
338 uint32_t additionsVersion;
339 /** guest OS type */
340 OSType osType;
341 /** @todo */
342} VBoxGuestInfo;
343
344/** guest information structure */
345typedef struct
346{
347 /** header */
348 VMMDevRequestHeader header;
349 /** Guest information. */
350 VBoxGuestInfo guestInfo;
351} VMMDevReportGuestInfo;
352
353/** display change request structure */
354typedef struct
355{
356 /** header */
357 VMMDevRequestHeader header;
358 /** horizontal pixel resolution (0 = do not change) */
359 uint32_t xres;
360 /** vertical pixel resolution (0 = do not change) */
361 uint32_t yres;
362 /** bits per pixel (0 = do not change) */
363 uint32_t bpp;
364 /** Flag that the request is an acknowlegement for the VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST.
365 * Values: 0 - just querying, VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST - event acknowledged.
366 */
367 uint32_t eventAck;
368} VMMDevDisplayChangeRequest;
369
370typedef struct
371{
372 /** header */
373 VMMDevRequestHeader header;
374 /** horizontal pixel resolution (0 = do not change) */
375 uint32_t xres;
376 /** vertical pixel resolution (0 = do not change) */
377 uint32_t yres;
378 /** bits per pixel (0 = do not change) */
379 uint32_t bpp;
380 /** Flag that the request is an acknowlegement for the VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST.
381 * Values: 0 - just querying, VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST - event acknowledged.
382 */
383 uint32_t eventAck;
384 /** 0 for primary display, 1 for the first secondary, etc. */
385 uint32_t display;
386} VMMDevDisplayChangeRequest2;
387
388/** video mode supported request structure */
389typedef struct
390{
391 /** header */
392 VMMDevRequestHeader header;
393 /** horizontal pixel resolution (input) */
394 uint32_t width;
395 /** vertical pixel resolution (input) */
396 uint32_t height;
397 /** bits per pixel (input) */
398 uint32_t bpp;
399 /** supported flag (output) */
400 bool fSupported;
401} VMMDevVideoModeSupportedRequest;
402
403/** video modes height reduction request structure */
404typedef struct
405{
406 /** header */
407 VMMDevRequestHeader header;
408 /** height reduction in pixels (output) */
409 uint32_t heightReduction;
410} VMMDevGetHeightReductionRequest;
411
412#pragma pack()
413
414#ifdef VBOX_HGCM
415
416/** HGCM flags.
417 * @{
418 */
419#define VBOX_HGCM_REQ_DONE (0x1)
420#define VBOX_HGCM_REQ_CANCELLED (0x2)
421/** @} */
422
423#pragma pack(4)
424typedef struct _VMMDevHGCMRequestHeader
425{
426 /** Request header. */
427 VMMDevRequestHeader header;
428
429 /** HGCM flags. */
430 uint32_t fu32Flags;
431
432 /** Result code. */
433 int32_t result;
434} VMMDevHGCMRequestHeader;
435
436/** HGCM service location types. */
437typedef enum
438{
439 VMMDevHGCMLoc_Invalid = 0,
440 VMMDevHGCMLoc_LocalHost = 1,
441 VMMDevHGCMLoc_LocalHost_Existing = 2,
442 VMMDevHGCMLoc_SizeHack = 0x7fffffff
443} HGCMServiceLocationType;
444
445typedef struct
446{
447 char achName[128];
448} HGCMServiceLocationHost;
449
450typedef struct HGCMSERVICELOCATION
451{
452 /** Type of the location. */
453 HGCMServiceLocationType type;
454
455 union
456 {
457 HGCMServiceLocationHost host;
458 } u;
459} HGCMServiceLocation;
460
461typedef struct
462{
463 /* request header */
464 VMMDevHGCMRequestHeader header;
465
466 /** IN: Description of service to connect to. */
467 HGCMServiceLocation loc;
468
469 /** OUT: Client identifier assigned by local instance of HGCM. */
470 uint32_t u32ClientID;
471} VMMDevHGCMConnect;
472
473typedef struct
474{
475 /* request header */
476 VMMDevHGCMRequestHeader header;
477
478 /** IN: Client identifier. */
479 uint32_t u32ClientID;
480} VMMDevHGCMDisconnect;
481
482typedef enum
483{
484 VMMDevHGCMParmType_Invalid = 0,
485 VMMDevHGCMParmType_32bit = 1,
486 VMMDevHGCMParmType_64bit = 2,
487 VMMDevHGCMParmType_PhysAddr = 3,
488 VMMDevHGCMParmType_LinAddr = 4, /**< In and Out */
489 VMMDevHGCMParmType_LinAddr_In = 5, /**< In (read) */
490 VMMDevHGCMParmType_LinAddr_Out= 6, /**< Out (write) */
491 VMMDevHGCMParmType_SizeHack = 0x7fffffff
492} HGCMFunctionParameterType;
493
494typedef struct _HGCMFUNCTIONPARAMETER
495{
496 HGCMFunctionParameterType type;
497 union
498 {
499 uint32_t value32;
500 uint64_t value64;
501 struct
502 {
503 uint32_t size;
504
505 union
506 {
507 vmmDevHypPhys physAddr;
508 vmmDevHypPtr linearAddr;
509 } u;
510 } Pointer;
511 } u;
512} HGCMFunctionParameter;
513
514typedef struct
515{
516 /* request header */
517 VMMDevHGCMRequestHeader header;
518
519 /** IN: Client identifier. */
520 uint32_t u32ClientID;
521 /** IN: Service function number. */
522 uint32_t u32Function;
523 /** IN: Number of parameters. */
524 uint32_t cParms;
525 /** Parameters follow in form: HGCMFunctionParameter aParms[X]; */
526} VMMDevHGCMCall;
527#pragma pack()
528
529#define VMMDEV_HGCM_CALL_PARMS(a) ((HGCMFunctionParameter *)((char *)a + sizeof (VMMDevHGCMCall)))
530
531#define VBOX_HGCM_MAX_PARMS 32
532
533#endif /* VBOX_HGCM */
534
535
536#define VBVA_F_STATUS_ACCEPTED (0x01)
537#define VBVA_F_STATUS_ENABLED (0x02)
538
539#pragma pack(4)
540
541typedef struct _VMMDevVideoAccelEnable
542{
543 /* request header */
544 VMMDevRequestHeader header;
545
546 /** 0 - disable, !0 - enable. */
547 uint32_t u32Enable;
548
549 /** The size of VBVAMEMORY::au8RingBuffer expected by driver.
550 * The host will refuse to enable VBVA if the size is not equal to
551 * VBVA_RING_BUFFER_SIZE.
552 */
553 uint32_t cbRingBuffer;
554
555 /** Guest initializes the status to 0. Host sets appropriate VBVA_F_STATUS_ flags. */
556 uint32_t fu32Status;
557
558} VMMDevVideoAccelEnable;
559
560typedef struct _VMMDevVideoAccelFlush
561{
562 /* request header */
563 VMMDevRequestHeader header;
564
565} VMMDevVideoAccelFlush;
566
567
568typedef struct _VMMDevVideoSetVisibleRegion
569{
570 /* request header */
571 VMMDevRequestHeader header;
572
573 /** Number of rectangles */
574 uint32_t cRect;
575
576 /** Rectangle array */
577 RTRECT Rect;
578} VMMDevVideoSetVisibleRegion;
579
580
581/** Seamless mode */
582typedef enum
583{
584 VMMDev_Seamless_Disabled = 0, /* normal mode; entire guest desktop displayed */
585 VMMDev_Seamless_Visible_Region = 1, /* visible region mode; only top-level guest windows displayed */
586 VMMDev_Seamless_Host_Window = 2 /* windowed mode; each top-level guest window is represented in a host window */
587} VMMDevSeamlessMode;
588
589typedef struct
590{
591 /** header */
592 VMMDevRequestHeader header;
593
594 /** New seamless mode */
595 VMMDevSeamlessMode mode;
596 /** Flag that the request is an acknowlegement for the VMMDEV_EVENT_SEAMLESS_MODE_CHANGE_REQUEST.
597 * Values: 0 - just querying, VMMDEV_EVENT_SEAMLESS_MODE_CHANGE_REQUEST - event acknowledged.
598 */
599 uint32_t eventAck;
600} VMMDevSeamlessChangeRequest;
601
602#pragma pack()
603
604#pragma pack(1)
605
606/** VBVA command header. */
607typedef struct _VBVACMDHDR
608{
609 /** Coordinates of affected rectangle. */
610 int16_t x;
611 int16_t y;
612 uint16_t w;
613 uint16_t h;
614} VBVACMDHDR;
615
616/* VBVA order codes. Must be >= 0, because the VRDP server internally
617 * uses negative values to mark some operations.
618 * Values are important since they are used as an index in the
619 * "supported orders" bit mask.
620 */
621#define VBVA_VRDP_DIRTY_RECT (0)
622#define VBVA_VRDP_SOLIDRECT (1)
623#define VBVA_VRDP_SOLIDBLT (2)
624#define VBVA_VRDP_DSTBLT (3)
625#define VBVA_VRDP_SCREENBLT (4)
626#define VBVA_VRDP_PATBLTBRUSH (5)
627#define VBVA_VRDP_MEMBLT (6)
628#define VBVA_VRDP_CACHED_BITMAP (7)
629#define VBVA_VRDP_DELETED_BITMAP (8)
630#define VBVA_VRDP_LINE (9)
631#define VBVA_VRDP_BOUNDS (10)
632#define VBVA_VRDP_REPEAT (11)
633#define VBVA_VRDP_POLYLINE (12)
634#define VBVA_VRDP_ELLIPSE (13)
635#define VBVA_VRDP_SAVESCREEN (14)
636
637#define VBVA_VRDP_INDEX_TO_BIT(__index) (1 << (__index))
638
639#ifndef VRDP_NO_COM
640/* 128 bit bitmap hash. */
641typedef uint8_t VRDPBITMAPHASH[16];
642
643typedef struct _VRDPORDERPOINT
644{
645 int16_t x;
646 int16_t y;
647} VRDPORDERPOINT;
648
649typedef struct _VRDPORDERPOLYPOINTS
650{
651 uint8_t c;
652 VRDPORDERPOINT a[16];
653} VRDPORDERPOLYPOINTS;
654
655typedef struct _VRDPORDERAREA
656{
657 int16_t x;
658 int16_t y;
659 uint16_t w;
660 uint16_t h;
661} VRDPORDERAREA;
662
663typedef struct _VRDPORDERBOUNDS
664{
665 VRDPORDERPOINT pt1;
666 VRDPORDERPOINT pt2;
667} VRDPORDERBOUNDS;
668
669typedef struct _VRDPORDERREPEAT
670{
671 VRDPORDERBOUNDS bounds;
672} VRDPORDERREPEAT;
673
674
675/* Header for bitmap bits in VBVA VRDP operations. */
676typedef struct _VRDPDATABITS
677{
678 /* Size of bitmap data without the header. */
679 uint32_t cb;
680 int16_t x;
681 int16_t y;
682 uint16_t cWidth;
683 uint16_t cHeight;
684 uint8_t cbPixel;
685} VRDPDATABITS;
686
687typedef struct _VRDPORDERSOLIDRECT
688{
689 int16_t x;
690 int16_t y;
691 uint16_t w;
692 uint16_t h;
693 uint32_t rgb;
694} VRDPORDERSOLIDRECT;
695
696typedef struct _VRDPORDERSOLIDBLT
697{
698 int16_t x;
699 int16_t y;
700 uint16_t w;
701 uint16_t h;
702 uint32_t rgb;
703 uint8_t rop;
704} VRDPORDERSOLIDBLT;
705
706typedef struct _VRDPORDERDSTBLT
707{
708 int16_t x;
709 int16_t y;
710 uint16_t w;
711 uint16_t h;
712 uint8_t rop;
713} VRDPORDERDSTBLT;
714
715typedef struct _VRDPORDERSCREENBLT
716{
717 int16_t x;
718 int16_t y;
719 uint16_t w;
720 uint16_t h;
721 int16_t xSrc;
722 int16_t ySrc;
723 uint8_t rop;
724} VRDPORDERSCREENBLT;
725
726typedef struct _VRDPORDERPATBLTBRUSH
727{
728 int16_t x;
729 int16_t y;
730 uint16_t w;
731 uint16_t h;
732 int8_t xSrc;
733 int8_t ySrc;
734 uint32_t rgbFG;
735 uint32_t rgbBG;
736 uint8_t rop;
737 uint8_t pattern[8];
738} VRDPORDERPATBLTBRUSH;
739
740typedef struct _VRDPORDERMEMBLT
741{
742 int16_t x;
743 int16_t y;
744 uint16_t w;
745 uint16_t h;
746 int16_t xSrc;
747 int16_t ySrc;
748 uint8_t rop;
749 VRDPBITMAPHASH hash;
750} VRDPORDERMEMBLT;
751
752typedef struct _VRDPORDERCACHEDBITMAP
753{
754 VRDPBITMAPHASH hash;
755 /* VRDPDATABITS and the bitmap data follows. */
756} VRDPORDERCACHEDBITMAP;
757
758typedef struct _VRDPORDERDELETEDBITMAP
759{
760 VRDPBITMAPHASH hash;
761} VRDPORDERDELETEDBITMAP;
762
763typedef struct _VRDPORDERLINE
764{
765 int16_t x1;
766 int16_t y1;
767 int16_t x2;
768 int16_t y2;
769 int16_t xBounds1;
770 int16_t yBounds1;
771 int16_t xBounds2;
772 int16_t yBounds2;
773 uint8_t mix;
774 uint32_t rgb;
775} VRDPORDERLINE;
776
777typedef struct _VRDPORDERPOLYLINE
778{
779 VRDPORDERPOINT ptStart;
780 uint8_t mix;
781 uint32_t rgb;
782 VRDPORDERPOLYPOINTS points;
783} VRDPORDERPOLYLINE;
784
785typedef struct _VRDPORDERELLIPSE
786{
787 VRDPORDERPOINT pt1;
788 VRDPORDERPOINT pt2;
789 uint8_t mix;
790 uint8_t fillMode;
791 uint32_t rgb;
792} VRDPORDERELLIPSE;
793
794typedef struct _VRDPORDERSAVESCREEN
795{
796 VRDPORDERPOINT pt1;
797 VRDPORDERPOINT pt2;
798 uint8_t ident;
799 uint8_t restore;
800} VRDPORDERSAVESCREEN;
801#endif /* VRDP_NO_COM */
802#pragma pack()
803
804/* The VBVA ring buffer is suitable for transferring large (< 2gb) amount of data.
805 * For example big bitmaps which do not fit to the buffer.
806 *
807 * Guest starts writing to the buffer by initializing a record entry in the
808 * aRecords queue. VBVA_F_RECORD_PARTIAL indicates that the record is being
809 * written. As data is written to the ring buffer, the guest increases off32End
810 * for the record.
811 *
812 * The host reads the aRecords on flushes and processes all completed records.
813 * When host encounters situation when only a partial record presents and
814 * cbRecord & ~VBVA_F_RECORD_PARTIAL >= VBVA_RING_BUFFER_SIZE - VBVA_RING_BUFFER_THRESHOLD,
815 * the host fetched all record data and updates off32Head. After that on each flush
816 * the host continues fetching the data until the record is completed.
817 *
818 */
819
820#define VBVA_RING_BUFFER_SIZE (_4M - _1K)
821#define VBVA_RING_BUFFER_THRESHOLD (4 * _1K)
822
823#define VBVA_MAX_RECORDS (64)
824
825#define VBVA_F_MODE_ENABLED (0x00000001)
826#define VBVA_F_MODE_VRDP (0x00000002)
827#define VBVA_F_MODE_VRDP_RESET (0x00000004)
828#define VBVA_F_MODE_VRDP_ORDER_MASK (0x00000008)
829
830#define VBVA_F_RECORD_PARTIAL (0x80000000)
831
832#pragma pack(1)
833typedef struct _VBVARECORD
834{
835 /** The length of the record. Changed by guest. */
836 uint32_t cbRecord;
837} VBVARECORD;
838
839typedef struct _VBVAMEMORY
840{
841 /** VBVA_F_MODE_* */
842 uint32_t fu32ModeFlags;
843
844 /** The offset where the data start in the buffer. */
845 uint32_t off32Data;
846 /** The offset where next data must be placed in the buffer. */
847 uint32_t off32Free;
848
849 /** The ring buffer for data. */
850 uint8_t au8RingBuffer[VBVA_RING_BUFFER_SIZE];
851
852 /** The queue of record descriptions. */
853 VBVARECORD aRecords[VBVA_MAX_RECORDS];
854 uint32_t indexRecordFirst;
855 uint32_t indexRecordFree;
856
857 /* RDP orders supported by the client. The guest reports only them
858 * and falls back to DIRTY rects for not supported ones.
859 *
860 * (1 << VBVA_VRDP_*)
861 */
862 uint32_t fu32SupportedOrders;
863
864} VBVAMEMORY;
865#pragma pack()
866
867/** @} */
868
869
870/**
871 * VMMDev RAM
872 * @{
873 */
874
875#pragma pack(1)
876/** Layout of VMMDEV RAM region that contains information for guest */
877typedef struct
878{
879 /** size */
880 uint32_t u32Size;
881 /** version */
882 uint32_t u32Version;
883
884 union {
885 /** Flag telling that VMMDev set the IRQ and acknowlegment is required */
886 struct {
887 bool fHaveEvents;
888 } V1_04;
889
890 struct {
891 /** Pending events flags, set by host. */
892 uint32_t u32HostEvents;
893 /** Mask of events the guest wants to see, set by guest. */
894 uint32_t u32GuestEventMask;
895 } V1_03;
896 } V;
897
898 VBVAMEMORY vbvaMemory;
899
900} VMMDevMemory;
901#pragma pack()
902
903/** Version of VMMDevMemory structure. */
904#define VMMDEV_MEMORY_VERSION (1)
905
906/** @} */
907
908
909/**
910 * VMMDev events.
911 * @{
912 */
913
914/** Host mouse capabilities has been changed. */
915#define VMMDEV_EVENT_MOUSE_CAPABILITIES_CHANGED BIT(0)
916/** HGCM event. */
917#define VMMDEV_EVENT_HGCM BIT(1)
918/** A display change request has been issued. */
919#define VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST BIT(2)
920/** Credentials are available for judgement. */
921#define VMMDEV_EVENT_JUDGE_CREDENTIALS BIT(3)
922/** The guest has been restored. */
923#define VMMDEV_EVENT_RESTORED BIT(4)
924/** Seamless mode state changed */
925#define VMMDEV_EVENT_SEAMLESS_MODE_CHANGE_REQUEST BIT(5)
926
927
928/** @} */
929
930
931/**
932 * VBoxGuest IOCTL codes and structures.
933 *
934 * The range 0..15 is for basic driver communication.
935 * The range 16..31 is for HGCM communcation.
936 * The range 32..47 is reserved for future use.
937 * The range 48..63 is for OS specific communcation.
938 * The 7th bit is reserved for future hacks.
939 * The 8th bit is reserved for distinguishing between 32-bit and 64-bit
940 * processes in future 64-bit guest additions.
941 *
942 * While windows IOCTL function number has to start at 2048 and stop at 4096 there
943 * never was any need to do this for everyone. A simple ((Function) | 0x800) would
944 * have sufficed. On Linux we're now intruding upon the type field. Fortunately
945 * this hasn't caused any trouble because the FILE_DEVICE_UNKNOWN value was set
946 * to 0x22 (if it were 0x2C it would not have worked soo smoothly). The situation
947 * would've been the same for *BSD and Darwin since they seems to share common
948 * _IOC() heritage.
949 *
950 * However, on good old OS/2 we only have 8-bit handy for the function number. The
951 * result from using the old IOCTL function numbers her would've been overlapping
952 * between the two ranges.
953 *
954 * To fix this problem and get rid of all the unnecessary windowsy crap that I
955 * bet was copied from my SUPDRVIOC.h once upon a time (although the concept of
956 * prefixing macros with the purpose of avoid clashes with system stuff and
957 * to indicate exactly how owns them seems to have been lost somewhere along
958 * the way), I've introduced a VBOXGUEST_IOCTL_CODE for defining generic IN/OUT
959 * IOCtls on new ports of the additions.
960 *
961 * @remark When creating new IOCtl interfaces keep in mind that not all OSes supports
962 * reporting back the output size. (This got messed up a little bit in VBoxDrv.)
963 *
964 * OS/2 restricts the in/out data size to 64KB, while Linux, BSD and Darwin are
965 * limited by a 14 bits size field (16KB). So, special considerations need to
966 * be taken if more input/output needs to be passed around.
967 *
968 * When passing variable sized input/output special care need to be taken on
969 * Unix platforms (if we're going to play by the rules) since the size is
970 * passed as part of the IOCtl code there. IIRC Darwin will use the size to
971 * perform locking and in/out copying, I don't quite know about linux and *BSD.
972 *
973 * @remark If adding interfaces that only has input or only has output, some new macros
974 * needs to be created so the most efficient IOCtl data buffering method can be
975 * used.
976 *
977 * @{
978 */
979#ifdef RT_ARCH_AMD64
980# define VBOXGUEST_IOCTL_FLAG 128
981#elif defined(RT_ARCH_X86)
982# define VBOXGUEST_IOCTL_FLAG 0
983#else
984# error "dunno which arch this is!"
985#endif
986
987#if defined(RT_OS_WINDOWS)
988# define IOCTL_CODE(DeviceType, Function, Method, Access, DataSize_ignored) \
989 ( ((DeviceType) << 16) | ((Access) << 14) | ((Function) << 2) | (Method))
990
991#elif defined(RT_OS_OS2)
992# define VBOXGUEST_IOCTL_CATEGORY 0xc2
993# define VBOXGUEST_IOCTL_CODE(Function, Size) ((unsigned char)(Function))
994# define VBOXGUEST_IOCTL_CATEGORY_FAST 0xc3 /**< Also defined in VBoxGuestA-os2.asm. */
995# define VBOXGUEST_IOCTL_CODE_FAST(Function) ((unsigned char)(Function))
996
997#elif defined(RT_OS_LINUX)
998# define IOCTL_CODE(DeviceType, Function, Method_ignored, Access_ignored, DataSize) \
999 ( (3 << 30) | ((DeviceType) << 8) | (Function) | ((DataSize) << 16) )
1000# define METHOD_BUFFERED 0
1001# define FILE_WRITE_ACCESS 0x0002
1002# define FILE_DEVICE_UNKNOWN 0x00000022
1003
1004#elif 0 /* BSD style - needs some adjusting _IORW takes a type and not a size. */
1005# include <sys/ioccom.h>
1006# define VBOXGUEST_IOCTL_CODE(Function, Size) _IORW('V', (Function) | VBOXGUEST_IOCTL_FLAG, (Size))
1007# define VBOXGUEST_IOCTL_CODE_FAST(Function) _IO( 'V', (Function) | VBOXGUEST_IOCTL_FLAG)
1008
1009#else
1010/* PORTME */
1011#endif
1012
1013/** IOCTL to VBoxGuest to query the VMMDev IO port region start. */
1014#ifdef VBOXGUEST_IOCTL_CODE
1015# define VBOXGUEST_IOCTL_GETVMMDEVPORT VBOXGUEST_IOCTL_CODE(1, sizeof(VBoxGuestPortInfo))
1016# define IOCTL_VBOXGUEST_GETVMMDEVPORT VBOXGUEST_IOCTL_GETVMMDEVPORT
1017#else
1018# define IOCTL_VBOXGUEST_GETVMMDEVPORT IOCTL_CODE(FILE_DEVICE_UNKNOWN, 2048, METHOD_BUFFERED, FILE_WRITE_ACCESS, sizeof(VBoxGuestPortInfo))
1019#endif
1020
1021#pragma pack(4)
1022typedef struct _VBoxGuestPortInfo
1023{
1024 uint32_t portAddress;
1025 VMMDevMemory *pVMMDevMemory;
1026} VBoxGuestPortInfo;
1027
1028/** IOCTL to VBoxGuest to wait for a VMMDev host notification */
1029#ifdef VBOXGUEST_IOCTL_CODE
1030# define VBOXGUEST_IOCTL_WAITEVENT VBOXGUEST_IOCTL_CODE(2, sizeof(VBoxGuestWaitEventInfo))
1031# define IOCTL_VBOXGUEST_WAITEVENT VBOXGUEST_IOCTL_WAITEVENT
1032#else
1033# define IOCTL_VBOXGUEST_WAITEVENT IOCTL_CODE(FILE_DEVICE_UNKNOWN, 2049, METHOD_BUFFERED, FILE_WRITE_ACCESS, sizeof(VBoxGuestWaitEventInfo))
1034#endif
1035
1036/**
1037 * Result codes for VBoxGuestWaitEventInfo::u32Result
1038 * @{
1039 */
1040/** Successful completion, an event occured. */
1041#define VBOXGUEST_WAITEVENT_OK (0)
1042/** Successful completion, timed out. */
1043#define VBOXGUEST_WAITEVENT_TIMEOUT (1)
1044/** Wait was interrupted. */
1045#define VBOXGUEST_WAITEVENT_INTERRUPTED (2)
1046/** An error occured while processing the request. */
1047#define VBOXGUEST_WAITEVENT_ERROR (3)
1048/** @} */
1049
1050/** Input and output buffers layout of the IOCTL_VBOXGUEST_WAITEVENT */
1051typedef struct _VBoxGuestWaitEventInfo
1052{
1053 /** timeout in milliseconds */
1054 uint32_t u32TimeoutIn;
1055 /** events to wait for */
1056 uint32_t u32EventMaskIn;
1057 /** result code */
1058 uint32_t u32Result;
1059 /** events occured */
1060 uint32_t u32EventFlagsOut;
1061} VBoxGuestWaitEventInfo;
1062
1063/** IOCTL to VBoxGuest to perform a VMM request
1064 * @remark The data buffer for this IOCtl has an variable size, keep this in mind
1065 * on systems where this matters. */
1066#ifdef VBOXGUEST_IOCTL_CODE
1067# define VBOXGUEST_IOCTL_VMMREQUEST(Size) VBOXGUEST_IOCTL_CODE(3, sizeof(VMMDevRequestHeader))
1068# define IOCTL_VBOXGUEST_VMMREQUEST VBOXGUEST_IOCTL_VMMREQUEST(sizeof(VMMDevRequestHeader))
1069#else
1070# define IOCTL_VBOXGUEST_VMMREQUEST IOCTL_CODE(FILE_DEVICE_UNKNOWN, 2050, METHOD_BUFFERED, FILE_WRITE_ACCESS, sizeof(VMMDevRequestHeader))
1071#endif
1072
1073/** Input and output buffer layout of the IOCTL_VBOXGUEST_CTL_FILTER_MASK. */
1074typedef struct _VBoxGuestFilterMaskInfo
1075{
1076 uint32_t u32OrMask;
1077 uint32_t u32NotMask;
1078} VBoxGuestFilterMaskInfo;
1079#pragma pack()
1080
1081/** IOCTL to VBoxGuest to control event filter mask */
1082#ifdef VBOXGUEST_IOCTL_CODE
1083# define VBOXGUEST_IOCTL_CTL_FILTER_MASK VBOXGUEST_IOCTL_CODE(4, sizeof(VBoxGuestFilterMaskInfo))
1084# define IOCTL_VBOXGUEST_CTL_FILTER_MASK VBOXGUEST_IOCTL_CTL_FILTER_MASK
1085#else
1086# define IOCTL_VBOXGUEST_CTL_FILTER_MASK IOCTL_CODE(FILE_DEVICE_UNKNOWN, 2051, METHOD_BUFFERED, FILE_WRITE_ACCESS, sizeof (VBoxGuestFilterMaskInfo))
1087#endif
1088
1089#ifdef VBOX_HGCM
1090/* These structures are shared between the driver and other binaries,
1091 * therefore packing must be defined explicitely.
1092 */
1093#pragma pack(1)
1094typedef struct _VBoxGuestHGCMConnectInfo
1095{
1096 uint32_t result; /**< OUT */
1097 HGCMServiceLocation Loc; /**< IN */
1098 uint32_t u32ClientID; /**< OUT */
1099} VBoxGuestHGCMConnectInfo;
1100
1101typedef struct _VBoxGuestHGCMDisconnectInfo
1102{
1103 uint32_t result; /**< OUT */
1104 uint32_t u32ClientID; /**< IN */
1105} VBoxGuestHGCMDisconnectInfo;
1106
1107typedef struct _VBoxGuestHGCMCallInfo
1108{
1109 uint32_t result; /**< OUT Host HGCM return code.*/
1110 uint32_t u32ClientID; /**< IN The id of the caller. */
1111 uint32_t u32Function; /**< IN Function number. */
1112 uint32_t cParms; /**< IN How many parms. */
1113 /* Parameters follow in form HGCMFunctionParameter aParms[cParms] */
1114} VBoxGuestHGCMCallInfo;
1115#pragma pack()
1116
1117#ifdef VBOXGUEST_IOCTL_CODE
1118# define VBOXGUEST_IOCTL_HGCM_CONNECT VBOXGUEST_IOCTL_CODE(16, sizeof(VBoxGuestHGCMConnectInfo))
1119# define IOCTL_VBOXGUEST_HGCM_CONNECT VBOXGUEST_IOCTL_HGCM_CONNECT
1120# define VBOXGUEST_IOCTL_HGCM_DISCONNECT VBOXGUEST_IOCTL_CODE(17, sizeof(VBoxGuestHGCMDisconnectInfo))
1121# define IOCTL_VBOXGUEST_HGCM_DISCONNECT VBOXGUEST_IOCTL_HGCM_DISCONNECT
1122# define VBOXGUEST_IOCTL_HGCM_CALL(Size) VBOXGUEST_IOCTL_CODE(18, (Size))
1123# define IOCTL_VBOXGUEST_HGCM_CALL VBOXGUEST_IOCTL_HGCM_CALL(sizeof(VBoxGuestHGCMCallInfo))
1124# define VBOXGUEST_IOCTL_CLIPBOARD_CONNECT VBOXGUEST_IOCTL_CODE(19, sizeof(uint32_t))
1125# define IOCTL_VBOXGUEST_CLIPBOARD_CONNECT VBOXGUEST_IOCTL_CLIPBOARD_CONNECT
1126#else
1127# define IOCTL_VBOXGUEST_HGCM_CONNECT IOCTL_CODE(FILE_DEVICE_UNKNOWN, 3072, METHOD_BUFFERED, FILE_WRITE_ACCESS, sizeof(VBoxGuestHGCMConnectInfo))
1128# define IOCTL_VBOXGUEST_HGCM_DISCONNECT IOCTL_CODE(FILE_DEVICE_UNKNOWN, 3073, METHOD_BUFFERED, FILE_WRITE_ACCESS, sizeof(VBoxGuestHGCMDisconnectInfo))
1129# define IOCTL_VBOXGUEST_HGCM_CALL IOCTL_CODE(FILE_DEVICE_UNKNOWN, 3074, METHOD_BUFFERED, FILE_WRITE_ACCESS, sizeof(VBoxGuestHGCMCallInfo))
1130# define IOCTL_VBOXGUEST_CLIPBOARD_CONNECT IOCTL_CODE(FILE_DEVICE_UNKNOWN, 3075, METHOD_BUFFERED, FILE_WRITE_ACCESS, sizeof(uint32_t))
1131#endif
1132
1133#define VBOXGUEST_HGCM_CALL_PARMS(a) ((HGCMFunctionParameter *)((uint8_t *)(a) + sizeof (VBoxGuestHGCMCallInfo)))
1134
1135#endif /* VBOX_HGCM */
1136
1137/*
1138 * Credentials request flags and structure
1139 */
1140
1141#define VMMDEV_CREDENTIALS_STRLEN 128
1142
1143/** query from host whether credentials are present */
1144#define VMMDEV_CREDENTIALS_QUERYPRESENCE BIT(1)
1145/** read credentials from host (can be combined with clear) */
1146#define VMMDEV_CREDENTIALS_READ BIT(2)
1147/** clear credentials on host (can be combined with read) */
1148#define VMMDEV_CREDENTIALS_CLEAR BIT(3)
1149/** read credentials for judgement in the guest */
1150#define VMMDEV_CREDENTIALS_READJUDGE BIT(8)
1151/** clear credentials for judegement on the host */
1152#define VMMDEV_CREDENTIALS_CLEARJUDGE BIT(9)
1153/** report credentials acceptance by guest */
1154#define VMMDEV_CREDENTIALS_JUDGE_OK BIT(10)
1155/** report credentials denial by guest */
1156#define VMMDEV_CREDENTIALS_JUDGE_DENY BIT(11)
1157/** report that no judgement could be made by guest */
1158#define VMMDEV_CREDENTIALS_JUDGE_NOJUDGEMENT BIT(12)
1159
1160/** flag telling the guest that credentials are present */
1161#define VMMDEV_CREDENTIALS_PRESENT BIT(16)
1162/** flag telling guest that local logons should be prohibited */
1163#define VMMDEV_CREDENTIALS_NOLOCALLOGON BIT(17)
1164
1165/** credentials request structure */
1166#pragma pack(4)
1167typedef struct _VMMDevCredentials
1168{
1169 /* request header */
1170 VMMDevRequestHeader header;
1171 /* request flags (in/out) */
1172 uint32_t u32Flags;
1173 /* user name (UTF-8) (out) */
1174 char szUserName[VMMDEV_CREDENTIALS_STRLEN];
1175 /* password (UTF-8) (out) */
1176 char szPassword[VMMDEV_CREDENTIALS_STRLEN];
1177 /* domain name (UTF-8) (out) */
1178 char szDomain[VMMDEV_CREDENTIALS_STRLEN];
1179} VMMDevCredentials;
1180#pragma pack()
1181
1182/** inline helper to determine the request size for the given operation */
1183DECLINLINE(size_t) vmmdevGetRequestSize(VMMDevRequestType requestType)
1184{
1185 switch (requestType)
1186 {
1187 case VMMDevReq_GetMouseStatus:
1188 case VMMDevReq_SetMouseStatus:
1189 return sizeof(VMMDevReqMouseStatus);
1190 case VMMDevReq_SetPointerShape:
1191 return sizeof(VMMDevReqMousePointer);
1192 case VMMDevReq_GetHostVersion:
1193 return sizeof(VMMDevReqHostVersion);
1194 case VMMDevReq_Idle:
1195 return sizeof(VMMDevReqIdle);
1196 case VMMDevReq_GetHostTime:
1197 return sizeof(VMMDevReqHostTime);
1198 case VMMDevReq_GetHypervisorInfo:
1199 case VMMDevReq_SetHypervisorInfo:
1200 return sizeof(VMMDevReqHypervisorInfo);
1201 case VMMDevReq_SetPowerStatus:
1202 return sizeof(VMMDevPowerStateRequest);
1203 case VMMDevReq_AcknowledgeEvents:
1204 return sizeof(VMMDevEvents);
1205 case VMMDevReq_ReportGuestInfo:
1206 return sizeof(VMMDevReportGuestInfo);
1207 case VMMDevReq_GetDisplayChangeRequest:
1208 return sizeof(VMMDevDisplayChangeRequest);
1209 case VMMDevReq_GetDisplayChangeRequest2:
1210 return sizeof(VMMDevDisplayChangeRequest2);
1211 case VMMDevReq_VideoModeSupported:
1212 return sizeof(VMMDevVideoModeSupportedRequest);
1213 case VMMDevReq_GetHeightReduction:
1214 return sizeof(VMMDevGetHeightReductionRequest);
1215 case VMMDevReq_ReportGuestCapabilities:
1216 return sizeof(VMMDevReqGuestCapabilities);
1217#ifdef VBOX_HGCM
1218 case VMMDevReq_HGCMConnect:
1219 return sizeof(VMMDevHGCMConnect);
1220 case VMMDevReq_HGCMDisconnect:
1221 return sizeof(VMMDevHGCMDisconnect);
1222 case VMMDevReq_HGCMCall:
1223 return sizeof(VMMDevHGCMCall);
1224#endif
1225 case VMMDevReq_VideoAccelEnable:
1226 return sizeof(VMMDevVideoAccelEnable);
1227 case VMMDevReq_VideoAccelFlush:
1228 return sizeof(VMMDevVideoAccelFlush);
1229 case VMMDevReq_VideoSetVisibleRegion:
1230 return sizeof(VMMDevVideoSetVisibleRegion);
1231 case VMMDevReq_GetSeamlessChangeRequest:
1232 return sizeof(VMMDevSeamlessChangeRequest);
1233 case VMMDevReq_QueryCredentials:
1234 return sizeof(VMMDevCredentials);
1235 case VMMDevReq_LogString:
1236 return sizeof(VMMDevReqLogString);
1237 default:
1238 return 0;
1239 }
1240}
1241
1242/**
1243 * Initializes a request structure.
1244 *
1245 */
1246DECLINLINE(int) vmmdevInitRequest(VMMDevRequestHeader *req, VMMDevRequestType type)
1247{
1248 uint32_t requestSize;
1249 if (!req)
1250 return VERR_INVALID_PARAMETER;
1251 requestSize = (uint32_t)vmmdevGetRequestSize(type);
1252 if (!requestSize)
1253 return VERR_INVALID_PARAMETER;
1254 req->size = requestSize;
1255 req->version = VMMDEV_REQUEST_HEADER_VERSION;
1256 req->requestType = type;
1257 req->rc = VERR_GENERAL_FAILURE;
1258 req->reserved1 = 0;
1259 req->reserved2 = 0;
1260 return VINF_SUCCESS;
1261}
1262
1263
1264#ifdef RT_OS_OS2
1265
1266/**
1267 * The data buffer layout for the IDC entry point (AttachDD).
1268 *
1269 * @remark This is defined in multiple 16-bit headers / sources.
1270 * Some places it's called VBGOS2IDC to short things a bit.
1271 */
1272typedef struct VBOXGUESTOS2IDCCONNECT
1273{
1274 /** VMMDEV_VERSION. */
1275 uint32_t u32Version;
1276 /** Opaque session handle. */
1277 uint32_t u32Session;
1278
1279 /**
1280 * The 32-bit service entry point.
1281 *
1282 * @returns VBox status code.
1283 * @param u32Session The above session handle.
1284 * @param iFunction The requested function.
1285 * @param pvData The input/output data buffer. The caller ensures that this
1286 * cannot be swapped out, or that it's acceptable to take a
1287 * page in fault in the current context. If the request doesn't
1288 * take input or produces output, apssing NULL is okay.
1289 * @param cbData The size of the data buffer.
1290 * @param pcbDataReturned Where to store the amount of data that's returned.
1291 * This can be NULL if pvData is NULL.
1292 */
1293 DECLCALLBACKMEMBER(int, pfnServiceEP)(uint32_t u32Session, unsigned iFunction, void *pvData, size_t cbData, size_t *pcbDataReturned);
1294
1295 /** The 16-bit service entry point for C code (cdecl).
1296 *
1297 * It's the same as the 32-bit entry point, but the types has
1298 * changed to 16-bit equivalents.
1299 *
1300 * @code
1301 * int far cdecl
1302 * VBoxGuestOs2IDCService16(uint32_t u32Session, uint16_t iFunction,
1303 * void far *fpvData, uint16_t cbData, uint16_t far *pcbDataReturned);
1304 * @endcode
1305 */
1306 RTFAR16 fpfnServiceEP;
1307
1308 /** The 16-bit service entry point for Assembly code (register).
1309 *
1310 * This is just a wrapper around fpfnServiceEP to simplify calls
1311 * from 16-bit assembly code.
1312 *
1313 * @returns (e)ax: VBox status code; cx: The amount of data returned.
1314 *
1315 * @param u32Session eax - The above session handle.
1316 * @param iFunction dl - The requested function.
1317 * @param pvData es:bx - The input/output data buffer.
1318 * @param cbData cx - The size of the data buffer.
1319 */
1320 RTFAR16 fpfnServiceAsmEP;
1321} VBOXGUESTOS2IDCCONNECT;
1322/** Pointer to VBOXGUESTOS2IDCCONNECT buffer. */
1323typedef VBOXGUESTOS2IDCCONNECT *PVBOXGUESTOS2IDCCONNECT;
1324
1325/** OS/2 specific: IDC client disconnect request.
1326 *
1327 * This takes no input and it doesn't return anything. Obviously this
1328 * is only recognized if it arrives thru the IDC service EP.
1329 */
1330#define VBOXGUEST_IOCTL_OS2_IDC_DISCONNECT VBOXGUEST_IOCTL_CODE(48, sizeof(uint32_t))
1331
1332#endif /* RT_OS_OS2 */
1333
1334/** @} */
1335
1336
1337#ifdef IN_RING3
1338
1339/** @def VBGLR3DECL
1340 * Ring 3 VBGL declaration.
1341 * @param type The return type of the function declaration.
1342 */
1343#define VBGLR3DECL(type) type VBOXCALL
1344
1345__BEGIN_DECLS
1346VBGLR3DECL(int) VbglR3Init(void);
1347VBGLR3DECL(void) VbglR3Term(void);
1348VBGLR3DECL(int) VbglR3GRPerform(VMMDevRequestHeader *pReq);
1349# ifdef __iprt_time_h__
1350VBGLR3DECL(int) VbglR3GetHostTime(PRTTIMESPEC pTime);
1351# endif
1352
1353VBGLR3DECL(int) VbglR3ClipboardConnect(uint32_t *pu32ClientId);
1354VBGLR3DECL(int) VbglR3ClipboardDisconnect(uint32_t u32ClientId);
1355VBGLR3DECL(int) VbglR3ClipboardGetHostMsg(uint32_t u32ClientId, uint32_t *pMsg, uint32_t *pfFormats);
1356VBGLR3DECL(int) VbglR3ClipboardReadData(uint32_t u32ClientId, uint32_t fFormat, void *pv, uint32_t cb, uint32_t *pcb);
1357VBGLR3DECL(int) VbglR3ClipboardReportFormats(uint32_t u32ClientId, uint32_t fFormats);
1358VBGLR3DECL(int) VbglR3ClipboardWriteData(uint32_t u32ClientId, uint32_t fFormat, void *pv, uint32_t cb);
1359
1360__END_DECLS
1361
1362#endif /* IN_RING3 */
1363
1364#endif
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette