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