summaryrefslogtreecommitdiff
path: root/udev/udev-event.c
AgeCommit message (Collapse)Author
2012-01-05build-sys: use --libexecdir=/usr/lib instead of /usr/lib/udevKay Sievers
2012-01-01remove mknod() logic and rely on 'devtmpfs'Kay Sievers
2011-12-23build argv[] for builtin commandsKay Sievers
2011-12-21Switch spawn_read to void and remove useless stores there.Luis Felipe Strano Moraes
The return value was never used and even if errors were found inside spawn_wait should still be called.
2011-12-05use libexecdir, bindir, sbindir, switch to /usr/lib/udev in documentationKay Sievers
2011-10-06libudev: export udev_util_encode_string()Kay Sievers
2011-08-17export USEC_INITIALIZED= and take timestamp on message receive timeKay Sievers
2011-08-11do not remove static nodes on module unloadKay Sievers
2011-08-04libudev: list - use binary search for list lookupKay Sievers
2011-07-15do not delete database when renaming netif, the db name does not change anymoreKay Sievers
2011-05-16libudev: device - use DEVMODE from kernel as the default modeKay Sievers
2011-04-28udevd: improve error message in case exec() failsKay Sievers
2011-04-28set event timeout to 60 sec and settle timeout to 120Kay Sievers
2011-04-24libudev: list - use bit flags for 'sort' and 'unique'Kay Sievers
2011-04-21udevd, udev-event: sync waitpid() error handlingKay Sievers
2011-04-20udevd: log signal number when spawned processes failKay Sievers
2011-04-20udevd: always use udevd[] log prefixKay Sievers
2011-04-20udevd: netif rename - use ifindex for temporary nameKay Sievers
2011-04-20udevadm: settle - kill alarm()Kay Sievers
2011-04-20timeout handling without alarm()Kay Sievers
2011-04-14udevd: do not nice processesKay Sievers
2011-03-23udevd: use facility == LOG_DAEMON when writing to /dev/kmsgKay Sievers
Syslog wants to distinguish the sorce of messages. We should indicate that this is a userspace message (LOG_DAEMON) and not a kernel message (LOG_KERNEL).
2011-03-15move /dev/.udev/ to /dev/.run/udev/ and convert old udev database at udevd ↵Kay Sievers
startup
2010-12-15libudev: record and export "age" of device recordKay Sievers
2010-12-14libudev: enumerate - allow to filter-out not-already-initialized devicesKay Sievers
2010-12-14check ifindex > 0 instead of subsystem == "net"Kay Sievers
2010-12-10udevd: use dev_t or netif ifindex as database keyKay Sievers
We need to preserve the database of network interfaces while we rename them. Use the kernel's numbers wherever possible, instead of the device names. Fix wrong database filenames which contain a '/', translated from '!' in the kernel name. Fix segfault for kobject pathes where the subsystem can not be determined from sysfs.
2010-10-18return proper error code in rename_netif()Kay Sievers
<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
2010-08-19udevd: add pid to kmsg logsKay Sievers
2010-08-11do not rename the database on device renameKay Sievers
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.
2010-08-11always log error when renaming a network interface failsKay Sievers
2010-08-10udev-event.c: rename interface to <src>-<dest>, if <dest> takenHarald Hoyer
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.
2010-05-28udevd: read debug settings from kernel commandlineKay Sievers
2010-05-27while (1) -> for (;;)Kay Sievers
2010-05-20fix tests and allow MODE=000Kay Sievers
2010-05-20use default mode of 0600 for nodes if gid == 0Kay Sievers
2010-05-12reset process priority before executing RUN+=Kay Sievers
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=581235
2010-05-05warn when renaming kernel-provided nodes instead of adding symlinksKay Sievers
2010-05-03remove unused parameter from udev_node_mknod()Kay Sievers
2010-04-23delete old tags when configuration changesKay Sievers
2010-04-22add TAG= to improve event filtering and device enumerationKay Sievers
2010-04-19delete only device nodes, not symlinks when deleting a devtmpfs nodeKay Sievers
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=550152
2010-04-12log info only if we actually delete the nodeKay Sievers
2010-04-12unify/cleanup event handlingKay Sievers
2010-03-10libbudev-private: rename udev_list_entry_get_flag()Kay Sievers
2009-11-16remove "ignore_device"Kay Sievers
There is no way to ignore an event these days. Libudev events can not be suppressed. It only prevents RUN keys from being executed, which results in an inconsistent behavior in current setups.
2009-09-18rename interfaces to <iface>_rename if rename failsHarald Hoyer
2009-09-09simplify "symlink name stack"Kay Sievers
With well defined and kernel-supplied node names, we no longer need to support a possible stack of conflicting symlinks and node names. Only symlinks with identical names can be claimed by multiple devices. This shrinks the former /dev/.udev/names/ significantly. Also the /dev/{block,char}/MAJ:MIN" links are excluded from the name stack - they are unique and can not conflict.
2009-09-07util_run_program: restore signal mask before executing event RUN commandsJeremy Kerr
External programs triggered by events (via RUN=) will inherit udev's signal mask, which is set to block all but SIGALRM. For most utilities, this is OK, but if we start daemons from RUN=, we run into trouble (especially as SIGCHLD is blocked). This change saves the original sigmask when udev starts, and restores it just before we exec() the external command. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
2009-08-30use nanosleep() instead of usleep()Daniel Mierswa
POSIX.1-2001 declares usleep() function obsolete and POSIX.1-2008 removes it. [Kay Sievers] - include time.h - use const for timespec - scsi_id: drop rand() in retry loop - modem-probe: rename msuspend() to msleep()