1 // SPDX-License-Identifier: GPL-2.0-only
3 * An implementation of host to guest copy functionality for Linux.
5 * Copyright (C) 2014, Microsoft, Inc.
7 * Author : K. Y. Srinivasan <kys@microsoft.com>
11 #include <sys/types.h>
17 #include <linux/hyperv.h>
18 #include <linux/limits.h>
25 static char target_fname[PATH_MAX];
26 static unsigned long long filesize;
28 static int hv_start_fcopy(struct hv_start_fcopy *smsg)
30 int error = HV_E_FAIL;
34 p = (char *)smsg->path_name;
35 snprintf(target_fname, sizeof(target_fname), "%s/%s",
36 (char *)smsg->path_name, (char *)smsg->file_name);
38 syslog(LOG_INFO, "Target file name: %s", target_fname);
40 * Check to see if the path is already in place; if not,
43 while ((q = strchr(p, '/')) != NULL) {
49 if (access((char *)smsg->path_name, F_OK)) {
50 if (smsg->copy_flags & CREATE_PATH) {
51 if (mkdir((char *)smsg->path_name, 0755)) {
52 syslog(LOG_ERR, "Failed to create %s",
53 (char *)smsg->path_name);
57 syslog(LOG_ERR, "Invalid path: %s",
58 (char *)smsg->path_name);
66 if (!access(target_fname, F_OK)) {
67 syslog(LOG_INFO, "File: %s exists", target_fname);
68 if (!(smsg->copy_flags & OVER_WRITE)) {
69 error = HV_ERROR_ALREADY_EXISTS;
74 target_fd = open(target_fname,
75 O_RDWR | O_CREAT | O_TRUNC | O_CLOEXEC, 0744);
76 if (target_fd == -1) {
77 syslog(LOG_INFO, "Open Failed: %s", strerror(errno));
84 target_fname[0] = '\0';
88 static int hv_copy_data(struct hv_do_fcopy *cpmsg)
90 ssize_t bytes_written;
93 bytes_written = pwrite(target_fd, cpmsg->data, cpmsg->size,
96 filesize += cpmsg->size;
97 if (bytes_written != cpmsg->size) {
100 ret = HV_ERROR_DISK_FULL;
106 syslog(LOG_ERR, "pwrite failed to write %llu bytes: %ld (%s)",
107 filesize, (long)bytes_written, strerror(errno));
114 * Reset target_fname to "" in the two below functions for hibernation: if
115 * the fcopy operation is aborted by hibernation, the daemon should remove the
116 * partially-copied file; to achieve this, the hv_utils driver always fakes a
117 * CANCEL_FCOPY message upon suspend, and later when the VM resumes back,
118 * the daemon calls hv_copy_cancel() to remove the file; if a file is copied
119 * successfully before suspend, hv_copy_finished() must reset target_fname to
120 * avoid that the file can be incorrectly removed upon resume, since the faked
121 * CANCEL_FCOPY message is spurious in this case.
123 static int hv_copy_finished(void)
126 target_fname[0] = '\0';
129 static int hv_copy_cancel(void)
132 if (strlen(target_fname) > 0) {
133 unlink(target_fname);
134 target_fname[0] = '\0';
140 void print_usage(char *argv[])
142 fprintf(stderr, "Usage: %s [options]\n"
144 " -n, --no-daemon stay in foreground, don't daemonize\n"
145 " -h, --help print this help\n", argv[0]);
148 int main(int argc, char *argv[])
152 int daemonize = 1, long_index = 0, opt;
153 int version = FCOPY_CURRENT_VERSION;
155 struct hv_fcopy_hdr hdr;
156 struct hv_start_fcopy start;
157 struct hv_do_fcopy copy;
162 static struct option long_options[] = {
163 {"help", no_argument, 0, 'h' },
164 {"no-daemon", no_argument, 0, 'n' },
168 while ((opt = getopt_long(argc, argv, "hn", long_options,
169 &long_index)) != -1) {
181 if (daemonize && daemon(1, 0)) {
182 syslog(LOG_ERR, "daemon() failed; error: %s", strerror(errno));
186 openlog("HV_FCOPY", 0, LOG_USER);
187 syslog(LOG_INFO, "starting; pid is:%d", getpid());
192 /* Remove any possible partially-copied file on error */
195 fcopy_fd = open("/dev/vmbus/hv_fcopy", O_RDWR);
198 syslog(LOG_ERR, "open /dev/vmbus/hv_fcopy failed; error: %d %s",
199 errno, strerror(errno));
204 * Register with the kernel.
206 if ((write(fcopy_fd, &version, sizeof(int))) != sizeof(int)) {
207 syslog(LOG_ERR, "Registration failed: %s", strerror(errno));
213 * In this loop we process fcopy messages after the
214 * handshake is complete.
218 len = pread(fcopy_fd, &buffer, sizeof(buffer), 0);
220 syslog(LOG_ERR, "pread failed: %s", strerror(errno));
221 goto reopen_fcopy_fd;
225 if (len != sizeof(buffer.kernel_modver)) {
226 syslog(LOG_ERR, "invalid version negotiation");
230 syslog(LOG_INFO, "kernel module version: %u",
231 buffer.kernel_modver);
235 switch (buffer.hdr.operation) {
236 case START_FILE_COPY:
237 error = hv_start_fcopy(&buffer.start);
240 error = hv_copy_data(&buffer.copy);
243 error = hv_copy_finished();
246 error = hv_copy_cancel();
251 syslog(LOG_ERR, "Unknown operation: %d",
252 buffer.hdr.operation);
257 * pwrite() may return an error due to the faked CANCEL_FCOPY
258 * message upon hibernation. Ignore the error by resetting the
259 * dev file, i.e. closing and re-opening it.
261 if (pwrite(fcopy_fd, &error, sizeof(int), 0) != sizeof(int)) {
262 syslog(LOG_ERR, "pwrite failed: %s", strerror(errno));
263 goto reopen_fcopy_fd;