summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* core: add missing words to my fix of explanation of associativityTom Gundersen2015-03-12
|
* udevd: improve handling of failed workerTom Gundersen2015-03-12
| | | | | | The information in the db is stale, so it does not make sense to expose it any longer. Also, don't drop the kernel event, but simply pass it on to userspace without ammending it.
* udevd: don't free event when killing the worker, wait until it has been reapedTom Gundersen2015-03-12
| | | | This will allow us to clean up the device when we are notified about the worker being killed.
* libudev: introduce clone_with_db()Tom Gundersen2015-03-12
| | | | This allows us to move the db reading from udevd to libudev.
* libudev: monitor - fix error path in send_deviceTom Gundersen2015-03-12
| | | | Return -errno rather than -1 in case sendmsg() fails.
* udevd: event - make db loading lazy in REMOVE event handlingTom Gundersen2015-03-12
| | | | | | | | | We were explicitly eagerly loading the db, then deletenig the backing file and then processing the rules/symlinks. Instead we delete the backnig db file as the last step and let the db loading be lazy as everywhere else. This may save us a bit of work in casese where the db is not needed, but more importantly it hides some implementation details of libudev-device form udevd.
* libudev: introduce udev_device_properties_copy()Tom Gundersen2015-03-12
| | | | To copy properties from one device to another. Drop the equivalent functionality from udevd.
* boot: efi - add config option to disable the command line editorKay Sievers2015-03-11
|
* cgtop: fix assert when not on ttyUmut Tezduyar Lindskog2015-03-11
| | | | | | | | | | systemd-cgtop --dept=1 -b -n 10 -d 0.1 | cat Assertion 'new_length >= 3' failed at src/shared/util.c:3 \ 595, function ellipsize_mem(). Aborting. Aborted (core dumped) (David: add comment)
* core: fix cgroups-agent match for kdbusDavid Herrmann2015-03-11
| | | | | | On kdbus, we get cgroups-agent messages via the system bus, not the private systemd socket. Therefore, we must install the match properly or we will never receive cgroup notifications.
* core: rewind message before forwarding itDavid Herrmann2015-03-11
| | | | | | Forwarding messages that are not rewinded will drop data. Fix this for cgroups-agent messages that we might remarshal before forwarding to the system bus.
* bus: remarshal kdbus messages received from the kernelDavid Herrmann2015-03-11
| | | | | | If we receive an sd_bus_message from the kernel, m->kdbus will contain additional items that cannot be used when sending a message. Therefore, always remarshal the message if it is used again.
* bus: drop redundant assignmentDavid Herrmann2015-03-11
| | | | | This assignment is already done in the parent context, no need to do it again.
* man: fix links to compressorsZbigniew Jędrzejewski-Szmek2015-03-11
|
* socket-util: refactor error handling in sockaddr_prettyZbigniew Jędrzejewski-Szmek2015-03-11
|
* core: fix explanation of associativityTom Gundersen2015-03-11
|
* bus-proxy: complain only once about queue overflowsDavid Herrmann2015-03-11
| | | | | | | | | | | | | | | | | | | | | If the local peer does not dispatch its incoming queue, the bus-proxy will slowly fill its outgoing queue. Once its full, it will continously complain that it cannot forward its messages. As it turns out, pulseaudio does have an idle background dbus connection that is not integrated into any mainloop (and given that gdbus and libdbus1 both support background shared connections, PA is probably not the only example), therefore, the bus-proxy will loudly complain if it cannot forward NameOwnerChanged events once the queue is full. This commit makes the proxy track queue-state and complain only once the queue runs full, not if it is already full. A PA bug-report (and patch) has been filed, and other applications should be fixed similarly. Hence, lets keep the error message, instead of dropping it. It's unused resources we really want to get rid of, so silencing the message does not really help (which is actually what dbus-daemon does).
* terminal/sysview: introduce SETTLE eventsDavid Herrmann2015-03-11
| | | | | | | | | | | | | | | | | | This introduces a new SYSVIEW_EVENT_SETTLE notification that is sent after initial scanning via sysview is done. This is very handy to let the application raise warnings in case requested resources are not found during startup. The SETTLE event is sent after systemd-logind and udev enumerations are done. This event does in no way guarantee that a given resource is available. All it does is notify the application that scanning is done! You must not react to SETTLE if you don't have external synchronization with the resource you're waiting for. The main use-case for SETTLE is to run applications _inside_ of logind sessions and startup sysview. You really want to make sure that the own session you're running in was found during enumeration. If not, something is seriously wrong.
* console: fix error-code inversionDavid Herrmann2015-03-11
| | | | | | The error-code propagated via sysview is always negative. Avoid multiplying by -1 before returning it. Otherwise, we will return >0 instead of <0, which will not be detected as error by sysview-core.
* udev: add SYSCTL{} supportKay Sievers2015-03-11
|
* sysctl: move property handling to shared/Kay Sievers2015-03-11
|
* machine-id-setup: simplificationsLennart Poettering2015-03-10
|
* machine-id-commit: simplificationsLennart Poettering2015-03-10
|
* util: add rename_noreplaceAlban Crequy2015-03-10
| | | | | | | | | renameat2() exists since Linux 3.15 but btrfs support for the flag RENAME_NOREPLACE was added later. This patch implements a fallback when renameat2() returns EINVAL. EINVAL is the error returned when the filesystem does not support one of the flags.
* path-util: fix path_is_mount_point() for symlinksHarald Hoyer2015-03-10
| | | | | | | | | path_is_mount_point() compares the mount_id of a directory and the mount_id of the parent directory. When following symlinks, the function to get the parent directory does not take the symlink into account. /bin -> /usr/bin with /usr being a mountpoint: mount_id of /bin with AT_SYMLINK_FOLLOW != mount_id of /
* CODING_STYLE: mention casting of function invocations to (void)Lennart Poettering2015-03-10
|
* bus-proxy: add support for "GetConnectionCredentials" methodLukasz Skalski2015-03-10
| | | | | | | | | GetConnectionCredentials method was added to dbus-1 specification more than one year ago. This method should return "[...] as many credentials as possible for the process connected to the server", but at this moment only "UnixUserID", "LinuxSecurityLabel" and "ProcessID" are defined by the specification. We should add support for next credentials after extending dbus-1 spec.
* tmpfiles: port to unquote_many_words()daurnimator2015-03-10
|
* shared: the btrfs quota field is called "referenced" not "referred"Lennart Poettering2015-03-10
|
* update TODOLennart Poettering2015-03-10
|
* man: document "machinectl export-tar" and "export-raw"Lennart Poettering2015-03-10
|
* add REMOTE_ADDR and REMOTE_PORT for Accept=yesShawn Landden2015-03-10
|
* fsckd: clean up log messagesDidier Roche2015-03-10
| | | | | | | Avoid double logs printing. Not that we don't return manager_update_global_progress() to the handler callback as if the console or plymouth isn't available momentarily, we still desire to handle future fd progress events if those are available again (like cancellation, reports…)
* fsckd: Reduce the SAK window when writing to consoleDidier Roche2015-03-10
| | | | | We don't want to keep /dev/console open all the time, but only open it when needed, to avoid interfering with SAK.
* Add type specifier for intThomas Hindoe Paaboel Andersen2015-03-10
|
* logs-show: fix check of loop_read_exactThomas Hindoe Paaboel Andersen2015-03-10
| | | | just a typo fix
* Introduce loop_read_exact helperZbigniew Jędrzejewski-Szmek2015-03-09
| | | | | | | | Usually when using loop_read(), we want to read the full buffer. Add a helper that mirrors loop_write(), and returns 0 when full buffer was read, and an error otherwise. Use -ENODATA for the short read, to distinguish it from a read error.
* efivars: itialize variableZbigniew Jędrzejewski-Szmek2015-03-09
| | | | Introduced a few commits ago.
* bootchart: use _cleanup_Zbigniew Jędrzejewski-Szmek2015-03-09
|
* Add missing includesZbigniew Jędrzejewski-Szmek2015-03-09
| | | | | audit.h uses uint32_t and bool. log.h uses abs.
* journalctl: unlink without checking with access firstZbigniew Jędrzejewski-Szmek2015-03-09
| | | | | | | It is more elegant to do this in one step. Coverity complains about the TOCTOU difference, but it is not an actual problem (CID #1237777).
* journal: fix return codeZbigniew Jędrzejewski-Szmek2015-03-09
| | | | | | | Introduced in fa6ac76083b8ff. Might be related to CID #1261724, but I don't know if coverity can recurse this deep.
* journal-file: update format string to remove castZbigniew Jędrzejewski-Szmek2015-03-09
|
* journal: align comments to make them more legibleZbigniew Jędrzejewski-Szmek2015-03-09
|
* libudev: add missing hunksTom Gundersen2015-03-09
| | | | | This should have been committed with udev_device_add_property - implicitly mark properties for saving to db
* libudev: udev_device_read_db - drop unused argumentTom Gundersen2015-03-09
|
* libudev: udev_device_add_property - implicitly mark properties for saving to dbTom Gundersen2015-03-09
| | | | | | Properties should only be saved to the db when added to the udev_device by udevd, and only if the property does not start with a '.'. Make this implicit rather than expose the marking of properties.
* udev/libudev: event - move {OLD_,}INTERFACE handling from udevd to libudevTom Gundersen2015-03-09
| | | | This should be internal to the library as it is only about reflecting the sysfs state in the udev_device.
* libudev: private - make property_from_string_parse* staticTom Gundersen2015-03-09
|
* man: document machinectl import-tar and import-rawLennart Poettering2015-03-09
|