]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/journal/sd-journal.c
docs: add a simple, auto-generated index.md
[thirdparty/systemd.git] / src / journal / sd-journal.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
87d2c1ff 2
87d2c1ff 3#include <errno.h>
87d2c1ff 4#include <fcntl.h>
82e24b00 5#include <inttypes.h>
07630cea
LP
6#include <linux/magic.h>
7#include <poll.h>
3fbf9cbb 8#include <stddef.h>
50f20cfd 9#include <sys/inotify.h>
85210bff 10#include <sys/vfs.h>
07630cea 11#include <unistd.h>
87d2c1ff
LP
12
13#include "sd-journal.h"
c004493c 14
b5efdb8a 15#include "alloc-util.h"
07630cea
LP
16#include "catalog.h"
17#include "compress.h"
a0956174 18#include "dirent-util.h"
3ffd4af2 19#include "fd-util.h"
07630cea 20#include "fileio.h"
f97b34a6 21#include "format-util.h"
77601719 22#include "fs-util.h"
07630cea
LP
23#include "hashmap.h"
24#include "hostname-util.h"
a9be0692 25#include "id128-util.h"
c004493c 26#include "io-util.h"
87d2c1ff 27#include "journal-def.h"
cec736d2 28#include "journal-file.h"
07630cea 29#include "journal-internal.h"
cec736d2 30#include "list.h"
de7b95cd 31#include "lookup3.h"
85210bff 32#include "missing.h"
07630cea 33#include "path-util.h"
dccca82b 34#include "process-util.h"
d4205751 35#include "replace-var.h"
15a5e950 36#include "stat-util.h"
77f9fa3b 37#include "stat-util.h"
15a5e950 38#include "stdio-util.h"
07630cea
LP
39#include "string-util.h"
40#include "strv.h"
87d2c1ff 41
9e8abdf0
LP
42#define JOURNAL_FILES_MAX 7168
43
85210bff
LP
44#define JOURNAL_FILES_RECHECK_USEC (2 * USEC_PER_SEC)
45
d4205751
LP
46#define REPLACE_VAR_MAX 256
47
93b73b06
LP
48#define DEFAULT_DATA_THRESHOLD (64*1024)
49
a9a245c1
ZJS
50static void remove_file_real(sd_journal *j, JournalFile *f);
51
a65f06bb
ZJS
52static bool journal_pid_changed(sd_journal *j) {
53 assert(j);
54
55 /* We don't support people creating a journal object and
56 * keeping it around over a fork(). Let's complain. */
57
df0ff127 58 return j->original_pid != getpid_cached();
a65f06bb
ZJS
59}
60
5768d259
LP
61static int journal_put_error(sd_journal *j, int r, const char *path) {
62 char *copy;
3ac251b8
LP
63 int k;
64
5768d259
LP
65 /* Memorize an error we encountered, and store which
66 * file/directory it was generated from. Note that we store
67 * only *one* path per error code, as the error code is the
68 * key into the hashmap, and the path is the value. This means
69 * we keep track only of all error kinds, but not of all error
70 * locations. This has the benefit that the hashmap cannot
71 * grow beyond bounds.
72 *
73 * We return an error here only if we didn't manage to
74 * memorize the real error. */
75
6fe391c5
ZJS
76 if (r >= 0)
77 return r;
78
5768d259 79 k = hashmap_ensure_allocated(&j->errors, NULL);
3ac251b8
LP
80 if (k < 0)
81 return k;
82
5768d259
LP
83 if (path) {
84 copy = strdup(path);
85 if (!copy)
86 return -ENOMEM;
87 } else
88 copy = NULL;
89
90 k = hashmap_put(j->errors, INT_TO_PTR(r), copy);
91 if (k < 0) {
92 free(copy);
93
94 if (k == -EEXIST)
95 return 0;
96
97 return k;
98 }
99
100 return 0;
6fe391c5
ZJS
101}
102
de190aef 103static void detach_location(sd_journal *j) {
8f9b6cd9
LP
104 Iterator i;
105 JournalFile *f;
106
107 assert(j);
108
109 j->current_file = NULL;
110 j->current_field = 0;
111
c1f906bd 112 ORDERED_HASHMAP_FOREACH(f, j->files, i)
1fc605b0 113 journal_file_reset_location(f);
8f9b6cd9
LP
114}
115
de190aef
LP
116static void reset_location(sd_journal *j) {
117 assert(j);
118
119 detach_location(j);
120 zero(j->current_location);
121}
122
a87247dd 123static void init_location(Location *l, LocationType type, JournalFile *f, Object *o) {
de190aef 124 assert(l);
3742095b 125 assert(IN_SET(type, LOCATION_DISCRETE, LOCATION_SEEK));
de190aef
LP
126 assert(f);
127 assert(o->object.type == OBJECT_ENTRY);
128
a87247dd 129 l->type = type;
de190aef
LP
130 l->seqnum = le64toh(o->entry.seqnum);
131 l->seqnum_id = f->header->seqnum_id;
132 l->realtime = le64toh(o->entry.realtime);
133 l->monotonic = le64toh(o->entry.monotonic);
ce3fd7e7 134 l->boot_id = o->entry.boot_id;
de190aef
LP
135 l->xor_hash = le64toh(o->entry.xor_hash);
136
137 l->seqnum_set = l->realtime_set = l->monotonic_set = l->xor_hash_set = true;
138}
139
1eb6332d 140static void set_location(sd_journal *j, JournalFile *f, Object *o) {
de190aef
LP
141 assert(j);
142 assert(f);
143 assert(o);
144
1eb6332d 145 init_location(&j->current_location, LOCATION_DISCRETE, f, o);
de190aef
LP
146
147 j->current_file = f;
148 j->current_field = 0;
149
6573ef05
MS
150 /* Let f know its candidate entry was picked. */
151 assert(f->location_type == LOCATION_SEEK);
152 f->location_type = LOCATION_DISCRETE;
de190aef
LP
153}
154
cbdca852
LP
155static int match_is_valid(const void *data, size_t size) {
156 const char *b, *p;
157
158 assert(data);
159
160 if (size < 2)
161 return false;
162
163 if (startswith(data, "__"))
164 return false;
165
166 b = data;
167 for (p = b; p < b + size; p++) {
168
169 if (*p == '=')
170 return p > b;
171
172 if (*p == '_')
173 continue;
174
175 if (*p >= 'A' && *p <= 'Z')
176 continue;
177
178 if (*p >= '0' && *p <= '9')
179 continue;
180
181 return false;
182 }
183
184 return false;
185}
186
187static bool same_field(const void *_a, size_t s, const void *_b, size_t t) {
de190aef
LP
188 const uint8_t *a = _a, *b = _b;
189 size_t j;
de190aef
LP
190
191 for (j = 0; j < s && j < t; j++) {
192
de190aef 193 if (a[j] != b[j])
cbdca852 194 return false;
de190aef 195
cbdca852
LP
196 if (a[j] == '=')
197 return true;
de190aef
LP
198 }
199
bc302926 200 assert_not_reached("\"=\" not found");
cbdca852
LP
201}
202
203static Match *match_new(Match *p, MatchType t) {
204 Match *m;
205
206 m = new0(Match, 1);
207 if (!m)
208 return NULL;
209
210 m->type = t;
211
212 if (p) {
213 m->parent = p;
71fda00f 214 LIST_PREPEND(matches, p->matches, m);
cbdca852
LP
215 }
216
217 return m;
218}
219
220static void match_free(Match *m) {
221 assert(m);
222
223 while (m->matches)
224 match_free(m->matches);
225
226 if (m->parent)
71fda00f 227 LIST_REMOVE(matches, m->parent->matches, m);
cbdca852
LP
228
229 free(m->data);
230 free(m);
231}
232
233static void match_free_if_empty(Match *m) {
c5a10d9c 234 if (!m || m->matches)
cbdca852
LP
235 return;
236
237 match_free(m);
de190aef
LP
238}
239
a5344d2c 240_public_ int sd_journal_add_match(sd_journal *j, const void *data, size_t size) {
cd34b3c6 241 Match *l3, *l4, *add_here = NULL, *m;
4fd052ae 242 le64_t le_hash;
87d2c1ff 243
1ae464e0
TA
244 assert_return(j, -EINVAL);
245 assert_return(!journal_pid_changed(j), -ECHILD);
246 assert_return(data, -EINVAL);
cbdca852
LP
247
248 if (size == 0)
249 size = strlen(data);
250
1ae464e0 251 assert_return(match_is_valid(data, size), -EINVAL);
1cc101f1 252
cd34b3c6
HH
253 /* level 0: AND term
254 * level 1: OR terms
255 * level 2: AND terms
256 * level 3: OR terms
257 * level 4: concrete matches */
cbdca852
LP
258
259 if (!j->level0) {
cd34b3c6 260 j->level0 = match_new(NULL, MATCH_AND_TERM);
cbdca852
LP
261 if (!j->level0)
262 return -ENOMEM;
263 }
264
265 if (!j->level1) {
cd34b3c6 266 j->level1 = match_new(j->level0, MATCH_OR_TERM);
cbdca852
LP
267 if (!j->level1)
268 return -ENOMEM;
269 }
270
cd34b3c6
HH
271 if (!j->level2) {
272 j->level2 = match_new(j->level1, MATCH_AND_TERM);
273 if (!j->level2)
274 return -ENOMEM;
275 }
276
277 assert(j->level0->type == MATCH_AND_TERM);
278 assert(j->level1->type == MATCH_OR_TERM);
279 assert(j->level2->type == MATCH_AND_TERM);
ab4979d2 280
de190aef
LP
281 le_hash = htole64(hash64(data, size));
282
cd34b3c6
HH
283 LIST_FOREACH(matches, l3, j->level2->matches) {
284 assert(l3->type == MATCH_OR_TERM);
de190aef 285
cd34b3c6
HH
286 LIST_FOREACH(matches, l4, l3->matches) {
287 assert(l4->type == MATCH_DISCRETE);
de190aef 288
cbdca852
LP
289 /* Exactly the same match already? Then ignore
290 * this addition */
cd34b3c6
HH
291 if (l4->le_hash == le_hash &&
292 l4->size == size &&
293 memcmp(l4->data, data, size) == 0)
cbdca852
LP
294 return 0;
295
296 /* Same field? Then let's add this to this OR term */
cd34b3c6
HH
297 if (same_field(data, size, l4->data, l4->size)) {
298 add_here = l3;
cbdca852
LP
299 break;
300 }
301 }
302
303 if (add_here)
304 break;
de190aef
LP
305 }
306
cbdca852 307 if (!add_here) {
cd34b3c6 308 add_here = match_new(j->level2, MATCH_OR_TERM);
cbdca852
LP
309 if (!add_here)
310 goto fail;
311 }
312
313 m = match_new(add_here, MATCH_DISCRETE);
cec736d2 314 if (!m)
cbdca852 315 goto fail;
87d2c1ff 316
cbdca852 317 m->le_hash = le_hash;
1cc101f1 318 m->size = size;
cbdca852
LP
319 m->data = memdup(data, size);
320 if (!m->data)
321 goto fail;
322
323 detach_location(j);
324
325 return 0;
326
327fail:
c5a10d9c
ZJS
328 match_free_if_empty(add_here);
329 match_free_if_empty(j->level2);
330 match_free_if_empty(j->level1);
331 match_free_if_empty(j->level0);
cbdca852
LP
332
333 return -ENOMEM;
334}
335
cd34b3c6 336_public_ int sd_journal_add_conjunction(sd_journal *j) {
1ae464e0
TA
337 assert_return(j, -EINVAL);
338 assert_return(!journal_pid_changed(j), -ECHILD);
1cc101f1 339
cbdca852
LP
340 if (!j->level0)
341 return 0;
342
343 if (!j->level1)
344 return 0;
345
346 if (!j->level1->matches)
347 return 0;
348
cd34b3c6
HH
349 j->level1 = NULL;
350 j->level2 = NULL;
351
352 return 0;
353}
354
355_public_ int sd_journal_add_disjunction(sd_journal *j) {
1ae464e0
TA
356 assert_return(j, -EINVAL);
357 assert_return(!journal_pid_changed(j), -ECHILD);
cd34b3c6
HH
358
359 if (!j->level0)
360 return 0;
361
362 if (!j->level1)
363 return 0;
364
365 if (!j->level2)
366 return 0;
367
368 if (!j->level2->matches)
369 return 0;
cbdca852 370
cd34b3c6 371 j->level2 = NULL;
cbdca852
LP
372 return 0;
373}
374
375static char *match_make_string(Match *m) {
6b430fdb 376 char *p = NULL, *r;
cbdca852
LP
377 Match *i;
378 bool enclose = false;
379
380 if (!m)
4ad16808 381 return strdup("none");
cbdca852
LP
382
383 if (m->type == MATCH_DISCRETE)
384 return strndup(m->data, m->size);
385
cbdca852
LP
386 LIST_FOREACH(matches, i, m->matches) {
387 char *t, *k;
388
389 t = match_make_string(i);
6b430fdb
ZJS
390 if (!t)
391 return mfree(p);
cbdca852
LP
392
393 if (p) {
605405c6 394 k = strjoin(p, m->type == MATCH_OR_TERM ? " OR " : " AND ", t);
cbdca852
LP
395 free(p);
396 free(t);
397
398 if (!k)
399 return NULL;
400
401 p = k;
402
403 enclose = true;
bc302926 404 } else
cbdca852 405 p = t;
87d2c1ff
LP
406 }
407
cbdca852 408 if (enclose) {
605405c6 409 r = strjoin("(", p, ")");
cbdca852
LP
410 free(p);
411 return r;
412 }
87d2c1ff 413
cbdca852
LP
414 return p;
415}
de7b95cd 416
cbdca852
LP
417char *journal_make_match_string(sd_journal *j) {
418 assert(j);
8f9b6cd9 419
cbdca852 420 return match_make_string(j->level0);
87d2c1ff
LP
421}
422
a5344d2c
LP
423_public_ void sd_journal_flush_matches(sd_journal *j) {
424 if (!j)
425 return;
87d2c1ff 426
cbdca852
LP
427 if (j->level0)
428 match_free(j->level0);
de7b95cd 429
cd34b3c6 430 j->level0 = j->level1 = j->level2 = NULL;
8f9b6cd9 431
de190aef 432 detach_location(j);
87d2c1ff
LP
433}
434
487d3720
MS
435_pure_ static int compare_with_location(JournalFile *f, Location *l) {
436 assert(f);
de190aef 437 assert(l);
487d3720 438 assert(f->location_type == LOCATION_SEEK);
4c701096 439 assert(IN_SET(l->type, LOCATION_DISCRETE, LOCATION_SEEK));
de190aef
LP
440
441 if (l->monotonic_set &&
487d3720 442 sd_id128_equal(f->current_boot_id, l->boot_id) &&
de190aef 443 l->realtime_set &&
487d3720 444 f->current_realtime == l->realtime &&
de190aef 445 l->xor_hash_set &&
487d3720 446 f->current_xor_hash == l->xor_hash)
de190aef
LP
447 return 0;
448
449 if (l->seqnum_set &&
487d3720 450 sd_id128_equal(f->header->seqnum_id, l->seqnum_id)) {
de190aef 451
487d3720 452 if (f->current_seqnum < l->seqnum)
de190aef 453 return -1;
487d3720 454 if (f->current_seqnum > l->seqnum)
de190aef
LP
455 return 1;
456 }
457
458 if (l->monotonic_set &&
487d3720 459 sd_id128_equal(f->current_boot_id, l->boot_id)) {
de190aef 460
487d3720 461 if (f->current_monotonic < l->monotonic)
de190aef 462 return -1;
487d3720 463 if (f->current_monotonic > l->monotonic)
de190aef
LP
464 return 1;
465 }
466
467 if (l->realtime_set) {
468
487d3720 469 if (f->current_realtime < l->realtime)
de190aef 470 return -1;
487d3720 471 if (f->current_realtime > l->realtime)
de190aef
LP
472 return 1;
473 }
474
475 if (l->xor_hash_set) {
de190aef 476
487d3720 477 if (f->current_xor_hash < l->xor_hash)
de190aef 478 return -1;
487d3720 479 if (f->current_xor_hash > l->xor_hash)
de190aef
LP
480 return 1;
481 }
482
483 return 0;
484}
485
cbdca852
LP
486static int next_for_match(
487 sd_journal *j,
488 Match *m,
489 JournalFile *f,
490 uint64_t after_offset,
491 direction_t direction,
492 Object **ret,
493 uint64_t *offset) {
494
de7b95cd 495 int r;
cbdca852
LP
496 uint64_t np = 0;
497 Object *n;
de7b95cd
LP
498
499 assert(j);
cbdca852
LP
500 assert(m);
501 assert(f);
de7b95cd 502
cbdca852
LP
503 if (m->type == MATCH_DISCRETE) {
504 uint64_t dp;
de190aef 505
cbdca852 506 r = journal_file_find_data_object_with_hash(f, m->data, m->size, le64toh(m->le_hash), NULL, &dp);
de190aef
LP
507 if (r <= 0)
508 return r;
509
cbdca852 510 return journal_file_move_to_entry_by_offset_for_data(f, dp, after_offset, direction, ret, offset);
de190aef 511
cbdca852
LP
512 } else if (m->type == MATCH_OR_TERM) {
513 Match *i;
de7b95cd 514
cbdca852 515 /* Find the earliest match beyond after_offset */
de190aef 516
cbdca852
LP
517 LIST_FOREACH(matches, i, m->matches) {
518 uint64_t cp;
de190aef 519
cbdca852 520 r = next_for_match(j, i, f, after_offset, direction, NULL, &cp);
b4e5f920
LP
521 if (r < 0)
522 return r;
cbdca852 523 else if (r > 0) {
bc302926 524 if (np == 0 || (direction == DIRECTION_DOWN ? cp < np : cp > np))
cbdca852
LP
525 np = cp;
526 }
527 }
b4e5f920 528
bc302926
ZJS
529 if (np == 0)
530 return 0;
531
cbdca852 532 } else if (m->type == MATCH_AND_TERM) {
2bc8ca0c 533 Match *i, *last_moved;
de190aef 534
cbdca852 535 /* Always jump to the next matching entry and repeat
2bc8ca0c 536 * this until we find an offset that matches for all
cbdca852 537 * matches. */
de190aef 538
cbdca852
LP
539 if (!m->matches)
540 return 0;
de7b95cd 541
2bc8ca0c
ZJS
542 r = next_for_match(j, m->matches, f, after_offset, direction, NULL, &np);
543 if (r <= 0)
544 return r;
de190aef 545
2bc8ca0c
ZJS
546 assert(direction == DIRECTION_DOWN ? np >= after_offset : np <= after_offset);
547 last_moved = m->matches;
de190aef 548
2bc8ca0c
ZJS
549 LIST_LOOP_BUT_ONE(matches, i, m->matches, last_moved) {
550 uint64_t cp;
de190aef 551
2bc8ca0c
ZJS
552 r = next_for_match(j, i, f, np, direction, NULL, &cp);
553 if (r <= 0)
554 return r;
de190aef 555
2bc8ca0c
ZJS
556 assert(direction == DIRECTION_DOWN ? cp >= np : cp <= np);
557 if (direction == DIRECTION_DOWN ? cp > np : cp < np) {
558 np = cp;
559 last_moved = i;
de190aef 560 }
2bc8ca0c 561 }
cbdca852 562 }
de190aef 563
bc302926 564 assert(np > 0);
de190aef 565
cbdca852
LP
566 r = journal_file_move_to_object(f, OBJECT_ENTRY, np, &n);
567 if (r < 0)
568 return r;
de7b95cd 569
de190aef 570 if (ret)
cbdca852 571 *ret = n;
de190aef 572 if (offset)
cbdca852 573 *offset = np;
de190aef
LP
574
575 return 1;
576}
577
cbdca852
LP
578static int find_location_for_match(
579 sd_journal *j,
580 Match *m,
581 JournalFile *f,
582 direction_t direction,
583 Object **ret,
584 uint64_t *offset) {
585
de190aef 586 int r;
de190aef
LP
587
588 assert(j);
cbdca852 589 assert(m);
de190aef 590 assert(f);
de190aef 591
cbdca852
LP
592 if (m->type == MATCH_DISCRETE) {
593 uint64_t dp;
de190aef 594
cbdca852 595 r = journal_file_find_data_object_with_hash(f, m->data, m->size, le64toh(m->le_hash), NULL, &dp);
de7b95cd
LP
596 if (r <= 0)
597 return r;
598
cbdca852 599 /* FIXME: missing: find by monotonic */
de7b95cd 600
cbdca852
LP
601 if (j->current_location.type == LOCATION_HEAD)
602 return journal_file_next_entry_for_data(f, NULL, 0, dp, DIRECTION_DOWN, ret, offset);
603 if (j->current_location.type == LOCATION_TAIL)
604 return journal_file_next_entry_for_data(f, NULL, 0, dp, DIRECTION_UP, ret, offset);
605 if (j->current_location.seqnum_set && sd_id128_equal(j->current_location.seqnum_id, f->header->seqnum_id))
606 return journal_file_move_to_entry_by_seqnum_for_data(f, dp, j->current_location.seqnum, direction, ret, offset);
607 if (j->current_location.monotonic_set) {
608 r = journal_file_move_to_entry_by_monotonic_for_data(f, dp, j->current_location.boot_id, j->current_location.monotonic, direction, ret, offset);
609 if (r != -ENOENT)
610 return r;
611 }
612 if (j->current_location.realtime_set)
613 return journal_file_move_to_entry_by_realtime_for_data(f, dp, j->current_location.realtime, direction, ret, offset);
de190aef 614
cbdca852 615 return journal_file_next_entry_for_data(f, NULL, 0, dp, direction, ret, offset);
de7b95cd 616
cbdca852
LP
617 } else if (m->type == MATCH_OR_TERM) {
618 uint64_t np = 0;
619 Object *n;
620 Match *i;
de7b95cd 621
cbdca852 622 /* Find the earliest match */
de7b95cd 623
cbdca852
LP
624 LIST_FOREACH(matches, i, m->matches) {
625 uint64_t cp;
626
627 r = find_location_for_match(j, i, f, direction, NULL, &cp);
628 if (r < 0)
629 return r;
630 else if (r > 0) {
631 if (np == 0 || (direction == DIRECTION_DOWN ? np > cp : np < cp))
632 np = cp;
de190aef 633 }
cbdca852 634 }
de190aef 635
cbdca852
LP
636 if (np == 0)
637 return 0;
de7b95cd 638
cbdca852
LP
639 r = journal_file_move_to_object(f, OBJECT_ENTRY, np, &n);
640 if (r < 0)
641 return r;
de7b95cd 642
cbdca852
LP
643 if (ret)
644 *ret = n;
645 if (offset)
646 *offset = np;
de190aef 647
cbdca852 648 return 1;
e892bd17 649
cbdca852
LP
650 } else {
651 Match *i;
652 uint64_t np = 0;
653
654 assert(m->type == MATCH_AND_TERM);
655
656 /* First jump to the last match, and then find the
657 * next one where all matches match */
658
659 if (!m->matches)
660 return 0;
661
662 LIST_FOREACH(matches, i, m->matches) {
663 uint64_t cp;
664
665 r = find_location_for_match(j, i, f, direction, NULL, &cp);
666 if (r <= 0)
4b067dc9
LP
667 return r;
668
bc302926 669 if (np == 0 || (direction == DIRECTION_DOWN ? cp > np : cp < np))
cbdca852 670 np = cp;
de7b95cd
LP
671 }
672
cbdca852
LP
673 return next_for_match(j, m, f, np, direction, ret, offset);
674 }
675}
de190aef 676
cbdca852
LP
677static int find_location_with_matches(
678 sd_journal *j,
679 JournalFile *f,
680 direction_t direction,
681 Object **ret,
682 uint64_t *offset) {
683
684 int r;
685
686 assert(j);
687 assert(f);
688 assert(ret);
689 assert(offset);
690
691 if (!j->level0) {
692 /* No matches is simple */
693
694 if (j->current_location.type == LOCATION_HEAD)
f534928a 695 return journal_file_next_entry(f, 0, DIRECTION_DOWN, ret, offset);
cbdca852 696 if (j->current_location.type == LOCATION_TAIL)
f534928a 697 return journal_file_next_entry(f, 0, DIRECTION_UP, ret, offset);
cbdca852
LP
698 if (j->current_location.seqnum_set && sd_id128_equal(j->current_location.seqnum_id, f->header->seqnum_id))
699 return journal_file_move_to_entry_by_seqnum(f, j->current_location.seqnum, direction, ret, offset);
700 if (j->current_location.monotonic_set) {
701 r = journal_file_move_to_entry_by_monotonic(f, j->current_location.boot_id, j->current_location.monotonic, direction, ret, offset);
702 if (r != -ENOENT)
703 return r;
de7b95cd 704 }
cbdca852
LP
705 if (j->current_location.realtime_set)
706 return journal_file_move_to_entry_by_realtime(f, j->current_location.realtime, direction, ret, offset);
de7b95cd 707
f534928a 708 return journal_file_next_entry(f, 0, direction, ret, offset);
cbdca852
LP
709 } else
710 return find_location_for_match(j, j->level0, f, direction, ret, offset);
711}
de7b95cd 712
cbdca852
LP
713static int next_with_matches(
714 sd_journal *j,
715 JournalFile *f,
716 direction_t direction,
717 Object **ret,
718 uint64_t *offset) {
719
cbdca852
LP
720 assert(j);
721 assert(f);
722 assert(ret);
723 assert(offset);
724
cbdca852
LP
725 /* No matches is easy. We simple advance the file
726 * pointer by one. */
727 if (!j->level0)
b29ddfcb 728 return journal_file_next_entry(f, f->current_offset, direction, ret, offset);
cbdca852
LP
729
730 /* If we have a match then we look for the next matching entry
49f43d5f 731 * with an offset at least one step larger */
b29ddfcb
MS
732 return next_for_match(j, j->level0, f,
733 direction == DIRECTION_DOWN ? f->current_offset + 1
734 : f->current_offset - 1,
735 direction, ret, offset);
de7b95cd
LP
736}
737
58439db4 738static int next_beyond_location(sd_journal *j, JournalFile *f, direction_t direction) {
de190aef 739 Object *c;
6e693b42 740 uint64_t cp, n_entries;
cbdca852 741 int r;
de190aef
LP
742
743 assert(j);
744 assert(f);
745
950c07d4
MS
746 n_entries = le64toh(f->header->n_entries);
747
748 /* If we hit EOF before, we don't need to look into this file again
749 * unless direction changed or new entries appeared. */
750 if (f->last_direction == direction && f->location_type == LOCATION_TAIL &&
751 n_entries == f->last_n_entries)
752 return 0;
668c965a 753
950c07d4
MS
754 f->last_n_entries = n_entries;
755
756 if (f->last_direction == direction && f->current_offset > 0) {
7943f422
MS
757 /* LOCATION_SEEK here means we did the work in a previous
758 * iteration and the current location already points to a
759 * candidate entry. */
487d3720
MS
760 if (f->location_type != LOCATION_SEEK) {
761 r = next_with_matches(j, f, direction, &c, &cp);
762 if (r <= 0)
763 return r;
466ccd92 764
950c07d4 765 journal_file_save_location(f, c, cp);
487d3720 766 }
de190aef 767 } else {
950c07d4
MS
768 f->last_direction = direction;
769
cbdca852 770 r = find_location_with_matches(j, f, direction, &c, &cp);
de190aef
LP
771 if (r <= 0)
772 return r;
487d3720 773
950c07d4 774 journal_file_save_location(f, c, cp);
de190aef
LP
775 }
776
bc302926 777 /* OK, we found the spot, now let's advance until an entry
cbdca852
LP
778 * that is actually different from what we were previously
779 * looking at. This is necessary to handle entries which exist
780 * in two (or more) journal files, and which shall all be
781 * suppressed but one. */
782
de190aef
LP
783 for (;;) {
784 bool found;
785
786 if (j->current_location.type == LOCATION_DISCRETE) {
787 int k;
788
487d3720 789 k = compare_with_location(f, &j->current_location);
1cdf7175
CH
790
791 found = direction == DIRECTION_DOWN ? k > 0 : k < 0;
de190aef
LP
792 } else
793 found = true;
794
487d3720 795 if (found)
de190aef 796 return 1;
de190aef
LP
797
798 r = next_with_matches(j, f, direction, &c, &cp);
799 if (r <= 0)
800 return r;
487d3720 801
950c07d4 802 journal_file_save_location(f, c, cp);
de190aef
LP
803 }
804}
805
e892bd17 806static int real_journal_next(sd_journal *j, direction_t direction) {
5d4ba7f2
VC
807 JournalFile *new_file = NULL;
808 unsigned i, n_files;
809 const void **files;
a002d44b 810 Object *o;
87d2c1ff
LP
811 int r;
812
1ae464e0
TA
813 assert_return(j, -EINVAL);
814 assert_return(!journal_pid_changed(j), -ECHILD);
87d2c1ff 815
5d4ba7f2
VC
816 r = iterated_cache_get(j->files_cache, NULL, &files, &n_files);
817 if (r < 0)
818 return r;
819
820 for (i = 0; i < n_files; i++) {
821 JournalFile *f = (JournalFile *)files[i];
de190aef 822 bool found;
87d2c1ff 823
58439db4 824 r = next_beyond_location(j, f, direction);
e590af26 825 if (r < 0) {
da927ba9 826 log_debug_errno(r, "Can't iterate through %s, ignoring: %m", f->path);
a9a245c1 827 remove_file_real(j, f);
e590af26 828 continue;
6573ef05
MS
829 } else if (r == 0) {
830 f->location_type = LOCATION_TAIL;
cec736d2 831 continue;
6573ef05 832 }
87d2c1ff 833
468b21de 834 if (!new_file)
de190aef
LP
835 found = true;
836 else {
837 int k;
838
d8ae66d7 839 k = journal_file_compare_locations(f, new_file);
de190aef 840
bc302926 841 found = direction == DIRECTION_DOWN ? k < 0 : k > 0;
de190aef
LP
842 }
843
e499c999 844 if (found)
468b21de 845 new_file = f;
87d2c1ff
LP
846 }
847
468b21de 848 if (!new_file)
de190aef 849 return 0;
ae2cc8ef 850
e499c999 851 r = journal_file_move_to_object(new_file, OBJECT_ENTRY, new_file->current_offset, &o);
468b21de
LP
852 if (r < 0)
853 return r;
854
1eb6332d 855 set_location(j, new_file, o);
ae2cc8ef 856
de190aef
LP
857 return 1;
858}
ae2cc8ef 859
a5344d2c 860_public_ int sd_journal_next(sd_journal *j) {
de190aef
LP
861 return real_journal_next(j, DIRECTION_DOWN);
862}
ae2cc8ef 863
a5344d2c 864_public_ int sd_journal_previous(sd_journal *j) {
de190aef
LP
865 return real_journal_next(j, DIRECTION_UP);
866}
ae2cc8ef 867
6f003b43 868static int real_journal_next_skip(sd_journal *j, direction_t direction, uint64_t skip) {
de190aef 869 int c = 0, r;
ae2cc8ef 870
1ae464e0
TA
871 assert_return(j, -EINVAL);
872 assert_return(!journal_pid_changed(j), -ECHILD);
de190aef 873
6f003b43
LP
874 if (skip == 0) {
875 /* If this is not a discrete skip, then at least
876 * resolve the current location */
04884354
LK
877 if (j->current_location.type != LOCATION_DISCRETE) {
878 r = real_journal_next(j, direction);
879 if (r < 0)
880 return r;
881 }
6f003b43
LP
882
883 return 0;
884 }
885
886 do {
887 r = real_journal_next(j, direction);
de190aef
LP
888 if (r < 0)
889 return r;
890
891 if (r == 0)
892 return c;
893
894 skip--;
895 c++;
6f003b43 896 } while (skip > 0);
87d2c1ff 897
de190aef 898 return c;
87d2c1ff
LP
899}
900
6f003b43
LP
901_public_ int sd_journal_next_skip(sd_journal *j, uint64_t skip) {
902 return real_journal_next_skip(j, DIRECTION_DOWN, skip);
903}
de190aef 904
6f003b43
LP
905_public_ int sd_journal_previous_skip(sd_journal *j, uint64_t skip) {
906 return real_journal_next_skip(j, DIRECTION_UP, skip);
87d2c1ff
LP
907}
908
a5344d2c 909_public_ int sd_journal_get_cursor(sd_journal *j, char **cursor) {
cec736d2 910 Object *o;
87d2c1ff 911 int r;
3fbf9cbb 912 char bid[33], sid[33];
87d2c1ff 913
1ae464e0
TA
914 assert_return(j, -EINVAL);
915 assert_return(!journal_pid_changed(j), -ECHILD);
916 assert_return(cursor, -EINVAL);
87d2c1ff 917
3fbf9cbb
LP
918 if (!j->current_file || j->current_file->current_offset <= 0)
919 return -EADDRNOTAVAIL;
87d2c1ff 920
de190aef 921 r = journal_file_move_to_object(j->current_file, OBJECT_ENTRY, j->current_file->current_offset, &o);
87d2c1ff
LP
922 if (r < 0)
923 return r;
924
3fbf9cbb
LP
925 sd_id128_to_string(j->current_file->header->seqnum_id, sid);
926 sd_id128_to_string(o->entry.boot_id, bid);
87d2c1ff 927
3fbf9cbb 928 if (asprintf(cursor,
507f22bd
ZJS
929 "s=%s;i=%"PRIx64";b=%s;m=%"PRIx64";t=%"PRIx64";x=%"PRIx64,
930 sid, le64toh(o->entry.seqnum),
931 bid, le64toh(o->entry.monotonic),
932 le64toh(o->entry.realtime),
933 le64toh(o->entry.xor_hash)) < 0)
3fbf9cbb 934 return -ENOMEM;
87d2c1ff 935
6f47ad30 936 return 0;
87d2c1ff
LP
937}
938
a5344d2c 939_public_ int sd_journal_seek_cursor(sd_journal *j, const char *cursor) {
a2a5291b 940 const char *word, *state;
de190aef 941 size_t l;
de190aef
LP
942 unsigned long long seqnum, monotonic, realtime, xor_hash;
943 bool
944 seqnum_id_set = false,
945 seqnum_set = false,
946 boot_id_set = false,
947 monotonic_set = false,
948 realtime_set = false,
949 xor_hash_set = false;
950 sd_id128_t seqnum_id, boot_id;
951
1ae464e0
TA
952 assert_return(j, -EINVAL);
953 assert_return(!journal_pid_changed(j), -ECHILD);
954 assert_return(!isempty(cursor), -EINVAL);
de190aef 955
a2a5291b 956 FOREACH_WORD_SEPARATOR(word, l, cursor, ";", state) {
de190aef
LP
957 char *item;
958 int k = 0;
959
a2a5291b 960 if (l < 2 || word[1] != '=')
de190aef
LP
961 return -EINVAL;
962
a2a5291b 963 item = strndup(word, l);
de190aef
LP
964 if (!item)
965 return -ENOMEM;
966
a2a5291b 967 switch (word[0]) {
de190aef
LP
968
969 case 's':
970 seqnum_id_set = true;
be3ea5ea 971 k = sd_id128_from_string(item+2, &seqnum_id);
de190aef
LP
972 break;
973
974 case 'i':
975 seqnum_set = true;
be3ea5ea 976 if (sscanf(item+2, "%llx", &seqnum) != 1)
de190aef
LP
977 k = -EINVAL;
978 break;
979
980 case 'b':
981 boot_id_set = true;
be3ea5ea 982 k = sd_id128_from_string(item+2, &boot_id);
de190aef
LP
983 break;
984
985 case 'm':
986 monotonic_set = true;
be3ea5ea 987 if (sscanf(item+2, "%llx", &monotonic) != 1)
de190aef
LP
988 k = -EINVAL;
989 break;
990
991 case 't':
992 realtime_set = true;
be3ea5ea 993 if (sscanf(item+2, "%llx", &realtime) != 1)
de190aef
LP
994 k = -EINVAL;
995 break;
996
997 case 'x':
998 xor_hash_set = true;
be3ea5ea 999 if (sscanf(item+2, "%llx", &xor_hash) != 1)
de190aef
LP
1000 k = -EINVAL;
1001 break;
1002 }
1003
1004 free(item);
1005
1006 if (k < 0)
1007 return k;
1008 }
1009
1010 if ((!seqnum_set || !seqnum_id_set) &&
1011 (!monotonic_set || !boot_id_set) &&
1012 !realtime_set)
1013 return -EINVAL;
1014
1015 reset_location(j);
1016
a87247dd 1017 j->current_location.type = LOCATION_SEEK;
de190aef
LP
1018
1019 if (realtime_set) {
1020 j->current_location.realtime = (uint64_t) realtime;
1021 j->current_location.realtime_set = true;
1022 }
1023
1024 if (seqnum_set && seqnum_id_set) {
1025 j->current_location.seqnum = (uint64_t) seqnum;
1026 j->current_location.seqnum_id = seqnum_id;
1027 j->current_location.seqnum_set = true;
1028 }
1029
1030 if (monotonic_set && boot_id_set) {
1031 j->current_location.monotonic = (uint64_t) monotonic;
1032 j->current_location.boot_id = boot_id;
1033 j->current_location.monotonic_set = true;
1034 }
1035
1036 if (xor_hash_set) {
1037 j->current_location.xor_hash = (uint64_t) xor_hash;
1038 j->current_location.xor_hash_set = true;
1039 }
1040
1041 return 0;
1042}
1043
c6511e85
LP
1044_public_ int sd_journal_test_cursor(sd_journal *j, const char *cursor) {
1045 int r;
c6511e85
LP
1046 Object *o;
1047
1ae464e0
TA
1048 assert_return(j, -EINVAL);
1049 assert_return(!journal_pid_changed(j), -ECHILD);
1050 assert_return(!isempty(cursor), -EINVAL);
c6511e85
LP
1051
1052 if (!j->current_file || j->current_file->current_offset <= 0)
1053 return -EADDRNOTAVAIL;
1054
1055 r = journal_file_move_to_object(j->current_file, OBJECT_ENTRY, j->current_file->current_offset, &o);
1056 if (r < 0)
1057 return r;
1058
9ed794a3 1059 for (;;) {
c6511e85 1060 _cleanup_free_ char *item = NULL;
c6511e85 1061 unsigned long long ll;
7294bb5b 1062 sd_id128_t id;
c6511e85
LP
1063 int k = 0;
1064
7294bb5b
SS
1065 r = extract_first_word(&cursor, &item, ";", EXTRACT_DONT_COALESCE_SEPARATORS);
1066 if (r < 0)
1067 return r;
c6511e85 1068
7294bb5b
SS
1069 if (r == 0)
1070 break;
c6511e85 1071
7294bb5b
SS
1072 if (strlen(item) < 2 || item[1] != '=')
1073 return -EINVAL;
1074
1075 switch (item[0]) {
c6511e85
LP
1076
1077 case 's':
1078 k = sd_id128_from_string(item+2, &id);
1079 if (k < 0)
1080 return k;
1081 if (!sd_id128_equal(id, j->current_file->header->seqnum_id))
1082 return 0;
1083 break;
1084
1085 case 'i':
1086 if (sscanf(item+2, "%llx", &ll) != 1)
1087 return -EINVAL;
1088 if (ll != le64toh(o->entry.seqnum))
1089 return 0;
1090 break;
1091
1092 case 'b':
1093 k = sd_id128_from_string(item+2, &id);
1094 if (k < 0)
1095 return k;
1096 if (!sd_id128_equal(id, o->entry.boot_id))
1097 return 0;
1098 break;
1099
1100 case 'm':
1101 if (sscanf(item+2, "%llx", &ll) != 1)
1102 return -EINVAL;
1103 if (ll != le64toh(o->entry.monotonic))
1104 return 0;
1105 break;
1106
1107 case 't':
1108 if (sscanf(item+2, "%llx", &ll) != 1)
1109 return -EINVAL;
1110 if (ll != le64toh(o->entry.realtime))
1111 return 0;
1112 break;
1113
1114 case 'x':
1115 if (sscanf(item+2, "%llx", &ll) != 1)
1116 return -EINVAL;
1117 if (ll != le64toh(o->entry.xor_hash))
1118 return 0;
1119 break;
1120 }
1121 }
1122
1123 return 1;
1124}
1125
a5344d2c 1126_public_ int sd_journal_seek_monotonic_usec(sd_journal *j, sd_id128_t boot_id, uint64_t usec) {
1ae464e0
TA
1127 assert_return(j, -EINVAL);
1128 assert_return(!journal_pid_changed(j), -ECHILD);
de190aef
LP
1129
1130 reset_location(j);
a87247dd 1131 j->current_location.type = LOCATION_SEEK;
de190aef
LP
1132 j->current_location.boot_id = boot_id;
1133 j->current_location.monotonic = usec;
1134 j->current_location.monotonic_set = true;
1135
1136 return 0;
1137}
1138
a5344d2c 1139_public_ int sd_journal_seek_realtime_usec(sd_journal *j, uint64_t usec) {
1ae464e0
TA
1140 assert_return(j, -EINVAL);
1141 assert_return(!journal_pid_changed(j), -ECHILD);
de190aef
LP
1142
1143 reset_location(j);
a87247dd 1144 j->current_location.type = LOCATION_SEEK;
de190aef
LP
1145 j->current_location.realtime = usec;
1146 j->current_location.realtime_set = true;
1147
1148 return 0;
1149}
1150
a5344d2c 1151_public_ int sd_journal_seek_head(sd_journal *j) {
1ae464e0
TA
1152 assert_return(j, -EINVAL);
1153 assert_return(!journal_pid_changed(j), -ECHILD);
de190aef
LP
1154
1155 reset_location(j);
1156 j->current_location.type = LOCATION_HEAD;
1157
1158 return 0;
1159}
1160
a5344d2c 1161_public_ int sd_journal_seek_tail(sd_journal *j) {
1ae464e0
TA
1162 assert_return(j, -EINVAL);
1163 assert_return(!journal_pid_changed(j), -ECHILD);
de190aef
LP
1164
1165 reset_location(j);
1166 j->current_location.type = LOCATION_TAIL;
1167
1168 return 0;
87d2c1ff
LP
1169}
1170
85210bff 1171static void check_network(sd_journal *j, int fd) {
85210bff
LP
1172 assert(j);
1173
1174 if (j->on_network)
1175 return;
1176
77f9fa3b 1177 j->on_network = fd_is_network_fs(fd);
85210bff
LP
1178}
1179
a688baa8
ZJS
1180static bool file_has_type_prefix(const char *prefix, const char *filename) {
1181 const char *full, *tilded, *atted;
1182
63c372cb
LP
1183 full = strjoina(prefix, ".journal");
1184 tilded = strjoina(full, "~");
1185 atted = strjoina(prefix, "@");
a688baa8
ZJS
1186
1187 return streq(filename, full) ||
1188 streq(filename, tilded) ||
1189 startswith(filename, atted);
1190}
1191
1192static bool file_type_wanted(int flags, const char *filename) {
d617408e
LP
1193 assert(filename);
1194
a688baa8
ZJS
1195 if (!endswith(filename, ".journal") && !endswith(filename, ".journal~"))
1196 return false;
1197
1198 /* no flags set → every type is OK */
1199 if (!(flags & (SD_JOURNAL_SYSTEM | SD_JOURNAL_CURRENT_USER)))
1200 return true;
1201
1202 if (flags & SD_JOURNAL_SYSTEM && file_has_type_prefix("system", filename))
1203 return true;
1204
1205 if (flags & SD_JOURNAL_CURRENT_USER) {
1206 char prefix[5 + DECIMAL_STR_MAX(uid_t) + 1];
1207
5ffa8c81 1208 xsprintf(prefix, "user-"UID_FMT, getuid());
a688baa8
ZJS
1209
1210 if (file_has_type_prefix(prefix, filename))
1211 return true;
1212 }
1213
1214 return false;
1215}
1216
5d1ce257
LP
1217static bool path_has_prefix(sd_journal *j, const char *path, const char *prefix) {
1218 assert(j);
1219 assert(path);
1220 assert(prefix);
1221
1222 if (j->toplevel_fd >= 0)
1223 return false;
1224
1225 return path_startswith(path, prefix);
1226}
1227
9c66f528
LP
1228static void track_file_disposition(sd_journal *j, JournalFile *f) {
1229 assert(j);
1230 assert(f);
1231
1232 if (!j->has_runtime_files && path_has_prefix(j, f->path, "/run"))
1233 j->has_runtime_files = true;
1234 else if (!j->has_persistent_files && path_has_prefix(j, f->path, "/var"))
1235 j->has_persistent_files = true;
1236}
1237
5d1ce257
LP
1238static const char *skip_slash(const char *p) {
1239
1240 if (!p)
1241 return NULL;
1242
1243 while (*p == '/')
1244 p++;
1245
1246 return p;
1247}
1248
9c66f528
LP
1249static int add_any_file(
1250 sd_journal *j,
1251 int fd,
1252 const char *path) {
1253
5d1ce257 1254 bool close_fd = false;
9c66f528
LP
1255 JournalFile *f;
1256 struct stat st;
d617408e 1257 int r, k;
3fbf9cbb
LP
1258
1259 assert(j);
5d1ce257 1260 assert(fd >= 0 || path);
3fbf9cbb 1261
9c66f528
LP
1262 if (fd < 0) {
1263 if (j->toplevel_fd >= 0)
1264 /* If there's a top-level fd defined make the path relative, explicitly, since otherwise
1265 * openat() ignores the first argument. */
1266
1267 fd = openat(j->toplevel_fd, skip_slash(path), O_RDONLY|O_CLOEXEC|O_NONBLOCK);
1268 else
1269 fd = open(path, O_RDONLY|O_CLOEXEC|O_NONBLOCK);
1270 if (fd < 0) {
1271 r = log_debug_errno(errno, "Failed to open journal file %s: %m", path);
1272 goto finish;
1273 }
1274
1275 close_fd = true;
1276
1277 r = fd_nonblock(fd, false);
1278 if (r < 0) {
1279 r = log_debug_errno(errno, "Failed to turn off O_NONBLOCK for %s: %m", path);
1280 goto finish;
858749f7
LP
1281 }
1282 }
50f20cfd 1283
9c66f528
LP
1284 if (fstat(fd, &st) < 0) {
1285 r = log_debug_errno(errno, "Failed to fstat file '%s': %m", path);
1286 goto finish;
1287 }
3cc44114
LP
1288
1289 r = stat_verify_regular(&st);
1290 if (r < 0) {
1291 log_debug_errno(r, "Refusing to open '%s', as it is not a regular file.", path);
9c66f528 1292 goto finish;
9e8abdf0
LP
1293 }
1294
9c66f528
LP
1295 f = ordered_hashmap_get(j->files, path);
1296 if (f) {
1297 if (f->last_stat.st_dev == st.st_dev &&
1298 f->last_stat.st_ino == st.st_ino) {
5d1ce257 1299
9c66f528
LP
1300 /* We already track this file, under the same path and with the same device/inode numbers, it's
1301 * hence really the same. Mark this file as seen in this generation. This is used to GC old
1302 * files in process_q_overflow() to detect journal files that are still there and discern them
1303 * from those which are gone. */
5d1ce257 1304
9c66f528
LP
1305 f->last_seen_generation = j->generation;
1306 r = 0;
1307 goto finish;
5d1ce257
LP
1308 }
1309
9c66f528
LP
1310 /* So we tracked a file under this name, but it has a different inode/device. In that case, it got
1311 * replaced (probably due to rotation?), let's drop it hence from our list. */
1312 remove_file_real(j, f);
1313 f = NULL;
1314 }
1315
1316 if (ordered_hashmap_size(j->files) >= JOURNAL_FILES_MAX) {
1317 log_debug("Too many open journal files, not adding %s.", path);
1318 r = -ETOOMANYREFS;
1319 goto finish;
5d1ce257
LP
1320 }
1321
57850536 1322 r = journal_file_open(fd, path, O_RDONLY, 0, false, 0, false, NULL, j->mmap, NULL, NULL, &f);
d617408e
LP
1323 if (r < 0) {
1324 log_debug_errno(r, "Failed to open journal file %s: %m", path);
9c66f528 1325 goto finish;
d617408e 1326 }
3fbf9cbb 1327
72f59706 1328 /* journal_file_dump(f); */
de190aef 1329
c1f906bd 1330 r = ordered_hashmap_put(j->files, f->path, f);
3fbf9cbb 1331 if (r < 0) {
9c66f528 1332 f->close_fd = false; /* make sure journal_file_close() doesn't close the caller's fd (or our own). We'll let the caller do that, or ourselves */
69a3a6fd 1333 (void) journal_file_close(f);
9c66f528 1334 goto finish;
3fbf9cbb
LP
1335 }
1336
9c66f528 1337 close_fd = false; /* the fd is now owned by the JournalFile object */
5d1ce257 1338
9c66f528 1339 f->last_seen_generation = j->generation;
a50d7d43 1340
9c66f528 1341 track_file_disposition(j, f);
85210bff
LP
1342 check_network(j, f->fd);
1343
313cefa1 1344 j->current_invalidate_counter++;
a963990f 1345
9c66f528 1346 log_debug("File %s added.", f->path);
d617408e 1347
9c66f528
LP
1348 r = 0;
1349
1350finish:
1351 if (close_fd)
1352 safe_close(fd);
1353
1354 if (r < 0) {
1355 k = journal_put_error(j, r, path);
1356 if (k < 0)
1357 return k;
1358 }
d617408e
LP
1359
1360 return r;
50f20cfd
LP
1361}
1362
fc1813c0
LP
1363static int add_file_by_name(
1364 sd_journal *j,
1365 const char *prefix,
1366 const char *filename) {
1367
d617408e 1368 const char *path;
5302ebe1
ZJS
1369
1370 assert(j);
1371 assert(prefix);
1372 assert(filename);
1373
5d1ce257 1374 if (j->no_new_files)
5302ebe1
ZJS
1375 return 0;
1376
5d1ce257
LP
1377 if (!file_type_wanted(j->flags, filename))
1378 return 0;
39fd5b08 1379
5d1ce257
LP
1380 path = strjoina(prefix, "/", filename);
1381 return add_any_file(j, -1, path);
5302ebe1
ZJS
1382}
1383
fc1813c0
LP
1384static void remove_file_by_name(
1385 sd_journal *j,
1386 const char *prefix,
1387 const char *filename) {
1388
d617408e 1389 const char *path;
50f20cfd
LP
1390 JournalFile *f;
1391
1392 assert(j);
1393 assert(prefix);
1394 assert(filename);
1395
d617408e 1396 path = strjoina(prefix, "/", filename);
c1f906bd 1397 f = ordered_hashmap_get(j->files, path);
50f20cfd 1398 if (!f)
d617408e 1399 return;
50f20cfd 1400
a9a245c1 1401 remove_file_real(j, f);
a9a245c1
ZJS
1402}
1403
1404static void remove_file_real(sd_journal *j, JournalFile *f) {
1405 assert(j);
1406 assert(f);
1407
fc1813c0 1408 (void) ordered_hashmap_remove(j->files, f->path);
44a5fa34 1409
5ec76417 1410 log_debug("File %s removed.", f->path);
44a5fa34 1411
3c1668da
LP
1412 if (j->current_file == f) {
1413 j->current_file = NULL;
1414 j->current_field = 0;
1415 }
1416
1417 if (j->unique_file == f) {
360af4cf 1418 /* Jump to the next unique_file or NULL if that one was last */
c1f906bd 1419 j->unique_file = ordered_hashmap_next(j->files, j->unique_file->path);
3c1668da 1420 j->unique_offset = 0;
360af4cf
ZJS
1421 if (!j->unique_file)
1422 j->unique_file_lost = true;
3c1668da
LP
1423 }
1424
eb86030e
LP
1425 if (j->fields_file == f) {
1426 j->fields_file = ordered_hashmap_next(j->files, j->fields_file->path);
1427 j->fields_offset = 0;
1428 if (!j->fields_file)
1429 j->fields_file_lost = true;
1430 }
1431
69a3a6fd 1432 (void) journal_file_close(f);
50f20cfd 1433
313cefa1 1434 j->current_invalidate_counter++;
3fbf9cbb
LP
1435}
1436
d617408e
LP
1437static int dirname_is_machine_id(const char *fn) {
1438 sd_id128_t id, machine;
1439 int r;
1440
1441 r = sd_id128_get_machine(&machine);
1442 if (r < 0)
1443 return r;
1444
1445 r = sd_id128_from_string(fn, &id);
1446 if (r < 0)
1447 return r;
1448
1449 return sd_id128_equal(id, machine);
1450}
1451
858749f7
LP
1452static bool dirent_is_journal_file(const struct dirent *de) {
1453 assert(de);
1454
1455 if (!IN_SET(de->d_type, DT_REG, DT_LNK, DT_UNKNOWN))
1456 return false;
1457
1458 return endswith(de->d_name, ".journal") ||
1459 endswith(de->d_name, ".journal~");
1460}
1461
1462static bool dirent_is_id128_subdir(const struct dirent *de) {
1463 assert(de);
1464
1465 if (!IN_SET(de->d_type, DT_DIR, DT_LNK, DT_UNKNOWN))
1466 return false;
1467
1468 return id128_is_valid(de->d_name);
1469}
1470
1471static int directory_open(sd_journal *j, const char *path, DIR **ret) {
1472 DIR *d;
1473
1474 assert(j);
1475 assert(path);
1476 assert(ret);
1477
1478 if (j->toplevel_fd < 0)
1479 d = opendir(path);
1480 else
1481 /* Open the specified directory relative to the toplevel fd. Enforce that the path specified is
1482 * relative, by dropping the initial slash */
1483 d = xopendirat(j->toplevel_fd, skip_slash(path), 0);
1484 if (!d)
1485 return -errno;
1486
1487 *ret = d;
1488 return 0;
1489}
1490
1491static int add_directory(sd_journal *j, const char *prefix, const char *dirname);
1492
1493static void directory_enumerate(sd_journal *j, Directory *m, DIR *d) {
1494 struct dirent *de;
1495
1496 assert(j);
1497 assert(m);
1498 assert(d);
1499
1500 FOREACH_DIRENT_ALL(de, d, goto fail) {
fc1813c0 1501
858749f7 1502 if (dirent_is_journal_file(de))
fc1813c0 1503 (void) add_file_by_name(j, m->path, de->d_name);
858749f7
LP
1504
1505 if (m->is_root && dirent_is_id128_subdir(de))
1506 (void) add_directory(j, m->path, de->d_name);
1507 }
1508
1509 return;
1510
1511fail:
1512 log_debug_errno(errno, "Failed to enumerate directory %s, ignoring: %m", m->path);
1513}
1514
1515static void directory_watch(sd_journal *j, Directory *m, int fd, uint32_t mask) {
1516 int r;
1517
1518 assert(j);
1519 assert(m);
1520 assert(fd >= 0);
1521
1522 /* Watch this directory if that's enabled and if it not being watched yet. */
1523
1524 if (m->wd > 0) /* Already have a watch? */
1525 return;
1526 if (j->inotify_fd < 0) /* Not watching at all? */
1527 return;
1528
1529 m->wd = inotify_add_watch_fd(j->inotify_fd, fd, mask);
1530 if (m->wd < 0) {
1531 log_debug_errno(errno, "Failed to watch journal directory '%s', ignoring: %m", m->path);
1532 return;
1533 }
1534
1535 r = hashmap_put(j->directories_by_wd, INT_TO_PTR(m->wd), m);
1536 if (r == -EEXIST)
1537 log_debug_errno(r, "Directory '%s' already being watched under a different path, ignoring: %m", m->path);
1538 if (r < 0) {
1539 log_debug_errno(r, "Failed to add watch for journal directory '%s' to hashmap, ignoring: %m", m->path);
1540 (void) inotify_rm_watch(j->inotify_fd, m->wd);
1541 m->wd = -1;
1542 }
1543}
1544
a963990f 1545static int add_directory(sd_journal *j, const char *prefix, const char *dirname) {
7fd1b19b 1546 _cleanup_free_ char *path = NULL;
7fd1b19b 1547 _cleanup_closedir_ DIR *d = NULL;
a963990f 1548 Directory *m;
d617408e 1549 int r, k;
3fbf9cbb
LP
1550
1551 assert(j);
1552 assert(prefix);
3fbf9cbb 1553
5d1ce257
LP
1554 /* Adds a journal file directory to watch. If the directory is already tracked this updates the inotify watch
1555 * and reenumerates directory contents */
d95b1fb3 1556
5d1ce257 1557 if (dirname)
605405c6 1558 path = strjoin(prefix, "/", dirname);
5d1ce257
LP
1559 else
1560 path = strdup(prefix);
d617408e
LP
1561 if (!path) {
1562 r = -ENOMEM;
1563 goto fail;
1564 }
3fbf9cbb 1565
858749f7 1566 log_debug("Considering directory '%s'.", path);
5d1ce257
LP
1567
1568 /* We consider everything local that is in a directory for the local machine ID, or that is stored in /run */
1569 if ((j->flags & SD_JOURNAL_LOCAL_ONLY) &&
1570 !((dirname && dirname_is_machine_id(dirname) > 0) || path_has_prefix(j, path, "/run")))
858749f7 1571 return 0;
5d1ce257 1572
858749f7
LP
1573 r = directory_open(j, path, &d);
1574 if (r < 0) {
1575 log_debug_errno(r, "Failed to open directory '%s': %m", path);
d617408e 1576 goto fail;
3fbf9cbb
LP
1577 }
1578
a963990f
LP
1579 m = hashmap_get(j->directories_by_path, path);
1580 if (!m) {
1581 m = new0(Directory, 1);
d617408e
LP
1582 if (!m) {
1583 r = -ENOMEM;
1584 goto fail;
1585 }
a963990f
LP
1586
1587 m->is_root = false;
1588 m->path = path;
1589
1590 if (hashmap_put(j->directories_by_path, m->path, m) < 0) {
a963990f 1591 free(m);
d617408e
LP
1592 r = -ENOMEM;
1593 goto fail;
a963990f
LP
1594 }
1595
a50d7d43 1596 path = NULL; /* avoid freeing in cleanup */
313cefa1 1597 j->current_invalidate_counter++;
a963990f 1598
5ec76417 1599 log_debug("Directory %s added.", m->path);
a963990f 1600
a50d7d43 1601 } else if (m->is_root)
858749f7 1602 return 0; /* Don't 'downgrade' from root directory */
a963990f 1603
858749f7 1604 m->last_seen_generation = j->generation;
a963990f 1605
858749f7
LP
1606 directory_watch(j, m, dirfd(d),
1607 IN_CREATE|IN_MOVED_TO|IN_MODIFY|IN_ATTRIB|IN_DELETE|
1608 IN_DELETE_SELF|IN_MOVE_SELF|IN_UNMOUNT|IN_MOVED_FROM|
1609 IN_ONLYDIR);
a963990f 1610
858749f7
LP
1611 if (!j->no_new_files)
1612 directory_enumerate(j, m, d);
a963990f 1613
85210bff
LP
1614 check_network(j, dirfd(d));
1615
a963990f 1616 return 0;
d617408e
LP
1617
1618fail:
5d1ce257 1619 k = journal_put_error(j, r, path ?: prefix);
d617408e
LP
1620 if (k < 0)
1621 return k;
1622
1623 return r;
a963990f
LP
1624}
1625
d617408e 1626static int add_root_directory(sd_journal *j, const char *p, bool missing_ok) {
5d1ce257 1627
7fd1b19b 1628 _cleanup_closedir_ DIR *d = NULL;
a963990f 1629 Directory *m;
d617408e 1630 int r, k;
a963990f
LP
1631
1632 assert(j);
a963990f 1633
5d1ce257
LP
1634 /* Adds a root directory to our set of directories to use. If the root directory is already in the set, we
1635 * update the inotify logic, and renumerate the directory entries. This call may hence be called to initially
1636 * populate the set, as well as to update it later. */
a963990f 1637
5d1ce257
LP
1638 if (p) {
1639 /* If there's a path specified, use it. */
b6741478 1640
858749f7
LP
1641 log_debug("Considering root directory '%s'.", p);
1642
5d1ce257
LP
1643 if ((j->flags & SD_JOURNAL_RUNTIME_ONLY) &&
1644 !path_has_prefix(j, p, "/run"))
1645 return -EINVAL;
d617408e 1646
5d1ce257
LP
1647 if (j->prefix)
1648 p = strjoina(j->prefix, p);
1649
858749f7
LP
1650 r = directory_open(j, p, &d);
1651 if (r == -ENOENT && missing_ok)
1652 return 0;
1653 if (r < 0) {
1654 log_debug_errno(r, "Failed to open root directory %s: %m", p);
5d1ce257
LP
1655 goto fail;
1656 }
1657 } else {
1658 int dfd;
1659
1660 /* If there's no path specified, then we use the top-level fd itself. We duplicate the fd here, since
1661 * opendir() will take possession of the fd, and close it, which we don't want. */
1662
1663 p = "."; /* store this as "." in the directories hashmap */
1664
1665 dfd = fcntl(j->toplevel_fd, F_DUPFD_CLOEXEC, 3);
1666 if (dfd < 0) {
1667 r = -errno;
1668 goto fail;
1669 }
1670
1671 d = fdopendir(dfd);
1672 if (!d) {
1673 r = -errno;
1674 safe_close(dfd);
1675 goto fail;
1676 }
1677
1678 rewinddir(d);
d617408e 1679 }
a963990f
LP
1680
1681 m = hashmap_get(j->directories_by_path, p);
1682 if (!m) {
1683 m = new0(Directory, 1);
d617408e
LP
1684 if (!m) {
1685 r = -ENOMEM;
1686 goto fail;
1687 }
a963990f
LP
1688
1689 m->is_root = true;
5d1ce257 1690
a963990f
LP
1691 m->path = strdup(p);
1692 if (!m->path) {
a963990f 1693 free(m);
d617408e
LP
1694 r = -ENOMEM;
1695 goto fail;
a963990f
LP
1696 }
1697
1698 if (hashmap_put(j->directories_by_path, m->path, m) < 0) {
a963990f
LP
1699 free(m->path);
1700 free(m);
d617408e
LP
1701 r = -ENOMEM;
1702 goto fail;
a963990f
LP
1703 }
1704
313cefa1 1705 j->current_invalidate_counter++;
a963990f 1706
5ec76417 1707 log_debug("Root directory %s added.", m->path);
a963990f 1708
a50d7d43 1709 } else if (!m->is_root)
a963990f 1710 return 0;
50f20cfd 1711
858749f7
LP
1712 directory_watch(j, m, dirfd(d),
1713 IN_CREATE|IN_MOVED_TO|IN_MODIFY|IN_ATTRIB|IN_DELETE|
1714 IN_ONLYDIR);
a963990f 1715
858749f7
LP
1716 if (!j->no_new_files)
1717 directory_enumerate(j, m, d);
3fbf9cbb 1718
85210bff
LP
1719 check_network(j, dirfd(d));
1720
a963990f 1721 return 0;
d617408e
LP
1722
1723fail:
5768d259 1724 k = journal_put_error(j, r, p);
d617408e
LP
1725 if (k < 0)
1726 return k;
1727
1728 return r;
a963990f
LP
1729}
1730
b2b46f91 1731static void remove_directory(sd_journal *j, Directory *d) {
a963990f
LP
1732 assert(j);
1733
1734 if (d->wd > 0) {
1735 hashmap_remove(j->directories_by_wd, INT_TO_PTR(d->wd));
1736
1737 if (j->inotify_fd >= 0)
1738 inotify_rm_watch(j->inotify_fd, d->wd);
1739 }
1740
1741 hashmap_remove(j->directories_by_path, d->path);
1742
1743 if (d->is_root)
5ec76417 1744 log_debug("Root directory %s removed.", d->path);
a963990f 1745 else
5ec76417 1746 log_debug("Directory %s removed.", d->path);
a963990f
LP
1747
1748 free(d->path);
1749 free(d);
3fbf9cbb
LP
1750}
1751
89739579 1752static int add_search_paths(sd_journal *j) {
d617408e
LP
1753
1754 static const char search_paths[] =
a963990f
LP
1755 "/run/log/journal\0"
1756 "/var/log/journal\0";
1757 const char *p;
50f20cfd
LP
1758
1759 assert(j);
50f20cfd 1760
a963990f
LP
1761 /* We ignore most errors here, since the idea is to only open
1762 * what's actually accessible, and ignore the rest. */
50f20cfd 1763
d617408e
LP
1764 NULSTR_FOREACH(p, search_paths)
1765 (void) add_root_directory(j, p, true);
50f20cfd 1766
574b77ef
MB
1767 if (!(j->flags & SD_JOURNAL_LOCAL_ONLY))
1768 (void) add_root_directory(j, "/var/log/journal/remote", true);
1769
a963990f 1770 return 0;
50f20cfd
LP
1771}
1772
5302ebe1
ZJS
1773static int add_current_paths(sd_journal *j) {
1774 Iterator i;
1775 JournalFile *f;
1776
1777 assert(j);
1778 assert(j->no_new_files);
1779
5d1ce257 1780 /* Simply adds all directories for files we have open as directories. We don't expect errors here, so we
5302ebe1
ZJS
1781 * treat them as fatal. */
1782
c1f906bd 1783 ORDERED_HASHMAP_FOREACH(f, j->files, i) {
5302ebe1 1784 _cleanup_free_ char *dir;
e9174f29 1785 int r;
5302ebe1
ZJS
1786
1787 dir = dirname_malloc(f->path);
1788 if (!dir)
1789 return -ENOMEM;
1790
5d1ce257 1791 r = add_directory(j, dir, NULL);
d617408e 1792 if (r < 0)
5302ebe1 1793 return r;
5302ebe1
ZJS
1794 }
1795
1796 return 0;
1797}
1798
a963990f 1799static int allocate_inotify(sd_journal *j) {
50f20cfd 1800 assert(j);
50f20cfd 1801
a963990f
LP
1802 if (j->inotify_fd < 0) {
1803 j->inotify_fd = inotify_init1(IN_NONBLOCK|IN_CLOEXEC);
1804 if (j->inotify_fd < 0)
1805 return -errno;
1806 }
50f20cfd 1807
cb306f5d 1808 return hashmap_ensure_allocated(&j->directories_by_wd, NULL);
50f20cfd
LP
1809}
1810
7827b1a1 1811static sd_journal *journal_new(int flags, const char *path) {
17c9aff8 1812 _cleanup_(sd_journal_closep) sd_journal *j = NULL;
50f20cfd 1813
a963990f
LP
1814 j = new0(sd_journal, 1);
1815 if (!j)
1816 return NULL;
50f20cfd 1817
df0ff127 1818 j->original_pid = getpid_cached();
5d1ce257 1819 j->toplevel_fd = -1;
a963990f
LP
1820 j->inotify_fd = -1;
1821 j->flags = flags;
93b73b06 1822 j->data_threshold = DEFAULT_DATA_THRESHOLD;
50f20cfd 1823
7827b1a1 1824 if (path) {
16fefe90
ZJS
1825 char *t;
1826
1827 t = strdup(path);
1828 if (!t)
17c9aff8 1829 return NULL;
16fefe90
ZJS
1830
1831 if (flags & SD_JOURNAL_OS_ROOT)
1832 j->prefix = t;
1833 else
1834 j->path = t;
7827b1a1
LP
1835 }
1836
548f6937 1837 j->files = ordered_hashmap_new(&path_hash_ops);
5d4ba7f2 1838 if (!j->files)
17c9aff8 1839 return NULL;
5d4ba7f2
VC
1840
1841 j->files_cache = ordered_hashmap_iterated_cache_new(j->files);
548f6937 1842 j->directories_by_path = hashmap_new(&path_hash_ops);
84168d80 1843 j->mmap = mmap_cache_new();
5d4ba7f2 1844 if (!j->files_cache || !j->directories_by_path || !j->mmap)
17c9aff8 1845 return NULL;
6180fc61 1846
17c9aff8 1847 return TAKE_PTR(j);
50f20cfd
LP
1848}
1849
1aaa68f5
ZJS
1850#define OPEN_ALLOWED_FLAGS \
1851 (SD_JOURNAL_LOCAL_ONLY | \
1852 SD_JOURNAL_RUNTIME_ONLY | \
1853 SD_JOURNAL_SYSTEM | SD_JOURNAL_CURRENT_USER)
1854
a5344d2c 1855_public_ int sd_journal_open(sd_journal **ret, int flags) {
17c9aff8 1856 _cleanup_(sd_journal_closep) sd_journal *j = NULL;
3fbf9cbb 1857 int r;
87d2c1ff 1858
1ae464e0 1859 assert_return(ret, -EINVAL);
1aaa68f5 1860 assert_return((flags & ~OPEN_ALLOWED_FLAGS) == 0, -EINVAL);
87d2c1ff 1861
7827b1a1 1862 j = journal_new(flags, NULL);
87d2c1ff
LP
1863 if (!j)
1864 return -ENOMEM;
1865
89739579 1866 r = add_search_paths(j);
a963990f 1867 if (r < 0)
17c9aff8 1868 return r;
50f20cfd 1869
17c9aff8 1870 *ret = TAKE_PTR(j);
a963990f 1871 return 0;
a963990f 1872}
50f20cfd 1873
1aaa68f5
ZJS
1874#define OPEN_CONTAINER_ALLOWED_FLAGS \
1875 (SD_JOURNAL_LOCAL_ONLY | SD_JOURNAL_SYSTEM)
1876
b6741478
LP
1877_public_ int sd_journal_open_container(sd_journal **ret, const char *machine, int flags) {
1878 _cleanup_free_ char *root = NULL, *class = NULL;
17c9aff8 1879 _cleanup_(sd_journal_closep) sd_journal *j = NULL;
b6741478
LP
1880 char *p;
1881 int r;
1882
2daa9cbd
LP
1883 /* This is pretty much deprecated, people should use machined's OpenMachineRootDirectory() call instead in
1884 * combination with sd_journal_open_directory_fd(). */
1885
b6741478
LP
1886 assert_return(machine, -EINVAL);
1887 assert_return(ret, -EINVAL);
1aaa68f5 1888 assert_return((flags & ~OPEN_CONTAINER_ALLOWED_FLAGS) == 0, -EINVAL);
affcf189 1889 assert_return(machine_name_is_valid(machine), -EINVAL);
b6741478 1890
63c372cb 1891 p = strjoina("/run/systemd/machines/", machine);
1a5a177e 1892 r = parse_env_file(NULL, p, NEWLINE, "ROOT", &root, "CLASS", &class, NULL);
b6741478
LP
1893 if (r == -ENOENT)
1894 return -EHOSTDOWN;
1895 if (r < 0)
1896 return r;
1897 if (!root)
1898 return -ENODATA;
1899
1900 if (!streq_ptr(class, "container"))
1901 return -EIO;
1902
16fefe90 1903 j = journal_new(flags, root);
b6741478
LP
1904 if (!j)
1905 return -ENOMEM;
1906
89739579 1907 r = add_search_paths(j);
b6741478 1908 if (r < 0)
17c9aff8 1909 return r;
b6741478 1910
17c9aff8 1911 *ret = TAKE_PTR(j);
b6741478 1912 return 0;
b6741478
LP
1913}
1914
1aaa68f5 1915#define OPEN_DIRECTORY_ALLOWED_FLAGS \
10752e82
ZJS
1916 (SD_JOURNAL_OS_ROOT | \
1917 SD_JOURNAL_SYSTEM | SD_JOURNAL_CURRENT_USER )
1aaa68f5 1918
a963990f 1919_public_ int sd_journal_open_directory(sd_journal **ret, const char *path, int flags) {
17c9aff8 1920 _cleanup_(sd_journal_closep) sd_journal *j = NULL;
a963990f 1921 int r;
87d2c1ff 1922
1ae464e0
TA
1923 assert_return(ret, -EINVAL);
1924 assert_return(path, -EINVAL);
1aaa68f5 1925 assert_return((flags & ~OPEN_DIRECTORY_ALLOWED_FLAGS) == 0, -EINVAL);
87d2c1ff 1926
7827b1a1 1927 j = journal_new(flags, path);
a963990f
LP
1928 if (!j)
1929 return -ENOMEM;
3fbf9cbb 1930
d077390c
LP
1931 if (flags & SD_JOURNAL_OS_ROOT)
1932 r = add_search_paths(j);
1933 else
1934 r = add_root_directory(j, path, false);
d617408e 1935 if (r < 0)
17c9aff8 1936 return r;
87d2c1ff 1937
17c9aff8 1938 *ret = TAKE_PTR(j);
87d2c1ff 1939 return 0;
a963990f 1940}
87d2c1ff 1941
5302ebe1 1942_public_ int sd_journal_open_files(sd_journal **ret, const char **paths, int flags) {
17c9aff8 1943 _cleanup_(sd_journal_closep) sd_journal *j = NULL;
5302ebe1
ZJS
1944 const char **path;
1945 int r;
1946
1ae464e0
TA
1947 assert_return(ret, -EINVAL);
1948 assert_return(flags == 0, -EINVAL);
5302ebe1
ZJS
1949
1950 j = journal_new(flags, NULL);
1951 if (!j)
1952 return -ENOMEM;
1953
1954 STRV_FOREACH(path, paths) {
5d1ce257 1955 r = add_any_file(j, -1, *path);
d617408e 1956 if (r < 0)
17c9aff8 1957 return r;
5302ebe1
ZJS
1958 }
1959
1960 j->no_new_files = true;
1961
17c9aff8 1962 *ret = TAKE_PTR(j);
5302ebe1 1963 return 0;
5d1ce257
LP
1964}
1965
1aaa68f5 1966#define OPEN_DIRECTORY_FD_ALLOWED_FLAGS \
10752e82
ZJS
1967 (SD_JOURNAL_OS_ROOT | \
1968 SD_JOURNAL_SYSTEM | SD_JOURNAL_CURRENT_USER )
1aaa68f5 1969
5d1ce257 1970_public_ int sd_journal_open_directory_fd(sd_journal **ret, int fd, int flags) {
17c9aff8 1971 _cleanup_(sd_journal_closep) sd_journal *j = NULL;
5d1ce257
LP
1972 struct stat st;
1973 int r;
1974
1975 assert_return(ret, -EINVAL);
1976 assert_return(fd >= 0, -EBADF);
1aaa68f5 1977 assert_return((flags & ~OPEN_DIRECTORY_FD_ALLOWED_FLAGS) == 0, -EINVAL);
5d1ce257
LP
1978
1979 if (fstat(fd, &st) < 0)
1980 return -errno;
1981
1982 if (!S_ISDIR(st.st_mode))
1983 return -EBADFD;
1984
1985 j = journal_new(flags, NULL);
1986 if (!j)
1987 return -ENOMEM;
1988
1989 j->toplevel_fd = fd;
1990
d077390c
LP
1991 if (flags & SD_JOURNAL_OS_ROOT)
1992 r = add_search_paths(j);
1993 else
1994 r = add_root_directory(j, NULL, false);
5d1ce257 1995 if (r < 0)
17c9aff8 1996 return r;
5d1ce257 1997
17c9aff8 1998 *ret = TAKE_PTR(j);
5d1ce257 1999 return 0;
5d1ce257
LP
2000}
2001
2002_public_ int sd_journal_open_files_fd(sd_journal **ret, int fds[], unsigned n_fds, int flags) {
2003 Iterator iterator;
2004 JournalFile *f;
17c9aff8 2005 _cleanup_(sd_journal_closep) sd_journal *j = NULL;
5d1ce257
LP
2006 unsigned i;
2007 int r;
2008
2009 assert_return(ret, -EINVAL);
2010 assert_return(n_fds > 0, -EBADF);
2011 assert_return(flags == 0, -EINVAL);
2012
2013 j = journal_new(flags, NULL);
2014 if (!j)
2015 return -ENOMEM;
2016
2017 for (i = 0; i < n_fds; i++) {
2018 struct stat st;
2019
2020 if (fds[i] < 0) {
2021 r = -EBADF;
2022 goto fail;
2023 }
2024
2025 if (fstat(fds[i], &st) < 0) {
2026 r = -errno;
2027 goto fail;
2028 }
2029
3cc44114
LP
2030 r = stat_verify_regular(&st);
2031 if (r < 0)
5d1ce257 2032 goto fail;
5d1ce257
LP
2033
2034 r = add_any_file(j, fds[i], NULL);
2035 if (r < 0)
2036 goto fail;
2037 }
2038
2039 j->no_new_files = true;
2040 j->no_inotify = true;
5302ebe1 2041
17c9aff8 2042 *ret = TAKE_PTR(j);
5d1ce257
LP
2043 return 0;
2044
2045fail:
f8e2f4d6 2046 /* If we fail, make sure we don't take possession of the files we managed to make use of successfully, and they
5d1ce257
LP
2047 * remain open */
2048 ORDERED_HASHMAP_FOREACH(f, j->files, iterator)
2049 f->close_fd = false;
2050
5302ebe1
ZJS
2051 return r;
2052}
2053
a5344d2c 2054_public_ void sd_journal_close(sd_journal *j) {
a963990f 2055 Directory *d;
a963990f 2056
a5344d2c
LP
2057 if (!j)
2058 return;
87d2c1ff 2059
54b1da83
LP
2060 sd_journal_flush_matches(j);
2061
f9168190 2062 ordered_hashmap_free_with_destructor(j->files, journal_file_close);
5d4ba7f2 2063 iterated_cache_free(j->files_cache);
260a2be4 2064
a963990f
LP
2065 while ((d = hashmap_first(j->directories_by_path)))
2066 remove_directory(j, d);
260a2be4 2067
a963990f
LP
2068 while ((d = hashmap_first(j->directories_by_wd)))
2069 remove_directory(j, d);
87d2c1ff 2070
a963990f
LP
2071 hashmap_free(j->directories_by_path);
2072 hashmap_free(j->directories_by_wd);
1cc101f1 2073
03e334a1 2074 safe_close(j->inotify_fd);
50f20cfd 2075
bf807d4d
LP
2076 if (j->mmap) {
2077 log_debug("mmap cache statistics: %u hit, %u miss", mmap_cache_get_hit(j->mmap), mmap_cache_get_missed(j->mmap));
16e9f408 2078 mmap_cache_unref(j->mmap);
bf807d4d 2079 }
16e9f408 2080
ec1d2909 2081 hashmap_free_free(j->errors);
5768d259 2082
7827b1a1 2083 free(j->path);
89739579 2084 free(j->prefix);
3c1668da 2085 free(j->unique_field);
eb86030e 2086 free(j->fields_buffer);
87d2c1ff
LP
2087 free(j);
2088}
3fbf9cbb 2089
a5344d2c 2090_public_ int sd_journal_get_realtime_usec(sd_journal *j, uint64_t *ret) {
3fbf9cbb
LP
2091 Object *o;
2092 JournalFile *f;
2093 int r;
2094
1ae464e0
TA
2095 assert_return(j, -EINVAL);
2096 assert_return(!journal_pid_changed(j), -ECHILD);
2097 assert_return(ret, -EINVAL);
3fbf9cbb
LP
2098
2099 f = j->current_file;
2100 if (!f)
de190aef 2101 return -EADDRNOTAVAIL;
3fbf9cbb
LP
2102
2103 if (f->current_offset <= 0)
de190aef 2104 return -EADDRNOTAVAIL;
3fbf9cbb 2105
de190aef 2106 r = journal_file_move_to_object(f, OBJECT_ENTRY, f->current_offset, &o);
3fbf9cbb
LP
2107 if (r < 0)
2108 return r;
2109
2110 *ret = le64toh(o->entry.realtime);
de190aef 2111 return 0;
3fbf9cbb
LP
2112}
2113
a5344d2c 2114_public_ int sd_journal_get_monotonic_usec(sd_journal *j, uint64_t *ret, sd_id128_t *ret_boot_id) {
3fbf9cbb
LP
2115 Object *o;
2116 JournalFile *f;
2117 int r;
2118 sd_id128_t id;
2119
1ae464e0
TA
2120 assert_return(j, -EINVAL);
2121 assert_return(!journal_pid_changed(j), -ECHILD);
3fbf9cbb
LP
2122
2123 f = j->current_file;
2124 if (!f)
de190aef 2125 return -EADDRNOTAVAIL;
3fbf9cbb
LP
2126
2127 if (f->current_offset <= 0)
de190aef 2128 return -EADDRNOTAVAIL;
3fbf9cbb 2129
de190aef 2130 r = journal_file_move_to_object(f, OBJECT_ENTRY, f->current_offset, &o);
3fbf9cbb
LP
2131 if (r < 0)
2132 return r;
2133
de190aef
LP
2134 if (ret_boot_id)
2135 *ret_boot_id = o->entry.boot_id;
2136 else {
2137 r = sd_id128_get_boot(&id);
2138 if (r < 0)
2139 return r;
3fbf9cbb 2140
de190aef 2141 if (!sd_id128_equal(id, o->entry.boot_id))
df50185b 2142 return -ESTALE;
de190aef 2143 }
3fbf9cbb 2144
14a65d65
LP
2145 if (ret)
2146 *ret = le64toh(o->entry.monotonic);
2147
de190aef 2148 return 0;
3fbf9cbb
LP
2149}
2150
362a3f81
LP
2151static bool field_is_valid(const char *field) {
2152 const char *p;
2153
2154 assert(field);
2155
2156 if (isempty(field))
2157 return false;
2158
2159 if (startswith(field, "__"))
2160 return false;
2161
2162 for (p = field; *p; p++) {
2163
2164 if (*p == '_')
2165 continue;
2166
2167 if (*p >= 'A' && *p <= 'Z')
2168 continue;
2169
2170 if (*p >= '0' && *p <= '9')
2171 continue;
2172
2173 return false;
2174 }
2175
2176 return true;
2177}
2178
a5344d2c 2179_public_ int sd_journal_get_data(sd_journal *j, const char *field, const void **data, size_t *size) {
3fbf9cbb
LP
2180 JournalFile *f;
2181 uint64_t i, n;
2182 size_t field_length;
2183 int r;
2184 Object *o;
2185
1ae464e0
TA
2186 assert_return(j, -EINVAL);
2187 assert_return(!journal_pid_changed(j), -ECHILD);
2188 assert_return(field, -EINVAL);
2189 assert_return(data, -EINVAL);
2190 assert_return(size, -EINVAL);
2191 assert_return(field_is_valid(field), -EINVAL);
3fbf9cbb
LP
2192
2193 f = j->current_file;
2194 if (!f)
de190aef 2195 return -EADDRNOTAVAIL;
3fbf9cbb
LP
2196
2197 if (f->current_offset <= 0)
de190aef 2198 return -EADDRNOTAVAIL;
3fbf9cbb 2199
de190aef 2200 r = journal_file_move_to_object(f, OBJECT_ENTRY, f->current_offset, &o);
3fbf9cbb
LP
2201 if (r < 0)
2202 return r;
2203
2204 field_length = strlen(field);
2205
2206 n = journal_file_entry_n_items(o);
2207 for (i = 0; i < n; i++) {
4fd052ae
FC
2208 uint64_t p, l;
2209 le64_t le_hash;
3fbf9cbb 2210 size_t t;
1ec7120e 2211 int compression;
3fbf9cbb
LP
2212
2213 p = le64toh(o->entry.items[i].object_offset);
807e17f0 2214 le_hash = o->entry.items[i].hash;
de190aef 2215 r = journal_file_move_to_object(f, OBJECT_DATA, p, &o);
3fbf9cbb
LP
2216 if (r < 0)
2217 return r;
2218
de190aef 2219 if (le_hash != o->data.hash)
de7b95cd
LP
2220 return -EBADMSG;
2221
3fbf9cbb
LP
2222 l = le64toh(o->object.size) - offsetof(Object, data.payload);
2223
1ec7120e 2224 compression = o->object.flags & OBJECT_COMPRESSION_MASK;
3b1a55e1 2225 if (compression) {
349cc4a5 2226#if HAVE_XZ || HAVE_LZ4
2aaec9b4 2227 r = decompress_startswith(compression,
3b1a55e1
ZJS
2228 o->data.payload, l,
2229 &f->compress_buffer, &f->compress_buffer_size,
2aaec9b4
ZJS
2230 field, field_length, '=');
2231 if (r < 0)
82e24b00 2232 log_debug_errno(r, "Cannot decompress %s object of length %"PRIu64" at offset "OFSfmt": %m",
2aaec9b4
ZJS
2233 object_compressed_to_string(compression), l, p);
2234 else if (r > 0) {
3b1a55e1 2235
fa1c4b51 2236 size_t rsize;
3b1a55e1
ZJS
2237
2238 r = decompress_blob(compression,
2239 o->data.payload, l,
2240 &f->compress_buffer, &f->compress_buffer_size, &rsize,
2241 j->data_threshold);
2242 if (r < 0)
2243 return r;
807e17f0 2244
3b1a55e1
ZJS
2245 *data = f->compress_buffer;
2246 *size = (size_t) rsize;
807e17f0 2247
3b1a55e1
ZJS
2248 return 0;
2249 }
2250#else
2251 return -EPROTONOSUPPORT;
2252#endif
807e17f0
LP
2253 } else if (l >= field_length+1 &&
2254 memcmp(o->data.payload, field, field_length) == 0 &&
2255 o->data.payload[field_length] == '=') {
3fbf9cbb 2256
161e54f8 2257 t = (size_t) l;
3fbf9cbb 2258
161e54f8
LP
2259 if ((uint64_t) t != l)
2260 return -E2BIG;
3fbf9cbb 2261
161e54f8
LP
2262 *data = o->data.payload;
2263 *size = t;
3fbf9cbb 2264
99613ec5 2265 return 0;
161e54f8 2266 }
3fbf9cbb 2267
de190aef 2268 r = journal_file_move_to_object(f, OBJECT_ENTRY, f->current_offset, &o);
161e54f8
LP
2269 if (r < 0)
2270 return r;
3fbf9cbb
LP
2271 }
2272
de190aef 2273 return -ENOENT;
3fbf9cbb
LP
2274}
2275
93b73b06 2276static int return_data(sd_journal *j, JournalFile *f, Object *o, const void **data, size_t *size) {
3c1668da
LP
2277 size_t t;
2278 uint64_t l;
3b1a55e1 2279 int compression;
3c1668da
LP
2280
2281 l = le64toh(o->object.size) - offsetof(Object, data.payload);
2282 t = (size_t) l;
2283
2284 /* We can't read objects larger than 4G on a 32bit machine */
2285 if ((uint64_t) t != l)
2286 return -E2BIG;
2287
1ec7120e
ZJS
2288 compression = o->object.flags & OBJECT_COMPRESSION_MASK;
2289 if (compression) {
349cc4a5 2290#if HAVE_XZ || HAVE_LZ4
fa1c4b51 2291 size_t rsize;
3b1a55e1 2292 int r;
3c1668da 2293
1ec7120e
ZJS
2294 r = decompress_blob(compression,
2295 o->data.payload, l, &f->compress_buffer,
2296 &f->compress_buffer_size, &rsize, j->data_threshold);
2297 if (r < 0)
2298 return r;
3c1668da
LP
2299
2300 *data = f->compress_buffer;
2301 *size = (size_t) rsize;
3b1a55e1
ZJS
2302#else
2303 return -EPROTONOSUPPORT;
2304#endif
3c1668da
LP
2305 } else {
2306 *data = o->data.payload;
2307 *size = t;
2308 }
2309
2310 return 0;
2311}
2312
a5344d2c 2313_public_ int sd_journal_enumerate_data(sd_journal *j, const void **data, size_t *size) {
3fbf9cbb 2314 JournalFile *f;
3c1668da 2315 uint64_t p, n;
4fd052ae 2316 le64_t le_hash;
3fbf9cbb
LP
2317 int r;
2318 Object *o;
2319
1ae464e0
TA
2320 assert_return(j, -EINVAL);
2321 assert_return(!journal_pid_changed(j), -ECHILD);
2322 assert_return(data, -EINVAL);
2323 assert_return(size, -EINVAL);
3fbf9cbb
LP
2324
2325 f = j->current_file;
2326 if (!f)
de190aef 2327 return -EADDRNOTAVAIL;
3fbf9cbb
LP
2328
2329 if (f->current_offset <= 0)
de190aef 2330 return -EADDRNOTAVAIL;
3fbf9cbb 2331
de190aef 2332 r = journal_file_move_to_object(f, OBJECT_ENTRY, f->current_offset, &o);
3fbf9cbb
LP
2333 if (r < 0)
2334 return r;
2335
2336 n = journal_file_entry_n_items(o);
7210bfb3 2337 if (j->current_field >= n)
3fbf9cbb
LP
2338 return 0;
2339
7210bfb3 2340 p = le64toh(o->entry.items[j->current_field].object_offset);
de190aef
LP
2341 le_hash = o->entry.items[j->current_field].hash;
2342 r = journal_file_move_to_object(f, OBJECT_DATA, p, &o);
3fbf9cbb
LP
2343 if (r < 0)
2344 return r;
2345
de190aef 2346 if (le_hash != o->data.hash)
de7b95cd
LP
2347 return -EBADMSG;
2348
93b73b06 2349 r = return_data(j, f, o, data, size);
3c1668da
LP
2350 if (r < 0)
2351 return r;
3fbf9cbb 2352
313cefa1 2353 j->current_field++;
3fbf9cbb
LP
2354
2355 return 1;
2356}
c2373f84 2357
a5344d2c
LP
2358_public_ void sd_journal_restart_data(sd_journal *j) {
2359 if (!j)
2360 return;
8725d60a
LP
2361
2362 j->current_field = 0;
c2373f84 2363}
50f20cfd 2364
858749f7
LP
2365static int reiterate_all_paths(sd_journal *j) {
2366 assert(j);
2367
2368 if (j->no_new_files)
2369 return add_current_paths(j);
2370
2371 if (j->flags & SD_JOURNAL_OS_ROOT)
2372 return add_search_paths(j);
2373
2374 if (j->toplevel_fd >= 0)
2375 return add_root_directory(j, NULL, false);
2376
2377 if (j->path)
2378 return add_root_directory(j, j->path, true);
2379
2380 return add_search_paths(j);
2381}
2382
a5344d2c 2383_public_ int sd_journal_get_fd(sd_journal *j) {
a963990f
LP
2384 int r;
2385
1ae464e0
TA
2386 assert_return(j, -EINVAL);
2387 assert_return(!journal_pid_changed(j), -ECHILD);
50f20cfd 2388
5d1ce257
LP
2389 if (j->no_inotify)
2390 return -EMEDIUMTYPE;
2391
a963990f
LP
2392 if (j->inotify_fd >= 0)
2393 return j->inotify_fd;
2394
2395 r = allocate_inotify(j);
2396 if (r < 0)
2397 return r;
2398
858749f7 2399 log_debug("Reiterating files to get inotify watches established.");
5d1ce257 2400
858749f7
LP
2401 /* Iterate through all dirs again, to add them to the inotify */
2402 r = reiterate_all_paths(j);
a963990f
LP
2403 if (r < 0)
2404 return r;
2405
50f20cfd
LP
2406 return j->inotify_fd;
2407}
2408
ee531d94
LP
2409_public_ int sd_journal_get_events(sd_journal *j) {
2410 int fd;
2411
1ae464e0
TA
2412 assert_return(j, -EINVAL);
2413 assert_return(!journal_pid_changed(j), -ECHILD);
ee531d94
LP
2414
2415 fd = sd_journal_get_fd(j);
2416 if (fd < 0)
2417 return fd;
2418
2419 return POLLIN;
2420}
2421
39c155ea
LP
2422_public_ int sd_journal_get_timeout(sd_journal *j, uint64_t *timeout_usec) {
2423 int fd;
2424
1ae464e0
TA
2425 assert_return(j, -EINVAL);
2426 assert_return(!journal_pid_changed(j), -ECHILD);
2427 assert_return(timeout_usec, -EINVAL);
39c155ea
LP
2428
2429 fd = sd_journal_get_fd(j);
2430 if (fd < 0)
2431 return fd;
2432
2433 if (!j->on_network) {
2434 *timeout_usec = (uint64_t) -1;
2435 return 0;
2436 }
2437
2438 /* If we are on the network we need to regularly check for
2439 * changes manually */
2440
2441 *timeout_usec = j->last_process_usec + JOURNAL_FILES_RECHECK_USEC;
2442 return 1;
2443}
2444
858749f7
LP
2445static void process_q_overflow(sd_journal *j) {
2446 JournalFile *f;
2447 Directory *m;
2448 Iterator i;
2449
2450 assert(j);
2451
2452 /* When the inotify queue overruns we need to enumerate and re-validate all journal files to bring our list
2453 * back in sync with what's on disk. For this we pick a new generation counter value. It'll be assigned to all
2454 * journal files we encounter. All journal files and all directories that don't carry it after reenumeration
2455 * are subject for unloading. */
2456
2457 log_debug("Inotify queue overrun, reiterating everything.");
2458
2459 j->generation++;
2460 (void) reiterate_all_paths(j);
2461
2462 ORDERED_HASHMAP_FOREACH(f, j->files, i) {
2463
2464 if (f->last_seen_generation == j->generation)
2465 continue;
2466
2467 log_debug("File '%s' hasn't been seen in this enumeration, removing.", f->path);
2468 remove_file_real(j, f);
2469 }
2470
2471 HASHMAP_FOREACH(m, j->directories_by_path, i) {
2472
2473 if (m->last_seen_generation == j->generation)
2474 continue;
2475
2476 if (m->is_root) /* Never GC root directories */
2477 continue;
2478
2479 log_debug("Directory '%s' hasn't been seen in this enumeration, removing.", f->path);
2480 remove_directory(j, m);
2481 }
2482
2483 log_debug("Reiteration complete.");
2484}
2485
50f20cfd 2486static void process_inotify_event(sd_journal *j, struct inotify_event *e) {
a963990f 2487 Directory *d;
50f20cfd
LP
2488
2489 assert(j);
2490 assert(e);
2491
858749f7
LP
2492 if (e->mask & IN_Q_OVERFLOW) {
2493 process_q_overflow(j);
2494 return;
2495 }
2496
50f20cfd 2497 /* Is this a subdirectory we watch? */
a963990f
LP
2498 d = hashmap_get(j->directories_by_wd, INT_TO_PTR(e->wd));
2499 if (d) {
de2c3907
LP
2500 if (!(e->mask & IN_ISDIR) && e->len > 0 &&
2501 (endswith(e->name, ".journal") ||
2502 endswith(e->name, ".journal~"))) {
50f20cfd
LP
2503
2504 /* Event for a journal file */
2505
d617408e 2506 if (e->mask & (IN_CREATE|IN_MOVED_TO|IN_MODIFY|IN_ATTRIB))
fc1813c0 2507 (void) add_file_by_name(j, d->path, e->name);
d617408e 2508 else if (e->mask & (IN_DELETE|IN_MOVED_FROM|IN_UNMOUNT))
fc1813c0 2509 remove_file_by_name(j, d->path, e->name);
50f20cfd 2510
a963990f 2511 } else if (!d->is_root && e->len == 0) {
50f20cfd 2512
a963990f 2513 /* Event for a subdirectory */
50f20cfd 2514
b2b46f91
TA
2515 if (e->mask & (IN_DELETE_SELF|IN_MOVE_SELF|IN_UNMOUNT))
2516 remove_directory(j, d);
50f20cfd 2517
a9be0692 2518 } else if (d->is_root && (e->mask & IN_ISDIR) && e->len > 0 && id128_is_valid(e->name)) {
50f20cfd 2519
a963990f 2520 /* Event for root directory */
50f20cfd 2521
d617408e
LP
2522 if (e->mask & (IN_CREATE|IN_MOVED_TO|IN_MODIFY|IN_ATTRIB))
2523 (void) add_directory(j, d->path, e->name);
50f20cfd
LP
2524 }
2525
2526 return;
2527 }
2528
2529 if (e->mask & IN_IGNORED)
2530 return;
2531
a9be0692 2532 log_debug("Unexpected inotify event.");
50f20cfd
LP
2533}
2534
a963990f
LP
2535static int determine_change(sd_journal *j) {
2536 bool b;
2537
2538 assert(j);
2539
2540 b = j->current_invalidate_counter != j->last_invalidate_counter;
2541 j->last_invalidate_counter = j->current_invalidate_counter;
2542
2543 return b ? SD_JOURNAL_INVALIDATE : SD_JOURNAL_APPEND;
2544}
2545
a5344d2c 2546_public_ int sd_journal_process(sd_journal *j) {
a963990f 2547 bool got_something = false;
50f20cfd 2548
1ae464e0
TA
2549 assert_return(j, -EINVAL);
2550 assert_return(!journal_pid_changed(j), -ECHILD);
50f20cfd 2551
10c4d640
LP
2552 if (j->inotify_fd < 0) /* We have no inotify fd yet? Then there's noting to process. */
2553 return 0;
2554
39c155ea 2555 j->last_process_usec = now(CLOCK_MONOTONIC);
f9346444 2556 j->last_invalidate_counter = j->current_invalidate_counter;
39c155ea 2557
50f20cfd 2558 for (;;) {
0254e944 2559 union inotify_event_buffer buffer;
50f20cfd
LP
2560 struct inotify_event *e;
2561 ssize_t l;
2562
0254e944 2563 l = read(j->inotify_fd, &buffer, sizeof(buffer));
50f20cfd 2564 if (l < 0) {
3742095b 2565 if (IN_SET(errno, EAGAIN, EINTR))
a963990f 2566 return got_something ? determine_change(j) : SD_JOURNAL_NOP;
50f20cfd
LP
2567
2568 return -errno;
2569 }
2570
a963990f
LP
2571 got_something = true;
2572
f7c1ad4f 2573 FOREACH_INOTIFY_EVENT(e, buffer, l)
50f20cfd 2574 process_inotify_event(j, e);
50f20cfd
LP
2575 }
2576}
6ad1d1c3 2577
e02d1cf7 2578_public_ int sd_journal_wait(sd_journal *j, uint64_t timeout_usec) {
a963990f 2579 int r;
39c155ea 2580 uint64_t t;
e02d1cf7 2581
1ae464e0
TA
2582 assert_return(j, -EINVAL);
2583 assert_return(!journal_pid_changed(j), -ECHILD);
e02d1cf7 2584
a963990f
LP
2585 if (j->inotify_fd < 0) {
2586
2587 /* This is the first invocation, hence create the
2588 * inotify watch */
2589 r = sd_journal_get_fd(j);
2590 if (r < 0)
2591 return r;
2592
2593 /* The journal might have changed since the context
2594 * object was created and we weren't watching before,
2595 * hence don't wait for anything, and return
2596 * immediately. */
2597 return determine_change(j);
2598 }
2599
39c155ea
LP
2600 r = sd_journal_get_timeout(j, &t);
2601 if (r < 0)
2602 return r;
2603
2604 if (t != (uint64_t) -1) {
2605 usec_t n;
2606
2607 n = now(CLOCK_MONOTONIC);
2608 t = t > n ? t - n : 0;
85210bff 2609
39c155ea
LP
2610 if (timeout_usec == (uint64_t) -1 || timeout_usec > t)
2611 timeout_usec = t;
85210bff
LP
2612 }
2613
a963990f
LP
2614 do {
2615 r = fd_wait_for_event(j->inotify_fd, POLLIN, timeout_usec);
2616 } while (r == -EINTR);
e02d1cf7
LP
2617
2618 if (r < 0)
2619 return r;
2620
a963990f 2621 return sd_journal_process(j);
e02d1cf7
LP
2622}
2623
08984293
LP
2624_public_ int sd_journal_get_cutoff_realtime_usec(sd_journal *j, uint64_t *from, uint64_t *to) {
2625 Iterator i;
2626 JournalFile *f;
2627 bool first = true;
581483bf 2628 uint64_t fmin = 0, tmax = 0;
08984293
LP
2629 int r;
2630
1ae464e0
TA
2631 assert_return(j, -EINVAL);
2632 assert_return(!journal_pid_changed(j), -ECHILD);
2633 assert_return(from || to, -EINVAL);
2634 assert_return(from != to, -EINVAL);
08984293 2635
c1f906bd 2636 ORDERED_HASHMAP_FOREACH(f, j->files, i) {
08984293
LP
2637 usec_t fr, t;
2638
2639 r = journal_file_get_cutoff_realtime_usec(f, &fr, &t);
9f8d2983
LP
2640 if (r == -ENOENT)
2641 continue;
08984293
LP
2642 if (r < 0)
2643 return r;
2644 if (r == 0)
2645 continue;
2646
2647 if (first) {
581483bf
LP
2648 fmin = fr;
2649 tmax = t;
08984293
LP
2650 first = false;
2651 } else {
581483bf
LP
2652 fmin = MIN(fr, fmin);
2653 tmax = MAX(t, tmax);
08984293
LP
2654 }
2655 }
2656
581483bf
LP
2657 if (from)
2658 *from = fmin;
2659 if (to)
2660 *to = tmax;
2661
08984293
LP
2662 return first ? 0 : 1;
2663}
2664
2665_public_ int sd_journal_get_cutoff_monotonic_usec(sd_journal *j, sd_id128_t boot_id, uint64_t *from, uint64_t *to) {
2666 Iterator i;
2667 JournalFile *f;
1651e2c6 2668 bool found = false;
08984293
LP
2669 int r;
2670
1ae464e0
TA
2671 assert_return(j, -EINVAL);
2672 assert_return(!journal_pid_changed(j), -ECHILD);
2673 assert_return(from || to, -EINVAL);
2674 assert_return(from != to, -EINVAL);
08984293 2675
c1f906bd 2676 ORDERED_HASHMAP_FOREACH(f, j->files, i) {
08984293
LP
2677 usec_t fr, t;
2678
2679 r = journal_file_get_cutoff_monotonic_usec(f, boot_id, &fr, &t);
9f8d2983
LP
2680 if (r == -ENOENT)
2681 continue;
08984293
LP
2682 if (r < 0)
2683 return r;
2684 if (r == 0)
2685 continue;
2686
1651e2c6 2687 if (found) {
08984293 2688 if (from)
1651e2c6 2689 *from = MIN(fr, *from);
08984293 2690 if (to)
1651e2c6 2691 *to = MAX(t, *to);
08984293
LP
2692 } else {
2693 if (from)
1651e2c6 2694 *from = fr;
08984293 2695 if (to)
1651e2c6
ZJS
2696 *to = t;
2697 found = true;
08984293
LP
2698 }
2699 }
2700
1651e2c6 2701 return found;
08984293
LP
2702}
2703
dca6219e
LP
2704void journal_print_header(sd_journal *j) {
2705 Iterator i;
2706 JournalFile *f;
2707 bool newline = false;
2708
2709 assert(j);
2710
c1f906bd 2711 ORDERED_HASHMAP_FOREACH(f, j->files, i) {
dca6219e
LP
2712 if (newline)
2713 putchar('\n');
2714 else
2715 newline = true;
2716
2717 journal_file_print_header(f);
2718 }
2719}
08984293 2720
a1a03e30
LP
2721_public_ int sd_journal_get_usage(sd_journal *j, uint64_t *bytes) {
2722 Iterator i;
2723 JournalFile *f;
2724 uint64_t sum = 0;
2725
1ae464e0
TA
2726 assert_return(j, -EINVAL);
2727 assert_return(!journal_pid_changed(j), -ECHILD);
2728 assert_return(bytes, -EINVAL);
a1a03e30 2729
c1f906bd 2730 ORDERED_HASHMAP_FOREACH(f, j->files, i) {
a1a03e30
LP
2731 struct stat st;
2732
2733 if (fstat(f->fd, &st) < 0)
2734 return -errno;
2735
2736 sum += (uint64_t) st.st_blocks * 512ULL;
2737 }
2738
2739 *bytes = sum;
2740 return 0;
2741}
2742
3c1668da
LP
2743_public_ int sd_journal_query_unique(sd_journal *j, const char *field) {
2744 char *f;
2745
1ae464e0
TA
2746 assert_return(j, -EINVAL);
2747 assert_return(!journal_pid_changed(j), -ECHILD);
2748 assert_return(!isempty(field), -EINVAL);
2749 assert_return(field_is_valid(field), -EINVAL);
3c1668da
LP
2750
2751 f = strdup(field);
2752 if (!f)
2753 return -ENOMEM;
2754
2755 free(j->unique_field);
2756 j->unique_field = f;
2757 j->unique_file = NULL;
2758 j->unique_offset = 0;
360af4cf 2759 j->unique_file_lost = false;
3c1668da
LP
2760
2761 return 0;
2762}
2763
2764_public_ int sd_journal_enumerate_unique(sd_journal *j, const void **data, size_t *l) {
3c1668da 2765 size_t k;
19a2bd80 2766
1ae464e0
TA
2767 assert_return(j, -EINVAL);
2768 assert_return(!journal_pid_changed(j), -ECHILD);
2769 assert_return(data, -EINVAL);
2770 assert_return(l, -EINVAL);
2771 assert_return(j->unique_field, -EINVAL);
19a2bd80 2772
3c1668da 2773 k = strlen(j->unique_field);
19a2bd80 2774
3c1668da 2775 if (!j->unique_file) {
360af4cf
ZJS
2776 if (j->unique_file_lost)
2777 return 0;
2778
c1f906bd 2779 j->unique_file = ordered_hashmap_first(j->files);
3c1668da
LP
2780 if (!j->unique_file)
2781 return 0;
360af4cf 2782
3c1668da
LP
2783 j->unique_offset = 0;
2784 }
19a2bd80 2785
3c1668da
LP
2786 for (;;) {
2787 JournalFile *of;
2788 Iterator i;
ae97089d 2789 Object *o;
3c1668da
LP
2790 const void *odata;
2791 size_t ol;
2792 bool found;
ae97089d 2793 int r;
3c1668da 2794
bdc02927 2795 /* Proceed to next data object in the field's linked list */
3c1668da
LP
2796 if (j->unique_offset == 0) {
2797 r = journal_file_find_field_object(j->unique_file, j->unique_field, k, &o, NULL);
2798 if (r < 0)
2799 return r;
2800
2801 j->unique_offset = r > 0 ? le64toh(o->field.head_data_offset) : 0;
2802 } else {
2803 r = journal_file_move_to_object(j->unique_file, OBJECT_DATA, j->unique_offset, &o);
2804 if (r < 0)
2805 return r;
2806
2807 j->unique_offset = le64toh(o->data.next_field_offset);
2808 }
2809
2810 /* We reached the end of the list? Then start again, with the next file */
2811 if (j->unique_offset == 0) {
c1f906bd 2812 j->unique_file = ordered_hashmap_next(j->files, j->unique_file->path);
360af4cf 2813 if (!j->unique_file)
3c1668da
LP
2814 return 0;
2815
3c1668da
LP
2816 continue;
2817 }
2818
d05089d8
MS
2819 /* We do not use OBJECT_DATA context here, but OBJECT_UNUSED
2820 * instead, so that we can look at this data object at the same
3c1668da 2821 * time as one on another file */
d05089d8 2822 r = journal_file_move_to_object(j->unique_file, OBJECT_UNUSED, j->unique_offset, &o);
3c1668da
LP
2823 if (r < 0)
2824 return r;
2825
2826 /* Let's do the type check by hand, since we used 0 context above. */
ae97089d 2827 if (o->object.type != OBJECT_DATA) {
36202fd2 2828 log_debug("%s:offset " OFSfmt ": object has type %d, expected %d",
ae97089d
ZJS
2829 j->unique_file->path, j->unique_offset,
2830 o->object.type, OBJECT_DATA);
3c1668da 2831 return -EBADMSG;
ae97089d
ZJS
2832 }
2833
93b73b06 2834 r = return_data(j, j->unique_file, o, &odata, &ol);
3c1668da
LP
2835 if (r < 0)
2836 return r;
2837
0f99f74a
ZJS
2838 /* Check if we have at least the field name and "=". */
2839 if (ol <= k) {
2840 log_debug("%s:offset " OFSfmt ": object has size %zu, expected at least %zu",
2841 j->unique_file->path, j->unique_offset,
2842 ol, k + 1);
2843 return -EBADMSG;
2844 }
2845
2846 if (memcmp(odata, j->unique_field, k) || ((const char*) odata)[k] != '=') {
2847 log_debug("%s:offset " OFSfmt ": object does not start with \"%s=\"",
2848 j->unique_file->path, j->unique_offset,
2849 j->unique_field);
2850 return -EBADMSG;
2851 }
2852
3c1668da
LP
2853 /* OK, now let's see if we already returned this data
2854 * object by checking if it exists in the earlier
2855 * traversed files. */
2856 found = false;
c1f906bd 2857 ORDERED_HASHMAP_FOREACH(of, j->files, i) {
3c1668da
LP
2858 if (of == j->unique_file)
2859 break;
2860
ed71f956
LP
2861 /* Skip this file it didn't have any fields indexed */
2862 if (JOURNAL_HEADER_CONTAINS(of->header, n_fields) && le64toh(of->header->n_fields) <= 0)
3c1668da
LP
2863 continue;
2864
ed71f956 2865 r = journal_file_find_data_object_with_hash(of, odata, ol, le64toh(o->data.hash), NULL, NULL);
3c1668da
LP
2866 if (r < 0)
2867 return r;
ed71f956 2868 if (r > 0) {
3c1668da 2869 found = true;
ed71f956
LP
2870 break;
2871 }
3c1668da
LP
2872 }
2873
06cc69d4
JJ
2874 if (found)
2875 continue;
2876
93b73b06 2877 r = return_data(j, j->unique_file, o, data, l);
3c1668da
LP
2878 if (r < 0)
2879 return r;
2880
2881 return 1;
2882 }
2883}
2884
115646c7 2885_public_ void sd_journal_restart_unique(sd_journal *j) {
3c1668da
LP
2886 if (!j)
2887 return;
2888
2889 j->unique_file = NULL;
2890 j->unique_offset = 0;
360af4cf 2891 j->unique_file_lost = false;
3c1668da 2892}
85210bff 2893
eb86030e
LP
2894_public_ int sd_journal_enumerate_fields(sd_journal *j, const char **field) {
2895 int r;
2896
2897 assert_return(j, -EINVAL);
2898 assert_return(!journal_pid_changed(j), -ECHILD);
2899 assert_return(field, -EINVAL);
2900
2901 if (!j->fields_file) {
2902 if (j->fields_file_lost)
2903 return 0;
2904
2905 j->fields_file = ordered_hashmap_first(j->files);
2906 if (!j->fields_file)
2907 return 0;
2908
2909 j->fields_hash_table_index = 0;
2910 j->fields_offset = 0;
2911 }
2912
2913 for (;;) {
2914 JournalFile *f, *of;
2915 Iterator i;
2916 uint64_t m;
2917 Object *o;
2918 size_t sz;
2919 bool found;
2920
2921 f = j->fields_file;
2922
2923 if (j->fields_offset == 0) {
2924 bool eof = false;
2925
2926 /* We are not yet positioned at any field. Let's pick the first one */
2927 r = journal_file_map_field_hash_table(f);
2928 if (r < 0)
2929 return r;
2930
2931 m = le64toh(f->header->field_hash_table_size) / sizeof(HashItem);
2932 for (;;) {
2933 if (j->fields_hash_table_index >= m) {
2934 /* Reached the end of the hash table, go to the next file. */
2935 eof = true;
2936 break;
2937 }
2938
2939 j->fields_offset = le64toh(f->field_hash_table[j->fields_hash_table_index].head_hash_offset);
2940
2941 if (j->fields_offset != 0)
2942 break;
2943
2944 /* Empty hash table bucket, go to next one */
2945 j->fields_hash_table_index++;
2946 }
2947
2948 if (eof) {
2949 /* Proceed with next file */
2950 j->fields_file = ordered_hashmap_next(j->files, f->path);
2951 if (!j->fields_file) {
2952 *field = NULL;
2953 return 0;
2954 }
2955
2956 j->fields_offset = 0;
2957 j->fields_hash_table_index = 0;
2958 continue;
2959 }
2960
2961 } else {
2962 /* We are already positioned at a field. If so, let's figure out the next field from it */
2963
2964 r = journal_file_move_to_object(f, OBJECT_FIELD, j->fields_offset, &o);
2965 if (r < 0)
2966 return r;
2967
2968 j->fields_offset = le64toh(o->field.next_hash_offset);
2969 if (j->fields_offset == 0) {
2970 /* Reached the end of the hash table chain */
2971 j->fields_hash_table_index++;
2972 continue;
2973 }
2974 }
2975
1f133e0d 2976 /* We use OBJECT_UNUSED here, so that the iterator below doesn't remove our mmap window */
eb86030e
LP
2977 r = journal_file_move_to_object(f, OBJECT_UNUSED, j->fields_offset, &o);
2978 if (r < 0)
2979 return r;
2980
2981 /* Because we used OBJECT_UNUSED above, we need to do our type check manually */
2982 if (o->object.type != OBJECT_FIELD) {
2983 log_debug("%s:offset " OFSfmt ": object has type %i, expected %i", f->path, j->fields_offset, o->object.type, OBJECT_FIELD);
2984 return -EBADMSG;
2985 }
2986
2987 sz = le64toh(o->object.size) - offsetof(Object, field.payload);
2988
2989 /* Let's see if we already returned this field name before. */
2990 found = false;
2991 ORDERED_HASHMAP_FOREACH(of, j->files, i) {
2992 if (of == f)
2993 break;
2994
2995 /* Skip this file it didn't have any fields indexed */
2996 if (JOURNAL_HEADER_CONTAINS(of->header, n_fields) && le64toh(of->header->n_fields) <= 0)
2997 continue;
2998
2999 r = journal_file_find_field_object_with_hash(of, o->field.payload, sz, le64toh(o->field.hash), NULL, NULL);
3000 if (r < 0)
3001 return r;
3002 if (r > 0) {
3003 found = true;
3004 break;
3005 }
3006 }
3007
3008 if (found)
3009 continue;
3010
3011 /* Check if this is really a valid string containing no NUL byte */
3012 if (memchr(o->field.payload, 0, sz))
3013 return -EBADMSG;
3014
3015 if (sz > j->data_threshold)
3016 sz = j->data_threshold;
3017
3018 if (!GREEDY_REALLOC(j->fields_buffer, j->fields_buffer_allocated, sz + 1))
3019 return -ENOMEM;
3020
3021 memcpy(j->fields_buffer, o->field.payload, sz);
3022 j->fields_buffer[sz] = 0;
3023
3024 if (!field_is_valid(j->fields_buffer))
3025 return -EBADMSG;
3026
3027 *field = j->fields_buffer;
3028 return 1;
3029 }
3030}
3031
3032_public_ void sd_journal_restart_fields(sd_journal *j) {
3033 if (!j)
3034 return;
3035
3036 j->fields_file = NULL;
3037 j->fields_hash_table_index = 0;
3038 j->fields_offset = 0;
3039 j->fields_file_lost = false;
3040}
3041
85210bff 3042_public_ int sd_journal_reliable_fd(sd_journal *j) {
1ae464e0
TA
3043 assert_return(j, -EINVAL);
3044 assert_return(!journal_pid_changed(j), -ECHILD);
85210bff
LP
3045
3046 return !j->on_network;
3047}
d4205751
LP
3048
3049static char *lookup_field(const char *field, void *userdata) {
3050 sd_journal *j = userdata;
3051 const void *data;
3052 size_t size, d;
3053 int r;
3054
3055 assert(field);
3056 assert(j);
3057
3058 r = sd_journal_get_data(j, field, &data, &size);
3059 if (r < 0 ||
3060 size > REPLACE_VAR_MAX)
3061 return strdup(field);
3062
3063 d = strlen(field) + 1;
3064
3065 return strndup((const char*) data + d, size - d);
3066}
3067
3068_public_ int sd_journal_get_catalog(sd_journal *j, char **ret) {
3069 const void *data;
3070 size_t size;
3071 sd_id128_t id;
3072 _cleanup_free_ char *text = NULL, *cid = NULL;
3073 char *t;
3074 int r;
3075
1ae464e0
TA
3076 assert_return(j, -EINVAL);
3077 assert_return(!journal_pid_changed(j), -ECHILD);
3078 assert_return(ret, -EINVAL);
d4205751
LP
3079
3080 r = sd_journal_get_data(j, "MESSAGE_ID", &data, &size);
3081 if (r < 0)
3082 return r;
3083
3084 cid = strndup((const char*) data + 11, size - 11);
3085 if (!cid)
3086 return -ENOMEM;
3087
3088 r = sd_id128_from_string(cid, &id);
3089 if (r < 0)
3090 return r;
3091
844ec79b 3092 r = catalog_get(CATALOG_DATABASE, id, &text);
d4205751
LP
3093 if (r < 0)
3094 return r;
3095
3096 t = replace_var(text, lookup_field, j);
3097 if (!t)
3098 return -ENOMEM;
3099
3100 *ret = t;
3101 return 0;
3102}
8f1e860f
LP
3103
3104_public_ int sd_journal_get_catalog_for_message_id(sd_id128_t id, char **ret) {
1ae464e0 3105 assert_return(ret, -EINVAL);
8f1e860f 3106
844ec79b 3107 return catalog_get(CATALOG_DATABASE, id, ret);
8f1e860f 3108}
93b73b06
LP
3109
3110_public_ int sd_journal_set_data_threshold(sd_journal *j, size_t sz) {
1ae464e0
TA
3111 assert_return(j, -EINVAL);
3112 assert_return(!journal_pid_changed(j), -ECHILD);
93b73b06
LP
3113
3114 j->data_threshold = sz;
3115 return 0;
3116}
3117
3118_public_ int sd_journal_get_data_threshold(sd_journal *j, size_t *sz) {
1ae464e0
TA
3119 assert_return(j, -EINVAL);
3120 assert_return(!journal_pid_changed(j), -ECHILD);
3121 assert_return(sz, -EINVAL);
93b73b06
LP
3122
3123 *sz = j->data_threshold;
3124 return 0;
3125}
39fd5b08
JS
3126
3127_public_ int sd_journal_has_runtime_files(sd_journal *j) {
3128 assert_return(j, -EINVAL);
3129
3130 return j->has_runtime_files;
3131}
3132
3133_public_ int sd_journal_has_persistent_files(sd_journal *j) {
3134 assert_return(j, -EINVAL);
3135
3136 return j->has_persistent_files;
3137}