]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/journal/sd-journal.c
build: colorize gcc only if on tty
[thirdparty/systemd.git] / src / journal / sd-journal.c
CommitLineData
87d2c1ff
LP
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3/***
4 This file is part of systemd.
5
6 Copyright 2011 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
87d2c1ff
LP
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 16 Lesser General Public License for more details.
87d2c1ff 17
5430f7f2 18 You should have received a copy of the GNU Lesser General Public License
87d2c1ff
LP
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
87d2c1ff 22#include <errno.h>
87d2c1ff 23#include <fcntl.h>
3fbf9cbb 24#include <stddef.h>
50f20cfd
LP
25#include <unistd.h>
26#include <sys/inotify.h>
e02d1cf7 27#include <sys/poll.h>
85210bff
LP
28#include <sys/vfs.h>
29#include <linux/magic.h>
87d2c1ff
LP
30
31#include "sd-journal.h"
32#include "journal-def.h"
cec736d2 33#include "journal-file.h"
260a2be4 34#include "hashmap.h"
cec736d2 35#include "list.h"
5302ebe1 36#include "strv.h"
9eb977db 37#include "path-util.h"
de7b95cd 38#include "lookup3.h"
807e17f0 39#include "compress.h"
cf244689 40#include "journal-internal.h"
85210bff 41#include "missing.h"
d4205751
LP
42#include "catalog.h"
43#include "replace-var.h"
b6741478 44#include "fileio.h"
87d2c1ff 45
cab8ac60
LP
46#define JOURNAL_FILES_MAX 1024
47
85210bff
LP
48#define JOURNAL_FILES_RECHECK_USEC (2 * USEC_PER_SEC)
49
d4205751
LP
50#define REPLACE_VAR_MAX 256
51
93b73b06
LP
52#define DEFAULT_DATA_THRESHOLD (64*1024)
53
a9a245c1
ZJS
54static void remove_file_real(sd_journal *j, JournalFile *f);
55
a65f06bb
ZJS
56static bool journal_pid_changed(sd_journal *j) {
57 assert(j);
58
59 /* We don't support people creating a journal object and
60 * keeping it around over a fork(). Let's complain. */
61
62 return j->original_pid != getpid();
63}
64
6fe391c5
ZJS
65/* We return an error here only if we didn't manage to
66 memorize the real error. */
3ac251b8
LP
67static int set_put_error(sd_journal *j, int r) {
68 int k;
69
6fe391c5
ZJS
70 if (r >= 0)
71 return r;
72
3ac251b8
LP
73 k = set_ensure_allocated(&j->errors, trivial_hash_func, trivial_compare_func);
74 if (k < 0)
75 return k;
76
77 return set_put(j->errors, INT_TO_PTR(r));
6fe391c5
ZJS
78}
79
de190aef 80static void detach_location(sd_journal *j) {
8f9b6cd9
LP
81 Iterator i;
82 JournalFile *f;
83
84 assert(j);
85
86 j->current_file = NULL;
87 j->current_field = 0;
88
89 HASHMAP_FOREACH(f, j->files, i)
90 f->current_offset = 0;
91}
92
de190aef
LP
93static void reset_location(sd_journal *j) {
94 assert(j);
95
96 detach_location(j);
97 zero(j->current_location);
98}
99
a87247dd 100static void init_location(Location *l, LocationType type, JournalFile *f, Object *o) {
de190aef 101 assert(l);
a87247dd 102 assert(type == LOCATION_DISCRETE || type == LOCATION_SEEK);
de190aef
LP
103 assert(f);
104 assert(o->object.type == OBJECT_ENTRY);
105
a87247dd 106 l->type = type;
de190aef
LP
107 l->seqnum = le64toh(o->entry.seqnum);
108 l->seqnum_id = f->header->seqnum_id;
109 l->realtime = le64toh(o->entry.realtime);
110 l->monotonic = le64toh(o->entry.monotonic);
ce3fd7e7 111 l->boot_id = o->entry.boot_id;
de190aef
LP
112 l->xor_hash = le64toh(o->entry.xor_hash);
113
114 l->seqnum_set = l->realtime_set = l->monotonic_set = l->xor_hash_set = true;
115}
116
87011c25
ZJS
117static void set_location(sd_journal *j, LocationType type, JournalFile *f, Object *o,
118 direction_t direction, uint64_t offset) {
de190aef 119 assert(j);
a87247dd 120 assert(type == LOCATION_DISCRETE || type == LOCATION_SEEK);
de190aef
LP
121 assert(f);
122 assert(o);
123
a87247dd 124 init_location(&j->current_location, type, f, o);
de190aef
LP
125
126 j->current_file = f;
127 j->current_field = 0;
128
87011c25 129 f->last_direction = direction;
de190aef
LP
130 f->current_offset = offset;
131}
132
cbdca852
LP
133static int match_is_valid(const void *data, size_t size) {
134 const char *b, *p;
135
136 assert(data);
137
138 if (size < 2)
139 return false;
140
141 if (startswith(data, "__"))
142 return false;
143
144 b = data;
145 for (p = b; p < b + size; p++) {
146
147 if (*p == '=')
148 return p > b;
149
150 if (*p == '_')
151 continue;
152
153 if (*p >= 'A' && *p <= 'Z')
154 continue;
155
156 if (*p >= '0' && *p <= '9')
157 continue;
158
159 return false;
160 }
161
162 return false;
163}
164
165static bool same_field(const void *_a, size_t s, const void *_b, size_t t) {
de190aef
LP
166 const uint8_t *a = _a, *b = _b;
167 size_t j;
de190aef
LP
168
169 for (j = 0; j < s && j < t; j++) {
170
de190aef 171 if (a[j] != b[j])
cbdca852 172 return false;
de190aef 173
cbdca852
LP
174 if (a[j] == '=')
175 return true;
de190aef
LP
176 }
177
bc302926 178 assert_not_reached("\"=\" not found");
cbdca852
LP
179}
180
181static Match *match_new(Match *p, MatchType t) {
182 Match *m;
183
184 m = new0(Match, 1);
185 if (!m)
186 return NULL;
187
188 m->type = t;
189
190 if (p) {
191 m->parent = p;
71fda00f 192 LIST_PREPEND(matches, p->matches, m);
cbdca852
LP
193 }
194
195 return m;
196}
197
198static void match_free(Match *m) {
199 assert(m);
200
201 while (m->matches)
202 match_free(m->matches);
203
204 if (m->parent)
71fda00f 205 LIST_REMOVE(matches, m->parent->matches, m);
cbdca852
LP
206
207 free(m->data);
208 free(m);
209}
210
211static void match_free_if_empty(Match *m) {
c5a10d9c 212 if (!m || m->matches)
cbdca852
LP
213 return;
214
215 match_free(m);
de190aef
LP
216}
217
a5344d2c 218_public_ int sd_journal_add_match(sd_journal *j, const void *data, size_t size) {
cd34b3c6 219 Match *l3, *l4, *add_here = NULL, *m;
4fd052ae 220 le64_t le_hash;
87d2c1ff 221
1ae464e0
TA
222 assert_return(j, -EINVAL);
223 assert_return(!journal_pid_changed(j), -ECHILD);
224 assert_return(data, -EINVAL);
cbdca852
LP
225
226 if (size == 0)
227 size = strlen(data);
228
1ae464e0 229 assert_return(match_is_valid(data, size), -EINVAL);
1cc101f1 230
cd34b3c6
HH
231 /* level 0: AND term
232 * level 1: OR terms
233 * level 2: AND terms
234 * level 3: OR terms
235 * level 4: concrete matches */
cbdca852
LP
236
237 if (!j->level0) {
cd34b3c6 238 j->level0 = match_new(NULL, MATCH_AND_TERM);
cbdca852
LP
239 if (!j->level0)
240 return -ENOMEM;
241 }
242
243 if (!j->level1) {
cd34b3c6 244 j->level1 = match_new(j->level0, MATCH_OR_TERM);
cbdca852
LP
245 if (!j->level1)
246 return -ENOMEM;
247 }
248
cd34b3c6
HH
249 if (!j->level2) {
250 j->level2 = match_new(j->level1, MATCH_AND_TERM);
251 if (!j->level2)
252 return -ENOMEM;
253 }
254
255 assert(j->level0->type == MATCH_AND_TERM);
256 assert(j->level1->type == MATCH_OR_TERM);
257 assert(j->level2->type == MATCH_AND_TERM);
ab4979d2 258
de190aef
LP
259 le_hash = htole64(hash64(data, size));
260
cd34b3c6
HH
261 LIST_FOREACH(matches, l3, j->level2->matches) {
262 assert(l3->type == MATCH_OR_TERM);
de190aef 263
cd34b3c6
HH
264 LIST_FOREACH(matches, l4, l3->matches) {
265 assert(l4->type == MATCH_DISCRETE);
de190aef 266
cbdca852
LP
267 /* Exactly the same match already? Then ignore
268 * this addition */
cd34b3c6
HH
269 if (l4->le_hash == le_hash &&
270 l4->size == size &&
271 memcmp(l4->data, data, size) == 0)
cbdca852
LP
272 return 0;
273
274 /* Same field? Then let's add this to this OR term */
cd34b3c6
HH
275 if (same_field(data, size, l4->data, l4->size)) {
276 add_here = l3;
cbdca852
LP
277 break;
278 }
279 }
280
281 if (add_here)
282 break;
de190aef
LP
283 }
284
cbdca852 285 if (!add_here) {
cd34b3c6 286 add_here = match_new(j->level2, MATCH_OR_TERM);
cbdca852
LP
287 if (!add_here)
288 goto fail;
289 }
290
291 m = match_new(add_here, MATCH_DISCRETE);
cec736d2 292 if (!m)
cbdca852 293 goto fail;
87d2c1ff 294
cbdca852 295 m->le_hash = le_hash;
1cc101f1 296 m->size = size;
cbdca852
LP
297 m->data = memdup(data, size);
298 if (!m->data)
299 goto fail;
300
301 detach_location(j);
302
303 return 0;
304
305fail:
c5a10d9c
ZJS
306 match_free_if_empty(add_here);
307 match_free_if_empty(j->level2);
308 match_free_if_empty(j->level1);
309 match_free_if_empty(j->level0);
cbdca852
LP
310
311 return -ENOMEM;
312}
313
cd34b3c6 314_public_ int sd_journal_add_conjunction(sd_journal *j) {
1ae464e0
TA
315 assert_return(j, -EINVAL);
316 assert_return(!journal_pid_changed(j), -ECHILD);
1cc101f1 317
cbdca852
LP
318 if (!j->level0)
319 return 0;
320
321 if (!j->level1)
322 return 0;
323
324 if (!j->level1->matches)
325 return 0;
326
cd34b3c6
HH
327 j->level1 = NULL;
328 j->level2 = NULL;
329
330 return 0;
331}
332
333_public_ int sd_journal_add_disjunction(sd_journal *j) {
1ae464e0
TA
334 assert_return(j, -EINVAL);
335 assert_return(!journal_pid_changed(j), -ECHILD);
cd34b3c6
HH
336
337 if (!j->level0)
338 return 0;
339
340 if (!j->level1)
341 return 0;
342
343 if (!j->level2)
344 return 0;
345
346 if (!j->level2->matches)
347 return 0;
cbdca852 348
cd34b3c6 349 j->level2 = NULL;
cbdca852
LP
350 return 0;
351}
352
353static char *match_make_string(Match *m) {
354 char *p, *r;
355 Match *i;
356 bool enclose = false;
357
358 if (!m)
4ad16808 359 return strdup("none");
cbdca852
LP
360
361 if (m->type == MATCH_DISCRETE)
362 return strndup(m->data, m->size);
363
364 p = NULL;
365 LIST_FOREACH(matches, i, m->matches) {
366 char *t, *k;
367
368 t = match_make_string(i);
369 if (!t) {
370 free(p);
371 return NULL;
372 }
373
374 if (p) {
b7def684 375 k = strjoin(p, m->type == MATCH_OR_TERM ? " OR " : " AND ", t, NULL);
cbdca852
LP
376 free(p);
377 free(t);
378
379 if (!k)
380 return NULL;
381
382 p = k;
383
384 enclose = true;
bc302926 385 } else
cbdca852 386 p = t;
87d2c1ff
LP
387 }
388
cbdca852 389 if (enclose) {
b7def684 390 r = strjoin("(", p, ")", NULL);
cbdca852
LP
391 free(p);
392 return r;
393 }
87d2c1ff 394
cbdca852
LP
395 return p;
396}
de7b95cd 397
cbdca852
LP
398char *journal_make_match_string(sd_journal *j) {
399 assert(j);
8f9b6cd9 400
cbdca852 401 return match_make_string(j->level0);
87d2c1ff
LP
402}
403
a5344d2c
LP
404_public_ void sd_journal_flush_matches(sd_journal *j) {
405 if (!j)
406 return;
87d2c1ff 407
cbdca852
LP
408 if (j->level0)
409 match_free(j->level0);
de7b95cd 410
cd34b3c6 411 j->level0 = j->level1 = j->level2 = NULL;
8f9b6cd9 412
de190aef 413 detach_location(j);
87d2c1ff
LP
414}
415
468b21de 416static int compare_entry_order(JournalFile *af, Object *_ao,
5afbe712 417 JournalFile *bf, uint64_t bp) {
87d2c1ff 418
cec736d2 419 uint64_t a, b;
468b21de
LP
420 Object *ao, *bo;
421 int r;
87d2c1ff 422
de190aef 423 assert(af);
de190aef 424 assert(bf);
468b21de
LP
425 assert(_ao);
426
427 /* The mmap cache might invalidate the object from the first
428 * file if we look at the one from the second file. Hence
429 * temporarily copy the header of the first one, and look at
430 * that only. */
431 ao = alloca(offsetof(EntryObject, items));
432 memcpy(ao, _ao, offsetof(EntryObject, items));
433
434 r = journal_file_move_to_object(bf, OBJECT_ENTRY, bp, &bo);
435 if (r < 0)
436 return strcmp(af->path, bf->path);
de190aef 437
ae2cc8ef 438 /* We operate on two different files here, hence we can access
1cc101f1
LP
439 * two objects at the same time, which we normally can't.
440 *
441 * If contents and timestamps match, these entries are
442 * identical, even if the seqnum does not match */
443
444 if (sd_id128_equal(ao->entry.boot_id, bo->entry.boot_id) &&
445 ao->entry.monotonic == bo->entry.monotonic &&
446 ao->entry.realtime == bo->entry.realtime &&
447 ao->entry.xor_hash == bo->entry.xor_hash)
448 return 0;
ae2cc8ef 449
cec736d2 450 if (sd_id128_equal(af->header->seqnum_id, bf->header->seqnum_id)) {
87d2c1ff 451
cec736d2
LP
452 /* If this is from the same seqnum source, compare
453 * seqnums */
454 a = le64toh(ao->entry.seqnum);
455 b = le64toh(bo->entry.seqnum);
87d2c1ff 456
ae2cc8ef
LP
457 if (a < b)
458 return -1;
459 if (a > b)
460 return 1;
1cc101f1
LP
461
462 /* Wow! This is weird, different data but the same
463 * seqnums? Something is borked, but let's make the
464 * best of it and compare by time. */
ae2cc8ef 465 }
87d2c1ff 466
ae2cc8ef 467 if (sd_id128_equal(ao->entry.boot_id, bo->entry.boot_id)) {
87d2c1ff 468
73e231ab 469 /* If the boot id matches, compare monotonic time */
cec736d2
LP
470 a = le64toh(ao->entry.monotonic);
471 b = le64toh(bo->entry.monotonic);
87d2c1ff 472
ae2cc8ef
LP
473 if (a < b)
474 return -1;
475 if (a > b)
476 return 1;
87d2c1ff
LP
477 }
478
73e231ab 479 /* Otherwise, compare UTC time */
ae2cc8ef 480 a = le64toh(ao->entry.realtime);
c4aff78b 481 b = le64toh(bo->entry.realtime);
ae2cc8ef
LP
482
483 if (a < b)
484 return -1;
485 if (a > b)
486 return 1;
487
488 /* Finally, compare by contents */
489 a = le64toh(ao->entry.xor_hash);
c4aff78b 490 b = le64toh(bo->entry.xor_hash);
ae2cc8ef
LP
491
492 if (a < b)
493 return -1;
494 if (a > b)
495 return 1;
496
497 return 0;
87d2c1ff
LP
498}
499
44a6b1b6 500_pure_ static int compare_with_location(JournalFile *af, Object *ao, Location *l) {
de190aef
LP
501 uint64_t a;
502
503 assert(af);
504 assert(ao);
505 assert(l);
a87247dd 506 assert(l->type == LOCATION_DISCRETE || l->type == LOCATION_SEEK);
de190aef
LP
507
508 if (l->monotonic_set &&
509 sd_id128_equal(ao->entry.boot_id, l->boot_id) &&
510 l->realtime_set &&
511 le64toh(ao->entry.realtime) == l->realtime &&
512 l->xor_hash_set &&
513 le64toh(ao->entry.xor_hash) == l->xor_hash)
514 return 0;
515
516 if (l->seqnum_set &&
517 sd_id128_equal(af->header->seqnum_id, l->seqnum_id)) {
518
519 a = le64toh(ao->entry.seqnum);
520
521 if (a < l->seqnum)
522 return -1;
523 if (a > l->seqnum)
524 return 1;
525 }
526
527 if (l->monotonic_set &&
528 sd_id128_equal(ao->entry.boot_id, l->boot_id)) {
529
530 a = le64toh(ao->entry.monotonic);
531
532 if (a < l->monotonic)
533 return -1;
534 if (a > l->monotonic)
535 return 1;
536 }
537
538 if (l->realtime_set) {
539
540 a = le64toh(ao->entry.realtime);
541
542 if (a < l->realtime)
543 return -1;
544 if (a > l->realtime)
545 return 1;
546 }
547
548 if (l->xor_hash_set) {
549 a = le64toh(ao->entry.xor_hash);
550
551 if (a < l->xor_hash)
552 return -1;
553 if (a > l->xor_hash)
554 return 1;
555 }
556
557 return 0;
558}
559
cbdca852
LP
560static int next_for_match(
561 sd_journal *j,
562 Match *m,
563 JournalFile *f,
564 uint64_t after_offset,
565 direction_t direction,
566 Object **ret,
567 uint64_t *offset) {
568
de7b95cd 569 int r;
cbdca852
LP
570 uint64_t np = 0;
571 Object *n;
de7b95cd
LP
572
573 assert(j);
cbdca852
LP
574 assert(m);
575 assert(f);
de7b95cd 576
cbdca852
LP
577 if (m->type == MATCH_DISCRETE) {
578 uint64_t dp;
de190aef 579
cbdca852 580 r = journal_file_find_data_object_with_hash(f, m->data, m->size, le64toh(m->le_hash), NULL, &dp);
de190aef
LP
581 if (r <= 0)
582 return r;
583
cbdca852 584 return journal_file_move_to_entry_by_offset_for_data(f, dp, after_offset, direction, ret, offset);
de190aef 585
cbdca852
LP
586 } else if (m->type == MATCH_OR_TERM) {
587 Match *i;
de7b95cd 588
cbdca852 589 /* Find the earliest match beyond after_offset */
de190aef 590
cbdca852
LP
591 LIST_FOREACH(matches, i, m->matches) {
592 uint64_t cp;
de190aef 593
cbdca852 594 r = next_for_match(j, i, f, after_offset, direction, NULL, &cp);
b4e5f920
LP
595 if (r < 0)
596 return r;
cbdca852 597 else if (r > 0) {
bc302926 598 if (np == 0 || (direction == DIRECTION_DOWN ? cp < np : cp > np))
cbdca852
LP
599 np = cp;
600 }
601 }
b4e5f920 602
bc302926
ZJS
603 if (np == 0)
604 return 0;
605
cbdca852 606 } else if (m->type == MATCH_AND_TERM) {
2bc8ca0c 607 Match *i, *last_moved;
de190aef 608
cbdca852 609 /* Always jump to the next matching entry and repeat
2bc8ca0c 610 * this until we find an offset that matches for all
cbdca852 611 * matches. */
de190aef 612
cbdca852
LP
613 if (!m->matches)
614 return 0;
de7b95cd 615
2bc8ca0c
ZJS
616 r = next_for_match(j, m->matches, f, after_offset, direction, NULL, &np);
617 if (r <= 0)
618 return r;
de190aef 619
2bc8ca0c
ZJS
620 assert(direction == DIRECTION_DOWN ? np >= after_offset : np <= after_offset);
621 last_moved = m->matches;
de190aef 622
2bc8ca0c
ZJS
623 LIST_LOOP_BUT_ONE(matches, i, m->matches, last_moved) {
624 uint64_t cp;
de190aef 625
2bc8ca0c
ZJS
626 r = next_for_match(j, i, f, np, direction, NULL, &cp);
627 if (r <= 0)
628 return r;
de190aef 629
2bc8ca0c
ZJS
630 assert(direction == DIRECTION_DOWN ? cp >= np : cp <= np);
631 if (direction == DIRECTION_DOWN ? cp > np : cp < np) {
632 np = cp;
633 last_moved = i;
de190aef 634 }
2bc8ca0c 635 }
cbdca852 636 }
de190aef 637
bc302926 638 assert(np > 0);
de190aef 639
cbdca852
LP
640 r = journal_file_move_to_object(f, OBJECT_ENTRY, np, &n);
641 if (r < 0)
642 return r;
de7b95cd 643
de190aef 644 if (ret)
cbdca852 645 *ret = n;
de190aef 646 if (offset)
cbdca852 647 *offset = np;
de190aef
LP
648
649 return 1;
650}
651
cbdca852
LP
652static int find_location_for_match(
653 sd_journal *j,
654 Match *m,
655 JournalFile *f,
656 direction_t direction,
657 Object **ret,
658 uint64_t *offset) {
659
de190aef 660 int r;
de190aef
LP
661
662 assert(j);
cbdca852 663 assert(m);
de190aef 664 assert(f);
de190aef 665
cbdca852
LP
666 if (m->type == MATCH_DISCRETE) {
667 uint64_t dp;
de190aef 668
cbdca852 669 r = journal_file_find_data_object_with_hash(f, m->data, m->size, le64toh(m->le_hash), NULL, &dp);
de7b95cd
LP
670 if (r <= 0)
671 return r;
672
cbdca852 673 /* FIXME: missing: find by monotonic */
de7b95cd 674
cbdca852
LP
675 if (j->current_location.type == LOCATION_HEAD)
676 return journal_file_next_entry_for_data(f, NULL, 0, dp, DIRECTION_DOWN, ret, offset);
677 if (j->current_location.type == LOCATION_TAIL)
678 return journal_file_next_entry_for_data(f, NULL, 0, dp, DIRECTION_UP, ret, offset);
679 if (j->current_location.seqnum_set && sd_id128_equal(j->current_location.seqnum_id, f->header->seqnum_id))
680 return journal_file_move_to_entry_by_seqnum_for_data(f, dp, j->current_location.seqnum, direction, ret, offset);
681 if (j->current_location.monotonic_set) {
682 r = journal_file_move_to_entry_by_monotonic_for_data(f, dp, j->current_location.boot_id, j->current_location.monotonic, direction, ret, offset);
683 if (r != -ENOENT)
684 return r;
685 }
686 if (j->current_location.realtime_set)
687 return journal_file_move_to_entry_by_realtime_for_data(f, dp, j->current_location.realtime, direction, ret, offset);
de190aef 688
cbdca852 689 return journal_file_next_entry_for_data(f, NULL, 0, dp, direction, ret, offset);
de7b95cd 690
cbdca852
LP
691 } else if (m->type == MATCH_OR_TERM) {
692 uint64_t np = 0;
693 Object *n;
694 Match *i;
de7b95cd 695
cbdca852 696 /* Find the earliest match */
de7b95cd 697
cbdca852
LP
698 LIST_FOREACH(matches, i, m->matches) {
699 uint64_t cp;
700
701 r = find_location_for_match(j, i, f, direction, NULL, &cp);
702 if (r < 0)
703 return r;
704 else if (r > 0) {
705 if (np == 0 || (direction == DIRECTION_DOWN ? np > cp : np < cp))
706 np = cp;
de190aef 707 }
cbdca852 708 }
de190aef 709
cbdca852
LP
710 if (np == 0)
711 return 0;
de7b95cd 712
cbdca852
LP
713 r = journal_file_move_to_object(f, OBJECT_ENTRY, np, &n);
714 if (r < 0)
715 return r;
de7b95cd 716
cbdca852
LP
717 if (ret)
718 *ret = n;
719 if (offset)
720 *offset = np;
de190aef 721
cbdca852 722 return 1;
e892bd17 723
cbdca852
LP
724 } else {
725 Match *i;
726 uint64_t np = 0;
727
728 assert(m->type == MATCH_AND_TERM);
729
730 /* First jump to the last match, and then find the
731 * next one where all matches match */
732
733 if (!m->matches)
734 return 0;
735
736 LIST_FOREACH(matches, i, m->matches) {
737 uint64_t cp;
738
739 r = find_location_for_match(j, i, f, direction, NULL, &cp);
740 if (r <= 0)
4b067dc9
LP
741 return r;
742
bc302926 743 if (np == 0 || (direction == DIRECTION_DOWN ? cp > np : cp < np))
cbdca852 744 np = cp;
de7b95cd
LP
745 }
746
cbdca852
LP
747 return next_for_match(j, m, f, np, direction, ret, offset);
748 }
749}
de190aef 750
cbdca852
LP
751static int find_location_with_matches(
752 sd_journal *j,
753 JournalFile *f,
754 direction_t direction,
755 Object **ret,
756 uint64_t *offset) {
757
758 int r;
759
760 assert(j);
761 assert(f);
762 assert(ret);
763 assert(offset);
764
765 if (!j->level0) {
766 /* No matches is simple */
767
768 if (j->current_location.type == LOCATION_HEAD)
769 return journal_file_next_entry(f, NULL, 0, DIRECTION_DOWN, ret, offset);
770 if (j->current_location.type == LOCATION_TAIL)
771 return journal_file_next_entry(f, NULL, 0, DIRECTION_UP, ret, offset);
772 if (j->current_location.seqnum_set && sd_id128_equal(j->current_location.seqnum_id, f->header->seqnum_id))
773 return journal_file_move_to_entry_by_seqnum(f, j->current_location.seqnum, direction, ret, offset);
774 if (j->current_location.monotonic_set) {
775 r = journal_file_move_to_entry_by_monotonic(f, j->current_location.boot_id, j->current_location.monotonic, direction, ret, offset);
776 if (r != -ENOENT)
777 return r;
de7b95cd 778 }
cbdca852
LP
779 if (j->current_location.realtime_set)
780 return journal_file_move_to_entry_by_realtime(f, j->current_location.realtime, direction, ret, offset);
de7b95cd 781
cbdca852
LP
782 return journal_file_next_entry(f, NULL, 0, direction, ret, offset);
783 } else
784 return find_location_for_match(j, j->level0, f, direction, ret, offset);
785}
de7b95cd 786
cbdca852
LP
787static int next_with_matches(
788 sd_journal *j,
789 JournalFile *f,
790 direction_t direction,
791 Object **ret,
792 uint64_t *offset) {
793
794 Object *c;
795 uint64_t cp;
796
797 assert(j);
798 assert(f);
799 assert(ret);
800 assert(offset);
801
802 c = *ret;
803 cp = *offset;
804
805 /* No matches is easy. We simple advance the file
806 * pointer by one. */
807 if (!j->level0)
808 return journal_file_next_entry(f, c, cp, direction, ret, offset);
809
810 /* If we have a match then we look for the next matching entry
49f43d5f 811 * with an offset at least one step larger */
cbdca852 812 return next_for_match(j, j->level0, f, direction == DIRECTION_DOWN ? cp+1 : cp-1, direction, ret, offset);
de7b95cd
LP
813}
814
de190aef
LP
815static int next_beyond_location(sd_journal *j, JournalFile *f, direction_t direction, Object **ret, uint64_t *offset) {
816 Object *c;
817 uint64_t cp;
cbdca852 818 int r;
de190aef
LP
819
820 assert(j);
821 assert(f);
822
87011c25 823 if (f->last_direction == direction && f->current_offset > 0) {
466ccd92
LP
824 cp = f->current_offset;
825
826 r = journal_file_move_to_object(f, OBJECT_ENTRY, cp, &c);
de190aef
LP
827 if (r < 0)
828 return r;
829
de190aef
LP
830 r = next_with_matches(j, f, direction, &c, &cp);
831 if (r <= 0)
832 return r;
de190aef 833 } else {
cbdca852 834 r = find_location_with_matches(j, f, direction, &c, &cp);
de190aef
LP
835 if (r <= 0)
836 return r;
de190aef
LP
837 }
838
bc302926 839 /* OK, we found the spot, now let's advance until an entry
cbdca852
LP
840 * that is actually different from what we were previously
841 * looking at. This is necessary to handle entries which exist
842 * in two (or more) journal files, and which shall all be
843 * suppressed but one. */
844
de190aef
LP
845 for (;;) {
846 bool found;
847
848 if (j->current_location.type == LOCATION_DISCRETE) {
849 int k;
850
851 k = compare_with_location(f, c, &j->current_location);
852 if (direction == DIRECTION_DOWN)
cbdca852 853 found = k > 0;
de190aef 854 else
cbdca852 855 found = k < 0;
de190aef
LP
856 } else
857 found = true;
858
859 if (found) {
860 if (ret)
861 *ret = c;
862 if (offset)
863 *offset = cp;
864 return 1;
865 }
866
867 r = next_with_matches(j, f, direction, &c, &cp);
868 if (r <= 0)
869 return r;
870 }
871}
872
e892bd17 873static int real_journal_next(sd_journal *j, direction_t direction) {
468b21de
LP
874 JournalFile *f, *new_file = NULL;
875 uint64_t new_offset = 0;
a002d44b 876 uint64_t p = 0;
cec736d2 877 Iterator i;
a002d44b 878 Object *o;
87d2c1ff
LP
879 int r;
880
1ae464e0
TA
881 assert_return(j, -EINVAL);
882 assert_return(!journal_pid_changed(j), -ECHILD);
87d2c1ff 883
cec736d2 884 HASHMAP_FOREACH(f, j->files, i) {
de190aef 885 bool found;
87d2c1ff 886
de190aef 887 r = next_beyond_location(j, f, direction, &o, &p);
e590af26
LP
888 if (r < 0) {
889 log_debug("Can't iterate through %s, ignoring: %s", f->path, strerror(-r));
a9a245c1 890 remove_file_real(j, f);
e590af26
LP
891 continue;
892 } else if (r == 0)
cec736d2 893 continue;
87d2c1ff 894
468b21de 895 if (!new_file)
de190aef
LP
896 found = true;
897 else {
898 int k;
899
468b21de 900 k = compare_entry_order(f, o, new_file, new_offset);
de190aef 901
bc302926 902 found = direction == DIRECTION_DOWN ? k < 0 : k > 0;
de190aef
LP
903 }
904
905 if (found) {
468b21de 906 new_file = f;
cec736d2 907 new_offset = p;
87d2c1ff 908 }
87d2c1ff
LP
909 }
910
468b21de 911 if (!new_file)
de190aef 912 return 0;
ae2cc8ef 913
468b21de
LP
914 r = journal_file_move_to_object(new_file, OBJECT_ENTRY, new_offset, &o);
915 if (r < 0)
916 return r;
917
87011c25 918 set_location(j, LOCATION_DISCRETE, new_file, o, direction, new_offset);
ae2cc8ef 919
de190aef
LP
920 return 1;
921}
ae2cc8ef 922
a5344d2c 923_public_ int sd_journal_next(sd_journal *j) {
de190aef
LP
924 return real_journal_next(j, DIRECTION_DOWN);
925}
ae2cc8ef 926
a5344d2c 927_public_ int sd_journal_previous(sd_journal *j) {
de190aef
LP
928 return real_journal_next(j, DIRECTION_UP);
929}
ae2cc8ef 930
6f003b43 931static int real_journal_next_skip(sd_journal *j, direction_t direction, uint64_t skip) {
de190aef 932 int c = 0, r;
ae2cc8ef 933
1ae464e0
TA
934 assert_return(j, -EINVAL);
935 assert_return(!journal_pid_changed(j), -ECHILD);
de190aef 936
6f003b43
LP
937 if (skip == 0) {
938 /* If this is not a discrete skip, then at least
939 * resolve the current location */
940 if (j->current_location.type != LOCATION_DISCRETE)
941 return real_journal_next(j, direction);
942
943 return 0;
944 }
945
946 do {
947 r = real_journal_next(j, direction);
de190aef
LP
948 if (r < 0)
949 return r;
950
951 if (r == 0)
952 return c;
953
954 skip--;
955 c++;
6f003b43 956 } while (skip > 0);
87d2c1ff 957
de190aef 958 return c;
87d2c1ff
LP
959}
960
6f003b43
LP
961_public_ int sd_journal_next_skip(sd_journal *j, uint64_t skip) {
962 return real_journal_next_skip(j, DIRECTION_DOWN, skip);
963}
de190aef 964
6f003b43
LP
965_public_ int sd_journal_previous_skip(sd_journal *j, uint64_t skip) {
966 return real_journal_next_skip(j, DIRECTION_UP, skip);
87d2c1ff
LP
967}
968
a5344d2c 969_public_ int sd_journal_get_cursor(sd_journal *j, char **cursor) {
cec736d2 970 Object *o;
87d2c1ff 971 int r;
3fbf9cbb 972 char bid[33], sid[33];
87d2c1ff 973
1ae464e0
TA
974 assert_return(j, -EINVAL);
975 assert_return(!journal_pid_changed(j), -ECHILD);
976 assert_return(cursor, -EINVAL);
87d2c1ff 977
3fbf9cbb
LP
978 if (!j->current_file || j->current_file->current_offset <= 0)
979 return -EADDRNOTAVAIL;
87d2c1ff 980
de190aef 981 r = journal_file_move_to_object(j->current_file, OBJECT_ENTRY, j->current_file->current_offset, &o);
87d2c1ff
LP
982 if (r < 0)
983 return r;
984
3fbf9cbb
LP
985 sd_id128_to_string(j->current_file->header->seqnum_id, sid);
986 sd_id128_to_string(o->entry.boot_id, bid);
87d2c1ff 987
3fbf9cbb 988 if (asprintf(cursor,
507f22bd
ZJS
989 "s=%s;i=%"PRIx64";b=%s;m=%"PRIx64";t=%"PRIx64";x=%"PRIx64,
990 sid, le64toh(o->entry.seqnum),
991 bid, le64toh(o->entry.monotonic),
992 le64toh(o->entry.realtime),
993 le64toh(o->entry.xor_hash)) < 0)
3fbf9cbb 994 return -ENOMEM;
87d2c1ff 995
6f47ad30 996 return 0;
87d2c1ff
LP
997}
998
a5344d2c 999_public_ int sd_journal_seek_cursor(sd_journal *j, const char *cursor) {
a2a5291b 1000 const char *word, *state;
de190aef 1001 size_t l;
de190aef
LP
1002 unsigned long long seqnum, monotonic, realtime, xor_hash;
1003 bool
1004 seqnum_id_set = false,
1005 seqnum_set = false,
1006 boot_id_set = false,
1007 monotonic_set = false,
1008 realtime_set = false,
1009 xor_hash_set = false;
1010 sd_id128_t seqnum_id, boot_id;
1011
1ae464e0
TA
1012 assert_return(j, -EINVAL);
1013 assert_return(!journal_pid_changed(j), -ECHILD);
1014 assert_return(!isempty(cursor), -EINVAL);
de190aef 1015
a2a5291b 1016 FOREACH_WORD_SEPARATOR(word, l, cursor, ";", state) {
de190aef
LP
1017 char *item;
1018 int k = 0;
1019
a2a5291b 1020 if (l < 2 || word[1] != '=')
de190aef
LP
1021 return -EINVAL;
1022
a2a5291b 1023 item = strndup(word, l);
de190aef
LP
1024 if (!item)
1025 return -ENOMEM;
1026
a2a5291b 1027 switch (word[0]) {
de190aef
LP
1028
1029 case 's':
1030 seqnum_id_set = true;
be3ea5ea 1031 k = sd_id128_from_string(item+2, &seqnum_id);
de190aef
LP
1032 break;
1033
1034 case 'i':
1035 seqnum_set = true;
be3ea5ea 1036 if (sscanf(item+2, "%llx", &seqnum) != 1)
de190aef
LP
1037 k = -EINVAL;
1038 break;
1039
1040 case 'b':
1041 boot_id_set = true;
be3ea5ea 1042 k = sd_id128_from_string(item+2, &boot_id);
de190aef
LP
1043 break;
1044
1045 case 'm':
1046 monotonic_set = true;
be3ea5ea 1047 if (sscanf(item+2, "%llx", &monotonic) != 1)
de190aef
LP
1048 k = -EINVAL;
1049 break;
1050
1051 case 't':
1052 realtime_set = true;
be3ea5ea 1053 if (sscanf(item+2, "%llx", &realtime) != 1)
de190aef
LP
1054 k = -EINVAL;
1055 break;
1056
1057 case 'x':
1058 xor_hash_set = true;
be3ea5ea 1059 if (sscanf(item+2, "%llx", &xor_hash) != 1)
de190aef
LP
1060 k = -EINVAL;
1061 break;
1062 }
1063
1064 free(item);
1065
1066 if (k < 0)
1067 return k;
1068 }
1069
1070 if ((!seqnum_set || !seqnum_id_set) &&
1071 (!monotonic_set || !boot_id_set) &&
1072 !realtime_set)
1073 return -EINVAL;
1074
1075 reset_location(j);
1076
a87247dd 1077 j->current_location.type = LOCATION_SEEK;
de190aef
LP
1078
1079 if (realtime_set) {
1080 j->current_location.realtime = (uint64_t) realtime;
1081 j->current_location.realtime_set = true;
1082 }
1083
1084 if (seqnum_set && seqnum_id_set) {
1085 j->current_location.seqnum = (uint64_t) seqnum;
1086 j->current_location.seqnum_id = seqnum_id;
1087 j->current_location.seqnum_set = true;
1088 }
1089
1090 if (monotonic_set && boot_id_set) {
1091 j->current_location.monotonic = (uint64_t) monotonic;
1092 j->current_location.boot_id = boot_id;
1093 j->current_location.monotonic_set = true;
1094 }
1095
1096 if (xor_hash_set) {
1097 j->current_location.xor_hash = (uint64_t) xor_hash;
1098 j->current_location.xor_hash_set = true;
1099 }
1100
1101 return 0;
1102}
1103
c6511e85
LP
1104_public_ int sd_journal_test_cursor(sd_journal *j, const char *cursor) {
1105 int r;
a2a5291b 1106 const char *word, *state;
c6511e85
LP
1107 size_t l;
1108 Object *o;
1109
1ae464e0
TA
1110 assert_return(j, -EINVAL);
1111 assert_return(!journal_pid_changed(j), -ECHILD);
1112 assert_return(!isempty(cursor), -EINVAL);
c6511e85
LP
1113
1114 if (!j->current_file || j->current_file->current_offset <= 0)
1115 return -EADDRNOTAVAIL;
1116
1117 r = journal_file_move_to_object(j->current_file, OBJECT_ENTRY, j->current_file->current_offset, &o);
1118 if (r < 0)
1119 return r;
1120
a2a5291b 1121 FOREACH_WORD_SEPARATOR(word, l, cursor, ";", state) {
c6511e85
LP
1122 _cleanup_free_ char *item = NULL;
1123 sd_id128_t id;
1124 unsigned long long ll;
1125 int k = 0;
1126
a2a5291b 1127 if (l < 2 || word[1] != '=')
c6511e85
LP
1128 return -EINVAL;
1129
a2a5291b 1130 item = strndup(word, l);
c6511e85
LP
1131 if (!item)
1132 return -ENOMEM;
1133
a2a5291b 1134 switch (word[0]) {
c6511e85
LP
1135
1136 case 's':
1137 k = sd_id128_from_string(item+2, &id);
1138 if (k < 0)
1139 return k;
1140 if (!sd_id128_equal(id, j->current_file->header->seqnum_id))
1141 return 0;
1142 break;
1143
1144 case 'i':
1145 if (sscanf(item+2, "%llx", &ll) != 1)
1146 return -EINVAL;
1147 if (ll != le64toh(o->entry.seqnum))
1148 return 0;
1149 break;
1150
1151 case 'b':
1152 k = sd_id128_from_string(item+2, &id);
1153 if (k < 0)
1154 return k;
1155 if (!sd_id128_equal(id, o->entry.boot_id))
1156 return 0;
1157 break;
1158
1159 case 'm':
1160 if (sscanf(item+2, "%llx", &ll) != 1)
1161 return -EINVAL;
1162 if (ll != le64toh(o->entry.monotonic))
1163 return 0;
1164 break;
1165
1166 case 't':
1167 if (sscanf(item+2, "%llx", &ll) != 1)
1168 return -EINVAL;
1169 if (ll != le64toh(o->entry.realtime))
1170 return 0;
1171 break;
1172
1173 case 'x':
1174 if (sscanf(item+2, "%llx", &ll) != 1)
1175 return -EINVAL;
1176 if (ll != le64toh(o->entry.xor_hash))
1177 return 0;
1178 break;
1179 }
1180 }
1181
1182 return 1;
1183}
1184
1185
a5344d2c 1186_public_ int sd_journal_seek_monotonic_usec(sd_journal *j, sd_id128_t boot_id, uint64_t usec) {
1ae464e0
TA
1187 assert_return(j, -EINVAL);
1188 assert_return(!journal_pid_changed(j), -ECHILD);
de190aef
LP
1189
1190 reset_location(j);
a87247dd 1191 j->current_location.type = LOCATION_SEEK;
de190aef
LP
1192 j->current_location.boot_id = boot_id;
1193 j->current_location.monotonic = usec;
1194 j->current_location.monotonic_set = true;
1195
1196 return 0;
1197}
1198
a5344d2c 1199_public_ int sd_journal_seek_realtime_usec(sd_journal *j, uint64_t usec) {
1ae464e0
TA
1200 assert_return(j, -EINVAL);
1201 assert_return(!journal_pid_changed(j), -ECHILD);
de190aef
LP
1202
1203 reset_location(j);
a87247dd 1204 j->current_location.type = LOCATION_SEEK;
de190aef
LP
1205 j->current_location.realtime = usec;
1206 j->current_location.realtime_set = true;
1207
1208 return 0;
1209}
1210
a5344d2c 1211_public_ int sd_journal_seek_head(sd_journal *j) {
1ae464e0
TA
1212 assert_return(j, -EINVAL);
1213 assert_return(!journal_pid_changed(j), -ECHILD);
de190aef
LP
1214
1215 reset_location(j);
1216 j->current_location.type = LOCATION_HEAD;
1217
1218 return 0;
1219}
1220
a5344d2c 1221_public_ int sd_journal_seek_tail(sd_journal *j) {
1ae464e0
TA
1222 assert_return(j, -EINVAL);
1223 assert_return(!journal_pid_changed(j), -ECHILD);
de190aef
LP
1224
1225 reset_location(j);
1226 j->current_location.type = LOCATION_TAIL;
1227
1228 return 0;
87d2c1ff
LP
1229}
1230
85210bff
LP
1231static void check_network(sd_journal *j, int fd) {
1232 struct statfs sfs;
1233
1234 assert(j);
1235
1236 if (j->on_network)
1237 return;
1238
1239 if (fstatfs(fd, &sfs) < 0)
1240 return;
1241
1242 j->on_network =
c51cf056
ZJS
1243 F_TYPE_EQUAL(sfs.f_type, CIFS_MAGIC_NUMBER) ||
1244 F_TYPE_EQUAL(sfs.f_type, CODA_SUPER_MAGIC) ||
1245 F_TYPE_EQUAL(sfs.f_type, NCP_SUPER_MAGIC) ||
1246 F_TYPE_EQUAL(sfs.f_type, NFS_SUPER_MAGIC) ||
1247 F_TYPE_EQUAL(sfs.f_type, SMB_SUPER_MAGIC);
85210bff
LP
1248}
1249
a688baa8
ZJS
1250static bool file_has_type_prefix(const char *prefix, const char *filename) {
1251 const char *full, *tilded, *atted;
1252
baabc091 1253 full = strappenda(prefix, ".journal");
a688baa8
ZJS
1254 tilded = strappenda(full, "~");
1255 atted = strappenda(prefix, "@");
1256
1257 return streq(filename, full) ||
1258 streq(filename, tilded) ||
1259 startswith(filename, atted);
1260}
1261
1262static bool file_type_wanted(int flags, const char *filename) {
1263 if (!endswith(filename, ".journal") && !endswith(filename, ".journal~"))
1264 return false;
1265
1266 /* no flags set → every type is OK */
1267 if (!(flags & (SD_JOURNAL_SYSTEM | SD_JOURNAL_CURRENT_USER)))
1268 return true;
1269
1270 if (flags & SD_JOURNAL_SYSTEM && file_has_type_prefix("system", filename))
1271 return true;
1272
1273 if (flags & SD_JOURNAL_CURRENT_USER) {
1274 char prefix[5 + DECIMAL_STR_MAX(uid_t) + 1];
1275
de0671ee 1276 assert_se(snprintf(prefix, sizeof(prefix), "user-"UID_FMT, getuid())
a688baa8
ZJS
1277 < (int) sizeof(prefix));
1278
1279 if (file_has_type_prefix(prefix, filename))
1280 return true;
1281 }
1282
1283 return false;
1284}
1285
5302ebe1 1286static int add_any_file(sd_journal *j, const char *path) {
39883f62 1287 JournalFile *f = NULL;
5302ebe1 1288 int r;
3fbf9cbb
LP
1289
1290 assert(j);
5302ebe1 1291 assert(path);
3fbf9cbb 1292
a50d7d43 1293 if (hashmap_get(j->files, path))
50f20cfd 1294 return 0;
50f20cfd
LP
1295
1296 if (hashmap_size(j->files) >= JOURNAL_FILES_MAX) {
5302ebe1 1297 log_warning("Too many open journal files, not adding %s.", path);
3ac251b8 1298 return set_put_error(j, -ETOOMANYREFS);
50f20cfd
LP
1299 }
1300
16e9f408 1301 r = journal_file_open(path, O_RDONLY, 0, false, false, NULL, j->mmap, NULL, &f);
5302ebe1 1302 if (r < 0)
3fbf9cbb 1303 return r;
3fbf9cbb 1304
72f59706 1305 /* journal_file_dump(f); */
de190aef 1306
3fbf9cbb
LP
1307 r = hashmap_put(j->files, f->path, f);
1308 if (r < 0) {
1309 journal_file_close(f);
1310 return r;
1311 }
1312
5ec76417 1313 log_debug("File %s added.", f->path);
a50d7d43 1314
85210bff
LP
1315 check_network(j, f->fd);
1316
a963990f
LP
1317 j->current_invalidate_counter ++;
1318
50f20cfd
LP
1319 return 0;
1320}
1321
5302ebe1
ZJS
1322static int add_file(sd_journal *j, const char *prefix, const char *filename) {
1323 _cleanup_free_ char *path = NULL;
1324 int r;
1325
1326 assert(j);
1327 assert(prefix);
1328 assert(filename);
1329
1330 if (j->no_new_files ||
1331 !file_type_wanted(j->flags, filename))
1332 return 0;
1333
1334 path = strjoin(prefix, "/", filename, NULL);
1335 if (!path)
1336 return -ENOMEM;
1337
1338 r = add_any_file(j, path);
1339 if (r == -ENOENT)
1340 return 0;
1341 return 0;
1342}
1343
a963990f 1344static int remove_file(sd_journal *j, const char *prefix, const char *filename) {
a9a245c1 1345 _cleanup_free_ char *path;
50f20cfd
LP
1346 JournalFile *f;
1347
1348 assert(j);
1349 assert(prefix);
1350 assert(filename);
1351
b7def684 1352 path = strjoin(prefix, "/", filename, NULL);
a963990f 1353 if (!path)
50f20cfd
LP
1354 return -ENOMEM;
1355
a963990f 1356 f = hashmap_get(j->files, path);
50f20cfd
LP
1357 if (!f)
1358 return 0;
1359
a9a245c1
ZJS
1360 remove_file_real(j, f);
1361 return 0;
1362}
1363
1364static void remove_file_real(sd_journal *j, JournalFile *f) {
1365 assert(j);
1366 assert(f);
1367
50f20cfd 1368 hashmap_remove(j->files, f->path);
44a5fa34 1369
5ec76417 1370 log_debug("File %s removed.", f->path);
44a5fa34 1371
3c1668da
LP
1372 if (j->current_file == f) {
1373 j->current_file = NULL;
1374 j->current_field = 0;
1375 }
1376
1377 if (j->unique_file == f) {
1378 j->unique_file = NULL;
1379 j->unique_offset = 0;
1380 }
1381
50f20cfd
LP
1382 journal_file_close(f);
1383
a963990f 1384 j->current_invalidate_counter ++;
3fbf9cbb
LP
1385}
1386
a963990f 1387static int add_directory(sd_journal *j, const char *prefix, const char *dirname) {
7fd1b19b 1388 _cleanup_free_ char *path = NULL;
3fbf9cbb 1389 int r;
7fd1b19b 1390 _cleanup_closedir_ DIR *d = NULL;
cf244689 1391 sd_id128_t id, mid;
a963990f 1392 Directory *m;
3fbf9cbb
LP
1393
1394 assert(j);
1395 assert(prefix);
a963990f 1396 assert(dirname);
3fbf9cbb 1397
d95b1fb3
ZJS
1398 log_debug("Considering %s/%s.", prefix, dirname);
1399
cf244689 1400 if ((j->flags & SD_JOURNAL_LOCAL_ONLY) &&
a963990f 1401 (sd_id128_from_string(dirname, &id) < 0 ||
cf244689 1402 sd_id128_get_machine(&mid) < 0 ||
d95b1fb3 1403 !(sd_id128_equal(id, mid) || path_startswith(prefix, "/run"))))
cf244689
LP
1404 return 0;
1405
b7def684 1406 path = strjoin(prefix, "/", dirname, NULL);
a963990f 1407 if (!path)
3fbf9cbb
LP
1408 return -ENOMEM;
1409
a963990f 1410 d = opendir(path);
3fbf9cbb 1411 if (!d) {
a963990f 1412 log_debug("Failed to open %s: %m", path);
3fbf9cbb
LP
1413 if (errno == ENOENT)
1414 return 0;
3fbf9cbb
LP
1415 return -errno;
1416 }
1417
a963990f
LP
1418 m = hashmap_get(j->directories_by_path, path);
1419 if (!m) {
1420 m = new0(Directory, 1);
a50d7d43 1421 if (!m)
a963990f 1422 return -ENOMEM;
a963990f
LP
1423
1424 m->is_root = false;
1425 m->path = path;
1426
1427 if (hashmap_put(j->directories_by_path, m->path, m) < 0) {
a963990f
LP
1428 free(m);
1429 return -ENOMEM;
1430 }
1431
a50d7d43 1432 path = NULL; /* avoid freeing in cleanup */
a963990f
LP
1433 j->current_invalidate_counter ++;
1434
5ec76417 1435 log_debug("Directory %s added.", m->path);
a963990f 1436
a50d7d43 1437 } else if (m->is_root)
a963990f 1438 return 0;
a963990f
LP
1439
1440 if (m->wd <= 0 && j->inotify_fd >= 0) {
1441
1442 m->wd = inotify_add_watch(j->inotify_fd, m->path,
1443 IN_CREATE|IN_MOVED_TO|IN_MODIFY|IN_ATTRIB|IN_DELETE|
5e6870ea 1444 IN_DELETE_SELF|IN_MOVE_SELF|IN_UNMOUNT|IN_MOVED_FROM|
4a842cad 1445 IN_ONLYDIR);
a963990f
LP
1446
1447 if (m->wd > 0 && hashmap_put(j->directories_by_wd, INT_TO_PTR(m->wd), m) < 0)
1448 inotify_rm_watch(j->inotify_fd, m->wd);
1449 }
1450
1451 for (;;) {
7d5e9c0f 1452 struct dirent *de;
a963990f 1453
bde1fdd7
FW
1454 errno = 0;
1455 de = readdir(d);
1456 if (!de && errno != 0) {
1457 r = -errno;
590b6b91 1458 log_debug("Failed to read directory %s: %m", m->path);
bde1fdd7
FW
1459 return r;
1460 }
1461 if (!de)
a963990f
LP
1462 break;
1463
de2c3907
LP
1464 if (dirent_is_file_with_suffix(de, ".journal") ||
1465 dirent_is_file_with_suffix(de, ".journal~")) {
a963990f 1466 r = add_file(j, m->path, de->d_name);
6fe391c5
ZJS
1467 if (r < 0) {
1468 log_debug("Failed to add file %s/%s: %s",
1469 m->path, de->d_name, strerror(-r));
3ac251b8 1470 r = set_put_error(j, r);
6fe391c5
ZJS
1471 if (r < 0)
1472 return r;
1473 }
a963990f
LP
1474 }
1475 }
1476
85210bff
LP
1477 check_network(j, dirfd(d));
1478
a963990f
LP
1479 return 0;
1480}
1481
89739579 1482static int add_root_directory(sd_journal *j, const char *p) {
7fd1b19b 1483 _cleanup_closedir_ DIR *d = NULL;
a963990f
LP
1484 Directory *m;
1485 int r;
1486
1487 assert(j);
1488 assert(p);
1489
1490 if ((j->flags & SD_JOURNAL_RUNTIME_ONLY) &&
1491 !path_startswith(p, "/run"))
1492 return -EINVAL;
1493
89739579
LP
1494 if (j->prefix)
1495 p = strappenda(j->prefix, p);
b6741478 1496
a963990f
LP
1497 d = opendir(p);
1498 if (!d)
1499 return -errno;
1500
1501 m = hashmap_get(j->directories_by_path, p);
1502 if (!m) {
1503 m = new0(Directory, 1);
a50d7d43 1504 if (!m)
a963990f 1505 return -ENOMEM;
a963990f
LP
1506
1507 m->is_root = true;
1508 m->path = strdup(p);
1509 if (!m->path) {
a963990f
LP
1510 free(m);
1511 return -ENOMEM;
1512 }
1513
1514 if (hashmap_put(j->directories_by_path, m->path, m) < 0) {
a963990f
LP
1515 free(m->path);
1516 free(m);
1517 return -ENOMEM;
1518 }
1519
1520 j->current_invalidate_counter ++;
1521
5ec76417 1522 log_debug("Root directory %s added.", m->path);
a963990f 1523
a50d7d43 1524 } else if (!m->is_root)
a963990f 1525 return 0;
50f20cfd 1526
a963990f
LP
1527 if (m->wd <= 0 && j->inotify_fd >= 0) {
1528
1529 m->wd = inotify_add_watch(j->inotify_fd, m->path,
1530 IN_CREATE|IN_MOVED_TO|IN_MODIFY|IN_ATTRIB|IN_DELETE|
4a842cad 1531 IN_ONLYDIR);
a963990f
LP
1532
1533 if (m->wd > 0 && hashmap_put(j->directories_by_wd, INT_TO_PTR(m->wd), m) < 0)
1534 inotify_rm_watch(j->inotify_fd, m->wd);
1535 }
50f20cfd 1536
5302ebe1
ZJS
1537 if (j->no_new_files)
1538 return 0;
1539
3fbf9cbb 1540 for (;;) {
7d5e9c0f 1541 struct dirent *de;
a963990f 1542 sd_id128_t id;
3fbf9cbb 1543
bde1fdd7
FW
1544 errno = 0;
1545 de = readdir(d);
1546 if (!de && errno != 0) {
1547 r = -errno;
590b6b91 1548 log_debug("Failed to read directory %s: %m", m->path);
bde1fdd7
FW
1549 return r;
1550 }
1551 if (!de)
3fbf9cbb
LP
1552 break;
1553
de2c3907
LP
1554 if (dirent_is_file_with_suffix(de, ".journal") ||
1555 dirent_is_file_with_suffix(de, ".journal~")) {
a963990f 1556 r = add_file(j, m->path, de->d_name);
6fe391c5
ZJS
1557 if (r < 0) {
1558 log_debug("Failed to add file %s/%s: %s",
1559 m->path, de->d_name, strerror(-r));
3ac251b8 1560 r = set_put_error(j, r);
6fe391c5
ZJS
1561 if (r < 0)
1562 return r;
1563 }
6f5878a2 1564 } else if ((de->d_type == DT_DIR || de->d_type == DT_LNK || de->d_type == DT_UNKNOWN) &&
a963990f
LP
1565 sd_id128_from_string(de->d_name, &id) >= 0) {
1566
1567 r = add_directory(j, m->path, de->d_name);
1568 if (r < 0)
1569 log_debug("Failed to add directory %s/%s: %s", m->path, de->d_name, strerror(-r));
1570 }
3fbf9cbb
LP
1571 }
1572
85210bff
LP
1573 check_network(j, dirfd(d));
1574
a963990f
LP
1575 return 0;
1576}
1577
1578static int remove_directory(sd_journal *j, Directory *d) {
1579 assert(j);
1580
1581 if (d->wd > 0) {
1582 hashmap_remove(j->directories_by_wd, INT_TO_PTR(d->wd));
1583
1584 if (j->inotify_fd >= 0)
1585 inotify_rm_watch(j->inotify_fd, d->wd);
1586 }
1587
1588 hashmap_remove(j->directories_by_path, d->path);
1589
1590 if (d->is_root)
5ec76417 1591 log_debug("Root directory %s removed.", d->path);
a963990f 1592 else
5ec76417 1593 log_debug("Directory %s removed.", d->path);
a963990f
LP
1594
1595 free(d->path);
1596 free(d);
50f20cfd 1597
3fbf9cbb
LP
1598 return 0;
1599}
1600
89739579 1601static int add_search_paths(sd_journal *j) {
6fe391c5 1602 int r;
a963990f
LP
1603 const char search_paths[] =
1604 "/run/log/journal\0"
1605 "/var/log/journal\0";
1606 const char *p;
50f20cfd
LP
1607
1608 assert(j);
50f20cfd 1609
a963990f
LP
1610 /* We ignore most errors here, since the idea is to only open
1611 * what's actually accessible, and ignore the rest. */
50f20cfd 1612
6fe391c5 1613 NULSTR_FOREACH(p, search_paths) {
89739579 1614 r = add_root_directory(j, p);
3ac251b8
LP
1615 if (r < 0 && r != -ENOENT) {
1616 r = set_put_error(j, r);
1617 if (r < 0)
1618 return r;
1619 }
6fe391c5 1620 }
50f20cfd 1621
a963990f 1622 return 0;
50f20cfd
LP
1623}
1624
5302ebe1
ZJS
1625static int add_current_paths(sd_journal *j) {
1626 Iterator i;
1627 JournalFile *f;
1628
1629 assert(j);
1630 assert(j->no_new_files);
1631
1632 /* Simply adds all directories for files we have open as
1633 * "root" directories. We don't expect errors here, so we
1634 * treat them as fatal. */
1635
1636 HASHMAP_FOREACH(f, j->files, i) {
5302ebe1 1637 _cleanup_free_ char *dir;
e9174f29 1638 int r;
5302ebe1
ZJS
1639
1640 dir = dirname_malloc(f->path);
1641 if (!dir)
1642 return -ENOMEM;
1643
89739579 1644 r = add_root_directory(j, dir);
5302ebe1
ZJS
1645 if (r < 0) {
1646 set_put_error(j, r);
1647 return r;
1648 }
1649 }
1650
1651 return 0;
1652}
1653
1654
a963990f 1655static int allocate_inotify(sd_journal *j) {
50f20cfd 1656 assert(j);
50f20cfd 1657
a963990f
LP
1658 if (j->inotify_fd < 0) {
1659 j->inotify_fd = inotify_init1(IN_NONBLOCK|IN_CLOEXEC);
1660 if (j->inotify_fd < 0)
1661 return -errno;
1662 }
50f20cfd 1663
a963990f
LP
1664 if (!j->directories_by_wd) {
1665 j->directories_by_wd = hashmap_new(trivial_hash_func, trivial_compare_func);
1666 if (!j->directories_by_wd)
1667 return -ENOMEM;
50f20cfd 1668 }
a963990f
LP
1669
1670 return 0;
50f20cfd
LP
1671}
1672
7827b1a1 1673static sd_journal *journal_new(int flags, const char *path) {
a963990f 1674 sd_journal *j;
50f20cfd 1675
a963990f
LP
1676 j = new0(sd_journal, 1);
1677 if (!j)
1678 return NULL;
50f20cfd 1679
a65f06bb 1680 j->original_pid = getpid();
a963990f
LP
1681 j->inotify_fd = -1;
1682 j->flags = flags;
93b73b06 1683 j->data_threshold = DEFAULT_DATA_THRESHOLD;
50f20cfd 1684
7827b1a1
LP
1685 if (path) {
1686 j->path = strdup(path);
6180fc61
ZJS
1687 if (!j->path)
1688 goto fail;
7827b1a1
LP
1689 }
1690
a963990f 1691 j->files = hashmap_new(string_hash_func, string_compare_func);
a963990f 1692 j->directories_by_path = hashmap_new(string_hash_func, string_compare_func);
84168d80 1693 j->mmap = mmap_cache_new();
3ac251b8 1694 if (!j->files || !j->directories_by_path || !j->mmap)
6180fc61 1695 goto fail;
16e9f408 1696
a963990f 1697 return j;
6180fc61
ZJS
1698
1699fail:
1700 sd_journal_close(j);
1701 return NULL;
50f20cfd
LP
1702}
1703
a5344d2c 1704_public_ int sd_journal_open(sd_journal **ret, int flags) {
87d2c1ff 1705 sd_journal *j;
3fbf9cbb 1706 int r;
87d2c1ff 1707
1ae464e0 1708 assert_return(ret, -EINVAL);
b6741478 1709 assert_return((flags & ~(SD_JOURNAL_LOCAL_ONLY|SD_JOURNAL_RUNTIME_ONLY|SD_JOURNAL_SYSTEM|SD_JOURNAL_CURRENT_USER)) == 0, -EINVAL);
87d2c1ff 1710
7827b1a1 1711 j = journal_new(flags, NULL);
87d2c1ff
LP
1712 if (!j)
1713 return -ENOMEM;
1714
89739579 1715 r = add_search_paths(j);
a963990f 1716 if (r < 0)
50f20cfd 1717 goto fail;
50f20cfd 1718
a963990f
LP
1719 *ret = j;
1720 return 0;
cf244689 1721
a963990f
LP
1722fail:
1723 sd_journal_close(j);
87d2c1ff 1724
a963990f
LP
1725 return r;
1726}
50f20cfd 1727
b6741478
LP
1728_public_ int sd_journal_open_container(sd_journal **ret, const char *machine, int flags) {
1729 _cleanup_free_ char *root = NULL, *class = NULL;
1730 sd_journal *j;
1731 char *p;
1732 int r;
1733
1734 assert_return(machine, -EINVAL);
1735 assert_return(ret, -EINVAL);
1736 assert_return((flags & ~(SD_JOURNAL_LOCAL_ONLY|SD_JOURNAL_SYSTEM)) == 0, -EINVAL);
1737 assert_return(filename_is_safe(machine), -EINVAL);
1738
1739 p = strappenda("/run/systemd/machines/", machine);
1740 r = parse_env_file(p, NEWLINE, "ROOT", &root, "CLASS", &class, NULL);
1741 if (r == -ENOENT)
1742 return -EHOSTDOWN;
1743 if (r < 0)
1744 return r;
1745 if (!root)
1746 return -ENODATA;
1747
1748 if (!streq_ptr(class, "container"))
1749 return -EIO;
1750
1751 j = journal_new(flags, NULL);
1752 if (!j)
1753 return -ENOMEM;
1754
89739579
LP
1755 j->prefix = root;
1756 root = NULL;
1757
1758 r = add_search_paths(j);
b6741478
LP
1759 if (r < 0)
1760 goto fail;
1761
1762 *ret = j;
1763 return 0;
1764
1765fail:
1766 sd_journal_close(j);
1767 return r;
1768}
1769
a963990f
LP
1770_public_ int sd_journal_open_directory(sd_journal **ret, const char *path, int flags) {
1771 sd_journal *j;
1772 int r;
87d2c1ff 1773
1ae464e0
TA
1774 assert_return(ret, -EINVAL);
1775 assert_return(path, -EINVAL);
1776 assert_return(flags == 0, -EINVAL);
87d2c1ff 1777
7827b1a1 1778 j = journal_new(flags, path);
a963990f
LP
1779 if (!j)
1780 return -ENOMEM;
3fbf9cbb 1781
89739579 1782 r = add_root_directory(j, path);
6fe391c5 1783 if (r < 0) {
3ac251b8 1784 set_put_error(j, r);
a963990f 1785 goto fail;
6fe391c5 1786 }
87d2c1ff
LP
1787
1788 *ret = j;
1789 return 0;
1790
1791fail:
1792 sd_journal_close(j);
1793
1794 return r;
a963990f 1795}
87d2c1ff 1796
5302ebe1
ZJS
1797_public_ int sd_journal_open_files(sd_journal **ret, const char **paths, int flags) {
1798 sd_journal *j;
1799 const char **path;
1800 int r;
1801
1ae464e0
TA
1802 assert_return(ret, -EINVAL);
1803 assert_return(flags == 0, -EINVAL);
5302ebe1
ZJS
1804
1805 j = journal_new(flags, NULL);
1806 if (!j)
1807 return -ENOMEM;
1808
1809 STRV_FOREACH(path, paths) {
1810 r = add_any_file(j, *path);
1811 if (r < 0) {
1812 log_error("Failed to open %s: %s", *path, strerror(-r));
1813 goto fail;
1814 }
1815 }
1816
1817 j->no_new_files = true;
1818
1819 *ret = j;
1820 return 0;
1821
1822fail:
1823 sd_journal_close(j);
1824
1825 return r;
1826}
1827
a5344d2c 1828_public_ void sd_journal_close(sd_journal *j) {
a963990f
LP
1829 Directory *d;
1830 JournalFile *f;
1831
a5344d2c
LP
1832 if (!j)
1833 return;
87d2c1ff 1834
54b1da83
LP
1835 sd_journal_flush_matches(j);
1836
a963990f
LP
1837 while ((f = hashmap_steal_first(j->files)))
1838 journal_file_close(f);
50f20cfd 1839
a963990f 1840 hashmap_free(j->files);
260a2be4 1841
a963990f
LP
1842 while ((d = hashmap_first(j->directories_by_path)))
1843 remove_directory(j, d);
260a2be4 1844
a963990f
LP
1845 while ((d = hashmap_first(j->directories_by_wd)))
1846 remove_directory(j, d);
87d2c1ff 1847
a963990f
LP
1848 hashmap_free(j->directories_by_path);
1849 hashmap_free(j->directories_by_wd);
1cc101f1 1850
03e334a1 1851 safe_close(j->inotify_fd);
50f20cfd 1852
bf807d4d
LP
1853 if (j->mmap) {
1854 log_debug("mmap cache statistics: %u hit, %u miss", mmap_cache_get_hit(j->mmap), mmap_cache_get_missed(j->mmap));
16e9f408 1855 mmap_cache_unref(j->mmap);
bf807d4d 1856 }
16e9f408 1857
7827b1a1 1858 free(j->path);
89739579 1859 free(j->prefix);
3c1668da 1860 free(j->unique_field);
6fe391c5 1861 set_free(j->errors);
87d2c1ff
LP
1862 free(j);
1863}
3fbf9cbb 1864
a5344d2c 1865_public_ int sd_journal_get_realtime_usec(sd_journal *j, uint64_t *ret) {
3fbf9cbb
LP
1866 Object *o;
1867 JournalFile *f;
1868 int r;
1869
1ae464e0
TA
1870 assert_return(j, -EINVAL);
1871 assert_return(!journal_pid_changed(j), -ECHILD);
1872 assert_return(ret, -EINVAL);
3fbf9cbb
LP
1873
1874 f = j->current_file;
1875 if (!f)
de190aef 1876 return -EADDRNOTAVAIL;
3fbf9cbb
LP
1877
1878 if (f->current_offset <= 0)
de190aef 1879 return -EADDRNOTAVAIL;
3fbf9cbb 1880
de190aef 1881 r = journal_file_move_to_object(f, OBJECT_ENTRY, f->current_offset, &o);
3fbf9cbb
LP
1882 if (r < 0)
1883 return r;
1884
1885 *ret = le64toh(o->entry.realtime);
de190aef 1886 return 0;
3fbf9cbb
LP
1887}
1888
a5344d2c 1889_public_ int sd_journal_get_monotonic_usec(sd_journal *j, uint64_t *ret, sd_id128_t *ret_boot_id) {
3fbf9cbb
LP
1890 Object *o;
1891 JournalFile *f;
1892 int r;
1893 sd_id128_t id;
1894
1ae464e0
TA
1895 assert_return(j, -EINVAL);
1896 assert_return(!journal_pid_changed(j), -ECHILD);
3fbf9cbb
LP
1897
1898 f = j->current_file;
1899 if (!f)
de190aef 1900 return -EADDRNOTAVAIL;
3fbf9cbb
LP
1901
1902 if (f->current_offset <= 0)
de190aef 1903 return -EADDRNOTAVAIL;
3fbf9cbb 1904
de190aef 1905 r = journal_file_move_to_object(f, OBJECT_ENTRY, f->current_offset, &o);
3fbf9cbb
LP
1906 if (r < 0)
1907 return r;
1908
de190aef
LP
1909 if (ret_boot_id)
1910 *ret_boot_id = o->entry.boot_id;
1911 else {
1912 r = sd_id128_get_boot(&id);
1913 if (r < 0)
1914 return r;
3fbf9cbb 1915
de190aef 1916 if (!sd_id128_equal(id, o->entry.boot_id))
df50185b 1917 return -ESTALE;
de190aef 1918 }
3fbf9cbb 1919
14a65d65
LP
1920 if (ret)
1921 *ret = le64toh(o->entry.monotonic);
1922
de190aef 1923 return 0;
3fbf9cbb
LP
1924}
1925
362a3f81
LP
1926static bool field_is_valid(const char *field) {
1927 const char *p;
1928
1929 assert(field);
1930
1931 if (isempty(field))
1932 return false;
1933
1934 if (startswith(field, "__"))
1935 return false;
1936
1937 for (p = field; *p; p++) {
1938
1939 if (*p == '_')
1940 continue;
1941
1942 if (*p >= 'A' && *p <= 'Z')
1943 continue;
1944
1945 if (*p >= '0' && *p <= '9')
1946 continue;
1947
1948 return false;
1949 }
1950
1951 return true;
1952}
1953
a5344d2c 1954_public_ int sd_journal_get_data(sd_journal *j, const char *field, const void **data, size_t *size) {
3fbf9cbb
LP
1955 JournalFile *f;
1956 uint64_t i, n;
1957 size_t field_length;
1958 int r;
1959 Object *o;
1960
1ae464e0
TA
1961 assert_return(j, -EINVAL);
1962 assert_return(!journal_pid_changed(j), -ECHILD);
1963 assert_return(field, -EINVAL);
1964 assert_return(data, -EINVAL);
1965 assert_return(size, -EINVAL);
1966 assert_return(field_is_valid(field), -EINVAL);
3fbf9cbb
LP
1967
1968 f = j->current_file;
1969 if (!f)
de190aef 1970 return -EADDRNOTAVAIL;
3fbf9cbb
LP
1971
1972 if (f->current_offset <= 0)
de190aef 1973 return -EADDRNOTAVAIL;
3fbf9cbb 1974
de190aef 1975 r = journal_file_move_to_object(f, OBJECT_ENTRY, f->current_offset, &o);
3fbf9cbb
LP
1976 if (r < 0)
1977 return r;
1978
1979 field_length = strlen(field);
1980
1981 n = journal_file_entry_n_items(o);
1982 for (i = 0; i < n; i++) {
4fd052ae
FC
1983 uint64_t p, l;
1984 le64_t le_hash;
3fbf9cbb 1985 size_t t;
1ec7120e 1986 int compression;
3fbf9cbb
LP
1987
1988 p = le64toh(o->entry.items[i].object_offset);
807e17f0 1989 le_hash = o->entry.items[i].hash;
de190aef 1990 r = journal_file_move_to_object(f, OBJECT_DATA, p, &o);
3fbf9cbb
LP
1991 if (r < 0)
1992 return r;
1993
de190aef 1994 if (le_hash != o->data.hash)
de7b95cd
LP
1995 return -EBADMSG;
1996
3fbf9cbb
LP
1997 l = le64toh(o->object.size) - offsetof(Object, data.payload);
1998
1ec7120e 1999 compression = o->object.flags & OBJECT_COMPRESSION_MASK;
3b1a55e1
ZJS
2000 if (compression) {
2001#if defined(HAVE_XZ) || defined(HAVE_LZ4)
2002 if (decompress_startswith(compression,
2003 o->data.payload, l,
2004 &f->compress_buffer, &f->compress_buffer_size,
2005 field, field_length, '=')) {
2006
fa1c4b51 2007 size_t rsize;
3b1a55e1
ZJS
2008
2009 r = decompress_blob(compression,
2010 o->data.payload, l,
2011 &f->compress_buffer, &f->compress_buffer_size, &rsize,
2012 j->data_threshold);
2013 if (r < 0)
2014 return r;
807e17f0 2015
3b1a55e1
ZJS
2016 *data = f->compress_buffer;
2017 *size = (size_t) rsize;
807e17f0 2018
3b1a55e1
ZJS
2019 return 0;
2020 }
2021#else
2022 return -EPROTONOSUPPORT;
2023#endif
807e17f0
LP
2024 } else if (l >= field_length+1 &&
2025 memcmp(o->data.payload, field, field_length) == 0 &&
2026 o->data.payload[field_length] == '=') {
3fbf9cbb 2027
161e54f8 2028 t = (size_t) l;
3fbf9cbb 2029
161e54f8
LP
2030 if ((uint64_t) t != l)
2031 return -E2BIG;
3fbf9cbb 2032
161e54f8
LP
2033 *data = o->data.payload;
2034 *size = t;
3fbf9cbb 2035
99613ec5 2036 return 0;
161e54f8 2037 }
3fbf9cbb 2038
de190aef 2039 r = journal_file_move_to_object(f, OBJECT_ENTRY, f->current_offset, &o);
161e54f8
LP
2040 if (r < 0)
2041 return r;
3fbf9cbb
LP
2042 }
2043
de190aef 2044 return -ENOENT;
3fbf9cbb
LP
2045}
2046
93b73b06 2047static int return_data(sd_journal *j, JournalFile *f, Object *o, const void **data, size_t *size) {
3c1668da
LP
2048 size_t t;
2049 uint64_t l;
3b1a55e1 2050 int compression;
3c1668da
LP
2051
2052 l = le64toh(o->object.size) - offsetof(Object, data.payload);
2053 t = (size_t) l;
2054
2055 /* We can't read objects larger than 4G on a 32bit machine */
2056 if ((uint64_t) t != l)
2057 return -E2BIG;
2058
1ec7120e
ZJS
2059 compression = o->object.flags & OBJECT_COMPRESSION_MASK;
2060 if (compression) {
3b1a55e1 2061#if defined(HAVE_XZ) || defined(HAVE_LZ4)
fa1c4b51 2062 size_t rsize;
3b1a55e1 2063 int r;
3c1668da 2064
1ec7120e
ZJS
2065 r = decompress_blob(compression,
2066 o->data.payload, l, &f->compress_buffer,
2067 &f->compress_buffer_size, &rsize, j->data_threshold);
2068 if (r < 0)
2069 return r;
3c1668da
LP
2070
2071 *data = f->compress_buffer;
2072 *size = (size_t) rsize;
3b1a55e1
ZJS
2073#else
2074 return -EPROTONOSUPPORT;
2075#endif
3c1668da
LP
2076 } else {
2077 *data = o->data.payload;
2078 *size = t;
2079 }
2080
2081 return 0;
2082}
2083
a5344d2c 2084_public_ int sd_journal_enumerate_data(sd_journal *j, const void **data, size_t *size) {
3fbf9cbb 2085 JournalFile *f;
3c1668da 2086 uint64_t p, n;
4fd052ae 2087 le64_t le_hash;
3fbf9cbb
LP
2088 int r;
2089 Object *o;
2090
1ae464e0
TA
2091 assert_return(j, -EINVAL);
2092 assert_return(!journal_pid_changed(j), -ECHILD);
2093 assert_return(data, -EINVAL);
2094 assert_return(size, -EINVAL);
3fbf9cbb
LP
2095
2096 f = j->current_file;
2097 if (!f)
de190aef 2098 return -EADDRNOTAVAIL;
3fbf9cbb
LP
2099
2100 if (f->current_offset <= 0)
de190aef 2101 return -EADDRNOTAVAIL;
3fbf9cbb 2102
de190aef 2103 r = journal_file_move_to_object(f, OBJECT_ENTRY, f->current_offset, &o);
3fbf9cbb
LP
2104 if (r < 0)
2105 return r;
2106
2107 n = journal_file_entry_n_items(o);
7210bfb3 2108 if (j->current_field >= n)
3fbf9cbb
LP
2109 return 0;
2110
7210bfb3 2111 p = le64toh(o->entry.items[j->current_field].object_offset);
de190aef
LP
2112 le_hash = o->entry.items[j->current_field].hash;
2113 r = journal_file_move_to_object(f, OBJECT_DATA, p, &o);
3fbf9cbb
LP
2114 if (r < 0)
2115 return r;
2116
de190aef 2117 if (le_hash != o->data.hash)
de7b95cd
LP
2118 return -EBADMSG;
2119
93b73b06 2120 r = return_data(j, f, o, data, size);
3c1668da
LP
2121 if (r < 0)
2122 return r;
3fbf9cbb 2123
7210bfb3 2124 j->current_field ++;
3fbf9cbb
LP
2125
2126 return 1;
2127}
c2373f84 2128
a5344d2c
LP
2129_public_ void sd_journal_restart_data(sd_journal *j) {
2130 if (!j)
2131 return;
8725d60a
LP
2132
2133 j->current_field = 0;
c2373f84 2134}
50f20cfd 2135
a5344d2c 2136_public_ int sd_journal_get_fd(sd_journal *j) {
a963990f
LP
2137 int r;
2138
1ae464e0
TA
2139 assert_return(j, -EINVAL);
2140 assert_return(!journal_pid_changed(j), -ECHILD);
50f20cfd 2141
a963990f
LP
2142 if (j->inotify_fd >= 0)
2143 return j->inotify_fd;
2144
2145 r = allocate_inotify(j);
2146 if (r < 0)
2147 return r;
2148
2149 /* Iterate through all dirs again, to add them to the
2150 * inotify */
5302ebe1
ZJS
2151 if (j->no_new_files)
2152 r = add_current_paths(j);
2153 else if (j->path)
89739579 2154 r = add_root_directory(j, j->path);
7827b1a1 2155 else
89739579 2156 r = add_search_paths(j);
a963990f
LP
2157 if (r < 0)
2158 return r;
2159
50f20cfd
LP
2160 return j->inotify_fd;
2161}
2162
ee531d94
LP
2163_public_ int sd_journal_get_events(sd_journal *j) {
2164 int fd;
2165
1ae464e0
TA
2166 assert_return(j, -EINVAL);
2167 assert_return(!journal_pid_changed(j), -ECHILD);
ee531d94
LP
2168
2169 fd = sd_journal_get_fd(j);
2170 if (fd < 0)
2171 return fd;
2172
2173 return POLLIN;
2174}
2175
39c155ea
LP
2176_public_ int sd_journal_get_timeout(sd_journal *j, uint64_t *timeout_usec) {
2177 int fd;
2178
1ae464e0
TA
2179 assert_return(j, -EINVAL);
2180 assert_return(!journal_pid_changed(j), -ECHILD);
2181 assert_return(timeout_usec, -EINVAL);
39c155ea
LP
2182
2183 fd = sd_journal_get_fd(j);
2184 if (fd < 0)
2185 return fd;
2186
2187 if (!j->on_network) {
2188 *timeout_usec = (uint64_t) -1;
2189 return 0;
2190 }
2191
2192 /* If we are on the network we need to regularly check for
2193 * changes manually */
2194
2195 *timeout_usec = j->last_process_usec + JOURNAL_FILES_RECHECK_USEC;
2196 return 1;
2197}
2198
50f20cfd 2199static void process_inotify_event(sd_journal *j, struct inotify_event *e) {
a963990f 2200 Directory *d;
50f20cfd
LP
2201 int r;
2202
2203 assert(j);
2204 assert(e);
2205
2206 /* Is this a subdirectory we watch? */
a963990f
LP
2207 d = hashmap_get(j->directories_by_wd, INT_TO_PTR(e->wd));
2208 if (d) {
2209 sd_id128_t id;
50f20cfd 2210
de2c3907
LP
2211 if (!(e->mask & IN_ISDIR) && e->len > 0 &&
2212 (endswith(e->name, ".journal") ||
2213 endswith(e->name, ".journal~"))) {
50f20cfd
LP
2214
2215 /* Event for a journal file */
2216
2217 if (e->mask & (IN_CREATE|IN_MOVED_TO|IN_MODIFY|IN_ATTRIB)) {
a963990f 2218 r = add_file(j, d->path, e->name);
6fe391c5
ZJS
2219 if (r < 0) {
2220 log_debug("Failed to add file %s/%s: %s",
2221 d->path, e->name, strerror(-r));
3ac251b8 2222 set_put_error(j, r);
6fe391c5 2223 }
a963990f 2224
5e6870ea 2225 } else if (e->mask & (IN_DELETE|IN_MOVED_FROM|IN_UNMOUNT)) {
50f20cfd 2226
a963990f 2227 r = remove_file(j, d->path, e->name);
50f20cfd 2228 if (r < 0)
a963990f 2229 log_debug("Failed to remove file %s/%s: %s", d->path, e->name, strerror(-r));
50f20cfd
LP
2230 }
2231
a963990f 2232 } else if (!d->is_root && e->len == 0) {
50f20cfd 2233
a963990f 2234 /* Event for a subdirectory */
50f20cfd 2235
a963990f
LP
2236 if (e->mask & (IN_DELETE_SELF|IN_MOVE_SELF|IN_UNMOUNT)) {
2237 r = remove_directory(j, d);
50f20cfd 2238 if (r < 0)
a963990f 2239 log_debug("Failed to remove directory %s: %s", d->path, strerror(-r));
50f20cfd
LP
2240 }
2241
50f20cfd 2242
a963990f 2243 } else if (d->is_root && (e->mask & IN_ISDIR) && e->len > 0 && sd_id128_from_string(e->name, &id) >= 0) {
50f20cfd 2244
a963990f 2245 /* Event for root directory */
50f20cfd 2246
a963990f
LP
2247 if (e->mask & (IN_CREATE|IN_MOVED_TO|IN_MODIFY|IN_ATTRIB)) {
2248 r = add_directory(j, d->path, e->name);
50f20cfd 2249 if (r < 0)
a963990f 2250 log_debug("Failed to add directory %s/%s: %s", d->path, e->name, strerror(-r));
50f20cfd
LP
2251 }
2252 }
2253
2254 return;
2255 }
2256
2257 if (e->mask & IN_IGNORED)
2258 return;
2259
2260 log_warning("Unknown inotify event.");
2261}
2262
a963990f
LP
2263static int determine_change(sd_journal *j) {
2264 bool b;
2265
2266 assert(j);
2267
2268 b = j->current_invalidate_counter != j->last_invalidate_counter;
2269 j->last_invalidate_counter = j->current_invalidate_counter;
2270
2271 return b ? SD_JOURNAL_INVALIDATE : SD_JOURNAL_APPEND;
2272}
2273
a5344d2c 2274_public_ int sd_journal_process(sd_journal *j) {
19d1e4ee 2275 uint8_t buffer[sizeof(struct inotify_event) + FILENAME_MAX] _alignas_(struct inotify_event);
a963990f 2276 bool got_something = false;
50f20cfd 2277
1ae464e0
TA
2278 assert_return(j, -EINVAL);
2279 assert_return(!journal_pid_changed(j), -ECHILD);
50f20cfd 2280
39c155ea
LP
2281 j->last_process_usec = now(CLOCK_MONOTONIC);
2282
50f20cfd
LP
2283 for (;;) {
2284 struct inotify_event *e;
2285 ssize_t l;
2286
2287 l = read(j->inotify_fd, buffer, sizeof(buffer));
2288 if (l < 0) {
a963990f
LP
2289 if (errno == EAGAIN || errno == EINTR)
2290 return got_something ? determine_change(j) : SD_JOURNAL_NOP;
50f20cfd
LP
2291
2292 return -errno;
2293 }
2294
a963990f
LP
2295 got_something = true;
2296
50f20cfd
LP
2297 e = (struct inotify_event*) buffer;
2298 while (l > 0) {
2299 size_t step;
2300
2301 process_inotify_event(j, e);
2302
2303 step = sizeof(struct inotify_event) + e->len;
2304 assert(step <= (size_t) l);
2305
2306 e = (struct inotify_event*) ((uint8_t*) e + step);
2307 l -= step;
2308 }
2309 }
2310}
6ad1d1c3 2311
e02d1cf7 2312_public_ int sd_journal_wait(sd_journal *j, uint64_t timeout_usec) {
a963990f 2313 int r;
39c155ea 2314 uint64_t t;
e02d1cf7 2315
1ae464e0
TA
2316 assert_return(j, -EINVAL);
2317 assert_return(!journal_pid_changed(j), -ECHILD);
e02d1cf7 2318
a963990f
LP
2319 if (j->inotify_fd < 0) {
2320
2321 /* This is the first invocation, hence create the
2322 * inotify watch */
2323 r = sd_journal_get_fd(j);
2324 if (r < 0)
2325 return r;
2326
2327 /* The journal might have changed since the context
2328 * object was created and we weren't watching before,
2329 * hence don't wait for anything, and return
2330 * immediately. */
2331 return determine_change(j);
2332 }
2333
39c155ea
LP
2334 r = sd_journal_get_timeout(j, &t);
2335 if (r < 0)
2336 return r;
2337
2338 if (t != (uint64_t) -1) {
2339 usec_t n;
2340
2341 n = now(CLOCK_MONOTONIC);
2342 t = t > n ? t - n : 0;
85210bff 2343
39c155ea
LP
2344 if (timeout_usec == (uint64_t) -1 || timeout_usec > t)
2345 timeout_usec = t;
85210bff
LP
2346 }
2347
a963990f
LP
2348 do {
2349 r = fd_wait_for_event(j->inotify_fd, POLLIN, timeout_usec);
2350 } while (r == -EINTR);
e02d1cf7
LP
2351
2352 if (r < 0)
2353 return r;
2354
a963990f 2355 return sd_journal_process(j);
e02d1cf7
LP
2356}
2357
08984293
LP
2358_public_ int sd_journal_get_cutoff_realtime_usec(sd_journal *j, uint64_t *from, uint64_t *to) {
2359 Iterator i;
2360 JournalFile *f;
2361 bool first = true;
581483bf 2362 uint64_t fmin = 0, tmax = 0;
08984293
LP
2363 int r;
2364
1ae464e0
TA
2365 assert_return(j, -EINVAL);
2366 assert_return(!journal_pid_changed(j), -ECHILD);
2367 assert_return(from || to, -EINVAL);
2368 assert_return(from != to, -EINVAL);
08984293
LP
2369
2370 HASHMAP_FOREACH(f, j->files, i) {
2371 usec_t fr, t;
2372
2373 r = journal_file_get_cutoff_realtime_usec(f, &fr, &t);
9f8d2983
LP
2374 if (r == -ENOENT)
2375 continue;
08984293
LP
2376 if (r < 0)
2377 return r;
2378 if (r == 0)
2379 continue;
2380
2381 if (first) {
581483bf
LP
2382 fmin = fr;
2383 tmax = t;
08984293
LP
2384 first = false;
2385 } else {
581483bf
LP
2386 fmin = MIN(fr, fmin);
2387 tmax = MAX(t, tmax);
08984293
LP
2388 }
2389 }
2390
581483bf
LP
2391 if (from)
2392 *from = fmin;
2393 if (to)
2394 *to = tmax;
2395
08984293
LP
2396 return first ? 0 : 1;
2397}
2398
2399_public_ int sd_journal_get_cutoff_monotonic_usec(sd_journal *j, sd_id128_t boot_id, uint64_t *from, uint64_t *to) {
2400 Iterator i;
2401 JournalFile *f;
1651e2c6 2402 bool found = false;
08984293
LP
2403 int r;
2404
1ae464e0
TA
2405 assert_return(j, -EINVAL);
2406 assert_return(!journal_pid_changed(j), -ECHILD);
2407 assert_return(from || to, -EINVAL);
2408 assert_return(from != to, -EINVAL);
08984293
LP
2409
2410 HASHMAP_FOREACH(f, j->files, i) {
2411 usec_t fr, t;
2412
2413 r = journal_file_get_cutoff_monotonic_usec(f, boot_id, &fr, &t);
9f8d2983
LP
2414 if (r == -ENOENT)
2415 continue;
08984293
LP
2416 if (r < 0)
2417 return r;
2418 if (r == 0)
2419 continue;
2420
1651e2c6 2421 if (found) {
08984293 2422 if (from)
1651e2c6 2423 *from = MIN(fr, *from);
08984293 2424 if (to)
1651e2c6 2425 *to = MAX(t, *to);
08984293
LP
2426 } else {
2427 if (from)
1651e2c6 2428 *from = fr;
08984293 2429 if (to)
1651e2c6
ZJS
2430 *to = t;
2431 found = true;
08984293
LP
2432 }
2433 }
2434
1651e2c6 2435 return found;
08984293
LP
2436}
2437
dca6219e
LP
2438void journal_print_header(sd_journal *j) {
2439 Iterator i;
2440 JournalFile *f;
2441 bool newline = false;
2442
2443 assert(j);
2444
2445 HASHMAP_FOREACH(f, j->files, i) {
2446 if (newline)
2447 putchar('\n');
2448 else
2449 newline = true;
2450
2451 journal_file_print_header(f);
2452 }
2453}
08984293 2454
a1a03e30
LP
2455_public_ int sd_journal_get_usage(sd_journal *j, uint64_t *bytes) {
2456 Iterator i;
2457 JournalFile *f;
2458 uint64_t sum = 0;
2459
1ae464e0
TA
2460 assert_return(j, -EINVAL);
2461 assert_return(!journal_pid_changed(j), -ECHILD);
2462 assert_return(bytes, -EINVAL);
a1a03e30
LP
2463
2464 HASHMAP_FOREACH(f, j->files, i) {
2465 struct stat st;
2466
2467 if (fstat(f->fd, &st) < 0)
2468 return -errno;
2469
2470 sum += (uint64_t) st.st_blocks * 512ULL;
2471 }
2472
2473 *bytes = sum;
2474 return 0;
2475}
2476
3c1668da
LP
2477_public_ int sd_journal_query_unique(sd_journal *j, const char *field) {
2478 char *f;
2479
1ae464e0
TA
2480 assert_return(j, -EINVAL);
2481 assert_return(!journal_pid_changed(j), -ECHILD);
2482 assert_return(!isempty(field), -EINVAL);
2483 assert_return(field_is_valid(field), -EINVAL);
3c1668da
LP
2484
2485 f = strdup(field);
2486 if (!f)
2487 return -ENOMEM;
2488
2489 free(j->unique_field);
2490 j->unique_field = f;
2491 j->unique_file = NULL;
2492 j->unique_offset = 0;
2493
2494 return 0;
2495}
2496
2497_public_ int sd_journal_enumerate_unique(sd_journal *j, const void **data, size_t *l) {
3c1668da 2498 size_t k;
19a2bd80 2499
1ae464e0
TA
2500 assert_return(j, -EINVAL);
2501 assert_return(!journal_pid_changed(j), -ECHILD);
2502 assert_return(data, -EINVAL);
2503 assert_return(l, -EINVAL);
2504 assert_return(j->unique_field, -EINVAL);
19a2bd80 2505
3c1668da 2506 k = strlen(j->unique_field);
19a2bd80 2507
3c1668da
LP
2508 if (!j->unique_file) {
2509 j->unique_file = hashmap_first(j->files);
2510 if (!j->unique_file)
2511 return 0;
2512 j->unique_offset = 0;
2513 }
19a2bd80 2514
3c1668da
LP
2515 for (;;) {
2516 JournalFile *of;
2517 Iterator i;
ae97089d 2518 Object *o;
3c1668da
LP
2519 const void *odata;
2520 size_t ol;
2521 bool found;
ae97089d 2522 int r;
3c1668da 2523
bdc02927 2524 /* Proceed to next data object in the field's linked list */
3c1668da
LP
2525 if (j->unique_offset == 0) {
2526 r = journal_file_find_field_object(j->unique_file, j->unique_field, k, &o, NULL);
2527 if (r < 0)
2528 return r;
2529
2530 j->unique_offset = r > 0 ? le64toh(o->field.head_data_offset) : 0;
2531 } else {
2532 r = journal_file_move_to_object(j->unique_file, OBJECT_DATA, j->unique_offset, &o);
2533 if (r < 0)
2534 return r;
2535
2536 j->unique_offset = le64toh(o->data.next_field_offset);
2537 }
2538
2539 /* We reached the end of the list? Then start again, with the next file */
2540 if (j->unique_offset == 0) {
2541 JournalFile *n;
2542
2543 n = hashmap_next(j->files, j->unique_file->path);
2544 if (!n)
2545 return 0;
2546
2547 j->unique_file = n;
2548 continue;
2549 }
2550
2551 /* We do not use the type context here, but 0 instead,
2552 * so that we can look at this data object at the same
2553 * time as one on another file */
2554 r = journal_file_move_to_object(j->unique_file, 0, j->unique_offset, &o);
2555 if (r < 0)
2556 return r;
2557
2558 /* Let's do the type check by hand, since we used 0 context above. */
ae97089d 2559 if (o->object.type != OBJECT_DATA) {
36202fd2 2560 log_debug("%s:offset " OFSfmt ": object has type %d, expected %d",
ae97089d
ZJS
2561 j->unique_file->path, j->unique_offset,
2562 o->object.type, OBJECT_DATA);
3c1668da 2563 return -EBADMSG;
ae97089d
ZJS
2564 }
2565
2566 r = journal_file_object_keep(j->unique_file, o, j->unique_offset);
2567 if (r < 0)
2568 return r;
3c1668da 2569
93b73b06 2570 r = return_data(j, j->unique_file, o, &odata, &ol);
3c1668da
LP
2571 if (r < 0)
2572 return r;
2573
0f99f74a
ZJS
2574 /* Check if we have at least the field name and "=". */
2575 if (ol <= k) {
2576 log_debug("%s:offset " OFSfmt ": object has size %zu, expected at least %zu",
2577 j->unique_file->path, j->unique_offset,
2578 ol, k + 1);
2579 return -EBADMSG;
2580 }
2581
2582 if (memcmp(odata, j->unique_field, k) || ((const char*) odata)[k] != '=') {
2583 log_debug("%s:offset " OFSfmt ": object does not start with \"%s=\"",
2584 j->unique_file->path, j->unique_offset,
2585 j->unique_field);
2586 return -EBADMSG;
2587 }
2588
3c1668da
LP
2589 /* OK, now let's see if we already returned this data
2590 * object by checking if it exists in the earlier
2591 * traversed files. */
2592 found = false;
2593 HASHMAP_FOREACH(of, j->files, i) {
2594 Object *oo;
2595 uint64_t op;
2596
2597 if (of == j->unique_file)
2598 break;
2599
2600 /* Skip this file it didn't have any fields
2601 * indexed */
2602 if (JOURNAL_HEADER_CONTAINS(of->header, n_fields) &&
2603 le64toh(of->header->n_fields) <= 0)
2604 continue;
2605
2606 r = journal_file_find_data_object_with_hash(of, odata, ol, le64toh(o->data.hash), &oo, &op);
2607 if (r < 0)
2608 return r;
2609
2610 if (r > 0)
2611 found = true;
2612 }
2613
2614 if (found)
2615 continue;
2616
ae97089d
ZJS
2617 r = journal_file_object_release(j->unique_file, o, j->unique_offset);
2618 if (r < 0)
2619 return r;
2620
93b73b06 2621 r = return_data(j, j->unique_file, o, data, l);
3c1668da
LP
2622 if (r < 0)
2623 return r;
2624
2625 return 1;
2626 }
2627}
2628
115646c7 2629_public_ void sd_journal_restart_unique(sd_journal *j) {
3c1668da
LP
2630 if (!j)
2631 return;
2632
2633 j->unique_file = NULL;
2634 j->unique_offset = 0;
2635}
85210bff
LP
2636
2637_public_ int sd_journal_reliable_fd(sd_journal *j) {
1ae464e0
TA
2638 assert_return(j, -EINVAL);
2639 assert_return(!journal_pid_changed(j), -ECHILD);
85210bff
LP
2640
2641 return !j->on_network;
2642}
d4205751
LP
2643
2644static char *lookup_field(const char *field, void *userdata) {
2645 sd_journal *j = userdata;
2646 const void *data;
2647 size_t size, d;
2648 int r;
2649
2650 assert(field);
2651 assert(j);
2652
2653 r = sd_journal_get_data(j, field, &data, &size);
2654 if (r < 0 ||
2655 size > REPLACE_VAR_MAX)
2656 return strdup(field);
2657
2658 d = strlen(field) + 1;
2659
2660 return strndup((const char*) data + d, size - d);
2661}
2662
2663_public_ int sd_journal_get_catalog(sd_journal *j, char **ret) {
2664 const void *data;
2665 size_t size;
2666 sd_id128_t id;
2667 _cleanup_free_ char *text = NULL, *cid = NULL;
2668 char *t;
2669 int r;
2670
1ae464e0
TA
2671 assert_return(j, -EINVAL);
2672 assert_return(!journal_pid_changed(j), -ECHILD);
2673 assert_return(ret, -EINVAL);
d4205751
LP
2674
2675 r = sd_journal_get_data(j, "MESSAGE_ID", &data, &size);
2676 if (r < 0)
2677 return r;
2678
2679 cid = strndup((const char*) data + 11, size - 11);
2680 if (!cid)
2681 return -ENOMEM;
2682
2683 r = sd_id128_from_string(cid, &id);
2684 if (r < 0)
2685 return r;
2686
844ec79b 2687 r = catalog_get(CATALOG_DATABASE, id, &text);
d4205751
LP
2688 if (r < 0)
2689 return r;
2690
2691 t = replace_var(text, lookup_field, j);
2692 if (!t)
2693 return -ENOMEM;
2694
2695 *ret = t;
2696 return 0;
2697}
8f1e860f
LP
2698
2699_public_ int sd_journal_get_catalog_for_message_id(sd_id128_t id, char **ret) {
1ae464e0 2700 assert_return(ret, -EINVAL);
8f1e860f 2701
844ec79b 2702 return catalog_get(CATALOG_DATABASE, id, ret);
8f1e860f 2703}
93b73b06
LP
2704
2705_public_ int sd_journal_set_data_threshold(sd_journal *j, size_t sz) {
1ae464e0
TA
2706 assert_return(j, -EINVAL);
2707 assert_return(!journal_pid_changed(j), -ECHILD);
93b73b06
LP
2708
2709 j->data_threshold = sz;
2710 return 0;
2711}
2712
2713_public_ int sd_journal_get_data_threshold(sd_journal *j, size_t *sz) {
1ae464e0
TA
2714 assert_return(j, -EINVAL);
2715 assert_return(!journal_pid_changed(j), -ECHILD);
2716 assert_return(sz, -EINVAL);
93b73b06
LP
2717
2718 *sz = j->data_threshold;
2719 return 0;
2720}