blob: 34031a297f0246116d7cff92e6226a8900e4c4a8 [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>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070039
Dexuan Cui4f689192014-09-25 21:52:04 -070040/* Don't use syslog() in the function since that can cause write to disk */
41static int vss_do_freeze(char *dir, unsigned int cmd)
Olaf Hering7b413b62013-04-24 07:48:52 -070042{
43 int ret, fd = open(dir, O_RDONLY);
44
45 if (fd < 0)
46 return 1;
Dexuan Cui4f689192014-09-25 21:52:04 -070047
Olaf Hering7b413b62013-04-24 07:48:52 -070048 ret = ioctl(fd, cmd, 0);
Dexuan Cui4f689192014-09-25 21:52:04 -070049
50 /*
51 * If a partition is mounted more than once, only the first
52 * FREEZE/THAW can succeed and the later ones will get
53 * EBUSY/EINVAL respectively: there could be 2 cases:
54 * 1) a user may mount the same partition to differnt directories
55 * by mistake or on purpose;
56 * 2) The subvolume of btrfs appears to have the same partition
57 * mounted more than once.
58 */
59 if (ret) {
60 if ((cmd == FIFREEZE && errno == EBUSY) ||
61 (cmd == FITHAW && errno == EINVAL)) {
62 close(fd);
63 return 0;
64 }
65 }
66
Olaf Hering7b413b62013-04-24 07:48:52 -070067 close(fd);
68 return !!ret;
69}
70
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070071static int vss_operate(int operation)
72{
Olaf Heringd3d1ee32013-04-24 07:48:51 -070073 char match[] = "/dev/";
74 FILE *mounts;
75 struct mntent *ent;
Alex Ngea81fdf2017-08-06 13:12:52 -070076 struct stat sb;
Vaughan Cao4ce50e92015-03-18 12:29:28 -070077 char errdir[1024] = {0};
Olaf Hering7b413b62013-04-24 07:48:52 -070078 unsigned int cmd;
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +010079 int error = 0, root_seen = 0, save_errno = 0;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070080
81 switch (operation) {
82 case VSS_OP_FREEZE:
Olaf Hering7b413b62013-04-24 07:48:52 -070083 cmd = FIFREEZE;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070084 break;
85 case VSS_OP_THAW:
Olaf Hering7b413b62013-04-24 07:48:52 -070086 cmd = FITHAW;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070087 break;
Olaf Heringeb8905b2013-04-24 07:48:48 -070088 default:
89 return -1;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070090 }
91
Olaf Heringd3d1ee32013-04-24 07:48:51 -070092 mounts = setmntent("/proc/mounts", "r");
93 if (mounts == NULL)
Olaf Heringeb8905b2013-04-24 07:48:48 -070094 return -1;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070095
K. Y. Srinivasan0e272632013-04-24 07:48:54 -070096 while ((ent = getmntent(mounts))) {
Olaf Heringd3d1ee32013-04-24 07:48:51 -070097 if (strncmp(ent->mnt_fsname, match, strlen(match)))
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070098 continue;
Alex Ngea81fdf2017-08-06 13:12:52 -070099 if (stat(ent->mnt_fsname, &sb) == -1)
100 continue;
101 if (S_ISBLK(sb.st_mode) && major(sb.st_rdev) == LOOP_MAJOR)
102 continue;
Vitaly Kuznetsov9e5db052014-11-10 17:37:02 +0100103 if (hasmntopt(ent, MNTOPT_RO) != NULL)
Olaf Hering10b637b2013-04-24 07:48:53 -0700104 continue;
K. Y. Srinivasanf33b2152014-02-12 08:40:22 -0800105 if (strcmp(ent->mnt_type, "vfat") == 0)
106 continue;
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700107 if (strcmp(ent->mnt_dir, "/") == 0) {
108 root_seen = 1;
109 continue;
110 }
Dexuan Cui4f689192014-09-25 21:52:04 -0700111 error |= vss_do_freeze(ent->mnt_dir, cmd);
112 if (error && operation == VSS_OP_FREEZE)
113 goto err;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700114 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700115
Vaughan Cao4ce50e92015-03-18 12:29:28 -0700116 endmntent(mounts);
117
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700118 if (root_seen) {
Dexuan Cui4f689192014-09-25 21:52:04 -0700119 error |= vss_do_freeze("/", cmd);
120 if (error && operation == VSS_OP_FREEZE)
121 goto err;
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700122 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700123
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100124 goto out;
Dexuan Cui4f689192014-09-25 21:52:04 -0700125err:
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100126 save_errno = errno;
Vaughan Cao4ce50e92015-03-18 12:29:28 -0700127 if (ent) {
128 strncpy(errdir, ent->mnt_dir, sizeof(errdir)-1);
129 endmntent(mounts);
130 }
Dexuan Cui4f689192014-09-25 21:52:04 -0700131 vss_operate(VSS_OP_THAW);
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100132 /* Call syslog after we thaw all filesystems */
133 if (ent)
134 syslog(LOG_ERR, "FREEZE of %s failed; error:%d %s",
Vaughan Cao4ce50e92015-03-18 12:29:28 -0700135 errdir, save_errno, strerror(save_errno));
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100136 else
137 syslog(LOG_ERR, "FREEZE of / failed; error:%d %s", save_errno,
138 strerror(save_errno));
139out:
Dexuan Cui4f689192014-09-25 21:52:04 -0700140 return error;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700141}
142
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +0200143void print_usage(char *argv[])
144{
145 fprintf(stderr, "Usage: %s [options]\n"
146 "Options are:\n"
147 " -n, --no-daemon stay in foreground, don't daemonize\n"
148 " -h, --help print this help\n", argv[0]);
149}
150
151int main(int argc, char *argv[])
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700152{
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700153 int vss_fd, len;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700154 int error;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700155 struct pollfd pfd;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700156 int op;
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700157 struct hv_vss_msg vss_msg[1];
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +0200158 int daemonize = 1, long_index = 0, opt;
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700159 int in_handshake = 1;
160 __u32 kernel_modver;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700161
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +0200162 static struct option long_options[] = {
163 {"help", no_argument, 0, 'h' },
164 {"no-daemon", no_argument, 0, 'n' },
165 {0, 0, 0, 0 }
166 };
167
168 while ((opt = getopt_long(argc, argv, "hn", long_options,
169 &long_index)) != -1) {
170 switch (opt) {
171 case 'n':
172 daemonize = 0;
173 break;
174 case 'h':
175 default:
176 print_usage(argv);
177 exit(EXIT_FAILURE);
178 }
179 }
180
181 if (daemonize && daemon(1, 0))
Olaf Heringeb8905b2013-04-24 07:48:48 -0700182 return 1;
183
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700184 openlog("Hyper-V VSS", 0, LOG_USER);
185 syslog(LOG_INFO, "VSS starting; pid is:%d", getpid());
186
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700187 vss_fd = open("/dev/vmbus/hv_vss", O_RDWR);
188 if (vss_fd < 0) {
189 syslog(LOG_ERR, "open /dev/vmbus/hv_vss failed; error: %d %s",
190 errno, strerror(errno));
Tomas Hozzad12e1462013-06-27 13:52:48 +0200191 exit(EXIT_FAILURE);
192 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700193 /*
194 * Register ourselves with the kernel.
195 */
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700196 vss_msg->vss_hdr.operation = VSS_OP_REGISTER1;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700197
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700198 len = write(vss_fd, vss_msg, sizeof(struct hv_vss_msg));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700199 if (len < 0) {
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700200 syslog(LOG_ERR, "registration to kernel failed; error: %d %s",
201 errno, strerror(errno));
202 close(vss_fd);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700203 exit(EXIT_FAILURE);
204 }
205
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700206 pfd.fd = vss_fd;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700207
208 while (1) {
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700209 pfd.events = POLLIN;
210 pfd.revents = 0;
Tomas Hozza9561d472013-06-27 13:52:49 +0200211
212 if (poll(&pfd, 1, -1) < 0) {
213 syslog(LOG_ERR, "poll failed; error:%d %s", errno, strerror(errno));
214 if (errno == EINVAL) {
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700215 close(vss_fd);
Tomas Hozza9561d472013-06-27 13:52:49 +0200216 exit(EXIT_FAILURE);
217 }
218 else
219 continue;
220 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700221
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700222 len = read(vss_fd, vss_msg, sizeof(struct hv_vss_msg));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700223
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700224 if (in_handshake) {
225 if (len != sizeof(kernel_modver)) {
226 syslog(LOG_ERR, "invalid version negotiation");
227 exit(EXIT_FAILURE);
228 }
229 kernel_modver = *(__u32 *)vss_msg;
230 in_handshake = 0;
231 syslog(LOG_INFO, "VSS: kernel module version: %d",
232 kernel_modver);
233 continue;
234 }
235
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700236 if (len != sizeof(struct hv_vss_msg)) {
237 syslog(LOG_ERR, "read failed; error:%d %s",
238 errno, strerror(errno));
239 close(vss_fd);
240 return EXIT_FAILURE;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700241 }
242
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700243 op = vss_msg->vss_hdr.operation;
244 error = HV_S_OK;
245
246 switch (op) {
247 case VSS_OP_FREEZE:
248 case VSS_OP_THAW:
249 error = vss_operate(op);
Dexuan Cui4f689192014-09-25 21:52:04 -0700250 syslog(LOG_INFO, "VSS: op=%s: %s\n",
251 op == VSS_OP_FREEZE ? "FREEZE" : "THAW",
252 error ? "failed" : "succeeded");
253
254 if (error) {
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700255 error = HV_E_FAIL;
Dexuan Cui4f689192014-09-25 21:52:04 -0700256 syslog(LOG_ERR, "op=%d failed!", op);
257 syslog(LOG_ERR, "report it with these files:");
258 syslog(LOG_ERR, "/etc/fstab and /proc/mounts");
259 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700260 break;
Alex Ngdb886e42016-09-02 05:58:25 -0700261 case VSS_OP_HOT_BACKUP:
262 syslog(LOG_INFO, "VSS: op=CHECK HOT BACKUP\n");
263 break;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700264 default:
265 syslog(LOG_ERR, "Illegal op:%d\n", op);
266 }
267 vss_msg->error = error;
Dexuan Cuia689d252015-12-14 16:01:58 -0800268 len = write(vss_fd, vss_msg, sizeof(struct hv_vss_msg));
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700269 if (len != sizeof(struct hv_vss_msg)) {
270 syslog(LOG_ERR, "write failed; error: %d %s", errno,
271 strerror(errno));
Alex Ng6113e3d2017-04-30 16:21:14 -0700272
273 if (op == VSS_OP_FREEZE)
274 vss_operate(VSS_OP_THAW);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700275 }
276 }
277
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700278 close(vss_fd);
279 exit(0);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700280}