2 * An implementation of host to guest copy functionality for Linux.
4 * Copyright (C) 2014, Microsoft, Inc.
6 * Author : K. Y. Srinivasan <kys@microsoft.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published
10 * by the Free Software Foundation.
12 * This program 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, GOOD TITLE or
15 * NON INFRINGEMENT. See the GNU General Public License for more
20 #include <sys/types.h>
21 #include <sys/socket.h>
23 #include <linux/types.h>
24 #include <linux/kdev_t.h>
31 #include <linux/hyperv.h>
39 static char target_fname[W_MAX_PATH];
41 static int hv_start_fcopy(struct hv_start_fcopy *smsg)
43 int error = HV_E_FAIL;
46 p = (char *)smsg->path_name;
47 snprintf(target_fname, sizeof(target_fname), "%s/%s",
48 (char *)smsg->path_name, (char *)smsg->file_name);
50 syslog(LOG_INFO, "Target file name: %s", target_fname);
52 * Check to see if the path is already in place; if not,
55 while ((q = strchr(p, '/')) != NULL) {
61 if (access((char *)smsg->path_name, F_OK)) {
62 if (smsg->copy_flags & CREATE_PATH) {
63 if (mkdir((char *)smsg->path_name, 0755)) {
64 syslog(LOG_ERR, "Failed to create %s",
65 (char *)smsg->path_name);
69 syslog(LOG_ERR, "Invalid path: %s",
70 (char *)smsg->path_name);
78 if (!access(target_fname, F_OK)) {
79 syslog(LOG_INFO, "File: %s exists", target_fname);
80 if (!(smsg->copy_flags & OVER_WRITE)) {
81 error = HV_ERROR_ALREADY_EXISTS;
86 target_fd = open(target_fname,
87 O_RDWR | O_CREAT | O_TRUNC | O_CLOEXEC, 0744);
88 if (target_fd == -1) {
89 syslog(LOG_INFO, "Open Failed: %s", strerror(errno));
98 static int hv_copy_data(struct hv_do_fcopy *cpmsg)
100 ssize_t bytes_written;
102 bytes_written = pwrite(target_fd, cpmsg->data, cpmsg->size,
105 if (bytes_written != cpmsg->size)
111 static int hv_copy_finished(void)
116 static int hv_copy_cancel(void)
119 unlink(target_fname);
124 void print_usage(char *argv[])
126 fprintf(stderr, "Usage: %s [options]\n"
128 " -n, --no-daemon stay in foreground, don't daemonize\n"
129 " -h, --help print this help\n", argv[0]);
132 int main(int argc, char *argv[])
136 int daemonize = 1, long_index = 0, opt;
137 int version = FCOPY_CURRENT_VERSION;
138 char *buffer[4096 * 2];
139 struct hv_fcopy_hdr *in_msg;
141 static struct option long_options[] = {
142 {"help", no_argument, 0, 'h' },
143 {"no-daemon", no_argument, 0, 'n' },
147 while ((opt = getopt_long(argc, argv, "hn", long_options,
148 &long_index)) != -1) {
160 if (daemonize && daemon(1, 0)) {
161 syslog(LOG_ERR, "daemon() failed; error: %s", strerror(errno));
165 openlog("HV_FCOPY", 0, LOG_USER);
166 syslog(LOG_INFO, "HV_FCOPY starting; pid is:%d", getpid());
168 fcopy_fd = open("/dev/vmbus/hv_fcopy", O_RDWR);
171 syslog(LOG_ERR, "open /dev/vmbus/hv_fcopy failed; error: %d %s",
172 errno, strerror(errno));
177 * Register with the kernel.
179 if ((write(fcopy_fd, &version, sizeof(int))) != sizeof(int)) {
180 syslog(LOG_ERR, "Registration failed: %s", strerror(errno));
186 * In this loop we process fcopy messages after the
187 * handshake is complete.
189 len = pread(fcopy_fd, buffer, (4096 * 2), 0);
191 syslog(LOG_ERR, "pread failed: %s", strerror(errno));
194 in_msg = (struct hv_fcopy_hdr *)buffer;
196 switch (in_msg->operation) {
197 case START_FILE_COPY:
198 error = hv_start_fcopy((struct hv_start_fcopy *)in_msg);
201 error = hv_copy_data((struct hv_do_fcopy *)in_msg);
204 error = hv_copy_finished();
207 error = hv_copy_cancel();
211 syslog(LOG_ERR, "Unknown operation: %d",
216 if (pwrite(fcopy_fd, &error, sizeof(int), 0) != sizeof(int)) {
217 syslog(LOG_ERR, "pwrite failed: %s", strerror(errno));