]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/libsystemd/sd-journal/journal-file.c
sd-journal: also verify tail_entry_boot_id and friends in journal_file_verify_header()
[thirdparty/systemd.git] / src / libsystemd / sd-journal / journal-file.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include <errno.h>
4 #include <fcntl.h>
5 #include <linux/fs.h>
6 #include <linux/magic.h>
7 #include <pthread.h>
8 #include <stddef.h>
9 #include <sys/mman.h>
10 #include <sys/statvfs.h>
11 #include <sys/uio.h>
12 #include <unistd.h>
13
14 #include "sd-event.h"
15
16 #include "alloc-util.h"
17 #include "chattr-util.h"
18 #include "compress.h"
19 #include "env-util.h"
20 #include "fd-util.h"
21 #include "format-util.h"
22 #include "fs-util.h"
23 #include "id128-util.h"
24 #include "journal-authenticate.h"
25 #include "journal-def.h"
26 #include "journal-file.h"
27 #include "journal-internal.h"
28 #include "lookup3.h"
29 #include "memory-util.h"
30 #include "missing_threads.h"
31 #include "path-util.h"
32 #include "prioq.h"
33 #include "random-util.h"
34 #include "set.h"
35 #include "sort-util.h"
36 #include "stat-util.h"
37 #include "string-table.h"
38 #include "string-util.h"
39 #include "strv.h"
40 #include "sync-util.h"
41 #include "user-util.h"
42 #include "xattr-util.h"
43
44 #define DEFAULT_DATA_HASH_TABLE_SIZE (2047ULL*sizeof(HashItem))
45 #define DEFAULT_FIELD_HASH_TABLE_SIZE (333ULL*sizeof(HashItem))
46
47 #define DEFAULT_COMPRESS_THRESHOLD (512ULL)
48 #define MIN_COMPRESS_THRESHOLD (8ULL)
49
50 /* This is the minimum journal file size */
51 #define JOURNAL_FILE_SIZE_MIN (512 * 1024ULL) /* 512 KiB */
52 #define JOURNAL_COMPACT_SIZE_MAX UINT32_MAX /* 4 GiB */
53
54 /* These are the lower and upper bounds if we deduce the max_use value
55 * from the file system size */
56 #define MAX_USE_LOWER (1 * 1024 * 1024ULL) /* 1 MiB */
57 #define MAX_USE_UPPER (4 * 1024 * 1024 * 1024ULL) /* 4 GiB */
58
59 /* Those are the lower and upper bounds for the minimal use limit,
60 * i.e. how much we'll use even if keep_free suggests otherwise. */
61 #define MIN_USE_LOW (1 * 1024 * 1024ULL) /* 1 MiB */
62 #define MIN_USE_HIGH (16 * 1024 * 1024ULL) /* 16 MiB */
63
64 /* This is the upper bound if we deduce max_size from max_use */
65 #define MAX_SIZE_UPPER (128 * 1024 * 1024ULL) /* 128 MiB */
66
67 /* This is the upper bound if we deduce the keep_free value from the
68 * file system size */
69 #define KEEP_FREE_UPPER (4 * 1024 * 1024 * 1024ULL) /* 4 GiB */
70
71 /* This is the keep_free value when we can't determine the system
72 * size */
73 #define DEFAULT_KEEP_FREE (1024 * 1024ULL) /* 1 MB */
74
75 /* This is the default maximum number of journal files to keep around. */
76 #define DEFAULT_N_MAX_FILES 100
77
78 /* n_data was the first entry we added after the initial file format design */
79 #define HEADER_SIZE_MIN ALIGN64(offsetof(Header, n_data))
80
81 /* How many entries to keep in the entry array chain cache at max */
82 #define CHAIN_CACHE_MAX 20
83
84 /* How much to increase the journal file size at once each time we allocate something new. */
85 #define FILE_SIZE_INCREASE (8 * 1024 * 1024ULL) /* 8MB */
86
87 /* Reread fstat() of the file for detecting deletions at least this often */
88 #define LAST_STAT_REFRESH_USEC (5*USEC_PER_SEC)
89
90 /* The mmap context to use for the header we pick as one above the last defined typed */
91 #define CONTEXT_HEADER _OBJECT_TYPE_MAX
92
93 /* Longest hash chain to rotate after */
94 #define HASH_CHAIN_DEPTH_MAX 100
95
96 #ifdef __clang__
97 # pragma GCC diagnostic ignored "-Waddress-of-packed-member"
98 #endif
99
100 static int mmap_prot_from_open_flags(int flags) {
101 switch (flags & O_ACCMODE) {
102 case O_RDONLY:
103 return PROT_READ;
104 case O_WRONLY:
105 return PROT_WRITE;
106 case O_RDWR:
107 return PROT_READ|PROT_WRITE;
108 default:
109 assert_not_reached();
110 }
111 }
112
113 int journal_file_tail_end_by_pread(JournalFile *f, uint64_t *ret_offset) {
114 uint64_t p;
115 int r;
116
117 assert(f);
118 assert(f->header);
119 assert(ret_offset);
120
121 /* Same as journal_file_tail_end_by_mmap() below, but operates with pread() to avoid the mmap cache
122 * (and thus is thread safe) */
123
124 p = le64toh(f->header->tail_object_offset);
125 if (p == 0)
126 p = le64toh(f->header->header_size);
127 else {
128 Object tail;
129 uint64_t sz;
130
131 r = journal_file_read_object_header(f, OBJECT_UNUSED, p, &tail);
132 if (r < 0)
133 return r;
134
135 sz = le64toh(tail.object.size);
136 if (sz > UINT64_MAX - sizeof(uint64_t) + 1)
137 return -EBADMSG;
138
139 sz = ALIGN64(sz);
140 if (p > UINT64_MAX - sz)
141 return -EBADMSG;
142
143 p += sz;
144 }
145
146 *ret_offset = p;
147
148 return 0;
149 }
150
151 int journal_file_tail_end_by_mmap(JournalFile *f, uint64_t *ret_offset) {
152 uint64_t p;
153 int r;
154
155 assert(f);
156 assert(f->header);
157 assert(ret_offset);
158
159 /* Same as journal_file_tail_end_by_pread() above, but operates with the usual mmap logic */
160
161 p = le64toh(f->header->tail_object_offset);
162 if (p == 0)
163 p = le64toh(f->header->header_size);
164 else {
165 Object *tail;
166 uint64_t sz;
167
168 r = journal_file_move_to_object(f, OBJECT_UNUSED, p, &tail);
169 if (r < 0)
170 return r;
171
172 sz = le64toh(READ_NOW(tail->object.size));
173 if (sz > UINT64_MAX - sizeof(uint64_t) + 1)
174 return -EBADMSG;
175
176 sz = ALIGN64(sz);
177 if (p > UINT64_MAX - sz)
178 return -EBADMSG;
179
180 p += sz;
181 }
182
183 *ret_offset = p;
184
185 return 0;
186 }
187
188 int journal_file_set_offline_thread_join(JournalFile *f) {
189 int r;
190
191 assert(f);
192
193 if (f->offline_state == OFFLINE_JOINED)
194 return 0;
195
196 r = pthread_join(f->offline_thread, NULL);
197 if (r)
198 return -r;
199
200 f->offline_state = OFFLINE_JOINED;
201
202 if (mmap_cache_fd_got_sigbus(f->cache_fd))
203 return -EIO;
204
205 return 0;
206 }
207
208 static int journal_file_set_online(JournalFile *f) {
209 bool wait = true;
210
211 assert(f);
212
213 if (!journal_file_writable(f))
214 return -EPERM;
215
216 if (f->fd < 0 || !f->header)
217 return -EINVAL;
218
219 while (wait) {
220 switch (f->offline_state) {
221 case OFFLINE_JOINED:
222 /* No offline thread, no need to wait. */
223 wait = false;
224 break;
225
226 case OFFLINE_SYNCING: {
227 OfflineState tmp_state = OFFLINE_SYNCING;
228 if (!__atomic_compare_exchange_n(&f->offline_state, &tmp_state, OFFLINE_CANCEL,
229 false, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST))
230 continue;
231 }
232 /* Canceled syncing prior to offlining, no need to wait. */
233 wait = false;
234 break;
235
236 case OFFLINE_AGAIN_FROM_SYNCING: {
237 OfflineState tmp_state = OFFLINE_AGAIN_FROM_SYNCING;
238 if (!__atomic_compare_exchange_n(&f->offline_state, &tmp_state, OFFLINE_CANCEL,
239 false, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST))
240 continue;
241 }
242 /* Canceled restart from syncing, no need to wait. */
243 wait = false;
244 break;
245
246 case OFFLINE_AGAIN_FROM_OFFLINING: {
247 OfflineState tmp_state = OFFLINE_AGAIN_FROM_OFFLINING;
248 if (!__atomic_compare_exchange_n(&f->offline_state, &tmp_state, OFFLINE_CANCEL,
249 false, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST))
250 continue;
251 }
252 /* Canceled restart from offlining, must wait for offlining to complete however. */
253 _fallthrough_;
254 default: {
255 int r;
256
257 r = journal_file_set_offline_thread_join(f);
258 if (r < 0)
259 return r;
260
261 wait = false;
262 break;
263 }
264 }
265 }
266
267 if (mmap_cache_fd_got_sigbus(f->cache_fd))
268 return -EIO;
269
270 switch (f->header->state) {
271 case STATE_ONLINE:
272 return 0;
273
274 case STATE_OFFLINE:
275 f->header->state = STATE_ONLINE;
276 (void) fsync(f->fd);
277 return 0;
278
279 default:
280 return -EINVAL;
281 }
282 }
283
284 JournalFile* journal_file_close(JournalFile *f) {
285 if (!f)
286 return NULL;
287
288 assert(f->newest_boot_id_prioq_idx == PRIOQ_IDX_NULL);
289
290 if (f->cache_fd)
291 mmap_cache_fd_free(f->cache_fd);
292
293 if (f->close_fd)
294 safe_close(f->fd);
295 free(f->path);
296
297 ordered_hashmap_free_free(f->chain_cache);
298
299 #if HAVE_COMPRESSION
300 free(f->compress_buffer);
301 #endif
302
303 #if HAVE_GCRYPT
304 if (f->fss_file)
305 munmap(f->fss_file, PAGE_ALIGN(f->fss_file_size));
306 else
307 free(f->fsprg_state);
308
309 free(f->fsprg_seed);
310
311 if (f->hmac)
312 gcry_md_close(f->hmac);
313 #endif
314
315 return mfree(f);
316 }
317
318 static bool keyed_hash_requested(void) {
319 static thread_local int cached = -1;
320 int r;
321
322 if (cached < 0) {
323 r = getenv_bool("SYSTEMD_JOURNAL_KEYED_HASH");
324 if (r < 0) {
325 if (r != -ENXIO)
326 log_debug_errno(r, "Failed to parse $SYSTEMD_JOURNAL_KEYED_HASH environment variable, ignoring: %m");
327 cached = true;
328 } else
329 cached = r;
330 }
331
332 return cached;
333 }
334
335 static bool compact_mode_requested(void) {
336 static thread_local int cached = -1;
337 int r;
338
339 if (cached < 0) {
340 r = getenv_bool("SYSTEMD_JOURNAL_COMPACT");
341 if (r < 0) {
342 if (r != -ENXIO)
343 log_debug_errno(r, "Failed to parse $SYSTEMD_JOURNAL_COMPACT environment variable, ignoring: %m");
344 cached = true;
345 } else
346 cached = r;
347 }
348
349 return cached;
350 }
351
352 #if HAVE_COMPRESSION
353 static Compression getenv_compression(void) {
354 Compression c;
355 const char *e;
356 int r;
357
358 e = getenv("SYSTEMD_JOURNAL_COMPRESS");
359 if (!e)
360 return DEFAULT_COMPRESSION;
361
362 r = parse_boolean(e);
363 if (r >= 0)
364 return r ? DEFAULT_COMPRESSION : COMPRESSION_NONE;
365
366 c = compression_from_string(e);
367 if (c < 0) {
368 log_debug_errno(c, "Failed to parse SYSTEMD_JOURNAL_COMPRESS value, ignoring: %s", e);
369 return DEFAULT_COMPRESSION;
370 }
371
372 if (!compression_supported(c)) {
373 log_debug("Unsupported compression algorithm specified, ignoring: %s", e);
374 return DEFAULT_COMPRESSION;
375 }
376
377 return c;
378 }
379 #endif
380
381 static Compression compression_requested(void) {
382 #if HAVE_COMPRESSION
383 static thread_local Compression cached = _COMPRESSION_INVALID;
384
385 if (cached < 0)
386 cached = getenv_compression();
387
388 return cached;
389 #else
390 return COMPRESSION_NONE;
391 #endif
392 }
393
394 static int journal_file_init_header(
395 JournalFile *f,
396 JournalFileFlags file_flags,
397 JournalFile *template) {
398
399 bool seal = false;
400 ssize_t k;
401 int r;
402
403 assert(f);
404
405 #if HAVE_GCRYPT
406 /* Try to load the FSPRG state, and if we can't, then just don't do sealing */
407 seal = FLAGS_SET(file_flags, JOURNAL_SEAL) && journal_file_fss_load(f) >= 0;
408 #endif
409
410 Header h = {
411 .header_size = htole64(ALIGN64(sizeof(h))),
412 .incompatible_flags = htole32(
413 FLAGS_SET(file_flags, JOURNAL_COMPRESS) * COMPRESSION_TO_HEADER_INCOMPATIBLE_FLAG(compression_requested()) |
414 keyed_hash_requested() * HEADER_INCOMPATIBLE_KEYED_HASH |
415 compact_mode_requested() * HEADER_INCOMPATIBLE_COMPACT),
416 .compatible_flags = htole32(
417 (seal * HEADER_COMPATIBLE_SEALED) |
418 HEADER_COMPATIBLE_TAIL_ENTRY_BOOT_ID),
419 };
420
421 assert_cc(sizeof(h.signature) == sizeof(HEADER_SIGNATURE));
422 memcpy(h.signature, HEADER_SIGNATURE, sizeof(HEADER_SIGNATURE));
423
424 r = sd_id128_randomize(&h.file_id);
425 if (r < 0)
426 return r;
427
428 r = sd_id128_get_machine(&h.machine_id);
429 if (r < 0 && !ERRNO_IS_MACHINE_ID_UNSET(r))
430 return r; /* If we have no valid machine ID (test environment?), let's simply leave the
431 * machine ID field all zeroes. */
432
433 if (template) {
434 h.seqnum_id = template->header->seqnum_id;
435 h.tail_entry_seqnum = template->header->tail_entry_seqnum;
436 } else
437 h.seqnum_id = h.file_id;
438
439 k = pwrite(f->fd, &h, sizeof(h), 0);
440 if (k < 0)
441 return -errno;
442 if (k != sizeof(h))
443 return -EIO;
444
445 return 0;
446 }
447
448 static int journal_file_refresh_header(JournalFile *f) {
449 int r;
450
451 assert(f);
452 assert(f->header);
453
454 /* We used to update the header's boot ID field here, but we don't do that anymore, as per
455 * HEADER_COMPATIBLE_TAIL_ENTRY_BOOT_ID */
456
457 r = journal_file_set_online(f);
458
459 /* Sync the online state to disk; likely just created a new file, also sync the directory this file
460 * is located in. */
461 (void) fsync_full(f->fd);
462
463 return r;
464 }
465
466 static bool warn_wrong_flags(const JournalFile *f, bool compatible) {
467 const uint32_t any = compatible ? HEADER_COMPATIBLE_ANY : HEADER_INCOMPATIBLE_ANY,
468 supported = compatible ? HEADER_COMPATIBLE_SUPPORTED : HEADER_INCOMPATIBLE_SUPPORTED;
469 const char *type = compatible ? "compatible" : "incompatible";
470 uint32_t flags;
471
472 assert(f);
473 assert(f->header);
474
475 flags = le32toh(compatible ? f->header->compatible_flags : f->header->incompatible_flags);
476
477 if (flags & ~supported) {
478 if (flags & ~any)
479 log_debug("Journal file %s has unknown %s flags 0x%"PRIx32,
480 f->path, type, flags & ~any);
481 flags = (flags & any) & ~supported;
482 if (flags) {
483 const char* strv[6];
484 size_t n = 0;
485 _cleanup_free_ char *t = NULL;
486
487 if (compatible) {
488 if (flags & HEADER_COMPATIBLE_SEALED)
489 strv[n++] = "sealed";
490 } else {
491 if (flags & HEADER_INCOMPATIBLE_COMPRESSED_XZ)
492 strv[n++] = "xz-compressed";
493 if (flags & HEADER_INCOMPATIBLE_COMPRESSED_LZ4)
494 strv[n++] = "lz4-compressed";
495 if (flags & HEADER_INCOMPATIBLE_COMPRESSED_ZSTD)
496 strv[n++] = "zstd-compressed";
497 if (flags & HEADER_INCOMPATIBLE_KEYED_HASH)
498 strv[n++] = "keyed-hash";
499 if (flags & HEADER_INCOMPATIBLE_COMPACT)
500 strv[n++] = "compact";
501 }
502 strv[n] = NULL;
503 assert(n < ELEMENTSOF(strv));
504
505 t = strv_join((char**) strv, ", ");
506 log_debug("Journal file %s uses %s %s %s disabled at compilation time.",
507 f->path, type, n > 1 ? "flags" : "flag", strnull(t));
508 }
509 return true;
510 }
511
512 return false;
513 }
514
515 static bool offset_is_valid(uint64_t offset, uint64_t header_size, uint64_t tail_object_offset) {
516 if (offset == 0)
517 return true;
518 if (!VALID64(offset))
519 return false;
520 if (offset < header_size)
521 return false;
522 if (offset > tail_object_offset)
523 return false;
524 return true;
525 }
526
527 static bool hash_table_is_valid(uint64_t offset, uint64_t size, uint64_t header_size, uint64_t arena_size, uint64_t tail_object_offset) {
528 if ((offset == 0) != (size == 0))
529 return false;
530 if (offset == 0)
531 return true;
532 if (offset <= offsetof(Object, hash_table.items))
533 return false;
534 offset -= offsetof(Object, hash_table.items);
535 if (!offset_is_valid(offset, header_size, tail_object_offset))
536 return false;
537 assert(offset <= header_size + arena_size);
538 if (size > header_size + arena_size - offset)
539 return false;
540 return true;
541 }
542
543 static int journal_file_verify_header(JournalFile *f) {
544 uint64_t arena_size, header_size;
545
546 assert(f);
547 assert(f->header);
548
549 if (memcmp(f->header->signature, HEADER_SIGNATURE, 8))
550 return -EBADMSG;
551
552 /* In both read and write mode we refuse to open files with incompatible
553 * flags we don't know. */
554 if (warn_wrong_flags(f, false))
555 return -EPROTONOSUPPORT;
556
557 /* When open for writing we refuse to open files with compatible flags, too. */
558 if (journal_file_writable(f) && warn_wrong_flags(f, true))
559 return -EPROTONOSUPPORT;
560
561 if (f->header->state >= _STATE_MAX)
562 return -EBADMSG;
563
564 header_size = le64toh(READ_NOW(f->header->header_size));
565
566 /* The first addition was n_data, so check that we are at least this large */
567 if (header_size < HEADER_SIZE_MIN)
568 return -EBADMSG;
569
570 /* When open for writing we refuse to open files with a mismatch of the header size, i.e. writing to
571 * files implementing older or new header structures. */
572 if (journal_file_writable(f) && header_size != sizeof(Header))
573 return -EPROTONOSUPPORT;
574
575 /* Don't write to journal files without the new boot ID update behavior guarantee. */
576 if (journal_file_writable(f) && !JOURNAL_HEADER_TAIL_ENTRY_BOOT_ID(f->header))
577 return -EPROTONOSUPPORT;
578
579 if (JOURNAL_HEADER_SEALED(f->header) && !JOURNAL_HEADER_CONTAINS(f->header, n_entry_arrays))
580 return -EBADMSG;
581
582 arena_size = le64toh(READ_NOW(f->header->arena_size));
583
584 if (UINT64_MAX - header_size < arena_size || header_size + arena_size > (uint64_t) f->last_stat.st_size)
585 return -ENODATA;
586
587 uint64_t tail_object_offset = le64toh(f->header->tail_object_offset);
588 if (!offset_is_valid(tail_object_offset, header_size, UINT64_MAX))
589 return -ENODATA;
590 if (header_size + arena_size < tail_object_offset)
591 return -ENODATA;
592 if (header_size + arena_size - tail_object_offset < sizeof(ObjectHeader))
593 return -ENODATA;
594
595 if (!hash_table_is_valid(le64toh(f->header->data_hash_table_offset),
596 le64toh(f->header->data_hash_table_size),
597 header_size, arena_size, tail_object_offset))
598 return -ENODATA;
599
600 if (!hash_table_is_valid(le64toh(f->header->field_hash_table_offset),
601 le64toh(f->header->field_hash_table_size),
602 header_size, arena_size, tail_object_offset))
603 return -ENODATA;
604
605 uint64_t entry_array_offset = le64toh(f->header->entry_array_offset);
606 if (!offset_is_valid(entry_array_offset, header_size, tail_object_offset))
607 return -ENODATA;
608
609 if (JOURNAL_HEADER_CONTAINS(f->header, tail_entry_array_offset)) {
610 uint32_t offset = le32toh(f->header->tail_entry_array_offset);
611 uint32_t n = le32toh(f->header->tail_entry_array_n_entries);
612
613 if (!offset_is_valid(offset, header_size, tail_object_offset))
614 return -ENODATA;
615 if (entry_array_offset > offset)
616 return -ENODATA;
617 if (entry_array_offset == 0 && offset != 0)
618 return -ENODATA;
619 if ((offset == 0) != (n == 0))
620 return -ENODATA;
621 assert(offset <= header_size + arena_size);
622 if ((uint64_t) n * journal_file_entry_array_item_size(f) > header_size + arena_size - offset)
623 return -ENODATA;
624 }
625
626 if (JOURNAL_HEADER_CONTAINS(f->header, tail_entry_offset)) {
627 uint64_t offset = le64toh(f->header->tail_entry_offset);
628
629 if (!offset_is_valid(offset, header_size, tail_object_offset))
630 return -ENODATA;
631
632 if (offset > 0) {
633 /* When there is an entry object, then these fields must be filled. */
634 if (sd_id128_is_null(f->header->tail_entry_boot_id))
635 return -ENODATA;
636 if (!VALID_REALTIME(le64toh(f->header->head_entry_realtime)))
637 return -ENODATA;
638 if (!VALID_REALTIME(le64toh(f->header->tail_entry_realtime)))
639 return -ENODATA;
640 if (!VALID_MONOTONIC(le64toh(f->header->tail_entry_realtime)))
641 return -ENODATA;
642 } else {
643 /* Otherwise, the fields must be zero. */
644 if (JOURNAL_HEADER_TAIL_ENTRY_BOOT_ID(f->header) &&
645 !sd_id128_is_null(f->header->tail_entry_boot_id))
646 return -ENODATA;
647 if (f->header->head_entry_realtime != 0)
648 return -ENODATA;
649 if (f->header->tail_entry_realtime != 0)
650 return -ENODATA;
651 if (f->header->tail_entry_realtime != 0)
652 return -ENODATA;
653 }
654 }
655
656 /* Verify number of objects */
657 uint64_t n_objects = le64toh(f->header->n_objects);
658 if (n_objects > arena_size / sizeof(ObjectHeader))
659 return -ENODATA;
660
661 uint64_t n_entries = le64toh(f->header->n_entries);
662 if (n_entries > n_objects)
663 return -ENODATA;
664
665 if (JOURNAL_HEADER_CONTAINS(f->header, n_data) &&
666 le64toh(f->header->n_data) > n_objects)
667 return -ENODATA;
668
669 if (JOURNAL_HEADER_CONTAINS(f->header, n_fields) &&
670 le64toh(f->header->n_fields) > n_objects)
671 return -ENODATA;
672
673 if (JOURNAL_HEADER_CONTAINS(f->header, n_tags) &&
674 le64toh(f->header->n_tags) > n_objects)
675 return -ENODATA;
676
677 if (JOURNAL_HEADER_CONTAINS(f->header, n_entry_arrays) &&
678 le64toh(f->header->n_entry_arrays) > n_objects)
679 return -ENODATA;
680
681 if (JOURNAL_HEADER_CONTAINS(f->header, tail_entry_array_n_entries) &&
682 le32toh(f->header->tail_entry_array_n_entries) > n_entries)
683 return -ENODATA;
684
685 if (journal_file_writable(f)) {
686 sd_id128_t machine_id;
687 uint8_t state;
688 int r;
689
690 r = sd_id128_get_machine(&machine_id);
691 if (ERRNO_IS_NEG_MACHINE_ID_UNSET(r)) /* Gracefully handle the machine ID not being initialized yet */
692 machine_id = SD_ID128_NULL;
693 else if (r < 0)
694 return r;
695
696 if (!sd_id128_equal(machine_id, f->header->machine_id))
697 return log_debug_errno(SYNTHETIC_ERRNO(EHOSTDOWN),
698 "Trying to open journal file from different host for writing, refusing.");
699
700 state = f->header->state;
701
702 if (state == STATE_ARCHIVED)
703 return -ESHUTDOWN; /* Already archived */
704 if (state == STATE_ONLINE)
705 return log_debug_errno(SYNTHETIC_ERRNO(EBUSY),
706 "Journal file %s is already online. Assuming unclean closing.",
707 f->path);
708 if (state != STATE_OFFLINE)
709 return log_debug_errno(SYNTHETIC_ERRNO(EBUSY),
710 "Journal file %s has unknown state %i.",
711 f->path, state);
712
713 if (f->header->field_hash_table_size == 0 || f->header->data_hash_table_size == 0)
714 return -EBADMSG;
715 }
716
717 return 0;
718 }
719
720 int journal_file_fstat(JournalFile *f) {
721 int r;
722
723 assert(f);
724 assert(f->fd >= 0);
725
726 if (fstat(f->fd, &f->last_stat) < 0)
727 return -errno;
728
729 f->last_stat_usec = now(CLOCK_MONOTONIC);
730
731 /* Refuse dealing with files that aren't regular */
732 r = stat_verify_regular(&f->last_stat);
733 if (r < 0)
734 return r;
735
736 /* Refuse appending to files that are already deleted */
737 if (f->last_stat.st_nlink <= 0)
738 return -EIDRM;
739
740 return 0;
741 }
742
743 static int journal_file_allocate(JournalFile *f, uint64_t offset, uint64_t size) {
744 uint64_t old_size, new_size, old_header_size, old_arena_size;
745 int r;
746
747 assert(f);
748 assert(f->header);
749
750 /* We assume that this file is not sparse, and we know that for sure, since we always call
751 * posix_fallocate() ourselves */
752
753 if (size > PAGE_ALIGN_DOWN(UINT64_MAX) - offset)
754 return -EINVAL;
755
756 if (mmap_cache_fd_got_sigbus(f->cache_fd))
757 return -EIO;
758
759 old_header_size = le64toh(READ_NOW(f->header->header_size));
760 old_arena_size = le64toh(READ_NOW(f->header->arena_size));
761 if (old_arena_size > PAGE_ALIGN_DOWN(UINT64_MAX) - old_header_size)
762 return -EBADMSG;
763
764 old_size = old_header_size + old_arena_size;
765
766 new_size = MAX(PAGE_ALIGN(offset + size), old_header_size);
767
768 if (new_size <= old_size) {
769
770 /* We already pre-allocated enough space, but before
771 * we write to it, let's check with fstat() if the
772 * file got deleted, in order make sure we don't throw
773 * away the data immediately. Don't check fstat() for
774 * all writes though, but only once ever 10s. */
775
776 if (f->last_stat_usec + LAST_STAT_REFRESH_USEC > now(CLOCK_MONOTONIC))
777 return 0;
778
779 return journal_file_fstat(f);
780 }
781
782 /* Allocate more space. */
783
784 if (f->metrics.max_size > 0 && new_size > f->metrics.max_size)
785 return -E2BIG;
786
787 /* Refuse to go over 4G in compact mode so offsets can be stored in 32-bit. */
788 if (JOURNAL_HEADER_COMPACT(f->header) && new_size > UINT32_MAX)
789 return -E2BIG;
790
791 if (new_size > f->metrics.min_size && f->metrics.keep_free > 0) {
792 struct statvfs svfs;
793
794 if (fstatvfs(f->fd, &svfs) >= 0) {
795 uint64_t available;
796
797 available = LESS_BY((uint64_t) svfs.f_bfree * (uint64_t) svfs.f_bsize, f->metrics.keep_free);
798
799 if (new_size - old_size > available)
800 return -E2BIG;
801 }
802 }
803
804 /* Increase by larger blocks at once */
805 new_size = ROUND_UP(new_size, FILE_SIZE_INCREASE);
806 if (f->metrics.max_size > 0 && new_size > f->metrics.max_size)
807 new_size = f->metrics.max_size;
808
809 /* Note that the glibc fallocate() fallback is very
810 inefficient, hence we try to minimize the allocation area
811 as we can. */
812 r = posix_fallocate_loop(f->fd, old_size, new_size - old_size);
813 if (r < 0)
814 return r;
815
816 f->header->arena_size = htole64(new_size - old_header_size);
817
818 return journal_file_fstat(f);
819 }
820
821 static unsigned type_to_context(ObjectType type) {
822 /* One context for each type, plus one catch-all for the rest */
823 assert_cc(_OBJECT_TYPE_MAX <= MMAP_CACHE_MAX_CONTEXTS);
824 assert_cc(CONTEXT_HEADER < MMAP_CACHE_MAX_CONTEXTS);
825 return type > OBJECT_UNUSED && type < _OBJECT_TYPE_MAX ? type : 0;
826 }
827
828 static int journal_file_move_to(
829 JournalFile *f,
830 ObjectType type,
831 bool keep_always,
832 uint64_t offset,
833 uint64_t size,
834 void **ret) {
835
836 int r;
837
838 assert(f);
839 assert(ret);
840
841 /* This function may clear, overwrite, or alter previously cached entries. After this function has
842 * been called, all objects except for one obtained by this function are invalidated and must be
843 * re-read before use. */
844
845 if (size <= 0)
846 return -EINVAL;
847
848 if (size > UINT64_MAX - offset)
849 return -EBADMSG;
850
851 /* Avoid SIGBUS on invalid accesses */
852 if (offset + size > (uint64_t) f->last_stat.st_size) {
853 /* Hmm, out of range? Let's refresh the fstat() data
854 * first, before we trust that check. */
855
856 r = journal_file_fstat(f);
857 if (r < 0)
858 return r;
859
860 if (offset + size > (uint64_t) f->last_stat.st_size)
861 return -EADDRNOTAVAIL;
862 }
863
864 return mmap_cache_fd_get(f->cache_fd, type_to_context(type), keep_always, offset, size, &f->last_stat, ret);
865 }
866
867 static uint64_t minimum_header_size(JournalFile *f, Object *o) {
868
869 static const uint64_t table[] = {
870 [OBJECT_DATA] = sizeof(DataObject),
871 [OBJECT_FIELD] = sizeof(FieldObject),
872 [OBJECT_ENTRY] = sizeof(EntryObject),
873 [OBJECT_DATA_HASH_TABLE] = sizeof(HashTableObject),
874 [OBJECT_FIELD_HASH_TABLE] = sizeof(HashTableObject),
875 [OBJECT_ENTRY_ARRAY] = sizeof(EntryArrayObject),
876 [OBJECT_TAG] = sizeof(TagObject),
877 };
878
879 assert(f);
880 assert(o);
881
882 if (o->object.type == OBJECT_DATA)
883 return journal_file_data_payload_offset(f);
884
885 if (o->object.type >= ELEMENTSOF(table) || table[o->object.type] <= 0)
886 return sizeof(ObjectHeader);
887
888 return table[o->object.type];
889 }
890
891 static int check_object_header(JournalFile *f, Object *o, ObjectType type, uint64_t offset) {
892 uint64_t s;
893
894 assert(f);
895 assert(o);
896
897 s = le64toh(READ_NOW(o->object.size));
898 if (s == 0)
899 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
900 "Attempt to move to uninitialized object: %" PRIu64,
901 offset);
902
903 if (s < sizeof(ObjectHeader))
904 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
905 "Attempt to move to overly short object with size %"PRIu64": %" PRIu64,
906 s, offset);
907
908 if (o->object.type <= OBJECT_UNUSED || o->object.type >= _OBJECT_TYPE_MAX)
909 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
910 "Attempt to move to object with invalid type (%u): %" PRIu64,
911 o->object.type, offset);
912
913 if (type > OBJECT_UNUSED && o->object.type != type)
914 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
915 "Found %s object while expecting %s object: %" PRIu64,
916 journal_object_type_to_string(o->object.type),
917 journal_object_type_to_string(type),
918 offset);
919
920 if (s < minimum_header_size(f, o))
921 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
922 "Size of %s object (%"PRIu64") is smaller than the minimum object size (%"PRIu64"): %" PRIu64,
923 journal_object_type_to_string(o->object.type),
924 s,
925 minimum_header_size(f, o),
926 offset);
927
928 return 0;
929 }
930
931 /* Lightweight object checks. We want this to be fast, so that we won't
932 * slowdown every journal_file_move_to_object() call too much. */
933 static int check_object(JournalFile *f, Object *o, uint64_t offset) {
934 assert(f);
935 assert(o);
936
937 switch (o->object.type) {
938
939 case OBJECT_DATA:
940 if ((le64toh(o->data.entry_offset) == 0) ^ (le64toh(o->data.n_entries) == 0))
941 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
942 "Bad data n_entries: %" PRIu64 ": %" PRIu64,
943 le64toh(o->data.n_entries),
944 offset);
945
946 if (le64toh(o->object.size) <= journal_file_data_payload_offset(f))
947 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
948 "Bad data size (<= %zu): %" PRIu64 ": %" PRIu64,
949 journal_file_data_payload_offset(f),
950 le64toh(o->object.size),
951 offset);
952
953 if (!VALID64(le64toh(o->data.next_hash_offset)) ||
954 !VALID64(le64toh(o->data.next_field_offset)) ||
955 !VALID64(le64toh(o->data.entry_offset)) ||
956 !VALID64(le64toh(o->data.entry_array_offset)))
957 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
958 "Invalid offset, next_hash_offset=" OFSfmt ", next_field_offset=" OFSfmt ", entry_offset=" OFSfmt ", entry_array_offset=" OFSfmt ": %" PRIu64,
959 le64toh(o->data.next_hash_offset),
960 le64toh(o->data.next_field_offset),
961 le64toh(o->data.entry_offset),
962 le64toh(o->data.entry_array_offset),
963 offset);
964
965 break;
966
967 case OBJECT_FIELD:
968 if (le64toh(o->object.size) <= offsetof(Object, field.payload))
969 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
970 "Bad field size (<= %zu): %" PRIu64 ": %" PRIu64,
971 offsetof(Object, field.payload),
972 le64toh(o->object.size),
973 offset);
974
975 if (!VALID64(le64toh(o->field.next_hash_offset)) ||
976 !VALID64(le64toh(o->field.head_data_offset)))
977 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
978 "Invalid offset, next_hash_offset=" OFSfmt ", head_data_offset=" OFSfmt ": %" PRIu64,
979 le64toh(o->field.next_hash_offset),
980 le64toh(o->field.head_data_offset),
981 offset);
982 break;
983
984 case OBJECT_ENTRY: {
985 uint64_t sz;
986
987 sz = le64toh(READ_NOW(o->object.size));
988 if (sz < offsetof(Object, entry.items) ||
989 (sz - offsetof(Object, entry.items)) % journal_file_entry_item_size(f) != 0)
990 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
991 "Bad entry size (<= %zu): %" PRIu64 ": %" PRIu64,
992 offsetof(Object, entry.items),
993 sz,
994 offset);
995
996 if ((sz - offsetof(Object, entry.items)) / journal_file_entry_item_size(f) <= 0)
997 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
998 "Invalid number items in entry: %" PRIu64 ": %" PRIu64,
999 (sz - offsetof(Object, entry.items)) / journal_file_entry_item_size(f),
1000 offset);
1001
1002 if (le64toh(o->entry.seqnum) <= 0)
1003 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
1004 "Invalid entry seqnum: %" PRIx64 ": %" PRIu64,
1005 le64toh(o->entry.seqnum),
1006 offset);
1007
1008 if (!VALID_REALTIME(le64toh(o->entry.realtime)))
1009 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
1010 "Invalid entry realtime timestamp: %" PRIu64 ": %" PRIu64,
1011 le64toh(o->entry.realtime),
1012 offset);
1013
1014 if (!VALID_MONOTONIC(le64toh(o->entry.monotonic)))
1015 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
1016 "Invalid entry monotonic timestamp: %" PRIu64 ": %" PRIu64,
1017 le64toh(o->entry.monotonic),
1018 offset);
1019
1020 if (sd_id128_is_null(o->entry.boot_id))
1021 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
1022 "Invalid object entry with an empty boot ID: %" PRIu64,
1023 offset);
1024
1025 break;
1026 }
1027
1028 case OBJECT_DATA_HASH_TABLE:
1029 case OBJECT_FIELD_HASH_TABLE: {
1030 uint64_t sz;
1031
1032 sz = le64toh(READ_NOW(o->object.size));
1033 if (sz < offsetof(Object, hash_table.items) ||
1034 (sz - offsetof(Object, hash_table.items)) % sizeof(HashItem) != 0 ||
1035 (sz - offsetof(Object, hash_table.items)) / sizeof(HashItem) <= 0)
1036 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
1037 "Invalid %s hash table size: %" PRIu64 ": %" PRIu64,
1038 journal_object_type_to_string(o->object.type),
1039 sz,
1040 offset);
1041
1042 break;
1043 }
1044
1045 case OBJECT_ENTRY_ARRAY: {
1046 uint64_t sz, next;
1047
1048 sz = le64toh(READ_NOW(o->object.size));
1049 if (sz < offsetof(Object, entry_array.items) ||
1050 (sz - offsetof(Object, entry_array.items)) % journal_file_entry_array_item_size(f) != 0 ||
1051 (sz - offsetof(Object, entry_array.items)) / journal_file_entry_array_item_size(f) <= 0)
1052 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
1053 "Invalid object entry array size: %" PRIu64 ": %" PRIu64,
1054 sz,
1055 offset);
1056 /* Here, we request that the offset of each entry array object is in strictly increasing order. */
1057 next = le64toh(o->entry_array.next_entry_array_offset);
1058 if (!VALID64(next) || (next > 0 && next <= offset))
1059 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
1060 "Invalid object entry array next_entry_array_offset: %" PRIu64 ": %" PRIu64,
1061 next,
1062 offset);
1063
1064 break;
1065 }
1066
1067 case OBJECT_TAG:
1068 if (le64toh(o->object.size) != sizeof(TagObject))
1069 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
1070 "Invalid object tag size: %" PRIu64 ": %" PRIu64,
1071 le64toh(o->object.size),
1072 offset);
1073
1074 if (!VALID_EPOCH(le64toh(o->tag.epoch)))
1075 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
1076 "Invalid object tag epoch: %" PRIu64 ": %" PRIu64,
1077 le64toh(o->tag.epoch), offset);
1078
1079 break;
1080 }
1081
1082 return 0;
1083 }
1084
1085 int journal_file_move_to_object(JournalFile *f, ObjectType type, uint64_t offset, Object **ret) {
1086 int r;
1087 Object *o;
1088
1089 assert(f);
1090
1091 /* Even if this function fails, it may clear, overwrite, or alter previously cached entries. After
1092 * this function has been called, all objects except for one obtained by this function are
1093 * invalidated and must be re-read before use.. */
1094
1095 /* Objects may only be located at multiple of 64 bit */
1096 if (!VALID64(offset))
1097 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
1098 "Attempt to move to %s object at non-64-bit boundary: %" PRIu64,
1099 journal_object_type_to_string(type),
1100 offset);
1101
1102 /* Object may not be located in the file header */
1103 if (offset < le64toh(f->header->header_size))
1104 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
1105 "Attempt to move to %s object located in file header: %" PRIu64,
1106 journal_object_type_to_string(type),
1107 offset);
1108
1109 r = journal_file_move_to(f, type, false, offset, sizeof(ObjectHeader), (void**) &o);
1110 if (r < 0)
1111 return r;
1112
1113 r = check_object_header(f, o, type, offset);
1114 if (r < 0)
1115 return r;
1116
1117 r = journal_file_move_to(f, type, false, offset, le64toh(READ_NOW(o->object.size)), (void**) &o);
1118 if (r < 0)
1119 return r;
1120
1121 r = check_object_header(f, o, type, offset);
1122 if (r < 0)
1123 return r;
1124
1125 r = check_object(f, o, offset);
1126 if (r < 0)
1127 return r;
1128
1129 if (ret)
1130 *ret = o;
1131
1132 return 0;
1133 }
1134
1135 int journal_file_read_object_header(JournalFile *f, ObjectType type, uint64_t offset, Object *ret) {
1136 ssize_t n;
1137 Object o;
1138 int r;
1139
1140 assert(f);
1141
1142 /* Objects may only be located at multiple of 64 bit */
1143 if (!VALID64(offset))
1144 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
1145 "Attempt to read %s object at non-64-bit boundary: %" PRIu64,
1146 journal_object_type_to_string(type), offset);
1147
1148 /* Object may not be located in the file header */
1149 if (offset < le64toh(f->header->header_size))
1150 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
1151 "Attempt to read %s object located in file header: %" PRIu64,
1152 journal_object_type_to_string(type), offset);
1153
1154 /* This will likely read too much data but it avoids having to call pread() twice. */
1155 n = pread(f->fd, &o, sizeof(o), offset);
1156 if (n < 0)
1157 return log_debug_errno(errno, "Failed to read journal %s object at offset: %" PRIu64,
1158 journal_object_type_to_string(type), offset);
1159
1160 if ((size_t) n < sizeof(o.object))
1161 return log_debug_errno(SYNTHETIC_ERRNO(EIO),
1162 "Failed to read short %s object at offset: %" PRIu64,
1163 journal_object_type_to_string(type), offset);
1164
1165 r = check_object_header(f, &o, type, offset);
1166 if (r < 0)
1167 return r;
1168
1169 if ((size_t) n < minimum_header_size(f, &o))
1170 return log_debug_errno(SYNTHETIC_ERRNO(EIO),
1171 "Short read while reading %s object: %" PRIu64,
1172 journal_object_type_to_string(type), offset);
1173
1174 r = check_object(f, &o, offset);
1175 if (r < 0)
1176 return r;
1177
1178 if (ret)
1179 *ret = o;
1180
1181 return 0;
1182 }
1183
1184 static uint64_t inc_seqnum(uint64_t seqnum) {
1185 if (seqnum < UINT64_MAX-1)
1186 return seqnum + 1;
1187
1188 return 1; /* skip over UINT64_MAX and 0 when we run out of seqnums and start again */
1189 }
1190
1191 static uint64_t journal_file_entry_seqnum(
1192 JournalFile *f,
1193 uint64_t *seqnum) {
1194
1195 uint64_t next_seqnum;
1196
1197 assert(f);
1198 assert(f->header);
1199
1200 /* Picks a new sequence number for the entry we are about to add and returns it. */
1201
1202 next_seqnum = inc_seqnum(le64toh(f->header->tail_entry_seqnum));
1203
1204 /* If an external seqnum counter was passed, we update both the local and the external one, and set
1205 * it to the maximum of both */
1206 if (seqnum)
1207 *seqnum = next_seqnum = MAX(inc_seqnum(*seqnum), next_seqnum);
1208
1209 f->header->tail_entry_seqnum = htole64(next_seqnum);
1210
1211 if (f->header->head_entry_seqnum == 0)
1212 f->header->head_entry_seqnum = htole64(next_seqnum);
1213
1214 return next_seqnum;
1215 }
1216
1217 int journal_file_append_object(
1218 JournalFile *f,
1219 ObjectType type,
1220 uint64_t size,
1221 Object **ret_object,
1222 uint64_t *ret_offset) {
1223
1224 int r;
1225 uint64_t p;
1226 Object *o;
1227
1228 assert(f);
1229 assert(f->header);
1230 assert(type > OBJECT_UNUSED && type < _OBJECT_TYPE_MAX);
1231 assert(size >= sizeof(ObjectHeader));
1232
1233 r = journal_file_set_online(f);
1234 if (r < 0)
1235 return r;
1236
1237 r = journal_file_tail_end_by_mmap(f, &p);
1238 if (r < 0)
1239 return r;
1240
1241 r = journal_file_allocate(f, p, size);
1242 if (r < 0)
1243 return r;
1244
1245 r = journal_file_move_to(f, type, false, p, size, (void**) &o);
1246 if (r < 0)
1247 return r;
1248
1249 o->object = (ObjectHeader) {
1250 .type = type,
1251 .size = htole64(size),
1252 };
1253
1254 f->header->tail_object_offset = htole64(p);
1255 f->header->n_objects = htole64(le64toh(f->header->n_objects) + 1);
1256
1257 if (ret_object)
1258 *ret_object = o;
1259
1260 if (ret_offset)
1261 *ret_offset = p;
1262
1263 return 0;
1264 }
1265
1266 static int journal_file_setup_data_hash_table(JournalFile *f) {
1267 uint64_t s, p;
1268 Object *o;
1269 int r;
1270
1271 assert(f);
1272 assert(f->header);
1273
1274 /* We estimate that we need 1 hash table entry per 768 bytes
1275 of journal file and we want to make sure we never get
1276 beyond 75% fill level. Calculate the hash table size for
1277 the maximum file size based on these metrics. */
1278
1279 s = (f->metrics.max_size * 4 / 768 / 3) * sizeof(HashItem);
1280 if (s < DEFAULT_DATA_HASH_TABLE_SIZE)
1281 s = DEFAULT_DATA_HASH_TABLE_SIZE;
1282
1283 log_debug("Reserving %"PRIu64" entries in data hash table.", s / sizeof(HashItem));
1284
1285 r = journal_file_append_object(f,
1286 OBJECT_DATA_HASH_TABLE,
1287 offsetof(Object, hash_table.items) + s,
1288 &o, &p);
1289 if (r < 0)
1290 return r;
1291
1292 memzero(o->hash_table.items, s);
1293
1294 f->header->data_hash_table_offset = htole64(p + offsetof(Object, hash_table.items));
1295 f->header->data_hash_table_size = htole64(s);
1296
1297 return 0;
1298 }
1299
1300 static int journal_file_setup_field_hash_table(JournalFile *f) {
1301 uint64_t s, p;
1302 Object *o;
1303 int r;
1304
1305 assert(f);
1306 assert(f->header);
1307
1308 /* We use a fixed size hash table for the fields as this
1309 * number should grow very slowly only */
1310
1311 s = DEFAULT_FIELD_HASH_TABLE_SIZE;
1312 log_debug("Reserving %"PRIu64" entries in field hash table.", s / sizeof(HashItem));
1313
1314 r = journal_file_append_object(f,
1315 OBJECT_FIELD_HASH_TABLE,
1316 offsetof(Object, hash_table.items) + s,
1317 &o, &p);
1318 if (r < 0)
1319 return r;
1320
1321 memzero(o->hash_table.items, s);
1322
1323 f->header->field_hash_table_offset = htole64(p + offsetof(Object, hash_table.items));
1324 f->header->field_hash_table_size = htole64(s);
1325
1326 return 0;
1327 }
1328
1329 int journal_file_map_data_hash_table(JournalFile *f) {
1330 uint64_t s, p;
1331 void *t;
1332 int r;
1333
1334 assert(f);
1335 assert(f->header);
1336
1337 if (f->data_hash_table)
1338 return 0;
1339
1340 p = le64toh(f->header->data_hash_table_offset);
1341 s = le64toh(f->header->data_hash_table_size);
1342
1343 r = journal_file_move_to(f,
1344 OBJECT_DATA_HASH_TABLE,
1345 true,
1346 p, s,
1347 &t);
1348 if (r < 0)
1349 return r;
1350
1351 f->data_hash_table = t;
1352 return 0;
1353 }
1354
1355 int journal_file_map_field_hash_table(JournalFile *f) {
1356 uint64_t s, p;
1357 void *t;
1358 int r;
1359
1360 assert(f);
1361 assert(f->header);
1362
1363 if (f->field_hash_table)
1364 return 0;
1365
1366 p = le64toh(f->header->field_hash_table_offset);
1367 s = le64toh(f->header->field_hash_table_size);
1368
1369 r = journal_file_move_to(f,
1370 OBJECT_FIELD_HASH_TABLE,
1371 true,
1372 p, s,
1373 &t);
1374 if (r < 0)
1375 return r;
1376
1377 f->field_hash_table = t;
1378 return 0;
1379 }
1380
1381 static int journal_file_link_field(
1382 JournalFile *f,
1383 Object *o,
1384 uint64_t offset,
1385 uint64_t hash) {
1386
1387 uint64_t p, h, m;
1388 int r;
1389
1390 assert(f);
1391 assert(f->header);
1392 assert(f->field_hash_table);
1393 assert(o);
1394 assert(offset > 0);
1395
1396 if (o->object.type != OBJECT_FIELD)
1397 return -EINVAL;
1398
1399 m = le64toh(READ_NOW(f->header->field_hash_table_size)) / sizeof(HashItem);
1400 if (m <= 0)
1401 return -EBADMSG;
1402
1403 /* This might alter the window we are looking at */
1404 o->field.next_hash_offset = o->field.head_data_offset = 0;
1405
1406 h = hash % m;
1407 p = le64toh(f->field_hash_table[h].tail_hash_offset);
1408 if (p == 0)
1409 f->field_hash_table[h].head_hash_offset = htole64(offset);
1410 else {
1411 r = journal_file_move_to_object(f, OBJECT_FIELD, p, &o);
1412 if (r < 0)
1413 return r;
1414
1415 o->field.next_hash_offset = htole64(offset);
1416 }
1417
1418 f->field_hash_table[h].tail_hash_offset = htole64(offset);
1419
1420 if (JOURNAL_HEADER_CONTAINS(f->header, n_fields))
1421 f->header->n_fields = htole64(le64toh(f->header->n_fields) + 1);
1422
1423 return 0;
1424 }
1425
1426 static int journal_file_link_data(
1427 JournalFile *f,
1428 Object *o,
1429 uint64_t offset,
1430 uint64_t hash) {
1431
1432 uint64_t p, h, m;
1433 int r;
1434
1435 assert(f);
1436 assert(f->header);
1437 assert(f->data_hash_table);
1438 assert(o);
1439 assert(offset > 0);
1440
1441 if (o->object.type != OBJECT_DATA)
1442 return -EINVAL;
1443
1444 m = le64toh(READ_NOW(f->header->data_hash_table_size)) / sizeof(HashItem);
1445 if (m <= 0)
1446 return -EBADMSG;
1447
1448 /* This might alter the window we are looking at */
1449 o->data.next_hash_offset = o->data.next_field_offset = 0;
1450 o->data.entry_offset = o->data.entry_array_offset = 0;
1451 o->data.n_entries = 0;
1452
1453 h = hash % m;
1454 p = le64toh(f->data_hash_table[h].tail_hash_offset);
1455 if (p == 0)
1456 /* Only entry in the hash table is easy */
1457 f->data_hash_table[h].head_hash_offset = htole64(offset);
1458 else {
1459 /* Move back to the previous data object, to patch in
1460 * pointer */
1461
1462 r = journal_file_move_to_object(f, OBJECT_DATA, p, &o);
1463 if (r < 0)
1464 return r;
1465
1466 o->data.next_hash_offset = htole64(offset);
1467 }
1468
1469 f->data_hash_table[h].tail_hash_offset = htole64(offset);
1470
1471 if (JOURNAL_HEADER_CONTAINS(f->header, n_data))
1472 f->header->n_data = htole64(le64toh(f->header->n_data) + 1);
1473
1474 return 0;
1475 }
1476
1477 static int get_next_hash_offset(
1478 JournalFile *f,
1479 uint64_t *p,
1480 le64_t *next_hash_offset,
1481 uint64_t *depth,
1482 le64_t *header_max_depth) {
1483
1484 uint64_t nextp;
1485
1486 assert(f);
1487 assert(p);
1488 assert(next_hash_offset);
1489 assert(depth);
1490
1491 nextp = le64toh(READ_NOW(*next_hash_offset));
1492 if (nextp > 0) {
1493 if (nextp <= *p) /* Refuse going in loops */
1494 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
1495 "Detected hash item loop in %s, refusing.", f->path);
1496
1497 (*depth)++;
1498
1499 /* If the depth of this hash chain is larger than all others we have seen so far, record it */
1500 if (header_max_depth && journal_file_writable(f))
1501 *header_max_depth = htole64(MAX(*depth, le64toh(*header_max_depth)));
1502 }
1503
1504 *p = nextp;
1505 return 0;
1506 }
1507
1508 int journal_file_find_field_object_with_hash(
1509 JournalFile *f,
1510 const void *field,
1511 uint64_t size,
1512 uint64_t hash,
1513 Object **ret_object,
1514 uint64_t *ret_offset) {
1515
1516 uint64_t p, osize, h, m, depth = 0;
1517 int r;
1518
1519 assert(f);
1520 assert(f->header);
1521 assert(field);
1522 assert(size > 0);
1523
1524 /* If the field hash table is empty, we can't find anything */
1525 if (le64toh(f->header->field_hash_table_size) <= 0)
1526 return 0;
1527
1528 /* Map the field hash table, if it isn't mapped yet. */
1529 r = journal_file_map_field_hash_table(f);
1530 if (r < 0)
1531 return r;
1532
1533 osize = offsetof(Object, field.payload) + size;
1534
1535 m = le64toh(READ_NOW(f->header->field_hash_table_size)) / sizeof(HashItem);
1536 if (m <= 0)
1537 return -EBADMSG;
1538
1539 h = hash % m;
1540 p = le64toh(f->field_hash_table[h].head_hash_offset);
1541 while (p > 0) {
1542 Object *o;
1543
1544 r = journal_file_move_to_object(f, OBJECT_FIELD, p, &o);
1545 if (r < 0)
1546 return r;
1547
1548 if (le64toh(o->field.hash) == hash &&
1549 le64toh(o->object.size) == osize &&
1550 memcmp(o->field.payload, field, size) == 0) {
1551
1552 if (ret_object)
1553 *ret_object = o;
1554 if (ret_offset)
1555 *ret_offset = p;
1556
1557 return 1;
1558 }
1559
1560 r = get_next_hash_offset(
1561 f,
1562 &p,
1563 &o->field.next_hash_offset,
1564 &depth,
1565 JOURNAL_HEADER_CONTAINS(f->header, field_hash_chain_depth) ? &f->header->field_hash_chain_depth : NULL);
1566 if (r < 0)
1567 return r;
1568 }
1569
1570 return 0;
1571 }
1572
1573 uint64_t journal_file_hash_data(
1574 JournalFile *f,
1575 const void *data,
1576 size_t sz) {
1577
1578 assert(f);
1579 assert(f->header);
1580 assert(data || sz == 0);
1581
1582 /* We try to unify our codebase on siphash, hence new-styled journal files utilizing the keyed hash
1583 * function use siphash. Old journal files use the Jenkins hash. */
1584
1585 if (JOURNAL_HEADER_KEYED_HASH(f->header))
1586 return siphash24(data, sz, f->header->file_id.bytes);
1587
1588 return jenkins_hash64(data, sz);
1589 }
1590
1591 int journal_file_find_field_object(
1592 JournalFile *f,
1593 const void *field,
1594 uint64_t size,
1595 Object **ret_object,
1596 uint64_t *ret_offset) {
1597
1598 assert(f);
1599 assert(field);
1600 assert(size > 0);
1601
1602 return journal_file_find_field_object_with_hash(
1603 f,
1604 field, size,
1605 journal_file_hash_data(f, field, size),
1606 ret_object, ret_offset);
1607 }
1608
1609 int journal_file_find_data_object_with_hash(
1610 JournalFile *f,
1611 const void *data,
1612 uint64_t size,
1613 uint64_t hash,
1614 Object **ret_object,
1615 uint64_t *ret_offset) {
1616
1617 uint64_t p, h, m, depth = 0;
1618 int r;
1619
1620 assert(f);
1621 assert(f->header);
1622 assert(data || size == 0);
1623
1624 /* If there's no data hash table, then there's no entry. */
1625 if (le64toh(f->header->data_hash_table_size) <= 0)
1626 return 0;
1627
1628 /* Map the data hash table, if it isn't mapped yet. */
1629 r = journal_file_map_data_hash_table(f);
1630 if (r < 0)
1631 return r;
1632
1633 m = le64toh(READ_NOW(f->header->data_hash_table_size)) / sizeof(HashItem);
1634 if (m <= 0)
1635 return -EBADMSG;
1636
1637 h = hash % m;
1638 p = le64toh(f->data_hash_table[h].head_hash_offset);
1639
1640 while (p > 0) {
1641 Object *o;
1642 void *d;
1643 size_t rsize;
1644
1645 r = journal_file_move_to_object(f, OBJECT_DATA, p, &o);
1646 if (r < 0)
1647 return r;
1648
1649 if (le64toh(o->data.hash) != hash)
1650 goto next;
1651
1652 r = journal_file_data_payload(f, o, p, NULL, 0, 0, &d, &rsize);
1653 if (r < 0)
1654 return r;
1655 assert(r > 0); /* journal_file_data_payload() always returns > 0 if no field is provided. */
1656
1657 if (memcmp_nn(data, size, d, rsize) == 0) {
1658 if (ret_object)
1659 *ret_object = o;
1660
1661 if (ret_offset)
1662 *ret_offset = p;
1663
1664 return 1;
1665 }
1666
1667 next:
1668 r = get_next_hash_offset(
1669 f,
1670 &p,
1671 &o->data.next_hash_offset,
1672 &depth,
1673 JOURNAL_HEADER_CONTAINS(f->header, data_hash_chain_depth) ? &f->header->data_hash_chain_depth : NULL);
1674 if (r < 0)
1675 return r;
1676 }
1677
1678 return 0;
1679 }
1680
1681 int journal_file_find_data_object(
1682 JournalFile *f,
1683 const void *data,
1684 uint64_t size,
1685 Object **ret_object,
1686 uint64_t *ret_offset) {
1687
1688 assert(f);
1689 assert(data || size == 0);
1690
1691 return journal_file_find_data_object_with_hash(
1692 f,
1693 data, size,
1694 journal_file_hash_data(f, data, size),
1695 ret_object, ret_offset);
1696 }
1697
1698 bool journal_field_valid(const char *p, size_t l, bool allow_protected) {
1699 /* We kinda enforce POSIX syntax recommendations for
1700 environment variables here, but make a couple of additional
1701 requirements.
1702
1703 http://pubs.opengroup.org/onlinepubs/000095399/basedefs/xbd_chap08.html */
1704
1705 assert(p);
1706
1707 if (l == SIZE_MAX)
1708 l = strlen(p);
1709
1710 /* No empty field names */
1711 if (l <= 0)
1712 return false;
1713
1714 /* Don't allow names longer than 64 chars */
1715 if (l > 64)
1716 return false;
1717
1718 /* Variables starting with an underscore are protected */
1719 if (!allow_protected && p[0] == '_')
1720 return false;
1721
1722 /* Don't allow digits as first character */
1723 if (ascii_isdigit(p[0]))
1724 return false;
1725
1726 /* Only allow A-Z0-9 and '_' */
1727 for (const char *a = p; a < p + l; a++)
1728 if ((*a < 'A' || *a > 'Z') &&
1729 !ascii_isdigit(*a) &&
1730 *a != '_')
1731 return false;
1732
1733 return true;
1734 }
1735
1736 static int journal_file_append_field(
1737 JournalFile *f,
1738 const void *field,
1739 uint64_t size,
1740 Object **ret_object,
1741 uint64_t *ret_offset) {
1742
1743 uint64_t hash, p;
1744 uint64_t osize;
1745 Object *o;
1746 int r;
1747
1748 assert(f);
1749 assert(field);
1750 assert(size > 0);
1751
1752 if (!journal_field_valid(field, size, true))
1753 return -EBADMSG;
1754
1755 hash = journal_file_hash_data(f, field, size);
1756
1757 r = journal_file_find_field_object_with_hash(f, field, size, hash, ret_object, ret_offset);
1758 if (r < 0)
1759 return r;
1760 if (r > 0)
1761 return 0;
1762
1763 osize = offsetof(Object, field.payload) + size;
1764 r = journal_file_append_object(f, OBJECT_FIELD, osize, &o, &p);
1765 if (r < 0)
1766 return r;
1767
1768 o->field.hash = htole64(hash);
1769 memcpy(o->field.payload, field, size);
1770
1771 r = journal_file_link_field(f, o, p, hash);
1772 if (r < 0)
1773 return r;
1774
1775 /* The linking might have altered the window, so let's only pass the offset to hmac which will
1776 * move to the object again if needed. */
1777
1778 #if HAVE_GCRYPT
1779 r = journal_file_hmac_put_object(f, OBJECT_FIELD, NULL, p);
1780 if (r < 0)
1781 return r;
1782 #endif
1783
1784 if (ret_object) {
1785 r = journal_file_move_to_object(f, OBJECT_FIELD, p, ret_object);
1786 if (r < 0)
1787 return r;
1788 }
1789
1790 if (ret_offset)
1791 *ret_offset = p;
1792
1793 return 0;
1794 }
1795
1796 static int maybe_compress_payload(JournalFile *f, uint8_t *dst, const uint8_t *src, uint64_t size, size_t *rsize) {
1797 assert(f);
1798 assert(f->header);
1799
1800 #if HAVE_COMPRESSION
1801 Compression c;
1802 int r;
1803
1804 c = JOURNAL_FILE_COMPRESSION(f);
1805 if (c == COMPRESSION_NONE || size < f->compress_threshold_bytes)
1806 return 0;
1807
1808 r = compress_blob(c, src, size, dst, size - 1, rsize);
1809 if (r < 0)
1810 return log_debug_errno(r, "Failed to compress data object using %s, ignoring: %m", compression_to_string(c));
1811
1812 log_debug("Compressed data object %"PRIu64" -> %zu using %s", size, *rsize, compression_to_string(c));
1813
1814 return 1; /* compressed */
1815 #else
1816 return 0;
1817 #endif
1818 }
1819
1820 static int journal_file_append_data(
1821 JournalFile *f,
1822 const void *data,
1823 uint64_t size,
1824 Object **ret_object,
1825 uint64_t *ret_offset) {
1826
1827 uint64_t hash, p, osize;
1828 Object *o, *fo;
1829 size_t rsize = 0;
1830 const void *eq;
1831 int r;
1832
1833 assert(f);
1834
1835 if (!data || size == 0)
1836 return -EINVAL;
1837
1838 hash = journal_file_hash_data(f, data, size);
1839
1840 r = journal_file_find_data_object_with_hash(f, data, size, hash, ret_object, ret_offset);
1841 if (r < 0)
1842 return r;
1843 if (r > 0)
1844 return 0;
1845
1846 eq = memchr(data, '=', size);
1847 if (!eq)
1848 return -EINVAL;
1849
1850 osize = journal_file_data_payload_offset(f) + size;
1851 r = journal_file_append_object(f, OBJECT_DATA, osize, &o, &p);
1852 if (r < 0)
1853 return r;
1854
1855 o->data.hash = htole64(hash);
1856
1857 r = maybe_compress_payload(f, journal_file_data_payload_field(f, o), data, size, &rsize);
1858 if (r <= 0)
1859 /* We don't really care failures, let's continue without compression */
1860 memcpy_safe(journal_file_data_payload_field(f, o), data, size);
1861 else {
1862 Compression c = JOURNAL_FILE_COMPRESSION(f);
1863
1864 assert(c >= 0 && c < _COMPRESSION_MAX && c != COMPRESSION_NONE);
1865
1866 o->object.size = htole64(journal_file_data_payload_offset(f) + rsize);
1867 o->object.flags |= COMPRESSION_TO_OBJECT_FLAG(c);
1868 }
1869
1870 r = journal_file_link_data(f, o, p, hash);
1871 if (r < 0)
1872 return r;
1873
1874 /* The linking might have altered the window, so let's refresh our pointer. */
1875 r = journal_file_move_to_object(f, OBJECT_DATA, p, &o);
1876 if (r < 0)
1877 return r;
1878
1879 #if HAVE_GCRYPT
1880 r = journal_file_hmac_put_object(f, OBJECT_DATA, o, p);
1881 if (r < 0)
1882 return r;
1883 #endif
1884
1885 /* Create field object ... */
1886 r = journal_file_append_field(f, data, (uint8_t*) eq - (uint8_t*) data, &fo, NULL);
1887 if (r < 0)
1888 return r;
1889
1890 /* ... and link it in. */
1891 o->data.next_field_offset = fo->field.head_data_offset;
1892 fo->field.head_data_offset = le64toh(p);
1893
1894 if (ret_object)
1895 *ret_object = o;
1896
1897 if (ret_offset)
1898 *ret_offset = p;
1899
1900 return 0;
1901 }
1902
1903 static int maybe_decompress_payload(
1904 JournalFile *f,
1905 uint8_t *payload,
1906 uint64_t size,
1907 Compression compression,
1908 const char *field,
1909 size_t field_length,
1910 size_t data_threshold,
1911 void **ret_data,
1912 size_t *ret_size) {
1913
1914 assert(f);
1915
1916 /* We can't read objects larger than 4G on a 32-bit machine */
1917 if ((uint64_t) (size_t) size != size)
1918 return -E2BIG;
1919
1920 if (compression != COMPRESSION_NONE) {
1921 #if HAVE_COMPRESSION
1922 size_t rsize;
1923 int r;
1924
1925 if (field) {
1926 r = decompress_startswith(compression, payload, size, &f->compress_buffer, field,
1927 field_length, '=');
1928 if (r < 0)
1929 return log_debug_errno(r,
1930 "Cannot decompress %s object of length %" PRIu64 ": %m",
1931 compression_to_string(compression),
1932 size);
1933 if (r == 0) {
1934 if (ret_data)
1935 *ret_data = NULL;
1936 if (ret_size)
1937 *ret_size = 0;
1938 return 0;
1939 }
1940 }
1941
1942 r = decompress_blob(compression, payload, size, &f->compress_buffer, &rsize, 0);
1943 if (r < 0)
1944 return r;
1945
1946 if (ret_data)
1947 *ret_data = f->compress_buffer;
1948 if (ret_size)
1949 *ret_size = rsize;
1950 #else
1951 return -EPROTONOSUPPORT;
1952 #endif
1953 } else {
1954 if (field && (size < field_length + 1 || memcmp(payload, field, field_length) != 0 || payload[field_length] != '=')) {
1955 if (ret_data)
1956 *ret_data = NULL;
1957 if (ret_size)
1958 *ret_size = 0;
1959 return 0;
1960 }
1961
1962 if (ret_data)
1963 *ret_data = payload;
1964 if (ret_size)
1965 *ret_size = (size_t) size;
1966 }
1967
1968 return 1;
1969 }
1970
1971 int journal_file_data_payload(
1972 JournalFile *f,
1973 Object *o,
1974 uint64_t offset,
1975 const char *field,
1976 size_t field_length,
1977 size_t data_threshold,
1978 void **ret_data,
1979 size_t *ret_size) {
1980
1981 uint64_t size;
1982 Compression c;
1983 int r;
1984
1985 assert(f);
1986 assert(!field == (field_length == 0)); /* These must be specified together. */
1987
1988 if (!o) {
1989 r = journal_file_move_to_object(f, OBJECT_DATA, offset, &o);
1990 if (r < 0)
1991 return r;
1992 }
1993
1994 size = le64toh(READ_NOW(o->object.size));
1995 if (size < journal_file_data_payload_offset(f))
1996 return -EBADMSG;
1997
1998 size -= journal_file_data_payload_offset(f);
1999
2000 c = COMPRESSION_FROM_OBJECT(o);
2001 if (c < 0)
2002 return -EPROTONOSUPPORT;
2003
2004 return maybe_decompress_payload(f, journal_file_data_payload_field(f, o), size, c, field,
2005 field_length, data_threshold, ret_data, ret_size);
2006 }
2007
2008 uint64_t journal_file_entry_n_items(JournalFile *f, Object *o) {
2009 uint64_t sz;
2010
2011 assert(f);
2012 assert(o);
2013
2014 if (o->object.type != OBJECT_ENTRY)
2015 return 0;
2016
2017 sz = le64toh(READ_NOW(o->object.size));
2018 if (sz < offsetof(Object, entry.items))
2019 return 0;
2020
2021 return (sz - offsetof(Object, entry.items)) / journal_file_entry_item_size(f);
2022 }
2023
2024 uint64_t journal_file_entry_array_n_items(JournalFile *f, Object *o) {
2025 uint64_t sz;
2026
2027 assert(f);
2028 assert(o);
2029
2030 if (o->object.type != OBJECT_ENTRY_ARRAY)
2031 return 0;
2032
2033 sz = le64toh(READ_NOW(o->object.size));
2034 if (sz < offsetof(Object, entry_array.items))
2035 return 0;
2036
2037 return (sz - offsetof(Object, entry_array.items)) / journal_file_entry_array_item_size(f);
2038 }
2039
2040 uint64_t journal_file_hash_table_n_items(Object *o) {
2041 uint64_t sz;
2042
2043 assert(o);
2044
2045 if (!IN_SET(o->object.type, OBJECT_DATA_HASH_TABLE, OBJECT_FIELD_HASH_TABLE))
2046 return 0;
2047
2048 sz = le64toh(READ_NOW(o->object.size));
2049 if (sz < offsetof(Object, hash_table.items))
2050 return 0;
2051
2052 return (sz - offsetof(Object, hash_table.items)) / sizeof(HashItem);
2053 }
2054
2055 static void write_entry_array_item(JournalFile *f, Object *o, uint64_t i, uint64_t p) {
2056 assert(f);
2057 assert(o);
2058
2059 if (JOURNAL_HEADER_COMPACT(f->header)) {
2060 assert(p <= UINT32_MAX);
2061 o->entry_array.items.compact[i] = htole32(p);
2062 } else
2063 o->entry_array.items.regular[i] = htole64(p);
2064 }
2065
2066 static int link_entry_into_array(
2067 JournalFile *f,
2068 le64_t *first,
2069 le64_t *idx,
2070 le32_t *tail,
2071 le32_t *tidx,
2072 uint64_t p) {
2073
2074 uint64_t n = 0, ap = 0, q, i, a, hidx;
2075 Object *o;
2076 int r;
2077
2078 assert(f);
2079 assert(f->header);
2080 assert(first);
2081 assert(idx);
2082 assert(p > 0);
2083
2084 a = tail ? le32toh(*tail) : le64toh(*first);
2085 hidx = le64toh(READ_NOW(*idx));
2086 i = tidx ? le32toh(READ_NOW(*tidx)) : hidx;
2087
2088 while (a > 0) {
2089 r = journal_file_move_to_object(f, OBJECT_ENTRY_ARRAY, a, &o);
2090 if (r < 0)
2091 return r;
2092
2093 n = journal_file_entry_array_n_items(f, o);
2094 if (i < n) {
2095 write_entry_array_item(f, o, i, p);
2096 *idx = htole64(hidx + 1);
2097 if (tidx)
2098 *tidx = htole32(le32toh(*tidx) + 1);
2099 return 0;
2100 }
2101
2102 i -= n;
2103 ap = a;
2104 a = le64toh(o->entry_array.next_entry_array_offset);
2105 }
2106
2107 if (hidx > n)
2108 n = (hidx+1) * 2;
2109 else
2110 n = n * 2;
2111
2112 if (n < 4)
2113 n = 4;
2114
2115 r = journal_file_append_object(f, OBJECT_ENTRY_ARRAY,
2116 offsetof(Object, entry_array.items) + n * journal_file_entry_array_item_size(f),
2117 &o, &q);
2118 if (r < 0)
2119 return r;
2120
2121 #if HAVE_GCRYPT
2122 r = journal_file_hmac_put_object(f, OBJECT_ENTRY_ARRAY, o, q);
2123 if (r < 0)
2124 return r;
2125 #endif
2126
2127 write_entry_array_item(f, o, i, p);
2128
2129 if (ap == 0)
2130 *first = htole64(q);
2131 else {
2132 r = journal_file_move_to_object(f, OBJECT_ENTRY_ARRAY, ap, &o);
2133 if (r < 0)
2134 return r;
2135
2136 o->entry_array.next_entry_array_offset = htole64(q);
2137 }
2138
2139 if (tail)
2140 *tail = htole32(q);
2141
2142 if (JOURNAL_HEADER_CONTAINS(f->header, n_entry_arrays))
2143 f->header->n_entry_arrays = htole64(le64toh(f->header->n_entry_arrays) + 1);
2144
2145 *idx = htole64(hidx + 1);
2146 if (tidx)
2147 *tidx = htole32(1);
2148
2149 return 0;
2150 }
2151
2152 static int link_entry_into_array_plus_one(
2153 JournalFile *f,
2154 le64_t *extra,
2155 le64_t *first,
2156 le64_t *idx,
2157 le32_t *tail,
2158 le32_t *tidx,
2159 uint64_t p) {
2160
2161 uint64_t hidx;
2162 int r;
2163
2164 assert(f);
2165 assert(extra);
2166 assert(first);
2167 assert(idx);
2168 assert(p > 0);
2169
2170 hidx = le64toh(READ_NOW(*idx));
2171 if (hidx == UINT64_MAX)
2172 return -EBADMSG;
2173 if (hidx == 0)
2174 *extra = htole64(p);
2175 else {
2176 le64_t i;
2177
2178 i = htole64(hidx - 1);
2179 r = link_entry_into_array(f, first, &i, tail, tidx, p);
2180 if (r < 0)
2181 return r;
2182 }
2183
2184 *idx = htole64(hidx + 1);
2185 return 0;
2186 }
2187
2188 static int journal_file_link_entry_item(JournalFile *f, uint64_t offset, uint64_t p) {
2189 Object *o;
2190 int r;
2191
2192 assert(f);
2193 assert(offset > 0);
2194
2195 r = journal_file_move_to_object(f, OBJECT_DATA, p, &o);
2196 if (r < 0)
2197 return r;
2198
2199 return link_entry_into_array_plus_one(f,
2200 &o->data.entry_offset,
2201 &o->data.entry_array_offset,
2202 &o->data.n_entries,
2203 JOURNAL_HEADER_COMPACT(f->header) ? &o->data.compact.tail_entry_array_offset : NULL,
2204 JOURNAL_HEADER_COMPACT(f->header) ? &o->data.compact.tail_entry_array_n_entries : NULL,
2205 offset);
2206 }
2207
2208 static int journal_file_link_entry(
2209 JournalFile *f,
2210 Object *o,
2211 uint64_t offset,
2212 const EntryItem items[],
2213 size_t n_items) {
2214
2215 int r;
2216
2217 assert(f);
2218 assert(f->header);
2219 assert(o);
2220 assert(offset > 0);
2221
2222 if (o->object.type != OBJECT_ENTRY)
2223 return -EINVAL;
2224
2225 __atomic_thread_fence(__ATOMIC_SEQ_CST);
2226
2227 /* Link up the entry itself */
2228 r = link_entry_into_array(f,
2229 &f->header->entry_array_offset,
2230 &f->header->n_entries,
2231 JOURNAL_HEADER_CONTAINS(f->header, tail_entry_array_offset) ? &f->header->tail_entry_array_offset : NULL,
2232 JOURNAL_HEADER_CONTAINS(f->header, tail_entry_array_n_entries) ? &f->header->tail_entry_array_n_entries : NULL,
2233 offset);
2234 if (r < 0)
2235 return r;
2236
2237 /* log_debug("=> %s seqnr=%"PRIu64" n_entries=%"PRIu64, f->path, o->entry.seqnum, f->header->n_entries); */
2238
2239 if (f->header->head_entry_realtime == 0)
2240 f->header->head_entry_realtime = o->entry.realtime;
2241
2242 f->header->tail_entry_realtime = o->entry.realtime;
2243 f->header->tail_entry_monotonic = o->entry.monotonic;
2244 if (JOURNAL_HEADER_CONTAINS(f->header, tail_entry_offset))
2245 f->header->tail_entry_offset = htole64(offset);
2246 f->newest_mtime = 0; /* we have a new tail entry now, explicitly invalidate newest boot id/timestamp info */
2247
2248 /* Link up the items */
2249 for (uint64_t i = 0; i < n_items; i++) {
2250 int k;
2251
2252 /* If we fail to link an entry item because we can't allocate a new entry array, don't fail
2253 * immediately but try to link the other entry items since it might still be possible to link
2254 * those if they don't require a new entry array to be allocated. */
2255
2256 k = journal_file_link_entry_item(f, offset, items[i].object_offset);
2257 if (k == -E2BIG)
2258 r = k;
2259 else if (k < 0)
2260 return k;
2261 }
2262
2263 return r;
2264 }
2265
2266 static void write_entry_item(JournalFile *f, Object *o, uint64_t i, const EntryItem *item) {
2267 assert(f);
2268 assert(o);
2269 assert(item);
2270
2271 if (JOURNAL_HEADER_COMPACT(f->header)) {
2272 assert(item->object_offset <= UINT32_MAX);
2273 o->entry.items.compact[i].object_offset = htole32(item->object_offset);
2274 } else {
2275 o->entry.items.regular[i].object_offset = htole64(item->object_offset);
2276 o->entry.items.regular[i].hash = htole64(item->hash);
2277 }
2278 }
2279
2280 static int journal_file_append_entry_internal(
2281 JournalFile *f,
2282 const dual_timestamp *ts,
2283 const sd_id128_t *boot_id,
2284 const sd_id128_t *machine_id,
2285 uint64_t xor_hash,
2286 const EntryItem items[],
2287 size_t n_items,
2288 uint64_t *seqnum,
2289 sd_id128_t *seqnum_id,
2290 Object **ret_object,
2291 uint64_t *ret_offset) {
2292
2293 uint64_t np;
2294 uint64_t osize;
2295 Object *o;
2296 int r;
2297
2298 assert(f);
2299 assert(f->header);
2300 assert(ts);
2301 assert(items || n_items == 0);
2302
2303 if (f->strict_order) {
2304 /* If requested be stricter with ordering in this journal file, to make searching via
2305 * bisection fully deterministic. This is an optional feature, so that if desired journal
2306 * files can be written where the ordering is not strictly enforced (in which case bisection
2307 * will yield *a* result, but not the *only* result, when searching for points in
2308 * time). Strict ordering mode is enabled when journald originally writes the files, but
2309 * might not necessarily be if other tools (the remoting tools for example) write journal
2310 * files from combined sources.
2311 *
2312 * Typically, if any of the errors generated here are seen journald will just rotate the
2313 * journal files and start anew. */
2314
2315 if (ts->realtime < le64toh(f->header->tail_entry_realtime))
2316 return log_debug_errno(SYNTHETIC_ERRNO(EREMCHG),
2317 "Realtime timestamp %" PRIu64 " smaller than previous realtime "
2318 "timestamp %" PRIu64 ", refusing entry.",
2319 ts->realtime, le64toh(f->header->tail_entry_realtime));
2320
2321 if ((!boot_id || sd_id128_equal(*boot_id, f->header->tail_entry_boot_id)) &&
2322 ts->monotonic < le64toh(f->header->tail_entry_monotonic))
2323 return log_debug_errno(
2324 SYNTHETIC_ERRNO(ENOTNAM),
2325 "Monotonic timestamp %" PRIu64
2326 " smaller than previous monotonic timestamp %" PRIu64
2327 " while having the same boot ID, refusing entry.",
2328 ts->monotonic,
2329 le64toh(f->header->tail_entry_monotonic));
2330 }
2331
2332 if (seqnum_id) {
2333 /* Settle the passed in sequence number ID */
2334
2335 if (sd_id128_is_null(*seqnum_id))
2336 *seqnum_id = f->header->seqnum_id; /* Caller has none assigned, then copy the one from the file */
2337 else if (!sd_id128_equal(*seqnum_id, f->header->seqnum_id)) {
2338 /* Different seqnum IDs? We can't allow entries from multiple IDs end up in the same journal.*/
2339 if (le64toh(f->header->n_entries) == 0)
2340 f->header->seqnum_id = *seqnum_id; /* Caller has one, and file so far has no entries, then copy the one from the caller */
2341 else
2342 return log_debug_errno(SYNTHETIC_ERRNO(EILSEQ),
2343 "Sequence number IDs don't match, refusing entry.");
2344 }
2345 }
2346
2347 if (machine_id && sd_id128_is_null(f->header->machine_id))
2348 /* Initialize machine ID when not set yet */
2349 f->header->machine_id = *machine_id;
2350
2351 osize = offsetof(Object, entry.items) + (n_items * journal_file_entry_item_size(f));
2352
2353 r = journal_file_append_object(f, OBJECT_ENTRY, osize, &o, &np);
2354 if (r < 0)
2355 return r;
2356
2357 o->entry.seqnum = htole64(journal_file_entry_seqnum(f, seqnum));
2358 o->entry.realtime = htole64(ts->realtime);
2359 o->entry.monotonic = htole64(ts->monotonic);
2360 o->entry.xor_hash = htole64(xor_hash);
2361 if (boot_id)
2362 f->header->tail_entry_boot_id = *boot_id;
2363 o->entry.boot_id = f->header->tail_entry_boot_id;
2364
2365 for (size_t i = 0; i < n_items; i++)
2366 write_entry_item(f, o, i, &items[i]);
2367
2368 #if HAVE_GCRYPT
2369 r = journal_file_hmac_put_object(f, OBJECT_ENTRY, o, np);
2370 if (r < 0)
2371 return r;
2372 #endif
2373
2374 r = journal_file_link_entry(f, o, np, items, n_items);
2375 if (r < 0)
2376 return r;
2377
2378 if (ret_object)
2379 *ret_object = o;
2380
2381 if (ret_offset)
2382 *ret_offset = np;
2383
2384 return r;
2385 }
2386
2387 void journal_file_post_change(JournalFile *f) {
2388 assert(f);
2389
2390 if (f->fd < 0)
2391 return;
2392
2393 /* inotify() does not receive IN_MODIFY events from file
2394 * accesses done via mmap(). After each access we hence
2395 * trigger IN_MODIFY by truncating the journal file to its
2396 * current size which triggers IN_MODIFY. */
2397
2398 __atomic_thread_fence(__ATOMIC_SEQ_CST);
2399
2400 if (ftruncate(f->fd, f->last_stat.st_size) < 0)
2401 log_debug_errno(errno, "Failed to truncate file to its own size: %m");
2402 }
2403
2404 static int post_change_thunk(sd_event_source *timer, uint64_t usec, void *userdata) {
2405 assert(userdata);
2406
2407 journal_file_post_change(userdata);
2408
2409 return 1;
2410 }
2411
2412 static void schedule_post_change(JournalFile *f) {
2413 sd_event *e;
2414 int r;
2415
2416 assert(f);
2417 assert(f->post_change_timer);
2418
2419 assert_se(e = sd_event_source_get_event(f->post_change_timer));
2420
2421 /* If we are already going down, post the change immediately. */
2422 if (IN_SET(sd_event_get_state(e), SD_EVENT_EXITING, SD_EVENT_FINISHED))
2423 goto fail;
2424
2425 r = sd_event_source_get_enabled(f->post_change_timer, NULL);
2426 if (r < 0) {
2427 log_debug_errno(r, "Failed to get ftruncate timer state: %m");
2428 goto fail;
2429 }
2430 if (r > 0)
2431 return;
2432
2433 r = sd_event_source_set_time_relative(f->post_change_timer, f->post_change_timer_period);
2434 if (r < 0) {
2435 log_debug_errno(r, "Failed to set time for scheduling ftruncate: %m");
2436 goto fail;
2437 }
2438
2439 r = sd_event_source_set_enabled(f->post_change_timer, SD_EVENT_ONESHOT);
2440 if (r < 0) {
2441 log_debug_errno(r, "Failed to enable scheduled ftruncate: %m");
2442 goto fail;
2443 }
2444
2445 return;
2446
2447 fail:
2448 /* On failure, let's simply post the change immediately. */
2449 journal_file_post_change(f);
2450 }
2451
2452 /* Enable coalesced change posting in a timer on the provided sd_event instance */
2453 int journal_file_enable_post_change_timer(JournalFile *f, sd_event *e, usec_t t) {
2454 _cleanup_(sd_event_source_unrefp) sd_event_source *timer = NULL;
2455 int r;
2456
2457 assert(f);
2458 assert_return(!f->post_change_timer, -EINVAL);
2459 assert(e);
2460 assert(t);
2461
2462 r = sd_event_add_time(e, &timer, CLOCK_MONOTONIC, 0, 0, post_change_thunk, f);
2463 if (r < 0)
2464 return r;
2465
2466 r = sd_event_source_set_enabled(timer, SD_EVENT_OFF);
2467 if (r < 0)
2468 return r;
2469
2470 f->post_change_timer = TAKE_PTR(timer);
2471 f->post_change_timer_period = t;
2472
2473 return r;
2474 }
2475
2476 static int entry_item_cmp(const EntryItem *a, const EntryItem *b) {
2477 return CMP(ASSERT_PTR(a)->object_offset, ASSERT_PTR(b)->object_offset);
2478 }
2479
2480 static size_t remove_duplicate_entry_items(EntryItem items[], size_t n) {
2481 size_t j = 1;
2482
2483 assert(items || n == 0);
2484
2485 if (n <= 1)
2486 return n;
2487
2488 for (size_t i = 1; i < n; i++)
2489 if (items[i].object_offset != items[j - 1].object_offset)
2490 items[j++] = items[i];
2491
2492 return j;
2493 }
2494
2495 int journal_file_append_entry(
2496 JournalFile *f,
2497 const dual_timestamp *ts,
2498 const sd_id128_t *boot_id,
2499 const struct iovec iovec[],
2500 size_t n_iovec,
2501 uint64_t *seqnum,
2502 sd_id128_t *seqnum_id,
2503 Object **ret_object,
2504 uint64_t *ret_offset) {
2505
2506 _cleanup_free_ EntryItem *items_alloc = NULL;
2507 EntryItem *items;
2508 uint64_t xor_hash = 0;
2509 struct dual_timestamp _ts;
2510 sd_id128_t _boot_id, _machine_id, *machine_id;
2511 int r;
2512
2513 assert(f);
2514 assert(f->header);
2515 assert(iovec);
2516 assert(n_iovec > 0);
2517
2518 if (ts) {
2519 if (!VALID_REALTIME(ts->realtime))
2520 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
2521 "Invalid realtime timestamp %" PRIu64 ", refusing entry.",
2522 ts->realtime);
2523 if (!VALID_MONOTONIC(ts->monotonic))
2524 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
2525 "Invalid monotomic timestamp %" PRIu64 ", refusing entry.",
2526 ts->monotonic);
2527 } else {
2528 dual_timestamp_get(&_ts);
2529 ts = &_ts;
2530 }
2531
2532 if (!boot_id) {
2533 r = sd_id128_get_boot(&_boot_id);
2534 if (r < 0)
2535 return r;
2536
2537 boot_id = &_boot_id;
2538 }
2539
2540 r = sd_id128_get_machine(&_machine_id);
2541 if (ERRNO_IS_NEG_MACHINE_ID_UNSET(r))
2542 /* Gracefully handle the machine ID not being initialized yet */
2543 machine_id = NULL;
2544 else if (r < 0)
2545 return r;
2546 else
2547 machine_id = &_machine_id;
2548
2549 #if HAVE_GCRYPT
2550 r = journal_file_maybe_append_tag(f, ts->realtime);
2551 if (r < 0)
2552 return r;
2553 #endif
2554
2555 if (n_iovec < ALLOCA_MAX / sizeof(EntryItem) / 2)
2556 items = newa(EntryItem, n_iovec);
2557 else {
2558 items_alloc = new(EntryItem, n_iovec);
2559 if (!items_alloc)
2560 return -ENOMEM;
2561
2562 items = items_alloc;
2563 }
2564
2565 for (size_t i = 0; i < n_iovec; i++) {
2566 uint64_t p;
2567 Object *o;
2568
2569 r = journal_file_append_data(f, iovec[i].iov_base, iovec[i].iov_len, &o, &p);
2570 if (r < 0)
2571 return r;
2572
2573 /* When calculating the XOR hash field, we need to take special care if the "keyed-hash"
2574 * journal file flag is on. We use the XOR hash field to quickly determine the identity of a
2575 * specific record, and give records with otherwise identical position (i.e. match in seqno,
2576 * timestamp, …) a stable ordering. But for that we can't have it that the hash of the
2577 * objects in each file is different since they are keyed. Hence let's calculate the Jenkins
2578 * hash here for that. This also has the benefit that cursors for old and new journal files
2579 * are completely identical (they include the XOR hash after all). For classic Jenkins-hash
2580 * files things are easier, we can just take the value from the stored record directly. */
2581
2582 if (JOURNAL_HEADER_KEYED_HASH(f->header))
2583 xor_hash ^= jenkins_hash64(iovec[i].iov_base, iovec[i].iov_len);
2584 else
2585 xor_hash ^= le64toh(o->data.hash);
2586
2587 items[i] = (EntryItem) {
2588 .object_offset = p,
2589 .hash = le64toh(o->data.hash),
2590 };
2591 }
2592
2593 /* Order by the position on disk, in order to improve seek
2594 * times for rotating media. */
2595 typesafe_qsort(items, n_iovec, entry_item_cmp);
2596 n_iovec = remove_duplicate_entry_items(items, n_iovec);
2597
2598 r = journal_file_append_entry_internal(
2599 f,
2600 ts,
2601 boot_id,
2602 machine_id,
2603 xor_hash,
2604 items,
2605 n_iovec,
2606 seqnum,
2607 seqnum_id,
2608 ret_object,
2609 ret_offset);
2610
2611 /* If the memory mapping triggered a SIGBUS then we return an
2612 * IO error and ignore the error code passed down to us, since
2613 * it is very likely just an effect of a nullified replacement
2614 * mapping page */
2615
2616 if (mmap_cache_fd_got_sigbus(f->cache_fd))
2617 r = -EIO;
2618
2619 if (f->post_change_timer)
2620 schedule_post_change(f);
2621 else
2622 journal_file_post_change(f);
2623
2624 return r;
2625 }
2626
2627 typedef struct ChainCacheItem {
2628 uint64_t first; /* the array at the beginning of the chain */
2629 uint64_t array; /* the cached array */
2630 uint64_t begin; /* the first item in the cached array */
2631 uint64_t total; /* the total number of items in all arrays before this one in the chain */
2632 uint64_t last_index; /* the last index we looked at, to optimize locality when bisecting */
2633 } ChainCacheItem;
2634
2635 static void chain_cache_put(
2636 OrderedHashmap *h,
2637 ChainCacheItem *ci,
2638 uint64_t first,
2639 uint64_t array,
2640 uint64_t begin,
2641 uint64_t total,
2642 uint64_t last_index) {
2643
2644 assert(h);
2645
2646 if (!ci) {
2647 /* If the chain item to cache for this chain is the
2648 * first one it's not worth caching anything */
2649 if (array == first)
2650 return;
2651
2652 if (ordered_hashmap_size(h) >= CHAIN_CACHE_MAX) {
2653 ci = ordered_hashmap_steal_first(h);
2654 assert(ci);
2655 } else {
2656 ci = new(ChainCacheItem, 1);
2657 if (!ci)
2658 return;
2659 }
2660
2661 ci->first = first;
2662
2663 if (ordered_hashmap_put(h, &ci->first, ci) < 0) {
2664 free(ci);
2665 return;
2666 }
2667 } else
2668 assert(ci->first == first);
2669
2670 ci->array = array;
2671 ci->begin = begin;
2672 ci->total = total;
2673 ci->last_index = last_index;
2674 }
2675
2676 static int bump_array_index(uint64_t *i, direction_t direction, uint64_t n) {
2677 assert(i);
2678
2679 /* Increase or decrease the specified index, in the right direction. */
2680
2681 if (direction == DIRECTION_DOWN) {
2682 if (*i >= n - 1)
2683 return 0;
2684
2685 (*i)++;
2686 } else {
2687 if (*i <= 0)
2688 return 0;
2689
2690 (*i)--;
2691 }
2692
2693 return 1;
2694 }
2695
2696 static int bump_entry_array(
2697 JournalFile *f,
2698 Object *o,
2699 uint64_t offset,
2700 uint64_t first,
2701 direction_t direction,
2702 uint64_t *ret) {
2703
2704 uint64_t p, q = 0;
2705 int r;
2706
2707 assert(f);
2708 assert(offset);
2709 assert(ret);
2710
2711 if (direction == DIRECTION_DOWN) {
2712 assert(o);
2713 *ret = le64toh(o->entry_array.next_entry_array_offset);
2714 return 0;
2715 }
2716
2717 /* Entry array chains are a singly linked list, so to find the previous array in the chain, we have
2718 * to start iterating from the top. */
2719
2720 p = first;
2721
2722 while (p > 0 && p != offset) {
2723 r = journal_file_move_to_object(f, OBJECT_ENTRY_ARRAY, p, &o);
2724 if (r < 0)
2725 return r;
2726
2727 q = p;
2728 p = le64toh(o->entry_array.next_entry_array_offset);
2729 }
2730
2731 /* If we can't find the previous entry array in the entry array chain, we're likely dealing with a
2732 * corrupted journal file. */
2733 if (p == 0)
2734 return -EBADMSG;
2735
2736 *ret = q;
2737
2738 return 0;
2739 }
2740
2741 static int generic_array_get(
2742 JournalFile *f,
2743 uint64_t first,
2744 uint64_t i,
2745 direction_t direction,
2746 Object **ret_object,
2747 uint64_t *ret_offset) {
2748
2749 uint64_t a, t = 0, k;
2750 ChainCacheItem *ci;
2751 Object *o;
2752 int r;
2753
2754 assert(f);
2755
2756 /* FIXME: fix return value assignment on success. */
2757
2758 a = first;
2759
2760 /* Try the chain cache first */
2761 ci = ordered_hashmap_get(f->chain_cache, &first);
2762 if (ci && i > ci->total) {
2763 a = ci->array;
2764 i -= ci->total;
2765 t = ci->total;
2766 }
2767
2768 while (a > 0) {
2769 r = journal_file_move_to_object(f, OBJECT_ENTRY_ARRAY, a, &o);
2770 if (IN_SET(r, -EBADMSG, -EADDRNOTAVAIL)) {
2771 /* If there's corruption and we're going downwards, let's pretend we reached the
2772 * final entry in the entry array chain. */
2773
2774 if (direction == DIRECTION_DOWN)
2775 return 0;
2776
2777 /* If there's corruption and we're going upwards, move back to the previous entry
2778 * array and start iterating entries from there. */
2779
2780 r = bump_entry_array(f, NULL, a, first, DIRECTION_UP, &a);
2781 if (r < 0)
2782 return r;
2783
2784 i = UINT64_MAX;
2785
2786 break;
2787 }
2788 if (r < 0)
2789 return r;
2790
2791 k = journal_file_entry_array_n_items(f, o);
2792 if (i < k)
2793 break;
2794
2795 i -= k;
2796 t += k;
2797 a = le64toh(o->entry_array.next_entry_array_offset);
2798 }
2799
2800 /* If we've found the right location, now look for the first non-corrupt entry object (in the right
2801 * direction). */
2802
2803 while (a > 0) {
2804 /* In the first iteration of the while loop, we reuse i, k and o from the previous while
2805 * loop. */
2806 if (i == UINT64_MAX) {
2807 r = journal_file_move_to_object(f, OBJECT_ENTRY_ARRAY, a, &o);
2808 if (r < 0)
2809 return r;
2810
2811 k = journal_file_entry_array_n_items(f, o);
2812 if (k == 0)
2813 break;
2814
2815 i = direction == DIRECTION_DOWN ? 0 : k - 1;
2816 }
2817
2818 do {
2819 uint64_t p;
2820
2821 p = journal_file_entry_array_item(f, o, i);
2822
2823 r = journal_file_move_to_object(f, OBJECT_ENTRY, p, ret_object);
2824 if (r >= 0) {
2825 /* Let's cache this item for the next invocation */
2826 chain_cache_put(f->chain_cache, ci, first, a, journal_file_entry_array_item(f, o, 0), t, i);
2827
2828 if (ret_offset)
2829 *ret_offset = p;
2830
2831 return 1;
2832 }
2833 if (!IN_SET(r, -EADDRNOTAVAIL, -EBADMSG))
2834 return r;
2835
2836 /* OK, so this entry is borked. Most likely some entry didn't get synced to
2837 * disk properly, let's see if the next one might work for us instead. */
2838 log_debug_errno(r, "Entry item %" PRIu64 " is bad, skipping over it.", i);
2839
2840 r = journal_file_move_to_object(f, OBJECT_ENTRY_ARRAY, a, &o);
2841 if (r < 0)
2842 return r;
2843
2844 } while (bump_array_index(&i, direction, k) > 0);
2845
2846 r = bump_entry_array(f, o, a, first, direction, &a);
2847 if (r < 0)
2848 return r;
2849
2850 t += k;
2851 i = UINT64_MAX;
2852 }
2853
2854 return 0;
2855 }
2856
2857 static int generic_array_get_plus_one(
2858 JournalFile *f,
2859 uint64_t extra,
2860 uint64_t first,
2861 uint64_t i,
2862 direction_t direction,
2863 Object **ret_object,
2864 uint64_t *ret_offset) {
2865
2866 int r;
2867
2868 assert(f);
2869
2870 /* FIXME: fix return value assignment on success. */
2871
2872 if (i == 0) {
2873 r = journal_file_move_to_object(f, OBJECT_ENTRY, extra, ret_object);
2874 if (IN_SET(r, -EADDRNOTAVAIL, -EBADMSG))
2875 return generic_array_get(f, first, 0, direction, ret_object, ret_offset);
2876 if (r < 0)
2877 return r;
2878
2879 if (ret_offset)
2880 *ret_offset = extra;
2881
2882 return 1;
2883 }
2884
2885 return generic_array_get(f, first, i - 1, direction, ret_object, ret_offset);
2886 }
2887
2888 enum {
2889 TEST_FOUND,
2890 TEST_LEFT,
2891 TEST_RIGHT
2892 };
2893
2894 static int generic_array_bisect_one(
2895 JournalFile *f,
2896 uint64_t a, /* offset of entry array object. */
2897 uint64_t i, /* index of the entry item we will test. */
2898 uint64_t needle,
2899 int (*test_object)(JournalFile *f, uint64_t p, uint64_t needle),
2900 direction_t direction,
2901 uint64_t *left,
2902 uint64_t *right,
2903 uint64_t *ret_offset) {
2904
2905 Object *array;
2906 uint64_t p;
2907 int r;
2908
2909 assert(f);
2910 assert(test_object);
2911 assert(left);
2912 assert(right);
2913 assert(*left <= i);
2914 assert(i <= *right);
2915
2916 r = journal_file_move_to_object(f, OBJECT_ENTRY_ARRAY, a, &array);
2917 if (r < 0)
2918 return r;
2919
2920 p = journal_file_entry_array_item(f, array, i);
2921 if (p <= 0)
2922 r = -EBADMSG;
2923 else
2924 r = test_object(f, p, needle);
2925 if (IN_SET(r, -EBADMSG, -EADDRNOTAVAIL)) {
2926 log_debug_errno(r, "Encountered invalid entry while bisecting, cutting algorithm short.");
2927 *right = i;
2928 return -ENOANO; /* recognizable error */
2929 }
2930 if (r < 0)
2931 return r;
2932
2933 if (r == TEST_FOUND)
2934 r = direction == DIRECTION_DOWN ? TEST_RIGHT : TEST_LEFT;
2935
2936 if (r == TEST_RIGHT)
2937 *right = i;
2938 else
2939 *left = i + 1;
2940
2941 if (ret_offset)
2942 *ret_offset = p;
2943
2944 return r;
2945 }
2946
2947 static int generic_array_bisect(
2948 JournalFile *f,
2949 uint64_t first,
2950 uint64_t n,
2951 uint64_t needle,
2952 int (*test_object)(JournalFile *f, uint64_t p, uint64_t needle),
2953 direction_t direction,
2954 Object **ret_object,
2955 uint64_t *ret_offset,
2956 uint64_t *ret_idx) {
2957
2958 /* Given an entry array chain, this function finds the object "closest" to the given needle in the
2959 * chain, taking into account the provided direction. A function can be provided to determine how
2960 * an object is matched against the given needle.
2961 *
2962 * Given a journal file, the offset of an object and the needle, the test_object() function should
2963 * return TEST_LEFT if the needle is located earlier in the entry array chain, TEST_LEFT if the
2964 * needle is located later in the entry array chain and TEST_FOUND if the object matches the needle.
2965 * If test_object() returns TEST_FOUND for a specific object, that object's information will be used
2966 * to populate the return values of this function. If test_object() never returns TEST_FOUND, the
2967 * return values are populated with the details of one of the objects closest to the needle. If the
2968 * direction is DIRECTION_UP, the earlier object is used. Otherwise, the later object is used.
2969 */
2970
2971 uint64_t a, p, t = 0, i = 0, last_p = 0, last_index = UINT64_MAX;
2972 bool subtract_one = false;
2973 ChainCacheItem *ci;
2974 Object *array;
2975 int r;
2976
2977 assert(f);
2978 assert(test_object);
2979
2980 /* Start with the first array in the chain */
2981 a = first;
2982
2983 ci = ordered_hashmap_get(f->chain_cache, &first);
2984 if (ci && n > ci->total && ci->begin != 0) {
2985 /* Ah, we have iterated this bisection array chain previously! Let's see if we can skip ahead
2986 * in the chain, as far as the last time. But we can't jump backwards in the chain, so let's
2987 * check that first. */
2988
2989 r = test_object(f, ci->begin, needle);
2990 if (r < 0)
2991 return r;
2992
2993 if (r == TEST_LEFT) {
2994 /* OK, what we are looking for is right of the begin of this EntryArray, so let's
2995 * jump straight to previously cached array in the chain */
2996
2997 a = ci->array;
2998 n -= ci->total;
2999 t = ci->total;
3000 last_index = ci->last_index;
3001 }
3002 }
3003
3004 while (a > 0) {
3005 uint64_t left = 0, right, k, lp;
3006
3007 r = journal_file_move_to_object(f, OBJECT_ENTRY_ARRAY, a, &array);
3008 if (r < 0)
3009 return r;
3010
3011 k = journal_file_entry_array_n_items(f, array);
3012 right = MIN(k, n);
3013 if (right <= 0)
3014 return 0;
3015
3016 right--;
3017 r = generic_array_bisect_one(f, a, right, needle, test_object, direction, &left, &right, &lp);
3018 if (r == -ENOANO) {
3019 n = right;
3020 continue;
3021 }
3022 if (r < 0)
3023 return r;
3024
3025 if (r == TEST_RIGHT) {
3026 /* If we cached the last index we looked at, let's try to not to jump too wildly
3027 * around and see if we can limit the range to look at early to the immediate
3028 * neighbors of the last index we looked at. */
3029
3030 if (last_index > 0 && last_index - 1 < right) {
3031 r = generic_array_bisect_one(f, a, last_index - 1, needle, test_object, direction, &left, &right, NULL);
3032 if (r < 0 && r != -ENOANO)
3033 return r;
3034 }
3035
3036 if (last_index < right) {
3037 r = generic_array_bisect_one(f, a, last_index + 1, needle, test_object, direction, &left, &right, NULL);
3038 if (r < 0 && r != -ENOANO)
3039 return r;
3040 }
3041
3042 for (;;) {
3043 if (left == right) {
3044 if (direction == DIRECTION_UP)
3045 subtract_one = true;
3046
3047 i = left;
3048 goto found;
3049 }
3050
3051 assert(left < right);
3052 i = (left + right) / 2;
3053
3054 r = generic_array_bisect_one(f, a, i, needle, test_object, direction, &left, &right, NULL);
3055 if (r < 0 && r != -ENOANO)
3056 return r;
3057 }
3058 }
3059
3060 if (k >= n) {
3061 if (direction == DIRECTION_UP) {
3062 i = n;
3063 subtract_one = true;
3064 goto found;
3065 }
3066
3067 return 0;
3068 }
3069
3070 last_p = lp;
3071
3072 n -= k;
3073 t += k;
3074 last_index = UINT64_MAX;
3075 a = le64toh(array->entry_array.next_entry_array_offset);
3076 }
3077
3078 return 0;
3079
3080 found:
3081 if (subtract_one && t == 0 && i == 0)
3082 return 0;
3083
3084 r = journal_file_move_to_object(f, OBJECT_ENTRY_ARRAY, a, &array);
3085 if (r < 0)
3086 return r;
3087
3088 p = journal_file_entry_array_item(f, array, 0);
3089 if (p <= 0)
3090 return -EBADMSG;
3091
3092 /* Let's cache this item for the next invocation */
3093 chain_cache_put(f->chain_cache, ci, first, a, p, t, subtract_one ? (i > 0 ? i-1 : UINT64_MAX) : i);
3094
3095 if (subtract_one && i == 0)
3096 p = last_p;
3097 else if (subtract_one)
3098 p = journal_file_entry_array_item(f, array, i - 1);
3099 else
3100 p = journal_file_entry_array_item(f, array, i);
3101
3102 if (ret_object) {
3103 r = journal_file_move_to_object(f, OBJECT_ENTRY, p, ret_object);
3104 if (r < 0)
3105 return r;
3106 }
3107
3108 if (ret_offset)
3109 *ret_offset = p;
3110
3111 if (ret_idx)
3112 *ret_idx = t + i + (subtract_one ? -1 : 0);
3113
3114 return 1;
3115 }
3116
3117 static int generic_array_bisect_plus_one(
3118 JournalFile *f,
3119 uint64_t extra,
3120 uint64_t first,
3121 uint64_t n,
3122 uint64_t needle,
3123 int (*test_object)(JournalFile *f, uint64_t p, uint64_t needle),
3124 direction_t direction,
3125 Object **ret_object,
3126 uint64_t *ret_offset,
3127 uint64_t *ret_idx) {
3128
3129 int r;
3130 bool step_back = false;
3131
3132 assert(f);
3133 assert(test_object);
3134
3135 if (n <= 0)
3136 return 0;
3137
3138 /* This bisects the array in object 'first', but first checks
3139 * an extra */
3140 r = test_object(f, extra, needle);
3141 if (r < 0)
3142 return r;
3143
3144 if (r == TEST_FOUND)
3145 r = direction == DIRECTION_DOWN ? TEST_RIGHT : TEST_LEFT;
3146
3147 /* if we are looking with DIRECTION_UP then we need to first
3148 see if in the actual array there is a matching entry, and
3149 return the last one of that. But if there isn't any we need
3150 to return this one. Hence remember this, and return it
3151 below. */
3152 if (r == TEST_LEFT)
3153 step_back = direction == DIRECTION_UP;
3154
3155 if (r == TEST_RIGHT) {
3156 if (direction == DIRECTION_DOWN)
3157 goto found;
3158 else
3159 return 0;
3160 }
3161
3162 r = generic_array_bisect(f, first, n-1, needle, test_object, direction, ret_object, ret_offset, ret_idx);
3163
3164 if (r == 0 && step_back)
3165 goto found;
3166
3167 if (r > 0 && ret_idx)
3168 (*ret_idx)++;
3169
3170 return r;
3171
3172 found:
3173 if (ret_object) {
3174 r = journal_file_move_to_object(f, OBJECT_ENTRY, extra, ret_object);
3175 if (r < 0)
3176 return r;
3177 }
3178
3179 if (ret_offset)
3180 *ret_offset = extra;
3181
3182 if (ret_idx)
3183 *ret_idx = 0;
3184
3185 return 1;
3186 }
3187
3188 static int test_object_offset(JournalFile *f, uint64_t p, uint64_t needle) {
3189 assert(f);
3190 assert(p > 0);
3191
3192 if (p == needle)
3193 return TEST_FOUND;
3194 else if (p < needle)
3195 return TEST_LEFT;
3196 else
3197 return TEST_RIGHT;
3198 }
3199
3200 int journal_file_move_to_entry_by_offset(
3201 JournalFile *f,
3202 uint64_t p,
3203 direction_t direction,
3204 Object **ret_object,
3205 uint64_t *ret_offset) {
3206
3207 assert(f);
3208 assert(f->header);
3209
3210 return generic_array_bisect(
3211 f,
3212 le64toh(f->header->entry_array_offset),
3213 le64toh(f->header->n_entries),
3214 p,
3215 test_object_offset,
3216 direction,
3217 ret_object, ret_offset, NULL);
3218 }
3219
3220 static int test_object_seqnum(JournalFile *f, uint64_t p, uint64_t needle) {
3221 uint64_t sq;
3222 Object *o;
3223 int r;
3224
3225 assert(f);
3226 assert(p > 0);
3227
3228 r = journal_file_move_to_object(f, OBJECT_ENTRY, p, &o);
3229 if (r < 0)
3230 return r;
3231
3232 sq = le64toh(READ_NOW(o->entry.seqnum));
3233 if (sq == needle)
3234 return TEST_FOUND;
3235 else if (sq < needle)
3236 return TEST_LEFT;
3237 else
3238 return TEST_RIGHT;
3239 }
3240
3241 int journal_file_move_to_entry_by_seqnum(
3242 JournalFile *f,
3243 uint64_t seqnum,
3244 direction_t direction,
3245 Object **ret_object,
3246 uint64_t *ret_offset) {
3247
3248 assert(f);
3249 assert(f->header);
3250
3251 return generic_array_bisect(
3252 f,
3253 le64toh(f->header->entry_array_offset),
3254 le64toh(f->header->n_entries),
3255 seqnum,
3256 test_object_seqnum,
3257 direction,
3258 ret_object, ret_offset, NULL);
3259 }
3260
3261 static int test_object_realtime(JournalFile *f, uint64_t p, uint64_t needle) {
3262 Object *o;
3263 uint64_t rt;
3264 int r;
3265
3266 assert(f);
3267 assert(p > 0);
3268
3269 r = journal_file_move_to_object(f, OBJECT_ENTRY, p, &o);
3270 if (r < 0)
3271 return r;
3272
3273 rt = le64toh(READ_NOW(o->entry.realtime));
3274 if (rt == needle)
3275 return TEST_FOUND;
3276 else if (rt < needle)
3277 return TEST_LEFT;
3278 else
3279 return TEST_RIGHT;
3280 }
3281
3282 int journal_file_move_to_entry_by_realtime(
3283 JournalFile *f,
3284 uint64_t realtime,
3285 direction_t direction,
3286 Object **ret_object,
3287 uint64_t *ret_offset) {
3288
3289 assert(f);
3290 assert(f->header);
3291
3292 return generic_array_bisect(
3293 f,
3294 le64toh(f->header->entry_array_offset),
3295 le64toh(f->header->n_entries),
3296 realtime,
3297 test_object_realtime,
3298 direction,
3299 ret_object, ret_offset, NULL);
3300 }
3301
3302 static int test_object_monotonic(JournalFile *f, uint64_t p, uint64_t needle) {
3303 Object *o;
3304 uint64_t m;
3305 int r;
3306
3307 assert(f);
3308 assert(p > 0);
3309
3310 r = journal_file_move_to_object(f, OBJECT_ENTRY, p, &o);
3311 if (r < 0)
3312 return r;
3313
3314 m = le64toh(READ_NOW(o->entry.monotonic));
3315 if (m == needle)
3316 return TEST_FOUND;
3317 else if (m < needle)
3318 return TEST_LEFT;
3319 else
3320 return TEST_RIGHT;
3321 }
3322
3323 static int find_data_object_by_boot_id(
3324 JournalFile *f,
3325 sd_id128_t boot_id,
3326 Object **ret_object,
3327 uint64_t *ret_offset) {
3328
3329 char t[STRLEN("_BOOT_ID=") + 32 + 1] = "_BOOT_ID=";
3330
3331 assert(f);
3332
3333 sd_id128_to_string(boot_id, t + 9);
3334 return journal_file_find_data_object(f, t, sizeof(t) - 1, ret_object, ret_offset);
3335 }
3336
3337 int journal_file_move_to_entry_by_monotonic(
3338 JournalFile *f,
3339 sd_id128_t boot_id,
3340 uint64_t monotonic,
3341 direction_t direction,
3342 Object **ret_object,
3343 uint64_t *ret_offset) {
3344
3345 Object *o;
3346 int r;
3347
3348 assert(f);
3349
3350 r = find_data_object_by_boot_id(f, boot_id, &o, NULL);
3351 if (r < 0)
3352 return r;
3353 if (r == 0)
3354 return -ENOENT;
3355
3356 return generic_array_bisect_plus_one(
3357 f,
3358 le64toh(o->data.entry_offset),
3359 le64toh(o->data.entry_array_offset),
3360 le64toh(o->data.n_entries),
3361 monotonic,
3362 test_object_monotonic,
3363 direction,
3364 ret_object, ret_offset, NULL);
3365 }
3366
3367 void journal_file_reset_location(JournalFile *f) {
3368 assert(f);
3369
3370 f->location_type = LOCATION_HEAD;
3371 f->current_offset = 0;
3372 f->current_seqnum = 0;
3373 f->current_realtime = 0;
3374 f->current_monotonic = 0;
3375 zero(f->current_boot_id);
3376 f->current_xor_hash = 0;
3377
3378 /* Also reset the previous reading direction. Otherwise, next_beyond_location() may wrongly handle we
3379 * already hit EOF. See issue #29216. */
3380 f->last_direction = _DIRECTION_INVALID;
3381 }
3382
3383 void journal_file_save_location(JournalFile *f, Object *o, uint64_t offset) {
3384 assert(f);
3385 assert(o);
3386
3387 f->location_type = LOCATION_SEEK;
3388 f->current_offset = offset;
3389 f->current_seqnum = le64toh(o->entry.seqnum);
3390 f->current_realtime = le64toh(o->entry.realtime);
3391 f->current_monotonic = le64toh(o->entry.monotonic);
3392 f->current_boot_id = o->entry.boot_id;
3393 f->current_xor_hash = le64toh(o->entry.xor_hash);
3394 }
3395
3396 static bool check_properly_ordered(uint64_t new_offset, uint64_t old_offset, direction_t direction) {
3397
3398 /* Consider it an error if any of the two offsets is uninitialized */
3399 if (old_offset == 0 || new_offset == 0)
3400 return false;
3401
3402 /* If we go down, the new offset must be larger than the old one. */
3403 return direction == DIRECTION_DOWN ?
3404 new_offset > old_offset :
3405 new_offset < old_offset;
3406 }
3407
3408 int journal_file_next_entry(
3409 JournalFile *f,
3410 uint64_t p,
3411 direction_t direction,
3412 Object **ret_object,
3413 uint64_t *ret_offset) {
3414
3415 uint64_t i, n, ofs;
3416 int r;
3417
3418 assert(f);
3419 assert(f->header);
3420
3421 /* FIXME: fix return value assignment. */
3422
3423 n = le64toh(READ_NOW(f->header->n_entries));
3424 if (n <= 0)
3425 return 0;
3426
3427 if (p == 0)
3428 i = direction == DIRECTION_DOWN ? 0 : n - 1;
3429 else {
3430 r = generic_array_bisect(f,
3431 le64toh(f->header->entry_array_offset),
3432 le64toh(f->header->n_entries),
3433 p,
3434 test_object_offset,
3435 DIRECTION_DOWN,
3436 NULL, NULL,
3437 &i);
3438 if (r <= 0)
3439 return r;
3440
3441 r = bump_array_index(&i, direction, n);
3442 if (r <= 0)
3443 return r;
3444 }
3445
3446 /* And jump to it */
3447 r = generic_array_get(f, le64toh(f->header->entry_array_offset), i, direction, ret_object, &ofs);
3448 if (r <= 0)
3449 return r;
3450
3451 /* Ensure our array is properly ordered. */
3452 if (p > 0 && !check_properly_ordered(ofs, p, direction))
3453 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
3454 "%s: entry array not properly ordered at entry %" PRIu64,
3455 f->path, i);
3456
3457 if (ret_offset)
3458 *ret_offset = ofs;
3459
3460 return 1;
3461 }
3462
3463 int journal_file_next_entry_for_data(
3464 JournalFile *f,
3465 Object *d,
3466 direction_t direction,
3467 Object **ret_object,
3468 uint64_t *ret_offset) {
3469
3470 uint64_t i, n, ofs;
3471 int r;
3472
3473 assert(f);
3474 assert(d);
3475 assert(d->object.type == OBJECT_DATA);
3476
3477 /* FIXME: fix return value assignment. */
3478
3479 n = le64toh(READ_NOW(d->data.n_entries));
3480 if (n <= 0)
3481 return n;
3482
3483 i = direction == DIRECTION_DOWN ? 0 : n - 1;
3484
3485 r = generic_array_get_plus_one(f,
3486 le64toh(d->data.entry_offset),
3487 le64toh(d->data.entry_array_offset),
3488 i,
3489 direction,
3490 ret_object, &ofs);
3491 if (r <= 0)
3492 return r;
3493
3494 if (ret_offset)
3495 *ret_offset = ofs;
3496
3497 return 1;
3498 }
3499
3500 int journal_file_move_to_entry_by_offset_for_data(
3501 JournalFile *f,
3502 Object *d,
3503 uint64_t p,
3504 direction_t direction,
3505 Object **ret, uint64_t *ret_offset) {
3506
3507 assert(f);
3508 assert(d);
3509 assert(d->object.type == OBJECT_DATA);
3510
3511 return generic_array_bisect_plus_one(
3512 f,
3513 le64toh(d->data.entry_offset),
3514 le64toh(d->data.entry_array_offset),
3515 le64toh(d->data.n_entries),
3516 p,
3517 test_object_offset,
3518 direction,
3519 ret, ret_offset, NULL);
3520 }
3521
3522 int journal_file_move_to_entry_by_monotonic_for_data(
3523 JournalFile *f,
3524 Object *d,
3525 sd_id128_t boot_id,
3526 uint64_t monotonic,
3527 direction_t direction,
3528 Object **ret_object,
3529 uint64_t *ret_offset) {
3530
3531 uint64_t b, z, entry_offset, entry_array_offset, n_entries;
3532 Object *o;
3533 int r;
3534
3535 assert(f);
3536 assert(d);
3537 assert(d->object.type == OBJECT_DATA);
3538
3539 /* Save all the required data before the data object gets invalidated. */
3540 entry_offset = le64toh(READ_NOW(d->data.entry_offset));
3541 entry_array_offset = le64toh(READ_NOW(d->data.entry_array_offset));
3542 n_entries = le64toh(READ_NOW(d->data.n_entries));
3543
3544 /* First, seek by time */
3545 r = find_data_object_by_boot_id(f, boot_id, &o, &b);
3546 if (r < 0)
3547 return r;
3548 if (r == 0)
3549 return -ENOENT;
3550
3551 r = generic_array_bisect_plus_one(f,
3552 le64toh(o->data.entry_offset),
3553 le64toh(o->data.entry_array_offset),
3554 le64toh(o->data.n_entries),
3555 monotonic,
3556 test_object_monotonic,
3557 direction,
3558 NULL, &z, NULL);
3559 if (r <= 0)
3560 return r;
3561
3562 /* And now, continue seeking until we find an entry that
3563 * exists in both bisection arrays */
3564
3565 r = journal_file_move_to_object(f, OBJECT_DATA, b, &o);
3566 if (r < 0)
3567 return r;
3568
3569 for (;;) {
3570 uint64_t p, q;
3571
3572 r = generic_array_bisect_plus_one(f,
3573 entry_offset,
3574 entry_array_offset,
3575 n_entries,
3576 z,
3577 test_object_offset,
3578 direction,
3579 NULL, &p, NULL);
3580 if (r <= 0)
3581 return r;
3582
3583 r = generic_array_bisect_plus_one(f,
3584 le64toh(o->data.entry_offset),
3585 le64toh(o->data.entry_array_offset),
3586 le64toh(o->data.n_entries),
3587 p,
3588 test_object_offset,
3589 direction,
3590 NULL, &q, NULL);
3591
3592 if (r <= 0)
3593 return r;
3594
3595 if (p == q) {
3596 if (ret_object) {
3597 r = journal_file_move_to_object(f, OBJECT_ENTRY, q, ret_object);
3598 if (r < 0)
3599 return r;
3600 }
3601
3602 if (ret_offset)
3603 *ret_offset = q;
3604
3605 return 1;
3606 }
3607
3608 z = q;
3609 }
3610 }
3611
3612 int journal_file_move_to_entry_by_seqnum_for_data(
3613 JournalFile *f,
3614 Object *d,
3615 uint64_t seqnum,
3616 direction_t direction,
3617 Object **ret_object,
3618 uint64_t *ret_offset) {
3619
3620 assert(f);
3621 assert(d);
3622 assert(d->object.type == OBJECT_DATA);
3623
3624 return generic_array_bisect_plus_one(
3625 f,
3626 le64toh(d->data.entry_offset),
3627 le64toh(d->data.entry_array_offset),
3628 le64toh(d->data.n_entries),
3629 seqnum,
3630 test_object_seqnum,
3631 direction,
3632 ret_object, ret_offset, NULL);
3633 }
3634
3635 int journal_file_move_to_entry_by_realtime_for_data(
3636 JournalFile *f,
3637 Object *d,
3638 uint64_t realtime,
3639 direction_t direction,
3640 Object **ret, uint64_t *ret_offset) {
3641
3642 assert(f);
3643 assert(d);
3644 assert(d->object.type == OBJECT_DATA);
3645
3646 return generic_array_bisect_plus_one(
3647 f,
3648 le64toh(d->data.entry_offset),
3649 le64toh(d->data.entry_array_offset),
3650 le64toh(d->data.n_entries),
3651 realtime,
3652 test_object_realtime,
3653 direction,
3654 ret, ret_offset, NULL);
3655 }
3656
3657 void journal_file_dump(JournalFile *f) {
3658 Object *o;
3659 uint64_t p;
3660 int r;
3661
3662 assert(f);
3663 assert(f->header);
3664
3665 journal_file_print_header(f);
3666
3667 p = le64toh(READ_NOW(f->header->header_size));
3668 while (p != 0) {
3669 const char *s;
3670 Compression c;
3671
3672 r = journal_file_move_to_object(f, OBJECT_UNUSED, p, &o);
3673 if (r < 0)
3674 goto fail;
3675
3676 s = journal_object_type_to_string(o->object.type);
3677
3678 switch (o->object.type) {
3679
3680 case OBJECT_ENTRY:
3681 assert(s);
3682
3683 printf("Type: %s seqnum=%"PRIu64" monotonic=%"PRIu64" realtime=%"PRIu64"\n",
3684 s,
3685 le64toh(o->entry.seqnum),
3686 le64toh(o->entry.monotonic),
3687 le64toh(o->entry.realtime));
3688 break;
3689
3690 case OBJECT_TAG:
3691 assert(s);
3692
3693 printf("Type: %s seqnum=%"PRIu64" epoch=%"PRIu64"\n",
3694 s,
3695 le64toh(o->tag.seqnum),
3696 le64toh(o->tag.epoch));
3697 break;
3698
3699 default:
3700 if (s)
3701 printf("Type: %s \n", s);
3702 else
3703 printf("Type: unknown (%i)", o->object.type);
3704
3705 break;
3706 }
3707
3708 c = COMPRESSION_FROM_OBJECT(o);
3709 if (c > COMPRESSION_NONE)
3710 printf("Flags: %s\n",
3711 compression_to_string(c));
3712
3713 if (p == le64toh(f->header->tail_object_offset))
3714 p = 0;
3715 else
3716 p += ALIGN64(le64toh(o->object.size));
3717 }
3718
3719 return;
3720 fail:
3721 log_error("File corrupt");
3722 }
3723
3724 /* Note: the lifetime of the compound literal is the immediately surrounding block. */
3725 #define FORMAT_TIMESTAMP_SAFE(t) (FORMAT_TIMESTAMP(t) ?: " --- ")
3726
3727 void journal_file_print_header(JournalFile *f) {
3728 struct stat st;
3729
3730 assert(f);
3731 assert(f->header);
3732
3733 printf("File path: %s\n"
3734 "File ID: %s\n"
3735 "Machine ID: %s\n"
3736 "Boot ID: %s\n"
3737 "Sequential number ID: %s\n"
3738 "State: %s\n"
3739 "Compatible flags:%s%s%s\n"
3740 "Incompatible flags:%s%s%s%s%s%s\n"
3741 "Header size: %"PRIu64"\n"
3742 "Arena size: %"PRIu64"\n"
3743 "Data hash table size: %"PRIu64"\n"
3744 "Field hash table size: %"PRIu64"\n"
3745 "Rotate suggested: %s\n"
3746 "Head sequential number: %"PRIu64" (%"PRIx64")\n"
3747 "Tail sequential number: %"PRIu64" (%"PRIx64")\n"
3748 "Head realtime timestamp: %s (%"PRIx64")\n"
3749 "Tail realtime timestamp: %s (%"PRIx64")\n"
3750 "Tail monotonic timestamp: %s (%"PRIx64")\n"
3751 "Objects: %"PRIu64"\n"
3752 "Entry objects: %"PRIu64"\n",
3753 f->path,
3754 SD_ID128_TO_STRING(f->header->file_id),
3755 SD_ID128_TO_STRING(f->header->machine_id),
3756 SD_ID128_TO_STRING(f->header->tail_entry_boot_id),
3757 SD_ID128_TO_STRING(f->header->seqnum_id),
3758 f->header->state == STATE_OFFLINE ? "OFFLINE" :
3759 f->header->state == STATE_ONLINE ? "ONLINE" :
3760 f->header->state == STATE_ARCHIVED ? "ARCHIVED" : "UNKNOWN",
3761 JOURNAL_HEADER_SEALED(f->header) ? " SEALED" : "",
3762 JOURNAL_HEADER_TAIL_ENTRY_BOOT_ID(f->header) ? " TAIL_ENTRY_BOOT_ID" : "",
3763 (le32toh(f->header->compatible_flags) & ~HEADER_COMPATIBLE_ANY) ? " ???" : "",
3764 JOURNAL_HEADER_COMPRESSED_XZ(f->header) ? " COMPRESSED-XZ" : "",
3765 JOURNAL_HEADER_COMPRESSED_LZ4(f->header) ? " COMPRESSED-LZ4" : "",
3766 JOURNAL_HEADER_COMPRESSED_ZSTD(f->header) ? " COMPRESSED-ZSTD" : "",
3767 JOURNAL_HEADER_KEYED_HASH(f->header) ? " KEYED-HASH" : "",
3768 JOURNAL_HEADER_COMPACT(f->header) ? " COMPACT" : "",
3769 (le32toh(f->header->incompatible_flags) & ~HEADER_INCOMPATIBLE_ANY) ? " ???" : "",
3770 le64toh(f->header->header_size),
3771 le64toh(f->header->arena_size),
3772 le64toh(f->header->data_hash_table_size) / sizeof(HashItem),
3773 le64toh(f->header->field_hash_table_size) / sizeof(HashItem),
3774 yes_no(journal_file_rotate_suggested(f, 0, LOG_DEBUG)),
3775 le64toh(f->header->head_entry_seqnum), le64toh(f->header->head_entry_seqnum),
3776 le64toh(f->header->tail_entry_seqnum), le64toh(f->header->tail_entry_seqnum),
3777 FORMAT_TIMESTAMP_SAFE(le64toh(f->header->head_entry_realtime)), le64toh(f->header->head_entry_realtime),
3778 FORMAT_TIMESTAMP_SAFE(le64toh(f->header->tail_entry_realtime)), le64toh(f->header->tail_entry_realtime),
3779 FORMAT_TIMESPAN(le64toh(f->header->tail_entry_monotonic), USEC_PER_MSEC), le64toh(f->header->tail_entry_monotonic),
3780 le64toh(f->header->n_objects),
3781 le64toh(f->header->n_entries));
3782
3783 if (JOURNAL_HEADER_CONTAINS(f->header, n_data))
3784 printf("Data objects: %"PRIu64"\n"
3785 "Data hash table fill: %.1f%%\n",
3786 le64toh(f->header->n_data),
3787 100.0 * (double) le64toh(f->header->n_data) / ((double) (le64toh(f->header->data_hash_table_size) / sizeof(HashItem))));
3788
3789 if (JOURNAL_HEADER_CONTAINS(f->header, n_fields))
3790 printf("Field objects: %"PRIu64"\n"
3791 "Field hash table fill: %.1f%%\n",
3792 le64toh(f->header->n_fields),
3793 100.0 * (double) le64toh(f->header->n_fields) / ((double) (le64toh(f->header->field_hash_table_size) / sizeof(HashItem))));
3794
3795 if (JOURNAL_HEADER_CONTAINS(f->header, n_tags))
3796 printf("Tag objects: %"PRIu64"\n",
3797 le64toh(f->header->n_tags));
3798 if (JOURNAL_HEADER_CONTAINS(f->header, n_entry_arrays))
3799 printf("Entry array objects: %"PRIu64"\n",
3800 le64toh(f->header->n_entry_arrays));
3801
3802 if (JOURNAL_HEADER_CONTAINS(f->header, field_hash_chain_depth))
3803 printf("Deepest field hash chain: %" PRIu64"\n",
3804 f->header->field_hash_chain_depth);
3805
3806 if (JOURNAL_HEADER_CONTAINS(f->header, data_hash_chain_depth))
3807 printf("Deepest data hash chain: %" PRIu64"\n",
3808 f->header->data_hash_chain_depth);
3809
3810 if (fstat(f->fd, &st) >= 0)
3811 printf("Disk usage: %s\n", FORMAT_BYTES((uint64_t) st.st_blocks * 512ULL));
3812 }
3813
3814 static int journal_file_warn_btrfs(JournalFile *f) {
3815 unsigned attrs;
3816 int r;
3817
3818 assert(f);
3819
3820 /* Before we write anything, check if the COW logic is turned
3821 * off on btrfs. Given our write pattern that is quite
3822 * unfriendly to COW file systems this should greatly improve
3823 * performance on COW file systems, such as btrfs, at the
3824 * expense of data integrity features (which shouldn't be too
3825 * bad, given that we do our own checksumming). */
3826
3827 r = fd_is_fs_type(f->fd, BTRFS_SUPER_MAGIC);
3828 if (r < 0)
3829 return log_ratelimit_warning_errno(r, JOURNAL_LOG_RATELIMIT, "Failed to determine if journal is on btrfs: %m");
3830 if (r == 0)
3831 return 0;
3832
3833 r = read_attr_fd(f->fd, &attrs);
3834 if (r < 0)
3835 return log_ratelimit_warning_errno(r, JOURNAL_LOG_RATELIMIT, "Failed to read file attributes: %m");
3836
3837 if (attrs & FS_NOCOW_FL) {
3838 log_debug("Detected btrfs file system with copy-on-write disabled, all is good.");
3839 return 0;
3840 }
3841
3842 log_ratelimit_notice(JOURNAL_LOG_RATELIMIT,
3843 "Creating journal file %s on a btrfs file system, and copy-on-write is enabled. "
3844 "This is likely to slow down journal access substantially, please consider turning "
3845 "off the copy-on-write file attribute on the journal directory, using chattr +C.",
3846 f->path);
3847
3848 return 1;
3849 }
3850
3851 static void journal_default_metrics(JournalMetrics *m, int fd, bool compact) {
3852 struct statvfs ss;
3853 uint64_t fs_size = 0;
3854
3855 assert(m);
3856 assert(fd >= 0);
3857
3858 if (fstatvfs(fd, &ss) >= 0)
3859 fs_size = ss.f_frsize * ss.f_blocks;
3860 else
3861 log_debug_errno(errno, "Failed to determine disk size: %m");
3862
3863 if (m->max_use == UINT64_MAX) {
3864
3865 if (fs_size > 0)
3866 m->max_use = CLAMP(PAGE_ALIGN(fs_size / 10), /* 10% of file system size */
3867 MAX_USE_LOWER, MAX_USE_UPPER);
3868 else
3869 m->max_use = MAX_USE_LOWER;
3870 } else {
3871 m->max_use = PAGE_ALIGN(m->max_use);
3872
3873 if (m->max_use != 0 && m->max_use < JOURNAL_FILE_SIZE_MIN*2)
3874 m->max_use = JOURNAL_FILE_SIZE_MIN*2;
3875 }
3876
3877 if (m->min_use == UINT64_MAX) {
3878 if (fs_size > 0)
3879 m->min_use = CLAMP(PAGE_ALIGN(fs_size / 50), /* 2% of file system size */
3880 MIN_USE_LOW, MIN_USE_HIGH);
3881 else
3882 m->min_use = MIN_USE_LOW;
3883 }
3884
3885 if (m->min_use > m->max_use)
3886 m->min_use = m->max_use;
3887
3888 if (m->max_size == UINT64_MAX)
3889 m->max_size = MIN(PAGE_ALIGN(m->max_use / 8), /* 8 chunks */
3890 MAX_SIZE_UPPER);
3891 else
3892 m->max_size = PAGE_ALIGN(m->max_size);
3893
3894 if (compact && m->max_size > JOURNAL_COMPACT_SIZE_MAX)
3895 m->max_size = JOURNAL_COMPACT_SIZE_MAX;
3896
3897 if (m->max_size != 0) {
3898 if (m->max_size < JOURNAL_FILE_SIZE_MIN)
3899 m->max_size = JOURNAL_FILE_SIZE_MIN;
3900
3901 if (m->max_use != 0 && m->max_size*2 > m->max_use)
3902 m->max_use = m->max_size*2;
3903 }
3904
3905 if (m->min_size == UINT64_MAX)
3906 m->min_size = JOURNAL_FILE_SIZE_MIN;
3907 else
3908 m->min_size = CLAMP(PAGE_ALIGN(m->min_size),
3909 JOURNAL_FILE_SIZE_MIN,
3910 m->max_size ?: UINT64_MAX);
3911
3912 if (m->keep_free == UINT64_MAX) {
3913 if (fs_size > 0)
3914 m->keep_free = MIN(PAGE_ALIGN(fs_size / 20), /* 5% of file system size */
3915 KEEP_FREE_UPPER);
3916 else
3917 m->keep_free = DEFAULT_KEEP_FREE;
3918 }
3919
3920 if (m->n_max_files == UINT64_MAX)
3921 m->n_max_files = DEFAULT_N_MAX_FILES;
3922
3923 log_debug("Fixed min_use=%s max_use=%s max_size=%s min_size=%s keep_free=%s n_max_files=%" PRIu64,
3924 FORMAT_BYTES(m->min_use),
3925 FORMAT_BYTES(m->max_use),
3926 FORMAT_BYTES(m->max_size),
3927 FORMAT_BYTES(m->min_size),
3928 FORMAT_BYTES(m->keep_free),
3929 m->n_max_files);
3930 }
3931
3932 int journal_file_open(
3933 int fd,
3934 const char *fname,
3935 int open_flags,
3936 JournalFileFlags file_flags,
3937 mode_t mode,
3938 uint64_t compress_threshold_bytes,
3939 JournalMetrics *metrics,
3940 MMapCache *mmap_cache,
3941 JournalFile *template,
3942 JournalFile **ret) {
3943
3944 bool newly_created = false;
3945 JournalFile *f;
3946 void *h;
3947 int r;
3948
3949 assert(fd >= 0 || fname);
3950 assert(file_flags >= 0);
3951 assert(file_flags <= _JOURNAL_FILE_FLAGS_MAX);
3952 assert(mmap_cache);
3953 assert(ret);
3954
3955 if (!IN_SET((open_flags & O_ACCMODE), O_RDONLY, O_RDWR))
3956 return -EINVAL;
3957
3958 if ((open_flags & O_ACCMODE) == O_RDONLY && FLAGS_SET(open_flags, O_CREAT))
3959 return -EINVAL;
3960
3961 if (fname && (open_flags & O_CREAT) && !endswith(fname, ".journal"))
3962 return -EINVAL;
3963
3964 f = new(JournalFile, 1);
3965 if (!f)
3966 return -ENOMEM;
3967
3968 *f = (JournalFile) {
3969 .fd = fd,
3970 .mode = mode,
3971 .open_flags = open_flags,
3972 .compress_threshold_bytes = compress_threshold_bytes == UINT64_MAX ?
3973 DEFAULT_COMPRESS_THRESHOLD :
3974 MAX(MIN_COMPRESS_THRESHOLD, compress_threshold_bytes),
3975 .strict_order = FLAGS_SET(file_flags, JOURNAL_STRICT_ORDER),
3976 .newest_boot_id_prioq_idx = PRIOQ_IDX_NULL,
3977 .last_direction = _DIRECTION_INVALID,
3978 };
3979
3980 if (fname) {
3981 f->path = strdup(fname);
3982 if (!f->path) {
3983 r = -ENOMEM;
3984 goto fail;
3985 }
3986 } else {
3987 assert(fd >= 0);
3988
3989 /* If we don't know the path, fill in something explanatory and vaguely useful */
3990 if (asprintf(&f->path, "/proc/self/%i", fd) < 0) {
3991 r = -ENOMEM;
3992 goto fail;
3993 }
3994 }
3995
3996 f->chain_cache = ordered_hashmap_new(&uint64_hash_ops);
3997 if (!f->chain_cache) {
3998 r = -ENOMEM;
3999 goto fail;
4000 }
4001
4002 if (f->fd < 0) {
4003 /* We pass O_NONBLOCK here, so that in case somebody pointed us to some character device node or FIFO
4004 * or so, we likely fail quickly than block for long. For regular files O_NONBLOCK has no effect, hence
4005 * it doesn't hurt in that case. */
4006
4007 f->fd = openat_report_new(AT_FDCWD, f->path, f->open_flags|O_CLOEXEC|O_NONBLOCK, f->mode, &newly_created);
4008 if (f->fd < 0) {
4009 r = f->fd;
4010 goto fail;
4011 }
4012
4013 /* fds we opened here by us should also be closed by us. */
4014 f->close_fd = true;
4015
4016 r = fd_nonblock(f->fd, false);
4017 if (r < 0)
4018 goto fail;
4019
4020 if (!newly_created) {
4021 r = journal_file_fstat(f);
4022 if (r < 0)
4023 goto fail;
4024 }
4025 } else {
4026 r = journal_file_fstat(f);
4027 if (r < 0)
4028 goto fail;
4029
4030 /* If we just got the fd passed in, we don't really know if we created the file anew */
4031 newly_created = f->last_stat.st_size == 0 && journal_file_writable(f);
4032 }
4033
4034 f->cache_fd = mmap_cache_add_fd(mmap_cache, f->fd, mmap_prot_from_open_flags(open_flags));
4035 if (!f->cache_fd) {
4036 r = -ENOMEM;
4037 goto fail;
4038 }
4039
4040 if (newly_created) {
4041 (void) journal_file_warn_btrfs(f);
4042
4043 /* Let's attach the creation time to the journal file, so that the vacuuming code knows the age of this
4044 * file even if the file might end up corrupted one day... Ideally we'd just use the creation time many
4045 * file systems maintain for each file, but the API to query this is very new, hence let's emulate this
4046 * via extended attributes. If extended attributes are not supported we'll just skip this, and rely
4047 * solely on mtime/atime/ctime of the file. */
4048 (void) fd_setcrtime(f->fd, 0);
4049
4050 r = journal_file_init_header(f, file_flags, template);
4051 if (r < 0)
4052 goto fail;
4053
4054 r = journal_file_fstat(f);
4055 if (r < 0)
4056 goto fail;
4057 }
4058
4059 if (f->last_stat.st_size < (off_t) HEADER_SIZE_MIN) {
4060 r = -ENODATA;
4061 goto fail;
4062 }
4063
4064 r = mmap_cache_fd_get(f->cache_fd, CONTEXT_HEADER, true, 0, PAGE_ALIGN(sizeof(Header)), &f->last_stat, &h);
4065 if (r == -EINVAL) {
4066 /* Some file systems (jffs2 or p9fs) don't support mmap() properly (or only read-only
4067 * mmap()), and return EINVAL in that case. Let's propagate that as a more recognizable error
4068 * code. */
4069 r = -EAFNOSUPPORT;
4070 goto fail;
4071 }
4072 if (r < 0)
4073 goto fail;
4074
4075 f->header = h;
4076
4077 if (!newly_created) {
4078 r = journal_file_verify_header(f);
4079 if (r < 0)
4080 goto fail;
4081 }
4082
4083 #if HAVE_GCRYPT
4084 if (!newly_created && journal_file_writable(f) && JOURNAL_HEADER_SEALED(f->header)) {
4085 r = journal_file_fss_load(f);
4086 if (r < 0)
4087 goto fail;
4088 }
4089 #endif
4090
4091 if (journal_file_writable(f)) {
4092 if (metrics) {
4093 journal_default_metrics(metrics, f->fd, JOURNAL_HEADER_COMPACT(f->header));
4094 f->metrics = *metrics;
4095 } else if (template)
4096 f->metrics = template->metrics;
4097
4098 r = journal_file_refresh_header(f);
4099 if (r < 0)
4100 goto fail;
4101 }
4102
4103 #if HAVE_GCRYPT
4104 r = journal_file_hmac_setup(f);
4105 if (r < 0)
4106 goto fail;
4107 #endif
4108
4109 if (newly_created) {
4110 r = journal_file_setup_field_hash_table(f);
4111 if (r < 0)
4112 goto fail;
4113
4114 r = journal_file_setup_data_hash_table(f);
4115 if (r < 0)
4116 goto fail;
4117
4118 #if HAVE_GCRYPT
4119 r = journal_file_append_first_tag(f);
4120 if (r < 0)
4121 goto fail;
4122 #endif
4123 }
4124
4125 if (mmap_cache_fd_got_sigbus(f->cache_fd)) {
4126 r = -EIO;
4127 goto fail;
4128 }
4129
4130 if (template && template->post_change_timer) {
4131 r = journal_file_enable_post_change_timer(
4132 f,
4133 sd_event_source_get_event(template->post_change_timer),
4134 template->post_change_timer_period);
4135
4136 if (r < 0)
4137 goto fail;
4138 }
4139
4140 /* The file is opened now successfully, thus we take possession of any passed in fd. */
4141 f->close_fd = true;
4142
4143 if (DEBUG_LOGGING) {
4144 static int last_seal = -1, last_keyed_hash = -1;
4145 static Compression last_compression = _COMPRESSION_INVALID;
4146 static uint64_t last_bytes = UINT64_MAX;
4147
4148 if (last_seal != JOURNAL_HEADER_SEALED(f->header) ||
4149 last_keyed_hash != JOURNAL_HEADER_KEYED_HASH(f->header) ||
4150 last_compression != JOURNAL_FILE_COMPRESSION(f) ||
4151 last_bytes != f->compress_threshold_bytes) {
4152
4153 log_debug("Journal effective settings seal=%s keyed_hash=%s compress=%s compress_threshold_bytes=%s",
4154 yes_no(JOURNAL_HEADER_SEALED(f->header)), yes_no(JOURNAL_HEADER_KEYED_HASH(f->header)),
4155 compression_to_string(JOURNAL_FILE_COMPRESSION(f)), FORMAT_BYTES(f->compress_threshold_bytes));
4156 last_seal = JOURNAL_HEADER_SEALED(f->header);
4157 last_keyed_hash = JOURNAL_HEADER_KEYED_HASH(f->header);
4158 last_compression = JOURNAL_FILE_COMPRESSION(f);
4159 last_bytes = f->compress_threshold_bytes;
4160 }
4161 }
4162
4163 *ret = f;
4164 return 0;
4165
4166 fail:
4167 if (f->cache_fd && mmap_cache_fd_got_sigbus(f->cache_fd))
4168 r = -EIO;
4169
4170 (void) journal_file_close(f);
4171
4172 if (newly_created && fd < 0)
4173 (void) unlink(fname);
4174
4175 return r;
4176 }
4177
4178 int journal_file_parse_uid_from_filename(const char *path, uid_t *ret_uid) {
4179 _cleanup_free_ char *buf = NULL, *p = NULL;
4180 const char *a, *b, *at;
4181 int r;
4182
4183 /* This helper returns -EREMOTE when the filename doesn't match user online/offline journal
4184 * pattern. Hence it currently doesn't parse archived or disposed user journals. */
4185
4186 assert(path);
4187 assert(ret_uid);
4188
4189 r = path_extract_filename(path, &p);
4190 if (r < 0)
4191 return r;
4192 if (r == O_DIRECTORY)
4193 return -EISDIR;
4194
4195 a = startswith(p, "user-");
4196 if (!a)
4197 return -EREMOTE;
4198 b = endswith(p, ".journal");
4199 if (!b)
4200 return -EREMOTE;
4201
4202 at = strchr(a, '@');
4203 if (at)
4204 return -EREMOTE;
4205
4206 buf = strndup(a, b-a);
4207 if (!buf)
4208 return -ENOMEM;
4209
4210 return parse_uid(buf, ret_uid);
4211 }
4212
4213 int journal_file_archive(JournalFile *f, char **ret_previous_path) {
4214 _cleanup_free_ char *p = NULL;
4215
4216 assert(f);
4217
4218 if (!journal_file_writable(f))
4219 return -EINVAL;
4220
4221 /* Is this a journal file that was passed to us as fd? If so, we synthesized a path name for it, and we refuse
4222 * rotation, since we don't know the actual path, and couldn't rename the file hence. */
4223 if (path_startswith(f->path, "/proc/self/fd"))
4224 return -EINVAL;
4225
4226 if (!endswith(f->path, ".journal"))
4227 return -EINVAL;
4228
4229 if (asprintf(&p, "%.*s@" SD_ID128_FORMAT_STR "-%016"PRIx64"-%016"PRIx64".journal",
4230 (int) strlen(f->path) - 8, f->path,
4231 SD_ID128_FORMAT_VAL(f->header->seqnum_id),
4232 le64toh(f->header->head_entry_seqnum),
4233 le64toh(f->header->head_entry_realtime)) < 0)
4234 return -ENOMEM;
4235
4236 /* Try to rename the file to the archived version. If the file already was deleted, we'll get ENOENT, let's
4237 * ignore that case. */
4238 if (rename(f->path, p) < 0 && errno != ENOENT)
4239 return -errno;
4240
4241 /* Sync the rename to disk */
4242 (void) fsync_directory_of_file(f->fd);
4243
4244 if (ret_previous_path)
4245 *ret_previous_path = f->path;
4246 else
4247 free(f->path);
4248
4249 f->path = TAKE_PTR(p);
4250
4251 /* Set as archive so offlining commits w/state=STATE_ARCHIVED. Previously we would set old_file->header->state
4252 * to STATE_ARCHIVED directly here, but journal_file_set_offline() short-circuits when state != STATE_ONLINE,
4253 * which would result in the rotated journal never getting fsync() called before closing. Now we simply queue
4254 * the archive state by setting an archive bit, leaving the state as STATE_ONLINE so proper offlining
4255 * occurs. */
4256 f->archive = true;
4257
4258 return 0;
4259 }
4260
4261 int journal_file_dispose(int dir_fd, const char *fname) {
4262 _cleanup_free_ char *p = NULL;
4263
4264 assert(fname);
4265
4266 /* Renames a journal file to *.journal~, i.e. to mark it as corrupted or otherwise uncleanly shutdown. Note that
4267 * this is done without looking into the file or changing any of its contents. The idea is that this is called
4268 * whenever something is suspicious and we want to move the file away and make clear that it is not accessed
4269 * for writing anymore. */
4270
4271 if (!endswith(fname, ".journal"))
4272 return -EINVAL;
4273
4274 if (asprintf(&p, "%.*s@%016" PRIx64 "-%016" PRIx64 ".journal~",
4275 (int) strlen(fname) - 8, fname,
4276 now(CLOCK_REALTIME),
4277 random_u64()) < 0)
4278 return -ENOMEM;
4279
4280 if (renameat(dir_fd, fname, dir_fd, p) < 0)
4281 return -errno;
4282
4283 return 0;
4284 }
4285
4286 int journal_file_copy_entry(
4287 JournalFile *from,
4288 JournalFile *to,
4289 Object *o,
4290 uint64_t p,
4291 uint64_t *seqnum,
4292 sd_id128_t *seqnum_id) {
4293
4294 _cleanup_free_ EntryItem *items_alloc = NULL;
4295 EntryItem *items;
4296 uint64_t n, m = 0, xor_hash = 0;
4297 sd_id128_t boot_id;
4298 dual_timestamp ts;
4299 int r;
4300
4301 assert(from);
4302 assert(to);
4303 assert(o);
4304 assert(p > 0);
4305
4306 if (!journal_file_writable(to))
4307 return -EPERM;
4308
4309 ts = (dual_timestamp) {
4310 .monotonic = le64toh(o->entry.monotonic),
4311 .realtime = le64toh(o->entry.realtime),
4312 };
4313 boot_id = o->entry.boot_id;
4314
4315 n = journal_file_entry_n_items(from, o);
4316 if (n == 0)
4317 return 0;
4318
4319 if (n < ALLOCA_MAX / sizeof(EntryItem) / 2)
4320 items = newa(EntryItem, n);
4321 else {
4322 items_alloc = new(EntryItem, n);
4323 if (!items_alloc)
4324 return -ENOMEM;
4325
4326 items = items_alloc;
4327 }
4328
4329 for (uint64_t i = 0; i < n; i++) {
4330 uint64_t h, q;
4331 void *data;
4332 size_t l;
4333 Object *u;
4334
4335 q = journal_file_entry_item_object_offset(from, o, i);
4336 r = journal_file_data_payload(from, NULL, q, NULL, 0, 0, &data, &l);
4337 if (IN_SET(r, -EADDRNOTAVAIL, -EBADMSG)) {
4338 log_debug_errno(r, "Entry item %"PRIu64" data object is bad, skipping over it: %m", i);
4339 goto next;
4340 }
4341 if (r < 0)
4342 return r;
4343 assert(r > 0);
4344
4345 if (l == 0)
4346 return -EBADMSG;
4347
4348 r = journal_file_append_data(to, data, l, &u, &h);
4349 if (r < 0)
4350 return r;
4351
4352 if (JOURNAL_HEADER_KEYED_HASH(to->header))
4353 xor_hash ^= jenkins_hash64(data, l);
4354 else
4355 xor_hash ^= le64toh(u->data.hash);
4356
4357 items[m++] = (EntryItem) {
4358 .object_offset = h,
4359 .hash = le64toh(u->data.hash),
4360 };
4361
4362 next:
4363 /* The above journal_file_data_payload() may clear or overwrite cached object. Hence, we need
4364 * to re-read the object from the cache. */
4365 r = journal_file_move_to_object(from, OBJECT_ENTRY, p, &o);
4366 if (r < 0)
4367 return r;
4368 }
4369
4370 if (m == 0)
4371 return 0;
4372
4373 r = journal_file_append_entry_internal(
4374 to,
4375 &ts,
4376 &boot_id,
4377 &from->header->machine_id,
4378 xor_hash,
4379 items,
4380 m,
4381 seqnum,
4382 seqnum_id,
4383 /* ret_object= */ NULL,
4384 /* ret_offset= */ NULL);
4385
4386 if (mmap_cache_fd_got_sigbus(to->cache_fd))
4387 return -EIO;
4388
4389 return r;
4390 }
4391
4392 void journal_reset_metrics(JournalMetrics *m) {
4393 assert(m);
4394
4395 /* Set everything to "pick automatic values". */
4396
4397 *m = (JournalMetrics) {
4398 .min_use = UINT64_MAX,
4399 .max_use = UINT64_MAX,
4400 .min_size = UINT64_MAX,
4401 .max_size = UINT64_MAX,
4402 .keep_free = UINT64_MAX,
4403 .n_max_files = UINT64_MAX,
4404 };
4405 }
4406
4407 int journal_file_get_cutoff_realtime_usec(JournalFile *f, usec_t *ret_from, usec_t *ret_to) {
4408 assert(f);
4409 assert(f->header);
4410 assert(ret_from || ret_to);
4411
4412 if (ret_from) {
4413 if (f->header->head_entry_realtime == 0)
4414 return -ENOENT;
4415
4416 *ret_from = le64toh(f->header->head_entry_realtime);
4417 }
4418
4419 if (ret_to) {
4420 if (f->header->tail_entry_realtime == 0)
4421 return -ENOENT;
4422
4423 *ret_to = le64toh(f->header->tail_entry_realtime);
4424 }
4425
4426 return 1;
4427 }
4428
4429 int journal_file_get_cutoff_monotonic_usec(JournalFile *f, sd_id128_t boot_id, usec_t *ret_from, usec_t *ret_to) {
4430 Object *o;
4431 uint64_t p;
4432 int r;
4433
4434 assert(f);
4435 assert(ret_from || ret_to);
4436
4437 /* FIXME: fix return value assignment on success with 0. */
4438
4439 r = find_data_object_by_boot_id(f, boot_id, &o, &p);
4440 if (r <= 0)
4441 return r;
4442
4443 if (le64toh(o->data.n_entries) <= 0)
4444 return 0;
4445
4446 if (ret_from) {
4447 r = journal_file_move_to_object(f, OBJECT_ENTRY, le64toh(o->data.entry_offset), &o);
4448 if (r < 0)
4449 return r;
4450
4451 *ret_from = le64toh(o->entry.monotonic);
4452 }
4453
4454 if (ret_to) {
4455 r = journal_file_move_to_object(f, OBJECT_DATA, p, &o);
4456 if (r < 0)
4457 return r;
4458
4459 r = generic_array_get_plus_one(f,
4460 le64toh(o->data.entry_offset),
4461 le64toh(o->data.entry_array_offset),
4462 le64toh(o->data.n_entries) - 1,
4463 DIRECTION_UP,
4464 &o, NULL);
4465 if (r <= 0)
4466 return r;
4467
4468 *ret_to = le64toh(o->entry.monotonic);
4469 }
4470
4471 return 1;
4472 }
4473
4474 bool journal_file_rotate_suggested(JournalFile *f, usec_t max_file_usec, int log_level) {
4475 assert(f);
4476 assert(f->header);
4477
4478 /* If we gained new header fields we gained new features,
4479 * hence suggest a rotation */
4480 if (le64toh(f->header->header_size) < sizeof(Header)) {
4481 log_ratelimit_full(log_level, JOURNAL_LOG_RATELIMIT,
4482 "%s uses an outdated header, suggesting rotation.", f->path);
4483 return true;
4484 }
4485
4486 /* Let's check if the hash tables grew over a certain fill level (75%, borrowing this value from
4487 * Java's hash table implementation), and if so suggest a rotation. To calculate the fill level we
4488 * need the n_data field, which only exists in newer versions. */
4489
4490 if (JOURNAL_HEADER_CONTAINS(f->header, n_data))
4491 if (le64toh(f->header->n_data) * 4ULL > (le64toh(f->header->data_hash_table_size) / sizeof(HashItem)) * 3ULL) {
4492 log_ratelimit_full(
4493 log_level, JOURNAL_LOG_RATELIMIT,
4494 "Data hash table of %s has a fill level at %.1f (%"PRIu64" of %"PRIu64" items, %"PRIu64" file size, %"PRIu64" bytes per hash table item), suggesting rotation.",
4495 f->path,
4496 100.0 * (double) le64toh(f->header->n_data) / ((double) (le64toh(f->header->data_hash_table_size) / sizeof(HashItem))),
4497 le64toh(f->header->n_data),
4498 le64toh(f->header->data_hash_table_size) / sizeof(HashItem),
4499 (uint64_t) f->last_stat.st_size,
4500 f->last_stat.st_size / le64toh(f->header->n_data));
4501 return true;
4502 }
4503
4504 if (JOURNAL_HEADER_CONTAINS(f->header, n_fields))
4505 if (le64toh(f->header->n_fields) * 4ULL > (le64toh(f->header->field_hash_table_size) / sizeof(HashItem)) * 3ULL) {
4506 log_ratelimit_full(
4507 log_level, JOURNAL_LOG_RATELIMIT,
4508 "Field hash table of %s has a fill level at %.1f (%"PRIu64" of %"PRIu64" items), suggesting rotation.",
4509 f->path,
4510 100.0 * (double) le64toh(f->header->n_fields) / ((double) (le64toh(f->header->field_hash_table_size) / sizeof(HashItem))),
4511 le64toh(f->header->n_fields),
4512 le64toh(f->header->field_hash_table_size) / sizeof(HashItem));
4513 return true;
4514 }
4515
4516 /* If there are too many hash collisions somebody is most likely playing games with us. Hence, if our
4517 * longest chain is longer than some threshold, let's suggest rotation. */
4518 if (JOURNAL_HEADER_CONTAINS(f->header, data_hash_chain_depth) &&
4519 le64toh(f->header->data_hash_chain_depth) > HASH_CHAIN_DEPTH_MAX) {
4520 log_ratelimit_full(
4521 log_level, JOURNAL_LOG_RATELIMIT,
4522 "Data hash table of %s has deepest hash chain of length %" PRIu64 ", suggesting rotation.",
4523 f->path, le64toh(f->header->data_hash_chain_depth));
4524 return true;
4525 }
4526
4527 if (JOURNAL_HEADER_CONTAINS(f->header, field_hash_chain_depth) &&
4528 le64toh(f->header->field_hash_chain_depth) > HASH_CHAIN_DEPTH_MAX) {
4529 log_ratelimit_full(
4530 log_level, JOURNAL_LOG_RATELIMIT,
4531 "Field hash table of %s has deepest hash chain of length at %" PRIu64 ", suggesting rotation.",
4532 f->path, le64toh(f->header->field_hash_chain_depth));
4533 return true;
4534 }
4535
4536 /* Are the data objects properly indexed by field objects? */
4537 if (JOURNAL_HEADER_CONTAINS(f->header, n_data) &&
4538 JOURNAL_HEADER_CONTAINS(f->header, n_fields) &&
4539 le64toh(f->header->n_data) > 0 &&
4540 le64toh(f->header->n_fields) == 0) {
4541 log_ratelimit_full(
4542 log_level, JOURNAL_LOG_RATELIMIT,
4543 "Data objects of %s are not indexed by field objects, suggesting rotation.",
4544 f->path);
4545 return true;
4546 }
4547
4548 if (max_file_usec > 0) {
4549 usec_t t, h;
4550
4551 h = le64toh(f->header->head_entry_realtime);
4552 t = now(CLOCK_REALTIME);
4553
4554 if (h > 0 && t > h + max_file_usec) {
4555 log_ratelimit_full(
4556 log_level, JOURNAL_LOG_RATELIMIT,
4557 "Oldest entry in %s is older than the configured file retention duration (%s), suggesting rotation.",
4558 f->path, FORMAT_TIMESPAN(max_file_usec, USEC_PER_SEC));
4559 return true;
4560 }
4561 }
4562
4563 return false;
4564 }
4565
4566 static const char * const journal_object_type_table[] = {
4567 [OBJECT_UNUSED] = "unused",
4568 [OBJECT_DATA] = "data",
4569 [OBJECT_FIELD] = "field",
4570 [OBJECT_ENTRY] = "entry",
4571 [OBJECT_DATA_HASH_TABLE] = "data hash table",
4572 [OBJECT_FIELD_HASH_TABLE] = "field hash table",
4573 [OBJECT_ENTRY_ARRAY] = "entry array",
4574 [OBJECT_TAG] = "tag",
4575 };
4576
4577 DEFINE_STRING_TABLE_LOOKUP_TO_STRING(journal_object_type, ObjectType);