2 * An implementation of the host initiated guest snapshot for Hyper-V.
5 * Copyright (C) 2013, Microsoft, Inc.
6 * Author : K. Y. Srinivasan <kys@microsoft.com>
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.
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
21 #include <sys/types.h>
22 #include <sys/socket.h>
24 #include <sys/ioctl.h>
25 #include <linux/types.h>
34 #include <arpa/inet.h>
36 #include <linux/connector.h>
37 #include <linux/hyperv.h>
38 #include <linux/netlink.h>
41 static char vss_recv_buffer[4096];
42 static char vss_send_buffer[4096];
43 static struct sockaddr_nl addr;
46 #define SOL_NETLINK 270
50 static int vss_do_freeze(char *dir, unsigned int cmd, char *fs_op)
52 int ret, fd = open(dir, O_RDONLY);
56 ret = ioctl(fd, cmd, 0);
57 syslog(LOG_INFO, "VSS: %s of %s: %s\n", fs_op, dir, strerror(errno));
62 static int vss_operate(int operation)
65 char match[] = "/dev/";
69 int error = 0, root_seen = 0;
84 mounts = setmntent("/proc/mounts", "r");
88 while((ent = getmntent(mounts))) {
89 if (strncmp(ent->mnt_fsname, match, strlen(match)))
91 if (strcmp(ent->mnt_dir, "/") == 0) {
95 error |= vss_do_freeze(ent->mnt_dir, cmd, fs_op);
100 error |= vss_do_freeze("/", cmd, fs_op);
106 static int netlink_send(int fd, struct cn_msg *msg)
108 struct nlmsghdr *nlh;
110 struct msghdr message;
114 size = NLMSG_SPACE(sizeof(struct cn_msg) + msg->len);
116 nlh = (struct nlmsghdr *)buffer;
118 nlh->nlmsg_pid = getpid();
119 nlh->nlmsg_type = NLMSG_DONE;
120 nlh->nlmsg_len = NLMSG_LENGTH(size - sizeof(*nlh));
121 nlh->nlmsg_flags = 0;
123 iov[0].iov_base = nlh;
124 iov[0].iov_len = sizeof(*nlh);
126 iov[1].iov_base = msg;
127 iov[1].iov_len = size;
129 memset(&message, 0, sizeof(message));
130 message.msg_name = &addr;
131 message.msg_namelen = sizeof(addr);
132 message.msg_iov = iov;
133 message.msg_iovlen = 2;
135 return sendmsg(fd, &message, 0);
140 int fd, len, nl_group;
142 struct cn_msg *message;
144 struct nlmsghdr *incoming_msg;
145 struct cn_msg *incoming_cn_msg;
147 struct hv_vss_msg *vss_msg;
152 openlog("Hyper-V VSS", 0, LOG_USER);
153 syslog(LOG_INFO, "VSS starting; pid is:%d", getpid());
155 fd = socket(AF_NETLINK, SOCK_DGRAM, NETLINK_CONNECTOR);
157 syslog(LOG_ERR, "netlink socket creation failed; error:%d", fd);
160 addr.nl_family = AF_NETLINK;
166 error = bind(fd, (struct sockaddr *)&addr, sizeof(addr));
168 syslog(LOG_ERR, "bind failed; error:%d", error);
172 nl_group = CN_VSS_IDX;
173 setsockopt(fd, SOL_NETLINK, NETLINK_ADD_MEMBERSHIP, &nl_group, sizeof(nl_group));
175 * Register ourselves with the kernel.
177 message = (struct cn_msg *)vss_send_buffer;
178 message->id.idx = CN_VSS_IDX;
179 message->id.val = CN_VSS_VAL;
181 vss_msg = (struct hv_vss_msg *)message->data;
182 vss_msg->vss_hdr.operation = VSS_OP_REGISTER;
184 message->len = sizeof(struct hv_vss_msg);
186 len = netlink_send(fd, message);
188 syslog(LOG_ERR, "netlink_send failed; error:%d", len);
196 struct sockaddr *addr_p = (struct sockaddr *) &addr;
197 socklen_t addr_l = sizeof(addr);
202 len = recvfrom(fd, vss_recv_buffer, sizeof(vss_recv_buffer), 0,
206 syslog(LOG_ERR, "recvfrom failed; pid:%u error:%d %s",
207 addr.nl_pid, errno, strerror(errno));
214 "Received packet from untrusted pid:%u",
219 incoming_msg = (struct nlmsghdr *)vss_recv_buffer;
221 if (incoming_msg->nlmsg_type != NLMSG_DONE)
224 incoming_cn_msg = (struct cn_msg *)NLMSG_DATA(incoming_msg);
225 vss_msg = (struct hv_vss_msg *)incoming_cn_msg->data;
226 op = vss_msg->vss_hdr.operation;
232 error = vss_operate(op);
237 syslog(LOG_ERR, "Illegal op:%d\n", op);
239 vss_msg->error = error;
240 len = netlink_send(fd, incoming_cn_msg);
242 syslog(LOG_ERR, "net_link send failed; error:%d", len);