]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/journal/journal-file.c
ipv4ll: do not reset seed generation counter on restart
[thirdparty/systemd.git] / src / journal / journal-file.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
cec736d2 2
cec736d2 3#include <errno.h>
cec736d2 4#include <fcntl.h>
11689d2a 5#include <linux/fs.h>
ac2e41f5 6#include <pthread.h>
07630cea
LP
7#include <stddef.h>
8#include <sys/mman.h>
9#include <sys/statvfs.h>
10#include <sys/uio.h>
11#include <unistd.h>
fb0951b0 12
a03d4359
ZJS
13#include "sd-event.h"
14
b5efdb8a 15#include "alloc-util.h"
f27a3864 16#include "btrfs-util.h"
c8b3094d 17#include "chattr-util.h"
07630cea 18#include "compress.h"
3ffd4af2 19#include "fd-util.h"
11b29a96 20#include "fs-util.h"
0284adc6 21#include "journal-authenticate.h"
cec736d2
LP
22#include "journal-def.h"
23#include "journal-file.h"
24#include "lookup3.h"
0a970718 25#include "memory-util.h"
6bedfcbb 26#include "parse-util.h"
5d1ce257 27#include "path-util.h"
3df3e884 28#include "random-util.h"
b58c888f 29#include "set.h"
760877e9 30#include "sort-util.h"
3cc44114 31#include "stat-util.h"
07630cea 32#include "string-util.h"
4761fd0f 33#include "strv.h"
89a5a90c 34#include "xattr-util.h"
cec736d2 35
4a92baf3
LP
36#define DEFAULT_DATA_HASH_TABLE_SIZE (2047ULL*sizeof(HashItem))
37#define DEFAULT_FIELD_HASH_TABLE_SIZE (333ULL*sizeof(HashItem))
cec736d2 38
57850536
AG
39#define DEFAULT_COMPRESS_THRESHOLD (512ULL)
40#define MIN_COMPRESS_THRESHOLD (8ULL)
807e17f0 41
babfc091 42/* This is the minimum journal file size */
16098e93 43#define JOURNAL_FILE_SIZE_MIN (512ULL*1024ULL) /* 512 KiB */
babfc091
LP
44
45/* These are the lower and upper bounds if we deduce the max_use value
46 * from the file system size */
47#define DEFAULT_MAX_USE_LOWER (1ULL*1024ULL*1024ULL) /* 1 MiB */
48#define DEFAULT_MAX_USE_UPPER (4ULL*1024ULL*1024ULL*1024ULL) /* 4 GiB */
49
8580d1f7
LP
50/* This is the default minimal use limit, how much we'll use even if keep_free suggests otherwise. */
51#define DEFAULT_MIN_USE (1ULL*1024ULL*1024ULL) /* 1 MiB */
52
babfc091 53/* This is the upper bound if we deduce max_size from max_use */
71100051 54#define DEFAULT_MAX_SIZE_UPPER (128ULL*1024ULL*1024ULL) /* 128 MiB */
babfc091
LP
55
56/* This is the upper bound if we deduce the keep_free value from the
57 * file system size */
58#define DEFAULT_KEEP_FREE_UPPER (4ULL*1024ULL*1024ULL*1024ULL) /* 4 GiB */
59
60/* This is the keep_free value when we can't determine the system
61 * size */
62#define DEFAULT_KEEP_FREE (1024ULL*1024ULL) /* 1 MB */
63
8580d1f7
LP
64/* This is the default maximum number of journal files to keep around. */
65#define DEFAULT_N_MAX_FILES (100)
66
dca6219e
LP
67/* n_data was the first entry we added after the initial file format design */
68#define HEADER_SIZE_MIN ALIGN64(offsetof(Header, n_data))
cec736d2 69
a4bcff5b
LP
70/* How many entries to keep in the entry array chain cache at max */
71#define CHAIN_CACHE_MAX 20
72
a676e665
LP
73/* How much to increase the journal file size at once each time we allocate something new. */
74#define FILE_SIZE_INCREASE (8ULL*1024ULL*1024ULL) /* 8MB */
75
2678031a
LP
76/* Reread fstat() of the file for detecting deletions at least this often */
77#define LAST_STAT_REFRESH_USEC (5*USEC_PER_SEC)
78
fa6ac760
LP
79/* The mmap context to use for the header we pick as one above the last defined typed */
80#define CONTEXT_HEADER _OBJECT_TYPE_MAX
81
51804460
ZJS
82#ifdef __clang__
83# pragma GCC diagnostic ignored "-Waddress-of-packed-member"
84#endif
85
ac2e41f5
VC
86/* This may be called from a separate thread to prevent blocking the caller for the duration of fsync().
87 * As a result we use atomic operations on f->offline_state for inter-thread communications with
88 * journal_file_set_offline() and journal_file_set_online(). */
89static void journal_file_set_offline_internal(JournalFile *f) {
26687bf8 90 assert(f);
ac2e41f5
VC
91 assert(f->fd >= 0);
92 assert(f->header);
93
94 for (;;) {
95 switch (f->offline_state) {
96 case OFFLINE_CANCEL:
97 if (!__sync_bool_compare_and_swap(&f->offline_state, OFFLINE_CANCEL, OFFLINE_DONE))
98 continue;
99 return;
100
101 case OFFLINE_AGAIN_FROM_SYNCING:
102 if (!__sync_bool_compare_and_swap(&f->offline_state, OFFLINE_AGAIN_FROM_SYNCING, OFFLINE_SYNCING))
103 continue;
104 break;
105
106 case OFFLINE_AGAIN_FROM_OFFLINING:
107 if (!__sync_bool_compare_and_swap(&f->offline_state, OFFLINE_AGAIN_FROM_OFFLINING, OFFLINE_SYNCING))
108 continue;
109 break;
110
111 case OFFLINE_SYNCING:
112 (void) fsync(f->fd);
26687bf8 113
ac2e41f5
VC
114 if (!__sync_bool_compare_and_swap(&f->offline_state, OFFLINE_SYNCING, OFFLINE_OFFLINING))
115 continue;
26687bf8 116
8eb85171 117 f->header->state = f->archive ? STATE_ARCHIVED : STATE_OFFLINE;
ac2e41f5
VC
118 (void) fsync(f->fd);
119 break;
120
121 case OFFLINE_OFFLINING:
122 if (!__sync_bool_compare_and_swap(&f->offline_state, OFFLINE_OFFLINING, OFFLINE_DONE))
123 continue;
4831981d 124 _fallthrough_;
ac2e41f5
VC
125 case OFFLINE_DONE:
126 return;
127
128 case OFFLINE_JOINED:
129 log_debug("OFFLINE_JOINED unexpected offline state for journal_file_set_offline_internal()");
130 return;
131 }
132 }
133}
134
135static void * journal_file_set_offline_thread(void *arg) {
136 JournalFile *f = arg;
137
fa7ff4cf
LP
138 (void) pthread_setname_np(pthread_self(), "journal-offline");
139
ac2e41f5
VC
140 journal_file_set_offline_internal(f);
141
142 return NULL;
143}
144
145static int journal_file_set_offline_thread_join(JournalFile *f) {
146 int r;
147
148 assert(f);
149
150 if (f->offline_state == OFFLINE_JOINED)
151 return 0;
152
153 r = pthread_join(f->offline_thread, NULL);
154 if (r)
155 return -r;
156
157 f->offline_state = OFFLINE_JOINED;
26687bf8 158
be7cdd8e 159 if (mmap_cache_got_sigbus(f->mmap, f->cache_fd))
fa6ac760
LP
160 return -EIO;
161
ac2e41f5
VC
162 return 0;
163}
26687bf8 164
ac2e41f5
VC
165/* Trigger a restart if the offline thread is mid-flight in a restartable state. */
166static bool journal_file_set_offline_try_restart(JournalFile *f) {
167 for (;;) {
168 switch (f->offline_state) {
169 case OFFLINE_AGAIN_FROM_SYNCING:
170 case OFFLINE_AGAIN_FROM_OFFLINING:
171 return true;
172
173 case OFFLINE_CANCEL:
174 if (!__sync_bool_compare_and_swap(&f->offline_state, OFFLINE_CANCEL, OFFLINE_AGAIN_FROM_SYNCING))
175 continue;
176 return true;
177
178 case OFFLINE_SYNCING:
179 if (!__sync_bool_compare_and_swap(&f->offline_state, OFFLINE_SYNCING, OFFLINE_AGAIN_FROM_SYNCING))
180 continue;
181 return true;
182
183 case OFFLINE_OFFLINING:
184 if (!__sync_bool_compare_and_swap(&f->offline_state, OFFLINE_OFFLINING, OFFLINE_AGAIN_FROM_OFFLINING))
185 continue;
186 return true;
26687bf8
OS
187
188 default:
ac2e41f5
VC
189 return false;
190 }
26687bf8
OS
191 }
192}
193
ac2e41f5
VC
194/* Sets a journal offline.
195 *
196 * If wait is false then an offline is dispatched in a separate thread for a
197 * subsequent journal_file_set_offline() or journal_file_set_online() of the
198 * same journal to synchronize with.
199 *
200 * If wait is true, then either an existing offline thread will be restarted
201 * and joined, or if none exists the offline is simply performed in this
202 * context without involving another thread.
203 */
204int journal_file_set_offline(JournalFile *f, bool wait) {
205 bool restarted;
206 int r;
207
26687bf8
OS
208 assert(f);
209
210 if (!f->writable)
211 return -EPERM;
212
846e5418 213 if (f->fd < 0 || !f->header)
26687bf8
OS
214 return -EINVAL;
215
b8f99e27
VC
216 /* An offlining journal is implicitly online and may modify f->header->state,
217 * we must also join any potentially lingering offline thread when not online. */
218 if (!journal_file_is_offlining(f) && f->header->state != STATE_ONLINE)
219 return journal_file_set_offline_thread_join(f);
26687bf8 220
ac2e41f5
VC
221 /* Restart an in-flight offline thread and wait if needed, or join a lingering done one. */
222 restarted = journal_file_set_offline_try_restart(f);
223 if ((restarted && wait) || !restarted) {
224 r = journal_file_set_offline_thread_join(f);
225 if (r < 0)
226 return r;
227 }
26687bf8 228
ac2e41f5
VC
229 if (restarted)
230 return 0;
231
232 /* Initiate a new offline. */
233 f->offline_state = OFFLINE_SYNCING;
fa6ac760 234
ac2e41f5
VC
235 if (wait) /* Without using a thread if waiting. */
236 journal_file_set_offline_internal(f);
237 else {
5e9f01e8
LP
238 sigset_t ss, saved_ss;
239 int k;
240
cd2a429e 241 assert_se(sigfillset(&ss) >= 0);
08f9e80b
CM
242 /* Don't block SIGBUS since the offlining thread accesses a memory mapped file.
243 * Asynchronous SIGBUS signals can safely be handled by either thread. */
244 assert_se(sigdelset(&ss, SIGBUS) >= 0);
5e9f01e8
LP
245
246 r = pthread_sigmask(SIG_BLOCK, &ss, &saved_ss);
247 if (r > 0)
248 return -r;
249
ac2e41f5 250 r = pthread_create(&f->offline_thread, NULL, journal_file_set_offline_thread, f);
5e9f01e8
LP
251
252 k = pthread_sigmask(SIG_SETMASK, &saved_ss, NULL);
ec9ffa2c
VC
253 if (r > 0) {
254 f->offline_state = OFFLINE_JOINED;
ac2e41f5 255 return -r;
ec9ffa2c 256 }
5e9f01e8
LP
257 if (k > 0)
258 return -k;
ac2e41f5
VC
259 }
260
261 return 0;
262}
263
264static int journal_file_set_online(JournalFile *f) {
83bf6b67 265 bool wait = true;
ac2e41f5
VC
266
267 assert(f);
268
269 if (!f->writable)
270 return -EPERM;
271
846e5418 272 if (f->fd < 0 || !f->header)
ac2e41f5
VC
273 return -EINVAL;
274
83bf6b67 275 while (wait) {
ac2e41f5
VC
276 switch (f->offline_state) {
277 case OFFLINE_JOINED:
278 /* No offline thread, no need to wait. */
83bf6b67 279 wait = false;
ac2e41f5
VC
280 break;
281
282 case OFFLINE_SYNCING:
283 if (!__sync_bool_compare_and_swap(&f->offline_state, OFFLINE_SYNCING, OFFLINE_CANCEL))
284 continue;
285 /* Canceled syncing prior to offlining, no need to wait. */
83bf6b67 286 wait = false;
ac2e41f5
VC
287 break;
288
289 case OFFLINE_AGAIN_FROM_SYNCING:
290 if (!__sync_bool_compare_and_swap(&f->offline_state, OFFLINE_AGAIN_FROM_SYNCING, OFFLINE_CANCEL))
291 continue;
292 /* Canceled restart from syncing, no need to wait. */
83bf6b67 293 wait = false;
ac2e41f5
VC
294 break;
295
296 case OFFLINE_AGAIN_FROM_OFFLINING:
297 if (!__sync_bool_compare_and_swap(&f->offline_state, OFFLINE_AGAIN_FROM_OFFLINING, OFFLINE_CANCEL))
298 continue;
299 /* Canceled restart from offlining, must wait for offlining to complete however. */
4831981d 300 _fallthrough_;
ac2e41f5
VC
301 default: {
302 int r;
303
304 r = journal_file_set_offline_thread_join(f);
305 if (r < 0)
306 return r;
307
83bf6b67 308 wait = false;
ac2e41f5
VC
309 break;
310 }
311 }
312 }
26687bf8 313
be7cdd8e 314 if (mmap_cache_got_sigbus(f->mmap, f->cache_fd))
fa6ac760
LP
315 return -EIO;
316
ac2e41f5
VC
317 switch (f->header->state) {
318 case STATE_ONLINE:
319 return 0;
26687bf8 320
ac2e41f5
VC
321 case STATE_OFFLINE:
322 f->header->state = STATE_ONLINE;
323 (void) fsync(f->fd);
324 return 0;
325
326 default:
327 return -EINVAL;
328 }
26687bf8
OS
329}
330
b58c888f
VC
331bool journal_file_is_offlining(JournalFile *f) {
332 assert(f);
333
334 __sync_synchronize();
335
3742095b 336 if (IN_SET(f->offline_state, OFFLINE_DONE, OFFLINE_JOINED))
b58c888f
VC
337 return false;
338
339 return true;
340}
341
804ae586 342JournalFile* journal_file_close(JournalFile *f) {
de190aef 343 assert(f);
cec736d2 344
349cc4a5 345#if HAVE_GCRYPT
b0af6f41 346 /* Write the final tag */
43cd8794
FB
347 if (f->seal && f->writable) {
348 int r;
349
350 r = journal_file_append_tag(f);
351 if (r < 0)
352 log_error_errno(r, "Failed to append tag when closing journal: %m");
353 }
feb12d3e 354#endif
b0af6f41 355
7a24f3bf 356 if (f->post_change_timer) {
b6cdfbe5
ZJS
357 if (sd_event_source_get_enabled(f->post_change_timer, NULL) > 0)
358 journal_file_post_change(f);
7a24f3bf 359
e167d7fd 360 (void) sd_event_source_set_enabled(f->post_change_timer, SD_EVENT_OFF);
7a24f3bf
VC
361 sd_event_source_unref(f->post_change_timer);
362 }
363
ac2e41f5 364 journal_file_set_offline(f, true);
cec736d2 365
be7cdd8e
VC
366 if (f->mmap && f->cache_fd)
367 mmap_cache_free_fd(f->mmap, f->cache_fd);
cec736d2 368
11689d2a
LP
369 if (f->fd >= 0 && f->defrag_on_close) {
370
371 /* Be friendly to btrfs: turn COW back on again now,
372 * and defragment the file. We won't write to the file
373 * ever again, hence remove all fragmentation, and
374 * reenable all the good bits COW usually provides
375 * (such as data checksumming). */
376
db9a4254 377 (void) chattr_fd(f->fd, 0, FS_NOCOW_FL, NULL);
11689d2a
LP
378 (void) btrfs_defrag_fd(f->fd);
379 }
f27a3864 380
5d1ce257
LP
381 if (f->close_fd)
382 safe_close(f->fd);
cec736d2 383 free(f->path);
807e17f0 384
f649045c 385 mmap_cache_unref(f->mmap);
16e9f408 386
4743015d 387 ordered_hashmap_free_free(f->chain_cache);
a4bcff5b 388
349cc4a5 389#if HAVE_XZ || HAVE_LZ4
807e17f0
LP
390 free(f->compress_buffer);
391#endif
392
349cc4a5 393#if HAVE_GCRYPT
baed47c3
LP
394 if (f->fss_file)
395 munmap(f->fss_file, PAGE_ALIGN(f->fss_file_size));
dc4ebc07 396 else
b7c9ae91
LP
397 free(f->fsprg_state);
398
399 free(f->fsprg_seed);
7560fffc
LP
400
401 if (f->hmac)
402 gcry_md_close(f->hmac);
403#endif
404
6b430fdb 405 return mfree(f);
cec736d2
LP
406}
407
0ac38b70 408static int journal_file_init_header(JournalFile *f, JournalFile *template) {
d89c8fdf 409 Header h = {};
cec736d2
LP
410 ssize_t k;
411 int r;
412
413 assert(f);
414
7560fffc 415 memcpy(h.signature, HEADER_SIGNATURE, 8);
23b0b2b2 416 h.header_size = htole64(ALIGN64(sizeof(h)));
cec736d2 417
d89c8fdf
ZJS
418 h.incompatible_flags |= htole32(
419 f->compress_xz * HEADER_INCOMPATIBLE_COMPRESSED_XZ |
420 f->compress_lz4 * HEADER_INCOMPATIBLE_COMPRESSED_LZ4);
7560fffc 421
d89c8fdf
ZJS
422 h.compatible_flags = htole32(
423 f->seal * HEADER_COMPATIBLE_SEALED);
7560fffc 424
cec736d2
LP
425 r = sd_id128_randomize(&h.file_id);
426 if (r < 0)
427 return r;
428
0ac38b70
LP
429 if (template) {
430 h.seqnum_id = template->header->seqnum_id;
beec0085 431 h.tail_entry_seqnum = template->header->tail_entry_seqnum;
0ac38b70
LP
432 } else
433 h.seqnum_id = h.file_id;
cec736d2
LP
434
435 k = pwrite(f->fd, &h, sizeof(h), 0);
436 if (k < 0)
437 return -errno;
438
439 if (k != sizeof(h))
440 return -EIO;
441
442 return 0;
443}
444
445static int journal_file_refresh_header(JournalFile *f) {
de190aef 446 sd_id128_t boot_id;
fa6ac760 447 int r;
cec736d2
LP
448
449 assert(f);
c88cc6af 450 assert(f->header);
cec736d2
LP
451
452 r = sd_id128_get_machine(&f->header->machine_id);
fd4885df
ZJS
453 if (IN_SET(r, -ENOENT, -ENOMEDIUM))
454 /* We don't have a machine-id, let's continue without */
455 zero(f->header->machine_id);
456 else if (r < 0)
cec736d2
LP
457 return r;
458
de190aef 459 r = sd_id128_get_boot(&boot_id);
cec736d2
LP
460 if (r < 0)
461 return r;
462
de190aef
LP
463 f->header->boot_id = boot_id;
464
fa6ac760 465 r = journal_file_set_online(f);
b788cc23 466
7560fffc 467 /* Sync the online state to disk */
fb426037 468 (void) fsync(f->fd);
b788cc23 469
a0fe2a2d
LP
470 /* We likely just created a new file, also sync the directory this file is located in. */
471 (void) fsync_directory_of_file(f->fd);
472
fa6ac760 473 return r;
cec736d2
LP
474}
475
4214009f
ZJS
476static bool warn_wrong_flags(const JournalFile *f, bool compatible) {
477 const uint32_t any = compatible ? HEADER_COMPATIBLE_ANY : HEADER_INCOMPATIBLE_ANY,
478 supported = compatible ? HEADER_COMPATIBLE_SUPPORTED : HEADER_INCOMPATIBLE_SUPPORTED;
479 const char *type = compatible ? "compatible" : "incompatible";
d89c8fdf
ZJS
480 uint32_t flags;
481
4214009f
ZJS
482 flags = le32toh(compatible ? f->header->compatible_flags : f->header->incompatible_flags);
483
484 if (flags & ~supported) {
485 if (flags & ~any)
4761fd0f 486 log_debug("Journal file %s has unknown %s flags 0x%"PRIx32,
4214009f
ZJS
487 f->path, type, flags & ~any);
488 flags = (flags & any) & ~supported;
4761fd0f
ZJS
489 if (flags) {
490 const char* strv[3];
491 unsigned n = 0;
492 _cleanup_free_ char *t = NULL;
493
494 if (compatible && (flags & HEADER_COMPATIBLE_SEALED))
495 strv[n++] = "sealed";
496 if (!compatible && (flags & HEADER_INCOMPATIBLE_COMPRESSED_XZ))
497 strv[n++] = "xz-compressed";
498 if (!compatible && (flags & HEADER_INCOMPATIBLE_COMPRESSED_LZ4))
499 strv[n++] = "lz4-compressed";
500 strv[n] = NULL;
501 assert(n < ELEMENTSOF(strv));
502
503 t = strv_join((char**) strv, ", ");
504 log_debug("Journal file %s uses %s %s %s disabled at compilation time.",
505 f->path, type, n > 1 ? "flags" : "flag", strnull(t));
506 }
4214009f
ZJS
507 return true;
508 }
509
510 return false;
511}
512
513static int journal_file_verify_header(JournalFile *f) {
6f94e420
TS
514 uint64_t arena_size, header_size;
515
cec736d2 516 assert(f);
c88cc6af 517 assert(f->header);
cec736d2 518
7560fffc 519 if (memcmp(f->header->signature, HEADER_SIGNATURE, 8))
cec736d2
LP
520 return -EBADMSG;
521
4214009f
ZJS
522 /* In both read and write mode we refuse to open files with incompatible
523 * flags we don't know. */
524 if (warn_wrong_flags(f, false))
cec736d2
LP
525 return -EPROTONOSUPPORT;
526
4214009f
ZJS
527 /* When open for writing we refuse to open files with compatible flags, too. */
528 if (f->writable && warn_wrong_flags(f, true))
d89c8fdf 529 return -EPROTONOSUPPORT;
7560fffc 530
db11ac1a
LP
531 if (f->header->state >= _STATE_MAX)
532 return -EBADMSG;
533
6f94e420
TS
534 header_size = le64toh(f->header->header_size);
535
dca6219e 536 /* The first addition was n_data, so check that we are at least this large */
6f94e420 537 if (header_size < HEADER_SIZE_MIN)
23b0b2b2
LP
538 return -EBADMSG;
539
8088cbd3 540 if (JOURNAL_HEADER_SEALED(f->header) && !JOURNAL_HEADER_CONTAINS(f->header, n_entry_arrays))
beec0085
LP
541 return -EBADMSG;
542
6f94e420
TS
543 arena_size = le64toh(f->header->arena_size);
544
545 if (UINT64_MAX - header_size < arena_size || header_size + arena_size > (uint64_t) f->last_stat.st_size)
db11ac1a
LP
546 return -ENODATA;
547
6f94e420 548 if (le64toh(f->header->tail_object_offset) > header_size + arena_size)
db11ac1a
LP
549 return -ENODATA;
550
7762e02b
LP
551 if (!VALID64(le64toh(f->header->data_hash_table_offset)) ||
552 !VALID64(le64toh(f->header->field_hash_table_offset)) ||
553 !VALID64(le64toh(f->header->tail_object_offset)) ||
554 !VALID64(le64toh(f->header->entry_array_offset)))
555 return -ENODATA;
556
cec736d2 557 if (f->writable) {
cec736d2 558 sd_id128_t machine_id;
ae739cc1 559 uint8_t state;
cec736d2
LP
560 int r;
561
562 r = sd_id128_get_machine(&machine_id);
563 if (r < 0)
564 return r;
565
566 if (!sd_id128_equal(machine_id, f->header->machine_id))
567 return -EHOSTDOWN;
568
de190aef 569 state = f->header->state;
cec736d2 570
b288cdeb
ZJS
571 if (state == STATE_ARCHIVED)
572 return -ESHUTDOWN; /* Already archived */
baaa35ad
ZJS
573 else if (state == STATE_ONLINE)
574 return log_debug_errno(SYNTHETIC_ERRNO(EBUSY),
575 "Journal file %s is already online. Assuming unclean closing.",
576 f->path);
577 else if (state != STATE_OFFLINE)
578 return log_debug_errno(SYNTHETIC_ERRNO(EBUSY),
579 "Journal file %s has unknown state %i.",
580 f->path, state);
ae739cc1 581
5b3cc0c8
YN
582 if (f->header->field_hash_table_size == 0 || f->header->data_hash_table_size == 0)
583 return -EBADMSG;
584
ae739cc1
LP
585 /* Don't permit appending to files from the future. Because otherwise the realtime timestamps wouldn't
586 * be strictly ordered in the entries in the file anymore, and we can't have that since it breaks
587 * bisection. */
baaa35ad
ZJS
588 if (le64toh(f->header->tail_entry_realtime) > now(CLOCK_REALTIME))
589 return log_debug_errno(SYNTHETIC_ERRNO(ETXTBSY),
590 "Journal file %s is from the future, refusing to append new data to it that'd be older.",
591 f->path);
cec736d2
LP
592 }
593
d89c8fdf
ZJS
594 f->compress_xz = JOURNAL_HEADER_COMPRESSED_XZ(f->header);
595 f->compress_lz4 = JOURNAL_HEADER_COMPRESSED_LZ4(f->header);
c586dbf1 596
f1889c91 597 f->seal = JOURNAL_HEADER_SEALED(f->header);
7560fffc 598
cec736d2
LP
599 return 0;
600}
601
2678031a 602static int journal_file_fstat(JournalFile *f) {
3cc44114
LP
603 int r;
604
2678031a
LP
605 assert(f);
606 assert(f->fd >= 0);
607
608 if (fstat(f->fd, &f->last_stat) < 0)
609 return -errno;
610
611 f->last_stat_usec = now(CLOCK_MONOTONIC);
612
8d6a4d33 613 /* Refuse dealing with with files that aren't regular */
3cc44114
LP
614 r = stat_verify_regular(&f->last_stat);
615 if (r < 0)
616 return r;
8d6a4d33 617
2678031a
LP
618 /* Refuse appending to files that are already deleted */
619 if (f->last_stat.st_nlink <= 0)
620 return -EIDRM;
621
622 return 0;
623}
624
cec736d2 625static int journal_file_allocate(JournalFile *f, uint64_t offset, uint64_t size) {
eda4b58b 626 uint64_t old_size, new_size;
fec2aa2f 627 int r;
cec736d2
LP
628
629 assert(f);
c88cc6af 630 assert(f->header);
cec736d2 631
cec736d2 632 /* We assume that this file is not sparse, and we know that
38ac38b2 633 * for sure, since we always call posix_fallocate()
cec736d2
LP
634 * ourselves */
635
be7cdd8e 636 if (mmap_cache_got_sigbus(f->mmap, f->cache_fd))
fa6ac760
LP
637 return -EIO;
638
cec736d2 639 old_size =
23b0b2b2 640 le64toh(f->header->header_size) +
cec736d2
LP
641 le64toh(f->header->arena_size);
642
bc85bfee 643 new_size = PAGE_ALIGN(offset + size);
23b0b2b2
LP
644 if (new_size < le64toh(f->header->header_size))
645 new_size = le64toh(f->header->header_size);
bc85bfee 646
2678031a
LP
647 if (new_size <= old_size) {
648
649 /* We already pre-allocated enough space, but before
650 * we write to it, let's check with fstat() if the
651 * file got deleted, in order make sure we don't throw
652 * away the data immediately. Don't check fstat() for
653 * all writes though, but only once ever 10s. */
654
655 if (f->last_stat_usec + LAST_STAT_REFRESH_USEC > now(CLOCK_MONOTONIC))
656 return 0;
657
658 return journal_file_fstat(f);
659 }
660
661 /* Allocate more space. */
cec736d2 662
a676e665 663 if (f->metrics.max_size > 0 && new_size > f->metrics.max_size)
bc85bfee 664 return -E2BIG;
cec736d2 665
a676e665 666 if (new_size > f->metrics.min_size && f->metrics.keep_free > 0) {
cec736d2
LP
667 struct statvfs svfs;
668
669 if (fstatvfs(f->fd, &svfs) >= 0) {
670 uint64_t available;
671
070052ab 672 available = LESS_BY((uint64_t) svfs.f_bfree * (uint64_t) svfs.f_bsize, f->metrics.keep_free);
cec736d2
LP
673
674 if (new_size - old_size > available)
675 return -E2BIG;
676 }
677 }
678
eda4b58b 679 /* Increase by larger blocks at once */
be6b0c21 680 new_size = DIV_ROUND_UP(new_size, FILE_SIZE_INCREASE) * FILE_SIZE_INCREASE;
eda4b58b
LP
681 if (f->metrics.max_size > 0 && new_size > f->metrics.max_size)
682 new_size = f->metrics.max_size;
683
bc85bfee
LP
684 /* Note that the glibc fallocate() fallback is very
685 inefficient, hence we try to minimize the allocation area
686 as we can. */
fec2aa2f
GV
687 r = posix_fallocate(f->fd, old_size, new_size - old_size);
688 if (r != 0)
689 return -r;
cec736d2 690
23b0b2b2 691 f->header->arena_size = htole64(new_size - le64toh(f->header->header_size));
cec736d2 692
2678031a 693 return journal_file_fstat(f);
cec736d2
LP
694}
695
78519831 696static unsigned type_to_context(ObjectType type) {
d3d3208f 697 /* One context for each type, plus one catch-all for the rest */
69adae51 698 assert_cc(_OBJECT_TYPE_MAX <= MMAP_CACHE_MAX_CONTEXTS);
fa6ac760 699 assert_cc(CONTEXT_HEADER < MMAP_CACHE_MAX_CONTEXTS);
d05089d8 700 return type > OBJECT_UNUSED && type < _OBJECT_TYPE_MAX ? type : 0;
d3d3208f
MS
701}
702
b439282e 703static int journal_file_move_to(JournalFile *f, ObjectType type, bool keep_always, uint64_t offset, uint64_t size, void **ret, size_t *ret_size) {
2678031a
LP
704 int r;
705
cec736d2 706 assert(f);
cec736d2
LP
707 assert(ret);
708
7762e02b
LP
709 if (size <= 0)
710 return -EINVAL;
711
2a59ea54 712 /* Avoid SIGBUS on invalid accesses */
4bbdcdb3
LP
713 if (offset + size > (uint64_t) f->last_stat.st_size) {
714 /* Hmm, out of range? Let's refresh the fstat() data
715 * first, before we trust that check. */
716
2678031a
LP
717 r = journal_file_fstat(f);
718 if (r < 0)
719 return r;
720
721 if (offset + size > (uint64_t) f->last_stat.st_size)
4bbdcdb3
LP
722 return -EADDRNOTAVAIL;
723 }
724
b439282e 725 return mmap_cache_get(f->mmap, f->cache_fd, f->prot, type_to_context(type), keep_always, offset, size, &f->last_stat, ret, ret_size);
cec736d2
LP
726}
727
16e9f408
LP
728static uint64_t minimum_header_size(Object *o) {
729
b8e891e6 730 static const uint64_t table[] = {
16e9f408
LP
731 [OBJECT_DATA] = sizeof(DataObject),
732 [OBJECT_FIELD] = sizeof(FieldObject),
733 [OBJECT_ENTRY] = sizeof(EntryObject),
734 [OBJECT_DATA_HASH_TABLE] = sizeof(HashTableObject),
735 [OBJECT_FIELD_HASH_TABLE] = sizeof(HashTableObject),
736 [OBJECT_ENTRY_ARRAY] = sizeof(EntryArrayObject),
737 [OBJECT_TAG] = sizeof(TagObject),
738 };
739
740 if (o->object.type >= ELEMENTSOF(table) || table[o->object.type] <= 0)
741 return sizeof(ObjectHeader);
742
743 return table[o->object.type];
744}
745
24754f36
TR
746/* Lightweight object checks. We want this to be fast, so that we won't
747 * slowdown every journal_file_move_to_object() call too much. */
748static int journal_file_check_object(JournalFile *f, uint64_t offset, Object *o) {
749 assert(f);
750 assert(o);
751
752 switch (o->object.type) {
753
754 case OBJECT_DATA: {
baaa35ad
ZJS
755 if ((le64toh(o->data.entry_offset) == 0) ^ (le64toh(o->data.n_entries) == 0))
756 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
757 "Bad n_entries: %" PRIu64 ": %" PRIu64,
758 le64toh(o->data.n_entries),
759 offset);
760
761 if (le64toh(o->object.size) - offsetof(DataObject, payload) <= 0)
762 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
763 "Bad object size (<= %zu): %" PRIu64 ": %" PRIu64,
764 offsetof(DataObject, payload),
765 le64toh(o->object.size),
766 offset);
24754f36 767
10e8445b
TR
768 if (!VALID64(le64toh(o->data.next_hash_offset)) ||
769 !VALID64(le64toh(o->data.next_field_offset)) ||
770 !VALID64(le64toh(o->data.entry_offset)) ||
baaa35ad
ZJS
771 !VALID64(le64toh(o->data.entry_array_offset)))
772 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
773 "Invalid offset, next_hash_offset=" OFSfmt ", next_field_offset=" OFSfmt ", entry_offset=" OFSfmt ", entry_array_offset=" OFSfmt ": %" PRIu64,
774 le64toh(o->data.next_hash_offset),
775 le64toh(o->data.next_field_offset),
776 le64toh(o->data.entry_offset),
777 le64toh(o->data.entry_array_offset),
778 offset);
24754f36
TR
779
780 break;
781 }
782
783 case OBJECT_FIELD:
baaa35ad
ZJS
784 if (le64toh(o->object.size) - offsetof(FieldObject, payload) <= 0)
785 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
786 "Bad field size (<= %zu): %" PRIu64 ": %" PRIu64,
787 offsetof(FieldObject, payload),
788 le64toh(o->object.size),
789 offset);
24754f36 790
10e8445b 791 if (!VALID64(le64toh(o->field.next_hash_offset)) ||
baaa35ad
ZJS
792 !VALID64(le64toh(o->field.head_data_offset)))
793 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
794 "Invalid offset, next_hash_offset=" OFSfmt ", head_data_offset=" OFSfmt ": %" PRIu64,
795 le64toh(o->field.next_hash_offset),
796 le64toh(o->field.head_data_offset),
797 offset);
24754f36
TR
798 break;
799
800 case OBJECT_ENTRY:
baaa35ad
ZJS
801 if ((le64toh(o->object.size) - offsetof(EntryObject, items)) % sizeof(EntryItem) != 0)
802 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
803 "Bad entry size (<= %zu): %" PRIu64 ": %" PRIu64,
804 offsetof(EntryObject, items),
805 le64toh(o->object.size),
806 offset);
807
808 if ((le64toh(o->object.size) - offsetof(EntryObject, items)) / sizeof(EntryItem) <= 0)
809 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
810 "Invalid number items in entry: %" PRIu64 ": %" PRIu64,
811 (le64toh(o->object.size) - offsetof(EntryObject, items)) / sizeof(EntryItem),
812 offset);
813
814 if (le64toh(o->entry.seqnum) <= 0)
815 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
816 "Invalid entry seqnum: %" PRIx64 ": %" PRIu64,
817 le64toh(o->entry.seqnum),
818 offset);
819
820 if (!VALID_REALTIME(le64toh(o->entry.realtime)))
821 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
822 "Invalid entry realtime timestamp: %" PRIu64 ": %" PRIu64,
823 le64toh(o->entry.realtime),
824 offset);
825
826 if (!VALID_MONOTONIC(le64toh(o->entry.monotonic)))
827 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
828 "Invalid entry monotonic timestamp: %" PRIu64 ": %" PRIu64,
829 le64toh(o->entry.monotonic),
830 offset);
24754f36
TR
831
832 break;
833
834 case OBJECT_DATA_HASH_TABLE:
835 case OBJECT_FIELD_HASH_TABLE:
836 if ((le64toh(o->object.size) - offsetof(HashTableObject, items)) % sizeof(HashItem) != 0 ||
baaa35ad
ZJS
837 (le64toh(o->object.size) - offsetof(HashTableObject, items)) / sizeof(HashItem) <= 0)
838 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
839 "Invalid %s hash table size: %" PRIu64 ": %" PRIu64,
840 o->object.type == OBJECT_DATA_HASH_TABLE ? "data" : "field",
841 le64toh(o->object.size),
842 offset);
24754f36
TR
843
844 break;
845
846 case OBJECT_ENTRY_ARRAY:
847 if ((le64toh(o->object.size) - offsetof(EntryArrayObject, items)) % sizeof(le64_t) != 0 ||
baaa35ad
ZJS
848 (le64toh(o->object.size) - offsetof(EntryArrayObject, items)) / sizeof(le64_t) <= 0)
849 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
850 "Invalid object entry array size: %" PRIu64 ": %" PRIu64,
851 le64toh(o->object.size),
852 offset);
853
854 if (!VALID64(le64toh(o->entry_array.next_entry_array_offset)))
855 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
856 "Invalid object entry array next_entry_array_offset: " OFSfmt ": %" PRIu64,
857 le64toh(o->entry_array.next_entry_array_offset),
858 offset);
24754f36
TR
859
860 break;
861
862 case OBJECT_TAG:
baaa35ad
ZJS
863 if (le64toh(o->object.size) != sizeof(TagObject))
864 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
865 "Invalid object tag size: %" PRIu64 ": %" PRIu64,
866 le64toh(o->object.size),
867 offset);
24754f36 868
baaa35ad
ZJS
869 if (!VALID_EPOCH(le64toh(o->tag.epoch)))
870 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
871 "Invalid object tag epoch: %" PRIu64 ": %" PRIu64,
872 le64toh(o->tag.epoch), offset);
24754f36
TR
873
874 break;
875 }
876
877 return 0;
878}
879
78519831 880int journal_file_move_to_object(JournalFile *f, ObjectType type, uint64_t offset, Object **ret) {
cec736d2
LP
881 int r;
882 void *t;
b439282e 883 size_t tsize;
cec736d2
LP
884 Object *o;
885 uint64_t s;
886
887 assert(f);
888 assert(ret);
889
db11ac1a 890 /* Objects may only be located at multiple of 64 bit */
baaa35ad
ZJS
891 if (!VALID64(offset))
892 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
893 "Attempt to move to object at non-64bit boundary: %" PRIu64,
894 offset);
db11ac1a 895
50809d7a 896 /* Object may not be located in the file header */
baaa35ad
ZJS
897 if (offset < le64toh(f->header->header_size))
898 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
899 "Attempt to move to object located in file header: %" PRIu64,
900 offset);
50809d7a 901
b439282e 902 r = journal_file_move_to(f, type, false, offset, sizeof(ObjectHeader), &t, &tsize);
cec736d2
LP
903 if (r < 0)
904 return r;
905
906 o = (Object*) t;
907 s = le64toh(o->object.size);
908
baaa35ad
ZJS
909 if (s == 0)
910 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
911 "Attempt to move to uninitialized object: %" PRIu64,
912 offset);
913 if (s < sizeof(ObjectHeader))
914 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
915 "Attempt to move to overly short object: %" PRIu64,
916 offset);
917
918 if (o->object.type <= OBJECT_UNUSED)
919 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
920 "Attempt to move to object with invalid type: %" PRIu64,
921 offset);
922
923 if (s < minimum_header_size(o))
924 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
925 "Attempt to move to truncated object: %" PRIu64,
926 offset);
927
928 if (type > OBJECT_UNUSED && o->object.type != type)
929 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
930 "Attempt to move to object of unexpected type: %" PRIu64,
931 offset);
cec736d2 932
b439282e
VC
933 if (s > tsize) {
934 r = journal_file_move_to(f, type, false, offset, s, &t, NULL);
cec736d2
LP
935 if (r < 0)
936 return r;
937
938 o = (Object*) t;
939 }
940
24754f36
TR
941 r = journal_file_check_object(f, offset, o);
942 if (r < 0)
943 return r;
944
cec736d2
LP
945 *ret = o;
946 return 0;
947}
948
d98cc1f2 949static uint64_t journal_file_entry_seqnum(JournalFile *f, uint64_t *seqnum) {
cec736d2
LP
950 uint64_t r;
951
952 assert(f);
c88cc6af 953 assert(f->header);
cec736d2 954
beec0085 955 r = le64toh(f->header->tail_entry_seqnum) + 1;
c2373f84
LP
956
957 if (seqnum) {
de190aef 958 /* If an external seqnum counter was passed, we update
c2373f84
LP
959 * both the local and the external one, and set it to
960 * the maximum of both */
961
962 if (*seqnum + 1 > r)
963 r = *seqnum + 1;
964
965 *seqnum = r;
966 }
967
beec0085 968 f->header->tail_entry_seqnum = htole64(r);
cec736d2 969
beec0085
LP
970 if (f->header->head_entry_seqnum == 0)
971 f->header->head_entry_seqnum = htole64(r);
de190aef 972
cec736d2
LP
973 return r;
974}
975
78519831 976int journal_file_append_object(JournalFile *f, ObjectType type, uint64_t size, Object **ret, uint64_t *offset) {
cec736d2
LP
977 int r;
978 uint64_t p;
979 Object *tail, *o;
980 void *t;
981
982 assert(f);
c88cc6af 983 assert(f->header);
d05089d8 984 assert(type > OBJECT_UNUSED && type < _OBJECT_TYPE_MAX);
cec736d2
LP
985 assert(size >= sizeof(ObjectHeader));
986 assert(offset);
987 assert(ret);
988
26687bf8
OS
989 r = journal_file_set_online(f);
990 if (r < 0)
991 return r;
992
cec736d2 993 p = le64toh(f->header->tail_object_offset);
cec736d2 994 if (p == 0)
23b0b2b2 995 p = le64toh(f->header->header_size);
cec736d2 996 else {
d05089d8 997 r = journal_file_move_to_object(f, OBJECT_UNUSED, p, &tail);
cec736d2
LP
998 if (r < 0)
999 return r;
1000
1001 p += ALIGN64(le64toh(tail->object.size));
1002 }
1003
1004 r = journal_file_allocate(f, p, size);
1005 if (r < 0)
1006 return r;
1007
b439282e 1008 r = journal_file_move_to(f, type, false, p, size, &t, NULL);
cec736d2
LP
1009 if (r < 0)
1010 return r;
1011
1012 o = (Object*) t;
1013
1014 zero(o->object);
de190aef 1015 o->object.type = type;
cec736d2
LP
1016 o->object.size = htole64(size);
1017
1018 f->header->tail_object_offset = htole64(p);
cec736d2
LP
1019 f->header->n_objects = htole64(le64toh(f->header->n_objects) + 1);
1020
1021 *ret = o;
1022 *offset = p;
1023
1024 return 0;
1025}
1026
de190aef 1027static int journal_file_setup_data_hash_table(JournalFile *f) {
cec736d2
LP
1028 uint64_t s, p;
1029 Object *o;
1030 int r;
1031
1032 assert(f);
c88cc6af 1033 assert(f->header);
cec736d2 1034
070052ab
LP
1035 /* We estimate that we need 1 hash table entry per 768 bytes
1036 of journal file and we want to make sure we never get
1037 beyond 75% fill level. Calculate the hash table size for
1038 the maximum file size based on these metrics. */
4a92baf3 1039
dfabe643 1040 s = (f->metrics.max_size * 4 / 768 / 3) * sizeof(HashItem);
4a92baf3
LP
1041 if (s < DEFAULT_DATA_HASH_TABLE_SIZE)
1042 s = DEFAULT_DATA_HASH_TABLE_SIZE;
1043
507f22bd 1044 log_debug("Reserving %"PRIu64" entries in hash table.", s / sizeof(HashItem));
4a92baf3 1045
de190aef
LP
1046 r = journal_file_append_object(f,
1047 OBJECT_DATA_HASH_TABLE,
1048 offsetof(Object, hash_table.items) + s,
1049 &o, &p);
cec736d2
LP
1050 if (r < 0)
1051 return r;
1052
29804cc1 1053 memzero(o->hash_table.items, s);
cec736d2 1054
de190aef
LP
1055 f->header->data_hash_table_offset = htole64(p + offsetof(Object, hash_table.items));
1056 f->header->data_hash_table_size = htole64(s);
cec736d2
LP
1057
1058 return 0;
1059}
1060
de190aef 1061static int journal_file_setup_field_hash_table(JournalFile *f) {
cec736d2
LP
1062 uint64_t s, p;
1063 Object *o;
1064 int r;
1065
1066 assert(f);
c88cc6af 1067 assert(f->header);
cec736d2 1068
3c1668da
LP
1069 /* We use a fixed size hash table for the fields as this
1070 * number should grow very slowly only */
1071
de190aef
LP
1072 s = DEFAULT_FIELD_HASH_TABLE_SIZE;
1073 r = journal_file_append_object(f,
1074 OBJECT_FIELD_HASH_TABLE,
1075 offsetof(Object, hash_table.items) + s,
1076 &o, &p);
cec736d2
LP
1077 if (r < 0)
1078 return r;
1079
29804cc1 1080 memzero(o->hash_table.items, s);
cec736d2 1081
de190aef
LP
1082 f->header->field_hash_table_offset = htole64(p + offsetof(Object, hash_table.items));
1083 f->header->field_hash_table_size = htole64(s);
cec736d2
LP
1084
1085 return 0;
1086}
1087
dade37d4 1088int journal_file_map_data_hash_table(JournalFile *f) {
cec736d2
LP
1089 uint64_t s, p;
1090 void *t;
1091 int r;
1092
1093 assert(f);
c88cc6af 1094 assert(f->header);
cec736d2 1095
dade37d4
LP
1096 if (f->data_hash_table)
1097 return 0;
1098
de190aef
LP
1099 p = le64toh(f->header->data_hash_table_offset);
1100 s = le64toh(f->header->data_hash_table_size);
cec736d2 1101
de190aef 1102 r = journal_file_move_to(f,
16e9f408 1103 OBJECT_DATA_HASH_TABLE,
fcde2389 1104 true,
de190aef 1105 p, s,
b42549ad 1106 &t, NULL);
cec736d2
LP
1107 if (r < 0)
1108 return r;
1109
de190aef 1110 f->data_hash_table = t;
cec736d2
LP
1111 return 0;
1112}
1113
dade37d4 1114int journal_file_map_field_hash_table(JournalFile *f) {
cec736d2
LP
1115 uint64_t s, p;
1116 void *t;
1117 int r;
1118
1119 assert(f);
c88cc6af 1120 assert(f->header);
cec736d2 1121
dade37d4
LP
1122 if (f->field_hash_table)
1123 return 0;
1124
de190aef
LP
1125 p = le64toh(f->header->field_hash_table_offset);
1126 s = le64toh(f->header->field_hash_table_size);
cec736d2 1127
de190aef 1128 r = journal_file_move_to(f,
16e9f408 1129 OBJECT_FIELD_HASH_TABLE,
fcde2389 1130 true,
de190aef 1131 p, s,
b42549ad 1132 &t, NULL);
cec736d2
LP
1133 if (r < 0)
1134 return r;
1135
de190aef 1136 f->field_hash_table = t;
cec736d2
LP
1137 return 0;
1138}
1139
3c1668da
LP
1140static int journal_file_link_field(
1141 JournalFile *f,
1142 Object *o,
1143 uint64_t offset,
1144 uint64_t hash) {
1145
805d1486 1146 uint64_t p, h, m;
3c1668da
LP
1147 int r;
1148
1149 assert(f);
c88cc6af 1150 assert(f->header);
90d222c1 1151 assert(f->field_hash_table);
3c1668da
LP
1152 assert(o);
1153 assert(offset > 0);
1154
1155 if (o->object.type != OBJECT_FIELD)
1156 return -EINVAL;
1157
805d1486
LP
1158 m = le64toh(f->header->field_hash_table_size) / sizeof(HashItem);
1159 if (m <= 0)
1160 return -EBADMSG;
3c1668da 1161
805d1486 1162 /* This might alter the window we are looking at */
3c1668da
LP
1163 o->field.next_hash_offset = o->field.head_data_offset = 0;
1164
805d1486 1165 h = hash % m;
3c1668da
LP
1166 p = le64toh(f->field_hash_table[h].tail_hash_offset);
1167 if (p == 0)
1168 f->field_hash_table[h].head_hash_offset = htole64(offset);
1169 else {
1170 r = journal_file_move_to_object(f, OBJECT_FIELD, p, &o);
1171 if (r < 0)
1172 return r;
1173
1174 o->field.next_hash_offset = htole64(offset);
1175 }
1176
1177 f->field_hash_table[h].tail_hash_offset = htole64(offset);
1178
1179 if (JOURNAL_HEADER_CONTAINS(f->header, n_fields))
1180 f->header->n_fields = htole64(le64toh(f->header->n_fields) + 1);
1181
1182 return 0;
1183}
1184
1185static int journal_file_link_data(
1186 JournalFile *f,
1187 Object *o,
1188 uint64_t offset,
1189 uint64_t hash) {
1190
805d1486 1191 uint64_t p, h, m;
cec736d2
LP
1192 int r;
1193
1194 assert(f);
c88cc6af 1195 assert(f->header);
90d222c1 1196 assert(f->data_hash_table);
cec736d2
LP
1197 assert(o);
1198 assert(offset > 0);
b588975f
LP
1199
1200 if (o->object.type != OBJECT_DATA)
1201 return -EINVAL;
cec736d2 1202
805d1486
LP
1203 m = le64toh(f->header->data_hash_table_size) / sizeof(HashItem);
1204 if (m <= 0)
1205 return -EBADMSG;
48496df6 1206
805d1486 1207 /* This might alter the window we are looking at */
de190aef
LP
1208 o->data.next_hash_offset = o->data.next_field_offset = 0;
1209 o->data.entry_offset = o->data.entry_array_offset = 0;
1210 o->data.n_entries = 0;
cec736d2 1211
805d1486 1212 h = hash % m;
8db4213e 1213 p = le64toh(f->data_hash_table[h].tail_hash_offset);
3c1668da 1214 if (p == 0)
cec736d2 1215 /* Only entry in the hash table is easy */
de190aef 1216 f->data_hash_table[h].head_hash_offset = htole64(offset);
3c1668da 1217 else {
48496df6
LP
1218 /* Move back to the previous data object, to patch in
1219 * pointer */
cec736d2 1220
de190aef 1221 r = journal_file_move_to_object(f, OBJECT_DATA, p, &o);
cec736d2
LP
1222 if (r < 0)
1223 return r;
1224
de190aef 1225 o->data.next_hash_offset = htole64(offset);
cec736d2
LP
1226 }
1227
de190aef 1228 f->data_hash_table[h].tail_hash_offset = htole64(offset);
cec736d2 1229
dca6219e
LP
1230 if (JOURNAL_HEADER_CONTAINS(f->header, n_data))
1231 f->header->n_data = htole64(le64toh(f->header->n_data) + 1);
1232
cec736d2
LP
1233 return 0;
1234}
1235
3c1668da
LP
1236int journal_file_find_field_object_with_hash(
1237 JournalFile *f,
1238 const void *field, uint64_t size, uint64_t hash,
1239 Object **ret, uint64_t *offset) {
1240
805d1486 1241 uint64_t p, osize, h, m;
3c1668da
LP
1242 int r;
1243
1244 assert(f);
c88cc6af 1245 assert(f->header);
3c1668da
LP
1246 assert(field && size > 0);
1247
dade37d4
LP
1248 /* If the field hash table is empty, we can't find anything */
1249 if (le64toh(f->header->field_hash_table_size) <= 0)
1250 return 0;
1251
1252 /* Map the field hash table, if it isn't mapped yet. */
1253 r = journal_file_map_field_hash_table(f);
1254 if (r < 0)
1255 return r;
1256
3c1668da
LP
1257 osize = offsetof(Object, field.payload) + size;
1258
805d1486 1259 m = le64toh(f->header->field_hash_table_size) / sizeof(HashItem);
805d1486 1260 if (m <= 0)
3c1668da
LP
1261 return -EBADMSG;
1262
805d1486 1263 h = hash % m;
3c1668da
LP
1264 p = le64toh(f->field_hash_table[h].head_hash_offset);
1265
1266 while (p > 0) {
1267 Object *o;
1268
1269 r = journal_file_move_to_object(f, OBJECT_FIELD, p, &o);
1270 if (r < 0)
1271 return r;
1272
1273 if (le64toh(o->field.hash) == hash &&
1274 le64toh(o->object.size) == osize &&
1275 memcmp(o->field.payload, field, size) == 0) {
1276
1277 if (ret)
1278 *ret = o;
1279 if (offset)
1280 *offset = p;
1281
1282 return 1;
1283 }
1284
1285 p = le64toh(o->field.next_hash_offset);
1286 }
1287
1288 return 0;
1289}
1290
1291int journal_file_find_field_object(
1292 JournalFile *f,
1293 const void *field, uint64_t size,
1294 Object **ret, uint64_t *offset) {
1295
1296 uint64_t hash;
1297
1298 assert(f);
1299 assert(field && size > 0);
1300
1301 hash = hash64(field, size);
1302
1303 return journal_file_find_field_object_with_hash(f,
1304 field, size, hash,
1305 ret, offset);
1306}
1307
de190aef
LP
1308int journal_file_find_data_object_with_hash(
1309 JournalFile *f,
1310 const void *data, uint64_t size, uint64_t hash,
1311 Object **ret, uint64_t *offset) {
48496df6 1312
805d1486 1313 uint64_t p, osize, h, m;
cec736d2
LP
1314 int r;
1315
1316 assert(f);
c88cc6af 1317 assert(f->header);
cec736d2
LP
1318 assert(data || size == 0);
1319
dade37d4
LP
1320 /* If there's no data hash table, then there's no entry. */
1321 if (le64toh(f->header->data_hash_table_size) <= 0)
1322 return 0;
1323
1324 /* Map the data hash table, if it isn't mapped yet. */
1325 r = journal_file_map_data_hash_table(f);
1326 if (r < 0)
1327 return r;
1328
cec736d2
LP
1329 osize = offsetof(Object, data.payload) + size;
1330
805d1486
LP
1331 m = le64toh(f->header->data_hash_table_size) / sizeof(HashItem);
1332 if (m <= 0)
bc85bfee
LP
1333 return -EBADMSG;
1334
805d1486 1335 h = hash % m;
de190aef 1336 p = le64toh(f->data_hash_table[h].head_hash_offset);
cec736d2 1337
de190aef
LP
1338 while (p > 0) {
1339 Object *o;
cec736d2 1340
de190aef 1341 r = journal_file_move_to_object(f, OBJECT_DATA, p, &o);
cec736d2
LP
1342 if (r < 0)
1343 return r;
1344
807e17f0 1345 if (le64toh(o->data.hash) != hash)
85a131e8 1346 goto next;
807e17f0 1347
d89c8fdf 1348 if (o->object.flags & OBJECT_COMPRESSION_MASK) {
349cc4a5 1349#if HAVE_XZ || HAVE_LZ4
fa1c4b51 1350 uint64_t l;
a7f7d1bd 1351 size_t rsize = 0;
cec736d2 1352
807e17f0
LP
1353 l = le64toh(o->object.size);
1354 if (l <= offsetof(Object, data.payload))
cec736d2
LP
1355 return -EBADMSG;
1356
807e17f0
LP
1357 l -= offsetof(Object, data.payload);
1358
d89c8fdf
ZJS
1359 r = decompress_blob(o->object.flags & OBJECT_COMPRESSION_MASK,
1360 o->data.payload, l, &f->compress_buffer, &f->compress_buffer_size, &rsize, 0);
1361 if (r < 0)
1362 return r;
807e17f0 1363
b785c858 1364 if (rsize == size &&
807e17f0
LP
1365 memcmp(f->compress_buffer, data, size) == 0) {
1366
1367 if (ret)
1368 *ret = o;
1369
1370 if (offset)
1371 *offset = p;
1372
1373 return 1;
1374 }
3b1a55e1
ZJS
1375#else
1376 return -EPROTONOSUPPORT;
1377#endif
807e17f0
LP
1378 } else if (le64toh(o->object.size) == osize &&
1379 memcmp(o->data.payload, data, size) == 0) {
1380
cec736d2
LP
1381 if (ret)
1382 *ret = o;
1383
1384 if (offset)
1385 *offset = p;
1386
de190aef 1387 return 1;
cec736d2
LP
1388 }
1389
85a131e8 1390 next:
cec736d2
LP
1391 p = le64toh(o->data.next_hash_offset);
1392 }
1393
de190aef
LP
1394 return 0;
1395}
1396
1397int journal_file_find_data_object(
1398 JournalFile *f,
1399 const void *data, uint64_t size,
1400 Object **ret, uint64_t *offset) {
1401
1402 uint64_t hash;
1403
1404 assert(f);
1405 assert(data || size == 0);
1406
1407 hash = hash64(data, size);
1408
1409 return journal_file_find_data_object_with_hash(f,
1410 data, size, hash,
1411 ret, offset);
1412}
1413
3c1668da
LP
1414static int journal_file_append_field(
1415 JournalFile *f,
1416 const void *field, uint64_t size,
1417 Object **ret, uint64_t *offset) {
1418
1419 uint64_t hash, p;
1420 uint64_t osize;
1421 Object *o;
1422 int r;
1423
1424 assert(f);
1425 assert(field && size > 0);
1426
1427 hash = hash64(field, size);
1428
1429 r = journal_file_find_field_object_with_hash(f, field, size, hash, &o, &p);
1430 if (r < 0)
1431 return r;
1432 else if (r > 0) {
1433
1434 if (ret)
1435 *ret = o;
1436
1437 if (offset)
1438 *offset = p;
1439
1440 return 0;
1441 }
1442
1443 osize = offsetof(Object, field.payload) + size;
1444 r = journal_file_append_object(f, OBJECT_FIELD, osize, &o, &p);
8c92d4bb
LP
1445 if (r < 0)
1446 return r;
3c1668da
LP
1447
1448 o->field.hash = htole64(hash);
1449 memcpy(o->field.payload, field, size);
1450
1451 r = journal_file_link_field(f, o, p, hash);
1452 if (r < 0)
1453 return r;
1454
1455 /* The linking might have altered the window, so let's
1456 * refresh our pointer */
1457 r = journal_file_move_to_object(f, OBJECT_FIELD, p, &o);
1458 if (r < 0)
1459 return r;
1460
349cc4a5 1461#if HAVE_GCRYPT
3c1668da
LP
1462 r = journal_file_hmac_put_object(f, OBJECT_FIELD, o, p);
1463 if (r < 0)
1464 return r;
1465#endif
1466
1467 if (ret)
1468 *ret = o;
1469
1470 if (offset)
1471 *offset = p;
1472
1473 return 0;
1474}
1475
48496df6
LP
1476static int journal_file_append_data(
1477 JournalFile *f,
1478 const void *data, uint64_t size,
1479 Object **ret, uint64_t *offset) {
1480
de190aef
LP
1481 uint64_t hash, p;
1482 uint64_t osize;
1483 Object *o;
d89c8fdf 1484 int r, compression = 0;
3c1668da 1485 const void *eq;
de190aef
LP
1486
1487 assert(f);
1488 assert(data || size == 0);
1489
1490 hash = hash64(data, size);
1491
1492 r = journal_file_find_data_object_with_hash(f, data, size, hash, &o, &p);
1493 if (r < 0)
1494 return r;
0240c603 1495 if (r > 0) {
de190aef
LP
1496
1497 if (ret)
1498 *ret = o;
1499
1500 if (offset)
1501 *offset = p;
1502
1503 return 0;
1504 }
1505
1506 osize = offsetof(Object, data.payload) + size;
1507 r = journal_file_append_object(f, OBJECT_DATA, osize, &o, &p);
cec736d2
LP
1508 if (r < 0)
1509 return r;
1510
cec736d2 1511 o->data.hash = htole64(hash);
807e17f0 1512
349cc4a5 1513#if HAVE_XZ || HAVE_LZ4
57850536 1514 if (JOURNAL_FILE_COMPRESS(f) && size >= f->compress_threshold_bytes) {
a7f7d1bd 1515 size_t rsize = 0;
807e17f0 1516
5d6f46b6 1517 compression = compress_blob(data, size, o->data.payload, size - 1, &rsize);
807e17f0 1518
d1afbcd2 1519 if (compression >= 0) {
807e17f0 1520 o->object.size = htole64(offsetof(Object, data.payload) + rsize);
d89c8fdf 1521 o->object.flags |= compression;
807e17f0 1522
fa1c4b51 1523 log_debug("Compressed data object %"PRIu64" -> %zu using %s",
d89c8fdf 1524 size, rsize, object_compressed_to_string(compression));
d1afbcd2
LP
1525 } else
1526 /* Compression didn't work, we don't really care why, let's continue without compression */
1527 compression = 0;
807e17f0
LP
1528 }
1529#endif
1530
75f32f04
ZJS
1531 if (compression == 0)
1532 memcpy_safe(o->data.payload, data, size);
cec736d2 1533
de190aef 1534 r = journal_file_link_data(f, o, p, hash);
cec736d2
LP
1535 if (r < 0)
1536 return r;
1537
349cc4a5 1538#if HAVE_GCRYPT
33685a5a
FB
1539 r = journal_file_hmac_put_object(f, OBJECT_DATA, o, p);
1540 if (r < 0)
1541 return r;
1542#endif
1543
48496df6
LP
1544 /* The linking might have altered the window, so let's
1545 * refresh our pointer */
1546 r = journal_file_move_to_object(f, OBJECT_DATA, p, &o);
1547 if (r < 0)
1548 return r;
1549
08c6f819
SL
1550 if (!data)
1551 eq = NULL;
1552 else
1553 eq = memchr(data, '=', size);
3c1668da 1554 if (eq && eq > data) {
748db592 1555 Object *fo = NULL;
3c1668da 1556 uint64_t fp;
3c1668da
LP
1557
1558 /* Create field object ... */
1559 r = journal_file_append_field(f, data, (uint8_t*) eq - (uint8_t*) data, &fo, &fp);
1560 if (r < 0)
1561 return r;
1562
1563 /* ... and link it in. */
1564 o->data.next_field_offset = fo->field.head_data_offset;
1565 fo->field.head_data_offset = le64toh(p);
1566 }
1567
cec736d2
LP
1568 if (ret)
1569 *ret = o;
1570
1571 if (offset)
de190aef 1572 *offset = p;
cec736d2
LP
1573
1574 return 0;
1575}
1576
1577uint64_t journal_file_entry_n_items(Object *o) {
1578 assert(o);
b588975f
LP
1579
1580 if (o->object.type != OBJECT_ENTRY)
1581 return 0;
cec736d2
LP
1582
1583 return (le64toh(o->object.size) - offsetof(Object, entry.items)) / sizeof(EntryItem);
1584}
1585
0284adc6 1586uint64_t journal_file_entry_array_n_items(Object *o) {
de190aef 1587 assert(o);
b588975f
LP
1588
1589 if (o->object.type != OBJECT_ENTRY_ARRAY)
1590 return 0;
de190aef
LP
1591
1592 return (le64toh(o->object.size) - offsetof(Object, entry_array.items)) / sizeof(uint64_t);
1593}
1594
fb9a24b6
LP
1595uint64_t journal_file_hash_table_n_items(Object *o) {
1596 assert(o);
b588975f 1597
ec2ce0c5 1598 if (!IN_SET(o->object.type, OBJECT_DATA_HASH_TABLE, OBJECT_FIELD_HASH_TABLE))
b588975f 1599 return 0;
fb9a24b6
LP
1600
1601 return (le64toh(o->object.size) - offsetof(Object, hash_table.items)) / sizeof(HashItem);
1602}
1603
de190aef 1604static int link_entry_into_array(JournalFile *f,
4fd052ae
FC
1605 le64_t *first,
1606 le64_t *idx,
de190aef 1607 uint64_t p) {
cec736d2 1608 int r;
de190aef
LP
1609 uint64_t n = 0, ap = 0, q, i, a, hidx;
1610 Object *o;
1611
cec736d2 1612 assert(f);
c88cc6af 1613 assert(f->header);
de190aef
LP
1614 assert(first);
1615 assert(idx);
1616 assert(p > 0);
cec736d2 1617
de190aef
LP
1618 a = le64toh(*first);
1619 i = hidx = le64toh(*idx);
1620 while (a > 0) {
1621
1622 r = journal_file_move_to_object(f, OBJECT_ENTRY_ARRAY, a, &o);
1623 if (r < 0)
1624 return r;
cec736d2 1625
de190aef
LP
1626 n = journal_file_entry_array_n_items(o);
1627 if (i < n) {
1628 o->entry_array.items[i] = htole64(p);
1629 *idx = htole64(hidx + 1);
1630 return 0;
1631 }
cec736d2 1632
de190aef
LP
1633 i -= n;
1634 ap = a;
1635 a = le64toh(o->entry_array.next_entry_array_offset);
1636 }
1637
1638 if (hidx > n)
1639 n = (hidx+1) * 2;
1640 else
1641 n = n * 2;
1642
1643 if (n < 4)
1644 n = 4;
1645
1646 r = journal_file_append_object(f, OBJECT_ENTRY_ARRAY,
1647 offsetof(Object, entry_array.items) + n * sizeof(uint64_t),
1648 &o, &q);
cec736d2
LP
1649 if (r < 0)
1650 return r;
1651
349cc4a5 1652#if HAVE_GCRYPT
5996c7c2 1653 r = journal_file_hmac_put_object(f, OBJECT_ENTRY_ARRAY, o, q);
b0af6f41
LP
1654 if (r < 0)
1655 return r;
feb12d3e 1656#endif
b0af6f41 1657
de190aef 1658 o->entry_array.items[i] = htole64(p);
cec736d2 1659
de190aef 1660 if (ap == 0)
7be3aa17 1661 *first = htole64(q);
cec736d2 1662 else {
de190aef 1663 r = journal_file_move_to_object(f, OBJECT_ENTRY_ARRAY, ap, &o);
cec736d2
LP
1664 if (r < 0)
1665 return r;
1666
de190aef
LP
1667 o->entry_array.next_entry_array_offset = htole64(q);
1668 }
cec736d2 1669
2dee23eb
LP
1670 if (JOURNAL_HEADER_CONTAINS(f->header, n_entry_arrays))
1671 f->header->n_entry_arrays = htole64(le64toh(f->header->n_entry_arrays) + 1);
1672
de190aef
LP
1673 *idx = htole64(hidx + 1);
1674
1675 return 0;
1676}
cec736d2 1677
de190aef 1678static int link_entry_into_array_plus_one(JournalFile *f,
4fd052ae
FC
1679 le64_t *extra,
1680 le64_t *first,
1681 le64_t *idx,
de190aef
LP
1682 uint64_t p) {
1683
1684 int r;
1685
1686 assert(f);
1687 assert(extra);
1688 assert(first);
1689 assert(idx);
1690 assert(p > 0);
1691
1692 if (*idx == 0)
1693 *extra = htole64(p);
1694 else {
4fd052ae 1695 le64_t i;
de190aef 1696
7be3aa17 1697 i = htole64(le64toh(*idx) - 1);
de190aef
LP
1698 r = link_entry_into_array(f, first, &i, p);
1699 if (r < 0)
1700 return r;
cec736d2
LP
1701 }
1702
de190aef
LP
1703 *idx = htole64(le64toh(*idx) + 1);
1704 return 0;
1705}
1706
1707static int journal_file_link_entry_item(JournalFile *f, Object *o, uint64_t offset, uint64_t i) {
1708 uint64_t p;
1709 int r;
1710 assert(f);
1711 assert(o);
1712 assert(offset > 0);
1713
1714 p = le64toh(o->entry.items[i].object_offset);
1715 if (p == 0)
1716 return -EINVAL;
1717
1718 r = journal_file_move_to_object(f, OBJECT_DATA, p, &o);
cec736d2
LP
1719 if (r < 0)
1720 return r;
1721
de190aef
LP
1722 return link_entry_into_array_plus_one(f,
1723 &o->data.entry_offset,
1724 &o->data.entry_array_offset,
1725 &o->data.n_entries,
1726 offset);
cec736d2
LP
1727}
1728
1729static int journal_file_link_entry(JournalFile *f, Object *o, uint64_t offset) {
de190aef 1730 uint64_t n, i;
cec736d2
LP
1731 int r;
1732
1733 assert(f);
c88cc6af 1734 assert(f->header);
cec736d2
LP
1735 assert(o);
1736 assert(offset > 0);
b588975f
LP
1737
1738 if (o->object.type != OBJECT_ENTRY)
1739 return -EINVAL;
cec736d2 1740
b788cc23
LP
1741 __sync_synchronize();
1742
cec736d2 1743 /* Link up the entry itself */
de190aef
LP
1744 r = link_entry_into_array(f,
1745 &f->header->entry_array_offset,
1746 &f->header->n_entries,
1747 offset);
1748 if (r < 0)
1749 return r;
cec736d2 1750
507f22bd 1751 /* log_debug("=> %s seqnr=%"PRIu64" n_entries=%"PRIu64, f->path, o->entry.seqnum, f->header->n_entries); */
cec736d2 1752
de190aef 1753 if (f->header->head_entry_realtime == 0)
0ac38b70 1754 f->header->head_entry_realtime = o->entry.realtime;
cec736d2 1755
0ac38b70 1756 f->header->tail_entry_realtime = o->entry.realtime;
de190aef
LP
1757 f->header->tail_entry_monotonic = o->entry.monotonic;
1758
cec736d2
LP
1759 /* Link up the items */
1760 n = journal_file_entry_n_items(o);
1761 for (i = 0; i < n; i++) {
1762 r = journal_file_link_entry_item(f, o, offset, i);
1763 if (r < 0)
1764 return r;
1765 }
1766
cec736d2
LP
1767 return 0;
1768}
1769
1770static int journal_file_append_entry_internal(
1771 JournalFile *f,
1772 const dual_timestamp *ts,
d180c349 1773 const sd_id128_t *boot_id,
cec736d2
LP
1774 uint64_t xor_hash,
1775 const EntryItem items[], unsigned n_items,
de190aef 1776 uint64_t *seqnum,
cec736d2
LP
1777 Object **ret, uint64_t *offset) {
1778 uint64_t np;
1779 uint64_t osize;
1780 Object *o;
1781 int r;
1782
1783 assert(f);
c88cc6af 1784 assert(f->header);
cec736d2 1785 assert(items || n_items == 0);
de190aef 1786 assert(ts);
cec736d2
LP
1787
1788 osize = offsetof(Object, entry.items) + (n_items * sizeof(EntryItem));
1789
de190aef 1790 r = journal_file_append_object(f, OBJECT_ENTRY, osize, &o, &np);
cec736d2
LP
1791 if (r < 0)
1792 return r;
1793
d98cc1f2 1794 o->entry.seqnum = htole64(journal_file_entry_seqnum(f, seqnum));
75f32f04 1795 memcpy_safe(o->entry.items, items, n_items * sizeof(EntryItem));
de190aef
LP
1796 o->entry.realtime = htole64(ts->realtime);
1797 o->entry.monotonic = htole64(ts->monotonic);
cec736d2 1798 o->entry.xor_hash = htole64(xor_hash);
d180c349 1799 o->entry.boot_id = boot_id ? *boot_id : f->header->boot_id;
cec736d2 1800
349cc4a5 1801#if HAVE_GCRYPT
5996c7c2 1802 r = journal_file_hmac_put_object(f, OBJECT_ENTRY, o, np);
b0af6f41
LP
1803 if (r < 0)
1804 return r;
feb12d3e 1805#endif
b0af6f41 1806
cec736d2
LP
1807 r = journal_file_link_entry(f, o, np);
1808 if (r < 0)
1809 return r;
1810
1811 if (ret)
1812 *ret = o;
1813
1814 if (offset)
1815 *offset = np;
1816
1817 return 0;
1818}
1819
cf244689 1820void journal_file_post_change(JournalFile *f) {
50f20cfd
LP
1821 assert(f);
1822
c5236850
DT
1823 if (f->fd < 0)
1824 return;
1825
50f20cfd
LP
1826 /* inotify() does not receive IN_MODIFY events from file
1827 * accesses done via mmap(). After each access we hence
1828 * trigger IN_MODIFY by truncating the journal file to its
1829 * current size which triggers IN_MODIFY. */
1830
bc85bfee
LP
1831 __sync_synchronize();
1832
50f20cfd 1833 if (ftruncate(f->fd, f->last_stat.st_size) < 0)
e167d7fd 1834 log_debug_errno(errno, "Failed to truncate file to its own size: %m");
50f20cfd
LP
1835}
1836
7a24f3bf
VC
1837static int post_change_thunk(sd_event_source *timer, uint64_t usec, void *userdata) {
1838 assert(userdata);
1839
1840 journal_file_post_change(userdata);
1841
1842 return 1;
1843}
1844
1845static void schedule_post_change(JournalFile *f) {
7a24f3bf 1846 uint64_t now;
b6cdfbe5 1847 int r;
7a24f3bf
VC
1848
1849 assert(f);
1850 assert(f->post_change_timer);
1851
b6cdfbe5 1852 r = sd_event_source_get_enabled(f->post_change_timer, NULL);
7a24f3bf 1853 if (r < 0) {
e167d7fd
LP
1854 log_debug_errno(r, "Failed to get ftruncate timer state: %m");
1855 goto fail;
7a24f3bf 1856 }
b6cdfbe5 1857 if (r > 0)
7a24f3bf
VC
1858 return;
1859
ca5d90d4 1860 r = sd_event_now(sd_event_source_get_event(f->post_change_timer), CLOCK_MONOTONIC, &now);
7a24f3bf 1861 if (r < 0) {
e167d7fd
LP
1862 log_debug_errno(r, "Failed to get clock's now for scheduling ftruncate: %m");
1863 goto fail;
7a24f3bf
VC
1864 }
1865
ca5d90d4 1866 r = sd_event_source_set_time(f->post_change_timer, now + f->post_change_timer_period);
7a24f3bf 1867 if (r < 0) {
e167d7fd
LP
1868 log_debug_errno(r, "Failed to set time for scheduling ftruncate: %m");
1869 goto fail;
7a24f3bf
VC
1870 }
1871
ca5d90d4 1872 r = sd_event_source_set_enabled(f->post_change_timer, SD_EVENT_ONESHOT);
7a24f3bf 1873 if (r < 0) {
e167d7fd
LP
1874 log_debug_errno(r, "Failed to enable scheduled ftruncate: %m");
1875 goto fail;
7a24f3bf 1876 }
e167d7fd
LP
1877
1878 return;
1879
1880fail:
1881 /* On failure, let's simply post the change immediately. */
1882 journal_file_post_change(f);
7a24f3bf
VC
1883}
1884
1885/* Enable coalesced change posting in a timer on the provided sd_event instance */
1886int journal_file_enable_post_change_timer(JournalFile *f, sd_event *e, usec_t t) {
1887 _cleanup_(sd_event_source_unrefp) sd_event_source *timer = NULL;
1888 int r;
1889
1890 assert(f);
1891 assert_return(!f->post_change_timer, -EINVAL);
1892 assert(e);
1893 assert(t);
1894
1895 r = sd_event_add_time(e, &timer, CLOCK_MONOTONIC, 0, 0, post_change_thunk, f);
1896 if (r < 0)
1897 return r;
1898
1899 r = sd_event_source_set_enabled(timer, SD_EVENT_OFF);
1900 if (r < 0)
1901 return r;
1902
1cc6c93a 1903 f->post_change_timer = TAKE_PTR(timer);
7a24f3bf
VC
1904 f->post_change_timer_period = t;
1905
1906 return r;
1907}
1908
93bab288
YW
1909static int entry_item_cmp(const EntryItem *a, const EntryItem *b) {
1910 return CMP(le64toh(a->object_offset), le64toh(b->object_offset));
1f2da9ec
LP
1911}
1912
d180c349
ZJS
1913int journal_file_append_entry(
1914 JournalFile *f,
1915 const dual_timestamp *ts,
1916 const sd_id128_t *boot_id,
1917 const struct iovec iovec[], unsigned n_iovec,
1918 uint64_t *seqnum,
1919 Object **ret, uint64_t *offset) {
1920
cec736d2
LP
1921 unsigned i;
1922 EntryItem *items;
1923 int r;
1924 uint64_t xor_hash = 0;
de190aef 1925 struct dual_timestamp _ts;
cec736d2
LP
1926
1927 assert(f);
c88cc6af 1928 assert(f->header);
cec736d2
LP
1929 assert(iovec || n_iovec == 0);
1930
c6273953 1931 if (ts) {
baaa35ad
ZJS
1932 if (!VALID_REALTIME(ts->realtime))
1933 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
1934 "Invalid realtime timestamp %" PRIu64 ", refusing entry.",
1935 ts->realtime);
1936 if (!VALID_MONOTONIC(ts->monotonic))
1937 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
1938 "Invalid monotomic timestamp %" PRIu64 ", refusing entry.",
1939 ts->monotonic);
c6273953 1940 } else {
de190aef
LP
1941 dual_timestamp_get(&_ts);
1942 ts = &_ts;
1943 }
1944
349cc4a5 1945#if HAVE_GCRYPT
7560fffc
LP
1946 r = journal_file_maybe_append_tag(f, ts->realtime);
1947 if (r < 0)
1948 return r;
feb12d3e 1949#endif
7560fffc 1950
64825d3c 1951 /* alloca() can't take 0, hence let's allocate at least one */
cf409d15 1952 items = newa(EntryItem, MAX(1u, n_iovec));
cec736d2
LP
1953
1954 for (i = 0; i < n_iovec; i++) {
1955 uint64_t p;
1956 Object *o;
1957
1958 r = journal_file_append_data(f, iovec[i].iov_base, iovec[i].iov_len, &o, &p);
1959 if (r < 0)
cf244689 1960 return r;
cec736d2
LP
1961
1962 xor_hash ^= le64toh(o->data.hash);
1963 items[i].object_offset = htole64(p);
de7b95cd 1964 items[i].hash = o->data.hash;
cec736d2
LP
1965 }
1966
1f2da9ec
LP
1967 /* Order by the position on disk, in order to improve seek
1968 * times for rotating media. */
93bab288 1969 typesafe_qsort(items, n_iovec, entry_item_cmp);
1f2da9ec 1970
d180c349 1971 r = journal_file_append_entry_internal(f, ts, boot_id, xor_hash, items, n_iovec, seqnum, ret, offset);
cec736d2 1972
fa6ac760
LP
1973 /* If the memory mapping triggered a SIGBUS then we return an
1974 * IO error and ignore the error code passed down to us, since
1975 * it is very likely just an effect of a nullified replacement
1976 * mapping page */
1977
be7cdd8e 1978 if (mmap_cache_got_sigbus(f->mmap, f->cache_fd))
fa6ac760
LP
1979 r = -EIO;
1980
7a24f3bf
VC
1981 if (f->post_change_timer)
1982 schedule_post_change(f);
1983 else
1984 journal_file_post_change(f);
50f20cfd 1985
cec736d2
LP
1986 return r;
1987}
1988
a4bcff5b 1989typedef struct ChainCacheItem {
fb099c8d 1990 uint64_t first; /* the array at the beginning of the chain */
a4bcff5b
LP
1991 uint64_t array; /* the cached array */
1992 uint64_t begin; /* the first item in the cached array */
1993 uint64_t total; /* the total number of items in all arrays before this one in the chain */
f268980d 1994 uint64_t last_index; /* the last index we looked at, to optimize locality when bisecting */
a4bcff5b
LP
1995} ChainCacheItem;
1996
1997static void chain_cache_put(
4743015d 1998 OrderedHashmap *h,
a4bcff5b
LP
1999 ChainCacheItem *ci,
2000 uint64_t first,
2001 uint64_t array,
2002 uint64_t begin,
f268980d
LP
2003 uint64_t total,
2004 uint64_t last_index) {
a4bcff5b
LP
2005
2006 if (!ci) {
34741aa3
LP
2007 /* If the chain item to cache for this chain is the
2008 * first one it's not worth caching anything */
2009 if (array == first)
2010 return;
2011
29433089 2012 if (ordered_hashmap_size(h) >= CHAIN_CACHE_MAX) {
4743015d 2013 ci = ordered_hashmap_steal_first(h);
29433089
LP
2014 assert(ci);
2015 } else {
a4bcff5b
LP
2016 ci = new(ChainCacheItem, 1);
2017 if (!ci)
2018 return;
2019 }
2020
2021 ci->first = first;
2022
4743015d 2023 if (ordered_hashmap_put(h, &ci->first, ci) < 0) {
a4bcff5b
LP
2024 free(ci);
2025 return;
2026 }
2027 } else
2028 assert(ci->first == first);
2029
2030 ci->array = array;
2031 ci->begin = begin;
2032 ci->total = total;
f268980d 2033 ci->last_index = last_index;
a4bcff5b
LP
2034}
2035
f268980d
LP
2036static int generic_array_get(
2037 JournalFile *f,
2038 uint64_t first,
2039 uint64_t i,
2040 Object **ret, uint64_t *offset) {
de190aef 2041
cec736d2 2042 Object *o;
a4bcff5b 2043 uint64_t p = 0, a, t = 0;
cec736d2 2044 int r;
a4bcff5b 2045 ChainCacheItem *ci;
cec736d2
LP
2046
2047 assert(f);
2048
de190aef 2049 a = first;
a4bcff5b
LP
2050
2051 /* Try the chain cache first */
4743015d 2052 ci = ordered_hashmap_get(f->chain_cache, &first);
a4bcff5b
LP
2053 if (ci && i > ci->total) {
2054 a = ci->array;
2055 i -= ci->total;
2056 t = ci->total;
2057 }
2058
de190aef 2059 while (a > 0) {
a4bcff5b 2060 uint64_t k;
cec736d2 2061
de190aef
LP
2062 r = journal_file_move_to_object(f, OBJECT_ENTRY_ARRAY, a, &o);
2063 if (r < 0)
2064 return r;
cec736d2 2065
a4bcff5b
LP
2066 k = journal_file_entry_array_n_items(o);
2067 if (i < k) {
de190aef 2068 p = le64toh(o->entry_array.items[i]);
a4bcff5b 2069 goto found;
cec736d2
LP
2070 }
2071
a4bcff5b
LP
2072 i -= k;
2073 t += k;
de190aef
LP
2074 a = le64toh(o->entry_array.next_entry_array_offset);
2075 }
2076
a4bcff5b
LP
2077 return 0;
2078
2079found:
2080 /* Let's cache this item for the next invocation */
af13a6b0 2081 chain_cache_put(f->chain_cache, ci, first, a, le64toh(o->entry_array.items[0]), t, i);
de190aef
LP
2082
2083 r = journal_file_move_to_object(f, OBJECT_ENTRY, p, &o);
2084 if (r < 0)
2085 return r;
2086
2087 if (ret)
2088 *ret = o;
2089
2090 if (offset)
2091 *offset = p;
2092
2093 return 1;
2094}
2095
f268980d
LP
2096static int generic_array_get_plus_one(
2097 JournalFile *f,
2098 uint64_t extra,
2099 uint64_t first,
2100 uint64_t i,
2101 Object **ret, uint64_t *offset) {
de190aef
LP
2102
2103 Object *o;
2104
2105 assert(f);
2106
2107 if (i == 0) {
2108 int r;
2109
2110 r = journal_file_move_to_object(f, OBJECT_ENTRY, extra, &o);
cec736d2
LP
2111 if (r < 0)
2112 return r;
2113
de190aef
LP
2114 if (ret)
2115 *ret = o;
cec736d2 2116
de190aef
LP
2117 if (offset)
2118 *offset = extra;
cec736d2 2119
de190aef 2120 return 1;
cec736d2
LP
2121 }
2122
de190aef
LP
2123 return generic_array_get(f, first, i-1, ret, offset);
2124}
cec736d2 2125
de190aef
LP
2126enum {
2127 TEST_FOUND,
2128 TEST_LEFT,
2129 TEST_RIGHT
2130};
cec736d2 2131
f268980d
LP
2132static int generic_array_bisect(
2133 JournalFile *f,
2134 uint64_t first,
2135 uint64_t n,
2136 uint64_t needle,
2137 int (*test_object)(JournalFile *f, uint64_t p, uint64_t needle),
2138 direction_t direction,
2139 Object **ret,
2140 uint64_t *offset,
2141 uint64_t *idx) {
2142
2143 uint64_t a, p, t = 0, i = 0, last_p = 0, last_index = (uint64_t) -1;
de190aef
LP
2144 bool subtract_one = false;
2145 Object *o, *array = NULL;
2146 int r;
a4bcff5b 2147 ChainCacheItem *ci;
cec736d2 2148
de190aef
LP
2149 assert(f);
2150 assert(test_object);
cec736d2 2151
a4bcff5b 2152 /* Start with the first array in the chain */
de190aef 2153 a = first;
a4bcff5b 2154
4743015d 2155 ci = ordered_hashmap_get(f->chain_cache, &first);
96d4d024 2156 if (ci && n > ci->total && ci->begin != 0) {
a4bcff5b
LP
2157 /* Ah, we have iterated this bisection array chain
2158 * previously! Let's see if we can skip ahead in the
2159 * chain, as far as the last time. But we can't jump
2160 * backwards in the chain, so let's check that
2161 * first. */
2162
2163 r = test_object(f, ci->begin, needle);
2164 if (r < 0)
2165 return r;
2166
2167 if (r == TEST_LEFT) {
f268980d 2168 /* OK, what we are looking for is right of the
a4bcff5b
LP
2169 * begin of this EntryArray, so let's jump
2170 * straight to previously cached array in the
2171 * chain */
2172
2173 a = ci->array;
2174 n -= ci->total;
2175 t = ci->total;
f268980d 2176 last_index = ci->last_index;
a4bcff5b
LP
2177 }
2178 }
2179
de190aef
LP
2180 while (a > 0) {
2181 uint64_t left, right, k, lp;
2182
2183 r = journal_file_move_to_object(f, OBJECT_ENTRY_ARRAY, a, &array);
cec736d2
LP
2184 if (r < 0)
2185 return r;
2186
de190aef
LP
2187 k = journal_file_entry_array_n_items(array);
2188 right = MIN(k, n);
2189 if (right <= 0)
2190 return 0;
cec736d2 2191
de190aef
LP
2192 i = right - 1;
2193 lp = p = le64toh(array->entry_array.items[i]);
2194 if (p <= 0)
bee6a291
LP
2195 r = -EBADMSG;
2196 else
2197 r = test_object(f, p, needle);
2198 if (r == -EBADMSG) {
2199 log_debug_errno(r, "Encountered invalid entry while bisecting, cutting algorithm short. (1)");
2200 n = i;
2201 continue;
2202 }
de190aef
LP
2203 if (r < 0)
2204 return r;
cec736d2 2205
de190aef
LP
2206 if (r == TEST_FOUND)
2207 r = direction == DIRECTION_DOWN ? TEST_RIGHT : TEST_LEFT;
2208
2209 if (r == TEST_RIGHT) {
2210 left = 0;
2211 right -= 1;
f268980d
LP
2212
2213 if (last_index != (uint64_t) -1) {
2214 assert(last_index <= right);
2215
2216 /* If we cached the last index we
2217 * looked at, let's try to not to jump
2218 * too wildly around and see if we can
2219 * limit the range to look at early to
2220 * the immediate neighbors of the last
2221 * index we looked at. */
2222
2223 if (last_index > 0) {
2224 uint64_t x = last_index - 1;
2225
2226 p = le64toh(array->entry_array.items[x]);
2227 if (p <= 0)
2228 return -EBADMSG;
2229
2230 r = test_object(f, p, needle);
2231 if (r < 0)
2232 return r;
2233
2234 if (r == TEST_FOUND)
2235 r = direction == DIRECTION_DOWN ? TEST_RIGHT : TEST_LEFT;
2236
2237 if (r == TEST_RIGHT)
2238 right = x;
2239 else
2240 left = x + 1;
2241 }
2242
2243 if (last_index < right) {
2244 uint64_t y = last_index + 1;
2245
2246 p = le64toh(array->entry_array.items[y]);
2247 if (p <= 0)
2248 return -EBADMSG;
2249
2250 r = test_object(f, p, needle);
2251 if (r < 0)
2252 return r;
2253
2254 if (r == TEST_FOUND)
2255 r = direction == DIRECTION_DOWN ? TEST_RIGHT : TEST_LEFT;
2256
2257 if (r == TEST_RIGHT)
2258 right = y;
2259 else
2260 left = y + 1;
2261 }
f268980d
LP
2262 }
2263
de190aef
LP
2264 for (;;) {
2265 if (left == right) {
2266 if (direction == DIRECTION_UP)
2267 subtract_one = true;
2268
2269 i = left;
2270 goto found;
2271 }
2272
2273 assert(left < right);
de190aef 2274 i = (left + right) / 2;
f268980d 2275
de190aef
LP
2276 p = le64toh(array->entry_array.items[i]);
2277 if (p <= 0)
bee6a291
LP
2278 r = -EBADMSG;
2279 else
2280 r = test_object(f, p, needle);
2281 if (r == -EBADMSG) {
2282 log_debug_errno(r, "Encountered invalid entry while bisecting, cutting algorithm short. (2)");
2283 right = n = i;
2284 continue;
2285 }
de190aef
LP
2286 if (r < 0)
2287 return r;
cec736d2 2288
de190aef
LP
2289 if (r == TEST_FOUND)
2290 r = direction == DIRECTION_DOWN ? TEST_RIGHT : TEST_LEFT;
2291
2292 if (r == TEST_RIGHT)
2293 right = i;
2294 else
2295 left = i + 1;
2296 }
2297 }
2298
2173cbf8 2299 if (k >= n) {
cbdca852
LP
2300 if (direction == DIRECTION_UP) {
2301 i = n;
2302 subtract_one = true;
2303 goto found;
2304 }
2305
cec736d2 2306 return 0;
cbdca852 2307 }
cec736d2 2308
de190aef
LP
2309 last_p = lp;
2310
2311 n -= k;
2312 t += k;
f268980d 2313 last_index = (uint64_t) -1;
de190aef 2314 a = le64toh(array->entry_array.next_entry_array_offset);
cec736d2
LP
2315 }
2316
2317 return 0;
de190aef
LP
2318
2319found:
2320 if (subtract_one && t == 0 && i == 0)
2321 return 0;
2322
a4bcff5b 2323 /* Let's cache this item for the next invocation */
af13a6b0 2324 chain_cache_put(f->chain_cache, ci, first, a, le64toh(array->entry_array.items[0]), t, subtract_one ? (i > 0 ? i-1 : (uint64_t) -1) : i);
a4bcff5b 2325
de190aef
LP
2326 if (subtract_one && i == 0)
2327 p = last_p;
2328 else if (subtract_one)
2329 p = le64toh(array->entry_array.items[i-1]);
2330 else
2331 p = le64toh(array->entry_array.items[i]);
2332
2333 r = journal_file_move_to_object(f, OBJECT_ENTRY, p, &o);
2334 if (r < 0)
2335 return r;
2336
2337 if (ret)
2338 *ret = o;
2339
2340 if (offset)
2341 *offset = p;
2342
2343 if (idx)
cbdca852 2344 *idx = t + i + (subtract_one ? -1 : 0);
de190aef
LP
2345
2346 return 1;
cec736d2
LP
2347}
2348
f268980d
LP
2349static int generic_array_bisect_plus_one(
2350 JournalFile *f,
2351 uint64_t extra,
2352 uint64_t first,
2353 uint64_t n,
2354 uint64_t needle,
2355 int (*test_object)(JournalFile *f, uint64_t p, uint64_t needle),
2356 direction_t direction,
2357 Object **ret,
2358 uint64_t *offset,
2359 uint64_t *idx) {
de190aef 2360
cec736d2 2361 int r;
cbdca852
LP
2362 bool step_back = false;
2363 Object *o;
cec736d2
LP
2364
2365 assert(f);
de190aef 2366 assert(test_object);
cec736d2 2367
de190aef
LP
2368 if (n <= 0)
2369 return 0;
cec736d2 2370
de190aef
LP
2371 /* This bisects the array in object 'first', but first checks
2372 * an extra */
de190aef
LP
2373 r = test_object(f, extra, needle);
2374 if (r < 0)
2375 return r;
a536e261
LP
2376
2377 if (r == TEST_FOUND)
2378 r = direction == DIRECTION_DOWN ? TEST_RIGHT : TEST_LEFT;
2379
cbdca852
LP
2380 /* if we are looking with DIRECTION_UP then we need to first
2381 see if in the actual array there is a matching entry, and
2382 return the last one of that. But if there isn't any we need
2383 to return this one. Hence remember this, and return it
2384 below. */
2385 if (r == TEST_LEFT)
2386 step_back = direction == DIRECTION_UP;
de190aef 2387
cbdca852
LP
2388 if (r == TEST_RIGHT) {
2389 if (direction == DIRECTION_DOWN)
2390 goto found;
2391 else
2392 return 0;
a536e261 2393 }
cec736d2 2394
de190aef
LP
2395 r = generic_array_bisect(f, first, n-1, needle, test_object, direction, ret, offset, idx);
2396
cbdca852
LP
2397 if (r == 0 && step_back)
2398 goto found;
2399
ecf68b1d 2400 if (r > 0 && idx)
313cefa1 2401 (*idx)++;
de190aef
LP
2402
2403 return r;
cbdca852
LP
2404
2405found:
2406 r = journal_file_move_to_object(f, OBJECT_ENTRY, extra, &o);
2407 if (r < 0)
2408 return r;
2409
2410 if (ret)
2411 *ret = o;
2412
2413 if (offset)
2414 *offset = extra;
2415
2416 if (idx)
2417 *idx = 0;
2418
2419 return 1;
2420}
2421
44a6b1b6 2422_pure_ static int test_object_offset(JournalFile *f, uint64_t p, uint64_t needle) {
cbdca852
LP
2423 assert(f);
2424 assert(p > 0);
2425
2426 if (p == needle)
2427 return TEST_FOUND;
2428 else if (p < needle)
2429 return TEST_LEFT;
2430 else
2431 return TEST_RIGHT;
2432}
2433
de190aef
LP
2434static int test_object_seqnum(JournalFile *f, uint64_t p, uint64_t needle) {
2435 Object *o;
2436 int r;
2437
2438 assert(f);
2439 assert(p > 0);
2440
2441 r = journal_file_move_to_object(f, OBJECT_ENTRY, p, &o);
cec736d2
LP
2442 if (r < 0)
2443 return r;
2444
de190aef
LP
2445 if (le64toh(o->entry.seqnum) == needle)
2446 return TEST_FOUND;
2447 else if (le64toh(o->entry.seqnum) < needle)
2448 return TEST_LEFT;
2449 else
2450 return TEST_RIGHT;
2451}
cec736d2 2452
de190aef
LP
2453int journal_file_move_to_entry_by_seqnum(
2454 JournalFile *f,
2455 uint64_t seqnum,
2456 direction_t direction,
2457 Object **ret,
2458 uint64_t *offset) {
c88cc6af
VC
2459 assert(f);
2460 assert(f->header);
de190aef
LP
2461
2462 return generic_array_bisect(f,
2463 le64toh(f->header->entry_array_offset),
2464 le64toh(f->header->n_entries),
2465 seqnum,
2466 test_object_seqnum,
2467 direction,
2468 ret, offset, NULL);
2469}
cec736d2 2470
de190aef
LP
2471static int test_object_realtime(JournalFile *f, uint64_t p, uint64_t needle) {
2472 Object *o;
2473 int r;
2474
2475 assert(f);
2476 assert(p > 0);
2477
2478 r = journal_file_move_to_object(f, OBJECT_ENTRY, p, &o);
2479 if (r < 0)
2480 return r;
2481
2482 if (le64toh(o->entry.realtime) == needle)
2483 return TEST_FOUND;
2484 else if (le64toh(o->entry.realtime) < needle)
2485 return TEST_LEFT;
2486 else
2487 return TEST_RIGHT;
cec736d2
LP
2488}
2489
de190aef
LP
2490int journal_file_move_to_entry_by_realtime(
2491 JournalFile *f,
2492 uint64_t realtime,
2493 direction_t direction,
2494 Object **ret,
2495 uint64_t *offset) {
c88cc6af
VC
2496 assert(f);
2497 assert(f->header);
de190aef
LP
2498
2499 return generic_array_bisect(f,
2500 le64toh(f->header->entry_array_offset),
2501 le64toh(f->header->n_entries),
2502 realtime,
2503 test_object_realtime,
2504 direction,
2505 ret, offset, NULL);
2506}
2507
2508static int test_object_monotonic(JournalFile *f, uint64_t p, uint64_t needle) {
2509 Object *o;
2510 int r;
2511
2512 assert(f);
2513 assert(p > 0);
2514
2515 r = journal_file_move_to_object(f, OBJECT_ENTRY, p, &o);
2516 if (r < 0)
2517 return r;
2518
2519 if (le64toh(o->entry.monotonic) == needle)
2520 return TEST_FOUND;
2521 else if (le64toh(o->entry.monotonic) < needle)
2522 return TEST_LEFT;
2523 else
2524 return TEST_RIGHT;
2525}
2526
2a560338 2527static int find_data_object_by_boot_id(
47838ab3
ZJS
2528 JournalFile *f,
2529 sd_id128_t boot_id,
2530 Object **o,
2531 uint64_t *b) {
2a560338 2532
fbd0b64f 2533 char t[STRLEN("_BOOT_ID=") + 32 + 1] = "_BOOT_ID=";
47838ab3
ZJS
2534
2535 sd_id128_to_string(boot_id, t + 9);
2536 return journal_file_find_data_object(f, t, sizeof(t) - 1, o, b);
2537}
2538
de190aef
LP
2539int journal_file_move_to_entry_by_monotonic(
2540 JournalFile *f,
2541 sd_id128_t boot_id,
2542 uint64_t monotonic,
2543 direction_t direction,
2544 Object **ret,
2545 uint64_t *offset) {
2546
de190aef
LP
2547 Object *o;
2548 int r;
2549
cbdca852 2550 assert(f);
de190aef 2551
47838ab3 2552 r = find_data_object_by_boot_id(f, boot_id, &o, NULL);
de190aef
LP
2553 if (r < 0)
2554 return r;
cbdca852 2555 if (r == 0)
de190aef
LP
2556 return -ENOENT;
2557
2558 return generic_array_bisect_plus_one(f,
2559 le64toh(o->data.entry_offset),
2560 le64toh(o->data.entry_array_offset),
2561 le64toh(o->data.n_entries),
2562 monotonic,
2563 test_object_monotonic,
2564 direction,
2565 ret, offset, NULL);
2566}
2567
1fc605b0 2568void journal_file_reset_location(JournalFile *f) {
6573ef05 2569 f->location_type = LOCATION_HEAD;
1fc605b0 2570 f->current_offset = 0;
6573ef05
MS
2571 f->current_seqnum = 0;
2572 f->current_realtime = 0;
2573 f->current_monotonic = 0;
2574 zero(f->current_boot_id);
2575 f->current_xor_hash = 0;
2576}
2577
950c07d4 2578void journal_file_save_location(JournalFile *f, Object *o, uint64_t offset) {
6573ef05
MS
2579 f->location_type = LOCATION_SEEK;
2580 f->current_offset = offset;
2581 f->current_seqnum = le64toh(o->entry.seqnum);
2582 f->current_realtime = le64toh(o->entry.realtime);
2583 f->current_monotonic = le64toh(o->entry.monotonic);
2584 f->current_boot_id = o->entry.boot_id;
2585 f->current_xor_hash = le64toh(o->entry.xor_hash);
1fc605b0
MS
2586}
2587
d8ae66d7 2588int journal_file_compare_locations(JournalFile *af, JournalFile *bf) {
90c88092
YW
2589 int r;
2590
d8ae66d7 2591 assert(af);
c88cc6af 2592 assert(af->header);
d8ae66d7 2593 assert(bf);
c88cc6af 2594 assert(bf->header);
d8ae66d7
MS
2595 assert(af->location_type == LOCATION_SEEK);
2596 assert(bf->location_type == LOCATION_SEEK);
2597
2598 /* If contents and timestamps match, these entries are
2599 * identical, even if the seqnum does not match */
2600 if (sd_id128_equal(af->current_boot_id, bf->current_boot_id) &&
2601 af->current_monotonic == bf->current_monotonic &&
2602 af->current_realtime == bf->current_realtime &&
2603 af->current_xor_hash == bf->current_xor_hash)
2604 return 0;
2605
2606 if (sd_id128_equal(af->header->seqnum_id, bf->header->seqnum_id)) {
2607
2608 /* If this is from the same seqnum source, compare
2609 * seqnums */
90c88092
YW
2610 r = CMP(af->current_seqnum, bf->current_seqnum);
2611 if (r != 0)
2612 return r;
d8ae66d7
MS
2613
2614 /* Wow! This is weird, different data but the same
2615 * seqnums? Something is borked, but let's make the
2616 * best of it and compare by time. */
2617 }
2618
2619 if (sd_id128_equal(af->current_boot_id, bf->current_boot_id)) {
2620
2621 /* If the boot id matches, compare monotonic time */
90c88092
YW
2622 r = CMP(af->current_monotonic, bf->current_monotonic);
2623 if (r != 0)
2624 return r;
d8ae66d7
MS
2625 }
2626
2627 /* Otherwise, compare UTC time */
90c88092
YW
2628 r = CMP(af->current_realtime, bf->current_realtime);
2629 if (r != 0)
2630 return r;
d8ae66d7
MS
2631
2632 /* Finally, compare by contents */
6dd91b36 2633 return CMP(af->current_xor_hash, bf->current_xor_hash);
d8ae66d7
MS
2634}
2635
aa598ba5
LP
2636static int bump_array_index(uint64_t *i, direction_t direction, uint64_t n) {
2637
2638 /* Increase or decrease the specified index, in the right direction. */
2639
2640 if (direction == DIRECTION_DOWN) {
2641 if (*i >= n - 1)
2642 return 0;
2643
2644 (*i) ++;
2645 } else {
2646 if (*i <= 0)
2647 return 0;
2648
2649 (*i) --;
2650 }
2651
2652 return 1;
2653}
2654
b6da4ed0
LP
2655static bool check_properly_ordered(uint64_t new_offset, uint64_t old_offset, direction_t direction) {
2656
2657 /* Consider it an error if any of the two offsets is uninitialized */
2658 if (old_offset == 0 || new_offset == 0)
2659 return false;
2660
2661 /* If we go down, the new offset must be larger than the old one. */
2662 return direction == DIRECTION_DOWN ?
2663 new_offset > old_offset :
2664 new_offset < old_offset;
2665}
2666
de190aef
LP
2667int journal_file_next_entry(
2668 JournalFile *f,
f534928a 2669 uint64_t p,
de190aef
LP
2670 direction_t direction,
2671 Object **ret, uint64_t *offset) {
2672
fb099c8d 2673 uint64_t i, n, ofs;
cec736d2
LP
2674 int r;
2675
2676 assert(f);
c88cc6af 2677 assert(f->header);
de190aef
LP
2678
2679 n = le64toh(f->header->n_entries);
2680 if (n <= 0)
2681 return 0;
cec736d2 2682
f534928a 2683 if (p == 0)
de190aef 2684 i = direction == DIRECTION_DOWN ? 0 : n - 1;
cec736d2 2685 else {
de190aef
LP
2686 r = generic_array_bisect(f,
2687 le64toh(f->header->entry_array_offset),
2688 le64toh(f->header->n_entries),
2689 p,
2690 test_object_offset,
2691 DIRECTION_DOWN,
2692 NULL, NULL,
2693 &i);
2694 if (r <= 0)
2695 return r;
2696
aa598ba5
LP
2697 r = bump_array_index(&i, direction, n);
2698 if (r <= 0)
2699 return r;
cec736d2
LP
2700 }
2701
de190aef 2702 /* And jump to it */
989793d3
LP
2703 for (;;) {
2704 r = generic_array_get(f,
2705 le64toh(f->header->entry_array_offset),
2706 i,
2707 ret, &ofs);
2708 if (r > 0)
2709 break;
2710 if (r != -EBADMSG)
2711 return r;
2712
2713 /* OK, so this entry is borked. Most likely some entry didn't get synced to disk properly, let's see if
2714 * the next one might work for us instead. */
2715 log_debug_errno(r, "Entry item %" PRIu64 " is bad, skipping over it.", i);
2716
2717 r = bump_array_index(&i, direction, n);
2718 if (r <= 0)
2719 return r;
caeab8f6 2720 }
fb099c8d 2721
b6da4ed0 2722 /* Ensure our array is properly ordered. */
baaa35ad
ZJS
2723 if (p > 0 && !check_properly_ordered(ofs, p, direction))
2724 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
2725 "%s: entry array not properly ordered at entry %" PRIu64,
2726 f->path, i);
fb099c8d
ZJS
2727
2728 if (offset)
2729 *offset = ofs;
2730
2731 return 1;
de190aef 2732}
cec736d2 2733
de190aef
LP
2734int journal_file_next_entry_for_data(
2735 JournalFile *f,
2736 Object *o, uint64_t p,
2737 uint64_t data_offset,
2738 direction_t direction,
2739 Object **ret, uint64_t *offset) {
2740
ded5034e 2741 uint64_t i, n, ofs;
de190aef 2742 Object *d;
989793d3 2743 int r;
cec736d2
LP
2744
2745 assert(f);
de190aef 2746 assert(p > 0 || !o);
cec736d2 2747
de190aef 2748 r = journal_file_move_to_object(f, OBJECT_DATA, data_offset, &d);
466ccd92 2749 if (r < 0)
de190aef 2750 return r;
cec736d2 2751
de190aef
LP
2752 n = le64toh(d->data.n_entries);
2753 if (n <= 0)
2754 return n;
cec736d2 2755
de190aef
LP
2756 if (!o)
2757 i = direction == DIRECTION_DOWN ? 0 : n - 1;
2758 else {
2759 if (o->object.type != OBJECT_ENTRY)
2760 return -EINVAL;
cec736d2 2761
de190aef
LP
2762 r = generic_array_bisect_plus_one(f,
2763 le64toh(d->data.entry_offset),
2764 le64toh(d->data.entry_array_offset),
2765 le64toh(d->data.n_entries),
2766 p,
2767 test_object_offset,
2768 DIRECTION_DOWN,
2769 NULL, NULL,
2770 &i);
2771
2772 if (r <= 0)
cec736d2
LP
2773 return r;
2774
aa598ba5
LP
2775 r = bump_array_index(&i, direction, n);
2776 if (r <= 0)
2777 return r;
de190aef 2778 }
cec736d2 2779
989793d3
LP
2780 for (;;) {
2781 r = generic_array_get_plus_one(f,
2782 le64toh(d->data.entry_offset),
2783 le64toh(d->data.entry_array_offset),
2784 i,
2785 ret, &ofs);
2786 if (r > 0)
2787 break;
2788 if (r != -EBADMSG)
2789 return r;
2790
2791 log_debug_errno(r, "Data entry item %" PRIu64 " is bad, skipping over it.", i);
2792
2793 r = bump_array_index(&i, direction, n);
2794 if (r <= 0)
2795 return r;
2796 }
ded5034e
LP
2797
2798 /* Ensure our array is properly ordered. */
baaa35ad
ZJS
2799 if (p > 0 && check_properly_ordered(ofs, p, direction))
2800 return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG),
2801 "%s data entry array not properly ordered at entry %" PRIu64,
2802 f->path, i);
ded5034e
LP
2803
2804 if (offset)
2805 *offset = ofs;
2806
2807 return 1;
de190aef 2808}
cec736d2 2809
cbdca852
LP
2810int journal_file_move_to_entry_by_offset_for_data(
2811 JournalFile *f,
2812 uint64_t data_offset,
2813 uint64_t p,
2814 direction_t direction,
2815 Object **ret, uint64_t *offset) {
2816
2817 int r;
2818 Object *d;
2819
2820 assert(f);
2821
2822 r = journal_file_move_to_object(f, OBJECT_DATA, data_offset, &d);
2823 if (r < 0)
2824 return r;
2825
2826 return generic_array_bisect_plus_one(f,
2827 le64toh(d->data.entry_offset),
2828 le64toh(d->data.entry_array_offset),
2829 le64toh(d->data.n_entries),
2830 p,
2831 test_object_offset,
2832 direction,
2833 ret, offset, NULL);
2834}
2835
2836int journal_file_move_to_entry_by_monotonic_for_data(
2837 JournalFile *f,
2838 uint64_t data_offset,
2839 sd_id128_t boot_id,
2840 uint64_t monotonic,
2841 direction_t direction,
2842 Object **ret, uint64_t *offset) {
2843
cbdca852
LP
2844 Object *o, *d;
2845 int r;
2846 uint64_t b, z;
2847
2848 assert(f);
2849
2850 /* First, seek by time */
47838ab3 2851 r = find_data_object_by_boot_id(f, boot_id, &o, &b);
cbdca852
LP
2852 if (r < 0)
2853 return r;
2854 if (r == 0)
2855 return -ENOENT;
2856
2857 r = generic_array_bisect_plus_one(f,
2858 le64toh(o->data.entry_offset),
2859 le64toh(o->data.entry_array_offset),
2860 le64toh(o->data.n_entries),
2861 monotonic,
2862 test_object_monotonic,
2863 direction,
2864 NULL, &z, NULL);
2865 if (r <= 0)
2866 return r;
2867
2868 /* And now, continue seeking until we find an entry that
2869 * exists in both bisection arrays */
2870
2871 for (;;) {
2872 Object *qo;
2873 uint64_t p, q;
2874
2875 r = journal_file_move_to_object(f, OBJECT_DATA, data_offset, &d);
2876 if (r < 0)
2877 return r;
2878
2879 r = generic_array_bisect_plus_one(f,
2880 le64toh(d->data.entry_offset),
2881 le64toh(d->data.entry_array_offset),
2882 le64toh(d->data.n_entries),
2883 z,
2884 test_object_offset,
2885 direction,
2886 NULL, &p, NULL);
2887 if (r <= 0)
2888 return r;
2889
2890 r = journal_file_move_to_object(f, OBJECT_DATA, b, &o);
2891 if (r < 0)
2892 return r;
2893
2894 r = generic_array_bisect_plus_one(f,
2895 le64toh(o->data.entry_offset),
2896 le64toh(o->data.entry_array_offset),
2897 le64toh(o->data.n_entries),
2898 p,
2899 test_object_offset,
2900 direction,
2901 &qo, &q, NULL);
2902
2903 if (r <= 0)
2904 return r;
2905
2906 if (p == q) {
2907 if (ret)
2908 *ret = qo;
2909 if (offset)
2910 *offset = q;
2911
2912 return 1;
2913 }
2914
2915 z = q;
2916 }
cbdca852
LP
2917}
2918
de190aef
LP
2919int journal_file_move_to_entry_by_seqnum_for_data(
2920 JournalFile *f,
2921 uint64_t data_offset,
2922 uint64_t seqnum,
2923 direction_t direction,
2924 Object **ret, uint64_t *offset) {
cec736d2 2925
de190aef
LP
2926 Object *d;
2927 int r;
cec736d2 2928
91a31dde
LP
2929 assert(f);
2930
de190aef 2931 r = journal_file_move_to_object(f, OBJECT_DATA, data_offset, &d);
91a31dde 2932 if (r < 0)
de190aef 2933 return r;
cec736d2 2934
de190aef
LP
2935 return generic_array_bisect_plus_one(f,
2936 le64toh(d->data.entry_offset),
2937 le64toh(d->data.entry_array_offset),
2938 le64toh(d->data.n_entries),
2939 seqnum,
2940 test_object_seqnum,
2941 direction,
2942 ret, offset, NULL);
2943}
cec736d2 2944
de190aef
LP
2945int journal_file_move_to_entry_by_realtime_for_data(
2946 JournalFile *f,
2947 uint64_t data_offset,
2948 uint64_t realtime,
2949 direction_t direction,
2950 Object **ret, uint64_t *offset) {
2951
2952 Object *d;
2953 int r;
2954
91a31dde
LP
2955 assert(f);
2956
de190aef 2957 r = journal_file_move_to_object(f, OBJECT_DATA, data_offset, &d);
91a31dde 2958 if (r < 0)
de190aef
LP
2959 return r;
2960
2961 return generic_array_bisect_plus_one(f,
2962 le64toh(d->data.entry_offset),
2963 le64toh(d->data.entry_array_offset),
2964 le64toh(d->data.n_entries),
2965 realtime,
2966 test_object_realtime,
2967 direction,
2968 ret, offset, NULL);
cec736d2
LP
2969}
2970
0284adc6 2971void journal_file_dump(JournalFile *f) {
7560fffc 2972 Object *o;
7560fffc 2973 int r;
0284adc6 2974 uint64_t p;
7560fffc
LP
2975
2976 assert(f);
c88cc6af 2977 assert(f->header);
7560fffc 2978
0284adc6 2979 journal_file_print_header(f);
7560fffc 2980
0284adc6
LP
2981 p = le64toh(f->header->header_size);
2982 while (p != 0) {
d05089d8 2983 r = journal_file_move_to_object(f, OBJECT_UNUSED, p, &o);
0284adc6
LP
2984 if (r < 0)
2985 goto fail;
7560fffc 2986
0284adc6 2987 switch (o->object.type) {
d98cc1f2 2988
0284adc6
LP
2989 case OBJECT_UNUSED:
2990 printf("Type: OBJECT_UNUSED\n");
2991 break;
d98cc1f2 2992
0284adc6
LP
2993 case OBJECT_DATA:
2994 printf("Type: OBJECT_DATA\n");
2995 break;
7560fffc 2996
3c1668da
LP
2997 case OBJECT_FIELD:
2998 printf("Type: OBJECT_FIELD\n");
2999 break;
3000
0284adc6 3001 case OBJECT_ENTRY:
507f22bd
ZJS
3002 printf("Type: OBJECT_ENTRY seqnum=%"PRIu64" monotonic=%"PRIu64" realtime=%"PRIu64"\n",
3003 le64toh(o->entry.seqnum),
3004 le64toh(o->entry.monotonic),
3005 le64toh(o->entry.realtime));
0284adc6 3006 break;
7560fffc 3007
0284adc6
LP
3008 case OBJECT_FIELD_HASH_TABLE:
3009 printf("Type: OBJECT_FIELD_HASH_TABLE\n");
3010 break;
7560fffc 3011
0284adc6
LP
3012 case OBJECT_DATA_HASH_TABLE:
3013 printf("Type: OBJECT_DATA_HASH_TABLE\n");
3014 break;
7560fffc 3015
0284adc6
LP
3016 case OBJECT_ENTRY_ARRAY:
3017 printf("Type: OBJECT_ENTRY_ARRAY\n");
3018 break;
7560fffc 3019
0284adc6 3020 case OBJECT_TAG:
507f22bd
ZJS
3021 printf("Type: OBJECT_TAG seqnum=%"PRIu64" epoch=%"PRIu64"\n",
3022 le64toh(o->tag.seqnum),
3023 le64toh(o->tag.epoch));
0284adc6 3024 break;
3c1668da
LP
3025
3026 default:
8facc349 3027 printf("Type: unknown (%i)\n", o->object.type);
3c1668da 3028 break;
0284adc6 3029 }
7560fffc 3030
d89c8fdf
ZJS
3031 if (o->object.flags & OBJECT_COMPRESSION_MASK)
3032 printf("Flags: %s\n",
3033 object_compressed_to_string(o->object.flags & OBJECT_COMPRESSION_MASK));
7560fffc 3034
0284adc6
LP
3035 if (p == le64toh(f->header->tail_object_offset))
3036 p = 0;
3037 else
3038 p = p + ALIGN64(le64toh(o->object.size));
3039 }
7560fffc 3040
0284adc6
LP
3041 return;
3042fail:
3043 log_error("File corrupt");
7560fffc
LP
3044}
3045
718fe4b1
ZJS
3046static const char* format_timestamp_safe(char *buf, size_t l, usec_t t) {
3047 const char *x;
3048
3049 x = format_timestamp(buf, l, t);
3050 if (x)
3051 return x;
3052 return " --- ";
3053}
3054
0284adc6 3055void journal_file_print_header(JournalFile *f) {
2765b7bb 3056 char a[33], b[33], c[33], d[33];
ed375beb 3057 char x[FORMAT_TIMESTAMP_MAX], y[FORMAT_TIMESTAMP_MAX], z[FORMAT_TIMESTAMP_MAX];
a1a03e30
LP
3058 struct stat st;
3059 char bytes[FORMAT_BYTES_MAX];
7560fffc
LP
3060
3061 assert(f);
c88cc6af 3062 assert(f->header);
7560fffc 3063
0284adc6
LP
3064 printf("File Path: %s\n"
3065 "File ID: %s\n"
3066 "Machine ID: %s\n"
3067 "Boot ID: %s\n"
3068 "Sequential Number ID: %s\n"
3069 "State: %s\n"
3070 "Compatible Flags:%s%s\n"
d89c8fdf 3071 "Incompatible Flags:%s%s%s\n"
507f22bd
ZJS
3072 "Header size: %"PRIu64"\n"
3073 "Arena size: %"PRIu64"\n"
3074 "Data Hash Table Size: %"PRIu64"\n"
3075 "Field Hash Table Size: %"PRIu64"\n"
0284adc6 3076 "Rotate Suggested: %s\n"
0808b92f
LP
3077 "Head Sequential Number: %"PRIu64" (%"PRIx64")\n"
3078 "Tail Sequential Number: %"PRIu64" (%"PRIx64")\n"
3079 "Head Realtime Timestamp: %s (%"PRIx64")\n"
3080 "Tail Realtime Timestamp: %s (%"PRIx64")\n"
3081 "Tail Monotonic Timestamp: %s (%"PRIx64")\n"
507f22bd
ZJS
3082 "Objects: %"PRIu64"\n"
3083 "Entry Objects: %"PRIu64"\n",
0284adc6
LP
3084 f->path,
3085 sd_id128_to_string(f->header->file_id, a),
3086 sd_id128_to_string(f->header->machine_id, b),
3087 sd_id128_to_string(f->header->boot_id, c),
2765b7bb 3088 sd_id128_to_string(f->header->seqnum_id, d),
3223f44f
LP
3089 f->header->state == STATE_OFFLINE ? "OFFLINE" :
3090 f->header->state == STATE_ONLINE ? "ONLINE" :
3091 f->header->state == STATE_ARCHIVED ? "ARCHIVED" : "UNKNOWN",
8088cbd3 3092 JOURNAL_HEADER_SEALED(f->header) ? " SEALED" : "",
d89c8fdf
ZJS
3093 (le32toh(f->header->compatible_flags) & ~HEADER_COMPATIBLE_ANY) ? " ???" : "",
3094 JOURNAL_HEADER_COMPRESSED_XZ(f->header) ? " COMPRESSED-XZ" : "",
3095 JOURNAL_HEADER_COMPRESSED_LZ4(f->header) ? " COMPRESSED-LZ4" : "",
3096 (le32toh(f->header->incompatible_flags) & ~HEADER_INCOMPATIBLE_ANY) ? " ???" : "",
507f22bd
ZJS
3097 le64toh(f->header->header_size),
3098 le64toh(f->header->arena_size),
3099 le64toh(f->header->data_hash_table_size) / sizeof(HashItem),
3100 le64toh(f->header->field_hash_table_size) / sizeof(HashItem),
fb0951b0 3101 yes_no(journal_file_rotate_suggested(f, 0)),
0808b92f
LP
3102 le64toh(f->header->head_entry_seqnum), le64toh(f->header->head_entry_seqnum),
3103 le64toh(f->header->tail_entry_seqnum), le64toh(f->header->tail_entry_seqnum),
3104 format_timestamp_safe(x, sizeof(x), le64toh(f->header->head_entry_realtime)), le64toh(f->header->head_entry_realtime),
3105 format_timestamp_safe(y, sizeof(y), le64toh(f->header->tail_entry_realtime)), le64toh(f->header->tail_entry_realtime),
3106 format_timespan(z, sizeof(z), le64toh(f->header->tail_entry_monotonic), USEC_PER_MSEC), le64toh(f->header->tail_entry_monotonic),
507f22bd
ZJS
3107 le64toh(f->header->n_objects),
3108 le64toh(f->header->n_entries));
7560fffc 3109
0284adc6 3110 if (JOURNAL_HEADER_CONTAINS(f->header, n_data))
507f22bd 3111 printf("Data Objects: %"PRIu64"\n"
0284adc6 3112 "Data Hash Table Fill: %.1f%%\n",
507f22bd 3113 le64toh(f->header->n_data),
0284adc6 3114 100.0 * (double) le64toh(f->header->n_data) / ((double) (le64toh(f->header->data_hash_table_size) / sizeof(HashItem))));
7560fffc 3115
0284adc6 3116 if (JOURNAL_HEADER_CONTAINS(f->header, n_fields))
507f22bd 3117 printf("Field Objects: %"PRIu64"\n"
0284adc6 3118 "Field Hash Table Fill: %.1f%%\n",
507f22bd 3119 le64toh(f->header->n_fields),
0284adc6 3120 100.0 * (double) le64toh(f->header->n_fields) / ((double) (le64toh(f->header->field_hash_table_size) / sizeof(HashItem))));
3223f44f
LP
3121
3122 if (JOURNAL_HEADER_CONTAINS(f->header, n_tags))
507f22bd
ZJS
3123 printf("Tag Objects: %"PRIu64"\n",
3124 le64toh(f->header->n_tags));
3223f44f 3125 if (JOURNAL_HEADER_CONTAINS(f->header, n_entry_arrays))
507f22bd
ZJS
3126 printf("Entry Array Objects: %"PRIu64"\n",
3127 le64toh(f->header->n_entry_arrays));
a1a03e30
LP
3128
3129 if (fstat(f->fd, &st) >= 0)
59f448cf 3130 printf("Disk usage: %s\n", format_bytes(bytes, sizeof(bytes), (uint64_t) st.st_blocks * 512ULL));
7560fffc
LP
3131}
3132
fc68c929
LP
3133static int journal_file_warn_btrfs(JournalFile *f) {
3134 unsigned attrs;
3135 int r;
3136
3137 assert(f);
3138
3139 /* Before we write anything, check if the COW logic is turned
3140 * off on btrfs. Given our write pattern that is quite
3141 * unfriendly to COW file systems this should greatly improve
3142 * performance on COW file systems, such as btrfs, at the
3143 * expense of data integrity features (which shouldn't be too
3144 * bad, given that we do our own checksumming). */
3145
3146 r = btrfs_is_filesystem(f->fd);
3147 if (r < 0)
3148 return log_warning_errno(r, "Failed to determine if journal is on btrfs: %m");
3149 if (!r)
3150 return 0;
3151
3152 r = read_attr_fd(f->fd, &attrs);
3153 if (r < 0)
3154 return log_warning_errno(r, "Failed to read file attributes: %m");
3155
3156 if (attrs & FS_NOCOW_FL) {
3157 log_debug("Detected btrfs file system with copy-on-write disabled, all is good.");
3158 return 0;
3159 }
3160
3161 log_notice("Creating journal file %s on a btrfs file system, and copy-on-write is enabled. "
3162 "This is likely to slow down journal access substantially, please consider turning "
3163 "off the copy-on-write file attribute on the journal directory, using chattr +C.", f->path);
3164
3165 return 1;
3166}
3167
0284adc6 3168int journal_file_open(
5d1ce257 3169 int fd,
0284adc6
LP
3170 const char *fname,
3171 int flags,
3172 mode_t mode,
3173 bool compress,
57850536 3174 uint64_t compress_threshold_bytes,
baed47c3 3175 bool seal,
0284adc6
LP
3176 JournalMetrics *metrics,
3177 MMapCache *mmap_cache,
b58c888f 3178 Set *deferred_closes,
0284adc6
LP
3179 JournalFile *template,
3180 JournalFile **ret) {
7560fffc 3181
fa6ac760 3182 bool newly_created = false;
0284adc6 3183 JournalFile *f;
fa6ac760 3184 void *h;
0284adc6 3185 int r;
57850536 3186 char bytes[FORMAT_BYTES_MAX];
7560fffc 3187
0559d3a5 3188 assert(ret);
5d1ce257 3189 assert(fd >= 0 || fname);
7560fffc 3190
ec2ce0c5 3191 if (!IN_SET((flags & O_ACCMODE), O_RDONLY, O_RDWR))
0284adc6 3192 return -EINVAL;
7560fffc 3193
6eda13d3
LP
3194 if (fname && (flags & O_CREAT) && !endswith(fname, ".journal"))
3195 return -EINVAL;
7560fffc 3196
971b52c4 3197 f = new(JournalFile, 1);
0284adc6
LP
3198 if (!f)
3199 return -ENOMEM;
7560fffc 3200
971b52c4
LP
3201 *f = (JournalFile) {
3202 .fd = fd,
3203 .mode = mode,
3204
3205 .flags = flags,
3206 .prot = prot_from_flags(flags),
3207 .writable = (flags & O_ACCMODE) != O_RDONLY,
7560fffc 3208
349cc4a5 3209#if HAVE_LZ4
971b52c4 3210 .compress_lz4 = compress,
349cc4a5 3211#elif HAVE_XZ
971b52c4 3212 .compress_xz = compress,
48b61739 3213#endif
971b52c4
LP
3214 .compress_threshold_bytes = compress_threshold_bytes == (uint64_t) -1 ?
3215 DEFAULT_COMPRESS_THRESHOLD :
3216 MAX(MIN_COMPRESS_THRESHOLD, compress_threshold_bytes),
349cc4a5 3217#if HAVE_GCRYPT
971b52c4 3218 .seal = seal,
49a32d43 3219#endif
971b52c4 3220 };
7560fffc 3221
57850536
AG
3222 log_debug("Journal effective settings seal=%s compress=%s compress_threshold_bytes=%s",
3223 yes_no(f->seal), yes_no(JOURNAL_FILE_COMPRESS(f)),
3224 format_bytes(bytes, sizeof(bytes), f->compress_threshold_bytes));
3225
0284adc6
LP
3226 if (mmap_cache)
3227 f->mmap = mmap_cache_ref(mmap_cache);
3228 else {
84168d80 3229 f->mmap = mmap_cache_new();
0284adc6
LP
3230 if (!f->mmap) {
3231 r = -ENOMEM;
3232 goto fail;
3233 }
3234 }
7560fffc 3235
7645c77b 3236 if (fname) {
5d1ce257 3237 f->path = strdup(fname);
7645c77b
ZJS
3238 if (!f->path) {
3239 r = -ENOMEM;
3240 goto fail;
3241 }
3242 } else {
817b1c5b
LP
3243 assert(fd >= 0);
3244
7645c77b
ZJS
3245 /* If we don't know the path, fill in something explanatory and vaguely useful */
3246 if (asprintf(&f->path, "/proc/self/%i", fd) < 0) {
3247 r = -ENOMEM;
3248 goto fail;
3249 }
0284adc6 3250 }
7560fffc 3251
4743015d 3252 f->chain_cache = ordered_hashmap_new(&uint64_hash_ops);
a4bcff5b
LP
3253 if (!f->chain_cache) {
3254 r = -ENOMEM;
3255 goto fail;
3256 }
3257
0284adc6 3258 if (f->fd < 0) {
817b1c5b
LP
3259 /* We pass O_NONBLOCK here, so that in case somebody pointed us to some character device node or FIFO
3260 * or so, we likely fail quickly than block for long. For regular files O_NONBLOCK has no effect, hence
3261 * it doesn't hurt in that case. */
3262
3263 f->fd = open(f->path, f->flags|O_CLOEXEC|O_NONBLOCK, f->mode);
5d1ce257
LP
3264 if (f->fd < 0) {
3265 r = -errno;
3266 goto fail;
3267 }
3268
3269 /* fds we opened here by us should also be closed by us. */
3270 f->close_fd = true;
817b1c5b
LP
3271
3272 r = fd_nonblock(f->fd, false);
3273 if (r < 0)
3274 goto fail;
7560fffc 3275 }
7560fffc 3276
be7cdd8e
VC
3277 f->cache_fd = mmap_cache_add_fd(f->mmap, f->fd);
3278 if (!f->cache_fd) {
3279 r = -ENOMEM;
3280 goto fail;
3281 }
3282
2678031a
LP
3283 r = journal_file_fstat(f);
3284 if (r < 0)
0284adc6 3285 goto fail;
7560fffc 3286
0284adc6 3287 if (f->last_stat.st_size == 0 && f->writable) {
11689d2a 3288
fc68c929 3289 (void) journal_file_warn_btrfs(f);
11689d2a 3290
4c2e1b39
LP
3291 /* Let's attach the creation time to the journal file, so that the vacuuming code knows the age of this
3292 * file even if the file might end up corrupted one day... Ideally we'd just use the creation time many
3293 * file systems maintain for each file, but the API to query this is very new, hence let's emulate this
3294 * via extended attributes. If extended attributes are not supported we'll just skip this, and rely
3295 * solely on mtime/atime/ctime of the file. */
3296 (void) fd_setcrtime(f->fd, 0);
7560fffc 3297
349cc4a5 3298#if HAVE_GCRYPT
0284adc6 3299 /* Try to load the FSPRG state, and if we can't, then
baed47c3 3300 * just don't do sealing */
49a32d43
LP
3301 if (f->seal) {
3302 r = journal_file_fss_load(f);
3303 if (r < 0)
3304 f->seal = false;
3305 }
feb12d3e 3306#endif
7560fffc 3307
0284adc6
LP
3308 r = journal_file_init_header(f, template);
3309 if (r < 0)
3310 goto fail;
7560fffc 3311
2678031a
LP
3312 r = journal_file_fstat(f);
3313 if (r < 0)
0284adc6 3314 goto fail;
fb0951b0
LP
3315
3316 newly_created = true;
0284adc6 3317 }
7560fffc 3318
0284adc6 3319 if (f->last_stat.st_size < (off_t) HEADER_SIZE_MIN) {
cfb571f3 3320 r = -ENODATA;
0284adc6
LP
3321 goto fail;
3322 }
7560fffc 3323
b42549ad 3324 r = mmap_cache_get(f->mmap, f->cache_fd, f->prot, CONTEXT_HEADER, true, 0, PAGE_ALIGN(sizeof(Header)), &f->last_stat, &h, NULL);
977eaa1e 3325 if (r < 0)
0284adc6 3326 goto fail;
7560fffc 3327
fa6ac760
LP
3328 f->header = h;
3329
0284adc6 3330 if (!newly_created) {
f9168190 3331 set_clear_with_destructor(deferred_closes, journal_file_close);
b58c888f 3332
0284adc6
LP
3333 r = journal_file_verify_header(f);
3334 if (r < 0)
3335 goto fail;
3336 }
7560fffc 3337
349cc4a5 3338#if HAVE_GCRYPT
0284adc6 3339 if (!newly_created && f->writable) {
baed47c3 3340 r = journal_file_fss_load(f);
0284adc6
LP
3341 if (r < 0)
3342 goto fail;
3343 }
feb12d3e 3344#endif
cec736d2
LP
3345
3346 if (f->writable) {
4a92baf3
LP
3347 if (metrics) {
3348 journal_default_metrics(metrics, f->fd);
3349 f->metrics = *metrics;
3350 } else if (template)
3351 f->metrics = template->metrics;
3352
cec736d2
LP
3353 r = journal_file_refresh_header(f);
3354 if (r < 0)
3355 goto fail;
3356 }
3357
349cc4a5 3358#if HAVE_GCRYPT
baed47c3 3359 r = journal_file_hmac_setup(f);
14d10188
LP
3360 if (r < 0)
3361 goto fail;
feb12d3e 3362#endif
14d10188 3363
cec736d2 3364 if (newly_created) {
de190aef 3365 r = journal_file_setup_field_hash_table(f);
cec736d2
LP
3366 if (r < 0)
3367 goto fail;
3368
de190aef 3369 r = journal_file_setup_data_hash_table(f);
cec736d2
LP
3370 if (r < 0)
3371 goto fail;
7560fffc 3372
349cc4a5 3373#if HAVE_GCRYPT
7560fffc
LP
3374 r = journal_file_append_first_tag(f);
3375 if (r < 0)
3376 goto fail;
feb12d3e 3377#endif
cec736d2
LP
3378 }
3379
be7cdd8e 3380 if (mmap_cache_got_sigbus(f->mmap, f->cache_fd)) {
fa6ac760
LP
3381 r = -EIO;
3382 goto fail;
3383 }
3384
7a24f3bf 3385 if (template && template->post_change_timer) {
e167d7fd
LP
3386 r = journal_file_enable_post_change_timer(
3387 f,
3388 sd_event_source_get_event(template->post_change_timer),
3389 template->post_change_timer_period);
7a24f3bf 3390
7a24f3bf
VC
3391 if (r < 0)
3392 goto fail;
3393 }
3394
f8e2f4d6 3395 /* The file is opened now successfully, thus we take possession of any passed in fd. */
5d1ce257
LP
3396 f->close_fd = true;
3397
0559d3a5 3398 *ret = f;
cec736d2
LP
3399 return 0;
3400
3401fail:
be7cdd8e 3402 if (f->cache_fd && mmap_cache_got_sigbus(f->mmap, f->cache_fd))
fa6ac760
LP
3403 r = -EIO;
3404
69a3a6fd 3405 (void) journal_file_close(f);
cec736d2
LP
3406
3407 return r;
3408}
0ac38b70 3409
7a4d21ad 3410int journal_file_archive(JournalFile *f) {
57535f47 3411 _cleanup_free_ char *p = NULL;
0ac38b70
LP
3412
3413 assert(f);
0ac38b70 3414
7a4d21ad 3415 if (!f->writable)
0ac38b70
LP
3416 return -EINVAL;
3417
5d1ce257 3418 /* Is this a journal file that was passed to us as fd? If so, we synthesized a path name for it, and we refuse
13e785f7 3419 * rotation, since we don't know the actual path, and couldn't rename the file hence. */
7a4d21ad 3420 if (path_startswith(f->path, "/proc/self/fd"))
5d1ce257
LP
3421 return -EINVAL;
3422
7a4d21ad 3423 if (!endswith(f->path, ".journal"))
0ac38b70
LP
3424 return -EINVAL;
3425
7a4d21ad
LP
3426 if (asprintf(&p, "%.*s@" SD_ID128_FORMAT_STR "-%016"PRIx64"-%016"PRIx64".journal",
3427 (int) strlen(f->path) - 8, f->path,
3428 SD_ID128_FORMAT_VAL(f->header->seqnum_id),
3429 le64toh(f->header->head_entry_seqnum),
3430 le64toh(f->header->head_entry_realtime)) < 0)
0ac38b70
LP
3431 return -ENOMEM;
3432
7a4d21ad
LP
3433 /* Try to rename the file to the archived version. If the file already was deleted, we'll get ENOENT, let's
3434 * ignore that case. */
3435 if (rename(f->path, p) < 0 && errno != ENOENT)
0ac38b70
LP
3436 return -errno;
3437
1fcefd88 3438 /* Sync the rename to disk */
7a4d21ad
LP
3439 (void) fsync_directory_of_file(f->fd);
3440
3441 /* Set as archive so offlining commits w/state=STATE_ARCHIVED. Previously we would set old_file->header->state
3442 * to STATE_ARCHIVED directly here, but journal_file_set_offline() short-circuits when state != STATE_ONLINE,
3443 * which would result in the rotated journal never getting fsync() called before closing. Now we simply queue
3444 * the archive state by setting an archive bit, leaving the state as STATE_ONLINE so proper offlining
3445 * occurs. */
3446 f->archive = true;
3447
3448 /* Currently, btrfs is not very good with out write patterns and fragments heavily. Let's defrag our journal
3449 * files when we archive them */
3450 f->defrag_on_close = true;
3451
3452 return 0;
3453}
3454
3455JournalFile* journal_initiate_close(
3456 JournalFile *f,
3457 Set *deferred_closes) {
3458
3459 int r;
3460
3461 assert(f);
3462
3463 if (deferred_closes) {
0ac38b70 3464
7a4d21ad
LP
3465 r = set_put(deferred_closes, f);
3466 if (r < 0)
3467 log_debug_errno(r, "Failed to add file to deferred close set, closing immediately.");
3468 else {
3469 (void) journal_file_set_offline(f, false);
3470 return NULL;
3471 }
3472 }
3473
3474 return journal_file_close(f);
3475}
3476
3477int journal_file_rotate(
3478 JournalFile **f,
3479 bool compress,
3480 uint64_t compress_threshold_bytes,
3481 bool seal,
3482 Set *deferred_closes) {
3483
3484 JournalFile *new_file = NULL;
3485 int r;
3486
3487 assert(f);
3488 assert(*f);
3489
3490 r = journal_file_archive(*f);
3491 if (r < 0)
3492 return r;
3493
3494 r = journal_file_open(
3495 -1,
3496 (*f)->path,
3497 (*f)->flags,
3498 (*f)->mode,
3499 compress,
3500 compress_threshold_bytes,
3501 seal,
3502 NULL, /* metrics */
3503 (*f)->mmap,
3504 deferred_closes,
3505 *f, /* template */
3506 &new_file);
3507
3508 journal_initiate_close(*f, deferred_closes);
0ac38b70 3509 *f = new_file;
7a4d21ad 3510
0ac38b70
LP
3511 return r;
3512}
3513
68127658
LP
3514int journal_file_dispose(int dir_fd, const char *fname) {
3515 _cleanup_free_ char *p = NULL;
3516 _cleanup_close_ int fd = -1;
3517
3518 assert(fname);
3519
3520 /* Renames a journal file to *.journal~, i.e. to mark it as corruped or otherwise uncleanly shutdown. Note that
3521 * this is done without looking into the file or changing any of its contents. The idea is that this is called
3522 * whenever something is suspicious and we want to move the file away and make clear that it is not accessed
3523 * for writing anymore. */
3524
3525 if (!endswith(fname, ".journal"))
3526 return -EINVAL;
3527
3528 if (asprintf(&p, "%.*s@%016" PRIx64 "-%016" PRIx64 ".journal~",
3529 (int) strlen(fname) - 8, fname,
3530 now(CLOCK_REALTIME),
3531 random_u64()) < 0)
3532 return -ENOMEM;
3533
3534 if (renameat(dir_fd, fname, dir_fd, p) < 0)
3535 return -errno;
3536
3537 /* btrfs doesn't cope well with our write pattern and fragments heavily. Let's defrag all files we rotate */
3538 fd = openat(dir_fd, p, O_RDONLY|O_CLOEXEC|O_NOCTTY|O_NOFOLLOW);
3539 if (fd < 0)
3540 log_debug_errno(errno, "Failed to open file for defragmentation/FS_NOCOW_FL, ignoring: %m");
3541 else {
3542 (void) chattr_fd(fd, 0, FS_NOCOW_FL, NULL);
3543 (void) btrfs_defrag_fd(fd);
3544 }
3545
3546 return 0;
3547}
3548
9447a7f1
LP
3549int journal_file_open_reliably(
3550 const char *fname,
3551 int flags,
3552 mode_t mode,
7560fffc 3553 bool compress,
57850536 3554 uint64_t compress_threshold_bytes,
baed47c3 3555 bool seal,
4a92baf3 3556 JournalMetrics *metrics,
27370278 3557 MMapCache *mmap_cache,
b58c888f 3558 Set *deferred_closes,
9447a7f1
LP
3559 JournalFile *template,
3560 JournalFile **ret) {
3561
68127658 3562 int r;
9447a7f1 3563
57850536
AG
3564 r = journal_file_open(-1, fname, flags, mode, compress, compress_threshold_bytes, seal, metrics, mmap_cache,
3565 deferred_closes, template, ret);
288359db 3566 if (!IN_SET(r,
b288cdeb
ZJS
3567 -EBADMSG, /* Corrupted */
3568 -ENODATA, /* Truncated */
3569 -EHOSTDOWN, /* Other machine */
3570 -EPROTONOSUPPORT, /* Incompatible feature */
3571 -EBUSY, /* Unclean shutdown */
3572 -ESHUTDOWN, /* Already archived */
288359db 3573 -EIO, /* IO error, including SIGBUS on mmap */
ae739cc1
LP
3574 -EIDRM, /* File has been deleted */
3575 -ETXTBSY)) /* File is from the future */
9447a7f1
LP
3576 return r;
3577
3578 if ((flags & O_ACCMODE) == O_RDONLY)
3579 return r;
3580
3581 if (!(flags & O_CREAT))
3582 return r;
3583
7560fffc
LP
3584 if (!endswith(fname, ".journal"))
3585 return r;
3586
5c70eab4 3587 /* The file is corrupted. Rotate it away and try it again (but only once) */
65089b82 3588 log_warning_errno(r, "File %s corrupted or uncleanly shut down, renaming and replacing.", fname);
9447a7f1 3589
68127658
LP
3590 r = journal_file_dispose(AT_FDCWD, fname);
3591 if (r < 0)
3592 return r;
3593
57850536
AG
3594 return journal_file_open(-1, fname, flags, mode, compress, compress_threshold_bytes, seal, metrics, mmap_cache,
3595 deferred_closes, template, ret);
9447a7f1
LP
3596}
3597
5a271b08 3598int journal_file_copy_entry(JournalFile *from, JournalFile *to, Object *o, uint64_t p) {
cf244689
LP
3599 uint64_t i, n;
3600 uint64_t q, xor_hash = 0;
3601 int r;
3602 EntryItem *items;
3603 dual_timestamp ts;
d180c349 3604 const sd_id128_t *boot_id;
cf244689
LP
3605
3606 assert(from);
3607 assert(to);
3608 assert(o);
3609 assert(p);
3610
3611 if (!to->writable)
3612 return -EPERM;
3613
3614 ts.monotonic = le64toh(o->entry.monotonic);
3615 ts.realtime = le64toh(o->entry.realtime);
d180c349 3616 boot_id = &o->entry.boot_id;
cf244689 3617
cf244689 3618 n = journal_file_entry_n_items(o);
4faa7004 3619 /* alloca() can't take 0, hence let's allocate at least one */
cf409d15 3620 items = newa(EntryItem, MAX(1u, n));
cf244689
LP
3621
3622 for (i = 0; i < n; i++) {
4fd052ae
FC
3623 uint64_t l, h;
3624 le64_t le_hash;
cf244689
LP
3625 size_t t;
3626 void *data;
3627 Object *u;
3628
3629 q = le64toh(o->entry.items[i].object_offset);
3630 le_hash = o->entry.items[i].hash;
3631
3632 r = journal_file_move_to_object(from, OBJECT_DATA, q, &o);
3633 if (r < 0)
3634 return r;
3635
3636 if (le_hash != o->data.hash)
3637 return -EBADMSG;
3638
3639 l = le64toh(o->object.size) - offsetof(Object, data.payload);
3640 t = (size_t) l;
3641
3642 /* We hit the limit on 32bit machines */
3643 if ((uint64_t) t != l)
3644 return -E2BIG;
3645
d89c8fdf 3646 if (o->object.flags & OBJECT_COMPRESSION_MASK) {
349cc4a5 3647#if HAVE_XZ || HAVE_LZ4
a7f7d1bd 3648 size_t rsize = 0;
cf244689 3649
d89c8fdf
ZJS
3650 r = decompress_blob(o->object.flags & OBJECT_COMPRESSION_MASK,
3651 o->data.payload, l, &from->compress_buffer, &from->compress_buffer_size, &rsize, 0);
3652 if (r < 0)
3653 return r;
cf244689
LP
3654
3655 data = from->compress_buffer;
3656 l = rsize;
3b1a55e1
ZJS
3657#else
3658 return -EPROTONOSUPPORT;
3659#endif
cf244689
LP
3660 } else
3661 data = o->data.payload;
3662
3663 r = journal_file_append_data(to, data, l, &u, &h);
3664 if (r < 0)
3665 return r;
3666
3667 xor_hash ^= le64toh(u->data.hash);
3668 items[i].object_offset = htole64(h);
3669 items[i].hash = u->data.hash;
3670
3671 r = journal_file_move_to_object(from, OBJECT_ENTRY, p, &o);
3672 if (r < 0)
3673 return r;
3674 }
3675
d180c349
ZJS
3676 r = journal_file_append_entry_internal(to, &ts, boot_id, xor_hash, items, n,
3677 NULL, NULL, NULL);
fa6ac760 3678
be7cdd8e 3679 if (mmap_cache_got_sigbus(to->mmap, to->cache_fd))
fa6ac760
LP
3680 return -EIO;
3681
3682 return r;
cf244689 3683}
babfc091 3684
8580d1f7
LP
3685void journal_reset_metrics(JournalMetrics *m) {
3686 assert(m);
3687
3688 /* Set everything to "pick automatic values". */
3689
3690 *m = (JournalMetrics) {
3691 .min_use = (uint64_t) -1,
3692 .max_use = (uint64_t) -1,
3693 .min_size = (uint64_t) -1,
3694 .max_size = (uint64_t) -1,
3695 .keep_free = (uint64_t) -1,
3696 .n_max_files = (uint64_t) -1,
3697 };
3698}
3699
babfc091 3700void journal_default_metrics(JournalMetrics *m, int fd) {
8580d1f7 3701 char a[FORMAT_BYTES_MAX], b[FORMAT_BYTES_MAX], c[FORMAT_BYTES_MAX], d[FORMAT_BYTES_MAX], e[FORMAT_BYTES_MAX];
babfc091 3702 struct statvfs ss;
8580d1f7 3703 uint64_t fs_size;
babfc091
LP
3704
3705 assert(m);
3706 assert(fd >= 0);
3707
3708 if (fstatvfs(fd, &ss) >= 0)
3709 fs_size = ss.f_frsize * ss.f_blocks;
8580d1f7 3710 else {
8fc58f1a 3711 log_debug_errno(errno, "Failed to determine disk size: %m");
8580d1f7
LP
3712 fs_size = 0;
3713 }
babfc091
LP
3714
3715 if (m->max_use == (uint64_t) -1) {
3716
3717 if (fs_size > 0) {
3718 m->max_use = PAGE_ALIGN(fs_size / 10); /* 10% of file system size */
3719
3720 if (m->max_use > DEFAULT_MAX_USE_UPPER)
3721 m->max_use = DEFAULT_MAX_USE_UPPER;
3722
3723 if (m->max_use < DEFAULT_MAX_USE_LOWER)
3724 m->max_use = DEFAULT_MAX_USE_LOWER;
3725 } else
3726 m->max_use = DEFAULT_MAX_USE_LOWER;
3727 } else {
3728 m->max_use = PAGE_ALIGN(m->max_use);
3729
8580d1f7 3730 if (m->max_use != 0 && m->max_use < JOURNAL_FILE_SIZE_MIN*2)
babfc091
LP
3731 m->max_use = JOURNAL_FILE_SIZE_MIN*2;
3732 }
3733
8580d1f7
LP
3734 if (m->min_use == (uint64_t) -1)
3735 m->min_use = DEFAULT_MIN_USE;
3736
3737 if (m->min_use > m->max_use)
3738 m->min_use = m->max_use;
3739
babfc091
LP
3740 if (m->max_size == (uint64_t) -1) {
3741 m->max_size = PAGE_ALIGN(m->max_use / 8); /* 8 chunks */
3742
3743 if (m->max_size > DEFAULT_MAX_SIZE_UPPER)
3744 m->max_size = DEFAULT_MAX_SIZE_UPPER;
3745 } else
3746 m->max_size = PAGE_ALIGN(m->max_size);
3747
8580d1f7
LP
3748 if (m->max_size != 0) {
3749 if (m->max_size < JOURNAL_FILE_SIZE_MIN)
3750 m->max_size = JOURNAL_FILE_SIZE_MIN;
babfc091 3751
8580d1f7
LP
3752 if (m->max_use != 0 && m->max_size*2 > m->max_use)
3753 m->max_use = m->max_size*2;
3754 }
babfc091
LP
3755
3756 if (m->min_size == (uint64_t) -1)
3757 m->min_size = JOURNAL_FILE_SIZE_MIN;
3758 else {
3759 m->min_size = PAGE_ALIGN(m->min_size);
3760
3761 if (m->min_size < JOURNAL_FILE_SIZE_MIN)
3762 m->min_size = JOURNAL_FILE_SIZE_MIN;
3763
8580d1f7 3764 if (m->max_size != 0 && m->min_size > m->max_size)
babfc091
LP
3765 m->max_size = m->min_size;
3766 }
3767
3768 if (m->keep_free == (uint64_t) -1) {
3769
3770 if (fs_size > 0) {
8621b110 3771 m->keep_free = PAGE_ALIGN(fs_size * 3 / 20); /* 15% of file system size */
babfc091
LP
3772
3773 if (m->keep_free > DEFAULT_KEEP_FREE_UPPER)
3774 m->keep_free = DEFAULT_KEEP_FREE_UPPER;
3775
3776 } else
3777 m->keep_free = DEFAULT_KEEP_FREE;
3778 }
3779
8580d1f7
LP
3780 if (m->n_max_files == (uint64_t) -1)
3781 m->n_max_files = DEFAULT_N_MAX_FILES;
3782
3783 log_debug("Fixed min_use=%s max_use=%s max_size=%s min_size=%s keep_free=%s n_max_files=%" PRIu64,
3784 format_bytes(a, sizeof(a), m->min_use),
3785 format_bytes(b, sizeof(b), m->max_use),
3786 format_bytes(c, sizeof(c), m->max_size),
3787 format_bytes(d, sizeof(d), m->min_size),
3788 format_bytes(e, sizeof(e), m->keep_free),
3789 m->n_max_files);
babfc091 3790}
08984293
LP
3791
3792int journal_file_get_cutoff_realtime_usec(JournalFile *f, usec_t *from, usec_t *to) {
08984293 3793 assert(f);
c88cc6af 3794 assert(f->header);
08984293
LP
3795 assert(from || to);
3796
3797 if (from) {
162566a4
LP
3798 if (f->header->head_entry_realtime == 0)
3799 return -ENOENT;
08984293 3800
162566a4 3801 *from = le64toh(f->header->head_entry_realtime);
08984293
LP
3802 }
3803
3804 if (to) {
162566a4
LP
3805 if (f->header->tail_entry_realtime == 0)
3806 return -ENOENT;
08984293 3807
162566a4 3808 *to = le64toh(f->header->tail_entry_realtime);
08984293
LP
3809 }
3810
3811 return 1;
3812}
3813
3814int journal_file_get_cutoff_monotonic_usec(JournalFile *f, sd_id128_t boot_id, usec_t *from, usec_t *to) {
08984293
LP
3815 Object *o;
3816 uint64_t p;
3817 int r;
3818
3819 assert(f);
3820 assert(from || to);
3821
47838ab3 3822 r = find_data_object_by_boot_id(f, boot_id, &o, &p);
08984293
LP
3823 if (r <= 0)
3824 return r;
3825
3826 if (le64toh(o->data.n_entries) <= 0)
3827 return 0;
3828
3829 if (from) {
3830 r = journal_file_move_to_object(f, OBJECT_ENTRY, le64toh(o->data.entry_offset), &o);
3831 if (r < 0)
3832 return r;
3833
3834 *from = le64toh(o->entry.monotonic);
3835 }
3836
3837 if (to) {
3838 r = journal_file_move_to_object(f, OBJECT_DATA, p, &o);
3839 if (r < 0)
3840 return r;
3841
3842 r = generic_array_get_plus_one(f,
3843 le64toh(o->data.entry_offset),
3844 le64toh(o->data.entry_array_offset),
3845 le64toh(o->data.n_entries)-1,
3846 &o, NULL);
3847 if (r <= 0)
3848 return r;
3849
3850 *to = le64toh(o->entry.monotonic);
3851 }
3852
3853 return 1;
3854}
dca6219e 3855
fb0951b0 3856bool journal_file_rotate_suggested(JournalFile *f, usec_t max_file_usec) {
dca6219e 3857 assert(f);
c88cc6af 3858 assert(f->header);
dca6219e
LP
3859
3860 /* If we gained new header fields we gained new features,
3861 * hence suggest a rotation */
361f9cbc
LP
3862 if (le64toh(f->header->header_size) < sizeof(Header)) {
3863 log_debug("%s uses an outdated header, suggesting rotation.", f->path);
dca6219e 3864 return true;
361f9cbc 3865 }
dca6219e
LP
3866
3867 /* Let's check if the hash tables grew over a certain fill
3868 * level (75%, borrowing this value from Java's hash table
3869 * implementation), and if so suggest a rotation. To calculate
3870 * the fill level we need the n_data field, which only exists
3871 * in newer versions. */
3872
3873 if (JOURNAL_HEADER_CONTAINS(f->header, n_data))
361f9cbc 3874 if (le64toh(f->header->n_data) * 4ULL > (le64toh(f->header->data_hash_table_size) / sizeof(HashItem)) * 3ULL) {
507f22bd 3875 log_debug("Data hash table of %s has a fill level at %.1f (%"PRIu64" of %"PRIu64" items, %llu file size, %"PRIu64" bytes per hash table item), suggesting rotation.",
361f9cbc
LP
3876 f->path,
3877 100.0 * (double) le64toh(f->header->n_data) / ((double) (le64toh(f->header->data_hash_table_size) / sizeof(HashItem))),
507f22bd
ZJS
3878 le64toh(f->header->n_data),
3879 le64toh(f->header->data_hash_table_size) / sizeof(HashItem),
3880 (unsigned long long) f->last_stat.st_size,
3881 f->last_stat.st_size / le64toh(f->header->n_data));
dca6219e 3882 return true;
361f9cbc 3883 }
dca6219e
LP
3884
3885 if (JOURNAL_HEADER_CONTAINS(f->header, n_fields))
361f9cbc 3886 if (le64toh(f->header->n_fields) * 4ULL > (le64toh(f->header->field_hash_table_size) / sizeof(HashItem)) * 3ULL) {
507f22bd 3887 log_debug("Field hash table of %s has a fill level at %.1f (%"PRIu64" of %"PRIu64" items), suggesting rotation.",
361f9cbc
LP
3888 f->path,
3889 100.0 * (double) le64toh(f->header->n_fields) / ((double) (le64toh(f->header->field_hash_table_size) / sizeof(HashItem))),
507f22bd
ZJS
3890 le64toh(f->header->n_fields),
3891 le64toh(f->header->field_hash_table_size) / sizeof(HashItem));
dca6219e 3892 return true;
361f9cbc 3893 }
dca6219e 3894
0598fd4a
LP
3895 /* Are the data objects properly indexed by field objects? */
3896 if (JOURNAL_HEADER_CONTAINS(f->header, n_data) &&
3897 JOURNAL_HEADER_CONTAINS(f->header, n_fields) &&
3898 le64toh(f->header->n_data) > 0 &&
3899 le64toh(f->header->n_fields) == 0)
3900 return true;
3901
fb0951b0
LP
3902 if (max_file_usec > 0) {
3903 usec_t t, h;
3904
3905 h = le64toh(f->header->head_entry_realtime);
3906 t = now(CLOCK_REALTIME);
3907
3908 if (h > 0 && t > h + max_file_usec)
3909 return true;
3910 }
3911
dca6219e
LP
3912 return false;
3913}