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