chiark / gitweb /
elogind.git
13 years agoversion bump
Kay Sievers [Sat, 23 Oct 2010 13:35:35 +0000 (15:35 +0200)]
version bump

13 years agorelease 164
Kay Sievers [Sat, 23 Oct 2010 13:13:57 +0000 (15:13 +0200)]
release 164

13 years agolibudev: return kernel provided devnode when asked before we handled any rules
Kay Sievers [Fri, 22 Oct 2010 11:50:55 +0000 (13:50 +0200)]
libudev: return kernel provided devnode when asked before we handled any rules

13 years agokeymap: Add Toshiba Satellite U500
Martin Pitt [Fri, 22 Oct 2010 10:52:45 +0000 (12:52 +0200)]
keymap: Add Toshiba Satellite U500

https://launchpad.net/bugs/271706

13 years agoreturn proper error code in rename_netif()
Kay Sievers [Mon, 18 Oct 2010 10:50:20 +0000 (12:50 +0200)]
return proper error code in rename_netif()

<Md>  kay: can you look at rename_netif()? it returns -errno in a place,
      but I think that it may by changed by err() (at least)
<kay> Md: yeah, that doesn't look correct

13 years agokeymap: Apply force-release rules to all Samsung models.
Martin Pitt [Wed, 13 Oct 2010 16:08:41 +0000 (18:08 +0200)]
keymap: Apply force-release rules to all Samsung models.

The force-release list for Samsung is already an ultralong monster, and
reportedly still incomplete (see https://launchpad.net/bugs/574250).
Give up and instead apply the force-release quirk to all Samsung models. The
worst that can happen is that autorepeat behaves a bit weird, but that's much
better than a complete freeze after each keypress.

13 years agoudevd: do not wrongly delay events for devices with swapped names
Kay Sievers [Wed, 13 Oct 2010 11:03:27 +0000 (13:03 +0200)]
udevd: do not wrongly delay events for devices with swapped names

Renaming network devices might delay events for the other device, which has
the same devpath in the meantime as the original event. Causing a delay until
the timout of the event is reached.

Look at the ifindex/devnum of the devices to check if they are really
the same devices.

13 years agoversion bump
Kay Sievers [Thu, 7 Oct 2010 13:34:20 +0000 (15:34 +0200)]
version bump

13 years agoInstall libgudev-1.0.so in prefix / instead of prefix /usr
David Zeuthen [Mon, 11 Oct 2010 16:01:04 +0000 (12:01 -0400)]
Install libgudev-1.0.so in prefix / instead of prefix /usr

This is to match where libudev.so is installed and it works because
all dependent libraries are already installed in / instead of /usr on
most distros:

 $ ldd /usr/lib64/libgudev-1.0.so
         linux-vdso.so.1 =>  (0x00007fff44dff000)
         libudev.so.0 => /lib64/libudev.so.0 (0x0000003bf2600000)
         libgobject-2.0.so.0 => /lib64/libgobject-2.0.so.0 (0x0000003fb5200000)
         libgthread-2.0.so.0 => /lib64/libgthread-2.0.so.0 (0x0000003fb4e00000)
         libpthread.so.0 => /lib64/libpthread.so.0 (0x0000003d5b000000)
         librt.so.1 => /lib64/librt.so.1 (0x0000003d5b800000)
         libglib-2.0.so.0 => /lib64/libglib-2.0.so.0 (0x0000003fb4a00000)
         libc.so.6 => /lib64/libc.so.6 (0x0000003d5ac00000)
         /lib64/ld-linux-x86-64.so.2 (0x0000003d5a800000)

With this change it is possible to write libgudev applications that
can be installed in /bin or /sbin and can run without /usr being
mounted. This is needed for e.g. udisks, NetworkManager and other
subsystem-specific daemons.

Signed-off-by: David Zeuthen <davidz@redhat.com>
13 years agocdrom_id: request the drive profile features with a dynamic length
Harald Hoyer [Thu, 7 Oct 2010 15:02:21 +0000 (17:02 +0200)]
cdrom_id: request the drive profile features with a dynamic length

Some drives don't like huge feature buffers, so we query twice. First
run for the current profile and to get the length.
Second time we query the whole profile feature set.

13 years agorelease 163
Kay Sievers [Thu, 7 Oct 2010 13:07:48 +0000 (15:07 +0200)]
release 163

13 years agoudevd: add sd-daemon.c
Kay Sievers [Thu, 7 Oct 2010 12:59:11 +0000 (14:59 +0200)]
udevd: add sd-daemon.c

13 years agosystemd: sort before basic.target
Kay Sievers [Thu, 7 Oct 2010 08:49:13 +0000 (10:49 +0200)]
systemd: sort before basic.target

13 years agocdrom_id: Don't read beyond "last track" in TOC
Martin Pitt [Tue, 5 Oct 2010 15:56:19 +0000 (17:56 +0200)]
cdrom_id: Don't read beyond "last track" in TOC

Read the first and last track from the TOC header, and do not go beyond that
stated number of tracks when reading the TOC. Otherwise we interpret random
data which leads to bogus tracks. (Reported on an IronKey, which reported 1
data track, and 4 audio tracks which weren't actually present.)

13 years agocdrom_id: Fall back to CDROM_DRIVE_STATUS if all MMC commands fail
Martin Pitt [Tue, 5 Oct 2010 12:59:51 +0000 (14:59 +0200)]
cdrom_id: Fall back to CDROM_DRIVE_STATUS if all MMC commands fail

Reportedly, some "when I'm grown up I want to be a CD drive" fake USB CD sticks
like the IronKey neither support the SCSI "GET CONFIGURATION" nor the older
(pre-MMC2) "READ DISC INFORMATION" command. In that case, check if
cd_media_compat() detected that there is a disc present, and assume that we
have a CD-ROM medium.

13 years agoRevert "cdrom_id: Try reading the medium if all MMC commands fail"
Martin Pitt [Tue, 5 Oct 2010 12:57:04 +0000 (14:57 +0200)]
Revert "cdrom_id: Try reading the medium if all MMC commands fail"

Turns out we can do this much simpler by assuming that cd_media_compat() works,
which seems to be the case for the IronKey.

This reverts commit ea88774a922c734afd751a59d8102bfa4806a1a6.

13 years agocdrom_id: Try reading the medium if all MMC commands fail
Martin Pitt [Tue, 5 Oct 2010 12:34:55 +0000 (14:34 +0200)]
cdrom_id: Try reading the medium if all MMC commands fail

Reportedly, some "when I'm grown up I want to be a CD drive" fake USB CD sticks
like the IronKey neither support the SCSI "GET CONFIGURATION" nor the older
(pre-MMC2) "READ DISC INFORMATION" command. In that case, check if we can read
data from the drive, and assume that we have a CD-ROM medium if it succeeds.

13 years agosystemd: hook into basic.target instead of sysinit.target
Kay Sievers [Tue, 28 Sep 2010 22:48:35 +0000 (00:48 +0200)]
systemd: hook into basic.target instead of sysinit.target

13 years agokeymap: Add alternate MSI vendor name
Lee, Chun-Yi [Sat, 25 Sep 2010 08:50:27 +0000 (16:50 +0800)]
keymap: Add alternate MSI vendor name

Add new vendor name "Micro-Star International" in 95-keymap.rules.

Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
13 years agoAdd automatic rules syntax check
Martin Pitt [Tue, 21 Sep 2010 10:45:52 +0000 (12:45 +0200)]
Add automatic rules syntax check

Add test/rule-syntax-check.py, a script for checking the syntax of all udev
rules files passed as command line arguments.

Add a wrapper test/rules-test.sh which calls rule-syntax-check.py on all udev
rules that we ship, but does nothing if Python is not available. Integrate this
into make check/distcheck.

13 years agofix various syntax errors in rules
Martin Pitt [Tue, 21 Sep 2010 10:14:50 +0000 (12:14 +0200)]
fix various syntax errors in rules

13 years agoClarify WAIT_FOR documentation
Martin Pitt [Tue, 21 Sep 2010 10:12:01 +0000 (12:12 +0200)]
Clarify WAIT_FOR documentation

The path is relative to the sysfs device, so this provides an easy way to wait
for an attribute to appear.

13 years agogudev: add a few annotations that newer gobject-introspection versions demand
Torsten Schoenfeld [Mon, 20 Sep 2010 08:25:55 +0000 (10:25 +0200)]
gudev: add a few annotations that newer gobject-introspection versions demand

13 years agokeymap: Add Lenovo Y550
Martin Pitt [Tue, 14 Sep 2010 16:21:13 +0000 (18:21 +0200)]
keymap: Add Lenovo Y550

https://launchpad.net/bugs/543065

13 years agoBump required GLib version to 2.22
David Zeuthen [Tue, 7 Sep 2010 15:11:11 +0000 (11:11 -0400)]
Bump required GLib version to 2.22

This is needed for g_main_context_get_thread_default().

Signed-off-by: David Zeuthen <davidz@redhat.com>
13 years agogudev: Deliver ::uevent signal in the thread-default main loop
David Zeuthen [Tue, 7 Sep 2010 15:01:23 +0000 (11:01 -0400)]
gudev: Deliver ::uevent signal in the thread-default main loop

... that the GUdevClient object was constructed in. This change makes
GUdev follow the GLib guidelines and, more importantly, makes it
possible to actually use the library in a multi-threaded
application. Prior to this patch, signals were emitted in the thread
that ran the "default" main loop.

Signed-off-by: David Zeuthen <davidz@redhat.com>
13 years agoscsi_id: fix compiler warnings
Kay Sievers [Tue, 7 Sep 2010 06:24:12 +0000 (08:24 +0200)]
scsi_id: fix compiler warnings

13 years agoscsi_id: export target port group
Hannes Reinecke [Mon, 6 Sep 2010 09:00:22 +0000 (11:00 +0200)]
scsi_id: export target port group

For ALUA support it's useful to have the target port group number
of a device.

Signed-off-by: Hannes Reinecke <hare@suse.de>
13 years agoversion bump
Kay Sievers [Fri, 3 Sep 2010 13:14:36 +0000 (15:14 +0200)]
version bump

13 years agorelease 162
Kay Sievers [Fri, 3 Sep 2010 13:07:03 +0000 (15:07 +0200)]
release 162

13 years agoRevert "Add alternative KVM MAC address blacklist"
Kay Sievers [Fri, 3 Sep 2010 12:08:14 +0000 (14:08 +0200)]
Revert "Add alternative KVM MAC address blacklist"

This reverts commit 634afac119bbe6bc21719ae3daa45805b1cf3334.

54:52:00 was just a bug in libvirt, and that's better fixed locally,
and we should not carry it in udev rules.

13 years agosystemd: enable all udev services unconditionally
Kay Sievers [Fri, 3 Sep 2010 11:30:57 +0000 (13:30 +0200)]
systemd: enable all udev services unconditionally

13 years agoChangeLog fix
Michal Soltys [Fri, 3 Sep 2010 08:53:26 +0000 (10:53 +0200)]
ChangeLog fix

In v141 -> v142 entry, there's a note about udevd creating
/dev/{null,kmsg,console}. It was added in commit 540f46698dd5a3b,
but shortly after that removed in a00bdfa16b9bac7 before v142
release.

Signed-off-by: Michal Soltys <soltys@ziu.info>
13 years agoAdd alternative KVM MAC address blacklist
Martin Pitt [Thu, 2 Sep 2010 09:11:32 +0000 (11:11 +0200)]
Add alternative KVM MAC address blacklist

Reportedly, older KVM/Qemu instances indeed do use 54:52:00:*,
so add this as an alternative.

13 years agoDon't install systemd scripts with --without-systemdsystemunitdir
Michael Forney [Fri, 27 Aug 2010 02:10:03 +0000 (19:10 -0700)]
Don't install systemd scripts with --without-systemdsystemunitdir

Currently, the scripts get installed to /no/ if that option is
specified.

Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
13 years agodo not create persistent name rules for VMWare network interfaces
Martin Pitt [Thu, 2 Sep 2010 06:39:12 +0000 (08:39 +0200)]
do not create persistent name rules for VMWare network interfaces

Not generating persistent MAC address rules will significantly ease cloning of
VMs.  The kernel reliably sorts eth* enumeration by bus number, so as long as
you only have cards from one vendor (or more precisely, drivers), the
enumeration will be stable. Having cards from different vendors is very
unlikely in VMs.

KVM was already covered in the previous commit, this is the equivalent
blacklist for VMWare:

  http://www.coffer.com/mac_find/?string=005056
  http://www.coffer.com/mac_find/?string=000c29

https://launchpad.net/bugs/341006

13 years agoFix KVM MAC address range
Martin Pitt [Thu, 2 Sep 2010 06:32:43 +0000 (08:32 +0200)]
Fix KVM MAC address range

KVM uses 52:54:00:* MACs:

  http://git.savannah.gnu.org/cgit/qemu.git/tree/net.c#n796

13 years agodo not create persistent name rules for KVM network interfaces
Marco d'Itri [Tue, 31 Aug 2010 19:44:34 +0000 (21:44 +0200)]
do not create persistent name rules for KVM network interfaces

The virtual interfaces created by KVM are stable, 54:52:00 is the MAC-48
range of KVM.

13 years agoset SELinux context on 'add' but not on 'change' events
Kay Sievers [Tue, 31 Aug 2010 19:29:21 +0000 (21:29 +0200)]
set SELinux context on 'add' but not on 'change' events

13 years agocdrom_id: Fix DVD blank detection for sloppy firmware
Jan Drzewiecki [Mon, 30 Aug 2010 22:37:28 +0000 (00:37 +0200)]
cdrom_id: Fix DVD blank detection for sloppy firmware

Reportedly, many CD drive firmwares will only consider the MSB in a READ
command, thus if we request 17 blocks to be read, we'll actually only get 16 in
many cases, and thus miss out the interesting sector #17. This would lead to
falsely considering nonempty DVDs as blank.

Fetch 32 blocks now, which should work everywhere.

Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
13 years agocdrom_id: Fix DVD-RW media detection
Martin Pitt [Mon, 30 Aug 2010 13:33:26 +0000 (15:33 +0200)]
cdrom_id: Fix DVD-RW media detection

Commit cf2205a19 applied the "restricted overwrite" vs. "sequential" DVD-RW
test to feature_profiles() (which reads the drive capabilities), which caused
every DVD medium to be detected as ID_CDROM_MEDIA_DVD_RW. Now apply it to
cd_profiles() instead, to just check the current profile.

13 years agokeymap: Fix Acer TravelMate 4720
Martin Pitt [Fri, 27 Aug 2010 16:48:53 +0000 (18:48 +0200)]
keymap: Fix Acer TravelMate 4720

The previous change just fixed the Bluetooth key, but Screen Lock and Browser
also need to be changed.

https://launchpad.net/bugs/569815

13 years agogudev: fix crash if netlink is not available
Martin Pitt [Fri, 27 Aug 2010 16:12:59 +0000 (18:12 +0200)]
gudev: fix crash if netlink is not available

gudev_client_new() assumes that priv->monitor is never NULL, but this happens
on older kernels. Let's not crash client programs because of that.

https://launchpad.net/bugs/581527

13 years agoudev(7) manpage: Fix description of $attr
Martin Pitt [Fri, 27 Aug 2010 14:54:52 +0000 (16:54 +0200)]
udev(7) manpage: Fix description of $attr

Fix the manpage to describe the real behaviour of $attr: It doesn't search all
parent devices any more, just the one selected by KERNELS etc.

https://launchpad.net/bugs/348513

13 years agokeymap: Fix Sony VAIO VGN-SZ2HP/B
Martin Pitt [Wed, 25 Aug 2010 15:02:51 +0000 (17:02 +0200)]
keymap: Fix Sony VAIO VGN-SZ2HP/B

Reportedly this needs the module-sony keymap, not the -old one.

https://launchpad.net/bugs/613578

13 years agoAdd support for oom_score_adj
Luca Tettamanti [Mon, 23 Aug 2010 12:35:37 +0000 (14:35 +0200)]
Add support for oom_score_adj

/proc/<pid>/oom_adj has been deprecated (kernel v2.6.36) due to the
rework of the badness heuristic; oom_score_adj is the replacement.
Keep a fallback to the old interface for compatibility with older
kernels.

See http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=a63d83f427fbce97a6cea0db2e64b0eb8435cd10

Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
13 years agoudevd: remove unneeded credential passing from init_notify()
Kay Sievers [Wed, 25 Aug 2010 14:26:54 +0000 (16:26 +0200)]
udevd: remove unneeded credential passing from init_notify()

13 years agokeymap: Add HP G60
Martin Pitt [Mon, 23 Aug 2010 08:47:28 +0000 (10:47 +0200)]
keymap: Add HP G60

https://launchpad.net/bugs/554944

13 years agokeymap: Add Onkyo PC
Martin Pitt [Sun, 22 Aug 2010 09:00:34 +0000 (11:00 +0200)]
keymap: Add Onkyo PC

Thanks to Pau Oliva!

https://launchpad.net/bugs/612529

13 years agoudev(7): Point out required extension, and remove some confusion
Martin Pitt [Fri, 20 Aug 2010 10:19:23 +0000 (12:19 +0200)]
udev(7): Point out required extension, and remove some confusion

Rules files must end in .rules.

Also drop the redundant and confusing sentence about "file names must be
unique". What is really meant is explained in a better way in the paragraph
above.

https://launchpad.net/bugs/616108

13 years agoversion bump
Kay Sievers [Thu, 19 Aug 2010 16:03:04 +0000 (18:03 +0200)]
version bump

13 years agoinit: edit systemd service descriptions
Kay Sievers [Thu, 19 Aug 2010 16:02:20 +0000 (18:02 +0200)]
init: edit systemd service descriptions

13 years agoudevd: add pid to kmsg logs
Kay Sievers [Thu, 19 Aug 2010 06:49:43 +0000 (08:49 +0200)]
udevd: add pid to kmsg logs

13 years agoinit: add 'udev -' to description in systemd service files
Kay Sievers [Thu, 19 Aug 2010 06:48:44 +0000 (08:48 +0200)]
init: add 'udev -' to description in systemd service files

13 years agoudev-acl: do not mistake all SCSI "processor" devices for scanner
Marco d'Itri [Wed, 18 Aug 2010 11:35:25 +0000 (13:35 +0200)]
udev-acl: do not mistake all SCSI "processor" devices for scanner

Both rules can be removed since now libsane sets libsane_matched also
for SCSI scanners.

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=589751

13 years agoinit: update systemd service files
Kay Sievers [Tue, 17 Aug 2010 16:53:57 +0000 (18:53 +0200)]
init: update systemd service files

13 years agoinit: update systemd service files
Kay Sievers [Tue, 17 Aug 2010 07:37:57 +0000 (09:37 +0200)]
init: update systemd service files

13 years agocdrom_id: Drop MEDIA_SESSION_NEXT for DVD-RW-RO
Jan Drzewiecki [Fri, 13 Aug 2010 05:24:29 +0000 (07:24 +0200)]
cdrom_id: Drop MEDIA_SESSION_NEXT for DVD-RW-RO

Commit cf2205a fixed the media status for fresh DVD-RW in restricted overwrite
mode, but missed a detail: We should not report the ID_CDROM_MEDIA_SESSION_NEXT
property either, since in that mode you can never append tracks/sessions; this
just works in sequential mode.

Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
13 years agoAdd keymap for Lenovo IdeaPad S10-3
David Woodhouse [Thu, 12 Aug 2010 16:04:55 +0000 (17:04 +0100)]
Add keymap for Lenovo IdeaPad S10-3

Tested on S10-3, but presumably applicable to all IdeaPads.

Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
13 years agocdrom_id: Add media status debugging
Martin Pitt [Thu, 12 Aug 2010 05:10:12 +0000 (07:10 +0200)]
cdrom_id: Add media status debugging

Show which media status the hardware originally reports, since we mangle it in
some cases.

13 years agorelease 161
Kay Sievers [Wed, 11 Aug 2010 13:43:17 +0000 (15:43 +0200)]
release 161

13 years agocdrom_id: do not bail out when we can not read the TOC like for empty CDRW
Kay Sievers [Wed, 11 Aug 2010 13:38:48 +0000 (15:38 +0200)]
cdrom_id: do not bail out when we can not read the TOC like for empty CDRW

13 years agocdrom_id: READ TOC before READ DISC INFORMATION fixes qemu
Harald Hoyer [Wed, 11 Aug 2010 13:20:31 +0000 (15:20 +0200)]
cdrom_id: READ TOC before READ DISC INFORMATION fixes qemu

13 years agocdrom_id: whitespace fix
Kay Sievers [Wed, 11 Aug 2010 13:04:05 +0000 (15:04 +0200)]
cdrom_id: whitespace fix

13 years agodo not rename the database on device rename
Kay Sievers [Wed, 11 Aug 2010 12:34:32 +0000 (14:34 +0200)]
do not rename the database on device rename

Harald Hoyer discovered some incorrect behavior while debugging
problems with network interface renaming:

Udev events might be queued for devices which are renamed. A new
device registered the same time may claime the old name and create
a database entry for it. The current rename logic would move over
this databse entry to the wrong device.

13 years agoalways log error when renaming a network interface fails
Kay Sievers [Wed, 11 Aug 2010 12:29:49 +0000 (14:29 +0200)]
always log error when renaming a network interface fails

13 years agocdrom_id: Fix state for fresh DVD-RW
Jan Drzewiecki [Tue, 10 Aug 2010 21:37:14 +0000 (23:37 +0200)]
cdrom_id: Fix state for fresh DVD-RW

Fresh DVD-RW in restricted overwite mode reports itself as "appendable"; change
it to "blank" to make it consistent with what gets reported after blanking, and
what userspace expects.

For the exotic case where some uses multi-track recording on a DVD-RW in
sequential mode, we need to tell apart sequential and restricted overwrite
modes, so keep separate states for them internally.

Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
13 years agorule_generator/write_net_rules: prevent interface to be named "eth"
Harald Hoyer [Tue, 10 Aug 2010 14:48:37 +0000 (16:48 +0200)]
rule_generator/write_net_rules: prevent interface to be named "eth"

find_next_available() would return "eth" instead of "eth0"

13 years agoudev-event.c: rename interface to <src>-<dest>, if <dest> taken
Harald Hoyer [Tue, 10 Aug 2010 14:41:24 +0000 (16:41 +0200)]
udev-event.c: rename interface to <src>-<dest>, if <dest> taken

e.g. if eth0 should be eth3 and eth3 is waiting to be renamed,
eth0 was renamed to eth0_rename. The kernel would take eth0 as the name
for a new interface and this new eth0 could also become eth0_rename, if
the target name is also taken. To prevent this name clash, the
interfaces are now renamed to <src>-<dest> and the rename is logged.

13 years agofix broken "compile warning fix"
Kay Sievers [Tue, 10 Aug 2010 06:07:28 +0000 (08:07 +0200)]
fix broken "compile warning fix"

13 years agoudev-acl: add DDC_DEVICE to the types that are managed
Richard Hughes [Mon, 9 Aug 2010 10:41:18 +0000 (11:41 +0100)]
udev-acl: add DDC_DEVICE to the types that are managed

DDC_DEVICEs are control points for high-end monitors such as the
HP DreamColor. The DDC/CI interface allows userspace applications
to upload custom colorspaces and interact with the display without
using the monitor hardware controls.

13 years agoudev: fix compile warning
Yin Kangkai [Fri, 6 Aug 2010 07:08:51 +0000 (15:08 +0800)]
udev: fix compile warning

  CC     udev/udevd.o
In file included from udev/udev.h:27,
                 from udev/udevd.c:47:
./libudev/libudev-private.h: In function ‘udev_selinux_setfscreateconat’:
./libudev/libudev-private.h:230: warning: declaration of ‘dirfd’ shadows a global declaration
/usr/include/dirent.h:224: warning: shadowed declaration is here

Signed-off-by: Yin Kangkai <kangkai.yin@intel.com>
Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
13 years agoudevd: create static device links only when the target exists
Yin Kangkai [Thu, 5 Aug 2010 08:17:00 +0000 (16:17 +0800)]
udevd: create static device links only when the target exists

For example, not all systems have PROC_KCORE enabled. Avoid a broken symbolic
link in those cases.

Signed-off-by: Yin Kangkai <kangkai.yin@intel.com>
Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
13 years agoudevd: fix unref'ing of device in error path
Yin Kangkai [Thu, 5 Aug 2010 03:47:48 +0000 (11:47 +0800)]
udevd: fix unref'ing of device in error path

Signed-off-by: Yin Kangkai <kangkai.yin@intel.com>
Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
13 years agocdrom_id: No "next session" for "other" media state
Jan Drzewiecki [Sun, 8 Aug 2010 17:22:13 +0000 (19:22 +0200)]
cdrom_id: No "next session" for "other" media state

"other" is known to apply to DVD-RAMs, where sessions can't be appended.

Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
13 years agocdrom_id: Also apply format check to DVD-RW
Jan Drzewiecki [Sun, 8 Aug 2010 17:19:07 +0000 (19:19 +0200)]
cdrom_id: Also apply format check to DVD-RW

Extend the DVD+RW/DVD-RAM check in commit 1ef6c9e to also cover DVD-RW, since
in "restricted overwrite" mode they behave similar to DVD+RW.

Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
13 years agocdrom_id: Handle pre-MMC2 drives
Jan Drzewiecki [Sun, 8 Aug 2010 15:57:47 +0000 (17:57 +0200)]
cdrom_id: Handle pre-MMC2 drives

Those do not yet support the 0x46 "GET CONFIGURATION" support. If we have
those, fall back to the 0x51 "READ DISC INFORMATION" call. This can only
differentiate between CD-RW and CD-R, but first that's better than a complete
detection failure, and second, those old drives likely don't support more
modern media in the first place.

https://launchpad.net/bugs/502143

Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
13 years agocdrom_id: Fix detection of reblanked DVD+RW and DVD-RAM
Jan Drzewiecki [Sun, 8 Aug 2010 15:47:08 +0000 (17:47 +0200)]
cdrom_id: Fix detection of reblanked DVD+RW and DVD-RAM

Once formatted, DVD+RW and DVD-RAM discs are always reported "complete" by the
drive. Check the if the Volume Descriptor or Volume Descriptor Anchor sectors
are empty, and if so, set the status to blank. If the disc is unformatted the
blank status is maintained and no reads are issued. If the disc is formatted and
read command fails, the status remains set to complete to avoid accidental
blanking.

Bug-Ubuntu: https://launchpad.net/bugs/581925

Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
13 years agoudev-acl: remove specific device matches from the rules file
Kay Sievers [Thu, 5 Aug 2010 16:55:57 +0000 (18:55 +0200)]
udev-acl: remove specific device matches from the rules file

We should do only do classes of devices, not individual pieces
of hardware.

There is no way for us to manage this in the long term, and it needs
to be thought through what we want here, but it surely isn't a list of
smartphones in the udev source tarball installed on all systems.

13 years agoudev-acl: really fix ACL assignment in CK events
Michal Schmidt [Wed, 4 Aug 2010 09:53:25 +0000 (11:53 +0200)]
udev-acl: really fix ACL assignment in CK events

The previous fix for udev-acl was incomplete. The ACL were not properly
assigned to the new user when switching from root's session because of
the test for 'uid != 0'.

Centralize the special handling of root to a single place (in set_facl).

https://bugzilla.redhat.com/show_bug.cgi?id=608712

13 years agoudev-acl: properly handle CK change events for root user
Kay Sievers [Tue, 3 Aug 2010 13:09:46 +0000 (15:09 +0200)]
udev-acl: properly handle CK change events for root user

mschmidt@redhat.com writes:
> since root is treated specially, it does not do anything!
> udev-acl may want to prevent removing ACLs from root, but
> it must not stop the ACLs being granted to the user of the
> new session.

https://bugzilla.redhat.com/show_bug.cgi?id=608712

13 years agocall util_delete_path() only when we actually deleted stuff
Kay Sievers [Tue, 3 Aug 2010 10:13:53 +0000 (12:13 +0200)]
call util_delete_path() only when we actually deleted stuff

13 years agoudevd: fix short options in getopt()
Yin Kangkai [Tue, 3 Aug 2010 06:11:43 +0000 (08:11 +0200)]
udevd: fix short options in getopt()

13 years agomalloc()+memset() -> calloc()
Yin Kangkai [Tue, 3 Aug 2010 06:10:26 +0000 (08:10 +0200)]
malloc()+memset() -> calloc()

13 years agoudevd: fix some memory leaks in error path
Yin Kangkai [Mon, 2 Aug 2010 10:31:18 +0000 (18:31 +0800)]
udevd: fix some memory leaks in error path

Signed-off-by: Yin Kangkai <kangkai.yin@intel.com>
13 years agokeymap: Add force-release quirks for a lot more Samsung models
Fortunato Ventre [Sun, 1 Aug 2010 20:03:30 +0000 (22:03 +0200)]
keymap: Add force-release quirks for a lot more Samsung models

https://launchpad.net/bugs/554066

13 years agokeymap: Generalize Samsung keymaps
Martin Pitt [Sun, 1 Aug 2010 19:59:58 +0000 (21:59 +0200)]
keymap: Generalize Samsung keymaps

Fortunato Ventre (voRia) <vorione@gmail.com> reports a lot more Samsung models
which need the "samsung-other" keymap. Instead of eternally playing catchup,
apply it to all Samsung models for now, and keep the two known special cases.

https://launchpad.net/bugs/554066

13 years agoudevadm: fix short options in getopt()
Yin Kangkai [Wed, 28 Jul 2010 04:56:13 +0000 (06:56 +0200)]
udevadm: fix short options in getopt()

13 years agohid2hci: fix for Logitech diNovo Edge keyboard
Marco d'Itri [Fri, 23 Jul 2010 10:08:31 +0000 (12:08 +0200)]
hid2hci: fix for Logitech diNovo Edge keyboard

13 years agolibudev: bump minor so version after adding symbols
Kay Sievers [Mon, 19 Jul 2010 12:08:21 +0000 (14:08 +0200)]
libudev: bump minor so version after adding symbols

13 years agolog an error when a message from the wrong version of udevadm is ignored
Marco d'Itri [Mon, 19 Jul 2010 08:56:37 +0000 (10:56 +0200)]
log an error when a message from the wrong version of udevadm is ignored

13 years agohid2hci: fix Logitech diNovo, MX5500 and other keyboards
Marco d'Itri [Mon, 19 Jul 2010 08:37:41 +0000 (10:37 +0200)]
hid2hci: fix Logitech diNovo, MX5500 and other keyboards

13 years agoFix volume keys not releasing on Mivvy G310
Jerone Young [Fri, 16 Jul 2010 03:01:24 +0000 (22:01 -0500)]
Fix volume keys not releasing on Mivvy G310

keymap: add My Mivvy G310

Fixes volume keys not sending key release on My Mivvy G310 laptop.

Signed-off-by: Jerone Young <jerone.young@canonical.com>
Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
13 years agoudev-acl: update firewire matches to recent rule changes
Kay Sievers [Thu, 15 Jul 2010 09:38:14 +0000 (11:38 +0200)]
udev-acl: update firewire matches to recent rule changes

13 years agorules: remove firewire rules for deprecated drivers
Kay Sievers [Mon, 12 Jul 2010 09:04:17 +0000 (11:04 +0200)]
rules: remove firewire rules for deprecated drivers

13 years agorules: add more FireWire IDs: Point Grey IIDC; AV/C + vendor unique
Stefan Richter [Sun, 11 Jul 2010 10:32:12 +0000 (12:32 +0200)]
rules: add more FireWire IDs: Point Grey IIDC; AV/C + vendor unique

1. IIDC cameras from Point Grey use the vendor OUI as Specifier_ID
instead of the 1394 TA's OUI but are otherwise fully compliant to the
IIDC spec. Their device files should be accessible like those of any
other IIDC cameras.

2. Originally, the Software_Version of devices that implement FCP
(IEC 61883-1 Function Control Protocol) was meant to be a bitmap of all
command sets that an FCP capable unit supports.  Bitmap flags are
defined for AV/C, CAL, EHS, HAVi, and vendor unique command sets.
Software_Version was revised to be a simple identifier instead, and
devices that support several command sets were meant to instantiate one
unit directory for each command set.  Still, some devices with the flags
for AV/C and vendor unique command sets combined were released (but
apparently no devices with any other flag combinations).  These rare but
existing AV/C + vendor unique devices need to be accessible just like
plain AV/C devices.

Side notes:
 - Many AV/C devices make use of the Vendor Dependent AV/C command, but
this is unrelated to vendor unique FCP command sets.
 - Here are all standardized FireWire protocol identifiers that I know
of, listed as Specifier_ID:Software_Version | specifier | protocol.
0x00005e:0x000001 | IANA    | IPv4 over 1394 (RFC 2734)
0x00005e:0x000002 | IANA    | IPv6 over 1394 (RFC 3146)
0x00609e:0x010483 | INCITS  | SBP-2 (or SCSI command sets over SBP-3)
0x00609e:0x0105bb | INCITS  | AV/C over SBP-3
0x00a02d:0x010001 | 1394 TA | AV/C (over FCP)
0x00a02d:0x010002 | 1394 TA | CAL
0x00a02d:0x010004 | 1394 TA | EHS
0x00a02d:0x010008 | 1394 TA | HAVi
0x00a02d:0x014000 | 1394 TA | Vendor Unique
0x00a02d:0x014001 | 1394 TA | Vendor Unique and AV/C (over FCP)
0x00a02d:0x000100 | 1394 TA | IIDC 1.04
0x00a02d:0x000101 | 1394 TA | IIDC 1.20
0x00a02d:0x000102 | 1394 TA | IIDC 1.30
0x00a02d:0x0A6BE2 | 1394 TA | DPP 1.0
0x00a02d:0x4B661F | 1394 TA | IICP 1.0
For now we are only interested in udev rules for AV/C and IIDC.

Reported-by: Damien Douxchamps <ddsf@douxchamps.net> (Point Grey IIDC ID)
Reported-by: Clemens Ladisch <clemens@ladisch.de> (AV/C + vendor unique ID)
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
13 years agoversion bump
Kay Sievers [Sun, 11 Jul 2010 22:10:16 +0000 (00:10 +0200)]
version bump

13 years agorelease 160
Kay Sievers [Sun, 11 Jul 2010 21:58:24 +0000 (23:58 +0200)]
release 160

13 years agoudevd: init_notify() fix abstract namespace name handling
Kay Sievers [Sun, 11 Jul 2010 21:57:11 +0000 (23:57 +0200)]
udevd: init_notify() fix abstract namespace name handling

13 years agosystemd: make service files readable by GKeyFile
Lennart Poettering [Thu, 8 Jul 2010 13:02:48 +0000 (15:02 +0200)]
systemd: make service files readable by GKeyFile