chiark / gitweb /
Kay Sievers [Mon, 13 Jul 2009 01:33:15 +0000 (03:33 +0200)]
udevd: use bool
Kay Sievers [Mon, 13 Jul 2009 01:09:05 +0000 (03:09 +0200)]
udevd: handle SIGCHLD before the worker event message
We may need to handle SIGCHLD before the queued worker message. The last
reference, from the SIGCHLD or the worker message will clean up the worker
context. In case we receive an unexpected SIGCHLD with an error, we let
the event fail and clean up the worker context.
Kay Sievers [Sat, 11 Jul 2009 16:21:26 +0000 (18:21 +0200)]
udevd: make sure a worker finishes event handling before exiting
Persistent network rules write out new rules files. When rules change,
we need to kill all workers to update the in-memory copy of the rules.
We need to make sure, that a worker finshes its work for all device
messages it has accepted, before it exits after a SIGTERM from the main
process.
Kay Sievers [Wed, 8 Jul 2009 15:05:55 +0000 (17:05 +0200)]
udevadm: info - add space after R:, A:, W: on database export
<zzam> kay: udevadmin info -e prints all lines with a space after the :, but the W: line
<kay> zzam: yeah, seems so, and the R: and the A:
<zzam> yeah
Kay Sievers [Wed, 8 Jul 2009 12:13:20 +0000 (14:13 +0200)]
udevd: detach event from worker if we kill a worker
Jul 8 09:36:41 udevd[663]: worker [5491] did not accept message, kill it
Jul 8 09:36:41 udevd[663]: worker [5491] unexpectedly returned with 0
Jul 8 09:36:41 udevd[663]: worker [5551] unexpectedly returned with 0
Jul 8 09:36:41 kernel: [ 156.832086] <6>udevd[663]: segfault at 4 ip
00959fbc sp
bfbe7b78 error 6 in udevd[94f000+1c000]
https://bugs.launchpad.net/ubuntu/+source/udev/+bug/396957
Kay Sievers [Wed, 8 Jul 2009 00:04:49 +0000 (02:04 +0200)]
libudev: enumerate - sort with qsort()
On machines with many thousands of devices:
$ time find /sys -name uevent | wc -l
74876
real 0m33.171s
user 0m3.329s
sys 0m29.719s
the current udevtrigger spends minutes sorting the device list:
$ time /sbin/udevadm trigger --dry-run
real 4m56.739s
user 4m45.743s
sys 0m7.862s
with qsort() it looks better:
$ time udev/udevadm trigger --dry-run
real 0m6.495s
user 0m0.473s
sys 0m5.923s
Kay Sievers [Wed, 8 Jul 2009 00:02:40 +0000 (02:02 +0200)]
libudev: device - free values before updating them
Kay Sievers [Wed, 8 Jul 2009 00:02:02 +0000 (02:02 +0200)]
configure.ac: version bump
Kay Sievers [Tue, 7 Jul 2009 17:30:19 +0000 (19:30 +0200)]
use MIN() MAX() from param.h
Kay Sievers [Tue, 7 Jul 2009 07:48:23 +0000 (09:48 +0200)]
README: add CONFIG_BLK_DEV_BSG
Ian Campbell [Mon, 6 Jul 2009 13:54:52 +0000 (14:54 +0100)]
scsi_id: correct error handling in prepend_vendor_model
The callers of prepend_vendor_model both expect < 0 to be returned on
error and the index to be returned otherwise. However
prepend_vendor_model actually returns 1 on error. Fix this by correctly
returning -1.
Older kernels (before
e5b3cd42: "SCSI: sanitize INQUIRY strings")
truncated the model field in sysfs (or propagated bad results from the
target) to less than the expected/required 16 characters which meant
that the SCSI id was mangled into:
# /sbin/scsi_id -g -s /block/sdg
S146cee20VIRTUAL-DISK
when it should have been:
# /sbin/scsi_id -g -s /block/sdg
SIET VIRTUAL-DISK
146cee20
Notice how the serial number has been pasted over the vendor+model at
index 1 instead of being added at the end.
In the former case:
# cat /sys/devices/platform/host5/session1/target5:0:0/5:0:0:1/model | od -t c -t x1
0000000 V I R T U A L - D I S K \n
56 49 52 54 55 41 4c 2d 44 49 53 4b 0a
But it should have been:
# cat /sys/devices/platform/host5/session1/target5:0:0/5:0:0:1/model | od -t c -t x1
0000000 V I R T U A L - D I S K
56 49 52 54 55 41 4c 2d 44 49 53 4b 20 20 20 20
0000020 \n
0a
Signed-off-by: Ian Campbell <ijc@hellion.org.uk>
Kay Sievers [Sun, 5 Jul 2009 22:52:56 +0000 (00:52 +0200)]
release 144
Kay Sievers [Sun, 5 Jul 2009 21:56:24 +0000 (23:56 +0200)]
build: add *exec* to the internal rootlibdir name
Automake like variables with *exec* in the directory names,
to decide, that it isn't *data*:
http://www.gnu.org/software/hello/manual/automake/The-Two-Parts-of-Install.html#The-Two-Parts-of-Install
Kay Sievers [Sat, 4 Jul 2009 14:59:35 +0000 (16:59 +0200)]
update NEWS
Kay Sievers [Fri, 3 Jul 2009 16:40:38 +0000 (18:40 +0200)]
libudev: monitor - handle kernel supplied DEVNAME properly
Kay Sievers [Fri, 3 Jul 2009 16:38:45 +0000 (18:38 +0200)]
build: do not delete .la files
Martin Pitt [Fri, 3 Jul 2009 12:57:43 +0000 (14:57 +0200)]
extras/udev-acl: add smartcard readers
gnupg, psc-lite, etc. will ship udev rules for supported smartcard readers
soon. Add the ACL management bit.
Thanks to Michael Bienia!
Kay Sievers [Thu, 2 Jul 2009 20:56:19 +0000 (22:56 +0200)]
udevadm: test - print list of properties
Kay Sievers [Thu, 2 Jul 2009 10:13:36 +0000 (12:13 +0200)]
Merge branch 'firmware' of git://git./linux/kernel/git/jcm/udev-jcm
Jon Masters [Thu, 2 Jul 2009 00:21:03 +0000 (20:21 -0400)]
firmware: search for third party or sysadmin supplied firmware updates
We currently search /lib/firmware and /lib/firmware/`uname -r` for firmware
files for device drivers loaded by the currently running kernel. These are
often packaged by distributions as a subpackage of the kernel or as a
separate package containing firmware. But these files cannot easily be
updated by third parties or sysadmins independently of that package.
This patch causes udev to also look for firmware files in an "updates"
directory, which is almost identical in purpose to the module-init-tools
"updates" directories insomuch as local changes can go in here and will
take preference over firmware supplied by any distribution.
Stefan Richter [Wed, 1 Jul 2009 19:41:43 +0000 (21:41 +0200)]
rules: set group ownership of new firewire driver device files
The newer firewire-core driver exposes per-device character device files,
called /dev/fw[0-9]*, in contrast to the older raw1394, video1394, dv1394
drivers which created one global file or per-controller files.
This allows to set ownership, permissions, or/ and access control lists
for each device file based on device type markers obtained from sysfs.
The "units" attribute which is used for this purpose has become available
in Linux 2.6.31(-rc1) by commit
0210b66dd88a2a1e451901b00378a2068b6ccb35.
The added rules match identifiers of
- IIDC devices:
industrial cameras and some webcams,
- AV/C devices:
camcorders, set-top boxes, TV sets, audio devices, and similar
devices.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Kay Sievers [Sun, 28 Jun 2009 15:10:04 +0000 (17:10 +0200)]
man: udev - add private properties like ENV{.FOO}="bar"
Kay Sievers [Sun, 28 Jun 2009 15:09:57 +0000 (17:09 +0200)]
update NEWS
Kay Sievers [Sun, 28 Jun 2009 01:01:31 +0000 (03:01 +0200)]
scsi_id: delete no longer needed config file
Kay Sievers [Sun, 28 Jun 2009 00:59:48 +0000 (02:59 +0200)]
rules: make ata_id properties the default for all ATA block devices
We need to call ata_id as the default for libata sd* devices. We
want ID_BUS=ata, and the ATA device proeprties, and be independent
of the SCSI emulation with the truncated values. The links
in /dev/disk/by-id/{ata-*,scsi-*} are still the same.
Kay Sievers [Sun, 28 Jun 2009 00:58:12 +0000 (02:58 +0200)]
ata_id: sync ID_SERIAL(_SHORT) with other *_id tools
ID_SERIAL is the full serial number used for the links, ID_SERIAL_SHORT
is the device serial number.
Kay Sievers [Sun, 28 Jun 2009 00:27:23 +0000 (02:27 +0200)]
scsi_id: --reformat_serial - use udev_util_replace_whitespace()
Kay Sievers [Sun, 28 Jun 2009 00:21:58 +0000 (02:21 +0200)]
do not exports properties starting with a '.'
Private variables can be marked like:
ENV{.FOO}="bar"
Martin Pitt [Fri, 26 Jun 2009 06:17:23 +0000 (08:17 +0200)]
hid2hci: narrow matches to real HCI devices
The previous rules just checked bInterfaceProtocol but not the actual device
and interface class. This caused the hci rules to be applied for Dell USB hubs
and attached input devices like keyboards and mouses as well, breaking them
completely.
Tighten the match to also check device and interface class/subclass.
https://launchpad.net/bugs/392144
Kay Sievers [Mon, 22 Jun 2009 14:34:55 +0000 (16:34 +0200)]
configure.ac: version bump
Kay Sievers [Sun, 21 Jun 2009 22:33:09 +0000 (00:33 +0200)]
udev/.gitignore: add udev.pc
Kay Sievers [Sun, 21 Jun 2009 22:32:26 +0000 (00:32 +0200)]
libudev: queue - add comments for queue format
udev/udev.pc
Kay Sievers [Sun, 21 Jun 2009 22:31:46 +0000 (00:31 +0200)]
TODO: add cleanup of ATA_COMPAT
Kay Sievers [Sun, 21 Jun 2009 22:30:42 +0000 (00:30 +0200)]
configure.ac: version bump
Kay Sievers [Sat, 20 Jun 2009 01:57:26 +0000 (03:57 +0200)]
configure.ac: add AM_SILENT_RULES
Kay Sievers [Fri, 19 Jun 2009 17:50:01 +0000 (19:50 +0200)]
release 143
Kay Sievers [Fri, 19 Jun 2009 17:33:22 +0000 (19:33 +0200)]
docs: install writing_udev_rules
Kay Sievers [Fri, 19 Jun 2009 17:21:26 +0000 (19:21 +0200)]
Merge branch 'master' of git+ssh:///linux/hotplug/udev
Kay Sievers [Fri, 19 Jun 2009 17:17:18 +0000 (19:17 +0200)]
udev.pc: add
Martin Pitt [Fri, 19 Jun 2009 12:53:18 +0000 (14:53 +0200)]
extras/keymap: Update findkeyboards location
Recent commit
3b338b6 moved findkeyboards from /usr/share/udev to /lib/udev/.
Update documentation accordingly.
Martin Pitt [Fri, 19 Jun 2009 12:49:35 +0000 (14:49 +0200)]
udev-acl: Manage hplip device permissions
hplip tools need user access to the devices for checking ink levels and
user-level configuration. This was formerly done with hal FDIs.
As per discussion with Till Kamppeter.
Kay Sievers [Fri, 19 Jun 2009 09:49:49 +0000 (11:49 +0200)]
NEWS: update
Kay Sievers [Fri, 19 Jun 2009 09:49:11 +0000 (11:49 +0200)]
INSTALL: use /sbin instead of %{sbindir}
Kay Sievers [Fri, 19 Jun 2009 09:48:04 +0000 (11:48 +0200)]
extras/keymap: install findkeyboards in /lib/udev
Kay Sievers [Wed, 17 Jun 2009 20:14:52 +0000 (22:14 +0200)]
README: update
Kay Sievers [Wed, 17 Jun 2009 19:57:40 +0000 (21:57 +0200)]
extras: delete man pages for private udev tools
These are mostly dummy man pages, without real content, some even
outdated. None of these tools are part of any offered public interface,
and they should not pretend to be by offering a man page.
Kay Sievers [Wed, 17 Jun 2009 16:18:22 +0000 (18:18 +0200)]
rules: do not install usb-id/pci-id rules when --disable-extras is used
Kay Sievers [Wed, 17 Jun 2009 16:04:05 +0000 (18:04 +0200)]
README: add /lib/udev/ is private
Martin Pitt [Wed, 17 Jun 2009 14:57:30 +0000 (16:57 +0200)]
keymap: Update findkeyboard path in docs
findkeyboards is now in /usr/share/udev/ after the migration to udev proper.
Update path in README.keymap.txt.
Matthias Schwarzott [Wed, 17 Jun 2009 14:24:16 +0000 (16:24 +0200)]
rules: Gentoo update
Kay Sievers [Wed, 17 Jun 2009 14:18:04 +0000 (16:18 +0200)]
extras/keymap: use LIBEXECDIR instead /lib/udev
Kay Sievers [Wed, 17 Jun 2009 14:10:06 +0000 (16:10 +0200)]
libudev: install in $libdir and move later to $rootlibdir
That way, libudev.la will not get out of sync with the location of the
development so link.
Kay Sievers [Wed, 17 Jun 2009 11:31:34 +0000 (13:31 +0200)]
configure.ac: print error if gperf is missing
Dan Williams [Wed, 17 Jun 2009 10:16:54 +0000 (12:16 +0200)]
extras/modem-modeswitch: move from udev-extras
Martin Pitt [Wed, 17 Jun 2009 10:06:33 +0000 (12:06 +0200)]
extras/keymap: Fix WLAN button on ThinkPads
Fn+F5 was previously assigned to "radio" which is fairly useless under X.
Switch it to "wlan".
Reported in http://bugs.debian.org/504643
Martin Pitt [Wed, 17 Jun 2009 09:56:52 +0000 (11:56 +0200)]
keymap: move from udev-extras
Kay Sievers [Wed, 17 Jun 2009 00:33:49 +0000 (02:33 +0200)]
rules: remove MMC rule, 2.6.30 has the modalias
Kay Sievers [Wed, 17 Jun 2009 00:25:07 +0000 (02:25 +0200)]
cleanup ./configure installation directory options
Kay Sievers [Tue, 16 Jun 2009 20:02:19 +0000 (22:02 +0200)]
NEWS: add --disable-extras
Kay Sievers [Tue, 16 Jun 2009 19:29:13 +0000 (21:29 +0200)]
autogen.sh: make "CFLAGS=-O0 ./autogen.sh" working
Kay Sievers [Tue, 16 Jun 2009 19:13:15 +0000 (21:13 +0200)]
configure: enable all extras by default, provide --disable-extras
Lennart Poettering [Tue, 16 Jun 2009 18:57:28 +0000 (20:57 +0200)]
usb-db: move from udev-extras
Dan Williams [Tue, 16 Jun 2009 18:27:22 +0000 (20:27 +0200)]
rules: tty/net - move from udev-extras
Lennart Poettering [Tue, 16 Jun 2009 18:26:20 +0000 (20:26 +0200)]
rules: sound - move from udev-extra
Kay Sievers [Tue, 16 Jun 2009 18:13:17 +0000 (20:13 +0200)]
v4l_id: 70-v4l.rules -> 60-persistent-v4l.rules
Kay Sievers [Tue, 16 Jun 2009 17:56:31 +0000 (19:56 +0200)]
gudev: fix typo in configure option
Mario Limonciello [Tue, 16 Jun 2009 17:30:22 +0000 (19:30 +0200)]
hid2hci: move from udev-extras
Kay Sievers [Tue, 16 Jun 2009 16:54:18 +0000 (18:54 +0200)]
libudev: doc - libudev-docs.sgml -> libudev-doc.xml
Kay Sievers [Tue, 16 Jun 2009 16:41:05 +0000 (18:41 +0200)]
v4l_id: move from udev-extras
Kay Sievers [Tue, 16 Jun 2009 16:11:40 +0000 (18:11 +0200)]
udev-acl: handle missing action when called in CK mode
Kay Sievers [Tue, 16 Jun 2009 16:06:13 +0000 (18:06 +0200)]
INSTALL: add --enable-extras
David Zeuthen [Tue, 16 Jun 2009 15:52:15 +0000 (17:52 +0200)]
gudev: move from udev-extras
GObject libudev access. Initial version from Bastien Nocera, current
version by David Zeuthen.
Kay Sievers [Tue, 16 Jun 2009 15:43:12 +0000 (17:43 +0200)]
udev-acl: move from udev-extras
The build of extras with larger external dependencies is wrapped in:
--enable-extras
Kay Sievers [Tue, 16 Jun 2009 13:38:40 +0000 (15:38 +0200)]
libudev: doc - add empty libudev.types
Kay Sievers [Tue, 16 Jun 2009 12:56:10 +0000 (14:56 +0200)]
libudev: remove prefix from .so version variables
Kay Sievers [Tue, 16 Jun 2009 12:21:08 +0000 (14:21 +0200)]
TODO: update
Kay Sievers [Tue, 16 Jun 2009 12:19:19 +0000 (14:19 +0200)]
autogen.sh: simplify
Kay Sievers [Tue, 16 Jun 2009 12:18:16 +0000 (14:18 +0200)]
libudev: move .so version to libudev Makefile
Kay Sievers [Tue, 16 Jun 2009 01:02:46 +0000 (03:02 +0200)]
libudev: doc - add namespace for index
Kay Sievers [Tue, 16 Jun 2009 00:03:26 +0000 (02:03 +0200)]
update TODO
Matthias Schwarzott [Mon, 15 Jun 2009 22:44:39 +0000 (00:44 +0200)]
rules: Gentoo update
Kay Sievers [Mon, 15 Jun 2009 18:28:28 +0000 (20:28 +0200)]
libudev: doc - add queue
Kay Sievers [Mon, 15 Jun 2009 18:04:46 +0000 (20:04 +0200)]
libudev: doc - add enumerate
Kay Sievers [Mon, 15 Jun 2009 15:09:43 +0000 (17:09 +0200)]
libudev: doc - add section headers
Kay Sievers [Mon, 15 Jun 2009 11:22:38 +0000 (13:22 +0200)]
libudev: update documentation
Kay Sievers [Mon, 15 Jun 2009 11:22:21 +0000 (13:22 +0200)]
libudev: add gtk-doc
Matthias Schwarzott [Sun, 14 Jun 2009 16:27:52 +0000 (18:27 +0200)]
rules: Gentoo update
Kay Sievers [Sun, 14 Jun 2009 15:53:15 +0000 (17:53 +0200)]
USE_LOG -> ENABLE_LOGGING, DEBUG -> ENABLE_DEBUG, USE_SELINUX -> WITH_SELINUX
Kay Sievers [Thu, 11 Jun 2009 15:59:46 +0000 (17:59 +0200)]
README: add INOTIFY and SIGNALFD
Kay Sievers [Thu, 11 Jun 2009 15:58:14 +0000 (17:58 +0200)]
README: add kernel options
Kay Sievers [Wed, 10 Jun 2009 13:55:24 +0000 (15:55 +0200)]
udevadm: info -revert "accept --query without argument"
Getopt is too dumb, the optional argument breaks "udevadm -q symlink".
Kay Sievers [Tue, 9 Jun 2009 22:18:00 +0000 (00:18 +0200)]
update NEWS
Kay Sievers [Tue, 9 Jun 2009 22:17:35 +0000 (00:17 +0200)]
rules: remove scsi ch module loading rule
Kay Sievers [Tue, 9 Jun 2009 21:12:12 +0000 (23:12 +0200)]
libudev: rename private files to *-private.c
Kay Sievers [Tue, 9 Jun 2009 21:05:25 +0000 (23:05 +0200)]
move common stuff from udev/ to private parts of libudev/
Kay Sievers [Tue, 9 Jun 2009 20:47:48 +0000 (22:47 +0200)]
move syslog wrapper to libudev
Kay Sievers [Tue, 9 Jun 2009 17:03:39 +0000 (19:03 +0200)]
libudev: call log functions conditionally
Kay Sievers [Tue, 9 Jun 2009 16:31:14 +0000 (18:31 +0200)]
udevd: log info for created/killed workers
Kay Sievers [Tue, 9 Jun 2009 11:11:23 +0000 (13:11 +0200)]
libudev: device_new() -> udev_device_new()
Kay Sievers [Mon, 8 Jun 2009 20:25:58 +0000 (22:25 +0200)]
fix libudev include in Makefile.am.in