Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-10-22 | shared: strbuf - add descriprion | Kay Sievers | |
2012-10-22 | shared: move sparse-endian.h from journal | Kay Sievers | |
2012-10-22 | shared: strbuf - add description | Kay Sievers | |
2012-10-22 | shared: strbuf - add string de-duplication facility | Kay Sievers | |
2012-10-22 | util: add (x)bsearch_r(), the missing counterpart of qsort_r() | Kay Sievers | |
2012-10-19 | shared/install: fix typo in comment | Christian Hesse | |
2012-10-19 | make sure __NR_name_to_handle_at is correctly defined | Michael Olbrich | |
341 is only valid for x86, so don't use it for other architectures. Add the correct numbers for ARM and PowerPC while at it. | |||
2012-10-19 | util: change endswith() to return a pointer to the suffix | Lennart Poettering | |
2012-10-19 | set: introduce strv_sort() | Lennart Poettering | |
2012-10-19 | set: introduce set_get_strv() | Lennart Poettering | |
2012-10-19 | util: unify line caching and column caching | Lennart Poettering | |
2012-10-19 | util: unify usage of on_tty() in util.c | Lennart Poettering | |
2012-10-19 | util: simplify column caching logic | Lennart Poettering | |
2012-10-18 | journalctl: unify ellipsation handling between journalctl and systemctl | Lennart Poettering | |
2012-10-18 | journalctl: don't ellipsize unless on a tty | Lennart Poettering | |
2012-10-18 | journal: add ability to list unique fields to gatewayd | Lennart Poettering | |
2012-10-18 | journal: add ability to list values a specified field can take in all ↵ | Lennart Poettering | |
entries of the journal The new 'unique' API allows listing all unique field values that a field specified by a field name can take in all entries of the journal. This allows answering queries such as "What units logged to the journal?", "What hosts have logged into the journal?", "Which boot IDs have logged into the journal?". Ultimately this allows implementation of tools similar to lastlog based on journal data. Note that listing these field values will not work for journal files created with older journald, as the field values are not indexed in older files. | |||
2012-10-17 | hostnamed: allow UTF8 chars in pretty hostname again | Lennart Poettering | |
2012-10-17 | timedatectl: introduce new command line client for timedated | Lennart Poettering | |
Much like logind has a client in loginctl, and journald in journalctl introduce timedatectl, to change the system time (incl. RTC), timezones and related settings. | |||
2012-10-16 | journal: don't export MESSAGE_ID() macro | Lennart Poettering | |
If it is exported it would need to be prefixed, but since we need it exclusively internally so far, simply move it to an internal header. | |||
2012-10-16 | systemctl: append .service when unit does not have valid suffix | Lukas Nykryn | |
systemctl status a and systemctl status a.service lead to same output but systemctl status a.b and systemctl status a.b.service do not. | |||
2012-10-16 | selinux: selabel_lookup_raw can return ENOENT and be a non failure mode. | Daniel J Walsh | |
2012-10-16 | build-sys: check for name_to_handle_at declaration instead of its definition | Michael Olbrich | |
AC_CHECK_FUNCS may be successful, even though name_to_handle_at and 'struct file_handle' are not available. | |||
2012-10-16 | util: properly handle -1 timespec/timeval | Lennart Poettering | |
2012-10-11 | journalctl: implement --since= and --until for filtering by time | Lennart Poettering | |
2012-10-11 | journal: support epxorting the journal in a format suitable for ↵ | Lennart Poettering | |
text/event-stream | |||
2012-10-09 | detect-virt: install with fs caps by default to allow unprivileged access | Lennart Poettering | |
2012-10-08 | shared: fix broken string_is_safe | Martin Mikkelsen | |
2012-10-03 | man: document behaviour of ListenStream= with only a port number in regards ↵ | Lennart Poettering | |
to IPv4/IPv6 | |||
2012-10-03 | dbus: add some more safety checks before accepting data from bus clients | Lennart Poettering | |
2012-10-03 | build-sys: fix !HAVE_SELINUX case | Colin Walters | |
2012-10-02 | audit: turn the audit fd into a static variable | Lennart Poettering | |
As audit is pretty much just a special kind of logging we should treat it similar, and manage the audit fd in a static variable. This simplifies the audit fd sharing with the SELinux access checking code quite a bit. | |||
2012-10-02 | selinux: rework selinux access check logic | Lennart Poettering | |
a) Instead of parsing the bus messages inside of selinux-access.c simply pass everything pre-parsed in the functions b) implement the access checking with a macro that resolves to nothing on non-selinux builds c) split out the selinux checks into their own sources selinux-util.[ch] d) this unifies the job creation code behind the D-Bus calls Manager.StartUnit() and Unit.Start(). | |||
2012-10-02 | shared: fail mkdir_p if the target exists and is not a directory | Zbigniew Jędrzejewski-Szmek | |
This makes mkdir_p actually behave like mkdir -p. | |||
2012-10-02 | nspawn: use automatic cleanup and provide debug info | Zbigniew Jędrzejewski-Szmek | |
The documentation for --link-journal is also reworded. | |||
2012-09-28 | logs-show: various cleanups | Lennart Poettering | |
Among other cleanups this introduces a threshold for the size of binary blobs we serialize as integer arrays in the JSON output. THis can be disabled via --all. | |||
2012-09-24 | macro: increase VA_FORMAT_ADVANCE type array and hit assert when it is reached | Lennart Poettering | |
2012-09-24 | log: fix repeated invocation of vsnprintf()/vaprintf() in log_struct() | Lennart Poettering | |
https://bugs.freedesktop.org/show_bug.cgi?id=55213 | |||
2012-09-24 | util: don't export parsed_columns | Lennart Poettering | |
2012-09-24 | journalctl: reset cached column count on SIGWINCH | Dave Reisner | |
This requires a little bit of tip-toeing around to explicitly avoid touching the environment from a sig handler. Instead, simply create a function to reset the var to its "unset" state, allowing the next call to columns() to recalculate and cache the new value. | |||
2012-09-21 | missing: Fix compilation error due to wrong __NR_name_to_handle_at definition | Eelco Dolstra | |
"__NR_name_to_handle" should read "__NR_name_to_handle_at". This fixes a compilation error on systems with older kernel headers. | |||
2012-09-21 | hwclock: add missing OOM check | Lennart Poettering | |
2012-09-21 | shared: call va_end in all cases | Lukas Nykryn | |
2012-09-20 | util: fix overflow checks | Lennart Poettering | |
2012-09-20 | util: overflow hardening | Lennart Poettering | |
2012-09-20 | util: make sure heap allocators fail when array allocations are out of bounds | Lennart Poettering | |
https://bugzilla.redhat.com/show_bug.cgi?id=858777 | |||
2012-09-19 | util: define union dirent_storage and make use of it everywhere | Lennart Poettering | |
Make sure to allocate enough space for readdir_r(). https://bugzilla.redhat.com/show_bug.cgi?id=858754 | |||
2012-09-19 | util: fix bad strstrip() return value in normalize_env_assignment() | Lennart Poettering | |
https://bugzilla.redhat.com/show_bug.cgi?id=858780 | |||
2012-09-19 | systemctl: use automatic cleanup | Zbigniew Jędrzejewski-Szmek | |
Introduce a helper method to unref dbus messages and use it. | |||
2012-09-18 | core: move ManagerRunningAs to shared | Zbigniew Jędrzejewski-Szmek | |
Note: I did s/MANAGER/SYSTEMD/ everywhere, even though it makes the patch quite verbose. Nevertheless, keeping MANAGER prefix in some places, and SYSTEMD prefix in others would just lead to confusion down the road. Better to rip off the band-aid now. |