blob: 16d629b22c2542824830a403faa5b78a6b179c51 [file] [log] [blame]
Thomas Gleixner43aa3132019-05-29 07:17:54 -07001// SPDX-License-Identifier: GPL-2.0-only
K. Y. Srinivasan013254762014-02-16 11:34:30 -08002/*
3 * An implementation of host to guest copy functionality for Linux.
4 *
5 * Copyright (C) 2014, Microsoft, Inc.
6 *
7 * Author : K. Y. Srinivasan <kys@microsoft.com>
K. Y. Srinivasan013254762014-02-16 11:34:30 -08008 */
9
10
11#include <sys/types.h>
K. Y. Srinivasan013254762014-02-16 11:34:30 -080012#include <stdio.h>
13#include <stdlib.h>
14#include <unistd.h>
Olaf Heringaba8a532018-03-04 22:17:15 -070015#include <string.h>
K. Y. Srinivasan013254762014-02-16 11:34:30 -080016#include <errno.h>
17#include <linux/hyperv.h>
Dexuan Cui1330fc32018-03-04 22:17:14 -070018#include <linux/limits.h>
K. Y. Srinivasan013254762014-02-16 11:34:30 -080019#include <syslog.h>
20#include <sys/stat.h>
21#include <fcntl.h>
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +020022#include <getopt.h>
K. Y. Srinivasan013254762014-02-16 11:34:30 -080023
24static int target_fd;
Dexuan Cui1330fc32018-03-04 22:17:14 -070025static char target_fname[PATH_MAX];
Olaf Heringb4ed5d12015-12-14 16:01:34 -080026static unsigned long long filesize;
K. Y. Srinivasan013254762014-02-16 11:34:30 -080027
28static int hv_start_fcopy(struct hv_start_fcopy *smsg)
29{
30 int error = HV_E_FAIL;
31 char *q, *p;
32
Olaf Heringb4ed5d12015-12-14 16:01:34 -080033 filesize = 0;
K. Y. Srinivasan013254762014-02-16 11:34:30 -080034 p = (char *)smsg->path_name;
35 snprintf(target_fname, sizeof(target_fname), "%s/%s",
Vitaly Kuznetsovaba474b2015-01-09 22:18:54 -080036 (char *)smsg->path_name, (char *)smsg->file_name);
K. Y. Srinivasan013254762014-02-16 11:34:30 -080037
38 syslog(LOG_INFO, "Target file name: %s", target_fname);
39 /*
40 * Check to see if the path is already in place; if not,
41 * create if required.
42 */
43 while ((q = strchr(p, '/')) != NULL) {
44 if (q == p) {
45 p++;
46 continue;
47 }
48 *q = '\0';
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);
54 goto done;
55 }
56 } else {
57 syslog(LOG_ERR, "Invalid path: %s",
58 (char *)smsg->path_name);
59 goto done;
60 }
61 }
62 p = q + 1;
63 *q = '/';
64 }
65
66 if (!access(target_fname, F_OK)) {
67 syslog(LOG_INFO, "File: %s exists", target_fname);
K. Y. Srinivasan314672a2014-04-09 17:24:16 -070068 if (!(smsg->copy_flags & OVER_WRITE)) {
69 error = HV_ERROR_ALREADY_EXISTS;
K. Y. Srinivasan013254762014-02-16 11:34:30 -080070 goto done;
K. Y. Srinivasan314672a2014-04-09 17:24:16 -070071 }
K. Y. Srinivasan013254762014-02-16 11:34:30 -080072 }
73
Yue Zhange013ac32014-06-27 18:19:48 -070074 target_fd = open(target_fname,
75 O_RDWR | O_CREAT | O_TRUNC | O_CLOEXEC, 0744);
K. Y. Srinivasan013254762014-02-16 11:34:30 -080076 if (target_fd == -1) {
77 syslog(LOG_INFO, "Open Failed: %s", strerror(errno));
78 goto done;
79 }
80
81 error = 0;
82done:
Dexuan Cui9fc3c012020-01-25 21:49:41 -080083 if (error)
84 target_fname[0] = '\0';
K. Y. Srinivasan013254762014-02-16 11:34:30 -080085 return error;
86}
87
88static int hv_copy_data(struct hv_do_fcopy *cpmsg)
89{
90 ssize_t bytes_written;
Olaf Heringb4ed5d12015-12-14 16:01:34 -080091 int ret = 0;
K. Y. Srinivasan013254762014-02-16 11:34:30 -080092
93 bytes_written = pwrite(target_fd, cpmsg->data, cpmsg->size,
94 cpmsg->offset);
95
Olaf Heringb4ed5d12015-12-14 16:01:34 -080096 filesize += cpmsg->size;
97 if (bytes_written != cpmsg->size) {
98 switch (errno) {
99 case ENOSPC:
100 ret = HV_ERROR_DISK_FULL;
101 break;
102 default:
103 ret = HV_E_FAIL;
104 break;
105 }
106 syslog(LOG_ERR, "pwrite failed to write %llu bytes: %ld (%s)",
107 filesize, (long)bytes_written, strerror(errno));
108 }
K. Y. Srinivasan013254762014-02-16 11:34:30 -0800109
Olaf Heringb4ed5d12015-12-14 16:01:34 -0800110 return ret;
K. Y. Srinivasan013254762014-02-16 11:34:30 -0800111}
112
Dexuan Cui9fc3c012020-01-25 21:49:41 -0800113/*
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.
122 */
K. Y. Srinivasan013254762014-02-16 11:34:30 -0800123static int hv_copy_finished(void)
124{
125 close(target_fd);
Dexuan Cui9fc3c012020-01-25 21:49:41 -0800126 target_fname[0] = '\0';
K. Y. Srinivasan013254762014-02-16 11:34:30 -0800127 return 0;
128}
129static int hv_copy_cancel(void)
130{
131 close(target_fd);
Dexuan Cui9fc3c012020-01-25 21:49:41 -0800132 if (strlen(target_fname) > 0) {
133 unlink(target_fname);
134 target_fname[0] = '\0';
135 }
K. Y. Srinivasan013254762014-02-16 11:34:30 -0800136 return 0;
137
138}
139
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +0200140void print_usage(char *argv[])
141{
142 fprintf(stderr, "Usage: %s [options]\n"
143 "Options are:\n"
144 " -n, --no-daemon stay in foreground, don't daemonize\n"
145 " -h, --help print this help\n", argv[0]);
146}
147
148int main(int argc, char *argv[])
K. Y. Srinivasan013254762014-02-16 11:34:30 -0800149{
Dexuan Cui9fc3c012020-01-25 21:49:41 -0800150 int fcopy_fd = -1;
K. Y. Srinivasan013254762014-02-16 11:34:30 -0800151 int error;
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +0200152 int daemonize = 1, long_index = 0, opt;
K. Y. Srinivasan013254762014-02-16 11:34:30 -0800153 int version = FCOPY_CURRENT_VERSION;
Olaf Hering3f2baa82017-08-10 15:45:16 -0700154 union {
155 struct hv_fcopy_hdr hdr;
156 struct hv_start_fcopy start;
157 struct hv_do_fcopy copy;
158 __u32 kernel_modver;
159 } buffer = { };
Dexuan Cui9fc3c012020-01-25 21:49:41 -0800160 int in_handshake;
K. Y. Srinivasan013254762014-02-16 11:34:30 -0800161
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +0200162 static struct option long_options[] = {
163 {"help", no_argument, 0, 'h' },
164 {"no-daemon", no_argument, 0, 'n' },
165 {0, 0, 0, 0 }
166 };
167
168 while ((opt = getopt_long(argc, argv, "hn", long_options,
169 &long_index)) != -1) {
170 switch (opt) {
171 case 'n':
172 daemonize = 0;
173 break;
174 case 'h':
175 default:
176 print_usage(argv);
177 exit(EXIT_FAILURE);
178 }
179 }
180
181 if (daemonize && daemon(1, 0)) {
K. Y. Srinivasan013254762014-02-16 11:34:30 -0800182 syslog(LOG_ERR, "daemon() failed; error: %s", strerror(errno));
183 exit(EXIT_FAILURE);
184 }
185
186 openlog("HV_FCOPY", 0, LOG_USER);
Olaf Hering6dfb8672015-12-14 16:01:35 -0800187 syslog(LOG_INFO, "starting; pid is:%d", getpid());
K. Y. Srinivasan013254762014-02-16 11:34:30 -0800188
Dexuan Cui9fc3c012020-01-25 21:49:41 -0800189reopen_fcopy_fd:
190 if (fcopy_fd != -1)
191 close(fcopy_fd);
192 /* Remove any possible partially-copied file on error */
193 hv_copy_cancel();
194 in_handshake = 1;
K. Y. Srinivasan013254762014-02-16 11:34:30 -0800195 fcopy_fd = open("/dev/vmbus/hv_fcopy", O_RDWR);
196
197 if (fcopy_fd < 0) {
198 syslog(LOG_ERR, "open /dev/vmbus/hv_fcopy failed; error: %d %s",
199 errno, strerror(errno));
200 exit(EXIT_FAILURE);
201 }
202
203 /*
204 * Register with the kernel.
205 */
206 if ((write(fcopy_fd, &version, sizeof(int))) != sizeof(int)) {
207 syslog(LOG_ERR, "Registration failed: %s", strerror(errno));
208 exit(EXIT_FAILURE);
209 }
210
211 while (1) {
212 /*
213 * In this loop we process fcopy messages after the
214 * handshake is complete.
215 */
Olaf Hering3f2baa82017-08-10 15:45:16 -0700216 ssize_t len;
217
218 len = pread(fcopy_fd, &buffer, sizeof(buffer), 0);
K. Y. Srinivasan013254762014-02-16 11:34:30 -0800219 if (len < 0) {
220 syslog(LOG_ERR, "pread failed: %s", strerror(errno));
Dexuan Cui9fc3c012020-01-25 21:49:41 -0800221 goto reopen_fcopy_fd;
K. Y. Srinivasan013254762014-02-16 11:34:30 -0800222 }
Vitaly Kuznetsova4d1ee52015-04-11 18:07:58 -0700223
224 if (in_handshake) {
Olaf Hering3f2baa82017-08-10 15:45:16 -0700225 if (len != sizeof(buffer.kernel_modver)) {
Vitaly Kuznetsova4d1ee52015-04-11 18:07:58 -0700226 syslog(LOG_ERR, "invalid version negotiation");
227 exit(EXIT_FAILURE);
228 }
Vitaly Kuznetsova4d1ee52015-04-11 18:07:58 -0700229 in_handshake = 0;
Olaf Hering3f2baa82017-08-10 15:45:16 -0700230 syslog(LOG_INFO, "kernel module version: %u",
231 buffer.kernel_modver);
Vitaly Kuznetsova4d1ee52015-04-11 18:07:58 -0700232 continue;
233 }
234
Olaf Hering3f2baa82017-08-10 15:45:16 -0700235 switch (buffer.hdr.operation) {
K. Y. Srinivasan013254762014-02-16 11:34:30 -0800236 case START_FILE_COPY:
Olaf Hering3f2baa82017-08-10 15:45:16 -0700237 error = hv_start_fcopy(&buffer.start);
K. Y. Srinivasan013254762014-02-16 11:34:30 -0800238 break;
239 case WRITE_TO_FILE:
Olaf Hering3f2baa82017-08-10 15:45:16 -0700240 error = hv_copy_data(&buffer.copy);
K. Y. Srinivasan013254762014-02-16 11:34:30 -0800241 break;
242 case COMPLETE_FCOPY:
243 error = hv_copy_finished();
244 break;
245 case CANCEL_FCOPY:
246 error = hv_copy_cancel();
247 break;
248
249 default:
Vitaly Kuznetsovc2d68af2018-09-17 04:14:55 +0000250 error = HV_E_FAIL;
K. Y. Srinivasan013254762014-02-16 11:34:30 -0800251 syslog(LOG_ERR, "Unknown operation: %d",
Olaf Hering3f2baa82017-08-10 15:45:16 -0700252 buffer.hdr.operation);
K. Y. Srinivasan013254762014-02-16 11:34:30 -0800253
254 }
255
Dexuan Cui9fc3c012020-01-25 21:49:41 -0800256 /*
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.
260 */
K. Y. Srinivasan013254762014-02-16 11:34:30 -0800261 if (pwrite(fcopy_fd, &error, sizeof(int), 0) != sizeof(int)) {
262 syslog(LOG_ERR, "pwrite failed: %s", strerror(errno));
Dexuan Cui9fc3c012020-01-25 21:49:41 -0800263 goto reopen_fcopy_fd;
K. Y. Srinivasan013254762014-02-16 11:34:30 -0800264 }
265 }
266}