VirtualBox

source: vbox/trunk/src/VBox/Devices/Input/DrvMouseQueue.cpp@ 90778

Last change on this file since 90778 was 89832, checked in by vboxsync, 3 years ago

DrvMouseQueue,DrvKeyboardQueue: Don't keep items in the queue unless VERR_TRY_AGAIN is returns, as per documentation. ]

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 14.5 KB
Line 
1/* $Id: DrvMouseQueue.cpp 89832 2021-06-22 13:12:25Z vboxsync $ */
2/** @file
3 * VBox input devices: Mouse queue driver
4 */
5
6/*
7 * Copyright (C) 2006-2020 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
18
19/*********************************************************************************************************************************
20* Header Files *
21*********************************************************************************************************************************/
22#define LOG_GROUP LOG_GROUP_DRV_MOUSE_QUEUE
23#include <VBox/vmm/pdmdrv.h>
24#include <iprt/assert.h>
25#include <iprt/uuid.h>
26
27#include "VBoxDD.h"
28
29
30
31/*********************************************************************************************************************************
32* Structures and Typedefs *
33*********************************************************************************************************************************/
34/**
35 * Mouse queue driver instance data.
36 *
37 * @implements PDMIMOUSECONNECTOR
38 * @implements PDMIMOUSEPORT
39 */
40typedef struct DRVMOUSEQUEUE
41{
42 /** Pointer to the driver instance structure. */
43 PPDMDRVINS pDrvIns;
44 /** Pointer to the mouse port interface of the driver/device above us. */
45 PPDMIMOUSEPORT pUpPort;
46 /** Pointer to the mouse port interface of the driver/device below us. */
47 PPDMIMOUSECONNECTOR pDownConnector;
48 /** Our mouse connector interface. */
49 PDMIMOUSECONNECTOR IConnector;
50 /** Our mouse port interface. */
51 PDMIMOUSEPORT IPort;
52 /** The queue handle. */
53 PPDMQUEUE pQueue;
54 /** Discard input when this flag is set.
55 * We only accept input when the VM is running. */
56 bool fInactive;
57} DRVMOUSEQUEUE, *PDRVMOUSEQUEUE;
58
59
60/**
61 * Event type for @a DRVMOUSEQUEUEITEM
62 */
63enum EVENTTYPE { RELATIVE, ABSOLUTE };
64
65/**
66 * Mouse queue item.
67 */
68typedef struct DRVMOUSEQUEUEITEM
69{
70 /** The core part owned by the queue manager. */
71 PDMQUEUEITEMCORE Core;
72 enum EVENTTYPE enmType;
73 union
74 {
75 uint32_t padding[5];
76 struct
77 {
78 uint32_t fButtons;
79 int32_t dx;
80 int32_t dy;
81 int32_t dz;
82 int32_t dw;
83 } Relative;
84 struct
85 {
86 uint32_t fButtons;
87 uint32_t x;
88 uint32_t y;
89 int32_t dz;
90 int32_t dw;
91 } Absolute;
92 } u;
93} DRVMOUSEQUEUEITEM, *PDRVMOUSEQUEUEITEM;
94
95
96
97/* -=-=-=-=- IBase -=-=-=-=- */
98
99/**
100 * @interface_method_impl{PDMIBASE,pfnQueryInterface}
101 */
102static DECLCALLBACK(void *) drvMouseQueueQueryInterface(PPDMIBASE pInterface, const char *pszIID)
103{
104 PPDMDRVINS pDrvIns = PDMIBASE_2_PDMDRV(pInterface);
105 PDRVMOUSEQUEUE pThis = PDMINS_2_DATA(pDrvIns, PDRVMOUSEQUEUE);
106 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIBASE, &pDrvIns->IBase);
107 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIMOUSEPORT, &pThis->IPort);
108 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIMOUSECONNECTOR, &pThis->IConnector);
109 return NULL;
110}
111
112
113/* -=-=-=-=- IMousePort -=-=-=-=- */
114
115/** Converts a pointer to DRVMOUSEQUEUE::Port to a DRVMOUSEQUEUE pointer. */
116#define IMOUSEPORT_2_DRVMOUSEQUEUE(pInterface) ( (PDRVMOUSEQUEUE)((char *)(pInterface) - RT_UOFFSETOF(DRVMOUSEQUEUE, IPort)) )
117
118
119/**
120 * @interface_method_impl{PDMIMOUSEPORT,pfnPutEvent}
121 */
122static DECLCALLBACK(int) drvMouseQueuePutEvent(PPDMIMOUSEPORT pInterface,
123 int32_t dx, int32_t dy,
124 int32_t dz, int32_t dw,
125 uint32_t fButtons)
126{
127 PDRVMOUSEQUEUE pDrv = IMOUSEPORT_2_DRVMOUSEQUEUE(pInterface);
128 if (pDrv->fInactive)
129 return VINF_SUCCESS;
130
131 PDRVMOUSEQUEUEITEM pItem = (PDRVMOUSEQUEUEITEM)PDMQueueAlloc(pDrv->pQueue);
132 if (pItem)
133 {
134 RT_ZERO(pItem->u.padding);
135 pItem->enmType = RELATIVE;
136 pItem->u.Relative.dx = dx;
137 pItem->u.Relative.dy = dy;
138 pItem->u.Relative.dz = dz;
139 pItem->u.Relative.dw = dw;
140 pItem->u.Relative.fButtons = fButtons;
141 PDMQueueInsert(pDrv->pQueue, &pItem->Core);
142 return VINF_SUCCESS;
143 }
144 return VERR_PDM_NO_QUEUE_ITEMS;
145}
146
147/**
148 * @interface_method_impl{PDMIMOUSEPORT,pfnPutEventAbs}
149 */
150static DECLCALLBACK(int) drvMouseQueuePutEventAbs(PPDMIMOUSEPORT pInterface,
151 uint32_t x, uint32_t y,
152 int32_t dz, int32_t dw,
153 uint32_t fButtons)
154{
155 PDRVMOUSEQUEUE pDrv = IMOUSEPORT_2_DRVMOUSEQUEUE(pInterface);
156 if (pDrv->fInactive)
157 return VINF_SUCCESS;
158
159 PDRVMOUSEQUEUEITEM pItem = (PDRVMOUSEQUEUEITEM)PDMQueueAlloc(pDrv->pQueue);
160 if (pItem)
161 {
162 RT_ZERO(pItem->u.padding);
163 pItem->enmType = ABSOLUTE;
164 pItem->u.Absolute.x = x;
165 pItem->u.Absolute.y = y;
166 pItem->u.Absolute.dz = dz;
167 pItem->u.Absolute.dw = dw;
168 pItem->u.Absolute.fButtons = fButtons;
169 PDMQueueInsert(pDrv->pQueue, &pItem->Core);
170 return VINF_SUCCESS;
171 }
172 return VERR_PDM_NO_QUEUE_ITEMS;
173}
174
175
176static DECLCALLBACK(int) drvMouseQueuePutEventMultiTouch(PPDMIMOUSEPORT pInterface,
177 uint8_t cContacts,
178 const uint64_t *pau64Contacts,
179 uint32_t u32ScanTime)
180{
181 PDRVMOUSEQUEUE pThis = IMOUSEPORT_2_DRVMOUSEQUEUE(pInterface);
182 return pThis->pUpPort->pfnPutEventMultiTouch(pThis->pUpPort, cContacts, pau64Contacts, u32ScanTime);
183}
184
185/* -=-=-=-=- IConnector -=-=-=-=- */
186
187#define PPDMIMOUSECONNECTOR_2_DRVMOUSEQUEUE(pInterface) ( (PDRVMOUSEQUEUE)((char *)(pInterface) - RT_UOFFSETOF(DRVMOUSEQUEUE, IConnector)) )
188
189
190/**
191 * Pass absolute mode status changes from the guest through to the frontend
192 * driver.
193 *
194 * @param pInterface Pointer to the mouse connector interface structure.
195 * @param fRel Is relative reporting supported?
196 * @param fAbs Is absolute reporting supported?
197 * @param fMT Is multi-touch reporting supported?
198 */
199static DECLCALLBACK(void) drvMousePassThruReportModes(PPDMIMOUSECONNECTOR pInterface, bool fRel, bool fAbs, bool fMT)
200{
201 PDRVMOUSEQUEUE pDrv = PPDMIMOUSECONNECTOR_2_DRVMOUSEQUEUE(pInterface);
202 pDrv->pDownConnector->pfnReportModes(pDrv->pDownConnector, fRel, fAbs, fMT);
203}
204
205
206/**
207 * Flush the mouse queue if there are pending events.
208 *
209 * @param pInterface Pointer to the mouse connector interface structure.
210 */
211static DECLCALLBACK(void) drvMouseFlushQueue(PPDMIMOUSECONNECTOR pInterface)
212{
213 PDRVMOUSEQUEUE pDrv = PPDMIMOUSECONNECTOR_2_DRVMOUSEQUEUE(pInterface);
214
215 AssertPtr(pDrv->pQueue);
216 PDMQueueFlushIfNecessary(pDrv->pQueue);
217}
218
219
220
221/* -=-=-=-=- queue -=-=-=-=- */
222
223/**
224 * Queue callback for processing a queued item.
225 *
226 * @returns Success indicator.
227 * If false the item will not be removed and the flushing will stop.
228 * @param pDrvIns The driver instance.
229 * @param pItemCore Pointer to the queue item to process.
230 */
231static DECLCALLBACK(bool) drvMouseQueueConsumer(PPDMDRVINS pDrvIns, PPDMQUEUEITEMCORE pItemCore)
232{
233 PDRVMOUSEQUEUE pThis = PDMINS_2_DATA(pDrvIns, PDRVMOUSEQUEUE);
234 PDRVMOUSEQUEUEITEM pItem = (PDRVMOUSEQUEUEITEM)pItemCore;
235 int rc;
236 if (pItem->enmType == RELATIVE)
237 rc = pThis->pUpPort->pfnPutEvent(pThis->pUpPort,
238 pItem->u.Relative.dx,
239 pItem->u.Relative.dy,
240 pItem->u.Relative.dz,
241 pItem->u.Relative.dw,
242 pItem->u.Relative.fButtons);
243 else if (pItem->enmType == ABSOLUTE)
244 rc = pThis->pUpPort->pfnPutEventAbs(pThis->pUpPort,
245 pItem->u.Absolute.x,
246 pItem->u.Absolute.y,
247 pItem->u.Absolute.dz,
248 pItem->u.Absolute.dw,
249 pItem->u.Absolute.fButtons);
250 else
251 AssertMsgFailedReturn(("enmType=%d\n", pItem->enmType), true /* remove buggy data */);
252 return rc != VERR_TRY_AGAIN;
253}
254
255
256/* -=-=-=-=- driver interface -=-=-=-=- */
257
258/**
259 * Power On notification.
260 *
261 * @returns VBox status code.
262 * @param pDrvIns The drive instance data.
263 */
264static DECLCALLBACK(void) drvMouseQueuePowerOn(PPDMDRVINS pDrvIns)
265{
266 PDRVMOUSEQUEUE pThis = PDMINS_2_DATA(pDrvIns, PDRVMOUSEQUEUE);
267 pThis->fInactive = false;
268}
269
270
271/**
272 * Reset notification.
273 *
274 * @returns VBox status code.
275 * @param pDrvIns The drive instance data.
276 */
277static DECLCALLBACK(void) drvMouseQueueReset(PPDMDRVINS pDrvIns)
278{
279 //PDRVKBDQUEUE pThis = PDMINS_2_DATA(pDrvIns, PDRVKBDQUEUE);
280 /** @todo purge the queue on reset. */
281 RT_NOREF(pDrvIns);
282}
283
284
285/**
286 * Suspend notification.
287 *
288 * @returns VBox status code.
289 * @param pDrvIns The drive instance data.
290 */
291static DECLCALLBACK(void) drvMouseQueueSuspend(PPDMDRVINS pDrvIns)
292{
293 PDRVMOUSEQUEUE pThis = PDMINS_2_DATA(pDrvIns, PDRVMOUSEQUEUE);
294 pThis->fInactive = true;
295}
296
297
298/**
299 * Resume notification.
300 *
301 * @returns VBox status code.
302 * @param pDrvIns The drive instance data.
303 */
304static DECLCALLBACK(void) drvMouseQueueResume(PPDMDRVINS pDrvIns)
305{
306 PDRVMOUSEQUEUE pThis = PDMINS_2_DATA(pDrvIns, PDRVMOUSEQUEUE);
307 pThis->fInactive = false;
308}
309
310
311/**
312 * Power Off notification.
313 *
314 * @param pDrvIns The drive instance data.
315 */
316static DECLCALLBACK(void) drvMouseQueuePowerOff(PPDMDRVINS pDrvIns)
317{
318 PDRVMOUSEQUEUE pThis = PDMINS_2_DATA(pDrvIns, PDRVMOUSEQUEUE);
319 pThis->fInactive = true;
320}
321
322
323/**
324 * Construct a mouse driver instance.
325 *
326 * @copydoc FNPDMDRVCONSTRUCT
327 */
328static DECLCALLBACK(int) drvMouseQueueConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags)
329{
330 PDRVMOUSEQUEUE pDrv = PDMINS_2_DATA(pDrvIns, PDRVMOUSEQUEUE);
331 LogFlow(("drvMouseQueueConstruct: iInstance=%d\n", pDrvIns->iInstance));
332 PDMDRV_CHECK_VERSIONS_RETURN(pDrvIns);
333
334 /*
335 * Validate configuration.
336 */
337 if (!CFGMR3AreValuesValid(pCfg, "QueueSize\0Interval\0"))
338 return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES;
339
340 /*
341 * Init basic data members and interfaces.
342 */
343 pDrv->fInactive = true;
344 /* IBase. */
345 pDrvIns->IBase.pfnQueryInterface = drvMouseQueueQueryInterface;
346 /* IMouseConnector. */
347 pDrv->IConnector.pfnReportModes = drvMousePassThruReportModes;
348 pDrv->IConnector.pfnFlushQueue = drvMouseFlushQueue;
349 /* IMousePort. */
350 pDrv->IPort.pfnPutEvent = drvMouseQueuePutEvent;
351 pDrv->IPort.pfnPutEventAbs = drvMouseQueuePutEventAbs;
352 pDrv->IPort.pfnPutEventMultiTouch = drvMouseQueuePutEventMultiTouch;
353
354 /*
355 * Get the IMousePort interface of the above driver/device.
356 */
357 pDrv->pUpPort = PDMIBASE_QUERY_INTERFACE(pDrvIns->pUpBase, PDMIMOUSEPORT);
358 if (!pDrv->pUpPort)
359 {
360 AssertMsgFailed(("Configuration error: No mouse port interface above!\n"));
361 return VERR_PDM_MISSING_INTERFACE_ABOVE;
362 }
363
364 /*
365 * Attach driver below and query it's connector interface.
366 */
367 PPDMIBASE pDownBase;
368 int rc = PDMDrvHlpAttach(pDrvIns, fFlags, &pDownBase);
369 if (RT_FAILURE(rc))
370 {
371 AssertMsgFailed(("Failed to attach driver below us! rc=%Rra\n", rc));
372 return rc;
373 }
374 pDrv->pDownConnector = PDMIBASE_QUERY_INTERFACE(pDownBase, PDMIMOUSECONNECTOR);
375 if (!pDrv->pDownConnector)
376 {
377 AssertMsgFailed(("Configuration error: No mouse connector interface below!\n"));
378 return VERR_PDM_MISSING_INTERFACE_BELOW;
379 }
380
381 /*
382 * Create the queue.
383 */
384 uint32_t cMilliesInterval = 0;
385 rc = CFGMR3QueryU32(pCfg, "Interval", &cMilliesInterval);
386 if (rc == VERR_CFGM_VALUE_NOT_FOUND)
387 cMilliesInterval = 0;
388 else if (RT_FAILURE(rc))
389 {
390 AssertMsgFailed(("Configuration error: 32-bit \"Interval\" -> rc=%Rrc\n", rc));
391 return rc;
392 }
393
394 uint32_t cItems = 0;
395 rc = CFGMR3QueryU32(pCfg, "QueueSize", &cItems);
396 if (rc == VERR_CFGM_VALUE_NOT_FOUND)
397 cItems = 128;
398 else if (RT_FAILURE(rc))
399 {
400 AssertMsgFailed(("Configuration error: 32-bit \"QueueSize\" -> rc=%Rrc\n", rc));
401 return rc;
402 }
403
404 rc = PDMDrvHlpQueueCreate(pDrvIns, sizeof(DRVMOUSEQUEUEITEM), cItems, cMilliesInterval,
405 drvMouseQueueConsumer, "Mouse", &pDrv->pQueue);
406 if (RT_FAILURE(rc))
407 {
408 AssertMsgFailed(("Failed to create driver: cItems=%d cMilliesInterval=%d rc=%Rrc\n", cItems, cMilliesInterval, rc));
409 return rc;
410 }
411
412 return VINF_SUCCESS;
413}
414
415
416/**
417 * Mouse queue driver registration record.
418 */
419const PDMDRVREG g_DrvMouseQueue =
420{
421 /* u32Version */
422 PDM_DRVREG_VERSION,
423 /* szName */
424 "MouseQueue",
425 /* szRCMod */
426 "",
427 /* szR0Mod */
428 "",
429 /* pszDescription */
430 "Mouse queue driver to plug in between the key source and the device to do queueing and inter-thread transport.",
431 /* fFlags */
432 PDM_DRVREG_FLAGS_HOST_BITS_DEFAULT,
433 /* fClass. */
434 PDM_DRVREG_CLASS_MOUSE,
435 /* cMaxInstances */
436 ~0U,
437 /* cbInstance */
438 sizeof(DRVMOUSEQUEUE),
439 /* pfnConstruct */
440 drvMouseQueueConstruct,
441 /* pfnRelocate */
442 NULL,
443 /* pfnDestruct */
444 NULL,
445 /* pfnIOCtl */
446 NULL,
447 /* pfnPowerOn */
448 drvMouseQueuePowerOn,
449 /* pfnReset */
450 drvMouseQueueReset,
451 /* pfnSuspend */
452 drvMouseQueueSuspend,
453 /* pfnResume */
454 drvMouseQueueResume,
455 /* pfnAttach */
456 NULL,
457 /* pfnDetach */
458 NULL,
459 /* pfnPowerOff */
460 drvMouseQueuePowerOff,
461 /* pfnSoftReset */
462 NULL,
463 /* u32EndVersion */
464 PDM_DRVREG_VERSION
465};
466
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use