blob: 1db9430d3fe4d544a693e8c10aa9bd6decf03bd1 [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>
22#include <sys/socket.h>
23#include <sys/poll.h>
Olaf Hering7b413b62013-04-24 07:48:52 -070024#include <sys/ioctl.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>
33#include <arpa/inet.h>
Olaf Hering7b413b62013-04-24 07:48:52 -070034#include <linux/fs.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070035#include <linux/connector.h>
36#include <linux/hyperv.h>
37#include <linux/netlink.h>
38#include <syslog.h>
39
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070040static struct sockaddr_nl addr;
41
42#ifndef SOL_NETLINK
43#define SOL_NETLINK 270
44#endif
45
46
Dexuan Cui4f689192014-09-25 21:52:04 -070047/* Don't use syslog() in the function since that can cause write to disk */
48static int vss_do_freeze(char *dir, unsigned int cmd)
Olaf Hering7b413b62013-04-24 07:48:52 -070049{
50 int ret, fd = open(dir, O_RDONLY);
51
52 if (fd < 0)
53 return 1;
Dexuan Cui4f689192014-09-25 21:52:04 -070054
Olaf Hering7b413b62013-04-24 07:48:52 -070055 ret = ioctl(fd, cmd, 0);
Dexuan Cui4f689192014-09-25 21:52:04 -070056
57 /*
58 * If a partition is mounted more than once, only the first
59 * FREEZE/THAW can succeed and the later ones will get
60 * EBUSY/EINVAL respectively: there could be 2 cases:
61 * 1) a user may mount the same partition to differnt directories
62 * by mistake or on purpose;
63 * 2) The subvolume of btrfs appears to have the same partition
64 * mounted more than once.
65 */
66 if (ret) {
67 if ((cmd == FIFREEZE && errno == EBUSY) ||
68 (cmd == FITHAW && errno == EINVAL)) {
69 close(fd);
70 return 0;
71 }
72 }
73
Olaf Hering7b413b62013-04-24 07:48:52 -070074 close(fd);
75 return !!ret;
76}
77
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070078static int vss_operate(int operation)
79{
Olaf Heringd3d1ee32013-04-24 07:48:51 -070080 char match[] = "/dev/";
81 FILE *mounts;
82 struct mntent *ent;
Olaf Hering7b413b62013-04-24 07:48:52 -070083 unsigned int cmd;
Olaf Heringd3d1ee32013-04-24 07:48:51 -070084 int error = 0, root_seen = 0;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070085
86 switch (operation) {
87 case VSS_OP_FREEZE:
Olaf Hering7b413b62013-04-24 07:48:52 -070088 cmd = FIFREEZE;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070089 break;
90 case VSS_OP_THAW:
Olaf Hering7b413b62013-04-24 07:48:52 -070091 cmd = FITHAW;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070092 break;
Olaf Heringeb8905b2013-04-24 07:48:48 -070093 default:
94 return -1;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070095 }
96
Olaf Heringd3d1ee32013-04-24 07:48:51 -070097 mounts = setmntent("/proc/mounts", "r");
98 if (mounts == NULL)
Olaf Heringeb8905b2013-04-24 07:48:48 -070099 return -1;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700100
K. Y. Srinivasan0e272632013-04-24 07:48:54 -0700101 while ((ent = getmntent(mounts))) {
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700102 if (strncmp(ent->mnt_fsname, match, strlen(match)))
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700103 continue;
Olaf Hering10b637b2013-04-24 07:48:53 -0700104 if (strcmp(ent->mnt_type, "iso9660") == 0)
105 continue;
K. Y. Srinivasanf33b2152014-02-12 08:40:22 -0800106 if (strcmp(ent->mnt_type, "vfat") == 0)
107 continue;
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700108 if (strcmp(ent->mnt_dir, "/") == 0) {
109 root_seen = 1;
110 continue;
111 }
Dexuan Cui4f689192014-09-25 21:52:04 -0700112 error |= vss_do_freeze(ent->mnt_dir, cmd);
113 if (error && operation == VSS_OP_FREEZE)
114 goto err;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700115 }
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700116 endmntent(mounts);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700117
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
124 return error;
Dexuan Cui4f689192014-09-25 21:52:04 -0700125err:
126 endmntent(mounts);
127 vss_operate(VSS_OP_THAW);
128 return error;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700129}
130
131static int netlink_send(int fd, struct cn_msg *msg)
132{
Olaf Heringb4fb0ca2013-08-07 15:45:12 +0200133 struct nlmsghdr nlh = { .nlmsg_type = NLMSG_DONE };
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700134 unsigned int size;
135 struct msghdr message;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700136 struct iovec iov[2];
137
Olaf Hering2bc41ea2013-08-07 15:07:21 +0200138 size = sizeof(struct cn_msg) + msg->len;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700139
Olaf Heringb4fb0ca2013-08-07 15:45:12 +0200140 nlh.nlmsg_pid = getpid();
141 nlh.nlmsg_len = NLMSG_LENGTH(size);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700142
Olaf Heringb4fb0ca2013-08-07 15:45:12 +0200143 iov[0].iov_base = &nlh;
144 iov[0].iov_len = sizeof(nlh);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700145
146 iov[1].iov_base = msg;
147 iov[1].iov_len = size;
148
149 memset(&message, 0, sizeof(message));
150 message.msg_name = &addr;
151 message.msg_namelen = sizeof(addr);
152 message.msg_iov = iov;
153 message.msg_iovlen = 2;
154
155 return sendmsg(fd, &message, 0);
156}
157
158int main(void)
159{
160 int fd, len, nl_group;
161 int error;
162 struct cn_msg *message;
163 struct pollfd pfd;
164 struct nlmsghdr *incoming_msg;
165 struct cn_msg *incoming_cn_msg;
166 int op;
167 struct hv_vss_msg *vss_msg;
Olaf Heringb4919a52013-08-01 14:34:26 +0200168 char *vss_recv_buffer;
169 size_t vss_recv_buffer_len;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700170
Olaf Heringeb8905b2013-04-24 07:48:48 -0700171 if (daemon(1, 0))
172 return 1;
173
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700174 openlog("Hyper-V VSS", 0, LOG_USER);
175 syslog(LOG_INFO, "VSS starting; pid is:%d", getpid());
176
Olaf Hering269ce622013-08-06 20:55:38 +0200177 vss_recv_buffer_len = NLMSG_LENGTH(0) + sizeof(struct cn_msg) + sizeof(struct hv_vss_msg);
Olaf Heringb4919a52013-08-01 14:34:26 +0200178 vss_recv_buffer = calloc(1, vss_recv_buffer_len);
Olaf Hering269ce622013-08-06 20:55:38 +0200179 if (!vss_recv_buffer) {
Olaf Heringb4919a52013-08-01 14:34:26 +0200180 syslog(LOG_ERR, "Failed to allocate netlink buffers");
181 exit(EXIT_FAILURE);
182 }
183
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700184 fd = socket(AF_NETLINK, SOCK_DGRAM, NETLINK_CONNECTOR);
185 if (fd < 0) {
Tomas Hozza5c289262013-06-27 13:52:47 +0200186 syslog(LOG_ERR, "netlink socket creation failed; error:%d %s",
187 errno, strerror(errno));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700188 exit(EXIT_FAILURE);
189 }
190 addr.nl_family = AF_NETLINK;
191 addr.nl_pad = 0;
192 addr.nl_pid = 0;
193 addr.nl_groups = 0;
194
195
196 error = bind(fd, (struct sockaddr *)&addr, sizeof(addr));
197 if (error < 0) {
Tomas Hozza5c289262013-06-27 13:52:47 +0200198 syslog(LOG_ERR, "bind failed; error:%d %s", errno, strerror(errno));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700199 close(fd);
200 exit(EXIT_FAILURE);
201 }
202 nl_group = CN_VSS_IDX;
Tomas Hozzad12e1462013-06-27 13:52:48 +0200203 if (setsockopt(fd, SOL_NETLINK, NETLINK_ADD_MEMBERSHIP, &nl_group, sizeof(nl_group)) < 0) {
204 syslog(LOG_ERR, "setsockopt failed; error:%d %s", errno, strerror(errno));
205 close(fd);
206 exit(EXIT_FAILURE);
207 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700208 /*
209 * Register ourselves with the kernel.
210 */
Olaf Hering269ce622013-08-06 20:55:38 +0200211 message = (struct cn_msg *)vss_recv_buffer;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700212 message->id.idx = CN_VSS_IDX;
213 message->id.val = CN_VSS_VAL;
214 message->ack = 0;
215 vss_msg = (struct hv_vss_msg *)message->data;
216 vss_msg->vss_hdr.operation = VSS_OP_REGISTER;
217
218 message->len = sizeof(struct hv_vss_msg);
219
220 len = netlink_send(fd, message);
221 if (len < 0) {
Tomas Hozza5c289262013-06-27 13:52:47 +0200222 syslog(LOG_ERR, "netlink_send failed; error:%d %s", errno, strerror(errno));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700223 close(fd);
224 exit(EXIT_FAILURE);
225 }
226
227 pfd.fd = fd;
228
229 while (1) {
230 struct sockaddr *addr_p = (struct sockaddr *) &addr;
231 socklen_t addr_l = sizeof(addr);
232 pfd.events = POLLIN;
233 pfd.revents = 0;
Tomas Hozza9561d472013-06-27 13:52:49 +0200234
235 if (poll(&pfd, 1, -1) < 0) {
236 syslog(LOG_ERR, "poll failed; error:%d %s", errno, strerror(errno));
237 if (errno == EINVAL) {
238 close(fd);
239 exit(EXIT_FAILURE);
240 }
241 else
242 continue;
243 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700244
Olaf Heringb4919a52013-08-01 14:34:26 +0200245 len = recvfrom(fd, vss_recv_buffer, vss_recv_buffer_len, 0,
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700246 addr_p, &addr_l);
247
Olaf Hering5edf5ee2013-04-24 07:48:49 -0700248 if (len < 0) {
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700249 syslog(LOG_ERR, "recvfrom failed; pid:%u error:%d %s",
250 addr.nl_pid, errno, strerror(errno));
251 close(fd);
252 return -1;
253 }
254
Olaf Hering5edf5ee2013-04-24 07:48:49 -0700255 if (addr.nl_pid) {
K. Y. Srinivasan038336a2013-04-24 07:48:50 -0700256 syslog(LOG_WARNING,
257 "Received packet from untrusted pid:%u",
258 addr.nl_pid);
Olaf Hering5edf5ee2013-04-24 07:48:49 -0700259 continue;
260 }
261
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700262 incoming_msg = (struct nlmsghdr *)vss_recv_buffer;
263
264 if (incoming_msg->nlmsg_type != NLMSG_DONE)
265 continue;
266
267 incoming_cn_msg = (struct cn_msg *)NLMSG_DATA(incoming_msg);
268 vss_msg = (struct hv_vss_msg *)incoming_cn_msg->data;
269 op = vss_msg->vss_hdr.operation;
270 error = HV_S_OK;
271
272 switch (op) {
273 case VSS_OP_FREEZE:
274 case VSS_OP_THAW:
275 error = vss_operate(op);
Dexuan Cui4f689192014-09-25 21:52:04 -0700276 syslog(LOG_INFO, "VSS: op=%s: %s\n",
277 op == VSS_OP_FREEZE ? "FREEZE" : "THAW",
278 error ? "failed" : "succeeded");
279
280 if (error) {
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700281 error = HV_E_FAIL;
Dexuan Cui4f689192014-09-25 21:52:04 -0700282 syslog(LOG_ERR, "op=%d failed!", op);
283 syslog(LOG_ERR, "report it with these files:");
284 syslog(LOG_ERR, "/etc/fstab and /proc/mounts");
285 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700286 break;
287 default:
288 syslog(LOG_ERR, "Illegal op:%d\n", op);
289 }
290 vss_msg->error = error;
291 len = netlink_send(fd, incoming_cn_msg);
292 if (len < 0) {
Tomas Hozza5c289262013-06-27 13:52:47 +0200293 syslog(LOG_ERR, "net_link send failed; error:%d %s",
294 errno, strerror(errno));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700295 exit(EXIT_FAILURE);
296 }
297 }
298
299}