VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/VBoxClient/seamless.cpp@ 67954

Last change on this file since 67954 was 67796, checked in by vboxsync, 7 years ago

bugref:8524: Additions/linux: play nicely with distribution-installed Additions
Remove old VbglR3InterruptEventWaits() leftover from seamless.cpp.

Since the VbglR3InterruptEventWaits() API in VBoxGuest is rather clumsy, we
decided to forbid use of VbglR3WaitEvent() in a VBoxGuest session after
VbglR3InterruptEventWaits() has been called. This change removes the last
use of it (there were only two in the whole tree) which conflicts with that:
a sanity test in seamless.cpp which is testing something no longer relevant
in the current code.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 9.9 KB
Line 
1/* $Id: seamless.cpp 67796 2017-07-05 13:37:55Z vboxsync $ */
2/** @file
3 * X11 Guest client - seamless mode: main logic, communication with the host and
4 * wrapper interface for the main code of the VBoxClient deamon. The
5 * X11-specific parts are split out into their own file for ease of testing.
6 */
7
8/*
9 * Copyright (C) 2006-2016 Oracle Corporation
10 *
11 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * available from http://www.virtualbox.org. This file is free software;
13 * you can redistribute it and/or modify it under the terms of the GNU
14 * General Public License (GPL) as published by the Free Software
15 * Foundation, in version 2 as it comes in the "COPYING" file of the
16 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18 */
19
20
21/*********************************************************************************************************************************
22* Header files *
23*********************************************************************************************************************************/
24
25#include <X11/Xlib.h>
26
27#include <VBox/log.h>
28#include <VBox/VMMDev.h>
29#include <VBox/VBoxGuestLib.h>
30#include <iprt/err.h>
31#include <iprt/mem.h>
32
33#include "VBoxClient.h"
34#include "seamless.h"
35
36#include <new>
37
38SeamlessMain::SeamlessMain(void)
39{
40 LogRelFlowFunc(("\n"));
41 mX11MonitorThread = NIL_RTTHREAD;
42 mX11MonitorThreadStopping = false;
43 mMode = VMMDev_Seamless_Disabled;
44 mfPaused = true;
45}
46
47SeamlessMain::~SeamlessMain()
48{
49 LogRelFlowFunc(("\n"));
50 stop();
51}
52
53/**
54 * Update the set of visible rectangles in the host.
55 */
56static void sendRegionUpdate(RTRECT *pRects, size_t cRects)
57{
58 LogRelFlowFunc(("\n"));
59 if (cRects && !pRects) /* Assertion */
60 {
61 LogRelFunc(("ERROR: called with null pointer!\n"));
62 return;
63 }
64 VbglR3SeamlessSendRects(cRects, pRects);
65 LogRelFlowFunc(("returning\n"));
66}
67
68/**
69 * initialise the service.
70 */
71int SeamlessMain::init(void)
72{
73 int rc;
74 const char *pcszStage;
75
76 LogRelFlowFunc(("\n"));
77 do {
78 pcszStage = "Connecting to the X server";
79 rc = mX11Monitor.init(sendRegionUpdate);
80 if (RT_FAILURE(rc))
81 break;
82 pcszStage = "Setting guest IRQ filter mask";
83 rc = VbglR3CtlFilterMask(VMMDEV_EVENT_SEAMLESS_MODE_CHANGE_REQUEST, 0);
84 if (RT_FAILURE(rc))
85 break;
86 pcszStage = "Reporting support for seamless capability";
87 rc = VbglR3SeamlessSetCap(true);
88 if (RT_FAILURE(rc))
89 break;
90 rc = startX11MonitorThread();
91 if (RT_FAILURE(rc))
92 break;
93 } while(0);
94 if (RT_FAILURE(rc))
95 VBClFatalError(("VBoxClient (seamless): failed to start. Stage: \"%s\" Error: %Rrc\n",
96 pcszStage, rc));
97 return rc;
98}
99
100/**
101 * Run the main service thread which listens for host state change
102 * notifications.
103 * @returns iprt status value. Service will be set to the stopped state on
104 * failure.
105 */
106int SeamlessMain::run(void)
107{
108 int rc = VINF_SUCCESS;
109
110 LogRelFlowFunc(("\n"));
111 /* This will only exit if something goes wrong. */
112 while (RT_SUCCESS(rc) || rc == VERR_INTERRUPTED)
113 {
114 if (RT_FAILURE(rc))
115 /* If we are not stopping, sleep for a bit to avoid using up too
116 much CPU while retrying. */
117 RTThreadYield();
118 rc = nextStateChangeEvent();
119 }
120 if (RT_FAILURE(rc))
121 {
122 LogRel(("VBoxClient (seamless): event loop failed with error: %Rrc\n",
123 rc));
124 stop();
125 }
126 return rc;
127}
128
129/** Stops the service. */
130void SeamlessMain::stop()
131{
132 LogRelFlowFunc(("\n"));
133 VbglR3SeamlessSetCap(false);
134 VbglR3CtlFilterMask(0, VMMDEV_EVENT_SEAMLESS_MODE_CHANGE_REQUEST);
135 stopX11MonitorThread();
136 mX11Monitor.uninit();
137 LogRelFlowFunc(("returning\n"));
138}
139
140/**
141 * Waits for a seamless state change events from the host and dispatch it.
142 *
143 * @returns IRPT return code.
144 */
145int SeamlessMain::nextStateChangeEvent(void)
146{
147 VMMDevSeamlessMode newMode = VMMDev_Seamless_Disabled;
148
149 LogRelFlowFunc(("\n"));
150 int rc = VbglR3SeamlessWaitEvent(&newMode);
151 if (RT_SUCCESS(rc))
152 {
153 mMode = newMode;
154 switch (newMode)
155 {
156 case VMMDev_Seamless_Visible_Region:
157 /* A simplified seamless mode, obtained by making the host VM window
158 * borderless and making the guest desktop transparent. */
159 LogRelFlowFunc(("\"Visible region\" mode requested (VBoxClient).\n"));
160 break;
161 case VMMDev_Seamless_Disabled:
162 LogRelFlowFunc(("\"Disabled\" mode requested (VBoxClient).\n"));
163 break;
164 case VMMDev_Seamless_Host_Window:
165 /* One host window represents one guest window. Not yet implemented. */
166 LogRelFunc(("Unsupported \"host window\" mode requested (VBoxClient).\n"));
167 return VERR_NOT_SUPPORTED;
168 default:
169 LogRelFunc(("Unsupported mode %d requested (VBoxClient).\n",
170 newMode));
171 return VERR_NOT_SUPPORTED;
172 }
173 }
174 if (RT_SUCCESS(rc) || rc == VERR_TRY_AGAIN)
175 {
176 if (mMode == VMMDev_Seamless_Visible_Region)
177 mfPaused = false;
178 else
179 mfPaused = true;
180 mX11Monitor.interruptEventWait();
181 }
182 else
183 {
184 LogRelFunc(("VbglR3SeamlessWaitEvent returned %Rrc (VBoxClient)\n", rc));
185 }
186 LogRelFlowFunc(("returning %Rrc\n", rc));
187 return rc;
188}
189
190/**
191 * The actual X11 window configuration change monitor thread function.
192 */
193int SeamlessMain::x11MonitorThread(RTTHREAD hThreadSelf, void *pvUser)
194{
195 RT_NOREF1(hThreadSelf);
196 SeamlessMain *pHost = (SeamlessMain *)pvUser;
197 int rc = VINF_SUCCESS;
198
199 LogRelFlowFunc(("\n"));
200 while (!pHost->mX11MonitorThreadStopping)
201 {
202 if (!pHost->mfPaused)
203 {
204 rc = pHost->mX11Monitor.start();
205 if (RT_FAILURE(rc))
206 VBClFatalError(("Failed to change the X11 seamless service state, mfPaused=%RTbool, rc=%Rrc\n",
207 pHost->mfPaused, rc));
208 }
209 pHost->mX11Monitor.nextConfigurationEvent();
210 if (pHost->mfPaused || pHost->mX11MonitorThreadStopping)
211 pHost->mX11Monitor.stop();
212 }
213 LogRelFlowFunc(("returning %Rrc\n", rc));
214 return rc;
215}
216
217/**
218 * Start the X11 window configuration change monitor thread.
219 */
220int SeamlessMain::startX11MonitorThread(void)
221{
222 int rc;
223
224 mX11MonitorThreadStopping = false;
225 if (isX11MonitorThreadRunning())
226 return VINF_SUCCESS;
227 rc = RTThreadCreate(&mX11MonitorThread, x11MonitorThread, this, 0,
228 RTTHREADTYPE_MSG_PUMP, RTTHREADFLAGS_WAITABLE,
229 "X11 events");
230 if (RT_FAILURE(rc))
231 LogRelFunc(("Warning: failed to start X11 monitor thread (VBoxClient).\n"));
232 return rc;
233}
234
235/**
236 * Send a signal to the thread function that it should exit
237 */
238int SeamlessMain::stopX11MonitorThread(void)
239{
240 int rc;
241
242 mX11MonitorThreadStopping = true;
243 if (!isX11MonitorThreadRunning())
244 return VINF_SUCCESS;
245 mX11Monitor.interruptEventWait();
246 rc = RTThreadWait(mX11MonitorThread, RT_INDEFINITE_WAIT, NULL);
247 if (RT_SUCCESS(rc))
248 mX11MonitorThread = NIL_RTTHREAD;
249 else
250 LogRelThisFunc(("Failed to stop X11 monitor thread, rc=%Rrc!\n",
251 rc));
252 return rc;
253}
254
255/** Service magic number, start of a UUID. */
256#define SEAMLESSSERVICE_MAGIC 0xd28ba727
257
258/** VBoxClient service class wrapping the logic for the seamless service while
259 * the main VBoxClient code provides the daemon logic needed by all services.
260 */
261struct SEAMLESSSERVICE
262{
263 /** The service interface. */
264 struct VBCLSERVICE *pInterface;
265 /** Magic number for sanity checks. */
266 uint32_t magic;
267 /** Seamless service object. */
268 SeamlessMain mSeamless;
269 /** Are we initialised yet? */
270 bool mIsInitialised;
271};
272
273static const char *getPidFilePath(void)
274{
275 return ".vboxclient-seamless.pid";
276}
277
278static struct SEAMLESSSERVICE *getClassFromInterface(struct VBCLSERVICE **
279 ppInterface)
280{
281 struct SEAMLESSSERVICE *pSelf = (struct SEAMLESSSERVICE *)ppInterface;
282 if (pSelf->magic != SEAMLESSSERVICE_MAGIC)
283 VBClFatalError(("Bad seamless service object!\n"));
284 return pSelf;
285}
286
287static int init(struct VBCLSERVICE **ppInterface)
288{
289 struct SEAMLESSSERVICE *pSelf = getClassFromInterface(ppInterface);
290 int rc;
291
292 if (pSelf->mIsInitialised)
293 return VERR_INTERNAL_ERROR;
294 /* Initialise the guest library. */
295 rc = VbglR3InitUser();
296 if (RT_FAILURE(rc))
297 VBClFatalError(("Failed to connect to the VirtualBox kernel service, rc=%Rrc\n", rc));
298 rc = pSelf->mSeamless.init();
299 if (RT_FAILURE(rc))
300 return rc;
301 pSelf->mIsInitialised = true;
302 return VINF_SUCCESS;
303}
304
305static int run(struct VBCLSERVICE **ppInterface, bool fDaemonised)
306{
307 RT_NOREF1(fDaemonised);
308 struct SEAMLESSSERVICE *pSelf = getClassFromInterface(ppInterface);
309 int rc;
310
311 if (!pSelf->mIsInitialised)
312 return VERR_INTERNAL_ERROR;
313 /* This only exits on error. */
314 rc = pSelf->mSeamless.run();
315 pSelf->mIsInitialised = false;
316 return rc;
317}
318
319static void cleanup(struct VBCLSERVICE **ppInterface)
320{
321 NOREF(ppInterface);
322 VbglR3SeamlessSetCap(false);
323 VbglR3Term();
324}
325
326struct VBCLSERVICE vbclSeamlessInterface =
327{
328 getPidFilePath,
329 init,
330 run,
331 cleanup
332};
333
334struct VBCLSERVICE **VBClGetSeamlessService()
335{
336 struct SEAMLESSSERVICE *pService =
337 (struct SEAMLESSSERVICE *)RTMemAlloc(sizeof(*pService));
338
339 if (!pService)
340 VBClFatalError(("Out of memory\n"));
341 pService->pInterface = &vbclSeamlessInterface;
342 pService->magic = SEAMLESSSERVICE_MAGIC;
343 new(&pService->mSeamless) SeamlessMain();
344 pService->mIsInitialised = false;
345 return &pService->pInterface;
346}
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