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
|
/** @file
*
* VBoxGuestLib - A support library for VirtualBox guest additions:
* Generic VMMDev request management
*/
/*
* Copyright (C) 2006-2007 Sun Microsystems, Inc.
*
* 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.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
#include <VBox/VBoxGuestLib.h>
#include "VBGLInternal.h"
#include <iprt/asm.h>
#include <iprt/string.h>
#include <iprt/assert.h>
DECLVBGL(int) VbglGRVerify (const VMMDevRequestHeader *pReq, size_t cbReq)
{
if (!pReq || cbReq < sizeof (VMMDevRequestHeader))
{
dprintf(("VbglGRVerify: Invalid parameter: pReq = %p, cbReq = %d\n", pReq, cbReq));
return VERR_INVALID_PARAMETER;
}
if (pReq->size > cbReq)
{
dprintf(("VbglGRVerify: request size %d > buffer size %d\n", pReq->size, cbReq));
return VERR_INVALID_PARAMETER;
}
/* The request size must correspond to the request type. */
size_t cbReqExpected = vmmdevGetRequestSize(pReq->requestType);
if (cbReq < cbReqExpected)
{
dprintf(("VbglGRVerify: buffer size %d < expected size %d\n", cbReq, cbReqExpected));
return VERR_INVALID_PARAMETER;
}
if (cbReqExpected == cbReq)
{
/* This is most likely a fixed size request, and in this case the request size
* must be also equal to the expected size.
*/
if (pReq->size != cbReqExpected)
{
dprintf(("VbglGRVerify: request size %d != expected size %d\n", pReq->size, cbReqExpected));
return VERR_INVALID_PARAMETER;
}
return VINF_SUCCESS;
}
/* This can be a variable size request. Check the request type and limit the size
* to VMMDEV_MAX_VMMDEVREQ_SIZE, which is max size supported by the host.
*/
if ( pReq->requestType == VMMDevReq_LogString
|| pReq->requestType == VMMDevReq_VideoSetVisibleRegion
|| pReq->requestType == VMMDevReq_SetPointerShape
#ifdef VBOX_WITH_64_BITS_GUESTS
|| pReq->requestType == VMMDevReq_HGCMCall32
|| pReq->requestType == VMMDevReq_HGCMCall64
#else
|| pReq->requestType == VMMDevReq_HGCMCall
#endif /* VBOX_WITH_64_BITS_GUESTS */
|| pReq->requestType == VMMDevReq_ChangeMemBalloon)
{
if (cbReq > VMMDEV_MAX_VMMDEVREQ_SIZE)
{
dprintf(("VbglGRVerify: VMMDevReq_LogString: buffer size %d too big\n", cbReq));
return VERR_BUFFER_OVERFLOW; /* @todo is this error code ok? */
}
}
else
{
dprintf(("VbglGRVerify: request size %d > buffer size %d\n", pReq->size, cbReq));
return VERR_IO_BAD_LENGTH; /* @todo is this error code ok? */
}
return VINF_SUCCESS;
}
DECLVBGL(int) VbglGRAlloc (VMMDevRequestHeader **ppReq, uint32_t cbSize, VMMDevRequestType reqType)
{
VMMDevRequestHeader *pReq;
int rc = VbglEnter ();
if (RT_FAILURE(rc))
return rc;
if (!ppReq || cbSize < sizeof (VMMDevRequestHeader))
{
dprintf(("VbglGRAlloc: Invalid parameter: ppReq = %p, cbSize = %d\n", ppReq, cbSize));
return VERR_INVALID_PARAMETER;
}
pReq = (VMMDevRequestHeader *)VbglPhysHeapAlloc (cbSize);
if (!pReq)
{
AssertMsgFailed(("VbglGRAlloc: no memory\n"));
rc = VERR_NO_MEMORY;
}
else
{
memset(pReq, 0xAA, cbSize);
pReq->size = cbSize;
pReq->version = VMMDEV_REQUEST_HEADER_VERSION;
pReq->requestType = reqType;
pReq->rc = VERR_GENERAL_FAILURE;
pReq->reserved1 = 0;
pReq->reserved2 = 0;
*ppReq = pReq;
}
return rc;
}
DECLVBGL(int) VbglGRPerform (VMMDevRequestHeader *pReq)
{
RTCCPHYS physaddr;
int rc = VbglEnter ();
if (RT_FAILURE(rc))
return rc;
if (!pReq)
return VERR_INVALID_PARAMETER;
physaddr = VbglPhysHeapGetPhysAddr (pReq);
if ( !physaddr
|| (physaddr >> 32) != 0) /* Port IO is 32 bit. */
{
rc = VERR_VBGL_INVALID_ADDR;
}
else
{
ASMOutU32(g_vbgldata.portVMMDev + PORT_VMMDEV_REQUEST_OFFSET, (uint32_t)physaddr);
/* Make the compiler aware that the host has changed memory. */
ASMCompilerBarrier();
rc = pReq->rc;
}
return rc;
}
DECLVBGL(void) VbglGRFree (VMMDevRequestHeader *pReq)
{
int rc = VbglEnter ();
if (RT_FAILURE(rc))
return;
VbglPhysHeapFree (pReq);
}
|