summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaan De Meyer <daan.j.demeyer@gmail.com>2021-09-14 15:08:46 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-10-12 16:59:13 +0200
commit2f5b486edfdb6dc3d5465fe7569c19560208813c (patch)
tree1987fb6c6c7fe2678339acbd1227476e4433642b
parentd3dfc9afa2297e2e15019adf974da8fb0ab7270c (diff)
downloadsystemd-2f5b486edfdb6dc3d5465fe7569c19560208813c.tar.gz
sd-journal: Don't compare hashes from different journal files
In sd_journal_enumerate_fields(), we check if we've already handled a field by checking if we can find it in any of the already processed journal files. We do this by calling journal_file_find_field_object_with_hash(), which compares the size, payload and hash of the given field against all fields in a journal file, trying to find a match. However, since we now use per file hash functions, hashes for the same fields will differ between different journal files, meaning we'll never find an actual match. To fix the issue(), let's use journal_file_find_field_object() when one or more of the files we're comparing is using per file keyed hashes. journal_file_find_field_object() only takes the field payload and size as arguments and calculates the hash itself using the hash function from the journal file we're searching in. (cherry picked from commit 27bf0ab76e13611dce10210f2a22fb5fba05adbb)
-rw-r--r--src/libsystemd/sd-journal/sd-journal.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/libsystemd/sd-journal/sd-journal.c b/src/libsystemd/sd-journal/sd-journal.c
index 5728c537bc..a2fbc1b037 100644
--- a/src/libsystemd/sd-journal/sd-journal.c
+++ b/src/libsystemd/sd-journal/sd-journal.c
@@ -3158,7 +3158,11 @@ _public_ int sd_journal_enumerate_fields(sd_journal *j, const char **field) {
if (JOURNAL_HEADER_CONTAINS(of->header, n_fields) && le64toh(of->header->n_fields) <= 0)
continue;
- r = journal_file_find_field_object_with_hash(of, o->field.payload, sz, le64toh(o->field.hash), NULL, NULL);
+ if (!JOURNAL_HEADER_KEYED_HASH(f->header) && !JOURNAL_HEADER_KEYED_HASH(of->header))
+ r = journal_file_find_field_object_with_hash(of, o->field.payload, sz,
+ le64toh(o->field.hash), NULL, NULL);
+ else
+ r = journal_file_find_field_object(of, o->field.payload, sz, NULL, NULL);
if (r < 0)
return r;
if (r > 0) {