chiark / gitweb /
Lennart Poettering [Wed, 18 Jul 2012 14:22:25 +0000 (16:22 +0200)]
journal: estimate data hash table size a bit larger by default
Lennart Poettering [Wed, 18 Jul 2012 11:28:36 +0000 (13:28 +0200)]
journald: fix another bad memory access
If we rotate due to header out of date we need the new journal file
object, too.
Lennart Poettering [Wed, 18 Jul 2012 11:11:28 +0000 (13:11 +0200)]
update TODO
Lennart Poettering [Wed, 18 Jul 2012 11:10:09 +0000 (13:10 +0200)]
journald: fix bad memory access
After vacuuming we need to retrieve the journal file object again, since
it might have changed.
Rex Tsai [Wed, 18 Jul 2012 09:47:13 +0000 (11:47 +0200)]
keymap: Add Dell Latitude force-release quirk
Signed-off-by: Martin Pitt <martinpitt@gnome.org>
Lennart Poettering [Wed, 18 Jul 2012 00:42:43 +0000 (02:42 +0200)]
service: don't print a warning if we are in autorestart state, and can't start a unit just yet
Lennart Poettering [Wed, 18 Jul 2012 00:31:52 +0000 (02:31 +0200)]
units: don't enforce a holdoff time for journald, logind, udevd
These services should be restarted as quickly as possible if they fail,
and the extra safety net of the holdoff time is not necessary.
Lennart Poettering [Wed, 18 Jul 2012 00:28:08 +0000 (02:28 +0200)]
service: make start jobs wait, not fail, when an automatic restart is queued
When an automatic restart is already queued, then make subsequent start
jobs wait until the restart can be handled (i.e. after the holdhoff
time), instead of simply fail.
Lennart Poettering [Tue, 17 Jul 2012 23:46:52 +0000 (01:46 +0200)]
unit: don't serialize job state, only unit state across switch-root
Lennart Poettering [Tue, 17 Jul 2012 23:24:39 +0000 (01:24 +0200)]
NEWS: correct NTP implementation data
Zbigniew Jędrzejewski-Szmek [Tue, 17 Jul 2012 22:41:28 +0000 (00:41 +0200)]
build-sys: put all BUILT_SOURCES in CLEANFILES
Since currently all items in BUILT_SOURCES are also in CLEANFILES,
we can reduce clutter by appending BUILT_SOURCES directly.
Zbigniew Jędrzejewski-Szmek [Tue, 17 Jul 2012 15:58:14 +0000 (17:58 +0200)]
build-sys: use .DELETE_ON_ERROR
All instances of "|| rm $@" are replaced with .DELETE_ON_ERROR, which
has a similar effect. One difference is that the return code is not
masked by rm return code.
.DELETE_ON_ERROR is GNU-Make specific, but -Wno-portability is already
defined, and it's unlikely that anyone would build systemd with a
shell not supporting .DELETE_ON_ERROR. If they did, then
.DELETE_ON_ERROR would be silently ignored, i.e. in the worst case a
garbage file wouldn't be deleted, which is not very serious.
Kay Sievers [Tue, 17 Jul 2012 21:04:48 +0000 (23:04 +0200)]
man: html - cross-ref man page references and add Index link
Harald Hoyer [Tue, 17 Jul 2012 16:17:14 +0000 (18:17 +0200)]
Makefile.am: fixed dependencies for man/index.html
Lennart Poettering [Tue, 17 Jul 2012 15:44:26 +0000 (17:44 +0200)]
switch-root: don't wait for processes
When we transition from the initrd to the main system, don't reap
processes, so that they can be handled normally after deserialization.
Zbigniew Jędrzejewski-Szmek [Tue, 17 Jul 2012 05:35:08 +0000 (07:35 +0200)]
journalctl: do not ellipsize when using pager
If a pager is used, ellipsization is redundant — the pager does
that better by hiding the part that cannot be shown. Pager's advantage
is that the user can press → to view the hidden part of a message,
and then ← to return.
Zbigniew Jędrzejewski-Szmek [Tue, 17 Jul 2012 05:35:07 +0000 (07:35 +0200)]
logs: Adapt interface in log-show.c (show_journal_by_unit)
Convert more flag arguments into one flag variable.
Zbigniew Jędrzejewski-Szmek [Tue, 17 Jul 2012 05:35:06 +0000 (07:35 +0200)]
logs: Adapt interface in log-show.c (output_journal)
In preparation for adding more output switches, convert a series of
flags arguments into one flag variable.
Harald Hoyer [Tue, 17 Jul 2012 14:39:29 +0000 (16:39 +0200)]
Makefile.am: MKDIR_P man for man/index.html
Kay Sievers [Tue, 17 Jul 2012 14:39:14 +0000 (16:39 +0200)]
Revert "keymap: add --version option"
This reverts commit
d8f173fd2ee9ee60affa1a4d1a89f2501977fb0b.
Zbigniew Jędrzejewski-Szmek [Tue, 17 Jul 2012 05:31:48 +0000 (07:31 +0200)]
keymap: add --version option
Zbigniew Jędrzejewski-Szmek [Tue, 17 Jul 2012 05:31:47 +0000 (07:31 +0200)]
systemd: add --version option
systemd --version mirrors systemctl --version:
$ ./systemd --version
systemd 186
other
+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT -LIBCRYPTSETUP
This information can be retrieved by other means (systemctl, etc.),
but it's easier for a newbie if 'systemd --version' says something
useful. And 'systemd --help' is already there, so let's complement
that with '--version'.
Lennart Poettering [Tue, 17 Jul 2012 14:29:40 +0000 (16:29 +0200)]
update TODO
Kay Sievers [Tue, 17 Jul 2012 14:03:50 +0000 (16:03 +0200)]
build-sys: distcheck - add seccomp*.h to SOURCES
Lennart Poettering [Tue, 17 Jul 2012 13:55:53 +0000 (15:55 +0200)]
build-sys: use C preprocessor for key list, too
Lennart Poettering [Tue, 17 Jul 2012 13:55:23 +0000 (15:55 +0200)]
execute: free syscall filter array after use
Zbigniew Jędrzejewski-Szmek [Tue, 17 Jul 2012 06:30:58 +0000 (08:30 +0200)]
gitignore: tags files
Zbigniew Jędrzejewski-Szmek [Tue, 17 Jul 2012 06:30:38 +0000 (08:30 +0200)]
build-sys: automake needs to know about generated files
CC src/core/libsystemd_core_la-syscall-list.lo
src/core/syscall-list.c:31:29: fatal error: syscall-to-name.h: No such file or directory
Lennart Poettering [Tue, 17 Jul 2012 02:17:53 +0000 (04:17 +0200)]
execute: support syscall filtering using seccomp filters
Lennart Poettering [Mon, 16 Jul 2012 22:55:02 +0000 (00:55 +0200)]
journal: actually set archived files to archived state
Lennart Poettering [Mon, 16 Jul 2012 22:52:43 +0000 (00:52 +0200)]
journalctl: decode more header files in --header
Lennart Poettering [Mon, 16 Jul 2012 22:36:15 +0000 (00:36 +0200)]
journal: size journal data hash table based on maximum file size metrics
The default of 2047 hash table entries turned out to result in way too
many collisions for bigger files, hence scale the hash table size by the
estimated maximum file size.
Lennart Poettering [Mon, 16 Jul 2012 20:51:28 +0000 (22:51 +0200)]
journal: immediately rotate when the journal was previously not closed properly
Lennart Poettering [Mon, 16 Jul 2012 20:24:02 +0000 (22:24 +0200)]
journal: automatically rotate journal files if the data hash table is full > 75%
Previously, when the main data hash table grows too full the performance
simply started to decrease drastically. Instead, now simply rotate to a
new journal file as the hash table gets to full, so that we can start
with a new fresh empty hash table.
Kay Sievers [Mon, 16 Jul 2012 19:27:06 +0000 (21:27 +0200)]
make-man-index.py: pretty-print HTML
Lennart Poettering [Mon, 16 Jul 2012 17:28:05 +0000 (19:28 +0200)]
journal: use tail/head timestamps from header for cutoff logic
We have them, they are faster to use them, so use them...
Lennart Poettering [Mon, 16 Jul 2012 17:26:54 +0000 (19:26 +0200)]
journald: don't enforce monotonicity of realtime clocks when copying entries
After all the point of the realtime clock (in contrast to the monotonic
clock) is that it does not have to be strictly monotonic, hence don't
enforce this when flushing the journal from /run to /var.
Lennart Poettering [Mon, 16 Jul 2012 17:26:08 +0000 (19:26 +0200)]
man: actually generate h2 headers for letters in index as we meant to
Lennart Poettering [Mon, 16 Jul 2012 17:11:27 +0000 (19:11 +0200)]
core: fix name of dbus call parameter
Lennart Poettering [Mon, 16 Jul 2012 17:11:10 +0000 (19:11 +0200)]
man: include number of man pages in index page
Lennart Poettering [Mon, 16 Jul 2012 17:10:57 +0000 (19:10 +0200)]
build-sys: make building of index.html fail sensibly
Lennart Poettering [Mon, 16 Jul 2012 16:10:18 +0000 (18:10 +0200)]
man: set description in italics in the index
Lennart Poettering [Mon, 16 Jul 2012 16:08:25 +0000 (18:08 +0200)]
man: reword man page titles
Make sure the man page titles are similar in style and capitalization so
that our man page index looks pretty.
Lennart Poettering [Mon, 16 Jul 2012 15:39:26 +0000 (17:39 +0200)]
man: show man page summary in index, too
Lennart Poettering [Mon, 16 Jul 2012 15:19:39 +0000 (17:19 +0200)]
min: generate an index page for all man pages
This makes use of python, if it is available
Lennart Poettering [Mon, 16 Jul 2012 10:44:42 +0000 (12:44 +0200)]
unit: set default working directory to the user's home directory when running in user mode
Lennart Poettering [Mon, 16 Jul 2012 10:34:54 +0000 (12:34 +0200)]
unit: introduce %s specifier for the user shell
Auke Kok [Sat, 14 Jul 2012 05:28:43 +0000 (22:28 -0700)]
unit: printf specifiers %u and %h: $USER and $HOME.
These printf specifiers allow us to refer to $HOME and $USER
in unit files. These are particularly helpful in instanced
units that have "User=" set, and in systemd --user domains.
The specifiers will return the pw_name and pw_dir fields
if the unit file has a User= field.
If the unit file does not have a User= field, the value
substituted is either $USER or $HOME from the environment,
or, if unset, the values from pw_name or pw_dir.
This patch is somewhat after Ran Benita's original patch,
which didn't get merged. I've split up the 2 specifiers
and extended them to do what is logically expected from
these specifiers.
Note that expansion is done at `start` time, not after
the units are parsed. Using `systemctl show` will just
show the specifiers.
Lennart Poettering [Mon, 16 Jul 2012 10:15:22 +0000 (12:15 +0200)]
util: add getusername_malloc(), get_shell(), get_home_dir()
Ville Skyttä [Sun, 15 Jul 2012 08:41:40 +0000 (11:41 +0300)]
Spelling fixes.
Kay Sievers [Sun, 15 Jul 2012 20:10:46 +0000 (22:10 +0200)]
udev: get rid of TEST_PREFIX and use unshare() to fake /sys, /dev, /run
Kay Sievers [Sun, 15 Jul 2012 17:28:21 +0000 (19:28 +0200)]
intltool: skip the intermediate file in case it remains, not the source file
Kay Sievers [Sun, 15 Jul 2012 13:55:47 +0000 (15:55 +0200)]
update TODO
Kay Sievers [Sun, 15 Jul 2012 13:53:43 +0000 (15:53 +0200)]
unit: avoid re-definition of enum for older gcc versions
<koen> | ./src/shared/unit-name.h:29:23: error: redefinition of typedef 'UnitType'
<koen> | ./src/core/unit.h:30:23: note: previous declaration of 'UnitType' was here
Kay Sievers [Sun, 15 Jul 2012 13:48:26 +0000 (15:48 +0200)]
build-sys: fix "make distcheck"
Kay Sievers [Sun, 15 Jul 2012 13:34:22 +0000 (15:34 +0200)]
aquire_terminal(): fix uninitialized variable
./src/shared/util.c:2457:45: warning: 'r' may be used uninitialized in this function [-Wmaybe-uninitialized]
Kay Sievers [Sun, 15 Jul 2012 12:58:29 +0000 (14:58 +0200)]
journal: align byte-buffer that gets cased to an object
On Sun, Jul 15, 2012 at 2:00 PM, Koen Kooi <koen@dominion.thruhere.net> wrote:
> | src/journal/sd-journal.c: In function 'sd_journal_process':
> | src/journal/sd-journal.c:1891:21: warning: cast increases required alignment of target type [-Wcast-align]
> | src/journal/sd-journal.c:1900:29: warning: cast increases required alignment of target type [-Wcast-align]
Kay Sievers [Sun, 15 Jul 2012 12:56:57 +0000 (14:56 +0200)]
journal: avoid re-definition of enums for older gcc versions
On Sun, Jul 15, 2012 at 2:00 PM, Koen Kooi <koen@dominion.thruhere.net> wrote:
> | In file included from src/journal/sd-journal.c:37:0:
> | src/journal/journal-internal.h:47:3: error: redefinition of typedef 'MatchType'
> | src/journal/journal-internal.h:36:24: note: previous declaration of 'MatchType' was here
> | src/journal/journal-internal.h:67:3: error: redefinition of typedef 'LocationType'
> | src/journal/journal-internal.h:37:27: note: previous declaration of 'LocationType' was here
Kay Sievers [Fri, 13 Jul 2012 22:50:49 +0000 (00:50 +0200)]
rules: fix typo in 42-usb-hid-pm.rules
<arjan> can you open the 42-usb-hid-pm.rules file
<arjan> and go to line 46
<arjan> and tell me why ATTR{idProduct}="0002" only has one = and not two (e.g. == ) ?
<kay> arjan: yep
<kay> arjan: bug
Kay Sievers [Fri, 13 Jul 2012 22:32:47 +0000 (00:32 +0200)]
udev: avoid creating /dev/kmsg with fopen() to support CONFIG_PRINTK=n
Lennart Poettering [Fri, 13 Jul 2012 21:38:32 +0000 (23:38 +0200)]
build-sys: fix build
Lennart Poettering [Fri, 13 Jul 2012 21:34:40 +0000 (23:34 +0200)]
unit: rename BindTo= to BindsTo=
all other dependencies are in 3rd person. Change BindTo= accordingly to
BindsTo=.
Of course, the dependency is widely used, hence we parse the old name
too for compatibility.
Lennart Poettering [Fri, 13 Jul 2012 21:10:23 +0000 (23:10 +0200)]
man: add man page aliases for all macros/types too
Lennart Poettering [Fri, 13 Jul 2012 20:55:52 +0000 (22:55 +0200)]
man: Split sd_randomize(3) from sd_id128_get_{machine,boot}(3)
They have too little to do with each other...
Lennart Poettering [Fri, 13 Jul 2012 20:47:46 +0000 (22:47 +0200)]
build-sys: don't install sd-readahead.h as include file, but as documentation
sd-readahead.h is supposed to be a drop-in API, nothing people should
ever link to or could make use without also adding sd-readahead.c to
their sources. Hence, don't install this header file into INCLUDES, but
instead install it as DOCS.
Lennart Poettering [Fri, 13 Jul 2012 20:39:02 +0000 (22:39 +0200)]
man: document sd_journal_seek_head()
Lennart Poettering [Fri, 13 Jul 2012 20:18:17 +0000 (22:18 +0200)]
man: document sd_journal_add_match()
Lennart Poettering [Fri, 13 Jul 2012 19:54:28 +0000 (21:54 +0200)]
shutdown: add missing include
Lennart Poettering [Fri, 13 Jul 2012 19:54:19 +0000 (21:54 +0200)]
man: fix various typos
Lennart Poettering [Fri, 13 Jul 2012 19:54:03 +0000 (21:54 +0200)]
man: suppress man page dates/authors in generated pages
Lennart Poettering [Fri, 13 Jul 2012 19:53:44 +0000 (21:53 +0200)]
build-sys: clean man pages when building them
Lennart Poettering [Fri, 13 Jul 2012 19:04:38 +0000 (21:04 +0200)]
man: forgot sd_journal_get_fd() man page
Lennart Poettering [Fri, 13 Jul 2012 19:03:58 +0000 (21:03 +0200)]
man: document sd_journal_get_fd()
Lennart Poettering [Fri, 13 Jul 2012 18:39:05 +0000 (20:39 +0200)]
man: document sd_journal_get_cursor()
Lennart Poettering [Fri, 13 Jul 2012 18:17:37 +0000 (20:17 +0200)]
man: document sd_journal_get_cutoff_realtime_usec()
Lennart Poettering [Fri, 13 Jul 2012 17:32:11 +0000 (19:32 +0200)]
man: document sd_journal_get_realtime_usec()
Lennart Poettering [Fri, 13 Jul 2012 17:00:48 +0000 (19:00 +0200)]
man: document sd_journal_get_data() and friends
Lennart Poettering [Fri, 13 Jul 2012 16:28:08 +0000 (18:28 +0200)]
man: document sd_journal_next()
Lennart Poettering [Fri, 13 Jul 2012 13:49:34 +0000 (15:49 +0200)]
man: document sd_journal_open()
Lennart Poettering [Fri, 13 Jul 2012 13:45:45 +0000 (15:45 +0200)]
log: correct usage of logging API at a few places
Harald Hoyer [Fri, 13 Jul 2012 12:44:52 +0000 (14:44 +0200)]
main: only reopen /dev/console if we switch-root to a custom init
There's no point in reopening /dev/console if we reopen it anyway
afterwards.
Lennart Poettering [Fri, 13 Jul 2012 12:42:25 +0000 (14:42 +0200)]
container: when shutting down in a container don't detach loop devices
We don't do device handling in containers, hence no loop devices either.
Lennart Poettering [Fri, 13 Jul 2012 12:41:57 +0000 (14:41 +0200)]
core: go on a killing spree when transitioning from initrd to main system
Lennart Poettering [Fri, 13 Jul 2012 11:55:35 +0000 (13:55 +0200)]
util: temporarily ignore SIGHUP while we are issuing TIOCSTTY
Lennart Poettering [Fri, 13 Jul 2012 11:50:39 +0000 (13:50 +0200)]
test: hook up more tests with make check
Lennart Poettering [Fri, 13 Jul 2012 11:41:01 +0000 (13:41 +0200)]
util: rename join() to strjoin()
This is to match strappend() and the other string related functions.
Lennart Poettering [Fri, 13 Jul 2012 00:19:07 +0000 (02:19 +0200)]
man: fix man page chapter in Makefile.am
Lennart Poettering [Fri, 13 Jul 2012 00:18:45 +0000 (02:18 +0200)]
man: document sd_journal_stream_fd()
Lennart Poettering [Thu, 12 Jul 2012 23:50:05 +0000 (01:50 +0200)]
man: move header file man pages from section 7 to 3
This way we can include documentation about minor macros/inline function
within the introducionary man page in a sane way.
Lennart Poettering [Thu, 12 Jul 2012 23:16:15 +0000 (01:16 +0200)]
journal: properly export sd_journal_add_disjunction()
Zbigniew Jędrzejewski-Szmek [Thu, 12 Jul 2012 23:07:41 +0000 (01:07 +0200)]
journalctl: show any printable Unicode character
This makes sure we are OK in outputting all valid, non-control UTF-8
characters, instead of just printable 7bit ASCII.
Lennart Poettering [Thu, 12 Jul 2012 22:32:21 +0000 (00:32 +0200)]
update TODO
Lennart Poettering [Thu, 12 Jul 2012 22:29:26 +0000 (00:29 +0200)]
journal: beef up journal matches considerably
we now can take multiple matches, and they will apply as AND if they
apply to different fields and OR if they apply to the same fields. Also,
terms of this kind can be combined with an overreaching OR.
Lennart Poettering [Thu, 12 Jul 2012 22:10:37 +0000 (00:10 +0200)]
journal: check fields we search for more carefully
Lennart Poettering [Thu, 12 Jul 2012 15:36:51 +0000 (17:36 +0200)]
journal: fix seeking by realtime/seqnum
Lennart Poettering [Thu, 12 Jul 2012 15:36:24 +0000 (17:36 +0200)]
journal: fix bad memory access
Lennart Poettering [Thu, 12 Jul 2012 15:36:04 +0000 (17:36 +0200)]
journal: fix bisection logic for first entry
Lennart Poettering [Thu, 12 Jul 2012 15:35:04 +0000 (17:35 +0200)]
journal: fix interleaving of files with different time sources
Lennart Poettering [Wed, 11 Jul 2012 22:06:24 +0000 (00:06 +0200)]
build-sys: avoid duplicate inclusion of log.c in tools
Before: shared code such as log.c was linked once into the public
libraries (where it is entirely hidden) and once into the various tools
which might use those libraries. This is suboptimal, as this way static
variables such as the maximum log level are instantiated twice in all
tools.
After: our build the public libraries a second time, as a convenience
libary, and link our tools against those. Hence all tools use only a
single instance of everything.
Kay Sievers [Wed, 11 Jul 2012 01:32:28 +0000 (03:32 +0200)]
update TODO