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