]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/import/import-tar.c
pid1: rename start_limit to start_ratelimit
[thirdparty/systemd.git] / src / import / import-tar.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
b6e676ce
LP
2
3#include <linux/fs.h>
4
5#include "sd-daemon.h"
6#include "sd-event.h"
07630cea 7
b5efdb8a 8#include "alloc-util.h"
b6e676ce
LP
9#include "btrfs-util.h"
10#include "copy.h"
3ffd4af2 11#include "fd-util.h"
0d39fa9c 12#include "fileio.h"
f4f15635 13#include "fs-util.h"
07630cea
LP
14#include "hostname-util.h"
15#include "import-common.h"
16#include "import-compress.h"
3ffd4af2 17#include "import-tar.h"
c004493c 18#include "io-util.h"
b6e676ce 19#include "machine-pool.h"
07630cea
LP
20#include "mkdir.h"
21#include "path-util.h"
22#include "process-util.h"
b6e676ce 23#include "qcow2-util.h"
07630cea
LP
24#include "ratelimit.h"
25#include "rm-rf.h"
26#include "string-util.h"
e4de7287 27#include "tmpfile-util.h"
07630cea 28#include "util.h"
b6e676ce
LP
29
30struct TarImport {
31 sd_event *event;
32
33 char *image_root;
34
35 TarImportFinished on_finished;
36 void *userdata;
37
38 char *local;
39 bool force_local;
40 bool read_only;
b6e676ce
LP
41
42 char *temp_path;
43 char *final_path;
44
45 int input_fd;
46 int tar_fd;
47
48 ImportCompress compress;
49
b6e676ce
LP
50 sd_event_source *input_event_source;
51
52 uint8_t buffer[16*1024];
53 size_t buffer_size;
54
55 uint64_t written_compressed;
56 uint64_t written_uncompressed;
57
58 struct stat st;
59
60 pid_t tar_pid;
61
62 unsigned last_percent;
63 RateLimit progress_rate_limit;
64};
65
66TarImport* tar_import_unref(TarImport *i) {
67 if (!i)
68 return NULL;
69
587fec42 70 sd_event_source_unref(i->input_event_source);
b6e676ce
LP
71
72 if (i->tar_pid > 1) {
73 (void) kill_and_sigcont(i->tar_pid, SIGKILL);
74 (void) wait_for_terminate(i->tar_pid, NULL);
75 }
76
77 if (i->temp_path) {
d9e2daaf 78 (void) rm_rf(i->temp_path, REMOVE_ROOT|REMOVE_PHYSICAL|REMOVE_SUBVOLUME);
b6e676ce
LP
79 free(i->temp_path);
80 }
81
82 import_compress_free(&i->compress);
83
587fec42 84 sd_event_unref(i->event);
b6e676ce
LP
85
86 safe_close(i->tar_fd);
87
88 free(i->final_path);
89 free(i->image_root);
90 free(i->local);
6b430fdb 91 return mfree(i);
b6e676ce
LP
92}
93
94int tar_import_new(
95 TarImport **ret,
96 sd_event *event,
97 const char *image_root,
98 TarImportFinished on_finished,
99 void *userdata) {
100
101 _cleanup_(tar_import_unrefp) TarImport *i = NULL;
0d94088e 102 _cleanup_free_ char *root = NULL;
b6e676ce
LP
103 int r;
104
105 assert(ret);
106
0d94088e
YW
107 root = strdup(image_root ?: "/var/lib/machines");
108 if (!root)
b6e676ce
LP
109 return -ENOMEM;
110
0d94088e
YW
111 i = new(TarImport, 1);
112 if (!i)
b6e676ce
LP
113 return -ENOMEM;
114
0d94088e
YW
115 *i = (TarImport) {
116 .input_fd = -1,
117 .tar_fd = -1,
118 .on_finished = on_finished,
119 .userdata = userdata,
120 .last_percent = (unsigned) -1,
121 .image_root = TAKE_PTR(root),
8c227e7f 122 .progress_rate_limit = { 100 * USEC_PER_MSEC, 1 },
0d94088e
YW
123 };
124
b6e676ce
LP
125 if (event)
126 i->event = sd_event_ref(event);
127 else {
128 r = sd_event_default(&i->event);
129 if (r < 0)
130 return r;
131 }
132
1cc6c93a 133 *ret = TAKE_PTR(i);
b6e676ce
LP
134
135 return 0;
136}
137
138static void tar_import_report_progress(TarImport *i) {
139 unsigned percent;
140 assert(i);
141
142 /* We have no size information, unless the source is a regular file */
143 if (!S_ISREG(i->st.st_mode))
144 return;
145
146 if (i->written_compressed >= (uint64_t) i->st.st_size)
147 percent = 100;
148 else
149 percent = (unsigned) ((i->written_compressed * UINT64_C(100)) / (uint64_t) i->st.st_size);
150
151 if (percent == i->last_percent)
152 return;
153
7994ac1d 154 if (!ratelimit_below(&i->progress_rate_limit))
b6e676ce
LP
155 return;
156
157 sd_notifyf(false, "X_IMPORT_PROGRESS=%u", percent);
158 log_info("Imported %u%%.", percent);
159
160 i->last_percent = percent;
161}
162
163static int tar_import_finish(TarImport *i) {
164 int r;
165
166 assert(i);
167 assert(i->tar_fd >= 0);
168 assert(i->temp_path);
169 assert(i->final_path);
170
171 i->tar_fd = safe_close(i->tar_fd);
172
173 if (i->tar_pid > 0) {
7d4904fe 174 r = wait_for_terminate_and_check("tar", i->tar_pid, WAIT_LOG);
b6e676ce
LP
175 i->tar_pid = 0;
176 if (r < 0)
177 return r;
d02bfa50
LP
178 if (r != EXIT_SUCCESS)
179 return -EPROTO;
b6e676ce
LP
180 }
181
e21b7229
LP
182 r = import_mangle_os_tree(i->temp_path);
183 if (r < 0)
184 return r;
185
b6e676ce
LP
186 if (i->read_only) {
187 r = import_make_read_only(i->temp_path);
188 if (r < 0)
189 return r;
190 }
191
d9e2daaf
LP
192 if (i->force_local)
193 (void) rm_rf(i->final_path, REMOVE_ROOT|REMOVE_PHYSICAL|REMOVE_SUBVOLUME);
b6e676ce 194
f85ef957
AC
195 r = rename_noreplace(AT_FDCWD, i->temp_path, AT_FDCWD, i->final_path);
196 if (r < 0)
197 return log_error_errno(r, "Failed to move image into place: %m");
b6e676ce 198
a1e58e8e 199 i->temp_path = mfree(i->temp_path);
b6e676ce
LP
200
201 return 0;
202}
203
204static int tar_import_fork_tar(TarImport *i) {
205 int r;
206
207 assert(i);
208
209 assert(!i->final_path);
210 assert(!i->temp_path);
211 assert(i->tar_fd < 0);
212
657ee2d8 213 i->final_path = path_join(i->image_root, i->local);
b6e676ce
LP
214 if (!i->final_path)
215 return log_oom();
216
14bcf25c 217 r = tempfn_random(i->final_path, NULL, &i->temp_path);
b6e676ce
LP
218 if (r < 0)
219 return log_oom();
220
221 (void) mkdir_parents_label(i->temp_path, 0700);
222
223 r = btrfs_subvol_make(i->temp_path);
224 if (r == -ENOTTY) {
225 if (mkdir(i->temp_path, 0755) < 0)
226 return log_error_errno(errno, "Failed to create directory %s: %m", i->temp_path);
227 } else if (r < 0)
709f6e46 228 return log_error_errno(r, "Failed to create subvolume %s: %m", i->temp_path);
8c9cfc28
LP
229 else
230 (void) import_assign_pool_quota_and_warn(i->temp_path);
b6e676ce 231
587fec42 232 i->tar_fd = import_fork_tar_x(i->temp_path, &i->tar_pid);
b6e676ce
LP
233 if (i->tar_fd < 0)
234 return i->tar_fd;
235
236 return 0;
237}
238
239static int tar_import_write(const void *p, size_t sz, void *userdata) {
240 TarImport *i = userdata;
241 int r;
242
b6e676ce
LP
243 r = loop_write(i->tar_fd, p, sz, false);
244 if (r < 0)
245 return r;
246
247 i->written_uncompressed += sz;
b6e676ce
LP
248
249 return 0;
250}
251
252static int tar_import_process(TarImport *i) {
253 ssize_t l;
254 int r;
255
256 assert(i);
257 assert(i->buffer_size < sizeof(i->buffer));
258
259 l = read(i->input_fd, i->buffer + i->buffer_size, sizeof(i->buffer) - i->buffer_size);
260 if (l < 0) {
587fec42
LP
261 if (errno == EAGAIN)
262 return 0;
263
b6e676ce
LP
264 r = log_error_errno(errno, "Failed to read input file: %m");
265 goto finish;
266 }
267 if (l == 0) {
268 if (i->compress.type == IMPORT_COMPRESS_UNKNOWN) {
35bca925 269 log_error("Premature end of file.");
b6e676ce
LP
270 r = -EIO;
271 goto finish;
272 }
273
274 r = tar_import_finish(i);
275 goto finish;
276 }
277
278 i->buffer_size += l;
279
280 if (i->compress.type == IMPORT_COMPRESS_UNKNOWN) {
281 r = import_uncompress_detect(&i->compress, i->buffer, i->buffer_size);
282 if (r < 0) {
35bca925 283 log_error_errno(r, "Failed to detect file compression: %m");
b6e676ce
LP
284 goto finish;
285 }
286 if (r == 0) /* Need more data */
287 return 0;
288
289 r = tar_import_fork_tar(i);
290 if (r < 0)
291 goto finish;
292 }
293
294 r = import_uncompress(&i->compress, i->buffer, i->buffer_size, tar_import_write, i);
295 if (r < 0) {
296 log_error_errno(r, "Failed to decode and write: %m");
297 goto finish;
298 }
299
300 i->written_compressed += i->buffer_size;
301 i->buffer_size = 0;
302
303 tar_import_report_progress(i);
304
305 return 0;
306
307finish:
308 if (i->on_finished)
309 i->on_finished(i, r, i->userdata);
310 else
311 sd_event_exit(i->event, r);
312
313 return 0;
314}
315
316static int tar_import_on_input(sd_event_source *s, int fd, uint32_t revents, void *userdata) {
317 TarImport *i = userdata;
318
319 return tar_import_process(i);
320}
321
322static int tar_import_on_defer(sd_event_source *s, void *userdata) {
323 TarImport *i = userdata;
324
325 return tar_import_process(i);
326}
327
328int tar_import_start(TarImport *i, int fd, const char *local, bool force_local, bool read_only) {
329 int r;
330
331 assert(i);
332 assert(fd >= 0);
333 assert(local);
334
335 if (!machine_name_is_valid(local))
336 return -EINVAL;
337
338 if (i->input_fd >= 0)
339 return -EBUSY;
340
587fec42
LP
341 r = fd_nonblock(fd, true);
342 if (r < 0)
343 return r;
344
b6e676ce
LP
345 r = free_and_strdup(&i->local, local);
346 if (r < 0)
347 return r;
348 i->force_local = force_local;
349 i->read_only = read_only;
350
351 if (fstat(fd, &i->st) < 0)
352 return -errno;
353
354 r = sd_event_add_io(i->event, &i->input_event_source, fd, EPOLLIN, tar_import_on_input, i);
355 if (r == -EPERM) {
356 /* This fd does not support epoll, for example because it is a regular file. Busy read in that case */
357 r = sd_event_add_defer(i->event, &i->input_event_source, tar_import_on_defer, i);
358 if (r < 0)
359 return r;
360
361 r = sd_event_source_set_enabled(i->input_event_source, SD_EVENT_ON);
362 }
363 if (r < 0)
364 return r;
365
366 i->input_fd = fd;
367 return r;
368}