-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlib.rs
1005 lines (928 loc) · 30 KB
/
lib.rs
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//! Pure Rust library for interacting with the [udev](https://www.kernel.org/doc/ols/2003/ols2003-pages-249-257.pdf) userspace `devfs`.
//!
//! Uses the [`libc`](https://crates.io/crates/libc) and [`nix`](https://crates.io/crates/nix) crate to make syscalls to Linux.
use std::sync::Arc;
#[macro_use]
extern crate bitflags;
mod context;
mod device;
mod enumerate;
mod error;
mod file;
mod hwdb;
mod list;
mod log;
mod mode;
mod monitor;
mod murmur_hash;
mod queue;
mod socket;
mod util;
pub use context::*;
pub use device::*;
pub use enumerate::*;
pub use error::*;
pub use file::*;
pub use hwdb::*;
pub use list::*;
pub use log::*;
pub use mode::*;
pub use monitor::*;
pub use murmur_hash::*;
pub use queue::*;
pub use socket::*;
pub use util::*;
/// Creates a new [Udev] context.
pub fn udev_new() -> Arc<Udev> {
Arc::new(Udev::new())
}
/// Gets the [LogPriority] for the [Udev] context.
pub fn udev_get_log_priority(udev: &Udev) -> LogPriority {
udev.log_priority()
}
/// Sets the [LogPriority] for the [Udev] context.
pub fn udev_set_log_priority(udev: &mut Udev, val: LogPriority) {
udev.set_log_priority(val);
}
/// Gets a reference to the next entry in a [UdevList].
///
/// Breaks with the original `libudev` API by requiring a reference to the list, instead of a list
/// entry. This is because the C version uses a linked-list composed of pointers, we don't.
pub fn udev_list_entry_get_next(list: &UdevList) -> Option<&UdevEntry> {
list.next_entry()
}
/// Gets a mutable reference to the next entry in a [UdevList].
///
/// Breaks with the original `libudev` API by requiring a reference to the list, instead of a list
/// entry. This is because the C version uses a linked-list composed of pointers, we don't.
pub fn udev_list_entry_get_next_mut(list: &mut UdevList) -> Option<&mut UdevEntry> {
list.next_entry_mut()
}
/// Gets the name of the [UdevEntry].
pub fn udev_list_entry_get_name(entry: &UdevEntry) -> &str {
entry.name()
}
/// Gets the value of the [UdevEntry].
pub fn udev_list_entry_get_value(entry: &UdevEntry) -> &str {
entry.value()
}
/// Helper function that iterates over every [UdevEntry] in the list, applying the function to each
/// entry.
///
/// Breaks with the original `libudev` API by requiring a reference to the list, instead of a list
/// entry. This is because the C version uses a linked-list composed of pointers, we don't.
pub fn udev_list_entry_foreach(list: &UdevList, f: fn(&UdevEntry) -> Result<()>) -> Result<()> {
for entry in list.iter() {
f(entry)?;
}
Ok(())
}
/// Helper function that iterates over every [UdevEntry] in the list, applying the function to each
/// entry.
///
/// Breaks with the original `libudev` API by requiring a reference to the list, instead of a list
/// entry. This is because the C version uses a linked-list composed of pointers, we don't.
pub fn udev_list_entry_foreach_mut(
list: &mut UdevList,
f: fn(&mut UdevEntry) -> Result<()>,
) -> Result<()> {
for entry in list.iter_mut() {
f(entry)?;
}
Ok(())
}
/// Creates a new [UdevDevice] from the provided [Udev] context.
pub fn udev_device_new(udev: Arc<Udev>) -> UdevDevice {
UdevDevice::new(udev)
}
/// Gets a reference to the [Udev] context from an [UdevDevice].
pub fn udev_device_get_udev(device: &UdevDevice) -> &Udev {
device.udev()
}
/// Gets a cloned reference to the [Udev] context from an [UdevDevice].
pub fn udev_device_get_udev_cloned(device: &UdevDevice) -> Arc<Udev> {
device.udev_cloned()
}
/// Creates new [UdevDevice], and fills in information from the sys
/// device and the udev database entry.
///
/// The `syspath` is the absolute path to the device, including the sys mount point.
///
/// The initial refcount is 1, and needs to be decremented to release the resources of the udev device.
///
/// Returns: a new [UdevDevice], or `Error`, if it does not exist
pub fn udev_device_new_from_syspath(udev: Arc<Udev>, syspath: &str) -> Result<UdevDevice> {
UdevDevice::new_from_syspath(udev, syspath)
}
/// Creates new [UdevDevice].
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Fills in information from the `sys` device and the udev database entry.
///
/// The device is looked-up by its major/minor number and type. Character and block device
/// numbers are not unique across the two types.
/// ```
///
/// Parameters:
///
/// - `udev`: [Udev] library context
/// - `type`: `char` or `block` device
/// - `devnum`: device major/minor number
///
/// Returns: a new [UdevDevice], or `Err`, if it does not exist
pub fn udev_device_new_from_devnum(
udev: Arc<Udev>,
devtype: &str,
devnum: libc::dev_t,
) -> Result<UdevDevice> {
UdevDevice::new_from_devnum(udev, devtype, devnum)
}
/// Creates a new [UdevDevice] from the subsystem and sysname.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Fills in information from the sys device and the udev database entry.
///
/// The device is looked up by the subsystem and name string of the device, like "mem" / "zero", or "block" / "sda".
/// ```
///
/// Parameters:
///
/// - `udev`: [Udev] library context
/// - `subsystem`: the subsystem of the device
/// - `sysname`: the name of the device
///
/// Returns: a new [UdevDevice], or `Err`, if it does not exist
pub fn udev_device_new_from_subsystem_sysname(
udev: Arc<Udev>,
subsystem: &str,
sysname: &str,
) -> Result<UdevDevice> {
UdevDevice::new_from_subsystem_sysname(udev, subsystem, sysname)
}
/// Create new [UdevDevice] from an ID string.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
///
/// Fill in information from the sys device and the udev database entry.
///
/// The device is looked-up by a special string:
///
/// b8:2 - block device major:minor
/// c128:1 - char device major:minor
/// n3 - network device ifindex
/// +sound:card29 - kernel driver core subsystem:device name
/// ```
///
/// Parameters:
///
/// - `udev`: udev library context
/// - `id`: text string identifying a kernel device
///
/// Returns: a new [UdevDevice], or `Err`, if it does not exist
pub fn udev_device_new_from_device_id(udev: Arc<Udev>, id: &str) -> Result<UdevDevice> {
UdevDevice::new_from_device_id(udev, id)
}
/// Create new udev device from the environment information.
///
/// From the original `libudev` documnentation:
///
/// ```no_build,no_run
/// Fills in information from the current process environment.
/// This only works reliable if the process is called from a udev rule.
/// It is usually used for tools executed from IMPORT= rules.
/// ```
///
/// Parameters:
///
/// - `udev`: [Udev] library context
///
/// Returns: a new [UdevDevice], or `Err`, if it does not exist
pub fn udev_device_new_from_environment(udev: Arc<Udev>) -> Result<UdevDevice> {
UdevDevice::new_from_environment(udev)
}
/// Gets the next parent [UdevDevice].
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Find the next parent device, and fill in information from the sys
/// device and the udev database entry.
///
/// @udev_device: the device to start searching from
///
/// Returned device is not referenced. It is attached to the child
/// device, and will be cleaned up when the child device is cleaned up.
///
/// It is not necessarily just the upper level directory, empty or not
/// recognized sys directories are ignored.
///
/// It can be called as many times as needed, without caring about
/// references.
/// ```
///
/// Returns: a new [UdevDevice], or `Err`, if it no parent exists.
pub fn udev_device_get_parent(dev: &mut UdevDevice) -> Result<Arc<UdevDevice>> {
dev.get_parent()
}
/// Gets the next parent [UdevDevice] based on `subsystem` and `devtype`.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Find the next parent device, with a matching subsystem and devtype
/// value, and fill in information from the sys device and the udev
/// database entry.
///
/// If devtype is #NULL, only subsystem is checked, and any devtype will
/// match.
///
/// Returned device is not referenced. It is attached to the child
/// device, and will be cleaned up when the child device is cleaned up.
///
/// It can be called as many times as needed, without caring about
/// references.
/// ```
///
/// Parameters:
///
/// - `udev_device`: udev device to start searching from
/// - `subsystem`: the subsystem of the device
/// - `devtype`: the type (DEVTYPE) of the device
///
/// Returns: a new [UdevDevice], or `Err` if no matching parent exists.
pub fn udev_device_get_parent_with_subsystem_devtype(
dev: &mut UdevDevice,
subsystem: &str,
devtype: &str,
) -> Result<Arc<UdevDevice>> {
dev.get_parent_with_subsystem_devtype(subsystem, devtype)
}
/// Reads [UdevDevice] information from the persistent database file.
///
/// Returns: `Ok(())` on success, `Err(Error)` otherwise
pub fn udev_device_read_db(dev: &mut UdevDevice) -> Result<()> {
dev.read_db()
}
/// Gets the [UdevDevice] device path.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Retrieve the kernel devpath value of the udev device. The path
/// does not contain the sys mount point, and starts with a '/'.
/// ```
pub fn udev_device_get_devpath(dev: &UdevDevice) -> &str {
dev.devpath()
}
/// Gets the [UdevDevice] `syspath`.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Retrieve the sys path of the udev device. The path is an
/// absolute path and starts with the sys mount point.
/// ```
pub fn udev_device_get_syspath(dev: &UdevDevice) -> &str {
dev.syspath()
}
/// Gets the [UdevDevice] `sysname`.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Get the kernel device name in /sys.
/// ```
pub fn udev_device_get_sysname(dev: &UdevDevice) -> &str {
dev.sysname()
}
/// Gets the [UdevDevice] `sysnum`.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Get the instance number of the device.
/// ```
pub fn udev_device_get_sysnum(dev: &UdevDevice) -> &str {
dev.sysnum()
}
/// Gets the [UdevDevice] `devnode`.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Retrieve the device node file name belonging to the udev device.
/// The path is an absolute path, and starts with the device directory.
/// ```
///
/// Returns: the device node file name of the [UdevDevice], or an empty string if none exists.
pub fn udev_device_get_devnode(dev: &mut UdevDevice) -> &str {
dev.get_devnode()
}
/// Gets whether the [UdevDevice] is initialized.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Check if udev has already handled the device and has set up
/// device node permissions and context, or has renamed a network
/// device.
///
/// This is only implemented for devices with a device node
/// or network interfaces. All other devices return 1 here.
/// ```
pub fn udev_device_get_is_initialized(dev: &mut UdevDevice) -> bool {
dev.get_is_initialized()
}
/// Gets the list of device links for the [UdevDevice].
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Retrieve the list of device links pointing to the device file of
/// the udev device. The next list entry can be retrieved with
/// udev_list_entry_get_next(), which returns #NULL if no more entries exist.
///
/// The devlink path can be retrieved from the list entry by
/// udev_list_entry_get_name(). The path is an absolute path, and starts with
/// the device directory.
/// ```
///
/// Returns: the first entry of the device node link list
pub fn udev_device_get_devlinks_list_entry(dev: &mut UdevDevice) -> Option<&UdevEntry> {
dev.get_devlinks_list_entry()
}
/// Gets the first tags list entry in the [UdevDevice].
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Retrieve the list of tags attached to the udev device. The next
/// list entry can be retrieved with udev_list_entry_get_next(),
/// which returns `None` if no more entries exist. The tag string
/// can be retrieved from the list entry by udev_list_entry_get_name().
/// ```
///
/// Returns: the first entry of the tag list
pub fn udev_device_get_tags_list_entry(dev: &mut UdevDevice) -> Option<&UdevEntry> {
dev.get_tags_list_entry()
}
/// Gets the current tags list entry in the [UdevDevice].
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Retrieve the list of tags attached to the udev device. The next
/// list entry can be retrieved with udev_list_entry_get_next(),
/// which returns `None` if no more entries exist. The tag string
/// can be retrieved from the list entry by udev_list_entry_get_name().
/// ```
///
/// Returns: the current entry of the tag list
pub fn udev_device_get_current_tags_list_entry(dev: &mut UdevDevice) -> Option<&UdevEntry> {
dev.get_current_tags_list_entry()
}
/// Gets the first entry in the `sysattr` properties list.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Retrieve the list of available sysattrs, with value being empty;
/// This just return all available sysfs attributes for a particular
/// device without reading their values.
/// ```
///
/// Returns: the first entry of the property list
pub fn udev_device_get_sysattr_list_entry(dev: &mut UdevDevice) -> Option<&UdevEntry> {
dev.get_sysattr_list_entry()
}
/// Gets the value of a given property.
pub fn udev_device_get_property_value<'d>(dev: &'d UdevDevice, key: &str) -> Option<&'d str> {
dev.get_property_value(key)
}
/// Gets the kernel driver name.
///
/// Returns: the kernel driver name, or `None` if none is attached.
pub fn udev_device_get_driver(dev: &mut UdevDevice) -> Option<&str> {
dev.get_driver()
}
/// Gets the device major/minor number.
pub fn udev_device_get_devnum(dev: &mut UdevDevice) -> u64 {
dev.get_devnum()
}
/// Gets the device action.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// This is only valid if the device was received through a monitor. Devices read from
/// sys do not have an action string. Usual actions are: add, remove, change, online,
/// offline.
/// ```
///
/// Returns the kernel action value, or `None` if there is no action value available.
pub fn udev_device_get_action(dev: &UdevDevice) -> &str {
dev.action()
}
/// Gets the device event sequence number.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// This is only valid if the device was received through a monitor. Devices read from
/// sys do not have a sequence number.
/// ```
///
/// Returns the kernel event sequence number, or zero if none is available.
pub const fn udev_device_get_seqnum(dev: &UdevDevice) -> u64 {
dev.seqnum()
}
/// Gets the number of microseconds since the [UdevDevice] was initialized.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Return the number of microseconds passed since udev set up the
/// device for the first time.
///
/// This is only implemented for devices with need to store properties
/// in the udev database. All other devices return 0 here.
/// ```
///
/// Returns: the number of microseconds since the device was first seen.
pub fn udev_device_get_usec_since_initialized(dev: &mut UdevDevice) -> u64 {
dev.get_usec_since_initialized()
}
/// Gets the sys attribute file value.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// The retrieved value is cached in the device. Repeated calls will return the same
/// value and not open the attribute again.
/// ```
///
/// Returns: the content of a sys attribute file, or `None` if there is no sys attribute value.
pub fn udev_device_get_sysattr_value(dev: &mut UdevDevice, sysattr: &str) -> Option<String> {
dev.get_sysattr_value(sysattr)
}
/// Gets whether the [UdevDevice] has the provided `tag` associated.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Check if a given device has a certain tag associated.
/// ```
pub fn udev_device_has_tag(dev: &mut UdevDevice, tag: &str) -> bool {
dev.has_tag(tag)
}
/// Gets whether the [UdevDevice] has the provided current `tag` associated.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Check if a given device has a certain tag associated.
/// ```
///
/// TODO: `eudev` does not database does not support current tags, implement in this library.
pub fn udev_device_has_current_tag(dev: &mut UdevDevice, tag: &str) -> bool {
dev.has_tag(tag)
}
/// Creates a new [UdevMonitor] from the provided parameters.
///
/// Parameters:
///
/// `udev`: udev library context
/// `name`: name of event source
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Create new udev monitor and connect to a specified event
/// source. Valid sources identifiers are "udev" and "kernel".
///
/// Applications should usually not connect directly to the
/// "kernel" events, because the devices might not be usable
/// at that time, before `udev` has configured them, and created
/// device nodes. Accessing devices at the same time as `udev`,
/// might result in unpredictable behavior. The "`udev`" events
/// are sent out after `udev` has finished its event processing,
/// all rules have been processed, and needed device nodes are
/// created.
/// ```
///
/// Returns: a new [UdevMonitor], or [Error], in case of an error
pub fn udev_monitor_new_from_netlink(udev: Arc<Udev>, name: &str) -> Result<Arc<UdevMonitor>> {
Ok(Arc::new(UdevMonitor::new_from_netlink(udev, name)?))
}
/// Gets the [Udev] context of the [UdevMonitor].
pub fn udev_monitor_get_udev(monitor: &UdevMonitor) -> &Arc<Udev> {
monitor.udev()
}
/// Binds the [UdevMonitor] socket to the event source.
pub fn udev_monitor_enable_receiving(monitor: &mut UdevMonitor) -> Result<()> {
monitor.enable_receiving()
}
/// Sets the size of the kernel socket buffer.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Set the size of the kernel socket buffer. This call needs the
/// appropriate privileges to succeed.
/// ```
///
/// Returns: `Ok(())` on success, `Err(Error)` otherwise.
pub fn udev_monitor_set_receive_buffer_size(monitor: &mut UdevMonitor, size: usize) -> Result<()> {
monitor.set_receive_buffer_size(size)
}
/// Gets the [UdevMonitor] socket file descriptor.
pub fn udev_monitor_get_fd(monitor: &UdevMonitor) -> i32 {
monitor.sock()
}
/// Receives data from the [UdevMonitor] socket.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Receive data from the udev monitor socket, allocate a new udev
/// device, fill in the received data, and return the device.
///
/// Only socket connections with uid=0 are accepted.
///
/// The monitor socket is by default set to NONBLOCK. A variant of poll() on
/// the file descriptor returned by udev_monitor_get_fd() should to be used to
/// wake up when new devices arrive, or alternatively the file descriptor
/// switched into blocking mode.
/// ```
///
/// Returns: `Ok(UdevDevice)` on success, `Err(Error)` otherwise.
pub fn udev_monitor_receive_device(monitor: &mut UdevMonitor) -> Result<UdevDevice> {
monitor.receive_device()
}
/// Adds an [UdevEntry] into the filter subsystem list.
///
/// From `libudev` documentation:
///
/// Parameters:
///
/// - `subsystem`: the subsystem value to match the incoming devices against
/// - must be non-empty
/// - `devtype`: the devtype value to match the incoming devices against
///
/// ```no_build,no_run
/// This filter is efficiently executed inside the kernel, and libudev subscribers
/// will usually not be woken up for devices which do not match.
///
/// The filter must be installed before the monitor is switched to listening mode.
/// ```
///
/// Returns `Ok` on success, `Err` otherwise.
pub fn udev_monitor_filter_add_match_subsystem_devtype<'m>(
monitor: &'m mut UdevMonitor,
subsystem: &str,
devtype: &str,
) -> Result<&'m UdevEntry> {
monitor.filter_add_match_subsystem_devtype(subsystem, devtype)
}
/// Adds an [UdevEntry] into the filter tag list.
///
/// From `libudev` documentation:
///
/// - `tag`: the name of a tag
/// - must be non-empty
///
/// ```no_build,no_run
/// This filter is efficiently executed inside the kernel, and libudev subscribers
/// will usually not be woken up for devices which do not match.
///
/// The filter must be installed before the monitor is switched to listening mode.
/// ```
///
/// Returns `Ok` on success, `Err` otherwise.
pub fn udev_monitor_filter_add_match_tag<'m>(
monitor: &'m mut UdevMonitor,
tag: &str,
) -> Result<&'m UdevEntry> {
monitor.filter_add_match_tag(tag)
}
/// Updates the monitor socket filter.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Update the installed socket filter. This is only needed,
/// if the filter was removed or changed.
/// ```
///
/// Returns: `Ok(())` on success, `Err(Error)` otherwise.
pub fn udev_monitor_filter_update(monitor: &mut UdevMonitor) -> Result<()> {
monitor.filter_update()
}
/// Removes all filters from the [UdevMonitor].
///
/// Returns `Ok(())` on success, `Err(Error)` otherwise.
pub fn udev_monitor_filter_remove(monitor: &mut UdevMonitor) -> Result<()> {
monitor.filter_remove()
}
/// Creates a new [UdevEnumerate].
pub fn udev_enumerate_new(udev: Arc<Udev>) -> Arc<UdevEnumerate> {
Arc::new(UdevEnumerate::new(udev))
}
/// Adds an entry to the match subsystem [UdevEntry] list.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Match only devices belonging to a certain kernel subsystem.
/// ```
///
/// Returns `Ok(UdevEntry)` on success, `Err(Error)` otherwise.
pub fn udev_enumerate_add_match_subsystem<'e>(
enumerate: &'e mut UdevEnumerate,
subsystem: &str,
) -> Result<&'e UdevEntry> {
enumerate.add_match_subsystem(subsystem)
}
/// Adds an entry to the no-match subsystem [UdevEntry] list.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Match only devices not belonging to a certain kernel subsystem.
/// ```
///
/// Returns `Ok(UdevEntry)` on success, `Err(Error)` otherwise.
pub fn udev_enumerate_add_nomatch_subsystem<'e>(
enumerate: &'e mut UdevEnumerate,
subsystem: &str,
) -> Result<&'e UdevEntry> {
enumerate.add_nomatch_subsystem(subsystem)
}
/// Adds an entry to the match sysattr [UdevEntry] list.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Match only devices with a given /sys device attribute.
/// ```
///
/// Returns `Ok(UdevEntry)` on success, `Err(Error)` otherwise.
pub fn udev_enumerate_add_match_sysattr<'e>(
enumerate: &'e mut UdevEnumerate,
sysattr: &str,
) -> Result<&'e UdevEntry> {
enumerate.add_match_sysattr(sysattr)
}
/// Adds an entry to the no-match sysattr [UdevEntry] list.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Match only devices without a given /sys device attribute.
/// ```
///
/// Returns `Ok(UdevEntry)` on success, `Err(Error)` otherwise.
pub fn udev_enumerate_add_nomatch_sysattr<'e>(
enumerate: &'e mut UdevEnumerate,
sysattr: &str,
) -> Result<&'e UdevEntry> {
enumerate.add_nomatch_sysattr(sysattr)
}
/// Adds an entry to the match properties [UdevEntry] list.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Match only devices with a certain property.
/// ```
///
/// Returns `Ok(UdevEntry)` on success, `Err(Error)` otherwise.
pub fn udev_enumerate_add_match_property<'e>(
enumerate: &'e mut UdevEnumerate,
property: &str,
value: &str,
) -> Result<&'e UdevEntry> {
enumerate.add_match_property(property, value)
}
/// Adds an entry to the match sysname [UdevEntry] list.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Match only devices with a given /sys device name.
/// ```
///
/// Returns `Ok(UdevEntry)` on success, `Err(Error)` otherwise.
pub fn udev_enumerate_add_match_sysname<'e>(
enumerate: &'e mut UdevEnumerate,
sysname: &str,
) -> Result<&'e UdevEntry> {
enumerate.add_match_sysname(sysname)
}
/// Adds an entry to the match tag [UdevEntry] list.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Match only devices with a certain tag.
/// ```
///
/// Returns `Ok(UdevEntry)` on success, `Err(Error)` otherwise.
pub fn udev_enumerate_add_match_tag<'e>(
enumerate: &'e mut UdevEnumerate,
tag: &str,
) -> Result<&'e UdevEntry> {
enumerate.add_match_tag(tag)
}
/// Sets the parent [UdevDevice] on a given device tree.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Return the devices on the subtree of one given device. The parent
/// itself is included in the list.
///
/// A reference for the device is held until the udev_enumerate context
/// is cleaned up.
/// ```
///
/// Returns: `Ok(())` on success, `Err(Error)` otherwise.
pub fn udev_enumerate_add_match_parent(
enumerate: &mut UdevEnumerate,
dev: Arc<UdevDevice>,
) -> Result<()> {
enumerate.set_parent(dev);
Ok(())
}
/// Sets whether the match lists are initialized.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Match only devices which udev has set up already. This makes
/// sure, that the device node permissions and context are properly set
/// and that network devices are fully renamed.
///
/// Usually, devices which are found in the kernel but not already
/// handled by udev, have still pending events. Services should subscribe
/// to monitor events and wait for these devices to become ready, instead
/// of using uninitialized devices.
///
/// For now, this will not affect devices which do not have a device node
/// and are not network interfaces.
/// ```
///
/// Returns: `Ok(())` on success, `Err(Error)` otherwise.
pub fn udev_enumerate_add_match_is_initialized(
enumerate: &mut UdevEnumerate,
val: bool,
) -> Result<()> {
enumerate.set_match_is_initialized(val);
Ok(())
}
/// Adds a devices to the list of devices.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Add a device to the list of devices, to retrieve it back sorted in dependency order.
/// ```
///
/// Returns: `Ok(())` on success, `Err(Error)` otherwise.
pub fn udev_enumerate_add_syspath(enumerate: &mut UdevEnumerate, syspath: &str) -> Result<()> {
enumerate.add_syspath(syspath)
}
/// Scan `/sys` for devices which match the given filters.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Scan /sys for all devices which match the given filters. No matches
/// will return all currently available devices.
/// ```
///
/// Returns: `Ok(())` on success, `Err(Error)` otherwise.
pub fn udev_enumerate_scan_devices(enumerate: &mut UdevEnumerate) -> Result<()> {
enumerate.scan_devices()
}
/// Scans `/sys` for all kernel subsystems.
///
/// From `libudev` documentation:
///
/// ```no_build,no_run
/// Scan /sys for all kernel subsystems, including buses, classes, drivers.
/// ```
///
/// Returns: `Ok(())` on success, `Err(Error)` otherwise.
pub fn udev_enumerate_scan_subsystems(enumerate: &mut UdevEnumerate) -> Result<()> {
enumerate.scan_subsystems()
}
/// Creates a new [UdevQueue].
pub fn udev_queue_new(udev: Arc<Udev>) -> Arc<UdevQueue> {
Arc::new(UdevQueue::new(udev))
}
/// Gets a reference to the [Udev] context.
pub fn udev_queue_get_udev(queue: &UdevQueue) -> &Arc<Udev> {
queue.udev()
}
/// Checks if [Udev] is active on the system.
pub fn udev_queue_get_udev_is_active(queue: &UdevQueue) -> bool {
queue.udev_is_active()
}
/// Gets whether [UdevQueue] is currently processing any events.
pub fn udev_queue_get_queue_is_empty(queue: &UdevQueue) -> bool {
queue.queue_is_empty()
}
/// Gets a file descriptor to watch for a queue to become empty.
pub fn udev_queue_get_fd(queue: &mut UdevQueue) -> Result<i32> {
queue.get_fd()
}
/// Clears the watched file descriptor for queue changes.
///
/// # Safety
///
/// Users must ensure that every [UdevQueue] has a unique file descriptor, if the descriptor is
/// non-negative.
///
/// Returns: `Ok(())` on success, `Err(Error)` otherwise.
pub fn udev_queue_flush(queue: &mut UdevQueue) -> Result<()> {
queue.flush()
}
/// Creates a new [UdevHwdb].
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Provides access to the static hardware properties database; the database to
/// use can be overriden by setting the UDEV_HWDB_BIN environment
/// variable to its file name.
/// ```
pub fn udev_hwdb_new(udev: Arc<Udev>) -> Result<Arc<UdevHwdb>> {
Ok(Arc::new(UdevHwdb::new(udev)?))
}
/// Looks up a matching device in the hardware database.
///
/// Parameters:
///
/// - `modalias`: modalias string
/// - `flags`: (unused), preserved for easier mapping to `libudev` C API
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// The lookup key is a `modalias` string, whose formats are defined for the Linux kernel modules.
/// Examples are: pci:v00008086d00001C2D*, usb:v04F2pB221*. The first entry
/// of a list of retrieved properties is returned.
/// ```
///
/// Returns: an optional reference to an [UdevEntry].
pub fn udev_hwdb_get_properties_list_entry<'h>(
hwdb: &'h mut UdevHwdb,
modalias: &str,
flags: u32,
) -> Option<&'h UdevEntry> {
hwdb.get_properties_list_entry(modalias, flags)
}
/// Looks up a matching device modalias in the hardware database and returns the list of properties.
pub fn udev_hwdb_query<'h>(hwdb: &'h mut UdevHwdb, modalias: &str) -> Option<&'h UdevList> {
// populate list if modalias is present and return
hwdb.query(modalias)
}
/// Looks up a specific matching property name (key) for device modalias
///
/// ```no_run
/// use std::sync::Arc;
/// use udevrs::{Udev, UdevHwdb};
/// let udev = Arc::new(Udev::new());
///
/// let mut hwdb = UdevHwdb::new(udev).unwrap();
/// let query = udevrs::udev_hwdb_query_one(&mut hwdb, "usb:v1D6Bp0001", "ID_VENDOR_FROM_DATABASE");
/// assert_eq!(query, Some("Linux Foundation"));
/// ```
pub fn udev_hwdb_query_one<'h>(
hwdb: &'h mut UdevHwdb,
modalias: &str,
name: &str,
) -> Option<&'h str> {
hwdb.query(modalias)
.and_then(|list| list.iter().find(|e| e.name() == name).map(|e| e.value()))
}
/// Encodes provided string, removing potentially unsafe characters.
///
/// From the `libudev` documentation:
///
/// ```no_build,no_run
/// Encode all potentially unsafe characters of a string to the
/// corresponding 2 char hex value prefixed by '\x'.
/// ```