]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/journal/test-journal.c
Merge pull request #8554 from poettering/chase-trail-slash
[thirdparty/systemd.git] / src / journal / test-journal.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 /***
3 This file is part of systemd.
4
5 Copyright 2011 Lennart Poettering
6
7 systemd is free software; you can redistribute it and/or modify it
8 under the terms of the GNU Lesser General Public License as published by
9 the Free Software Foundation; either version 2.1 of the License, or
10 (at your option) any later version.
11
12 systemd is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public License
18 along with systemd; If not, see <http://www.gnu.org/licenses/>.
19 ***/
20
21 #include <fcntl.h>
22 #include <unistd.h>
23
24 #include "journal-authenticate.h"
25 #include "journal-file.h"
26 #include "journal-vacuum.h"
27 #include "log.h"
28 #include "rm-rf.h"
29
30 static bool arg_keep = false;
31
32 static void test_non_empty(void) {
33 dual_timestamp ts;
34 JournalFile *f;
35 struct iovec iovec;
36 static const char test[] = "TEST1=1", test2[] = "TEST2=2";
37 Object *o;
38 uint64_t p;
39 char t[] = "/tmp/journal-XXXXXX";
40
41 log_set_max_level(LOG_DEBUG);
42
43 assert_se(mkdtemp(t));
44 assert_se(chdir(t) >= 0);
45
46 assert_se(journal_file_open(-1, "test.journal", O_RDWR|O_CREAT, 0666, true, (uint64_t) -1, true, NULL, NULL, NULL, NULL, &f) == 0);
47
48 dual_timestamp_get(&ts);
49
50 iovec.iov_base = (void*) test;
51 iovec.iov_len = strlen(test);
52 assert_se(journal_file_append_entry(f, &ts, &iovec, 1, NULL, NULL, NULL) == 0);
53
54 iovec.iov_base = (void*) test2;
55 iovec.iov_len = strlen(test2);
56 assert_se(journal_file_append_entry(f, &ts, &iovec, 1, NULL, NULL, NULL) == 0);
57
58 iovec.iov_base = (void*) test;
59 iovec.iov_len = strlen(test);
60 assert_se(journal_file_append_entry(f, &ts, &iovec, 1, NULL, NULL, NULL) == 0);
61
62 #if HAVE_GCRYPT
63 journal_file_append_tag(f);
64 #endif
65 journal_file_dump(f);
66
67 assert_se(journal_file_next_entry(f, 0, DIRECTION_DOWN, &o, &p) == 1);
68 assert_se(le64toh(o->entry.seqnum) == 1);
69
70 assert_se(journal_file_next_entry(f, p, DIRECTION_DOWN, &o, &p) == 1);
71 assert_se(le64toh(o->entry.seqnum) == 2);
72
73 assert_se(journal_file_next_entry(f, p, DIRECTION_DOWN, &o, &p) == 1);
74 assert_se(le64toh(o->entry.seqnum) == 3);
75
76 assert_se(journal_file_next_entry(f, p, DIRECTION_DOWN, &o, &p) == 0);
77
78 assert_se(journal_file_next_entry(f, 0, DIRECTION_DOWN, &o, &p) == 1);
79 assert_se(le64toh(o->entry.seqnum) == 1);
80
81 assert_se(journal_file_find_data_object(f, test, strlen(test), NULL, &p) == 1);
82 assert_se(journal_file_next_entry_for_data(f, NULL, 0, p, DIRECTION_DOWN, &o, NULL) == 1);
83 assert_se(le64toh(o->entry.seqnum) == 1);
84
85 assert_se(journal_file_next_entry_for_data(f, NULL, 0, p, DIRECTION_UP, &o, NULL) == 1);
86 assert_se(le64toh(o->entry.seqnum) == 3);
87
88 assert_se(journal_file_find_data_object(f, test2, strlen(test2), NULL, &p) == 1);
89 assert_se(journal_file_next_entry_for_data(f, NULL, 0, p, DIRECTION_UP, &o, NULL) == 1);
90 assert_se(le64toh(o->entry.seqnum) == 2);
91
92 assert_se(journal_file_next_entry_for_data(f, NULL, 0, p, DIRECTION_DOWN, &o, NULL) == 1);
93 assert_se(le64toh(o->entry.seqnum) == 2);
94
95 assert_se(journal_file_find_data_object(f, "quux", 4, NULL, &p) == 0);
96
97 assert_se(journal_file_move_to_entry_by_seqnum(f, 1, DIRECTION_DOWN, &o, NULL) == 1);
98 assert_se(le64toh(o->entry.seqnum) == 1);
99
100 assert_se(journal_file_move_to_entry_by_seqnum(f, 3, DIRECTION_DOWN, &o, NULL) == 1);
101 assert_se(le64toh(o->entry.seqnum) == 3);
102
103 assert_se(journal_file_move_to_entry_by_seqnum(f, 2, DIRECTION_DOWN, &o, NULL) == 1);
104 assert_se(le64toh(o->entry.seqnum) == 2);
105
106 assert_se(journal_file_move_to_entry_by_seqnum(f, 10, DIRECTION_DOWN, &o, NULL) == 0);
107
108 journal_file_rotate(&f, true, (uint64_t) -1, true, NULL);
109 journal_file_rotate(&f, true, (uint64_t) -1, true, NULL);
110
111 (void) journal_file_close(f);
112
113 log_info("Done...");
114
115 if (arg_keep)
116 log_info("Not removing %s", t);
117 else {
118 journal_directory_vacuum(".", 3000000, 0, 0, NULL, true);
119
120 assert_se(rm_rf(t, REMOVE_ROOT|REMOVE_PHYSICAL) >= 0);
121 }
122
123 puts("------------------------------------------------------------");
124 }
125
126 static void test_empty(void) {
127 JournalFile *f1, *f2, *f3, *f4;
128 char t[] = "/tmp/journal-XXXXXX";
129
130 log_set_max_level(LOG_DEBUG);
131
132 assert_se(mkdtemp(t));
133 assert_se(chdir(t) >= 0);
134
135 assert_se(journal_file_open(-1, "test.journal", O_RDWR|O_CREAT, 0666, false, (uint64_t) -1, false, NULL, NULL, NULL, NULL, &f1) == 0);
136
137 assert_se(journal_file_open(-1, "test-compress.journal", O_RDWR|O_CREAT, 0666, true, (uint64_t) -1, false, NULL, NULL, NULL, NULL, &f2) == 0);
138
139 assert_se(journal_file_open(-1, "test-seal.journal", O_RDWR|O_CREAT, 0666, false, (uint64_t) -1, true, NULL, NULL, NULL, NULL, &f3) == 0);
140
141 assert_se(journal_file_open(-1, "test-seal-compress.journal", O_RDWR|O_CREAT, 0666, true, (uint64_t) -1, true, NULL, NULL, NULL, NULL, &f4) == 0);
142
143 journal_file_print_header(f1);
144 puts("");
145 journal_file_print_header(f2);
146 puts("");
147 journal_file_print_header(f3);
148 puts("");
149 journal_file_print_header(f4);
150 puts("");
151
152 log_info("Done...");
153
154 if (arg_keep)
155 log_info("Not removing %s", t);
156 else {
157 journal_directory_vacuum(".", 3000000, 0, 0, NULL, true);
158
159 assert_se(rm_rf(t, REMOVE_ROOT|REMOVE_PHYSICAL) >= 0);
160 }
161
162 (void) journal_file_close(f1);
163 (void) journal_file_close(f2);
164 (void) journal_file_close(f3);
165 (void) journal_file_close(f4);
166 }
167
168 #if HAVE_XZ || HAVE_LZ4
169 static bool check_compressed(uint64_t compress_threshold, uint64_t data_size) {
170 dual_timestamp ts;
171 JournalFile *f;
172 struct iovec iovec;
173 Object *o;
174 uint64_t p;
175 char t[] = "/tmp/journal-XXXXXX";
176 char data[2048] = {0};
177 bool is_compressed;
178 int r;
179
180 assert_se(data_size <= sizeof(data));
181
182 log_set_max_level(LOG_DEBUG);
183
184 assert_se(mkdtemp(t));
185 assert_se(chdir(t) >= 0);
186
187 assert_se(journal_file_open(-1, "test.journal", O_RDWR|O_CREAT, 0666, true, compress_threshold, true, NULL, NULL, NULL, NULL, &f) == 0);
188
189 dual_timestamp_get(&ts);
190
191 iovec.iov_base = (void*) data;
192 iovec.iov_len = data_size;
193 assert_se(journal_file_append_entry(f, &ts, &iovec, 1, NULL, NULL, NULL) == 0);
194
195 #if HAVE_GCRYPT
196 journal_file_append_tag(f);
197 #endif
198 journal_file_dump(f);
199
200 /* We have to partially reimplement some of the dump logic, because the normal next_entry does the
201 * decompression for us. */
202 p = le64toh(f->header->header_size);
203 for (;;) {
204 r = journal_file_move_to_object(f, OBJECT_UNUSED, p, &o);
205 assert_se(r == 0);
206 if (o->object.type == OBJECT_DATA)
207 break;
208
209 assert_se(p < le64toh(f->header->tail_object_offset));
210 p = p + ALIGN64(le64toh(o->object.size));
211 }
212
213 is_compressed = (o->object.flags & OBJECT_COMPRESSION_MASK) != 0;
214
215 (void) journal_file_close(f);
216
217 log_info("Done...");
218
219 if (arg_keep)
220 log_info("Not removing %s", t);
221 else {
222 journal_directory_vacuum(".", 3000000, 0, 0, NULL, true);
223
224 assert_se(rm_rf(t, REMOVE_ROOT|REMOVE_PHYSICAL) >= 0);
225 }
226
227 puts("------------------------------------------------------------");
228
229 return is_compressed;
230 }
231
232 static void test_min_compress_size(void) {
233 /* Note that XZ will actually fail to compress anything under 80 bytes, so you have to choose the limits
234 * carefully */
235
236 /* DEFAULT_MIN_COMPRESS_SIZE is 512 */
237 assert_se(!check_compressed((uint64_t) -1, 255));
238 assert_se(check_compressed((uint64_t) -1, 513));
239
240 /* compress everything */
241 assert_se(check_compressed(0, 96));
242 assert_se(check_compressed(8, 96));
243
244 /* Ensure we don't try to compress less than 8 bytes */
245 assert_se(!check_compressed(0, 7));
246
247 /* check boundary conditions */
248 assert_se(check_compressed(256, 256));
249 assert_se(!check_compressed(256, 255));
250 }
251 #endif
252
253 int main(int argc, char *argv[]) {
254 arg_keep = argc > 1;
255
256 /* journal_file_open requires a valid machine id */
257 if (access("/etc/machine-id", F_OK) != 0)
258 return EXIT_TEST_SKIP;
259
260 test_non_empty();
261 test_empty();
262 #if HAVE_XZ || HAVE_LZ4
263 test_min_compress_size();
264 #endif
265
266 return 0;
267 }