mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 01:55:20 +00:00
a105924804
1. Example queries will run with an (optional) integration test. 2. Fix bad accesses with OS X package BOMs 3. Move spec files from ./osquery/tables/specs to ./specs 4. Remove server parsers (netlib) from client builds.
15 lines
743 B
Plaintext
15 lines
743 B
Plaintext
table_name("iokit_devicetree")
|
|
description("The IOKit registry matching the DeviceTree plane.")
|
|
schema([
|
|
Column("name", TEXT, "Device node name"),
|
|
Column("class", TEXT, "Best matching device class (most-specific category)"),
|
|
Column("id", BIGINT, "IOKit internal registry ID"),
|
|
Column("parent", BIGINT, "Parent device registry ID"),
|
|
Column("device_path", TEXT, "Device tree path"),
|
|
Column("service", INTEGER, "1 if the device conforms to IOService else 0"),
|
|
Column("busy_state", INTEGER, "1 if the device is in a busy state else 0"),
|
|
Column("retain_count", INTEGER, "The device reference count"),
|
|
Column("depth", INTEGER, "Device nested depth"),
|
|
])
|
|
implementation("system/iokit_registry@genIOKitDeviceTree")
|