diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-07-17 21:00:12 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-07-21 17:42:11 +0200 |
commit | 76cbafcdd4451c27c058c4c8ada454caf0eb3ddc (patch) | |
tree | 774a8ffe33755a6cd78f3f2bbe0dc1a4d82ff0e2 /src/libsystemd | |
parent | Merge pull request #16490 from yuwata/network-radv-ndisc-cleanups (diff) | |
download | systemd-76cbafcdd4451c27c058c4c8ada454caf0eb3ddc.tar.xz systemd-76cbafcdd4451c27c058c4c8ada454caf0eb3ddc.zip |
sd-journal: when enumerating, continue even after an inaccessible field
SD_JOURNAL_FOREACH_DATA() and SD_JOURNAL_FOREACH_UNIQUE() would immediately
terminate when a field couldn't be accessed. This can happen for example when a
field is compressed with an unavailable compression format. But it's likely
that this is the wrong thing to do: the caller for example might want to
iterate over the fields but isn't interested in all of them. coredumpctl is
like this: it uses SD_JOURNAL_FOREACH_DATA() but only uses a subset of the
fields.
Add two new functions sd_journal_enumerate_good_data() and
sd_journal_enumerate_good_unique() that retry sd_journal_enumerate_data() and
sd_journal_enumerate_unique() if the return value is something that applies to
a single field: ENOBUS, E2BIG, EOPNOTSUPP.
Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1856037.
An alternative would be to make the macros themselves smarter instead of adding
new symbols, and do the looping internally in the macro. I don't like that
approach for two reasons. First, it would embed the logic in the macro, so
recompilation would be required if we decide to update the logic. With the
current version of the patch, recompilation is required to use the new symbols,
but after that, library upgrades are enough. So the current approach is safer
in case further updates are needed. Second, our headers use primitive C, and it
is hard to do the macros without using newer features.
Diffstat (limited to 'src/libsystemd')
-rw-r--r-- | src/libsystemd/libsystemd.sym | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libsystemd/libsystemd.sym b/src/libsystemd/libsystemd.sym index 6f00985f5d..1e654b49ea 100644 --- a/src/libsystemd/libsystemd.sym +++ b/src/libsystemd/libsystemd.sym @@ -717,4 +717,7 @@ global: sd_path_lookup_strv; sd_notify_barrier; + + sd_journal_enumerate_available_data; + sd_journal_enumerate_available_unique; } LIBSYSTEMD_245; |