blob: b2b4ebffab8ca491cb31f47c52c2e8406a546328 [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>
Olaf Hering7b413b62013-04-24 07:48:52 -070025#include <fcntl.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070026#include <stdio.h>
Olaf Heringd3d1ee32013-04-24 07:48:51 -070027#include <mntent.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070028#include <stdlib.h>
29#include <unistd.h>
30#include <string.h>
31#include <ctype.h>
32#include <errno.h>
Olaf Hering7b413b62013-04-24 07:48:52 -070033#include <linux/fs.h>
Alex Ngea81fdf2017-08-06 13:12:52 -070034#include <linux/major.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070035#include <linux/hyperv.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070036#include <syslog.h>
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +020037#include <getopt.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070038
Dexuan Cui4f689192014-09-25 21:52:04 -070039/* Don't use syslog() in the function since that can cause write to disk */
40static int vss_do_freeze(char *dir, unsigned int cmd)
Olaf Hering7b413b62013-04-24 07:48:52 -070041{
42 int ret, fd = open(dir, O_RDONLY);
43
44 if (fd < 0)
45 return 1;
Dexuan Cui4f689192014-09-25 21:52:04 -070046
Olaf Hering7b413b62013-04-24 07:48:52 -070047 ret = ioctl(fd, cmd, 0);
Dexuan Cui4f689192014-09-25 21:52:04 -070048
49 /*
50 * If a partition is mounted more than once, only the first
51 * FREEZE/THAW can succeed and the later ones will get
52 * EBUSY/EINVAL respectively: there could be 2 cases:
53 * 1) a user may mount the same partition to differnt directories
54 * by mistake or on purpose;
55 * 2) The subvolume of btrfs appears to have the same partition
56 * mounted more than once.
57 */
58 if (ret) {
59 if ((cmd == FIFREEZE && errno == EBUSY) ||
60 (cmd == FITHAW && errno == EINVAL)) {
61 close(fd);
62 return 0;
63 }
64 }
65
Olaf Hering7b413b62013-04-24 07:48:52 -070066 close(fd);
67 return !!ret;
68}
69
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070070static int vss_operate(int operation)
71{
Olaf Heringd3d1ee32013-04-24 07:48:51 -070072 char match[] = "/dev/";
73 FILE *mounts;
74 struct mntent *ent;
Alex Ngea81fdf2017-08-06 13:12:52 -070075 struct stat sb;
Vaughan Cao4ce50e92015-03-18 12:29:28 -070076 char errdir[1024] = {0};
Olaf Hering7b413b62013-04-24 07:48:52 -070077 unsigned int cmd;
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +010078 int error = 0, root_seen = 0, save_errno = 0;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070079
80 switch (operation) {
81 case VSS_OP_FREEZE:
Olaf Hering7b413b62013-04-24 07:48:52 -070082 cmd = FIFREEZE;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070083 break;
84 case VSS_OP_THAW:
Olaf Hering7b413b62013-04-24 07:48:52 -070085 cmd = FITHAW;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070086 break;
Olaf Heringeb8905b2013-04-24 07:48:48 -070087 default:
88 return -1;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070089 }
90
Olaf Heringd3d1ee32013-04-24 07:48:51 -070091 mounts = setmntent("/proc/mounts", "r");
92 if (mounts == NULL)
Olaf Heringeb8905b2013-04-24 07:48:48 -070093 return -1;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070094
K. Y. Srinivasan0e272632013-04-24 07:48:54 -070095 while ((ent = getmntent(mounts))) {
Olaf Heringd3d1ee32013-04-24 07:48:51 -070096 if (strncmp(ent->mnt_fsname, match, strlen(match)))
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070097 continue;
Alex Ngea81fdf2017-08-06 13:12:52 -070098 if (stat(ent->mnt_fsname, &sb) == -1)
99 continue;
100 if (S_ISBLK(sb.st_mode) && major(sb.st_rdev) == LOOP_MAJOR)
101 continue;
Vitaly Kuznetsov9e5db052014-11-10 17:37:02 +0100102 if (hasmntopt(ent, MNTOPT_RO) != NULL)
Olaf Hering10b637b2013-04-24 07:48:53 -0700103 continue;
K. Y. Srinivasanf33b2152014-02-12 08:40:22 -0800104 if (strcmp(ent->mnt_type, "vfat") == 0)
105 continue;
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700106 if (strcmp(ent->mnt_dir, "/") == 0) {
107 root_seen = 1;
108 continue;
109 }
Dexuan Cui4f689192014-09-25 21:52:04 -0700110 error |= vss_do_freeze(ent->mnt_dir, cmd);
111 if (error && operation == VSS_OP_FREEZE)
112 goto err;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700113 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700114
Vaughan Cao4ce50e92015-03-18 12:29:28 -0700115 endmntent(mounts);
116
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700117 if (root_seen) {
Dexuan Cui4f689192014-09-25 21:52:04 -0700118 error |= vss_do_freeze("/", cmd);
119 if (error && operation == VSS_OP_FREEZE)
120 goto err;
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700121 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700122
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100123 goto out;
Dexuan Cui4f689192014-09-25 21:52:04 -0700124err:
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100125 save_errno = errno;
Vaughan Cao4ce50e92015-03-18 12:29:28 -0700126 if (ent) {
127 strncpy(errdir, ent->mnt_dir, sizeof(errdir)-1);
128 endmntent(mounts);
129 }
Dexuan Cui4f689192014-09-25 21:52:04 -0700130 vss_operate(VSS_OP_THAW);
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100131 /* Call syslog after we thaw all filesystems */
132 if (ent)
133 syslog(LOG_ERR, "FREEZE of %s failed; error:%d %s",
Vaughan Cao4ce50e92015-03-18 12:29:28 -0700134 errdir, save_errno, strerror(save_errno));
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100135 else
136 syslog(LOG_ERR, "FREEZE of / failed; error:%d %s", save_errno,
137 strerror(save_errno));
138out:
Dexuan Cui4f689192014-09-25 21:52:04 -0700139 return error;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700140}
141
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +0200142void print_usage(char *argv[])
143{
144 fprintf(stderr, "Usage: %s [options]\n"
145 "Options are:\n"
146 " -n, --no-daemon stay in foreground, don't daemonize\n"
147 " -h, --help print this help\n", argv[0]);
148}
149
150int main(int argc, char *argv[])
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700151{
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700152 int vss_fd, len;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700153 int error;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700154 struct pollfd pfd;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700155 int op;
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700156 struct hv_vss_msg vss_msg[1];
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +0200157 int daemonize = 1, long_index = 0, opt;
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700158 int in_handshake = 1;
159 __u32 kernel_modver;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700160
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +0200161 static struct option long_options[] = {
162 {"help", no_argument, 0, 'h' },
163 {"no-daemon", no_argument, 0, 'n' },
164 {0, 0, 0, 0 }
165 };
166
167 while ((opt = getopt_long(argc, argv, "hn", long_options,
168 &long_index)) != -1) {
169 switch (opt) {
170 case 'n':
171 daemonize = 0;
172 break;
173 case 'h':
174 default:
175 print_usage(argv);
176 exit(EXIT_FAILURE);
177 }
178 }
179
180 if (daemonize && daemon(1, 0))
Olaf Heringeb8905b2013-04-24 07:48:48 -0700181 return 1;
182
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700183 openlog("Hyper-V VSS", 0, LOG_USER);
184 syslog(LOG_INFO, "VSS starting; pid is:%d", getpid());
185
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700186 vss_fd = open("/dev/vmbus/hv_vss", O_RDWR);
187 if (vss_fd < 0) {
188 syslog(LOG_ERR, "open /dev/vmbus/hv_vss failed; error: %d %s",
189 errno, strerror(errno));
Tomas Hozzad12e1462013-06-27 13:52:48 +0200190 exit(EXIT_FAILURE);
191 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700192 /*
193 * Register ourselves with the kernel.
194 */
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700195 vss_msg->vss_hdr.operation = VSS_OP_REGISTER1;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700196
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700197 len = write(vss_fd, vss_msg, sizeof(struct hv_vss_msg));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700198 if (len < 0) {
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700199 syslog(LOG_ERR, "registration to kernel failed; error: %d %s",
200 errno, strerror(errno));
201 close(vss_fd);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700202 exit(EXIT_FAILURE);
203 }
204
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700205 pfd.fd = vss_fd;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700206
207 while (1) {
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700208 pfd.events = POLLIN;
209 pfd.revents = 0;
Tomas Hozza9561d472013-06-27 13:52:49 +0200210
211 if (poll(&pfd, 1, -1) < 0) {
212 syslog(LOG_ERR, "poll failed; error:%d %s", errno, strerror(errno));
213 if (errno == EINVAL) {
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700214 close(vss_fd);
Tomas Hozza9561d472013-06-27 13:52:49 +0200215 exit(EXIT_FAILURE);
216 }
217 else
218 continue;
219 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700220
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700221 len = read(vss_fd, vss_msg, sizeof(struct hv_vss_msg));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700222
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700223 if (in_handshake) {
224 if (len != sizeof(kernel_modver)) {
225 syslog(LOG_ERR, "invalid version negotiation");
226 exit(EXIT_FAILURE);
227 }
228 kernel_modver = *(__u32 *)vss_msg;
229 in_handshake = 0;
230 syslog(LOG_INFO, "VSS: kernel module version: %d",
231 kernel_modver);
232 continue;
233 }
234
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700235 if (len != sizeof(struct hv_vss_msg)) {
236 syslog(LOG_ERR, "read failed; error:%d %s",
237 errno, strerror(errno));
238 close(vss_fd);
239 return EXIT_FAILURE;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700240 }
241
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700242 op = vss_msg->vss_hdr.operation;
243 error = HV_S_OK;
244
245 switch (op) {
246 case VSS_OP_FREEZE:
247 case VSS_OP_THAW:
248 error = vss_operate(op);
Dexuan Cui4f689192014-09-25 21:52:04 -0700249 syslog(LOG_INFO, "VSS: op=%s: %s\n",
250 op == VSS_OP_FREEZE ? "FREEZE" : "THAW",
251 error ? "failed" : "succeeded");
252
253 if (error) {
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700254 error = HV_E_FAIL;
Dexuan Cui4f689192014-09-25 21:52:04 -0700255 syslog(LOG_ERR, "op=%d failed!", op);
256 syslog(LOG_ERR, "report it with these files:");
257 syslog(LOG_ERR, "/etc/fstab and /proc/mounts");
258 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700259 break;
Alex Ngdb886e42016-09-02 05:58:25 -0700260 case VSS_OP_HOT_BACKUP:
261 syslog(LOG_INFO, "VSS: op=CHECK HOT BACKUP\n");
262 break;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700263 default:
264 syslog(LOG_ERR, "Illegal op:%d\n", op);
265 }
266 vss_msg->error = error;
Dexuan Cuia689d252015-12-14 16:01:58 -0800267 len = write(vss_fd, vss_msg, sizeof(struct hv_vss_msg));
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700268 if (len != sizeof(struct hv_vss_msg)) {
269 syslog(LOG_ERR, "write failed; error: %d %s", errno,
270 strerror(errno));
Alex Ng6113e3d2017-04-30 16:21:14 -0700271
272 if (op == VSS_OP_FREEZE)
273 vss_operate(VSS_OP_THAW);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700274 }
275 }
276
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700277 close(vss_fd);
278 exit(0);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700279}