summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* adjust for time spent in timedated even without dbus timestampShawn Landden2015-03-07
| | | | | | | | it is trivial to fall back to our own timestamp v2: use now() v3: remove useless if () v4: add comment
* vconsole: match on vtcon events, not fbcon onesJan Engelhardt2015-03-06
| | | | | | | | | | | | | | | | I observe that upon loading of framebuffer drivers, I do not get the desired system font, but the kernel-level defaults (usually lib/fonts/font_8x16.c, but your mileage may vary depending on kernel config and boot options). The fbcon driver may be loaded at a time way before the first framebuffer device is active, such that the vconsole setup helper runs too early. The existing rule is non-fitting. The going live of the fbcon kernel component does not indicate the proper time at which to load the visuals, which really ought to be done when a new vtcon object comes into existence. (The font table is a per-vtcon property.)
* login: make hold-off timeout configurableDavid Herrmann2015-03-06
| | | | | | | | | | | | | | | | | This introduces 'HoldoffTimeoutSec' to logind.conf to make IGNORE_LID_SWITCH_{SUSPEND,STARTUP}_USEC configurable. Background: If an external monitor is connected, or if the system is docked, we want to ignore LID events. This is required to support setups where a laptop is used with external peripherals while the LID is closed. However, this requires us to probe all hot-plugged devices before reacting to LID events. But with modern buses like USB, the standards do not impose any timeout on the slots, so we have no chance to know whether a given slot is used or not. Hence, after resume and startup, we have to wait a fixed timeout to give the kernel a chance to probe devices. Our timeout has always been generous enough to support even the slowest devices. However, a lot of people didn't use these features and wanted to disable the hold-off timer. Now we provide a knob to do that.
* machinectl: minor --help text improvementsLennart Poettering2015-03-05
|
* tmpfiles: Fix handling of duplicate linesMartin Pitt2015-03-05
| | | | | | | | Commit 3f93da987 accidentally dropped the "return 0" after detection of a duplicate line. Put it back, to get back the documented and intended "first match wins" behaviour. https://launchpad.net/bugs/1428540
* nspawn: Map all seccomp filters to capabilitiesJay Faulkner2015-03-04
| | | | | | | | | | | | | | This change makes it so all seccomp filters are mapped to the appropriate capability and are only added if that capability was not requested when running the container. This unbreaks the remaining use cases broken by the addition of seccomp filters without respecting requested capabilities. Co-Authored-By: Clif Houck <me@clifhouck.com> [zj: - adapt to our coding style, make struct anonymous]
* build-sys: generate CLEANFILES from EXTRA_DISTZbigniew Jędrzejewski-Szmek2015-03-04
| | | | | | | | | Everything that is generated can be assumed to belong to CLEANFILES, which means that the original file has to be in EXTRA_DIST. Simplify the rules by generating as in $subject. We have less lists to adjust manually, and 'make clean' actually removes more stuff that before.
* Allow up to 4096 simultaneous connectionsHannes Reinecke2015-03-04
| | | | | | | | | On large system we hit the limit on 512 simultaneous dbus connections, resulting in tons of annoying messages: Too many concurrent connections, refusing This patch raises the limit to 4096.
* Remove the cap on epoll eventsHannes Reinecke2015-03-04
| | | | | | | Currently the code will silently blank out events if there are more then 512 epoll events, causing them never to be handled at all. This patch removes the cap on the number of events for epoll_wait, thereby avoiding this issue.
* Use correct uname identifiers in arch_map for SuperH architectureJohn Paul Adrian Glaubitz2015-03-04
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=89421
* importd: add new bus calls for importing local tar and raw imagesLennart Poettering2015-03-05
| | | | | | | | This also adds "machinectl import-raw" and "machinectl import-tar" to wrap these new bus calls. THe commands basically do for local files that "machinectl pull-raw" and friends do for remote files.
* pull: improve --help textLennart Poettering2015-03-05
|
* import: split out compression logic, so that we can share it with between ↵Lennart Poettering2015-03-05
| | | | import and pull calls
* import: rename download code from "import" to "pull"Lennart Poettering2015-03-05
| | | | | That way we can call the code for local container/VM imports "import" without confusion.
* sd-dhcp6-client: delay setting the DUID and don't fail constructorThomas Haller2015-03-04
| | | | | | | | | | sd_dhcp6_client_new() tried to set the DUID based on the machine id. If the host has no /etc/machine-id, the constructor would fail making it impossible to create an sd_dhcp6_client instance. Relax this and create a DUID only later as needed. This way a caller caller can workaround a missing machine-id file and set a DUID of his choosing via sd_dhcp6_client_set_duid().
* networkd: Make DHCP client ID creation configurableJan Janssen2015-03-04
|
* networkd: netdev - inform when we take over an existing netdevTom Gundersen2015-03-04
| | | | | | | | The crucial point here is that we will not change the settings of a netdev created by someone else we simply use it as is and trust it was set up as intended. This is confusing in the case of the pre-created netdev's (bond0 etc.), the solution should probably be to simply make the kernel stop creating these devices as they are pretty useless.
* shared/util: assume ac when /sys/class/power_supply is missingZbigniew Jędrzejewski-Szmek2015-03-03
| | | | | On s390 (at least) /sys/class/power_supply is not present. We should treat this like if this directory was empty, and not an error.
* Do not advertise .d snippets over main config fileZbigniew Jędrzejewski-Szmek2015-03-03
| | | | | | | | | | For daemons which have a main configuration file, there's little reason for the administrator to use configuration snippets. They are useful for packagers which need to override settings, but we shouldn't advertise that as the main way of configuring those services. https://bugs.freedesktop.org/show_bug.cgi?id=89397
* bus-proxyd: avoid logging oom twiceZbigniew Jędrzejewski-Szmek2015-03-03
|
* fsck: remove unnecessary checkZbigniew Jędrzejewski-Szmek2015-03-03
| | | | | | gcc was complaining that progress_rc might be used uninitalized. But it was actually always set, because the condition was always satisfied. Remove the condition.
* tmpfiles: quietly ignore ACLs on unsupported filesystemsHans-Peter Deifel2015-03-03
| | | | | A warning is printed if ACLs cannot be retrieved for any reason other than -ENOSYS. For -ENOSYS, debug log is printed.
* importd: automatically grow /var/lib/machines/ loopback filesystem during ↵Lennart Poettering2015-03-03
| | | | | | | | | | | downloads If /var/lib/machines is mounted as btrfs loopback file system in /var/lib/machines.raw with this change we automatically grow the file system as it fills up. After each 10M we write to it during imports, we check the free disk space, and if the fill level grows beyond 66% we increase the size of the file system to 3x the fill level (thus lowering it to 33%).
* sd-daemon: replace VLA with alloca(), to make llvm happyLennart Poettering2015-03-02
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=89379
* import: add support for gpg2 for verifying imported imagesLennart Poettering2015-03-02
| | | | | | gpg2 insists on created a trust db even if we tun off all trust db support. Hence create a temporary home where the trust db is placed, and remove it after use.
* machined: also set up /var/lib/machines as btrfs, if "machinectl set-limit" ↵Lennart Poettering2015-03-02
| | | | is called
* journal: fix Inappropriate ioctl for device on ext4Cristian Rodríguez2015-03-02
| | | | | | | | | | | Logs constantly show systemd-journald[395]: Failed to set file attributes: Inappropriate ioctl for device This is because ext4 does not support FS_NOCOW_FL. [zj: fold into one conditional as suggested on the ML and fix (preexisting) r/errno confusion in error message.]
* journal-remote: fix saving of binary fieldsZbigniew Jędrzejewski-Szmek2015-03-02
| | | | | | | Binary fields were not processed properly, and resulting journal files were non-conforming, resulting in an error ("Invalid field.") when reading. https://bugs.freedesktop.org/show_bug.cgi?id=89391
* machinectl: update --help text to clarify that set-limit can also change ↵Lennart Poettering2015-03-02
| | | | pool size
* importd: take a lock while we set up /var/lib/machines/Lennart Poettering2015-03-02
| | | | | This way, we can safely set up the directories from two processes at the same time, including machined and importd simultaneously.
* importd: split out setup logic for /var/lib/machines into its own API fileLennart Poettering2015-03-02
|
* core: expose consumed CPU time per unitLennart Poettering2015-03-02
| | | | | | This adds support for showing the accumulated consumed CPU time per-unit in the "systemctl status" output. The property is also readable via the bus.
* sd-bus: sync kdbus.h (ABI break)Daniel Mack2015-03-02
| | | | | | | | | | | | | After some reconsideration, we decided to move the binary protocol back to 64-bit wide UIDs and GIDs. After all, it should be possible to redefine [gu]id_t to uint64_t and things should continue to work. As we want to avoid such data types in kdbus.h, let's move back to 64-bit values and be safe. In sd-bus, we have to do a translation between uint64_t and gid_t now for supplementary gids. Some inline comments have also been updated in kdbus upstream.
* boot: efi - ignore .conf snippets starting with "auto-"Kay Sievers2015-03-01
|
* boot: efi - remove a couple of Loader* variablesKay Sievers2015-03-01
|
* core: downgrade unit type not supported messageUmut Tezduyar Lindskog2015-03-01
| | | | | | | Otherwise every daemon reload prints out warnings like: systemd[1]: Unit type .busname is not supported on this system. systemd[1]: Unit type .swap is not supported on this system.
* shared: AFS is also a network filesystemCristian Rodríguez2015-03-01
|
* machined: use x-machine-unix prefix for the container bus on dbus1Benjamin Franzke2015-03-01
| | | | | | | | This fixes "machinectl login" on systems configured with --disable-kdbus. The error was: machinectl login foo Failed to get machine PTY: Input/output error
* core: fix return value on OOMThomas Hindoe Paaboel Andersen2015-02-28
|
* core: rework device state logicLennart Poettering2015-02-28
| | | | | | | | | | | | | This change introduces a new state "tentative" for device units. Device units are considered "plugged" when udev announced them, "dead" when they are not available in the kernel, and "tentative" when they are referenced in /proc/self/mountinfo or /proc/swaps but not (yet) announced via udev. This should fix a race when device nodes (like loop devices) are created and immediately mounted. Previously, systemd might end up seeing the mount unit before the device, and would thus pull down the mount because its BindTo dependency on the device would not be fulfilled.
* bootctl: avoid NULL pointer dereferenceZbigniew Jędrzejewski-Szmek2015-02-27
|
* user-sessions: move into own subdir and build independently of logindIvan Shapovalov2015-02-27
| | | | | | | Suggested by Zbyszek on IRC. [zj: /run/nologin is used with PAM. systemd-user-session is independent of logind.]
* shared/condition: fix gcc5 warningDaniel Mack2015-02-27
| | | | | | | | | | | | | | | | | | Fixes the warning below. src/shared/condition.c: In function ‘condition_new’: src/shared/condition.c:47:27: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses] assert(!parameter == (type == CONDITION_NULL)); ^ src/shared/macro.h:42:44: note: in definition of macro ‘_unlikely_’ #define _unlikely_(x) (__builtin_expect(!!(x),0)) ^ src/shared/macro.h:226:22: note: in expansion of macro ‘assert_se’ #define assert(expr) assert_se(expr) ^ src/shared/condition.c:47:9: note: in expansion of macro ‘assert’ assert(!parameter == (type == CONDITION_NULL)); ^
* networkd: add support for Uplink Failure DetectionAlin Rauta2015-02-27
| | | | | | | Introduce BindCarrier= to indicate the set of links that determine if the current link should be brought UP or DOWN. [tomegun: add a bit to commit message]
* boot: efi - fix missing includeMarcel Holtmann2015-02-27
| | | | | | src/boot/efi/splash.c:312:9: warning: implicit declaration of function ‘graphics_mode’ [-Wimplicit-function-declaration] err = graphics_mode(TRUE); ^
* sysctl: downgrade message about sysctl overrides to debugZbigniew Jędrzejewski-Szmek2015-02-26
| | | | | Printing it at info level was tedious. We don't do that for any other overrides.
* sd-rtnl: types - fix check for unsupported typeTom Gundersen2015-02-26
| | | | Spotted by Thomas H.P. Andersen <phomes@gmail.com>
* sd-rtnl: types - don't assert_return in private APITom Gundersen2015-02-26
|
* boot: efi - remove custom splash supportKay Sievers2015-02-26
|
* boot: efi - split graphics and splash handlingKay Sievers2015-02-26
|