diff --git a/README.md b/README.md index aaff815..a13a136 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,35 @@ # libudev-zero -Drop-in replacement for `libudev` that enables you to use any device manager -you like without worrying about the `udev` dependency at all! + +Drop-in replacement for `libudev` that intended to work with any device manager ## Why? -Because `udev` sucks, it is bloated and overengineered. `udev` is just like `systemd`, it locks you into using non-portable crap that you can't avoid because multiple programs depend on it. Look, even FreeBSD was forced to rewrite[1] this crappy library because `libinput` hard-depends on `udev`. Without `libinput` you can't use `wayland` and many other cool stuff. -Michael Forney (author of `cproc`, `samurai`, Oasis Linux, ...) decided to fork[2] `libinput` and remove the hard dependency on `udev`. Is this a solution? Yes. -Is this a complete solution? No. This fork has a lot of disadvantages like requiring patching applications to use `libinput_netlink` instead of the `libinput_udev` API in order to use the automatic detection of input devices and hotplugging. Static configuration is also required for anything other than input devices (e.g drm devices). Moreover hotplugging is vulnerable to race conditions when `libinput` handles the `uevent` faster than the device manager which can lead to file permission issues. `libudev-zero` prevents these race conditions by design. +Because `udev` sucks, it is bloated and overengineered. `udev` is just +like `systemd`, it locks you into using non-portable crap that you can't +avoid because multiple programs depend on it. Look, even FreeBSD was forced +to rewrite[0] this crappy library because `libinput` hard-depends on `udev`. +Without `libinput` you can't use `wayland` and many other cool stuff. -Thankfully `udev` has stable API and hopefully no changes will be made to it the future. On this basis I decided to create this clean-room implementation of `libudev` which can be used with any or without a device manager. +Michael Forney (author of `cproc`, `samurai`, Oasis Linux, ...) decided to +fork[1] `libinput` and remove the hard dependency on `udev`. Is this a +solution? Yes. Is this a complete solution? No. This fork has a lot of +disadvantages like requiring patching applications to use `libinput_netlink` +instead of the `libinput_udev` API in order to use the automatic detection of +input devices and hotplugging. Static configuration is also required for +anything other than input devices (e.g drm devices). Moreover hotplugging is +vulnerable to race conditions when `libinput` handles the `uevent` faster than +the device manager which can lead to file permission issues. `libudev-zero` +prevents these race conditions by design. -[1] https://github.com/FreeBSDDesktop/libudev-devd -[2] https://github.com/oasislinux/libinput +Thankfully `udev` has stable API and hopefully no changes will be made to it +the future. On this basis I decided to create this clean-room implementation +of `libudev` which can be used with any or without a device manager. + +[0] https://github.com/FreeBSDDesktop/libudev-devd +[1] https://github.com/oasislinux/libinput ## What Works + * [x] xorg-server * [ ] dosfstools - need to implement udev_enumerate_add_match_parent() * [x] libinput @@ -21,10 +37,11 @@ Thankfully `udev` has stable API and hopefully no changes will be made to it the * [x] wlroots * [x] weston * [x] libusb -* [x] kwin - [fix](https://github.com/dilyn-corner/KISS-kde/commit/0cc72748e46f859a0fced55b0c3fcc1dd9586a38) +* [x] kwin * [ ] ??? ## Dependencies + * C99 compiler (build time) * POSIX make (build time) * POSIX & XSI libc @@ -35,36 +52,29 @@ Thankfully `udev` has stable API and hopefully no changes will be made to it the ```sh make -make PREFIX=/usr install # this will overwrite udev libraries if they exist -# rebuild all the packages that depend on libudev, and you're ready to go. +make PREFIX=/usr install ``` ## Hotplugging -Note that hotplugging support is fully optional! You can skip this step if you don't have a need for the hotplugging capability. -Hotplugging is fairly uncomplicated and not overengineered at all. Everything is portable as much as possible. To use hotplugging the only thing you need is a `uevent` receiver (like a device manager, busybox's `uevent`, `CONFIG_UEVENT_HELPER`, ...). I will explain only the `mdev` and `CONFIG_UEVENT_HELPER` methods because their usage is fairly basic. For busybox's `uevent` you need to write your own parser which is kinda, well, complex. +Note that hotplugging support is fully optional. You can skip +this step if you don't have a need for the hotplugging capability. -`UDEV_MONITOR_DIR` is an arbitrary directory where the `uevent` files are stored. The default is `/tmp/.libudev-zero`. You can change it at build time by appending `-DUDEV_MONITOR_DIR=