summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* unit: When stopping due to BindsTo=, log which unit caused itColin Walters2015-02-26
| | | | | | | | | | | I'm trying to track down a relatively recent change in systemd which broke OSTree; see https://bugzilla.gnome.org/show_bug.cgi?id=743891 Systemd started to stop sysroot.mount, and this patch should help me debug why at least. While we're here, "break" on the first unit we find that will deactivate, as there's no point in further iteration.
* timedated: when performing "SetTime" compensate for program lagShawn Landden2015-02-26
| | | | (David: fix up compile-failure and simplify code a bit)
* boot: efi - print generic error message if we fail to execute an imageKay Sievers2015-02-26
|
* boot: efi - remove default boot splash handlingKay Sievers2015-02-26
|
* machined: if /var/lib/machines is backed by a loop file, resize it on ↵Lennart Poettering2015-02-26
| | | | | | | | | "machinectl set-limit" When the pool size limit is altered with "machinectl set-limit", then not only set the subvolume quota of the /var/lib/machine subvolume, but also resize the backing loop file and the btrfs file system on it dynamically.
* bootctl: check that partition uuid is validThomas Hindoe Paaboel Andersen2015-02-25
| | | | | | It probably is but check anyway to make coverity happy. CID#1271354
* unit: use weaker dependencies between mount and device units in --user modeLennart Poettering2015-02-25
| | | | | | | | When running in user mode unmounting of mount units when a device vanishes is unlikely to work, and even if it would work is already done by PID 1 anyway. HEnce, when creating implicit dependencies between mount units and their backing devices, created a Wants= type dependency in --user mode, but leave a BindsTo= dependency in --system mode.
* nspawn: make kill signal to use for PID 1 configurableLennart Poettering2015-02-25
|
* machined,machinectl: add calls for changing container/VM quotasLennart Poettering2015-02-25
|
* journal: make skipping of exhausted journal files effective againMichal Schmidt2015-02-25
| | | | | | | | | | | | | | | | | | | | Commit 668c965af "journal: skipping of exhausted journal files is bad if direction changed" fixed a correctness issue, but it also significantly limited the cases where the optimization that skips exhausted journal files could apply. As a result, some journalctl queries are much slower in v219 than in v218. (e.g. queries where a "--since" cutoff should have quickly eliminated older journal files from consideration, but didn't.) If already in the initial iteration find_location_with_matches() finds no entry, the journal file's location is not updated. This is fine, except that: - We must update at least f->last_direction. The optimization relies on it. Let's separate that from journal_file_save_location() and update it immediately after the direction checks. - The optimization was conditional on "f->current_offset > 0", but it would always be 0 in this scenario. This check is unnecessary for the optimization.
* po: simplify one sentenceZbigniew Jędrzejewski-Szmek2015-02-24
|
* systemd: add getrandom syscall numbers for MIPSAaro Koskinen2015-02-24
| | | | | | Add getrandom syscall numbers for MIPS. Based on Linux 3.17 kernel (commit 42944521af97a3b25516f15f3149aec3779656dc, "MIPS: Wire up new syscalls getrandom and memfd_create").
* bootchart: svg: fix checking of list endAaro Koskinen2015-02-24
| | | | If we have less samples than expected, systemd-bootchart will crash.
* bootctl: fix mem leaksThomas Hindoe Paaboel Andersen2015-02-25
| | | | CID#1271347/1271348
* machined: fix check if host directory could be openedThomas Hindoe Paaboel Andersen2015-02-24
| | | | CID#1271351
* acl-util: avoid freeing uninitialized pointerThomas Hindoe Paaboel Andersen2015-02-24
| | | | CID#1271344/1271345
* importd: enable btrfs quota in /var/lib/machines, if necessaryLennart Poettering2015-02-24
|
* machined/machinectl: when "machinectl image-status" is used without ↵Lennart Poettering2015-02-24
| | | | arguments show statistics about pool
* shared: fix wrong assertion in barrier_set_role()Cristian Rodríguez2015-02-24
| | | | | | | | assert(b->pipe[0] >= 0 && b->pipe[0] >= 0); Test the same condition twice, pretty sure we mean assert(b->pipe[0] >= 0 && b->pipe[1] >= 0);
* machined: actually open up methods to unprivileged clients on dbus1Lennart Poettering2015-02-24
| | | | | | | | Many of machined's operations are now opened up to unprivileged clients via PolicyKit. Open up the dbus policy so that we can actually make these calls. kdbus doesn't reuqire this, hence this wasn't noticed before.
* importd: create a loopback btrfs file system for /var/lib/machines, if necessaryLennart Poettering2015-02-24
| | | | | | | | | | | | | | | | | When manipulating container and VM images we need efficient and atomic directory snapshots and file copies, as well as disk quota. btrfs provides this, legacy file systems do not. Hence, implicitly create a loopback file system in /var/lib/machines.raw and mount it to /var/lib/machines, if that directory is not on btrfs anyway. This is done implicitly and transparently the first time the user invokes "machinectl import-xyz". This allows us to take benefit of btrfs features for container management without actually having the rest of the system use btrfs. The loopback is sized 500M initially. Patches to grow it dynamically are to follow.
* id128: add new sd_id128_is_null() callLennart Poettering2015-02-24
|
* import: print nice warning if we need btrfs but /var/lib/machines is not btrfsLennart Poettering2015-02-24
|
* test-hashmap: fix gcc5 warningDaniel Mack2015-02-24
| | | | | | | | gcc5 spits out a warning about test-hashmap.c: CC src/test/test-hashmap.o src/test/test-hashmap.c: In function ‘test_string_compare_func’: src/test/test-hashmap.c:76:79: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses]
* shared/unit-name: fix gcc5 warningDaniel Mack2015-02-24
| | | | | | | | | | Fix the following gcc5 warning: CC src/shared/libsystemd_shared_la-unit-name.lo src/shared/unit-name.c: In function 'unit_name_is_valid': src/shared/unit-name.c:102:34: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses] if (!template_ok == TEMPLATE_VALID && at+1 == e) ^
* systemctl: bump NOFILE only for systemctl_mainZbigniew Jędrzejewski-Szmek2015-02-24
| | | | | | It is not necessary when running as telinit, etc. https://bugzilla.redhat.com/show_bug.cgi?id=1184712
* bootchart: fix default init pathMartin Pitt2015-02-24
| | | | | | | | Commit 6e1bf7ab99 used the wrong directory; we need rootlibexecdir, not rootlibdir, as the latter is something like /lib/x86_64-linux-gnu/ on multi-arch systems. https://launchpad.net/bugs/1423867
* sd-bus: test-bus-kernel-benchmark: don't rely on fixed unique namesDaniel Mack2015-02-24
| | | | | | | The kernel part of kdbus does not allow userspace to make any assumption on which unique address the first user on the bus will get. Instead, use sd_bus_get_unique_name() to get the server's address.
* test-time: test "infinity" parsing in nanosecondsDaniel Mack2015-02-24
|
* shared/time-util: fix gcc5 warningDaniel Mack2015-02-24
| | | | | | | | CC src/shared/libsystemd_shared_la-time-util.lo src/shared/time-util.c: In function 'parse_nsec': src/shared/time-util.c:789:25: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses] if (!*s != 0) ^
* sd-bus: sync kdbus.hDaniel Mack2015-02-24
| | | | | | | | | | Follow two small changes in the kdbus API: * Flags are now returned in cmd->return_flags by KDBUS_CMD_NAME_ACQUIRE * struct kdbus_item_list has been dropped. The information stored in this struct was redundant since awhile already, as all commands report their returned slice size anyway.
* systemctl: support auditd.service betterZbigniew Jędrzejewski-Szmek2015-02-23
| | | | | | | | | | We would print the filename header before trying to open the file. But since the header was printed to stdout, and the error to stderr, the error would appear on the terminal before the header. It is cleaner to open the file first, then and only then print the header. Also exit on first error. We shouldn't report success if we were unable to open a file.
* systemctl: check validity of PID we receivedZbigniew Jędrzejewski-Szmek2015-02-23
|
* resolved: use == for comparing unsigned against zeroZbigniew Jędrzejewski-Szmek2015-02-23
|
* tmpfiles: avoid creating duplicate acl entriesZbigniew Jędrzejewski-Szmek2015-02-23
| | | | | | | | https://bugs.freedesktop.org/show_bug.cgi?id=89202 https://bugs.debian.org/778656 Status quo ante can be restored with: getfacl -p /var/log/journal/`cat /etc/machine-id`|grep -v '^#'|sort -u|sudo setfacl --set-file=- /var/log/journal/`cat /etc/machine-id`
* libsystemd: revert one hunk of duplicate ifdef removalZbigniew Jędrzejewski-Szmek2015-02-23
| | | | | | | | | | | This change exposed a bug in kernel headers: /usr/include/linux/if_bridge.h:184:20: error: field 'ip6' has incomplete type struct in6_addr ip6; ^ /usr/include/linux/if_tunnel.h:76:19: error: field 'prefix' has incomplete type struct in6_addr prefix; ^
* sd-bus, shared: fix includesDaniel Mack2015-02-24
| | | | | | | | | | | | | | | | Include <sys/socket.h> from util.h and bus-message.h in order to build errors like the ones below on kdbus enabled systems. ./src/shared/util.h:976:32: warning: its scope is only this definition or declaration, which is probably not what you want In file included from src/libsystemd/sd-bus/bus-kernel.c:37:0: ./src/shared/util.h:1081:28: warning: 'struct msghdr' declared inside parameter list void cmsg_close_all(struct msghdr *mh); ^ CC src/libsystemd/sd-bus/libsystemd_la-bus-creds.lo In file included from src/libsystemd/sd-bus/bus-creds.c:25:0: ./src/shared/util.h:976:32: warning: 'struct ucred' declared inside parameter list int getpeercred(int fd, struct ucred *ucred); ^
* remove unused includesThomas Hindoe Paaboel Andersen2015-02-23
| | | | | | This patch removes includes that are not used. The removals were found with include-what-you-use which checks if any of the symbols from a header is in use.
* nspawn: fix whitespace and typo in partition table blurbJan Synacek2015-02-23
|
* logind: fix a typo in a polkit descriptionPiotr Drąg2015-02-21
|
* build-sys: update gitignoreKay Sievers2015-02-20
|
* shared: handle unnamed sockets in socket_address_equal()Michal Schmidt2015-02-20
| | | | | | Make sure we don't inspect sun_path of unnamed sockets. Since we cannot know if two unnamed sockets' adresses refer to the same socket, just return false.
* shared: avoid semi-duplicating socket_address_equal()Michal Schmidt2015-02-20
| | | | | Just call socket_address_equal() from socket_address_matches_fd() instead of implementing similar comparing of addresses.
* shared: use SocketAddress in socket_address_matches_fd()Michal Schmidt2015-02-20
| | | | Cleanup. No behavior change.
* core, shared: in deserializing, match same files reached via different pathsMichal Schmidt2015-02-20
| | | | | | | | | | | | | | | | | | | | | | | When dbus.socket is updated like this: -ListenStream=/var/run/dbus/system_bus_socket +ListenStream=/run/dbus/system_bus_socket ... and daemon-reload is performed, bad things happen. During deserialization systemd does not recognize that the two paths refer to the same named socket and replaces the socket file with a new one. As a result, applications hang when they try talking to dbus. Fix this by finding a match not only when the path names are equal, but also when they point to the same inode. In socket_address_equal() it is necessary to move the address size comparison into the abstract sockets branch. For path name sockets the comparison must not be done and for other families it is redundant (their sizes are constant and checked by socket_address_verify()). FIFOs and special files can also have multiple pathnames, so compare the inodes for them as well. Note that previously the pathname checks used streq_ptr(), but the paths cannot be NULL. Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1186018
* bus: sync with kdbus.git (ABI break)David Herrmann2015-02-19
| | | | | | This syncs up the new KDBUS_CMD_CONN_INFO behavior: - attach-flags are passed in .attach_flags, instead of directly merged with the command flags.
* nspawn: chown basic device nodes to userns rootLennart Poettering2015-02-19
|
* nspawn: fix build on non-selinux systemsLennart Poettering2015-02-19
|
* nspawn: add basic user namespacing supportLennart Poettering2015-02-19
| | | | | (This is incomplete, /proc and /sys are still owned by root from outside the container, not inside)
* sysv-generator: fix wrong "Overwriting existing symlink" warningsMartin Pitt2015-02-19
| | | | | | | | Fix result testing of is_symlink() to ignore negative results, which happen if the file name does not exist at all. In this case we do not want a warning and unlink the non-existing link. https://bugs.debian.org/778700