blob: b1330017276236b91ca2a5be84a3ce48dc07e4f9 [file] [log] [blame]
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -07001/*
2 * An implementation of the host initiated guest snapshot for Hyper-V.
3 *
4 *
5 * Copyright (C) 2013, Microsoft, Inc.
6 * Author : K. Y. Srinivasan <kys@microsoft.com>
7 *
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.
11 *
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
16 * details.
17 *
18 */
19
20
21#include <sys/types.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070022#include <sys/poll.h>
Olaf Hering7b413b62013-04-24 07:48:52 -070023#include <sys/ioctl.h>
Alex Ngea81fdf2017-08-06 13:12:52 -070024#include <sys/stat.h>
Dexuan Cui1330fc32018-03-04 22:17:14 -070025#include <sys/sysmacros.h>
Olaf Hering7b413b62013-04-24 07:48:52 -070026#include <fcntl.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070027#include <stdio.h>
Olaf Heringd3d1ee32013-04-24 07:48:51 -070028#include <mntent.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070029#include <stdlib.h>
30#include <unistd.h>
31#include <string.h>
32#include <ctype.h>
33#include <errno.h>
Olaf Hering7b413b62013-04-24 07:48:52 -070034#include <linux/fs.h>
Alex Ngea81fdf2017-08-06 13:12:52 -070035#include <linux/major.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070036#include <linux/hyperv.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070037#include <syslog.h>
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +020038#include <getopt.h>
Vitaly Kuznetsov07136792018-06-05 13:37:56 -070039#include <stdbool.h>
40#include <dirent.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070041
Dexuan Cui4f689192014-09-25 21:52:04 -070042/* Don't use syslog() in the function since that can cause write to disk */
43static int vss_do_freeze(char *dir, unsigned int cmd)
Olaf Hering7b413b62013-04-24 07:48:52 -070044{
45 int ret, fd = open(dir, O_RDONLY);
46
47 if (fd < 0)
48 return 1;
Dexuan Cui4f689192014-09-25 21:52:04 -070049
Olaf Hering7b413b62013-04-24 07:48:52 -070050 ret = ioctl(fd, cmd, 0);
Dexuan Cui4f689192014-09-25 21:52:04 -070051
52 /*
53 * If a partition is mounted more than once, only the first
54 * FREEZE/THAW can succeed and the later ones will get
55 * EBUSY/EINVAL respectively: there could be 2 cases:
56 * 1) a user may mount the same partition to differnt directories
57 * by mistake or on purpose;
58 * 2) The subvolume of btrfs appears to have the same partition
59 * mounted more than once.
60 */
61 if (ret) {
62 if ((cmd == FIFREEZE && errno == EBUSY) ||
63 (cmd == FITHAW && errno == EINVAL)) {
64 close(fd);
65 return 0;
66 }
67 }
68
Olaf Hering7b413b62013-04-24 07:48:52 -070069 close(fd);
70 return !!ret;
71}
72
Vitaly Kuznetsov07136792018-06-05 13:37:56 -070073static bool is_dev_loop(const char *blkname)
74{
75 char *buffer;
76 DIR *dir;
77 struct dirent *entry;
78 bool ret = false;
79
80 buffer = malloc(PATH_MAX);
81 if (!buffer) {
82 syslog(LOG_ERR, "Can't allocate memory!");
83 exit(1);
84 }
85
86 snprintf(buffer, PATH_MAX, "%s/loop", blkname);
87 if (!access(buffer, R_OK | X_OK)) {
88 ret = true;
89 goto free_buffer;
90 } else if (errno != ENOENT) {
91 syslog(LOG_ERR, "Can't access: %s; error:%d %s!",
92 buffer, errno, strerror(errno));
93 }
94
95 snprintf(buffer, PATH_MAX, "%s/slaves", blkname);
96 dir = opendir(buffer);
97 if (!dir) {
98 if (errno != ENOENT)
99 syslog(LOG_ERR, "Can't opendir: %s; error:%d %s!",
100 buffer, errno, strerror(errno));
101 goto free_buffer;
102 }
103
104 while ((entry = readdir(dir)) != NULL) {
105 if (strcmp(entry->d_name, ".") == 0 ||
106 strcmp(entry->d_name, "..") == 0)
107 continue;
108
109 snprintf(buffer, PATH_MAX, "%s/slaves/%s", blkname,
110 entry->d_name);
111 if (is_dev_loop(buffer)) {
112 ret = true;
113 break;
114 }
115 }
116 closedir(dir);
117free_buffer:
118 free(buffer);
119 return ret;
120}
121
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700122static int vss_operate(int operation)
123{
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700124 char match[] = "/dev/";
125 FILE *mounts;
126 struct mntent *ent;
Alex Ngea81fdf2017-08-06 13:12:52 -0700127 struct stat sb;
Vaughan Cao4ce50e92015-03-18 12:29:28 -0700128 char errdir[1024] = {0};
Vitaly Kuznetsov07136792018-06-05 13:37:56 -0700129 char blkdir[23]; /* /sys/dev/block/XXX:XXX */
Olaf Hering7b413b62013-04-24 07:48:52 -0700130 unsigned int cmd;
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100131 int error = 0, root_seen = 0, save_errno = 0;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700132
133 switch (operation) {
134 case VSS_OP_FREEZE:
Olaf Hering7b413b62013-04-24 07:48:52 -0700135 cmd = FIFREEZE;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700136 break;
137 case VSS_OP_THAW:
Olaf Hering7b413b62013-04-24 07:48:52 -0700138 cmd = FITHAW;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700139 break;
Olaf Heringeb8905b2013-04-24 07:48:48 -0700140 default:
141 return -1;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700142 }
143
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700144 mounts = setmntent("/proc/mounts", "r");
145 if (mounts == NULL)
Olaf Heringeb8905b2013-04-24 07:48:48 -0700146 return -1;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700147
K. Y. Srinivasan0e272632013-04-24 07:48:54 -0700148 while ((ent = getmntent(mounts))) {
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700149 if (strncmp(ent->mnt_fsname, match, strlen(match)))
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700150 continue;
Vitaly Kuznetsov07136792018-06-05 13:37:56 -0700151 if (stat(ent->mnt_fsname, &sb)) {
152 syslog(LOG_ERR, "Can't stat: %s; error:%d %s!",
153 ent->mnt_fsname, errno, strerror(errno));
154 } else {
155 sprintf(blkdir, "/sys/dev/block/%d:%d",
156 major(sb.st_rdev), minor(sb.st_rdev));
157 if (is_dev_loop(blkdir))
158 continue;
159 }
Vitaly Kuznetsov9e5db052014-11-10 17:37:02 +0100160 if (hasmntopt(ent, MNTOPT_RO) != NULL)
Olaf Hering10b637b2013-04-24 07:48:53 -0700161 continue;
K. Y. Srinivasanf33b2152014-02-12 08:40:22 -0800162 if (strcmp(ent->mnt_type, "vfat") == 0)
163 continue;
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700164 if (strcmp(ent->mnt_dir, "/") == 0) {
165 root_seen = 1;
166 continue;
167 }
Dexuan Cui4f689192014-09-25 21:52:04 -0700168 error |= vss_do_freeze(ent->mnt_dir, cmd);
169 if (error && operation == VSS_OP_FREEZE)
170 goto err;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700171 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700172
Vaughan Cao4ce50e92015-03-18 12:29:28 -0700173 endmntent(mounts);
174
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700175 if (root_seen) {
Dexuan Cui4f689192014-09-25 21:52:04 -0700176 error |= vss_do_freeze("/", cmd);
177 if (error && operation == VSS_OP_FREEZE)
178 goto err;
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700179 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700180
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100181 goto out;
Dexuan Cui4f689192014-09-25 21:52:04 -0700182err:
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100183 save_errno = errno;
Vaughan Cao4ce50e92015-03-18 12:29:28 -0700184 if (ent) {
185 strncpy(errdir, ent->mnt_dir, sizeof(errdir)-1);
186 endmntent(mounts);
187 }
Dexuan Cui4f689192014-09-25 21:52:04 -0700188 vss_operate(VSS_OP_THAW);
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100189 /* Call syslog after we thaw all filesystems */
190 if (ent)
191 syslog(LOG_ERR, "FREEZE of %s failed; error:%d %s",
Vaughan Cao4ce50e92015-03-18 12:29:28 -0700192 errdir, save_errno, strerror(save_errno));
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100193 else
194 syslog(LOG_ERR, "FREEZE of / failed; error:%d %s", save_errno,
195 strerror(save_errno));
196out:
Dexuan Cui4f689192014-09-25 21:52:04 -0700197 return error;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700198}
199
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +0200200void print_usage(char *argv[])
201{
202 fprintf(stderr, "Usage: %s [options]\n"
203 "Options are:\n"
204 " -n, --no-daemon stay in foreground, don't daemonize\n"
205 " -h, --help print this help\n", argv[0]);
206}
207
208int main(int argc, char *argv[])
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700209{
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700210 int vss_fd, len;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700211 int error;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700212 struct pollfd pfd;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700213 int op;
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700214 struct hv_vss_msg vss_msg[1];
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +0200215 int daemonize = 1, long_index = 0, opt;
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700216 int in_handshake = 1;
217 __u32 kernel_modver;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700218
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +0200219 static struct option long_options[] = {
220 {"help", no_argument, 0, 'h' },
221 {"no-daemon", no_argument, 0, 'n' },
222 {0, 0, 0, 0 }
223 };
224
225 while ((opt = getopt_long(argc, argv, "hn", long_options,
226 &long_index)) != -1) {
227 switch (opt) {
228 case 'n':
229 daemonize = 0;
230 break;
231 case 'h':
232 default:
233 print_usage(argv);
234 exit(EXIT_FAILURE);
235 }
236 }
237
238 if (daemonize && daemon(1, 0))
Olaf Heringeb8905b2013-04-24 07:48:48 -0700239 return 1;
240
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700241 openlog("Hyper-V VSS", 0, LOG_USER);
242 syslog(LOG_INFO, "VSS starting; pid is:%d", getpid());
243
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700244 vss_fd = open("/dev/vmbus/hv_vss", O_RDWR);
245 if (vss_fd < 0) {
246 syslog(LOG_ERR, "open /dev/vmbus/hv_vss failed; error: %d %s",
247 errno, strerror(errno));
Tomas Hozzad12e1462013-06-27 13:52:48 +0200248 exit(EXIT_FAILURE);
249 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700250 /*
251 * Register ourselves with the kernel.
252 */
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700253 vss_msg->vss_hdr.operation = VSS_OP_REGISTER1;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700254
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700255 len = write(vss_fd, vss_msg, sizeof(struct hv_vss_msg));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700256 if (len < 0) {
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700257 syslog(LOG_ERR, "registration to kernel failed; error: %d %s",
258 errno, strerror(errno));
259 close(vss_fd);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700260 exit(EXIT_FAILURE);
261 }
262
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700263 pfd.fd = vss_fd;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700264
265 while (1) {
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700266 pfd.events = POLLIN;
267 pfd.revents = 0;
Tomas Hozza9561d472013-06-27 13:52:49 +0200268
269 if (poll(&pfd, 1, -1) < 0) {
270 syslog(LOG_ERR, "poll failed; error:%d %s", errno, strerror(errno));
271 if (errno == EINVAL) {
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700272 close(vss_fd);
Tomas Hozza9561d472013-06-27 13:52:49 +0200273 exit(EXIT_FAILURE);
274 }
275 else
276 continue;
277 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700278
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700279 len = read(vss_fd, vss_msg, sizeof(struct hv_vss_msg));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700280
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700281 if (in_handshake) {
282 if (len != sizeof(kernel_modver)) {
283 syslog(LOG_ERR, "invalid version negotiation");
284 exit(EXIT_FAILURE);
285 }
286 kernel_modver = *(__u32 *)vss_msg;
287 in_handshake = 0;
288 syslog(LOG_INFO, "VSS: kernel module version: %d",
289 kernel_modver);
290 continue;
291 }
292
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700293 if (len != sizeof(struct hv_vss_msg)) {
294 syslog(LOG_ERR, "read failed; error:%d %s",
295 errno, strerror(errno));
296 close(vss_fd);
297 return EXIT_FAILURE;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700298 }
299
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700300 op = vss_msg->vss_hdr.operation;
301 error = HV_S_OK;
302
303 switch (op) {
304 case VSS_OP_FREEZE:
305 case VSS_OP_THAW:
306 error = vss_operate(op);
Dexuan Cui4f689192014-09-25 21:52:04 -0700307 syslog(LOG_INFO, "VSS: op=%s: %s\n",
308 op == VSS_OP_FREEZE ? "FREEZE" : "THAW",
309 error ? "failed" : "succeeded");
310
311 if (error) {
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700312 error = HV_E_FAIL;
Dexuan Cui4f689192014-09-25 21:52:04 -0700313 syslog(LOG_ERR, "op=%d failed!", op);
314 syslog(LOG_ERR, "report it with these files:");
315 syslog(LOG_ERR, "/etc/fstab and /proc/mounts");
316 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700317 break;
Alex Ngdb886e42016-09-02 05:58:25 -0700318 case VSS_OP_HOT_BACKUP:
319 syslog(LOG_INFO, "VSS: op=CHECK HOT BACKUP\n");
320 break;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700321 default:
322 syslog(LOG_ERR, "Illegal op:%d\n", op);
323 }
324 vss_msg->error = error;
Dexuan Cuia689d252015-12-14 16:01:58 -0800325 len = write(vss_fd, vss_msg, sizeof(struct hv_vss_msg));
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700326 if (len != sizeof(struct hv_vss_msg)) {
327 syslog(LOG_ERR, "write failed; error: %d %s", errno,
328 strerror(errno));
Alex Ng6113e3d2017-04-30 16:21:14 -0700329
330 if (op == VSS_OP_FREEZE)
331 vss_operate(VSS_OP_THAW);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700332 }
333 }
334
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700335 close(vss_fd);
336 exit(0);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700337}