1 | /** @file
|
---|
2 | *
|
---|
3 | * VBox Host Guest Shared Memory Interface (HGSMI).
|
---|
4 | * Host/Guest shared part: types and defines.
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2006-2014 Oracle Corporation
|
---|
9 | *
|
---|
10 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | * available from http://www.virtualbox.org. This file is free software;
|
---|
12 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | * General Public License (GPL) as published by the Free Software
|
---|
14 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | *
|
---|
18 | * The contents of this file may alternatively be used under the terms
|
---|
19 | * of the Common Development and Distribution License Version 1.0
|
---|
20 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
21 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
22 | * CDDL are applicable instead of those of the GPL.
|
---|
23 | *
|
---|
24 | * You may elect to license modified versions of this file under the
|
---|
25 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
26 | */
|
---|
27 |
|
---|
28 |
|
---|
29 | #ifndef ___VBox_HGSMI_HGSMIDefs_h
|
---|
30 | #define ___VBox_HGSMI_HGSMIDefs_h
|
---|
31 |
|
---|
32 | #include <iprt/assert.h>
|
---|
33 | #include <iprt/types.h>
|
---|
34 |
|
---|
35 | /* HGSMI uses 32 bit offsets and sizes. */
|
---|
36 | typedef uint32_t HGSMISIZE;
|
---|
37 | typedef uint32_t HGSMIOFFSET;
|
---|
38 |
|
---|
39 | #define HGSMIOFFSET_VOID ((HGSMIOFFSET)~0)
|
---|
40 |
|
---|
41 | /* Describes a shared memory area buffer.
|
---|
42 | * Used for calculations with offsets and for buffers verification.
|
---|
43 | */
|
---|
44 | typedef struct HGSMIAREA
|
---|
45 | {
|
---|
46 | uint8_t *pu8Base; /* The starting address of the area. Corresponds to offset 'offBase'. */
|
---|
47 | HGSMIOFFSET offBase; /* The starting offset of the area. */
|
---|
48 | HGSMIOFFSET offLast; /* The last valid offset:
|
---|
49 | * offBase + cbArea - 1 - (sizeof(header) + sizeof(tail)).
|
---|
50 | */
|
---|
51 | HGSMISIZE cbArea; /* Size of the area. */
|
---|
52 | } HGSMIAREA;
|
---|
53 |
|
---|
54 |
|
---|
55 | /* The buffer description flags. */
|
---|
56 | #define HGSMI_BUFFER_HEADER_F_SEQ_MASK 0x03 /* Buffer sequence type mask. */
|
---|
57 | #define HGSMI_BUFFER_HEADER_F_SEQ_SINGLE 0x00 /* Single buffer, not a part of a sequence. */
|
---|
58 | #define HGSMI_BUFFER_HEADER_F_SEQ_START 0x01 /* The first buffer in a sequence. */
|
---|
59 | #define HGSMI_BUFFER_HEADER_F_SEQ_CONTINUE 0x02 /* A middle buffer in a sequence. */
|
---|
60 | #define HGSMI_BUFFER_HEADER_F_SEQ_END 0x03 /* The last buffer in a sequence. */
|
---|
61 |
|
---|
62 |
|
---|
63 | #pragma pack(1)
|
---|
64 | /* 16 bytes buffer header. */
|
---|
65 | typedef struct HGSMIBUFFERHEADER
|
---|
66 | {
|
---|
67 | uint32_t u32DataSize; /* Size of data that follows the header. */
|
---|
68 |
|
---|
69 | uint8_t u8Flags; /* The buffer description: HGSMI_BUFFER_HEADER_F_* */
|
---|
70 |
|
---|
71 | uint8_t u8Channel; /* The channel the data must be routed to. */
|
---|
72 | uint16_t u16ChannelInfo; /* Opaque to the HGSMI, used by the channel. */
|
---|
73 |
|
---|
74 | union {
|
---|
75 | uint8_t au8Union[8]; /* Opaque placeholder to make the union 8 bytes. */
|
---|
76 |
|
---|
77 | struct
|
---|
78 | { /* HGSMI_BUFFER_HEADER_F_SEQ_SINGLE */
|
---|
79 | uint32_t u32Reserved1; /* A reserved field, initialize to 0. */
|
---|
80 | uint32_t u32Reserved2; /* A reserved field, initialize to 0. */
|
---|
81 | } Buffer;
|
---|
82 |
|
---|
83 | struct
|
---|
84 | { /* HGSMI_BUFFER_HEADER_F_SEQ_START */
|
---|
85 | uint32_t u32SequenceNumber; /* The sequence number, the same for all buffers in the sequence. */
|
---|
86 | uint32_t u32SequenceSize; /* The total size of the sequence. */
|
---|
87 | } SequenceStart;
|
---|
88 |
|
---|
89 | struct
|
---|
90 | { /* HGSMI_BUFFER_HEADER_F_SEQ_CONTINUE and HGSMI_BUFFER_HEADER_F_SEQ_END */
|
---|
91 | uint32_t u32SequenceNumber; /* The sequence number, the same for all buffers in the sequence. */
|
---|
92 | uint32_t u32SequenceOffset; /* Data offset in the entire sequence. */
|
---|
93 | } SequenceContinue;
|
---|
94 | } u;
|
---|
95 | } HGSMIBUFFERHEADER;
|
---|
96 |
|
---|
97 | /* 8 bytes buffer tail. */
|
---|
98 | typedef struct HGSMIBUFFERTAIL
|
---|
99 | {
|
---|
100 | uint32_t u32Reserved; /* Reserved, must be initialized to 0. */
|
---|
101 | uint32_t u32Checksum; /* Verifyer for the buffer header and offset and for first 4 bytes of the tail. */
|
---|
102 | } HGSMIBUFFERTAIL;
|
---|
103 | #pragma pack()
|
---|
104 |
|
---|
105 | AssertCompileSize(HGSMIBUFFERHEADER, 16);
|
---|
106 | AssertCompileSize(HGSMIBUFFERTAIL, 8);
|
---|
107 |
|
---|
108 | /* The size of the array of channels. Array indexes are uint8_t. Note: the value must not be changed. */
|
---|
109 | #define HGSMI_NUMBER_OF_CHANNELS 0x100
|
---|
110 |
|
---|
111 | typedef struct HGSMIENV
|
---|
112 | {
|
---|
113 | /* Environment context pointer. */
|
---|
114 | void *pvEnv;
|
---|
115 |
|
---|
116 | /* Allocate system memory. */
|
---|
117 | DECLCALLBACKMEMBER(void *, pfnAlloc)(void *pvEnv, HGSMISIZE cb);
|
---|
118 |
|
---|
119 | /* Free system memory. */
|
---|
120 | DECLCALLBACKMEMBER(void, pfnFree)(void *pvEnv, void *pv);
|
---|
121 | } HGSMIENV;
|
---|
122 |
|
---|
123 | #endif /* !___VBox_HGSMI_HGSMIDefs_h */
|
---|