1 | /* $Id: VBoxUsbHook.h 106061 2024-09-16 14:03:52Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * Driver Dispatch Table Hooking API impl
|
---|
4 | */
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2011-2024 Oracle and/or its affiliates.
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox base platform packages, as
|
---|
9 | * available from https://www.virtualbox.org.
|
---|
10 | *
|
---|
11 | * This program is free software; you can redistribute it and/or
|
---|
12 | * modify it under the terms of the GNU General Public License
|
---|
13 | * as published by the Free Software Foundation, in version 3 of the
|
---|
14 | * License.
|
---|
15 | *
|
---|
16 | * This program is distributed in the hope that it will be useful, but
|
---|
17 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
19 | * General Public License for more details.
|
---|
20 | *
|
---|
21 | * You should have received a copy of the GNU General Public License
|
---|
22 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
23 | *
|
---|
24 | * The contents of this file may alternatively be used under the terms
|
---|
25 | * of the Common Development and Distribution License Version 1.0
|
---|
26 | * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
27 | * in the VirtualBox distribution, in which case the provisions of the
|
---|
28 | * CDDL are applicable instead of those of the GPL.
|
---|
29 | *
|
---|
30 | * You may elect to license modified versions of this file under the
|
---|
31 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
32 | *
|
---|
33 | * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
34 | */
|
---|
35 |
|
---|
36 | #ifndef VBOX_INCLUDED_SRC_VBoxUSB_win_mon_VBoxUsbHook_h
|
---|
37 | #define VBOX_INCLUDED_SRC_VBoxUSB_win_mon_VBoxUsbHook_h
|
---|
38 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
39 | # pragma once
|
---|
40 | #endif
|
---|
41 |
|
---|
42 | #include "VBoxUsbMon.h"
|
---|
43 |
|
---|
44 | typedef struct VBOXUSBHOOK_ENTRY
|
---|
45 | {
|
---|
46 | LIST_ENTRY RequestList;
|
---|
47 | KSPIN_LOCK Lock;
|
---|
48 | BOOLEAN fIsInstalled;
|
---|
49 | PDRIVER_DISPATCH pfnOldHandler;
|
---|
50 | VBOXDRVTOOL_REF HookRef;
|
---|
51 | PDRIVER_OBJECT pDrvObj;
|
---|
52 | UCHAR iMjFunction;
|
---|
53 | PDRIVER_DISPATCH pfnHook;
|
---|
54 | } VBOXUSBHOOK_ENTRY, *PVBOXUSBHOOK_ENTRY;
|
---|
55 |
|
---|
56 | typedef struct VBOXUSBHOOK_REQUEST
|
---|
57 | {
|
---|
58 | LIST_ENTRY ListEntry;
|
---|
59 | PVBOXUSBHOOK_ENTRY pHook;
|
---|
60 | IO_STACK_LOCATION OldLocation;
|
---|
61 | PDEVICE_OBJECT pDevObj;
|
---|
62 | PIRP pIrp;
|
---|
63 | BOOLEAN bCompletionStopped;
|
---|
64 | } VBOXUSBHOOK_REQUEST, *PVBOXUSBHOOK_REQUEST;
|
---|
65 |
|
---|
66 | DECLINLINE(BOOLEAN) VBoxUsbHookRetain(PVBOXUSBHOOK_ENTRY pHook)
|
---|
67 | {
|
---|
68 | KIRQL Irql;
|
---|
69 | KeAcquireSpinLock(&pHook->Lock, &Irql);
|
---|
70 | if (!pHook->fIsInstalled)
|
---|
71 | {
|
---|
72 | KeReleaseSpinLock(&pHook->Lock, Irql);
|
---|
73 | return FALSE;
|
---|
74 | }
|
---|
75 |
|
---|
76 | VBoxDrvToolRefRetain(&pHook->HookRef);
|
---|
77 | KeReleaseSpinLock(&pHook->Lock, Irql);
|
---|
78 | return TRUE;
|
---|
79 | }
|
---|
80 |
|
---|
81 | DECLINLINE(VOID) VBoxUsbHookRelease(PVBOXUSBHOOK_ENTRY pHook)
|
---|
82 | {
|
---|
83 | VBoxDrvToolRefRelease(&pHook->HookRef);
|
---|
84 | }
|
---|
85 |
|
---|
86 | VOID VBoxUsbHookInit(PVBOXUSBHOOK_ENTRY pHook, PDRIVER_OBJECT pDrvObj, UCHAR iMjFunction, PDRIVER_DISPATCH pfnHook);
|
---|
87 | NTSTATUS VBoxUsbHookInstall(PVBOXUSBHOOK_ENTRY pHook);
|
---|
88 | NTSTATUS VBoxUsbHookUninstall(PVBOXUSBHOOK_ENTRY pHook);
|
---|
89 | BOOLEAN VBoxUsbHookIsInstalled(PVBOXUSBHOOK_ENTRY pHook);
|
---|
90 | NTSTATUS VBoxUsbHookRequestPassDownHookCompletion(PVBOXUSBHOOK_ENTRY pHook, PDEVICE_OBJECT pDevObj, PIRP pIrp, PIO_COMPLETION_ROUTINE pfnCompletion, PVBOXUSBHOOK_REQUEST pRequest);
|
---|
91 | NTSTATUS VBoxUsbHookRequestPassDownHookSkip(PVBOXUSBHOOK_ENTRY pHook, PDEVICE_OBJECT pDevObj, PIRP pIrp);
|
---|
92 | NTSTATUS VBoxUsbHookRequestMoreProcessingRequired(PVBOXUSBHOOK_ENTRY pHook, PDEVICE_OBJECT pDevObj, PIRP pIrp, PVBOXUSBHOOK_REQUEST pRequest);
|
---|
93 | NTSTATUS VBoxUsbHookRequestComplete(PVBOXUSBHOOK_ENTRY pHook, PDEVICE_OBJECT pDevObj, PIRP pIrp, PVBOXUSBHOOK_REQUEST pRequest);
|
---|
94 | VOID VBoxUsbHookVerifyCompletion(PVBOXUSBHOOK_ENTRY pHook, PVBOXUSBHOOK_REQUEST pRequest, PIRP pIrp);
|
---|
95 |
|
---|
96 | #endif /* !VBOX_INCLUDED_SRC_VBoxUSB_win_mon_VBoxUsbHook_h */
|
---|