blob: efe1e34dd91b40c0a117432b38122087e22f76c8 [file] [log] [blame]
Thomas Gleixner43aa3132019-05-29 07:17:54 -07001// SPDX-License-Identifier: GPL-2.0-only
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -07002/*
3 * An implementation of the host initiated guest snapshot for Hyper-V.
4 *
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -07005 * Copyright (C) 2013, Microsoft, Inc.
6 * Author : K. Y. Srinivasan <kys@microsoft.com>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -07007 */
8
9
10#include <sys/types.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070011#include <sys/poll.h>
Olaf Hering7b413b62013-04-24 07:48:52 -070012#include <sys/ioctl.h>
Alex Ngea81fdf2017-08-06 13:12:52 -070013#include <sys/stat.h>
Dexuan Cui1330fc32018-03-04 22:17:14 -070014#include <sys/sysmacros.h>
Olaf Hering7b413b62013-04-24 07:48:52 -070015#include <fcntl.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070016#include <stdio.h>
Olaf Heringd3d1ee32013-04-24 07:48:51 -070017#include <mntent.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070018#include <stdlib.h>
19#include <unistd.h>
20#include <string.h>
21#include <ctype.h>
22#include <errno.h>
Olaf Hering7b413b62013-04-24 07:48:52 -070023#include <linux/fs.h>
Alex Ngea81fdf2017-08-06 13:12:52 -070024#include <linux/major.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070025#include <linux/hyperv.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070026#include <syslog.h>
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +020027#include <getopt.h>
Vitaly Kuznetsov07136792018-06-05 13:37:56 -070028#include <stdbool.h>
29#include <dirent.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070030
Dexuan Cui4f689192014-09-25 21:52:04 -070031/* Don't use syslog() in the function since that can cause write to disk */
32static int vss_do_freeze(char *dir, unsigned int cmd)
Olaf Hering7b413b62013-04-24 07:48:52 -070033{
34 int ret, fd = open(dir, O_RDONLY);
35
36 if (fd < 0)
37 return 1;
Dexuan Cui4f689192014-09-25 21:52:04 -070038
Olaf Hering7b413b62013-04-24 07:48:52 -070039 ret = ioctl(fd, cmd, 0);
Dexuan Cui4f689192014-09-25 21:52:04 -070040
41 /*
42 * If a partition is mounted more than once, only the first
43 * FREEZE/THAW can succeed and the later ones will get
44 * EBUSY/EINVAL respectively: there could be 2 cases:
45 * 1) a user may mount the same partition to differnt directories
46 * by mistake or on purpose;
47 * 2) The subvolume of btrfs appears to have the same partition
48 * mounted more than once.
49 */
50 if (ret) {
51 if ((cmd == FIFREEZE && errno == EBUSY) ||
52 (cmd == FITHAW && errno == EINVAL)) {
53 close(fd);
54 return 0;
55 }
56 }
57
Olaf Hering7b413b62013-04-24 07:48:52 -070058 close(fd);
59 return !!ret;
60}
61
Vitaly Kuznetsov07136792018-06-05 13:37:56 -070062static bool is_dev_loop(const char *blkname)
63{
64 char *buffer;
65 DIR *dir;
66 struct dirent *entry;
67 bool ret = false;
68
69 buffer = malloc(PATH_MAX);
70 if (!buffer) {
71 syslog(LOG_ERR, "Can't allocate memory!");
72 exit(1);
73 }
74
75 snprintf(buffer, PATH_MAX, "%s/loop", blkname);
76 if (!access(buffer, R_OK | X_OK)) {
77 ret = true;
78 goto free_buffer;
79 } else if (errno != ENOENT) {
80 syslog(LOG_ERR, "Can't access: %s; error:%d %s!",
81 buffer, errno, strerror(errno));
82 }
83
84 snprintf(buffer, PATH_MAX, "%s/slaves", blkname);
85 dir = opendir(buffer);
86 if (!dir) {
87 if (errno != ENOENT)
88 syslog(LOG_ERR, "Can't opendir: %s; error:%d %s!",
89 buffer, errno, strerror(errno));
90 goto free_buffer;
91 }
92
93 while ((entry = readdir(dir)) != NULL) {
94 if (strcmp(entry->d_name, ".") == 0 ||
95 strcmp(entry->d_name, "..") == 0)
96 continue;
97
98 snprintf(buffer, PATH_MAX, "%s/slaves/%s", blkname,
99 entry->d_name);
100 if (is_dev_loop(buffer)) {
101 ret = true;
102 break;
103 }
104 }
105 closedir(dir);
106free_buffer:
107 free(buffer);
108 return ret;
109}
110
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700111static int vss_operate(int operation)
112{
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700113 char match[] = "/dev/";
114 FILE *mounts;
115 struct mntent *ent;
Alex Ngea81fdf2017-08-06 13:12:52 -0700116 struct stat sb;
Vaughan Cao4ce50e92015-03-18 12:29:28 -0700117 char errdir[1024] = {0};
Vitaly Kuznetsov07136792018-06-05 13:37:56 -0700118 char blkdir[23]; /* /sys/dev/block/XXX:XXX */
Olaf Hering7b413b62013-04-24 07:48:52 -0700119 unsigned int cmd;
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100120 int error = 0, root_seen = 0, save_errno = 0;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700121
122 switch (operation) {
123 case VSS_OP_FREEZE:
Olaf Hering7b413b62013-04-24 07:48:52 -0700124 cmd = FIFREEZE;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700125 break;
126 case VSS_OP_THAW:
Olaf Hering7b413b62013-04-24 07:48:52 -0700127 cmd = FITHAW;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700128 break;
Olaf Heringeb8905b2013-04-24 07:48:48 -0700129 default:
130 return -1;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700131 }
132
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700133 mounts = setmntent("/proc/mounts", "r");
134 if (mounts == NULL)
Olaf Heringeb8905b2013-04-24 07:48:48 -0700135 return -1;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700136
K. Y. Srinivasan0e272632013-04-24 07:48:54 -0700137 while ((ent = getmntent(mounts))) {
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700138 if (strncmp(ent->mnt_fsname, match, strlen(match)))
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700139 continue;
Vitaly Kuznetsov07136792018-06-05 13:37:56 -0700140 if (stat(ent->mnt_fsname, &sb)) {
141 syslog(LOG_ERR, "Can't stat: %s; error:%d %s!",
142 ent->mnt_fsname, errno, strerror(errno));
143 } else {
144 sprintf(blkdir, "/sys/dev/block/%d:%d",
145 major(sb.st_rdev), minor(sb.st_rdev));
146 if (is_dev_loop(blkdir))
147 continue;
148 }
Vitaly Kuznetsov9e5db052014-11-10 17:37:02 +0100149 if (hasmntopt(ent, MNTOPT_RO) != NULL)
Olaf Hering10b637b2013-04-24 07:48:53 -0700150 continue;
K. Y. Srinivasanf33b2152014-02-12 08:40:22 -0800151 if (strcmp(ent->mnt_type, "vfat") == 0)
152 continue;
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700153 if (strcmp(ent->mnt_dir, "/") == 0) {
154 root_seen = 1;
155 continue;
156 }
Dexuan Cui4f689192014-09-25 21:52:04 -0700157 error |= vss_do_freeze(ent->mnt_dir, cmd);
158 if (error && operation == VSS_OP_FREEZE)
159 goto err;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700160 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700161
Vaughan Cao4ce50e92015-03-18 12:29:28 -0700162 endmntent(mounts);
163
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700164 if (root_seen) {
Dexuan Cui4f689192014-09-25 21:52:04 -0700165 error |= vss_do_freeze("/", cmd);
166 if (error && operation == VSS_OP_FREEZE)
167 goto err;
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700168 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700169
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100170 goto out;
Dexuan Cui4f689192014-09-25 21:52:04 -0700171err:
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100172 save_errno = errno;
Vaughan Cao4ce50e92015-03-18 12:29:28 -0700173 if (ent) {
174 strncpy(errdir, ent->mnt_dir, sizeof(errdir)-1);
175 endmntent(mounts);
176 }
Dexuan Cui4f689192014-09-25 21:52:04 -0700177 vss_operate(VSS_OP_THAW);
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100178 /* Call syslog after we thaw all filesystems */
179 if (ent)
180 syslog(LOG_ERR, "FREEZE of %s failed; error:%d %s",
Vaughan Cao4ce50e92015-03-18 12:29:28 -0700181 errdir, save_errno, strerror(save_errno));
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100182 else
183 syslog(LOG_ERR, "FREEZE of / failed; error:%d %s", save_errno,
184 strerror(save_errno));
185out:
Dexuan Cui4f689192014-09-25 21:52:04 -0700186 return error;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700187}
188
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +0200189void print_usage(char *argv[])
190{
191 fprintf(stderr, "Usage: %s [options]\n"
192 "Options are:\n"
193 " -n, --no-daemon stay in foreground, don't daemonize\n"
194 " -h, --help print this help\n", argv[0]);
195}
196
197int main(int argc, char *argv[])
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700198{
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700199 int vss_fd, len;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700200 int error;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700201 struct pollfd pfd;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700202 int op;
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700203 struct hv_vss_msg vss_msg[1];
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +0200204 int daemonize = 1, long_index = 0, opt;
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700205 int in_handshake = 1;
206 __u32 kernel_modver;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700207
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +0200208 static struct option long_options[] = {
209 {"help", no_argument, 0, 'h' },
210 {"no-daemon", no_argument, 0, 'n' },
211 {0, 0, 0, 0 }
212 };
213
214 while ((opt = getopt_long(argc, argv, "hn", long_options,
215 &long_index)) != -1) {
216 switch (opt) {
217 case 'n':
218 daemonize = 0;
219 break;
220 case 'h':
221 default:
222 print_usage(argv);
223 exit(EXIT_FAILURE);
224 }
225 }
226
227 if (daemonize && daemon(1, 0))
Olaf Heringeb8905b2013-04-24 07:48:48 -0700228 return 1;
229
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700230 openlog("Hyper-V VSS", 0, LOG_USER);
231 syslog(LOG_INFO, "VSS starting; pid is:%d", getpid());
232
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700233 vss_fd = open("/dev/vmbus/hv_vss", O_RDWR);
234 if (vss_fd < 0) {
235 syslog(LOG_ERR, "open /dev/vmbus/hv_vss failed; error: %d %s",
236 errno, strerror(errno));
Tomas Hozzad12e1462013-06-27 13:52:48 +0200237 exit(EXIT_FAILURE);
238 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700239 /*
240 * Register ourselves with the kernel.
241 */
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700242 vss_msg->vss_hdr.operation = VSS_OP_REGISTER1;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700243
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700244 len = write(vss_fd, vss_msg, sizeof(struct hv_vss_msg));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700245 if (len < 0) {
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700246 syslog(LOG_ERR, "registration to kernel failed; error: %d %s",
247 errno, strerror(errno));
248 close(vss_fd);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700249 exit(EXIT_FAILURE);
250 }
251
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700252 pfd.fd = vss_fd;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700253
254 while (1) {
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700255 pfd.events = POLLIN;
256 pfd.revents = 0;
Tomas Hozza9561d472013-06-27 13:52:49 +0200257
258 if (poll(&pfd, 1, -1) < 0) {
259 syslog(LOG_ERR, "poll failed; error:%d %s", errno, strerror(errno));
260 if (errno == EINVAL) {
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700261 close(vss_fd);
Tomas Hozza9561d472013-06-27 13:52:49 +0200262 exit(EXIT_FAILURE);
263 }
264 else
265 continue;
266 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700267
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700268 len = read(vss_fd, vss_msg, sizeof(struct hv_vss_msg));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700269
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700270 if (in_handshake) {
271 if (len != sizeof(kernel_modver)) {
272 syslog(LOG_ERR, "invalid version negotiation");
273 exit(EXIT_FAILURE);
274 }
275 kernel_modver = *(__u32 *)vss_msg;
276 in_handshake = 0;
277 syslog(LOG_INFO, "VSS: kernel module version: %d",
278 kernel_modver);
279 continue;
280 }
281
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700282 if (len != sizeof(struct hv_vss_msg)) {
283 syslog(LOG_ERR, "read failed; error:%d %s",
284 errno, strerror(errno));
285 close(vss_fd);
286 return EXIT_FAILURE;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700287 }
288
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700289 op = vss_msg->vss_hdr.operation;
290 error = HV_S_OK;
291
292 switch (op) {
293 case VSS_OP_FREEZE:
294 case VSS_OP_THAW:
295 error = vss_operate(op);
Dexuan Cui4f689192014-09-25 21:52:04 -0700296 syslog(LOG_INFO, "VSS: op=%s: %s\n",
297 op == VSS_OP_FREEZE ? "FREEZE" : "THAW",
298 error ? "failed" : "succeeded");
299
300 if (error) {
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700301 error = HV_E_FAIL;
Dexuan Cui4f689192014-09-25 21:52:04 -0700302 syslog(LOG_ERR, "op=%d failed!", op);
303 syslog(LOG_ERR, "report it with these files:");
304 syslog(LOG_ERR, "/etc/fstab and /proc/mounts");
305 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700306 break;
Alex Ngdb886e42016-09-02 05:58:25 -0700307 case VSS_OP_HOT_BACKUP:
308 syslog(LOG_INFO, "VSS: op=CHECK HOT BACKUP\n");
309 break;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700310 default:
311 syslog(LOG_ERR, "Illegal op:%d\n", op);
312 }
313 vss_msg->error = error;
Dexuan Cuia689d252015-12-14 16:01:58 -0800314 len = write(vss_fd, vss_msg, sizeof(struct hv_vss_msg));
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700315 if (len != sizeof(struct hv_vss_msg)) {
316 syslog(LOG_ERR, "write failed; error: %d %s", errno,
317 strerror(errno));
Alex Ng6113e3d2017-04-30 16:21:14 -0700318
319 if (op == VSS_OP_FREEZE)
320 vss_operate(VSS_OP_THAW);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700321 }
322 }
323
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700324 close(vss_fd);
325 exit(0);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700326}