forked from IntelRealSense/librealsense
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathudev-device-watcher.cpp
229 lines (192 loc) · 8.4 KB
/
udev-device-watcher.cpp
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
// License: Apache 2.0. See LICENSE file in root directory.
// Copyright(c) 2021 Intel Corporation. All Rights Reserved.
#include "udev-device-watcher.h"
#include <poll.h>
#include <string>
#include <exception>
using std::string;
using std::runtime_error;
namespace {
void foreach_device_prop( struct udev_device * udev_dev,
std::function< void( std::string const & param, std::string const & value ) > callback )
{
struct udev_list_entry * prop_entry;
udev_list_entry_foreach( prop_entry, udev_device_get_properties_list_entry( udev_dev ) )
{
const string prop_name = udev_list_entry_get_name( prop_entry );
const string prop_value = udev_list_entry_get_value( prop_entry );
callback( prop_name, prop_value );
}
}
std::string udev_string( struct udev_device * dev )
{
std::ostringstream os;
if( ! dev )
os << "null";
else
{
char const * sysname = udev_device_get_sysname( dev );
char const * model = udev_device_get_property_value( dev, "ID_MODEL" );
if( ! model || strncmp( model, "Intel", 5 ))
model = sysname;
os << model;
if( model != sysname )
os << " [" << sysname << ']';
//os << udev_device_get_syspath( dev );
// Enable to get a list of all properties
// For usb_device:
// ACTION=add BUSNUM=002 DEVNAME=/dev/bus/usb/002/125 DEVNUM=125
// DEVPATH=/devices/pci0000:00/0000:00:14.0/usb2/2-2/2-2.4/2-2.4.4 DEVTYPE=usb_device DRIVER=usb
// ID_BUS=usb ID_MODEL=Intel_R__RealSense_TM__515
// ID_MODEL_ENC=Intel\x28R\x29\x20RealSense\x28TM\x29\x20515 ID_MODEL_ID=0b64 ID_REVISION=1058
// ID_SERIAL=Intel_R__RealSense_TM__Camera_Intel_R__RealSense_TM__515_00000000F0070132
// ID_SERIAL_SHORT=00000000F0070132 ID_USB_INTERFACES=:0e0100:0e0200:ff0000:030000:
// ID_VENDOR=Intel_R__RealSense_TM__Camera
// ID_VENDOR_ENC=Intel\x28R\x29\x20RealSense\x28TM\x29\x20Camera ID_VENDOR_FROM_DATABASE=Intel Corp.
// ID_VENDOR_ID=8086 MAJOR=189 MINOR=252 PRODUCT=8086/b64/1058 SEQNUM=249377 SUBSYSTEM=usb
// TYPE=239/2/1 USEC_INITIALIZED=862653458266
// And, for usb_interface:
// .MM_USBIFNUM=01 ACTION=add
// DEVPATH=/devices/pci0000:00/0000:00:14.0/usb2/2-2/2-2.4/2-2.4.4/2-2.4.4:1.1 DEVTYPE=usb_interface
// DRIVER=uvcvideo ID_USB_CLASS_FROM_DATABASE=Miscellaneous Device
// ID_USB_PROTOCOL_FROM_DATABASE=Interface Association ID_VENDOR_FROM_DATABASE=Intel Corp.
// INTERFACE=14/2/0 MODALIAS=usb:v8086p0B64d1058dcEFdsc02dp01ic0Eisc02ip00in01 PRODUCT=8086/b64/1058
// SEQNUM=249386 SUBSYSTEM=usb TYPE=239/2/1 USEC_INITIALIZED=862653461483
#if 0
char sep = '[';
foreach_device_prop( dev, [&]( std::string const& name, std::string const & value )
{
os << sep << name << '=' << value;
sep = ' ';
} );
if( sep != '[' )
os << ']';
#endif
}
return os.str();
}
}
namespace librealsense {
udev_device_watcher::udev_device_watcher( const platform::backend * backend )
: _backend( backend )
, _active_object( [this]( dispatcher::cancellable_timer timer ) {
struct pollfd fds;
fds.fd = _udev_monitor_fd;
fds.events = POLLIN;
// Polling will block for a time but we cannot block for too long, as we want destruction to happen in
// reasonable time. So we use a short-enough period:
int const POLLING_PERIOD_MS = 100;
if( poll( &fds, 1, POLLING_PERIOD_MS ) > 0 )
{
if( timer.was_stopped() || ! _udev_monitor || POLLIN != fds.revents )
return;
auto udev_dev = udev_monitor_receive_device( _udev_monitor );
if( ! udev_dev )
{
LOG_DEBUG( "failed to read data from udev monitor socket" );
return;
}
const string udev_action = udev_device_get_action( udev_dev );
if( udev_action == "add" || udev_action == "remove" )
{
LOG_DEBUG( "[udev] " << udev_action << " " << udev_string( udev_dev ) );
// On remove events, we get all the device interfaces first, and lastly we get the device.
// On add events, we get the device first and only then the device interfaces.
// In any case, we get lots of adds/removes for each device. And we only want to do one enumeration --
// so we wait for things to calm down and just remember that enumeration is needed...
_changed = true;
}
udev_device_unref( udev_dev );
}
else if( _changed )
{
// Something's changed but nothing's happened in the last polling period -- let's enumerate!
LOG_DEBUG( "[udev] checking ..." );
platform::backend_device_group curr( _backend->query_uvc_devices(),
_backend->query_usb_devices(),
_backend->query_hid_devices() );
if( list_changed( _devices_data.uvc_devices, curr.uvc_devices )
|| list_changed( _devices_data.usb_devices, curr.usb_devices )
|| list_changed( _devices_data.hid_devices, curr.hid_devices ) )
{
LOG_DEBUG( "[udev] changed!" );
callback_invocation_holder callback = { _callback_inflight.allocate(), &_callback_inflight };
if( callback )
_callback( _devices_data, curr );
_devices_data = curr;
}
_changed = false;
}
} )
{
_udev_ctx = udev_new();
if( ! _udev_ctx )
throw runtime_error( "could not initialize udev" );
_udev_monitor = udev_monitor_new_from_netlink( _udev_ctx, "udev" );
if( ! _udev_monitor )
{
udev_unref( _udev_ctx );
_udev_ctx = nullptr;
throw runtime_error( "could not initialize udev monitor" );
}
_udev_monitor_fd = udev_monitor_get_fd( _udev_monitor );
if( udev_monitor_filter_add_match_subsystem_devtype( _udev_monitor, "usb", 0 ) )
{
udev_monitor_unref( _udev_monitor );
_udev_monitor = nullptr;
_udev_monitor_fd = -1;
udev_unref( _udev_ctx );
_udev_ctx = nullptr;
throw runtime_error( "could not initialize udev monitor filter for \"usb\" subsystem" );
}
if( udev_monitor_enable_receiving( _udev_monitor ) )
{
udev_monitor_unref( _udev_monitor );
_udev_monitor = nullptr;
_udev_monitor_fd = -1;
udev_unref( _udev_ctx );
_udev_ctx = nullptr;
throw runtime_error( "failed to enable the udev monitor" );
}
_devices_data = { _backend->query_uvc_devices(), _backend->query_usb_devices(), _backend->query_hid_devices() };
}
udev_device_watcher::~udev_device_watcher()
{
try
{
stop();
}
catch(...)
{
LOG_DEBUG( "Error while stopping udev device watcher" );
}
/* Release the udev monitor */
if( _udev_monitor )
udev_monitor_unref( _udev_monitor );
_udev_monitor = nullptr;
_udev_monitor_fd = -1;
/* Clean up the udev context */
if( _udev_ctx )
udev_unref( _udev_ctx );
_udev_ctx = nullptr;
}
// Scan devices using udev
void udev_device_watcher::foreach_device( std::function< void( struct udev_device * udev_dev ) > callback )
{
auto enumerator = udev_enumerate_new( _udev_ctx );
if( ! enumerator )
throw runtime_error( "error creating udev enumerator" );
udev_enumerate_add_match_subsystem( enumerator, "usb" );
udev_enumerate_scan_devices( enumerator );
auto devices = udev_enumerate_get_list_entry( enumerator );
struct udev_list_entry * device_entry;
udev_list_entry_foreach( device_entry, devices )
{
const char * path = udev_list_entry_get_name( device_entry );
struct udev_device * udev_dev = udev_device_new_from_syspath( _udev_ctx, path );
callback( udev_dev );
udev_device_unref( udev_dev );
}
udev_enumerate_unref( enumerator );
}
} // namespace librealsense