/* $Id: display-svga.cpp 68664 2017-09-05 18:48:28Z vboxsync $ */ /** @file * X11 guest client - VMSVGA emulation resize event pass-through to guest * driver. */ /* * Copyright (C) 2016 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 #include #include #include /** Maximum number of supported screens. DRM and X11 both limit this to 32. */ #define VMW_MAX_HEADS 32 /* VMWare kernel driver control parts definitions. */ #ifdef RT_OS_LINUX # include #else /* Solaris and BSDs, in case they ever adopt the DRM driver. */ # include #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)); } /* VMWare X.Org driver control parts definitions. */ #include struct X11CONTEXT { Display *pDisplay; int hRandRMajor; int hVMWMajor; }; static void x11Connect(struct X11CONTEXT *pContext) { int dummy; if (pContext->pDisplay != NULL) VBClFatalError(("%s called with bad argument\n", __func__)); pContext->pDisplay = XOpenDisplay(NULL); if (pContext->pDisplay == NULL) return; if ( !XQueryExtension(pContext->pDisplay, "RANDR", &pContext->hRandRMajor, &dummy, &dummy) || !XQueryExtension(pContext->pDisplay, "VMWARE_CTRL", &pContext->hVMWMajor, &dummy, &dummy)) { XCloseDisplay(pContext->pDisplay); pContext->pDisplay = NULL; } } #define X11_VMW_TOPOLOGY_REQ 2 struct X11VMWRECT /* xXineramaScreenInfo in Xlib headers. */ { int16_t x; int16_t y; uint16_t w; uint16_t h; }; AssertCompileSize(struct X11VMWRECT, 8); struct X11REQHEADER { uint8_t hMajor; uint8_t idType; uint16_t cd; }; struct X11VMWTOPOLOGYREQ { struct X11REQHEADER header; uint32_t idX11Screen; uint32_t cScreens; uint32_t u32Pad; struct X11VMWRECT aRects[1]; }; AssertCompileSize(struct X11VMWTOPOLOGYREQ, 24); #define X11_VMW_TOPOLOGY_REPLY_SIZE 32 #define X11_VMW_RESOLUTION_REQUEST 1 struct X11VMWRESOLUTIONREQ { struct X11REQHEADER header; uint32_t idX11Screen; uint32_t x; uint32_t y; }; AssertCompileSize(struct X11VMWRESOLUTIONREQ, 16); #define X11_VMW_RESOLUTION_REPLY_SIZE 32 #define X11_RANDR_GET_SCREEN_REQUEST 5 struct X11RANDRGETSCREENREQ { struct X11REQHEADER header; uint32_t hWindow; }; AssertCompileSize(struct X11RANDRGETSCREENREQ, 8); #define X11_RANDR_GET_SCREEN_REPLY_SIZE 32 /* This was a macro in old Xlib versions and a function in newer ones; the * display members touched by the macro were declared as ABI for compatibility * reasons. To simplify building with different generations, we duplicate the * code. */ static void x11GetRequest(struct X11CONTEXT *pContext, uint8_t hMajor, uint8_t idType, size_t cb, struct X11REQHEADER **ppReq) { if (pContext->pDisplay->bufptr + cb > pContext->pDisplay->bufmax) _XFlush(pContext->pDisplay); if (pContext->pDisplay->bufptr + cb > pContext->pDisplay->bufmax) VBClFatalError(("%s display buffer overflow.\n", __func__)); if (cb % 4 != 0) VBClFatalError(("%s bad parameter.\n", __func__)); pContext->pDisplay->last_req = pContext->pDisplay->bufptr; *ppReq = (struct X11REQHEADER *)pContext->pDisplay->bufptr; (*ppReq)->hMajor = hMajor; (*ppReq)->idType = idType; (*ppReq)->cd = cb / 4; pContext->pDisplay->bufptr += cb; pContext->pDisplay->request++; } static void x11SendHints(struct X11CONTEXT *pContext, struct DRMVMWRECT *pRects, unsigned cRects) { unsigned i; struct X11VMWTOPOLOGYREQ *pReqTopology; uint8_t repTopology[X11_VMW_TOPOLOGY_REPLY_SIZE]; struct X11VMWRESOLUTIONREQ *pReqResolution; uint8_t repResolution[X11_VMW_RESOLUTION_REPLY_SIZE]; if (!VALID_PTR(pContext->pDisplay)) VBClFatalError(("%s bad display argument.\n", __func__)); if (cRects == 0) return; /* Try a topology (multiple screen) request. */ x11GetRequest(pContext, pContext->hVMWMajor, X11_VMW_TOPOLOGY_REQ, sizeof(struct X11VMWTOPOLOGYREQ) + sizeof(struct X11VMWRECT) * (cRects - 1), (struct X11REQHEADER **)&pReqTopology); pReqTopology->idX11Screen = DefaultScreen(pContext->pDisplay); pReqTopology->cScreens = cRects; for (i = 0; i < cRects; ++i) { pReqTopology->aRects[i].x = pRects[i].x; pReqTopology->aRects[i].y = pRects[i].y; pReqTopology->aRects[i].w = pRects[i].w; pReqTopology->aRects[i].h = pRects[i].h; } _XSend(pContext->pDisplay, NULL, 0); if (_XReply(pContext->pDisplay, (xReply *)&repTopology, 0, xTrue)) return; /* That failed, so try the old single screen set resolution. We prefer * simpler code to negligeably improved efficiency, so we just always try * both requests instead of doing version checks or caching. */ x11GetRequest(pContext, pContext->hVMWMajor, X11_VMW_RESOLUTION_REQUEST, sizeof(struct X11VMWTOPOLOGYREQ), (struct X11REQHEADER **)&pReqResolution); pReqResolution->idX11Screen = DefaultScreen(pContext->pDisplay); pReqResolution->x = pRects[0].x; pReqResolution->y = pRects[0].y; if (_XReply(pContext->pDisplay, (xReply *)&repResolution, 0, xTrue)) return; /* What now? */ VBClFatalError(("%s failed to set resolution\n", __func__)); } /** Call RRGetScreenInfo to wake up the server to the new modes. */ static void x11GetScreenInfo(struct X11CONTEXT *pContext) { struct X11RANDRGETSCREENREQ *pReqGetScreen; uint8_t repGetScreen[X11_RANDR_GET_SCREEN_REPLY_SIZE]; if (!VALID_PTR(pContext->pDisplay)) VBClFatalError(("%s bad display argument.\n", __func__)); x11GetRequest(pContext, pContext->hRandRMajor, X11_RANDR_GET_SCREEN_REQUEST, sizeof(struct X11RANDRGETSCREENREQ), (struct X11REQHEADER **)&pReqGetScreen); pReqGetScreen->hWindow = DefaultRootWindow(pContext->pDisplay); _XSend(pContext->pDisplay, NULL, 0); if (!_XReply(pContext->pDisplay, (xReply *)&repGetScreen, 0, xTrue)) VBClFatalError(("%s failed to set resolution\n", __func__)); } 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 }; struct X11CONTEXT x11Context = { NULL }; 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) { x11Connect(&x11Context); if (x11Context.pDisplay == NULL) 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]) { aRects[cHeads].x = (int32_t)adx[i]; aRects[cHeads].y = (int32_t)ady[i]; aRects[cHeads].w = acx[i]; aRects[cHeads].h = acy[i]; ++cHeads; } } if (drmContext.hDevice != NIL_RTFILE) drmSendHints(&drmContext, aRects, cHeads); else { x11SendHints(&x11Context, aRects, cHeads); x11GetScreenInfo(&x11Context); } } } struct VBCLSERVICE interface = { getPidFilePath, VBClServiceDefaultHandler, /* Init */ run, VBClServiceDefaultCleanup }, *pInterface = &interface; struct VBCLSERVICE **VBClDisplaySVGAService() { return &pInterface; }