1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2015 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
24 #include "sd-daemon.h"
27 #include "btrfs-util.h"
28 #include "chattr-util.h"
33 #include "hostname-util.h"
34 #include "import-common.h"
35 #include "import-compress.h"
36 #include "import-raw.h"
38 #include "machine-pool.h"
40 #include "path-util.h"
41 #include "qcow2-util.h"
42 #include "ratelimit.h"
44 #include "string-util.h"
52 RawImportFinished on_finished
;
58 bool grow_machine_directory
;
66 ImportCompress compress
;
68 uint64_t written_since_last_grow
;
70 sd_event_source
*input_event_source
;
72 uint8_t buffer
[16*1024];
75 uint64_t written_compressed
;
76 uint64_t written_uncompressed
;
80 unsigned last_percent
;
81 RateLimit progress_rate_limit
;
84 RawImport
* raw_import_unref(RawImport
*i
) {
88 sd_event_unref(i
->event
);
91 (void) unlink(i
->temp_path
);
95 import_compress_free(&i
->compress
);
97 sd_event_source_unref(i
->input_event_source
);
99 safe_close(i
->output_fd
);
112 const char *image_root
,
113 RawImportFinished on_finished
,
116 _cleanup_(raw_import_unrefp
) RawImport
*i
= NULL
;
121 i
= new0(RawImport
, 1);
125 i
->input_fd
= i
->output_fd
= -1;
126 i
->on_finished
= on_finished
;
127 i
->userdata
= userdata
;
129 RATELIMIT_INIT(i
->progress_rate_limit
, 100 * USEC_PER_MSEC
, 1);
130 i
->last_percent
= (unsigned) -1;
132 i
->image_root
= strdup(image_root
?: "/var/lib/machines");
136 i
->grow_machine_directory
= path_startswith(i
->image_root
, "/var/lib/machines");
139 i
->event
= sd_event_ref(event
);
141 r
= sd_event_default(&i
->event
);
152 static void raw_import_report_progress(RawImport
*i
) {
156 /* We have no size information, unless the source is a regular file */
157 if (!S_ISREG(i
->st
.st_mode
))
160 if (i
->written_compressed
>= (uint64_t) i
->st
.st_size
)
163 percent
= (unsigned) ((i
->written_compressed
* UINT64_C(100)) / (uint64_t) i
->st
.st_size
);
165 if (percent
== i
->last_percent
)
168 if (!ratelimit_test(&i
->progress_rate_limit
))
171 sd_notifyf(false, "X_IMPORT_PROGRESS=%u", percent
);
172 log_info("Imported %u%%.", percent
);
174 i
->last_percent
= percent
;
177 static int raw_import_maybe_convert_qcow2(RawImport
*i
) {
178 _cleanup_close_
int converted_fd
= -1;
179 _cleanup_free_
char *t
= NULL
;
184 r
= qcow2_detect(i
->output_fd
);
186 return log_error_errno(r
, "Failed to detect whether this is a QCOW2 image: %m");
190 /* This is a QCOW2 image, let's convert it */
191 r
= tempfn_random(i
->final_path
, NULL
, &t
);
195 converted_fd
= open(t
, O_RDWR
|O_CREAT
|O_EXCL
|O_NOCTTY
|O_CLOEXEC
, 0664);
196 if (converted_fd
< 0)
197 return log_error_errno(errno
, "Failed to create %s: %m", t
);
199 r
= chattr_fd(converted_fd
, FS_NOCOW_FL
, FS_NOCOW_FL
);
201 log_warning_errno(errno
, "Failed to set file attributes on %s: %m", t
);
203 log_info("Unpacking QCOW2 file.");
205 r
= qcow2_convert(i
->output_fd
, converted_fd
);
208 return log_error_errno(r
, "Failed to convert qcow2 image: %m");
211 (void) unlink(i
->temp_path
);
216 safe_close(i
->output_fd
);
217 i
->output_fd
= converted_fd
;
223 static int raw_import_finish(RawImport
*i
) {
227 assert(i
->output_fd
>= 0);
228 assert(i
->temp_path
);
229 assert(i
->final_path
);
231 /* In case this was a sparse file, make sure the file system is right */
232 if (i
->written_uncompressed
> 0) {
233 if (ftruncate(i
->output_fd
, i
->written_uncompressed
) < 0)
234 return log_error_errno(errno
, "Failed to truncate file: %m");
237 r
= raw_import_maybe_convert_qcow2(i
);
241 if (S_ISREG(i
->st
.st_mode
)) {
242 (void) copy_times(i
->input_fd
, i
->output_fd
);
243 (void) copy_xattr(i
->input_fd
, i
->output_fd
);
247 r
= import_make_read_only_fd(i
->output_fd
);
253 (void) rm_rf(i
->final_path
, REMOVE_ROOT
|REMOVE_PHYSICAL
|REMOVE_SUBVOLUME
);
255 r
= rename_noreplace(AT_FDCWD
, i
->temp_path
, AT_FDCWD
, i
->final_path
);
257 return log_error_errno(r
, "Failed to move image into place: %m");
259 i
->temp_path
= mfree(i
->temp_path
);
264 static int raw_import_open_disk(RawImport
*i
) {
269 assert(!i
->final_path
);
270 assert(!i
->temp_path
);
271 assert(i
->output_fd
< 0);
273 i
->final_path
= strjoin(i
->image_root
, "/", i
->local
, ".raw", NULL
);
277 r
= tempfn_random(i
->final_path
, NULL
, &i
->temp_path
);
281 (void) mkdir_parents_label(i
->temp_path
, 0700);
283 i
->output_fd
= open(i
->temp_path
, O_RDWR
|O_CREAT
|O_EXCL
|O_NOCTTY
|O_CLOEXEC
, 0664);
284 if (i
->output_fd
< 0)
285 return log_error_errno(errno
, "Failed to open destination %s: %m", i
->temp_path
);
287 r
= chattr_fd(i
->output_fd
, FS_NOCOW_FL
, FS_NOCOW_FL
);
289 log_warning_errno(errno
, "Failed to set file attributes on %s: %m", i
->temp_path
);
294 static int raw_import_try_reflink(RawImport
*i
) {
299 assert(i
->input_fd
>= 0);
300 assert(i
->output_fd
>= 0);
302 if (i
->compress
.type
!= IMPORT_COMPRESS_UNCOMPRESSED
)
305 if (!S_ISREG(i
->st
.st_mode
))
308 p
= lseek(i
->input_fd
, 0, SEEK_CUR
);
310 return log_error_errno(errno
, "Failed to read file offset of input file: %m");
312 /* Let's only try a btrfs reflink, if we are reading from the beginning of the file */
313 if ((uint64_t) p
!= (uint64_t) i
->buffer_size
)
316 r
= btrfs_reflink(i
->input_fd
, i
->output_fd
);
323 static int raw_import_write(const void *p
, size_t sz
, void *userdata
) {
324 RawImport
*i
= userdata
;
327 if (i
->grow_machine_directory
&& i
->written_since_last_grow
>= GROW_INTERVAL_BYTES
) {
328 i
->written_since_last_grow
= 0;
329 grow_machine_directory();
332 n
= sparse_write(i
->output_fd
, p
, sz
, 64);
338 i
->written_uncompressed
+= sz
;
339 i
->written_since_last_grow
+= sz
;
344 static int raw_import_process(RawImport
*i
) {
349 assert(i
->buffer_size
< sizeof(i
->buffer
));
351 l
= read(i
->input_fd
, i
->buffer
+ i
->buffer_size
, sizeof(i
->buffer
) - i
->buffer_size
);
356 r
= log_error_errno(errno
, "Failed to read input file: %m");
360 if (i
->compress
.type
== IMPORT_COMPRESS_UNKNOWN
) {
361 log_error("Premature end of file: %m");
366 r
= raw_import_finish(i
);
372 if (i
->compress
.type
== IMPORT_COMPRESS_UNKNOWN
) {
373 r
= import_uncompress_detect(&i
->compress
, i
->buffer
, i
->buffer_size
);
375 log_error("Failed to detect file compression: %m");
378 if (r
== 0) /* Need more data */
381 r
= raw_import_open_disk(i
);
385 r
= raw_import_try_reflink(i
);
389 r
= raw_import_finish(i
);
394 r
= import_uncompress(&i
->compress
, i
->buffer
, i
->buffer_size
, raw_import_write
, i
);
396 log_error_errno(r
, "Failed to decode and write: %m");
400 i
->written_compressed
+= i
->buffer_size
;
403 raw_import_report_progress(i
);
409 i
->on_finished(i
, r
, i
->userdata
);
411 sd_event_exit(i
->event
, r
);
416 static int raw_import_on_input(sd_event_source
*s
, int fd
, uint32_t revents
, void *userdata
) {
417 RawImport
*i
= userdata
;
419 return raw_import_process(i
);
422 static int raw_import_on_defer(sd_event_source
*s
, void *userdata
) {
423 RawImport
*i
= userdata
;
425 return raw_import_process(i
);
428 int raw_import_start(RawImport
*i
, int fd
, const char *local
, bool force_local
, bool read_only
) {
435 if (!machine_name_is_valid(local
))
438 if (i
->input_fd
>= 0)
441 r
= fd_nonblock(fd
, true);
445 r
= free_and_strdup(&i
->local
, local
);
448 i
->force_local
= force_local
;
449 i
->read_only
= read_only
;
451 if (fstat(fd
, &i
->st
) < 0)
454 r
= sd_event_add_io(i
->event
, &i
->input_event_source
, fd
, EPOLLIN
, raw_import_on_input
, i
);
456 /* This fd does not support epoll, for example because it is a regular file. Busy read in that case */
457 r
= sd_event_add_defer(i
->event
, &i
->input_event_source
, raw_import_on_defer
, i
);
461 r
= sd_event_source_set_enabled(i
->input_event_source
, SD_EVENT_ON
);