blob: 8bcb04096eb267a1f6d49e672720661e779ec5c3 [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>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070025#include <linux/types.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>
34#include <arpa/inet.h>
Olaf Hering7b413b62013-04-24 07:48:52 -070035#include <linux/fs.h>
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070036#include <linux/connector.h>
37#include <linux/hyperv.h>
38#include <linux/netlink.h>
39#include <syslog.h>
40
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070041static struct sockaddr_nl addr;
42
43#ifndef SOL_NETLINK
44#define SOL_NETLINK 270
45#endif
46
47
Olaf Hering7b413b62013-04-24 07:48:52 -070048static int vss_do_freeze(char *dir, unsigned int cmd, char *fs_op)
49{
50 int ret, fd = open(dir, O_RDONLY);
51
52 if (fd < 0)
53 return 1;
54 ret = ioctl(fd, cmd, 0);
55 syslog(LOG_INFO, "VSS: %s of %s: %s\n", fs_op, dir, strerror(errno));
56 close(fd);
57 return !!ret;
58}
59
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070060static int vss_operate(int operation)
61{
62 char *fs_op;
Olaf Heringd3d1ee32013-04-24 07:48:51 -070063 char match[] = "/dev/";
64 FILE *mounts;
65 struct mntent *ent;
Olaf Hering7b413b62013-04-24 07:48:52 -070066 unsigned int cmd;
Olaf Heringd3d1ee32013-04-24 07:48:51 -070067 int error = 0, root_seen = 0;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070068
69 switch (operation) {
70 case VSS_OP_FREEZE:
Olaf Hering7b413b62013-04-24 07:48:52 -070071 cmd = FIFREEZE;
72 fs_op = "freeze";
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070073 break;
74 case VSS_OP_THAW:
Olaf Hering7b413b62013-04-24 07:48:52 -070075 cmd = FITHAW;
76 fs_op = "thaw";
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070077 break;
Olaf Heringeb8905b2013-04-24 07:48:48 -070078 default:
79 return -1;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070080 }
81
Olaf Heringd3d1ee32013-04-24 07:48:51 -070082 mounts = setmntent("/proc/mounts", "r");
83 if (mounts == NULL)
Olaf Heringeb8905b2013-04-24 07:48:48 -070084 return -1;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070085
K. Y. Srinivasan0e272632013-04-24 07:48:54 -070086 while ((ent = getmntent(mounts))) {
Olaf Heringd3d1ee32013-04-24 07:48:51 -070087 if (strncmp(ent->mnt_fsname, match, strlen(match)))
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070088 continue;
Olaf Hering10b637b2013-04-24 07:48:53 -070089 if (strcmp(ent->mnt_type, "iso9660") == 0)
90 continue;
Olaf Heringd3d1ee32013-04-24 07:48:51 -070091 if (strcmp(ent->mnt_dir, "/") == 0) {
92 root_seen = 1;
93 continue;
94 }
Olaf Hering7b413b62013-04-24 07:48:52 -070095 error |= vss_do_freeze(ent->mnt_dir, cmd, fs_op);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070096 }
Olaf Heringd3d1ee32013-04-24 07:48:51 -070097 endmntent(mounts);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070098
Olaf Heringd3d1ee32013-04-24 07:48:51 -070099 if (root_seen) {
Olaf Hering7b413b62013-04-24 07:48:52 -0700100 error |= vss_do_freeze("/", cmd, fs_op);
Olaf Heringd3d1ee32013-04-24 07:48:51 -0700101 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700102
103 return error;
104}
105
106static int netlink_send(int fd, struct cn_msg *msg)
107{
Olaf Heringb4fb0ca2013-08-07 15:45:12 +0200108 struct nlmsghdr nlh = { .nlmsg_type = NLMSG_DONE };
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700109 unsigned int size;
110 struct msghdr message;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700111 struct iovec iov[2];
112
Olaf Hering2bc41ea2013-08-07 15:07:21 +0200113 size = sizeof(struct cn_msg) + msg->len;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700114
Olaf Heringb4fb0ca2013-08-07 15:45:12 +0200115 nlh.nlmsg_pid = getpid();
116 nlh.nlmsg_len = NLMSG_LENGTH(size);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700117
Olaf Heringb4fb0ca2013-08-07 15:45:12 +0200118 iov[0].iov_base = &nlh;
119 iov[0].iov_len = sizeof(nlh);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700120
121 iov[1].iov_base = msg;
122 iov[1].iov_len = size;
123
124 memset(&message, 0, sizeof(message));
125 message.msg_name = &addr;
126 message.msg_namelen = sizeof(addr);
127 message.msg_iov = iov;
128 message.msg_iovlen = 2;
129
130 return sendmsg(fd, &message, 0);
131}
132
133int main(void)
134{
135 int fd, len, nl_group;
136 int error;
137 struct cn_msg *message;
138 struct pollfd pfd;
139 struct nlmsghdr *incoming_msg;
140 struct cn_msg *incoming_cn_msg;
141 int op;
142 struct hv_vss_msg *vss_msg;
Olaf Heringb4919a52013-08-01 14:34:26 +0200143 char *vss_recv_buffer;
144 size_t vss_recv_buffer_len;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700145
Olaf Heringeb8905b2013-04-24 07:48:48 -0700146 if (daemon(1, 0))
147 return 1;
148
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700149 openlog("Hyper-V VSS", 0, LOG_USER);
150 syslog(LOG_INFO, "VSS starting; pid is:%d", getpid());
151
Olaf Hering269ce622013-08-06 20:55:38 +0200152 vss_recv_buffer_len = NLMSG_LENGTH(0) + sizeof(struct cn_msg) + sizeof(struct hv_vss_msg);
Olaf Heringb4919a52013-08-01 14:34:26 +0200153 vss_recv_buffer = calloc(1, vss_recv_buffer_len);
Olaf Hering269ce622013-08-06 20:55:38 +0200154 if (!vss_recv_buffer) {
Olaf Heringb4919a52013-08-01 14:34:26 +0200155 syslog(LOG_ERR, "Failed to allocate netlink buffers");
156 exit(EXIT_FAILURE);
157 }
158
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700159 fd = socket(AF_NETLINK, SOCK_DGRAM, NETLINK_CONNECTOR);
160 if (fd < 0) {
Tomas Hozza5c289262013-06-27 13:52:47 +0200161 syslog(LOG_ERR, "netlink socket creation failed; error:%d %s",
162 errno, strerror(errno));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700163 exit(EXIT_FAILURE);
164 }
165 addr.nl_family = AF_NETLINK;
166 addr.nl_pad = 0;
167 addr.nl_pid = 0;
168 addr.nl_groups = 0;
169
170
171 error = bind(fd, (struct sockaddr *)&addr, sizeof(addr));
172 if (error < 0) {
Tomas Hozza5c289262013-06-27 13:52:47 +0200173 syslog(LOG_ERR, "bind failed; error:%d %s", errno, strerror(errno));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700174 close(fd);
175 exit(EXIT_FAILURE);
176 }
177 nl_group = CN_VSS_IDX;
Tomas Hozzad12e1462013-06-27 13:52:48 +0200178 if (setsockopt(fd, SOL_NETLINK, NETLINK_ADD_MEMBERSHIP, &nl_group, sizeof(nl_group)) < 0) {
179 syslog(LOG_ERR, "setsockopt failed; error:%d %s", errno, strerror(errno));
180 close(fd);
181 exit(EXIT_FAILURE);
182 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700183 /*
184 * Register ourselves with the kernel.
185 */
Olaf Hering269ce622013-08-06 20:55:38 +0200186 message = (struct cn_msg *)vss_recv_buffer;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700187 message->id.idx = CN_VSS_IDX;
188 message->id.val = CN_VSS_VAL;
189 message->ack = 0;
190 vss_msg = (struct hv_vss_msg *)message->data;
191 vss_msg->vss_hdr.operation = VSS_OP_REGISTER;
192
193 message->len = sizeof(struct hv_vss_msg);
194
195 len = netlink_send(fd, message);
196 if (len < 0) {
Tomas Hozza5c289262013-06-27 13:52:47 +0200197 syslog(LOG_ERR, "netlink_send failed; error:%d %s", errno, strerror(errno));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700198 close(fd);
199 exit(EXIT_FAILURE);
200 }
201
202 pfd.fd = fd;
203
204 while (1) {
205 struct sockaddr *addr_p = (struct sockaddr *) &addr;
206 socklen_t addr_l = sizeof(addr);
207 pfd.events = POLLIN;
208 pfd.revents = 0;
Tomas Hozza9561d472013-06-27 13:52:49 +0200209
210 if (poll(&pfd, 1, -1) < 0) {
211 syslog(LOG_ERR, "poll failed; error:%d %s", errno, strerror(errno));
212 if (errno == EINVAL) {
213 close(fd);
214 exit(EXIT_FAILURE);
215 }
216 else
217 continue;
218 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700219
Olaf Heringb4919a52013-08-01 14:34:26 +0200220 len = recvfrom(fd, vss_recv_buffer, vss_recv_buffer_len, 0,
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700221 addr_p, &addr_l);
222
Olaf Hering5edf5ee2013-04-24 07:48:49 -0700223 if (len < 0) {
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700224 syslog(LOG_ERR, "recvfrom failed; pid:%u error:%d %s",
225 addr.nl_pid, errno, strerror(errno));
226 close(fd);
227 return -1;
228 }
229
Olaf Hering5edf5ee2013-04-24 07:48:49 -0700230 if (addr.nl_pid) {
K. Y. Srinivasan038336a2013-04-24 07:48:50 -0700231 syslog(LOG_WARNING,
232 "Received packet from untrusted pid:%u",
233 addr.nl_pid);
Olaf Hering5edf5ee2013-04-24 07:48:49 -0700234 continue;
235 }
236
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700237 incoming_msg = (struct nlmsghdr *)vss_recv_buffer;
238
239 if (incoming_msg->nlmsg_type != NLMSG_DONE)
240 continue;
241
242 incoming_cn_msg = (struct cn_msg *)NLMSG_DATA(incoming_msg);
243 vss_msg = (struct hv_vss_msg *)incoming_cn_msg->data;
244 op = vss_msg->vss_hdr.operation;
245 error = HV_S_OK;
246
247 switch (op) {
248 case VSS_OP_FREEZE:
249 case VSS_OP_THAW:
250 error = vss_operate(op);
251 if (error)
252 error = HV_E_FAIL;
253 break;
254 default:
255 syslog(LOG_ERR, "Illegal op:%d\n", op);
256 }
257 vss_msg->error = error;
258 len = netlink_send(fd, incoming_cn_msg);
259 if (len < 0) {
Tomas Hozza5c289262013-06-27 13:52:47 +0200260 syslog(LOG_ERR, "net_link send failed; error:%d %s",
261 errno, strerror(errno));
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700262 exit(EXIT_FAILURE);
263 }
264 }
265
266}