blob: 6a213b8cd7b9034ad097d60b2ce5295e458d4054 [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
Olaf Hering7b413b62013-04-24 07:48:52 -070047static int vss_do_freeze(char *dir, unsigned int cmd, char *fs_op)
48{
49 int ret, fd = open(dir, O_RDONLY);
50
51 if (fd < 0)
52 return 1;
53 ret = ioctl(fd, cmd, 0);
54 syslog(LOG_INFO, "VSS: %s of %s: %s\n", fs_op, dir, strerror(errno));
55 close(fd);
56 return !!ret;
57}
58
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070059static int vss_operate(int operation)
60{
61 char *fs_op;
Olaf Heringd3d1ee32013-04-24 07:48:51 -070062 char match[] = "/dev/";
63 FILE *mounts;
64 struct mntent *ent;
Olaf Hering7b413b62013-04-24 07:48:52 -070065 unsigned int cmd;
Olaf Heringd3d1ee32013-04-24 07:48:51 -070066 int error = 0, root_seen = 0;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070067
68 switch (operation) {
69 case VSS_OP_FREEZE:
Olaf Hering7b413b62013-04-24 07:48:52 -070070 cmd = FIFREEZE;
71 fs_op = "freeze";
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070072 break;
73 case VSS_OP_THAW:
Olaf Hering7b413b62013-04-24 07:48:52 -070074 cmd = FITHAW;
75 fs_op = "thaw";
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070076 break;
Olaf Heringeb8905b2013-04-24 07:48:48 -070077 default:
78 return -1;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070079 }
80
Olaf Heringd3d1ee32013-04-24 07:48:51 -070081 mounts = setmntent("/proc/mounts", "r");
82 if (mounts == NULL)
Olaf Heringeb8905b2013-04-24 07:48:48 -070083 return -1;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070084
K. Y. Srinivasan0e272632013-04-24 07:48:54 -070085 while ((ent = getmntent(mounts))) {
Olaf Heringd3d1ee32013-04-24 07:48:51 -070086 if (strncmp(ent->mnt_fsname, match, strlen(match)))
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070087 continue;
Olaf Hering10b637b2013-04-24 07:48:53 -070088 if (strcmp(ent->mnt_type, "iso9660") == 0)
89 continue;
K. Y. Srinivasanf33b2152014-02-12 08:40:22 -080090 if (strcmp(ent->mnt_type, "vfat") == 0)
91 continue;
Olaf Heringd3d1ee32013-04-24 07:48:51 -070092 if (strcmp(ent->mnt_dir, "/") == 0) {
93 root_seen = 1;
94 continue;
95 }
Olaf Hering7b413b62013-04-24 07:48:52 -070096 error |= vss_do_freeze(ent->mnt_dir, cmd, fs_op);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070097 }
Olaf Heringd3d1ee32013-04-24 07:48:51 -070098 endmntent(mounts);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070099
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700100 if (root_seen) {
Olaf Hering7b413b62013-04-24 07:48:52 -0700101 error |= vss_do_freeze("/", cmd, fs_op);
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700102 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700103
104 return error;
105}
106
107static int netlink_send(int fd, struct cn_msg *msg)
108{
Olaf Heringb4fb0ca2013-08-07 15:45:12 +0200109 struct nlmsghdr nlh = { .nlmsg_type = NLMSG_DONE };
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700110 unsigned int size;
111 struct msghdr message;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700112 struct iovec iov[2];
113
Olaf Hering2bc41ea2013-08-07 15:07:21 +0200114 size = sizeof(struct cn_msg) + msg->len;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700115
Olaf Heringb4fb0ca2013-08-07 15:45:12 +0200116 nlh.nlmsg_pid = getpid();
117 nlh.nlmsg_len = NLMSG_LENGTH(size);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700118
Olaf Heringb4fb0ca2013-08-07 15:45:12 +0200119 iov[0].iov_base = &nlh;
120 iov[0].iov_len = sizeof(nlh);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700121
122 iov[1].iov_base = msg;
123 iov[1].iov_len = size;
124
125 memset(&message, 0, sizeof(message));
126 message.msg_name = &addr;
127 message.msg_namelen = sizeof(addr);
128 message.msg_iov = iov;
129 message.msg_iovlen = 2;
130
131 return sendmsg(fd, &message, 0);
132}
133
134int main(void)
135{
136 int fd, len, nl_group;
137 int error;
138 struct cn_msg *message;
139 struct pollfd pfd;
140 struct nlmsghdr *incoming_msg;
141 struct cn_msg *incoming_cn_msg;
142 int op;
143 struct hv_vss_msg *vss_msg;
Olaf Heringb4919a52013-08-01 14:34:26 +0200144 char *vss_recv_buffer;
145 size_t vss_recv_buffer_len;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700146
Olaf Heringeb8905b2013-04-24 07:48:48 -0700147 if (daemon(1, 0))
148 return 1;
149
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700150 openlog("Hyper-V VSS", 0, LOG_USER);
151 syslog(LOG_INFO, "VSS starting; pid is:%d", getpid());
152
Olaf Hering269ce622013-08-06 20:55:38 +0200153 vss_recv_buffer_len = NLMSG_LENGTH(0) + sizeof(struct cn_msg) + sizeof(struct hv_vss_msg);
Olaf Heringb4919a52013-08-01 14:34:26 +0200154 vss_recv_buffer = calloc(1, vss_recv_buffer_len);
Olaf Hering269ce622013-08-06 20:55:38 +0200155 if (!vss_recv_buffer) {
Olaf Heringb4919a52013-08-01 14:34:26 +0200156 syslog(LOG_ERR, "Failed to allocate netlink buffers");
157 exit(EXIT_FAILURE);
158 }
159
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700160 fd = socket(AF_NETLINK, SOCK_DGRAM, NETLINK_CONNECTOR);
161 if (fd < 0) {
Tomas Hozza5c289262013-06-27 13:52:47 +0200162 syslog(LOG_ERR, "netlink socket creation failed; error:%d %s",
163 errno, strerror(errno));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700164 exit(EXIT_FAILURE);
165 }
166 addr.nl_family = AF_NETLINK;
167 addr.nl_pad = 0;
168 addr.nl_pid = 0;
169 addr.nl_groups = 0;
170
171
172 error = bind(fd, (struct sockaddr *)&addr, sizeof(addr));
173 if (error < 0) {
Tomas Hozza5c289262013-06-27 13:52:47 +0200174 syslog(LOG_ERR, "bind failed; error:%d %s", errno, strerror(errno));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700175 close(fd);
176 exit(EXIT_FAILURE);
177 }
178 nl_group = CN_VSS_IDX;
Tomas Hozzad12e1462013-06-27 13:52:48 +0200179 if (setsockopt(fd, SOL_NETLINK, NETLINK_ADD_MEMBERSHIP, &nl_group, sizeof(nl_group)) < 0) {
180 syslog(LOG_ERR, "setsockopt failed; error:%d %s", errno, strerror(errno));
181 close(fd);
182 exit(EXIT_FAILURE);
183 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700184 /*
185 * Register ourselves with the kernel.
186 */
Olaf Hering269ce622013-08-06 20:55:38 +0200187 message = (struct cn_msg *)vss_recv_buffer;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700188 message->id.idx = CN_VSS_IDX;
189 message->id.val = CN_VSS_VAL;
190 message->ack = 0;
191 vss_msg = (struct hv_vss_msg *)message->data;
192 vss_msg->vss_hdr.operation = VSS_OP_REGISTER;
193
194 message->len = sizeof(struct hv_vss_msg);
195
196 len = netlink_send(fd, message);
197 if (len < 0) {
Tomas Hozza5c289262013-06-27 13:52:47 +0200198 syslog(LOG_ERR, "netlink_send failed; error:%d %s", errno, strerror(errno));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700199 close(fd);
200 exit(EXIT_FAILURE);
201 }
202
203 pfd.fd = fd;
204
205 while (1) {
206 struct sockaddr *addr_p = (struct sockaddr *) &addr;
207 socklen_t addr_l = sizeof(addr);
208 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) {
214 close(fd);
215 exit(EXIT_FAILURE);
216 }
217 else
218 continue;
219 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700220
Olaf Heringb4919a52013-08-01 14:34:26 +0200221 len = recvfrom(fd, vss_recv_buffer, vss_recv_buffer_len, 0,
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700222 addr_p, &addr_l);
223
Olaf Hering5edf5ee2013-04-24 07:48:49 -0700224 if (len < 0) {
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700225 syslog(LOG_ERR, "recvfrom failed; pid:%u error:%d %s",
226 addr.nl_pid, errno, strerror(errno));
227 close(fd);
228 return -1;
229 }
230
Olaf Hering5edf5ee2013-04-24 07:48:49 -0700231 if (addr.nl_pid) {
K. Y. Srinivasan038336a2013-04-24 07:48:50 -0700232 syslog(LOG_WARNING,
233 "Received packet from untrusted pid:%u",
234 addr.nl_pid);
Olaf Hering5edf5ee2013-04-24 07:48:49 -0700235 continue;
236 }
237
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700238 incoming_msg = (struct nlmsghdr *)vss_recv_buffer;
239
240 if (incoming_msg->nlmsg_type != NLMSG_DONE)
241 continue;
242
243 incoming_cn_msg = (struct cn_msg *)NLMSG_DATA(incoming_msg);
244 vss_msg = (struct hv_vss_msg *)incoming_cn_msg->data;
245 op = vss_msg->vss_hdr.operation;
246 error = HV_S_OK;
247
248 switch (op) {
249 case VSS_OP_FREEZE:
250 case VSS_OP_THAW:
251 error = vss_operate(op);
252 if (error)
253 error = HV_E_FAIL;
254 break;
255 default:
256 syslog(LOG_ERR, "Illegal op:%d\n", op);
257 }
258 vss_msg->error = error;
259 len = netlink_send(fd, incoming_cn_msg);
260 if (len < 0) {
Tomas Hozza5c289262013-06-27 13:52:47 +0200261 syslog(LOG_ERR, "net_link send failed; error:%d %s",
262 errno, strerror(errno));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700263 exit(EXIT_FAILURE);
264 }
265 }
266
267}