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
|
/* $Id: display-svga.cpp $ */
/** @file
* X11 guest client - VMSVGA emulation resize event pass-through to drm guest
* driver.
*/
/*
* Copyright (C) 2016-2019 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.
*/
/*
* Known things to test when changing this code. All assume a guest with VMSVGA
* active and controlled by X11 or Wayland, and Guest Additions installed and
* running, unless otherwise stated.
* - On Linux 4.6 and later guests, VBoxClient --vmsvga should be running as
* root and not as the logged-in user. Dynamic resizing should work for all
* screens in any environment which handles kernel resize notifications,
* including at log-in screens. Test GNOME Shell Wayland and GNOME Shell
* under X.Org or Unity or KDE at the log-in screen and after log-in.
* - Linux 4.10 changed the user-kernel-ABI introduced in 4.6: test both.
* - On other guests (than Linux 4.6 or later) running X.Org Server 1.3 or
* later, VBoxClient --vmsvga should never be running as root, and should run
* (and dynamic resizing and screen enable/disable should work for all
* screens) whenever a user is logged in to a supported desktop environment.
* - On guests running X.Org Server 1.2 or older, VBoxClient --vmsvga should
* never run as root and should run whenever a user is logged in to a
* supported desktop environment. Dynamic resizing should work for the first
* screen, and enabling others should not be possible.
* - When VMSVGA is not enabled, VBoxClient --vmsvga should never stay running.
*/
#include "VBoxClient.h"
#include <VBox/VBoxGuestLib.h>
#include <iprt/assert.h>
#include <iprt/file.h>
#include <iprt/err.h>
#include <iprt/string.h>
/** Maximum number of supported screens. DRM and X11 both limit this to 32. */
/** @todo if this ever changes, dynamically allocate resizeable arrays in the
* context structure. */
#define VMW_MAX_HEADS 32
/* VMWare kernel driver control parts definitions. */
#ifdef RT_OS_LINUX
# include <sys/ioctl.h>
#else /* Solaris and BSDs, in case they ever adopt the DRM driver. */
# include <sys/ioccom.h>
#endif
#define DRM_DRIVER_NAME "vmwgfx"
/** DRM version structure. */
struct DRMVERSION
{
int cMajor;
int cMinor;
int cPatchLevel;
size_t cbName;
char *pszName;
size_t cbDate;
char *pszDate;
size_t cbDescription;
char *pszDescription;
};
AssertCompileSize(struct DRMVERSION, 8 + 7 * sizeof(void *));
/** Rectangle structure for geometry of a single screen. */
struct DRMVMWRECT
{
int32_t x;
int32_t y;
uint32_t w;
uint32_t h;
};
AssertCompileSize(struct DRMVMWRECT, 16);
#define DRM_IOCTL_VERSION _IOWR('d', 0x00, struct DRMVERSION)
struct DRMCONTEXT
{
RTFILE hDevice;
};
static void drmConnect(struct DRMCONTEXT *pContext)
{
unsigned i;
RTFILE hDevice;
if (pContext->hDevice != NIL_RTFILE)
VBClFatalError(("%s called with bad argument\n", __func__));
/* Try to open the SVGA DRM device. */
for (i = 0; i < 128; ++i)
{
char szPath[64];
struct DRMVERSION version;
char szName[sizeof(DRM_DRIVER_NAME)];
int rc;
/* Control devices for drm graphics driver control devices go from
* controlD64 to controlD127. Render node devices go from renderD128
* to renderD192. The driver takes resize hints via the control device
* on pre-4.10 kernels and on the render device on newer ones. Try
* both types. */
if (i % 2 == 0)
rc = RTStrPrintf(szPath, sizeof(szPath), "/dev/dri/renderD%u", i / 2 + 128);
else
rc = RTStrPrintf(szPath, sizeof(szPath), "/dev/dri/controlD%u", i / 2 + 64);
if (RT_FAILURE(rc))
VBClFatalError(("RTStrPrintf of device path failed, rc=%Rrc\n", rc));
rc = RTFileOpen(&hDevice, szPath, RTFILE_O_READWRITE | RTFILE_O_OPEN | RTFILE_O_DENY_NONE);
if (RT_FAILURE(rc))
continue;
RT_ZERO(version);
version.cbName = sizeof(szName);
version.pszName = szName;
rc = RTFileIoCtl(hDevice, DRM_IOCTL_VERSION, &version, sizeof(version), NULL);
if ( RT_SUCCESS(rc)
&& !strncmp(szName, DRM_DRIVER_NAME, sizeof(DRM_DRIVER_NAME) - 1)
&& ( version.cMajor > 2
|| (version.cMajor == 2 && version.cMinor > 9)))
break;
hDevice = NIL_RTFILE;
}
pContext->hDevice = hDevice;
}
/** Preferred screen layout information for DRM_VMW_UPDATE_LAYOUT IoCtl. The
* rects argument is a cast pointer to an array of drm_vmw_rect. */
struct DRMVMWUPDATELAYOUT {
uint32_t cOutputs;
uint32_t u32Pad;
uint64_t ptrRects;
};
AssertCompileSize(struct DRMVMWUPDATELAYOUT, 16);
#define DRM_IOCTL_VMW_UPDATE_LAYOUT \
_IOW('d', 0x40 + 20, struct DRMVMWUPDATELAYOUT)
static void drmSendHints(struct DRMCONTEXT *pContext, struct DRMVMWRECT *paRects,
unsigned cHeads)
{
int rc;
struct DRMVMWUPDATELAYOUT ioctlLayout;
if (pContext->hDevice == NIL_RTFILE)
VBClFatalError(("%s bad device argument.\n", __func__));
ioctlLayout.cOutputs = cHeads;
ioctlLayout.ptrRects = (uint64_t)paRects;
rc = RTFileIoCtl(pContext->hDevice, DRM_IOCTL_VMW_UPDATE_LAYOUT,
&ioctlLayout, sizeof(ioctlLayout), NULL);
if (RT_FAILURE(rc) && rc != VERR_INVALID_PARAMETER)
VBClFatalError(("Failure updating layout, rc=%Rrc\n", rc));
}
static const char *getPidFilePath()
{
return ".vboxclient-display-svga.pid";
}
static int run(struct VBCLSERVICE **ppInterface, bool fDaemonised)
{
(void)ppInterface;
(void)fDaemonised;
struct DRMCONTEXT drmContext = { NIL_RTFILE };
unsigned i;
int rc;
uint32_t acx[VMW_MAX_HEADS] = { 0 };
uint32_t acy[VMW_MAX_HEADS] = { 0 };
uint32_t adx[VMW_MAX_HEADS] = { 0 };
uint32_t ady[VMW_MAX_HEADS] = { 0 };
uint32_t afEnabled[VMW_MAX_HEADS] = { false };
struct DRMVMWRECT aRects[VMW_MAX_HEADS];
unsigned cHeads;
drmConnect(&drmContext);
if (drmContext.hDevice == NIL_RTFILE)
return VINF_SUCCESS;
/* Initialise the guest library. */
rc = VbglR3InitUser();
if (RT_FAILURE(rc))
VBClFatalError(("Failed to connect to the VirtualBox kernel service, rc=%Rrc\n", rc));
rc = VbglR3CtlFilterMask(VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST, 0);
if (RT_FAILURE(rc))
VBClFatalError(("Failed to request display change events, rc=%Rrc\n", rc));
rc = VbglR3AcquireGuestCaps(VMMDEV_GUEST_SUPPORTS_GRAPHICS, 0, false);
if (rc == VERR_RESOURCE_BUSY) /* Someone else has already acquired it. */
return VINF_SUCCESS;
if (RT_FAILURE(rc))
VBClFatalError(("Failed to register resizing support, rc=%Rrc\n", rc));
for (;;)
{
uint32_t events;
rc = VbglR3WaitEvent(VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST, RT_INDEFINITE_WAIT, &events);
if (RT_FAILURE(rc))
VBClFatalError(("Failure waiting for event, rc=%Rrc\n", rc));
while (rc != VERR_TIMEOUT)
{
uint32_t cx, cy, cBits, dx, dy, idx;
bool fEnabled, fChangeOrigin;
rc = VbglR3GetDisplayChangeRequest(&cx, &cy, &cBits, &idx, &dx, &dy, &fEnabled, &fChangeOrigin, true);
if (RT_FAILURE(rc))
VBClFatalError(("Failed to get display change request, rc=%Rrc\n", rc));
if (idx < VMW_MAX_HEADS)
{
acx[idx] = cx;
acy[idx] = cy;
if (fChangeOrigin)
adx[idx] = dx < INT32_MAX ? dx : 0;
if (fChangeOrigin)
ady[idx] = dy < INT32_MAX ? dy : 0;
afEnabled[idx] = fEnabled;
}
rc = VbglR3WaitEvent(VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST, 0, &events);
if (RT_FAILURE(rc) && rc != VERR_TIMEOUT && rc != VERR_INTERRUPTED)
VBClFatalError(("Failure waiting for event, rc=%Rrc\n", rc));
}
for (i = 0, cHeads = 0; i < VMW_MAX_HEADS; ++i)
{
if (afEnabled[i])
{
if ((i == 0) || (adx[i] || ady[i]))
{
aRects[cHeads].x = (int32_t)adx[i];
aRects[cHeads].y = (int32_t)ady[i];
} else {
aRects[cHeads].x = (int32_t)(adx[i - 1] + acx[i - 1]);
aRects[cHeads].y = (int32_t)ady[i - 1];
}
aRects[cHeads].w = acx[i];
aRects[cHeads].h = acy[i];
++cHeads;
}
}
drmSendHints(&drmContext, aRects, cHeads);
}
}
static struct VBCLSERVICE interface =
{
getPidFilePath,
VBClServiceDefaultHandler, /* Init */
run,
VBClServiceDefaultCleanup
}, *pInterface = &interface;
struct VBCLSERVICE **VBClDisplaySVGAService()
{
return &pInterface;
}
|