1 // SPDX-License-Identifier: GPL-2.0-only
3 * An implementation of the host initiated guest snapshot for Hyper-V.
5 * Copyright (C) 2013, Microsoft, Inc.
6 * Author : K. Y. Srinivasan <kys@microsoft.com>
10 #include <sys/types.h>
12 #include <sys/ioctl.h>
14 #include <sys/sysmacros.h>
24 #include <linux/major.h>
25 #include <linux/hyperv.h>
31 static bool fs_frozen;
33 /* Don't use syslog() in the function since that can cause write to disk */
34 static int vss_do_freeze(char *dir, unsigned int cmd)
36 int ret, fd = open(dir, O_RDONLY);
41 ret = ioctl(fd, cmd, 0);
44 * If a partition is mounted more than once, only the first
45 * FREEZE/THAW can succeed and the later ones will get
46 * EBUSY/EINVAL respectively: there could be 2 cases:
47 * 1) a user may mount the same partition to different directories
48 * by mistake or on purpose;
49 * 2) The subvolume of btrfs appears to have the same partition
50 * mounted more than once.
53 if ((cmd == FIFREEZE && errno == EBUSY) ||
54 (cmd == FITHAW && errno == EINVAL)) {
64 static bool is_dev_loop(const char *blkname)
71 buffer = malloc(PATH_MAX);
73 syslog(LOG_ERR, "Can't allocate memory!");
77 snprintf(buffer, PATH_MAX, "%s/loop", blkname);
78 if (!access(buffer, R_OK | X_OK)) {
81 } else if (errno != ENOENT) {
82 syslog(LOG_ERR, "Can't access: %s; error:%d %s!",
83 buffer, errno, strerror(errno));
86 snprintf(buffer, PATH_MAX, "%s/slaves", blkname);
87 dir = opendir(buffer);
90 syslog(LOG_ERR, "Can't opendir: %s; error:%d %s!",
91 buffer, errno, strerror(errno));
95 while ((entry = readdir(dir)) != NULL) {
96 if (strcmp(entry->d_name, ".") == 0 ||
97 strcmp(entry->d_name, "..") == 0)
100 snprintf(buffer, PATH_MAX, "%s/slaves/%s", blkname,
102 if (is_dev_loop(buffer)) {
113 static int vss_operate(int operation)
115 char match[] = "/dev/";
119 char errdir[1024] = {0};
120 char blkdir[23]; /* /sys/dev/block/XXX:XXX */
122 int error = 0, root_seen = 0, save_errno = 0;
135 mounts = setmntent("/proc/mounts", "r");
139 while ((ent = getmntent(mounts))) {
140 if (strncmp(ent->mnt_fsname, match, strlen(match)))
142 if (stat(ent->mnt_fsname, &sb)) {
143 syslog(LOG_ERR, "Can't stat: %s; error:%d %s!",
144 ent->mnt_fsname, errno, strerror(errno));
146 sprintf(blkdir, "/sys/dev/block/%d:%d",
147 major(sb.st_rdev), minor(sb.st_rdev));
148 if (is_dev_loop(blkdir))
151 if (hasmntopt(ent, MNTOPT_RO) != NULL)
153 if (strcmp(ent->mnt_type, "vfat") == 0)
155 if (strcmp(ent->mnt_dir, "/") == 0) {
159 error |= vss_do_freeze(ent->mnt_dir, cmd);
160 if (operation == VSS_OP_FREEZE) {
170 error |= vss_do_freeze("/", cmd);
171 if (operation == VSS_OP_FREEZE) {
178 if (operation == VSS_OP_THAW && !error)
185 strncpy(errdir, ent->mnt_dir, sizeof(errdir)-1);
188 vss_operate(VSS_OP_THAW);
190 /* Call syslog after we thaw all filesystems */
192 syslog(LOG_ERR, "FREEZE of %s failed; error:%d %s",
193 errdir, save_errno, strerror(save_errno));
195 syslog(LOG_ERR, "FREEZE of / failed; error:%d %s", save_errno,
196 strerror(save_errno));
201 void print_usage(char *argv[])
203 fprintf(stderr, "Usage: %s [options]\n"
205 " -n, --no-daemon stay in foreground, don't daemonize\n"
206 " -h, --help print this help\n", argv[0]);
209 int main(int argc, char *argv[])
211 int vss_fd = -1, len;
215 struct hv_vss_msg vss_msg[1];
216 int daemonize = 1, long_index = 0, opt;
220 static struct option long_options[] = {
221 {"help", no_argument, 0, 'h' },
222 {"no-daemon", no_argument, 0, 'n' },
226 while ((opt = getopt_long(argc, argv, "hn", long_options,
227 &long_index)) != -1) {
241 if (daemonize && daemon(1, 0))
244 openlog("Hyper-V VSS", 0, LOG_USER);
245 syslog(LOG_INFO, "VSS starting; pid is:%d", getpid());
251 if (vss_operate(VSS_OP_THAW) || fs_frozen) {
252 syslog(LOG_ERR, "failed to thaw file system: err=%d",
259 vss_fd = open("/dev/vmbus/hv_vss", O_RDWR);
261 syslog(LOG_ERR, "open /dev/vmbus/hv_vss failed; error: %d %s",
262 errno, strerror(errno));
266 * Register ourselves with the kernel.
268 vss_msg->vss_hdr.operation = VSS_OP_REGISTER1;
270 len = write(vss_fd, vss_msg, sizeof(struct hv_vss_msg));
272 syslog(LOG_ERR, "registration to kernel failed; error: %d %s",
273 errno, strerror(errno));
284 if (poll(&pfd, 1, -1) < 0) {
285 syslog(LOG_ERR, "poll failed; error:%d %s", errno, strerror(errno));
286 if (errno == EINVAL) {
294 len = read(vss_fd, vss_msg, sizeof(struct hv_vss_msg));
297 if (len != sizeof(kernel_modver)) {
298 syslog(LOG_ERR, "invalid version negotiation");
301 kernel_modver = *(__u32 *)vss_msg;
303 syslog(LOG_INFO, "VSS: kernel module version: %d",
308 if (len != sizeof(struct hv_vss_msg)) {
309 syslog(LOG_ERR, "read failed; error:%d %s",
310 errno, strerror(errno));
314 op = vss_msg->vss_hdr.operation;
320 error = vss_operate(op);
321 syslog(LOG_INFO, "VSS: op=%s: %s\n",
322 op == VSS_OP_FREEZE ? "FREEZE" : "THAW",
323 error ? "failed" : "succeeded");
327 syslog(LOG_ERR, "op=%d failed!", op);
328 syslog(LOG_ERR, "report it with these files:");
329 syslog(LOG_ERR, "/etc/fstab and /proc/mounts");
332 case VSS_OP_HOT_BACKUP:
333 syslog(LOG_INFO, "VSS: op=CHECK HOT BACKUP\n");
336 syslog(LOG_ERR, "Illegal op:%d\n", op);
340 * The write() may return an error due to the faked VSS_OP_THAW
341 * message upon hibernation. Ignore the error by resetting the
342 * dev file, i.e. closing and re-opening it.
344 vss_msg->error = error;
345 len = write(vss_fd, vss_msg, sizeof(struct hv_vss_msg));
346 if (len != sizeof(struct hv_vss_msg)) {
347 syslog(LOG_ERR, "write failed; error: %d %s", errno,