VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDisplay.cpp@ 33264

Last change on this file since 33264 was 33264, checked in by vboxsync, 14 years ago

Additions/Win: Allow any horizontal resolution if graphics device supports it.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 31.0 KB
Line 
1/* $Id: VBoxDisplay.cpp 33264 2010-10-20 14:29:45Z vboxsync $ */
2/** @file
3 * VBoxSeamless - Display notifications.
4 */
5
6/*
7 * Copyright (C) 2006-2010 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17#define _WIN32_WINNT 0x0500
18#include <windows.h>
19#include "VBoxTray.h"
20#include "VBoxSeamless.h"
21#include <VBoxHook.h>
22#include <VBoxDisplay.h>
23#include <VBox/VMMDev.h>
24#include <iprt/assert.h>
25#include "helpers.h"
26#include <malloc.h>
27#include <VBoxGuestInternal.h>
28
29typedef struct _VBOXDISPLAYCONTEXT
30{
31 const VBOXSERVICEENV *pEnv;
32
33 /* ChangeDisplaySettingsEx does not exist in NT. ResizeDisplayDevice uses the function. */
34 LONG (WINAPI * pfnChangeDisplaySettingsEx)(LPCTSTR lpszDeviceName, LPDEVMODE lpDevMode, HWND hwnd, DWORD dwflags, LPVOID lParam);
35
36 /* EnumDisplayDevices does not exist in NT. isVBoxDisplayDriverActive et al. are using these functions. */
37 BOOL (WINAPI * pfnEnumDisplayDevices)(IN LPCSTR lpDevice, IN DWORD iDevNum, OUT PDISPLAY_DEVICEA lpDisplayDevice, IN DWORD dwFlags);
38} VBOXDISPLAYCONTEXT;
39
40static VBOXDISPLAYCONTEXT gCtx = {0};
41
42#ifdef VBOX_WITH_WDDM
43static bool vboxWddmReinitVideoModes(VBOXDISPLAYCONTEXT *pCtx)
44{
45 VBOXDISPIFESCAPE escape = {0};
46 escape.escapeCode = VBOXESC_REINITVIDEOMODES;
47 DWORD err = VBoxDispIfEscape(&pCtx->pEnv->dispIf, &escape, 0);
48 if (err != NO_ERROR)
49 {
50 Log((__FUNCTION__": VBoxDispIfEscape failed with err (%d)\n", err));
51 return false;
52 }
53 return true;
54}
55
56typedef enum
57{
58 VBOXDISPLAY_DRIVER_TYPE_UNKNOWN = 0,
59 VBOXDISPLAY_DRIVER_TYPE_XPDM = 1,
60 VBOXDISPLAY_DRIVER_TYPE_WDDM = 2
61} VBOXDISPLAY_DRIVER_TYPE;
62
63static VBOXDISPLAY_DRIVER_TYPE getVBoxDisplayDriverType (VBOXDISPLAYCONTEXT *pCtx);
64#endif
65
66int VBoxDisplayInit(const VBOXSERVICEENV *pEnv, void **ppInstance, bool *pfStartThread)
67{
68 Log(("VBoxTray: VBoxDisplayInit ...\n"));
69
70 OSVERSIONINFO OSinfo;
71 OSinfo.dwOSVersionInfoSize = sizeof (OSinfo);
72 GetVersionEx (&OSinfo);
73
74 HMODULE hUser = GetModuleHandle("USER32");
75
76 gCtx.pEnv = pEnv;
77
78 if (NULL == hUser)
79 {
80 Log(("VBoxTray: VBoxDisplayInit: Could not get module handle of USER32.DLL!\n"));
81 return VERR_NOT_IMPLEMENTED;
82 }
83 else if (OSinfo.dwMajorVersion >= 5) /* APIs available only on W2K and up! */
84 {
85 *(uintptr_t *)&gCtx.pfnChangeDisplaySettingsEx = (uintptr_t)GetProcAddress(hUser, "ChangeDisplaySettingsExA");
86 Log(("VBoxTray: VBoxDisplayInit: pfnChangeDisplaySettingsEx = %p\n", gCtx.pfnChangeDisplaySettingsEx));
87
88 *(uintptr_t *)&gCtx.pfnEnumDisplayDevices = (uintptr_t)GetProcAddress(hUser, "EnumDisplayDevicesA");
89 Log(("VBoxTray: VBoxDisplayInit: pfnEnumDisplayDevices = %p\n", gCtx.pfnEnumDisplayDevices));
90
91#ifdef VBOX_WITH_WDDM
92 if (OSinfo.dwMajorVersion >= 6)
93 {
94 /* this is vista and up, check if we need to switch the display driver if to WDDM mode */
95 Log(("VBoxTray: VBoxDisplayInit: this is Windows Vista and up\n"));
96 VBOXDISPLAY_DRIVER_TYPE enmType = getVBoxDisplayDriverType (&gCtx);
97 if (enmType == VBOXDISPLAY_DRIVER_TYPE_WDDM)
98 {
99 Log(("VBoxTray: VBoxDisplayInit: WDDM driver is installed, switching display driver if to WDDM mode\n"));
100 /* this is hacky, but the most easiest way */
101 DWORD err = VBoxDispIfSwitchMode(const_cast<PVBOXDISPIF>(&pEnv->dispIf), VBOXDISPIF_MODE_WDDM, NULL /* old mode, we don't care about it */);
102 if (err == NO_ERROR)
103 Log(("VBoxTray: VBoxDisplayInit: DispIf switched to WDDM mode successfully\n"));
104 else
105 Log(("VBoxTray: VBoxDisplayInit: Failed to switch DispIf to WDDM mode, err (%d)\n", err));
106 }
107 }
108#endif
109 }
110 else if (OSinfo.dwMajorVersion <= 4) /* Windows NT 4.0 */
111 {
112 /* Nothing to do here yet */
113 }
114 else /* Unsupported platform */
115 {
116 Log(("VBoxTray: VBoxDisplayInit: Warning, display for platform not handled yet!\n"));
117 return VERR_NOT_IMPLEMENTED;
118 }
119
120 Log(("VBoxTray: VBoxDisplayInit: Display init successful\n"));
121
122 *pfStartThread = true;
123 *ppInstance = (void *)&gCtx;
124 return VINF_SUCCESS;
125}
126
127void VBoxDisplayDestroy (const VBOXSERVICEENV *pEnv, void *pInstance)
128{
129 return;
130}
131
132#ifdef VBOX_WITH_WDDM
133static VBOXDISPLAY_DRIVER_TYPE getVBoxDisplayDriverType(VBOXDISPLAYCONTEXT *pCtx)
134#else
135static bool isVBoxDisplayDriverActive(VBOXDISPLAYCONTEXT *pCtx)
136#endif
137{
138#ifdef VBOX_WITH_WDDM
139 VBOXDISPLAY_DRIVER_TYPE enmType = VBOXDISPLAY_DRIVER_TYPE_UNKNOWN;
140#else
141 bool result = false;
142#endif
143
144 if( pCtx->pfnEnumDisplayDevices )
145 {
146 INT devNum = 0;
147 DISPLAY_DEVICE dispDevice;
148 FillMemory(&dispDevice, sizeof(DISPLAY_DEVICE), 0);
149 dispDevice.cb = sizeof(DISPLAY_DEVICE);
150
151 Log(("VBoxTray: isVBoxDisplayDriverActive: Checking for active VBox display driver (W2K+) ...\n"));
152
153 while (EnumDisplayDevices(NULL,
154 devNum,
155 &dispDevice,
156 0))
157 {
158 Log(("VBoxTray: isVBoxDisplayDriverActive: DevNum:%d\nName:%s\nString:%s\nID:%s\nKey:%s\nFlags=%08X\n\n",
159 devNum,
160 &dispDevice.DeviceName[0],
161 &dispDevice.DeviceString[0],
162 &dispDevice.DeviceID[0],
163 &dispDevice.DeviceKey[0],
164 dispDevice.StateFlags));
165
166 if (dispDevice.StateFlags & DISPLAY_DEVICE_PRIMARY_DEVICE)
167 {
168 Log(("VBoxTray: isVBoxDisplayDriverActive: Primary device\n"));
169
170 if (strcmp(&dispDevice.DeviceString[0], "VirtualBox Graphics Adapter") == 0)
171#ifndef VBOX_WITH_WDDM
172 result = true;
173#else
174 enmType = VBOXDISPLAY_DRIVER_TYPE_XPDM;
175 else if (strcmp(&dispDevice.DeviceString[0], "VirtualBox Graphics Adapter (Microsoft Corporation - WDDM)") == 0)
176 enmType = VBOXDISPLAY_DRIVER_TYPE_WDDM;
177#endif
178 break;
179 }
180
181 FillMemory(&dispDevice, sizeof(DISPLAY_DEVICE), 0);
182
183 dispDevice.cb = sizeof(DISPLAY_DEVICE);
184
185 devNum++;
186 }
187 }
188 else /* This must be NT 4 or something really old, so don't use EnumDisplayDevices() here ... */
189 {
190 Log(("VBoxTray: isVBoxDisplayDriverActive: Checking for active VBox display driver (NT or older) ...\n"));
191
192 DEVMODE tempDevMode;
193 ZeroMemory (&tempDevMode, sizeof (tempDevMode));
194 tempDevMode.dmSize = sizeof(DEVMODE);
195 EnumDisplaySettings(NULL, ENUM_CURRENT_SETTINGS, &tempDevMode); /* Get current display device settings */
196
197 /* Check for the short name, because all long stuff would be truncated */
198 if (strcmp((char*)&tempDevMode.dmDeviceName[0], "VBoxDisp") == 0)
199#ifndef VBOX_WITH_WDDM
200 result = true;
201#else
202 enmType = VBOXDISPLAY_DRIVER_TYPE_XPDM;
203#endif
204 }
205
206#ifndef VBOX_WITH_WDDM
207 return result;
208#else
209 return enmType;
210#endif
211}
212
213/* Returns TRUE to try again. */
214static BOOL ResizeDisplayDevice(ULONG Id, DWORD Width, DWORD Height, DWORD BitsPerPixel)
215{
216 BOOL fModeReset = (Width == 0 && Height == 0 && BitsPerPixel == 0);
217
218 DISPLAY_DEVICE DisplayDevice;
219
220 ZeroMemory(&DisplayDevice, sizeof(DisplayDevice));
221 DisplayDevice.cb = sizeof(DisplayDevice);
222
223 /* Find out how many display devices the system has */
224 DWORD NumDevices = 0;
225 DWORD i = 0;
226 while (EnumDisplayDevices (NULL, i, &DisplayDevice, 0))
227 {
228 Log(("VBoxTray: ResizeDisplayDevice: [%d] %s\n", i, DisplayDevice.DeviceName));
229
230 if (DisplayDevice.StateFlags & DISPLAY_DEVICE_PRIMARY_DEVICE)
231 {
232 Log(("VBoxTray: ResizeDisplayDevice: Found primary device. err %d\n", GetLastError ()));
233 NumDevices++;
234 }
235 else if (!(DisplayDevice.StateFlags & DISPLAY_DEVICE_MIRRORING_DRIVER))
236 {
237
238 Log(("VBoxTray: ResizeDisplayDevice: Found secondary device. err %d\n", GetLastError ()));
239 NumDevices++;
240 }
241
242 ZeroMemory(&DisplayDevice, sizeof(DisplayDevice));
243 DisplayDevice.cb = sizeof(DisplayDevice);
244 i++;
245 }
246
247 Log(("VBoxTray: ResizeDisplayDevice: Found total %d devices. err %d\n", NumDevices, GetLastError ()));
248
249 if (NumDevices == 0 || Id >= NumDevices)
250 {
251 Log(("VBoxTray: ResizeDisplayDevice: Requested identifier %d is invalid. err %d\n", Id, GetLastError ()));
252 return FALSE;
253 }
254
255 DISPLAY_DEVICE *paDisplayDevices = (DISPLAY_DEVICE *)alloca (sizeof (DISPLAY_DEVICE) * NumDevices);
256 DEVMODE *paDeviceModes = (DEVMODE *)alloca (sizeof (DEVMODE) * NumDevices);
257 RECTL *paRects = (RECTL *)alloca (sizeof (RECTL) * NumDevices);
258
259 /* Fetch information about current devices and modes. */
260 DWORD DevNum = 0;
261 DWORD DevPrimaryNum = 0;
262
263 ZeroMemory(&DisplayDevice, sizeof(DISPLAY_DEVICE));
264 DisplayDevice.cb = sizeof(DISPLAY_DEVICE);
265
266 i = 0;
267 while (EnumDisplayDevices (NULL, i, &DisplayDevice, 0))
268 {
269 Log(("VBoxTray: ResizeDisplayDevice: [%d(%d)] %s\n", i, DevNum, DisplayDevice.DeviceName));
270
271 BOOL bFetchDevice = FALSE;
272
273 if (DisplayDevice.StateFlags & DISPLAY_DEVICE_PRIMARY_DEVICE)
274 {
275 Log(("VBoxTray: ResizeDisplayDevice: Found primary device. err %d\n", GetLastError ()));
276 DevPrimaryNum = DevNum;
277 bFetchDevice = TRUE;
278 }
279 else if (!(DisplayDevice.StateFlags & DISPLAY_DEVICE_MIRRORING_DRIVER))
280 {
281
282 Log(("VBoxTray: ResizeDisplayDevice: Found secondary device. err %d\n", GetLastError ()));
283 bFetchDevice = TRUE;
284 }
285
286 if (bFetchDevice)
287 {
288 if (DevNum >= NumDevices)
289 {
290 Log(("VBoxTray: ResizeDisplayDevice: %d >= %d\n", NumDevices, DevNum));
291 return FALSE;
292 }
293
294 paDisplayDevices[DevNum] = DisplayDevice;
295
296 /* First try to get the video mode stored in registry (ENUM_REGISTRY_SETTINGS).
297 * A secondary display could be not active at the moment and would not have
298 * a current video mode (ENUM_CURRENT_SETTINGS).
299 */
300 ZeroMemory(&paDeviceModes[DevNum], sizeof(DEVMODE));
301 paDeviceModes[DevNum].dmSize = sizeof(DEVMODE);
302 if (!EnumDisplaySettings((LPSTR)DisplayDevice.DeviceName,
303 ENUM_REGISTRY_SETTINGS, &paDeviceModes[DevNum]))
304 {
305 Log(("VBoxTray: ResizeDisplayDevice: EnumDisplaySettings error %d\n", GetLastError ()));
306 return FALSE;
307 }
308
309 if ( paDeviceModes[DevNum].dmPelsWidth == 0
310 || paDeviceModes[DevNum].dmPelsHeight == 0)
311 {
312 /* No ENUM_REGISTRY_SETTINGS yet. Seen on Vista after installation.
313 * Get the current video mode then.
314 */
315 ZeroMemory(&paDeviceModes[DevNum], sizeof(DEVMODE));
316 paDeviceModes[DevNum].dmSize = sizeof(DEVMODE);
317 if (!EnumDisplaySettings((LPSTR)DisplayDevice.DeviceName,
318 ENUM_CURRENT_SETTINGS, &paDeviceModes[DevNum]))
319 {
320 /* ENUM_CURRENT_SETTINGS returns FALSE when the display is not active:
321 * for example a disabled secondary display.
322 * Do not return here, ignore the error and set the display info to 0x0x0.
323 */
324 Log(("VBoxTray: ResizeDisplayDevice: EnumDisplaySettings(ENUM_CURRENT_SETTINGS) error %d\n", GetLastError ()));
325 ZeroMemory(&paDeviceModes[DevNum], sizeof(DEVMODE));
326 }
327 }
328
329 Log(("VBoxTray: ResizeDisplayDevice: %dx%dx%d at %d,%d\n",
330 paDeviceModes[DevNum].dmPelsWidth,
331 paDeviceModes[DevNum].dmPelsHeight,
332 paDeviceModes[DevNum].dmBitsPerPel,
333 paDeviceModes[DevNum].dmPosition.x,
334 paDeviceModes[DevNum].dmPosition.y));
335
336 paRects[DevNum].left = paDeviceModes[DevNum].dmPosition.x;
337 paRects[DevNum].top = paDeviceModes[DevNum].dmPosition.y;
338 paRects[DevNum].right = paDeviceModes[DevNum].dmPosition.x + paDeviceModes[DevNum].dmPelsWidth;
339 paRects[DevNum].bottom = paDeviceModes[DevNum].dmPosition.y + paDeviceModes[DevNum].dmPelsHeight;
340 DevNum++;
341 }
342
343 ZeroMemory(&DisplayDevice, sizeof(DISPLAY_DEVICE));
344 DisplayDevice.cb = sizeof(DISPLAY_DEVICE);
345 i++;
346 }
347
348 /* Width, height equal to 0 means that this value must be not changed.
349 * Update input parameters if necessary.
350 * Note: BitsPerPixel is taken into account later, when new rectangles
351 * are assigned to displays.
352 */
353 if (Width == 0)
354 {
355 Width = paRects[Id].right - paRects[Id].left;
356 }
357
358 if (Height == 0)
359 {
360 Height = paRects[Id].bottom - paRects[Id].top;
361 }
362
363 /* Check whether a mode reset or a change is requested. */
364 if ( !fModeReset
365 && paRects[Id].right - paRects[Id].left == Width
366 && paRects[Id].bottom - paRects[Id].top == Height
367 && paDeviceModes[Id].dmBitsPerPel == BitsPerPixel)
368 {
369 Log(("VBoxTray: ResizeDisplayDevice: Already at desired resolution.\n"));
370 return FALSE;
371 }
372
373 resizeRect(paRects, NumDevices, DevPrimaryNum, Id, Width, Height);
374#ifdef Log
375 for (i = 0; i < NumDevices; i++)
376 {
377 Log(("VBoxTray: ResizeDisplayDevice: [%d]: %d,%d %dx%d\n",
378 i, paRects[i].left, paRects[i].top,
379 paRects[i].right - paRects[i].left,
380 paRects[i].bottom - paRects[i].top));
381 }
382#endif /* Log */
383
384 /* Without this, Windows will not ask the miniport for its
385 * mode table but uses an internal cache instead.
386 */
387 for (i = 0; i < NumDevices; i++)
388 {
389 DEVMODE tempDevMode;
390 ZeroMemory (&tempDevMode, sizeof (tempDevMode));
391 tempDevMode.dmSize = sizeof(DEVMODE);
392 EnumDisplaySettings((LPSTR)paDisplayDevices[i].DeviceName, 0xffffff, &tempDevMode);
393 Log(("VBoxTray: ResizeDisplayDevice: EnumDisplaySettings last error %d\n", GetLastError ()));
394 }
395
396 /* Assign the new rectangles to displays. */
397 for (i = 0; i < NumDevices; i++)
398 {
399 paDeviceModes[i].dmPosition.x = paRects[i].left;
400 paDeviceModes[i].dmPosition.y = paRects[i].top;
401 paDeviceModes[i].dmPelsWidth = paRects[i].right - paRects[i].left;
402 paDeviceModes[i].dmPelsHeight = paRects[i].bottom - paRects[i].top;
403
404 /* On Vista one must specify DM_BITSPERPEL.
405 * Note that the current mode dmBitsPerPel is already in the DEVMODE structure.
406 */
407 paDeviceModes[i].dmFields = DM_POSITION | DM_PELSHEIGHT | DM_PELSWIDTH | DM_BITSPERPEL;
408
409 if ( i == Id
410 && BitsPerPixel != 0)
411 {
412 /* Change dmBitsPerPel if requested. */
413 paDeviceModes[i].dmBitsPerPel = BitsPerPixel;
414 }
415
416 Log(("VBoxTray: ResizeDisplayDevice: pfnChangeDisplaySettingsEx %x: %dx%dx%d at %d,%d\n",
417 gCtx.pfnChangeDisplaySettingsEx,
418 paDeviceModes[i].dmPelsWidth,
419 paDeviceModes[i].dmPelsHeight,
420 paDeviceModes[i].dmBitsPerPel,
421 paDeviceModes[i].dmPosition.x,
422 paDeviceModes[i].dmPosition.y));
423
424 LONG status = gCtx.pfnChangeDisplaySettingsEx((LPSTR)paDisplayDevices[i].DeviceName,
425 &paDeviceModes[i], NULL, CDS_NORESET | CDS_UPDATEREGISTRY, NULL);
426 Log(("VBoxTray: ResizeDisplayDevice: ChangeDisplaySettingsEx position status %d, err %d\n", status, GetLastError ()));
427 }
428
429 /* A second call to ChangeDisplaySettings updates the monitor. */
430 LONG status = gCtx.pfnChangeDisplaySettingsEx(NULL, NULL, NULL, 0, NULL);
431 Log(("VBoxTray: ResizeDisplayDevice: ChangeDisplaySettings update status %d\n", status));
432 if (status == DISP_CHANGE_SUCCESSFUL || status == DISP_CHANGE_BADMODE)
433 {
434 /* Successfully set new video mode or our driver can not set the requested mode. Stop trying. */
435 return FALSE;
436 }
437
438 /* Retry the request. */
439 return TRUE;
440}
441
442/**
443 * Thread function to wait for and process display change
444 * requests
445 */
446unsigned __stdcall VBoxDisplayThread(void *pInstance)
447{
448 Log(("VBoxTray: VBoxDisplayThread: Entered\n"));
449
450 VBOXDISPLAYCONTEXT *pCtx = (VBOXDISPLAYCONTEXT *)pInstance;
451 HANDLE gVBoxDriver = pCtx->pEnv->hDriver;
452 bool fTerminate = false;
453 VBoxGuestFilterMaskInfo maskInfo;
454 DWORD cbReturned;
455
456 maskInfo.u32OrMask = VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST | VMMDEV_EVENT_MOUSE_CAPABILITIES_CHANGED;
457 maskInfo.u32NotMask = 0;
458 if (!DeviceIoControl(gVBoxDriver, VBOXGUEST_IOCTL_CTL_FILTER_MASK, &maskInfo, sizeof (maskInfo), NULL, 0, &cbReturned, NULL))
459 {
460 Log(("VBoxTray: VBoxDisplayThread: DeviceIOControl(CtlMask - or) failed, thead exiting\n"));
461 return 0;
462 }
463
464 int rc = VbglR3SetGuestCaps(VMMDEV_GUEST_SUPPORTS_GRAPHICS, 0);
465 if (RT_FAILURE(rc))
466 {
467 LogRel(("VBoxTray: VBoxDisplayThread: Failed to set the graphics capability with rc=%Rrc, thead exiting\n", rc));
468 return 0;
469 }
470
471 do
472 {
473 /* Wait for a display change event. */
474 VBoxGuestWaitEventInfo waitEvent;
475 waitEvent.u32TimeoutIn = 1000;
476 waitEvent.u32EventMaskIn = VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST | VMMDEV_EVENT_MOUSE_CAPABILITIES_CHANGED;
477 if (DeviceIoControl(gVBoxDriver, VBOXGUEST_IOCTL_WAITEVENT, &waitEvent, sizeof(waitEvent), &waitEvent, sizeof(waitEvent), &cbReturned, NULL))
478 {
479 /*Log(("VBoxTray: VBoxDisplayThread: DeviceIOControl succeded\n"));*/
480
481 if (NULL == pCtx) {
482 Log(("VBoxTray: VBoxDisplayThread: Invalid context detected!\n"));
483 break;
484 }
485
486 if (NULL == pCtx->pEnv) {
487 Log(("VBoxTray: VBoxDisplayThread: Invalid context environment detected!\n"));
488 break;
489 }
490
491 /* are we supposed to stop? */
492 if (WaitForSingleObject(pCtx->pEnv->hStopEvent, 0) == WAIT_OBJECT_0)
493 break;
494
495 /*Log(("VBoxTray: VBoxDisplayThread: checking event\n"));*/
496
497 /* did we get the right event? */
498 if (waitEvent.u32EventFlagsOut & VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST)
499 {
500 Log(("VBoxTray: VBoxDisplayThread: going to get display change information\n"));
501
502 /* We got at least one event. Read the requested resolution
503 * and try to set it until success. New events will not be seen
504 * but a new resolution will be read in this poll loop.
505 */
506 for (;;)
507 {
508 /* get the display change request */
509 VMMDevDisplayChangeRequest2 displayChangeRequest = {0};
510 displayChangeRequest.header.size = sizeof(VMMDevDisplayChangeRequest2);
511 displayChangeRequest.header.version = VMMDEV_REQUEST_HEADER_VERSION;
512 displayChangeRequest.header.requestType = VMMDevReq_GetDisplayChangeRequest2;
513 displayChangeRequest.eventAck = VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST;
514 BOOL fDisplayChangeQueried = DeviceIoControl(gVBoxDriver, VBOXGUEST_IOCTL_VMMREQUEST(sizeof(VMMDevDisplayChangeRequest2)), &displayChangeRequest, sizeof(VMMDevDisplayChangeRequest2),
515 &displayChangeRequest, sizeof(VMMDevDisplayChangeRequest2), &cbReturned, NULL);
516 if (!fDisplayChangeQueried)
517 {
518 /* Try the old version of the request for old VBox hosts. */
519 displayChangeRequest.header.size = sizeof(VMMDevDisplayChangeRequest);
520 displayChangeRequest.header.version = VMMDEV_REQUEST_HEADER_VERSION;
521 displayChangeRequest.header.requestType = VMMDevReq_GetDisplayChangeRequest;
522 displayChangeRequest.eventAck = VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST;
523 fDisplayChangeQueried = DeviceIoControl(gVBoxDriver, VBOXGUEST_IOCTL_VMMREQUEST(sizeof(VMMDevDisplayChangeRequest)), &displayChangeRequest, sizeof(VMMDevDisplayChangeRequest),
524 &displayChangeRequest, sizeof(VMMDevDisplayChangeRequest), &cbReturned, NULL);
525 displayChangeRequest.display = 0;
526 }
527
528 if (fDisplayChangeQueried)
529 {
530 Log(("VBoxTray: VBoxDisplayThread: VMMDevReq_GetDisplayChangeRequest2: %dx%dx%d at %d\n", displayChangeRequest.xres, displayChangeRequest.yres, displayChangeRequest.bpp, displayChangeRequest.display));
531
532 /*
533 * Only try to change video mode if the active display driver is VBox additions.
534 */
535#ifdef VBOX_WITH_WDDM
536 VBOXDISPLAY_DRIVER_TYPE enmDriverType = getVBoxDisplayDriverType (pCtx);
537
538 if (enmDriverType == VBOXDISPLAY_DRIVER_TYPE_WDDM)
539 Log(("VBoxTray: VBoxDisplayThread: Detected WDDM Driver\n"));
540
541 if (enmDriverType != VBOXDISPLAY_DRIVER_TYPE_UNKNOWN)
542#else
543 if (isVBoxDisplayDriverActive (pCtx))
544#endif
545 {
546 Log(("VBoxTray: VBoxDisplayThread: Display driver is active!\n"));
547
548 if (pCtx->pfnChangeDisplaySettingsEx != 0)
549 {
550 Log(("VBoxTray: VBoxDisplayThread: Detected W2K or later\n"));
551
552#ifdef VBOX_WITH_WDDM
553 if (enmDriverType == VBOXDISPLAY_DRIVER_TYPE_WDDM)
554 {
555 DWORD err = VBoxDispIfResize(&pCtx->pEnv->dispIf,
556 displayChangeRequest.display,
557 displayChangeRequest.xres,
558 displayChangeRequest.yres,
559 displayChangeRequest.bpp);
560 if (err == NO_ERROR)
561 {
562 Log(("VBoxTray: VBoxDisplayThread: VBoxDispIfResize succeeded\n"));
563 break;
564 }
565 Log(("VBoxTray: VBoxDisplayThread: VBoxDispIfResize failed err(%d)\n", err));
566 }
567#endif
568 /* W2K or later. */
569 if (!ResizeDisplayDevice(displayChangeRequest.display,
570 displayChangeRequest.xres,
571 displayChangeRequest.yres,
572 displayChangeRequest.bpp
573 ))
574 {
575 break;
576 }
577 }
578 else
579 {
580 Log(("VBoxTray: VBoxDisplayThread: Detected NT\n"));
581
582 /* Single monitor NT. */
583 DEVMODE devMode;
584 RT_ZERO(devMode);
585 devMode.dmSize = sizeof(DEVMODE);
586
587 /* get the current screen setup */
588 if (EnumDisplaySettings(NULL, ENUM_REGISTRY_SETTINGS, &devMode))
589 {
590 Log(("VBoxTray: VBoxDisplayThread: Current mode: %d x %d x %d at %d,%d\n",
591 devMode.dmPelsWidth, devMode.dmPelsHeight, devMode.dmBitsPerPel, devMode.dmPosition.x, devMode.dmPosition.y));
592
593 /* Check whether a mode reset or a change is requested. */
594 if (displayChangeRequest.xres || displayChangeRequest.yres || displayChangeRequest.bpp)
595 {
596 /* A change is requested.
597 * Set values which are not to be changed to the current values.
598 */
599 if (!displayChangeRequest.xres)
600 displayChangeRequest.xres = devMode.dmPelsWidth;
601 if (!displayChangeRequest.yres)
602 displayChangeRequest.yres = devMode.dmPelsHeight;
603 if (!displayChangeRequest.bpp)
604 displayChangeRequest.bpp = devMode.dmBitsPerPel;
605 }
606 else
607 {
608 /* All zero values means a forced mode reset. Do nothing. */
609 Log(("VBoxTray: VBoxDisplayThread: Forced mode reset\n"));
610 }
611
612 /* Verify that the mode is indeed changed. */
613 if ( devMode.dmPelsWidth == displayChangeRequest.xres
614 && devMode.dmPelsHeight == displayChangeRequest.yres
615 && devMode.dmBitsPerPel == displayChangeRequest.bpp)
616 {
617 Log(("VBoxTray: VBoxDisplayThread: already at desired resolution\n"));
618 break;
619 }
620
621 // without this, Windows will not ask the miniport for its
622 // mode table but uses an internal cache instead
623 DEVMODE tempDevMode = {0};
624 tempDevMode.dmSize = sizeof(DEVMODE);
625 EnumDisplaySettings(NULL, 0xffffff, &tempDevMode);
626
627 /* adjust the values that are supposed to change */
628 if (displayChangeRequest.xres)
629 devMode.dmPelsWidth = displayChangeRequest.xres;
630 if (displayChangeRequest.yres)
631 devMode.dmPelsHeight = displayChangeRequest.yres;
632 if (displayChangeRequest.bpp)
633 devMode.dmBitsPerPel = displayChangeRequest.bpp;
634
635 Log(("VBoxTray: VBoxDisplayThread: setting new mode %d x %d, %d BPP\n",
636 devMode.dmPelsWidth, devMode.dmPelsHeight, devMode.dmBitsPerPel));
637
638 /* set the new mode */
639 LONG status = ChangeDisplaySettings(&devMode, CDS_UPDATEREGISTRY);
640 if (status != DISP_CHANGE_SUCCESSFUL)
641 {
642 Log(("VBoxTray: VBoxDisplayThread: error from ChangeDisplaySettings: %d\n", status));
643
644 if (status == DISP_CHANGE_BADMODE)
645 {
646 /* Our driver can not set the requested mode. Stop trying. */
647 break;
648 }
649 }
650 else
651 {
652 /* Successfully set new video mode. */
653 break;
654 }
655 }
656 else
657 {
658 Log(("VBoxTray: VBoxDisplayThread: error from EnumDisplaySettings: %d\n", GetLastError ()));
659 break;
660 }
661 }
662 }
663 else
664 {
665 Log(("VBoxTray: VBoxDisplayThread: vboxDisplayDriver is not active\n"));
666 }
667
668 /* Retry the change a bit later. */
669 /* are we supposed to stop? */
670 if (WaitForSingleObject(pCtx->pEnv->hStopEvent, 1000) == WAIT_OBJECT_0)
671 {
672 fTerminate = true;
673 break;
674 }
675 }
676 else
677 {
678 Log(("VBoxTray: VBoxDisplayThread: error from DeviceIoControl VBOXGUEST_IOCTL_VMMREQUEST\n"));
679 /* sleep a bit to not eat too much CPU while retrying */
680 /* are we supposed to stop? */
681 if (WaitForSingleObject(pCtx->pEnv->hStopEvent, 50) == WAIT_OBJECT_0)
682 {
683 fTerminate = true;
684 break;
685 }
686 }
687 }
688 }
689 if (waitEvent.u32EventFlagsOut & VMMDEV_EVENT_MOUSE_CAPABILITIES_CHANGED)
690 VBoxServiceReloadCursor();
691 } else
692 {
693 Log(("VBoxTray: VBoxDisplayThread: error 0 from DeviceIoControl VBOXGUEST_IOCTL_WAITEVENT\n"));
694 /* sleep a bit to not eat too much CPU in case the above call always fails */
695 if (WaitForSingleObject(pCtx->pEnv->hStopEvent, 10) == WAIT_OBJECT_0)
696 {
697 fTerminate = true;
698 break;
699 }
700 }
701 } while (!fTerminate);
702
703 /*
704 * Remove event filter and graphics capability report.
705 */
706 maskInfo.u32OrMask = 0;
707 maskInfo.u32NotMask = VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST | VMMDEV_EVENT_MOUSE_CAPABILITIES_CHANGED;
708 if (!DeviceIoControl(gVBoxDriver, VBOXGUEST_IOCTL_CTL_FILTER_MASK, &maskInfo, sizeof (maskInfo), NULL, 0, &cbReturned, NULL))
709 Log(("VBoxTray: VBoxDisplayThread: DeviceIOControl(CtlMask - not) failed\n"));
710 VbglR3SetGuestCaps(0, VMMDEV_GUEST_SUPPORTS_GRAPHICS);
711
712 Log(("VBoxTray: VBoxDisplayThread: finished display change request thread\n"));
713 return 0;
714}
Note: See TracBrowser for help on using the repository browser.

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