1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
|
/* $Id: HGSMICommon.cpp $ */
/** @file
* VBox Host Guest Shared Memory Interface (HGSMI) - Functions common to both host and guest.
*/
/*
* Copyright (C) 2006-2012 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
#define LOG_DISABLED /* Maybe we can enabled it all the time now? */
#define LOG_GROUP LOG_GROUP_HGSMI
#include <iprt/heap.h>
#include <iprt/string.h>
#include <VBox/HGSMI/HGSMI.h>
#include <VBox/log.h>
/* Channel flags. */
#define HGSMI_CH_F_REGISTERED 0x01
/* Assertions for situations which could happen and normally must be processed properly
* but must be investigated during development: guest misbehaving, etc.
*/
#ifdef HGSMI_STRICT
#define HGSMI_STRICT_ASSERT_FAILED() AssertFailed()
#define HGSMI_STRICT_ASSERT(expr) Assert(expr)
#else
#define HGSMI_STRICT_ASSERT_FAILED() do {} while (0)
#define HGSMI_STRICT_ASSERT(expr) do {} while (0)
#endif /* !HGSMI_STRICT */
/* One-at-a-Time Hash from
* http://www.burtleburtle.net/bob/hash/doobs.html
*
* ub4 one_at_a_time(char *key, ub4 len)
* {
* ub4 hash, i;
* for (hash=0, i=0; i<len; ++i)
* {
* hash += key[i];
* hash += (hash << 10);
* hash ^= (hash >> 6);
* }
* hash += (hash << 3);
* hash ^= (hash >> 11);
* hash += (hash << 15);
* return hash;
* }
*/
static uint32_t hgsmiHashBegin (void)
{
return 0;
}
static uint32_t hgsmiHashProcess (uint32_t hash,
const void *pvData,
size_t cbData)
{
const uint8_t *pu8Data = (const uint8_t *)pvData;
while (cbData--)
{
hash += *pu8Data++;
hash += (hash << 10);
hash ^= (hash >> 6);
}
return hash;
}
static uint32_t hgsmiHashEnd (uint32_t hash)
{
hash += (hash << 3);
hash ^= (hash >> 11);
hash += (hash << 15);
return hash;
}
uint32_t HGSMIChecksum (HGSMIOFFSET offBuffer,
const HGSMIBUFFERHEADER *pHeader,
const HGSMIBUFFERTAIL *pTail)
{
uint32_t u32Checksum = hgsmiHashBegin ();
u32Checksum = hgsmiHashProcess (u32Checksum, &offBuffer, sizeof (offBuffer));
u32Checksum = hgsmiHashProcess (u32Checksum, pHeader, sizeof (HGSMIBUFFERHEADER));
u32Checksum = hgsmiHashProcess (u32Checksum, pTail, RT_OFFSETOF(HGSMIBUFFERTAIL, u32Checksum));
return hgsmiHashEnd (u32Checksum);
}
static HGSMIOFFSET hgsmiBufferInitializeSingle (const HGSMIAREA *pArea,
HGSMIBUFFERHEADER *pHeader,
uint32_t u32DataSize,
uint8_t u8Channel,
uint16_t u16ChannelInfo)
{
if ( !pArea
|| !pHeader)
{
return HGSMIOFFSET_VOID;
}
/* Buffer must be within the area:
* * header data size do not exceed the maximum data size;
* * buffer address is greater than the area base address;
* * buffer address is lower than the maximum allowed for the given data size.
*/
HGSMISIZE cbMaximumDataSize = pArea->offLast - pArea->offBase;
if ( u32DataSize > cbMaximumDataSize
|| (uint8_t *)pHeader < pArea->pu8Base
|| (uint8_t *)pHeader > pArea->pu8Base + cbMaximumDataSize - u32DataSize)
{
return HGSMIOFFSET_VOID;
}
HGSMIOFFSET offBuffer = HGSMIPointerToOffset (pArea, pHeader);
pHeader->u8Flags = HGSMI_BUFFER_HEADER_F_SEQ_SINGLE;
pHeader->u32DataSize = u32DataSize;
pHeader->u8Channel = u8Channel;
pHeader->u16ChannelInfo = u16ChannelInfo;
memset (pHeader->u.au8Union, 0, sizeof (pHeader->u.au8Union));
HGSMIBUFFERTAIL *pTail = HGSMIBufferTail (pHeader);
pTail->u32Reserved = 0;
pTail->u32Checksum = HGSMIChecksum (offBuffer, pHeader, pTail);
return offBuffer;
}
int HGSMIAreaInitialize (HGSMIAREA *pArea, void *pvBase, HGSMISIZE cbArea, HGSMIOFFSET offBase)
{
uint8_t *pu8Base = (uint8_t *)pvBase;
if ( !pArea /* Check that the area: */
|| cbArea < HGSMIBufferMinimumSize () /* Large enough. */
|| pu8Base + cbArea < pu8Base /* No address space wrap. */
|| offBase > UINT32_C(0xFFFFFFFF) - cbArea /* Area within the 32 bit space: offBase + cbMem <= 0xFFFFFFFF */
)
{
return VERR_INVALID_PARAMETER;
}
pArea->pu8Base = pu8Base;
pArea->offBase = offBase;
pArea->offLast = cbArea - HGSMIBufferMinimumSize () + offBase;
pArea->cbArea = cbArea;
return VINF_SUCCESS;
}
void HGSMIAreaClear (HGSMIAREA *pArea)
{
if (pArea)
{
memset (pArea, 0, sizeof (HGSMIAREA));
}
}
/* Initialize the memory buffer including its checksum.
* No changes alloed to the header and the tail after that.
*/
HGSMIOFFSET HGSMIBufferInitializeSingle (const HGSMIAREA *pArea,
HGSMIBUFFERHEADER *pHeader,
HGSMISIZE cbBuffer,
uint8_t u8Channel,
uint16_t u16ChannelInfo)
{
if (cbBuffer < HGSMIBufferMinimumSize ())
{
return HGSMIOFFSET_VOID;
}
return hgsmiBufferInitializeSingle (pArea, pHeader, cbBuffer - HGSMIBufferMinimumSize (), u8Channel, u16ChannelInfo);
}
void HGSMIHeapSetupUnitialized (HGSMIHEAP *pHeap)
{
pHeap->u.hPtr = NIL_RTHEAPSIMPLE;
pHeap->cRefs = 0;
pHeap->area.cbArea = 0;
pHeap->area.offBase = HGSMIOFFSET_VOID;
pHeap->area.offLast = HGSMIOFFSET_VOID;
pHeap->area.pu8Base = 0;
pHeap->fOffsetBased = false;
}
bool HGSMIHeapIsItialized (HGSMIHEAP *pHeap)
{
return pHeap->u.hPtr != NIL_RTHEAPSIMPLE;
}
int HGSMIHeapRelocate (HGSMIHEAP *pHeap,
void *pvBase,
uint32_t offHeapHandle,
uintptr_t offDelta,
HGSMISIZE cbArea,
HGSMIOFFSET offBase,
bool fOffsetBased
)
{
if ( !pHeap
|| !pvBase)
{
return VERR_INVALID_PARAMETER;
}
int rc = HGSMIAreaInitialize (&pHeap->area, pvBase, cbArea, offBase);
if (RT_SUCCESS (rc))
{
if (fOffsetBased)
pHeap->u.hOff = (RTHEAPOFFSET)((uint8_t *)pvBase + offHeapHandle);
else
{
pHeap->u.hPtr = (RTHEAPSIMPLE)((uint8_t *)pvBase + offHeapHandle);
rc = RTHeapSimpleRelocate (pHeap->u.hPtr, offDelta); AssertRC(rc);
}
if (RT_SUCCESS (rc))
{
pHeap->cRefs = 0;
pHeap->fOffsetBased = fOffsetBased;
}
else
{
HGSMIAreaClear (&pHeap->area);
}
}
return rc;
}
int HGSMIHeapSetup (HGSMIHEAP *pHeap,
void *pvBase,
HGSMISIZE cbArea,
HGSMIOFFSET offBase,
bool fOffsetBased)
{
if ( !pHeap
|| !pvBase)
{
return VERR_INVALID_PARAMETER;
}
int rc = HGSMIAreaInitialize (&pHeap->area, pvBase, cbArea, offBase);
if (RT_SUCCESS (rc))
{
if (!fOffsetBased)
rc = RTHeapSimpleInit (&pHeap->u.hPtr, pvBase, cbArea);
else
rc = RTHeapOffsetInit (&pHeap->u.hOff, pvBase, cbArea);
if (RT_SUCCESS (rc))
{
pHeap->cRefs = 0;
pHeap->fOffsetBased = fOffsetBased;
}
else
{
HGSMIAreaClear (&pHeap->area);
}
}
return rc;
}
void HGSMIHeapDestroy (HGSMIHEAP *pHeap)
{
if (pHeap)
{
Assert(!pHeap->cRefs);
pHeap->u.hPtr = NIL_RTHEAPSIMPLE;
HGSMIAreaClear (&pHeap->area);
pHeap->cRefs = 0;
}
}
void *HGSMIHeapAlloc (HGSMIHEAP *pHeap,
HGSMISIZE cbData,
uint8_t u8Channel,
uint16_t u16ChannelInfo)
{
if (pHeap->u.hPtr == NIL_RTHEAPSIMPLE)
{
return NULL;
}
size_t cbAlloc = HGSMIBufferRequiredSize (cbData);
HGSMIBUFFERHEADER *pHeader = (HGSMIBUFFERHEADER *)HGSMIHeapBufferAlloc (pHeap, cbAlloc);
if (!pHeader)
return NULL;
hgsmiBufferInitializeSingle (&pHeap->area, pHeader, cbData, u8Channel, u16ChannelInfo);
return HGSMIBufferData (pHeader);
}
HGSMIOFFSET HGSMIHeapBufferOffset (HGSMIHEAP *pHeap,
void *pvData)
{
HGSMIBUFFERHEADER *pHeader = HGSMIBufferHeaderFromData (pvData);
HGSMIOFFSET offBuffer = HGSMIPointerToOffset (&pHeap->area, pHeader);
return offBuffer;
}
void HGSMIHeapFree (HGSMIHEAP *pHeap,
void *pvData)
{
if ( pvData
&& pHeap->u.hPtr != NIL_RTHEAPSIMPLE)
{
HGSMIBUFFERHEADER *pHeader = HGSMIBufferHeaderFromData (pvData);
HGSMIHeapBufferFree (pHeap, pHeader);
}
}
void* HGSMIHeapBufferAlloc (HGSMIHEAP *pHeap, HGSMISIZE cbBuffer)
{
void* pvBuf;
if (!pHeap->fOffsetBased)
pvBuf = RTHeapSimpleAlloc (pHeap->u.hPtr, cbBuffer, 0);
else
pvBuf = RTHeapOffsetAlloc (pHeap->u.hOff, cbBuffer, 0);
if (!pvBuf)
return NULL;
++pHeap->cRefs;
return pvBuf;
}
void HGSMIHeapBufferFree(HGSMIHEAP *pHeap,
void *pvBuf)
{
if (!pHeap->fOffsetBased)
RTHeapSimpleFree (pHeap->u.hPtr, pvBuf);
else
RTHeapOffsetFree (pHeap->u.hOff, pvBuf);
--pHeap->cRefs;
}
/* Verify that the given offBuffer points to a valid buffer, which is within the area.
*/
static const HGSMIBUFFERHEADER *hgsmiVerifyBuffer (const HGSMIAREA *pArea,
HGSMIOFFSET offBuffer)
{
AssertPtr(pArea);
LogFlowFunc(("buffer 0x%x, area %p %x [0x%x;0x%x]\n", offBuffer, pArea->pu8Base, pArea->cbArea, pArea->offBase, pArea->offLast));
if ( offBuffer < pArea->offBase
|| offBuffer > pArea->offLast)
{
LogFunc(("offset 0x%x is outside the area [0x%x;0x%x]!!!\n", offBuffer, pArea->offBase, pArea->offLast));
HGSMI_STRICT_ASSERT_FAILED();
return NULL;
}
const HGSMIBUFFERHEADER *pHeader = HGSMIOffsetToPointer (pArea, offBuffer);
/* Quick check of the data size, it should be less than the maximum
* data size for the buffer at this offset.
*/
LogFlowFunc(("datasize check: pHeader->u32DataSize = 0x%x pArea->offLast - offBuffer = 0x%x\n", pHeader->u32DataSize, pArea->offLast - offBuffer));
if (pHeader->u32DataSize <= pArea->offLast - offBuffer)
{
HGSMIBUFFERTAIL *pTail = HGSMIBufferTail (pHeader);
/* At least both pHeader and pTail structures are in the area. Check the checksum. */
uint32_t u32Checksum = HGSMIChecksum (offBuffer, pHeader, pTail);
LogFlowFunc(("checksum check: u32Checksum = 0x%x pTail->u32Checksum = 0x%x\n", u32Checksum, pTail->u32Checksum));
if (u32Checksum == pTail->u32Checksum)
{
LogFlowFunc(("returning %p\n", pHeader));
return pHeader;
}
else
{
LogFunc(("invalid checksum 0x%x, expected 0x%x!!!\n", u32Checksum, pTail->u32Checksum));
HGSMI_STRICT_ASSERT_FAILED();
}
}
else
{
LogFunc(("invalid data size 0x%x, maximum is 0x%x!!!\n", pHeader->u32DataSize, pArea->offLast - offBuffer));
HGSMI_STRICT_ASSERT_FAILED();
}
LogFlowFunc(("returning NULL\n"));
return NULL;
}
/* A wrapper to safely call the handler.
*/
int HGSMIChannelHandlerCall (const HGSMICHANNELHANDLER *pHandler,
const HGSMIBUFFERHEADER *pHeader)
{
LogFlowFunc(("pHandler %p, pHeader %p\n", pHandler, pHeader));
int rc;
Assert(pHandler && pHandler->pfnHandler);
if ( pHandler
&& pHandler->pfnHandler)
{
void *pvBuffer = HGSMIBufferData (pHeader);
HGSMISIZE cbBuffer = pHeader->u32DataSize;
rc = pHandler->pfnHandler (pHandler->pvHandler, pHeader->u16ChannelInfo, pvBuffer, cbBuffer);
}
else
{
/* It is a NOOP case here. */
rc = VINF_SUCCESS;
}
LogFlowFunc(("leave rc = %Rrc\n", rc));
return rc;
}
/*
* Process a guest buffer.
* @thread EMT
*/
static int hgsmiBufferProcess (const HGSMICHANNEL *pChannel,
const HGSMIBUFFERHEADER *pHeader)
{
LogFlowFunc(("pChannel %p, pHeader %p\n", pChannel, pHeader));
int rc = HGSMIChannelHandlerCall (&pChannel->handler,
pHeader);
return rc;
}
HGSMICHANNEL *HGSMIChannelFindById (HGSMICHANNELINFO * pChannelInfo,
uint8_t u8Channel)
{
HGSMICHANNEL *pChannel = &pChannelInfo->Channels[u8Channel];
if (pChannel->u8Flags & HGSMI_CH_F_REGISTERED)
{
return pChannel;
}
return NULL;
}
int HGSMIBufferProcess (HGSMIAREA *pArea,
HGSMICHANNELINFO * pChannelInfo,
HGSMIOFFSET offBuffer)
{
LogFlowFunc(("pArea %p, offBuffer 0x%x\n", pArea, offBuffer));
AssertPtr(pArea);
AssertPtr(pChannelInfo);
int rc = VERR_GENERAL_FAILURE;
// VM_ASSERT_EMT(pIns->pVM);
/* Guest has prepared a command description at 'offBuffer'. */
const HGSMIBUFFERHEADER *pHeader = hgsmiVerifyBuffer (pArea, offBuffer);
Assert(pHeader);
if (pHeader)
{
/* Pass the command to the appropriate handler registered with this instance.
* Start with the handler list head, which is the preallocated HGSMI setup channel.
*/
HGSMICHANNEL *pChannel = HGSMIChannelFindById (pChannelInfo, pHeader->u8Channel);
Assert(pChannel);
if (pChannel)
{
hgsmiBufferProcess (pChannel, pHeader);
HGSMI_STRICT_ASSERT(hgsmiVerifyBuffer (pArea, offBuffer) != NULL);
rc = VINF_SUCCESS;
}
else
{
rc = VERR_INVALID_FUNCTION;
}
}
else
{
rc = VERR_INVALID_HANDLE;
// LogRel(("HGSMI[%s]: ignored invalid guest buffer 0x%08X!!!\n", pIns->pszName, offBuffer));
}
return rc;
}
/* Register a new VBVA channel by index.
*
*/
int HGSMIChannelRegister (HGSMICHANNELINFO * pChannelInfo,
uint8_t u8Channel,
const char *pszName,
PFNHGSMICHANNELHANDLER pfnChannelHandler,
void *pvChannelHandler,
HGSMICHANNELHANDLER *pOldHandler)
{
AssertPtrReturn(pOldHandler, VERR_INVALID_PARAMETER);
/* Check whether the channel is already registered. */
HGSMICHANNEL *pChannel = HGSMIChannelFindById (pChannelInfo, u8Channel);
if (!pChannel)
{
/* Channel is not yet registered. */
pChannel = &pChannelInfo->Channels[u8Channel];
pChannel->u8Flags = HGSMI_CH_F_REGISTERED;
pChannel->u8Channel = u8Channel;
pChannel->handler.pfnHandler = NULL;
pChannel->handler.pvHandler = NULL;
pChannel->pszName = pszName;
}
*pOldHandler = pChannel->handler;
pChannel->handler.pfnHandler = pfnChannelHandler;
pChannel->handler.pvHandler = pvChannelHandler;
return VINF_SUCCESS;
}
|