1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
|
/** @file
* USBFilter - USB Filter constructs shared by kernel and user mode.
* (DEV,HDrv,Main)
*/
/*
* Copyright (C) 2007 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.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*/
#ifndef ___VBox_usbfilter_h
#define ___VBox_usbfilter_h
#include <iprt/types.h>
#include <iprt/assert.h>
#include <VBox/cdefs.h>
#include <VBox/usb.h>
/** @defgroup grp_USBFilter USBFilter - USB Filter constructs shared by kernel and user mode
* @ingroup grp_USBLib
* @{
*/
/**
* How to match a field.
*
* @remarks This is a binary interface (drivers).
*/
typedef enum USBFILTERMATCH
{
/** The usual invalid first zero value. */
USBFILTERMATCH_INVALID = 0,
/** Ignore this field (always matching).
* Device Data: No value present. */
USBFILTERMATCH_IGNORE,
/** Only require this field to be present on the device. */
USBFILTERMATCH_PRESENT,
/** Numeric Field: The first numeric field matching method. */
USBFILTERMATCH_NUM_FIRST,
/** Numeric Field: Exact match, required to be present. */
USBFILTERMATCH_NUM_EXACT = USBFILTERMATCH_NUM_FIRST,
/** Numeric Field: Exact match or not present. */
USBFILTERMATCH_NUM_EXACT_NP,
/** Numeric Field: Expression match, required to be present.
* The expression is represented as a string. */
USBFILTERMATCH_NUM_EXPRESSION,
/** Numeric Field: Expression match or not present.
* The expression is represented as a string. */
USBFILTERMATCH_NUM_EXPRESSION_NP,
/** Numeric Field: The last numeric field matching method (inclusive). */
USBFILTERMATCH_NUM_LAST = USBFILTERMATCH_NUM_EXPRESSION_NP,
/** String Field: The first string field matching method. */
USBFILTERMATCH_STR_FIRST,
/** String Field: Exact match, required to be present. */
USBFILTERMATCH_STR_EXACT = USBFILTERMATCH_STR_FIRST,
/** String Field: Exact match or not present. */
USBFILTERMATCH_STR_EXACT_NP,
/** String Field: Pattern match, required to be present.*/
USBFILTERMATCH_STR_PATTERN,
/** String Field: Pattern match or not present.*/
USBFILTERMATCH_STR_PATTERN_NP,
/** String Field: The last string field matching method (inclusive). */
USBFILTERMATCH_STR_LAST = USBFILTERMATCH_STR_PATTERN_NP,
/** The end of valid matching methods (exclusive). */
USBFILTERMATCH_END
} USBFILTERMATCH;
AssertCompile(USBFILTERMATCH_END == 11);
/**
* A USB filter field.
*
* @remarks This is a binary interface (drivers).
*/
typedef struct USBFILTERFIELD
{
/** The matching method. (USBFILTERMATCH) */
uint16_t enmMatch;
/** The field value or offset into the string table.
* The enmMatch field decides which it is. */
uint16_t u16Value;
} USBFILTERFIELD;
AssertCompileSize(USBFILTERFIELD, 4);
/** Pointer to a USB filter field. */
typedef USBFILTERFIELD *PUSBFILTERFIELD;
/** Pointer to a const USBFILTERFIELD. */
typedef const USBFILTERFIELD *PCUSBFILTERFIELD;
/**
* USB filter field index.
*
* This is used as an index into the USBFILTER::aFields array.
*
* @remarks This is a binary interface (drivers).
*/
typedef enum USBFILTERIDX
{
/** idVendor (= 0) */
USBFILTERIDX_VENDOR_ID = 0,
/** idProduct (= 1) */
USBFILTERIDX_PRODUCT_ID,
/** bcdDevice (= 2)*/
USBFILTERIDX_DEVICE_REV,
USBFILTERIDX_DEVICE = USBFILTERIDX_DEVICE_REV,
/** bDeviceClass (= 3) */
USBFILTERIDX_DEVICE_CLASS,
/** bDeviceSubClass (= 4) */
USBFILTERIDX_DEVICE_SUB_CLASS,
/** bDeviceProtocol (= 5) */
USBFILTERIDX_DEVICE_PROTOCOL,
/** bBus (= 6 )*/
USBFILTERIDX_BUS,
/** bPort (=7) */
USBFILTERIDX_PORT,
/** Manufacturer string. (=8) */
USBFILTERIDX_MANUFACTURER_STR,
/** Product string. (=9) */
USBFILTERIDX_PRODUCT_STR,
/** SerialNumber string. (=10) */
USBFILTERIDX_SERIAL_NUMBER_STR,
/** The end of the USB filter fields (exclusive). */
USBFILTERIDX_END
} USBFILTERIDX;
AssertCompile(USBFILTERIDX_END == 11);
/**
* USB Filter types.
*
* The filters types are list in priority order, i.e. highest priority first.
*
* @remarks This is a binary interface (drivers).
*/
typedef enum USBFILTERTYPE
{
/** The usual invalid first zero value. */
USBFILTERTYPE_INVALID = 0,
/** The first valid entry. */
USBFILTERTYPE_FIRST,
/** A one-shot ignore filter that's installed when releasing a device.
* This filter will be automatically removedwhen the device re-appears,
* or when ring-3 decides that time is up, or if ring-3 dies upon us. */
USBFILTERTYPE_ONESHOT_IGNORE = USBFILTERTYPE_FIRST,
/** A one-shot capture filter that's installed when hijacking a device that's already plugged.
* This filter will be automatically removed when the device re-appears,
* or when ring-3 decides that time is up, or if ring-3 dies upon us. */
USBFILTERTYPE_ONESHOT_CAPTURE,
/** Ignore filter.
* This picks out devices that shouldn't be captured. */
USBFILTERTYPE_IGNORE,
/** A normal capture filter.
* When a device matching the filter is attach, we'll take it. */
USBFILTERTYPE_CAPTURE,
/** The end of the valid filter types (exclusive). */
USBFILTERTYPE_END,
/** The usual 32-bit hack. */
USBFILTERTYPE_32BIT_HACK = 0x7fffffff
} USBFILTERTYPE;
AssertCompileSize(USBFILTERTYPE, 4);
AssertCompile(USBFILTERTYPE_END == 5);
/**
* USB Filter.
*
* Consider the an abstract data type, use the methods below to access it.
*
* @remarks This is a binary interface (drivers).
*/
typedef struct USBFILTER
{
/** Magic number (USBFILTER_MAGIC). */
uint32_t u32Magic;
/** The filter type. */
USBFILTERTYPE enmType;
/** The filter fields.
* This array is indexed by USBFILTERIDX */
USBFILTERFIELD aFields[USBFILTERIDX_END];
/** Offset to the end of the string table (last terminator). (used to speed up things) */
uint32_t offCurEnd;
/** String table.
* This is used for string and numeric patterns. */
char achStrTab[256];
} USBFILTER;
AssertCompileSize(USBFILTER, 312);
/** Pointer to a USBLib filter. */
typedef USBFILTER *PUSBFILTER;
/** Pointer to a const USBLib filter. */
typedef const USBFILTER *PCUSBFILTER;
/** USBFILTER::u32Magic (Yasuhiro Nightow). */
#define USBFILTER_MAGIC 0x19670408
RT_C_DECLS_BEGIN
USBLIB_DECL(void) USBFilterInit(PUSBFILTER pFilter, USBFILTERTYPE enmType);
USBLIB_DECL(void) USBFilterClone(PUSBFILTER pFilter, PCUSBFILTER pToClone);
USBLIB_DECL(void) USBFilterDelete(PUSBFILTER pFilter);
USBLIB_DECL(int) USBFilterValidate(PCUSBFILTER pFilter);
USBLIB_DECL(bool) USBFilterMatch(PCUSBFILTER pFilter, PCUSBFILTER pDevice);
USBLIB_DECL(int) USBFilterMatchRated(PCUSBFILTER pFilter, PCUSBFILTER pDevice);
USBLIB_DECL(bool) USBFilterMatchDevice(PCUSBFILTER pFilter, PCUSBDEVICE pDevice);
USBLIB_DECL(bool) USBFilterIsIdentical(PCUSBFILTER pFilter, PCUSBFILTER pFilter2);
USBLIB_DECL(int) USBFilterSetFilterType(PUSBFILTER pFilter, USBFILTERTYPE enmType);
USBLIB_DECL(int) USBFilterSetIgnore(PUSBFILTER pFilter, USBFILTERIDX enmFieldIdx);
USBLIB_DECL(int) USBFilterSetPresentOnly(PUSBFILTER pFilter, USBFILTERIDX enmFieldIdx);
USBLIB_DECL(int) USBFilterSetNumExact(PUSBFILTER pFilter, USBFILTERIDX enmFieldIdx, uint16_t u16Value, bool fMustBePresent);
USBLIB_DECL(int) USBFilterSetNumExpression(PUSBFILTER pFilter, USBFILTERIDX enmFieldIdx, const char *pszExpression, bool fMustBePresent);
USBLIB_DECL(int) USBFilterSetStringExact(PUSBFILTER pFilter, USBFILTERIDX enmFieldIdx, const char *pszValue, bool fMustBePresent);
USBLIB_DECL(int) USBFilterSetStringPattern(PUSBFILTER pFilter, USBFILTERIDX enmFieldIdx, const char *pszPattern, bool fMustBePresent);
USBLIB_DECL(int) USBFilterSetMustBePresent(PUSBFILTER pFilter, USBFILTERIDX enmFieldIdx, bool fMustBePresent);
USBLIB_DECL(USBFILTERTYPE) USBFilterGetFilterType(PCUSBFILTER pFilter);
USBLIB_DECL(USBFILTERMATCH) USBFilterGetMatchingMethod(PCUSBFILTER pFilter, USBFILTERIDX enmFieldIdx);
USBLIB_DECL(int) USBFilterQueryNum(PCUSBFILTER pFilter, USBFILTERIDX enmFieldIdx, uint16_t *pu16Value);
USBLIB_DECL(int) USBFilterGetNum(PCUSBFILTER pFilter, USBFILTERIDX enmFieldIdx);
USBLIB_DECL(int) USBFilterQueryString(PUSBFILTER pFilter, USBFILTERIDX enmFieldIdx, char *pszBuf, size_t cchBuf);
USBLIB_DECL(const char *) USBFilterGetString(PCUSBFILTER pFilter, USBFILTERIDX enmFieldIdx);
USBLIB_DECL(ssize_t) USBFilterGetStringLen(PCUSBFILTER pFilter, USBFILTERIDX enmFieldIdx);
USBLIB_DECL(bool) USBFilterHasAnySubstatialCriteria(PCUSBFILTER pFilter);
USBLIB_DECL(bool) USBFilterIsNumericField(USBFILTERIDX enmFieldIdx);
USBLIB_DECL(bool) USBFilterIsStringField(USBFILTERIDX enmFieldIdx);
USBLIB_DECL(bool) USBFilterIsMethodUsingNumericValue(USBFILTERMATCH enmMatchingMethod);
USBLIB_DECL(bool) USBFilterIsMethodUsingStringValue(USBFILTERMATCH enmMatchingMethod);
USBLIB_DECL(bool) USBFilterIsMethodNumeric(USBFILTERMATCH enmMatchingMethod);
USBLIB_DECL(bool) USBFilterIsMethodString(USBFILTERMATCH enmMatchingMethod);
RT_C_DECLS_END
/** @} */
#endif
|