blob: bdc1891e0a9a36e0e331c860a2e0519602bc9ac9 [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>
Olaf Hering7b413b62013-04-24 07:48:52 -070024#include <fcntl.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070025#include <stdio.h>
Olaf Heringd3d1ee32013-04-24 07:48:51 -070026#include <mntent.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070027#include <stdlib.h>
28#include <unistd.h>
29#include <string.h>
30#include <ctype.h>
31#include <errno.h>
Olaf Hering7b413b62013-04-24 07:48:52 -070032#include <linux/fs.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070033#include <linux/hyperv.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070034#include <syslog.h>
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +020035#include <getopt.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070036
Dexuan Cui4f689192014-09-25 21:52:04 -070037/* Don't use syslog() in the function since that can cause write to disk */
38static int vss_do_freeze(char *dir, unsigned int cmd)
Olaf Hering7b413b62013-04-24 07:48:52 -070039{
40 int ret, fd = open(dir, O_RDONLY);
41
42 if (fd < 0)
43 return 1;
Dexuan Cui4f689192014-09-25 21:52:04 -070044
Olaf Hering7b413b62013-04-24 07:48:52 -070045 ret = ioctl(fd, cmd, 0);
Dexuan Cui4f689192014-09-25 21:52:04 -070046
47 /*
48 * If a partition is mounted more than once, only the first
49 * FREEZE/THAW can succeed and the later ones will get
50 * EBUSY/EINVAL respectively: there could be 2 cases:
51 * 1) a user may mount the same partition to differnt directories
52 * by mistake or on purpose;
53 * 2) The subvolume of btrfs appears to have the same partition
54 * mounted more than once.
55 */
56 if (ret) {
57 if ((cmd == FIFREEZE && errno == EBUSY) ||
58 (cmd == FITHAW && errno == EINVAL)) {
59 close(fd);
60 return 0;
61 }
62 }
63
Olaf Hering7b413b62013-04-24 07:48:52 -070064 close(fd);
65 return !!ret;
66}
67
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070068static int vss_operate(int operation)
69{
Olaf Heringd3d1ee32013-04-24 07:48:51 -070070 char match[] = "/dev/";
71 FILE *mounts;
72 struct mntent *ent;
Vaughan Cao4ce50e92015-03-18 12:29:28 -070073 char errdir[1024] = {0};
Olaf Hering7b413b62013-04-24 07:48:52 -070074 unsigned int cmd;
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +010075 int error = 0, root_seen = 0, save_errno = 0;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070076
77 switch (operation) {
78 case VSS_OP_FREEZE:
Olaf Hering7b413b62013-04-24 07:48:52 -070079 cmd = FIFREEZE;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070080 break;
81 case VSS_OP_THAW:
Olaf Hering7b413b62013-04-24 07:48:52 -070082 cmd = FITHAW;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070083 break;
Olaf Heringeb8905b2013-04-24 07:48:48 -070084 default:
85 return -1;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070086 }
87
Olaf Heringd3d1ee32013-04-24 07:48:51 -070088 mounts = setmntent("/proc/mounts", "r");
89 if (mounts == NULL)
Olaf Heringeb8905b2013-04-24 07:48:48 -070090 return -1;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070091
K. Y. Srinivasan0e272632013-04-24 07:48:54 -070092 while ((ent = getmntent(mounts))) {
Olaf Heringd3d1ee32013-04-24 07:48:51 -070093 if (strncmp(ent->mnt_fsname, match, strlen(match)))
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070094 continue;
Vitaly Kuznetsov9e5db052014-11-10 17:37:02 +010095 if (hasmntopt(ent, MNTOPT_RO) != NULL)
Olaf Hering10b637b2013-04-24 07:48:53 -070096 continue;
K. Y. Srinivasanf33b2152014-02-12 08:40:22 -080097 if (strcmp(ent->mnt_type, "vfat") == 0)
98 continue;
Olaf Heringd3d1ee32013-04-24 07:48:51 -070099 if (strcmp(ent->mnt_dir, "/") == 0) {
100 root_seen = 1;
101 continue;
102 }
Dexuan Cui4f689192014-09-25 21:52:04 -0700103 error |= vss_do_freeze(ent->mnt_dir, cmd);
104 if (error && operation == VSS_OP_FREEZE)
105 goto err;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700106 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700107
Vaughan Cao4ce50e92015-03-18 12:29:28 -0700108 endmntent(mounts);
109
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700110 if (root_seen) {
Dexuan Cui4f689192014-09-25 21:52:04 -0700111 error |= vss_do_freeze("/", cmd);
112 if (error && operation == VSS_OP_FREEZE)
113 goto err;
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700114 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700115
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100116 goto out;
Dexuan Cui4f689192014-09-25 21:52:04 -0700117err:
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100118 save_errno = errno;
Vaughan Cao4ce50e92015-03-18 12:29:28 -0700119 if (ent) {
120 strncpy(errdir, ent->mnt_dir, sizeof(errdir)-1);
121 endmntent(mounts);
122 }
Dexuan Cui4f689192014-09-25 21:52:04 -0700123 vss_operate(VSS_OP_THAW);
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100124 /* Call syslog after we thaw all filesystems */
125 if (ent)
126 syslog(LOG_ERR, "FREEZE of %s failed; error:%d %s",
Vaughan Cao4ce50e92015-03-18 12:29:28 -0700127 errdir, save_errno, strerror(save_errno));
Vitaly Kuznetsov7a401742014-11-10 17:37:01 +0100128 else
129 syslog(LOG_ERR, "FREEZE of / failed; error:%d %s", save_errno,
130 strerror(save_errno));
131out:
Dexuan Cui4f689192014-09-25 21:52:04 -0700132 return error;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700133}
134
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +0200135void print_usage(char *argv[])
136{
137 fprintf(stderr, "Usage: %s [options]\n"
138 "Options are:\n"
139 " -n, --no-daemon stay in foreground, don't daemonize\n"
140 " -h, --help print this help\n", argv[0]);
141}
142
143int main(int argc, char *argv[])
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700144{
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700145 int vss_fd, len;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700146 int error;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700147 struct pollfd pfd;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700148 int op;
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700149 struct hv_vss_msg vss_msg[1];
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +0200150 int daemonize = 1, long_index = 0, opt;
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700151 int in_handshake = 1;
152 __u32 kernel_modver;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700153
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +0200154 static struct option long_options[] = {
155 {"help", no_argument, 0, 'h' },
156 {"no-daemon", no_argument, 0, 'n' },
157 {0, 0, 0, 0 }
158 };
159
160 while ((opt = getopt_long(argc, argv, "hn", long_options,
161 &long_index)) != -1) {
162 switch (opt) {
163 case 'n':
164 daemonize = 0;
165 break;
166 case 'h':
Adrian Vladu47a2cf62019-05-06 16:50:58 +0000167 print_usage(argv);
168 exit(0);
Vitaly Kuznetsov170f4be2014-10-22 18:07:11 +0200169 default:
170 print_usage(argv);
171 exit(EXIT_FAILURE);
172 }
173 }
174
175 if (daemonize && daemon(1, 0))
Olaf Heringeb8905b2013-04-24 07:48:48 -0700176 return 1;
177
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700178 openlog("Hyper-V VSS", 0, LOG_USER);
179 syslog(LOG_INFO, "VSS starting; pid is:%d", getpid());
180
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700181 vss_fd = open("/dev/vmbus/hv_vss", O_RDWR);
182 if (vss_fd < 0) {
183 syslog(LOG_ERR, "open /dev/vmbus/hv_vss failed; error: %d %s",
184 errno, strerror(errno));
Tomas Hozzad12e1462013-06-27 13:52:48 +0200185 exit(EXIT_FAILURE);
186 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700187 /*
188 * Register ourselves with the kernel.
189 */
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700190 vss_msg->vss_hdr.operation = VSS_OP_REGISTER1;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700191
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700192 len = write(vss_fd, vss_msg, sizeof(struct hv_vss_msg));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700193 if (len < 0) {
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700194 syslog(LOG_ERR, "registration to kernel failed; error: %d %s",
195 errno, strerror(errno));
196 close(vss_fd);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700197 exit(EXIT_FAILURE);
198 }
199
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700200 pfd.fd = vss_fd;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700201
202 while (1) {
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700203 pfd.events = POLLIN;
204 pfd.revents = 0;
Tomas Hozza9561d472013-06-27 13:52:49 +0200205
206 if (poll(&pfd, 1, -1) < 0) {
207 syslog(LOG_ERR, "poll failed; error:%d %s", errno, strerror(errno));
208 if (errno == EINVAL) {
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700209 close(vss_fd);
Tomas Hozza9561d472013-06-27 13:52:49 +0200210 exit(EXIT_FAILURE);
211 }
212 else
213 continue;
214 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700215
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700216 len = read(vss_fd, vss_msg, sizeof(struct hv_vss_msg));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700217
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700218 if (in_handshake) {
219 if (len != sizeof(kernel_modver)) {
220 syslog(LOG_ERR, "invalid version negotiation");
221 exit(EXIT_FAILURE);
222 }
223 kernel_modver = *(__u32 *)vss_msg;
224 in_handshake = 0;
225 syslog(LOG_INFO, "VSS: kernel module version: %d",
226 kernel_modver);
227 continue;
228 }
229
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700230 if (len != sizeof(struct hv_vss_msg)) {
231 syslog(LOG_ERR, "read failed; error:%d %s",
232 errno, strerror(errno));
233 close(vss_fd);
234 return EXIT_FAILURE;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700235 }
236
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700237 op = vss_msg->vss_hdr.operation;
238 error = HV_S_OK;
239
240 switch (op) {
241 case VSS_OP_FREEZE:
242 case VSS_OP_THAW:
243 error = vss_operate(op);
Dexuan Cui4f689192014-09-25 21:52:04 -0700244 syslog(LOG_INFO, "VSS: op=%s: %s\n",
245 op == VSS_OP_FREEZE ? "FREEZE" : "THAW",
246 error ? "failed" : "succeeded");
247
248 if (error) {
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700249 error = HV_E_FAIL;
Dexuan Cui4f689192014-09-25 21:52:04 -0700250 syslog(LOG_ERR, "op=%d failed!", op);
251 syslog(LOG_ERR, "report it with these files:");
252 syslog(LOG_ERR, "/etc/fstab and /proc/mounts");
253 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700254 break;
Alex Ngdb886e42016-09-02 05:58:25 -0700255 case VSS_OP_HOT_BACKUP:
256 syslog(LOG_INFO, "VSS: op=CHECK HOT BACKUP\n");
257 break;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700258 default:
259 syslog(LOG_ERR, "Illegal op:%d\n", op);
260 }
261 vss_msg->error = error;
Dexuan Cuia689d252015-12-14 16:01:58 -0800262 len = write(vss_fd, vss_msg, sizeof(struct hv_vss_msg));
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700263 if (len != sizeof(struct hv_vss_msg)) {
264 syslog(LOG_ERR, "write failed; error: %d %s", errno,
265 strerror(errno));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700266 exit(EXIT_FAILURE);
267 }
268 }
269
Vitaly Kuznetsovf5722b92015-04-11 18:07:56 -0700270 close(vss_fd);
271 exit(0);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700272}