1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
|
/*
* Copyright (C) 2016 FUJITSU LIMITED
* Author: Yang Hongyang <hongyang.yang@easystack.cn>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation; version 2.1 only. with the special
* exception on linking described in file LICENSE.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*/
#include "libxl_osdeps.h" /* must come before any other headers */
#include "libxl_internal.h"
#include <netlink/netlink.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <netinet/in.h>
/* Consistent with the new COLO netlink channel in kernel side */
#define NETLINK_COLO 28
#define COLO_DEFAULT_WAIT_TIME 500000
enum colo_netlink_op {
COLO_QUERY_CHECKPOINT = (NLMSG_MIN_TYPE + 1),
COLO_CHECKPOINT,
COLO_FAILOVER,
COLO_PROXY_INIT,
COLO_PROXY_RESET, /* UNUSED, will be used for continuous FT */
};
/* ========= colo-proxy: helper functions ========== */
static int colo_proxy_send(libxl__colo_proxy_state *cps, uint8_t *buff,
uint64_t size, int type)
{
struct sockaddr_nl sa;
struct nlmsghdr msg;
struct iovec iov;
struct msghdr mh;
int ret;
STATE_AO_GC(cps->ao);
memset(&sa, 0, sizeof(sa));
sa.nl_family = AF_NETLINK;
sa.nl_pid = 0;
sa.nl_groups = 0;
msg.nlmsg_len = NLMSG_SPACE(0);
msg.nlmsg_flags = NLM_F_REQUEST;
if (type == COLO_PROXY_INIT)
msg.nlmsg_flags |= NLM_F_ACK;
msg.nlmsg_seq = 0;
msg.nlmsg_pid = cps->index;
msg.nlmsg_type = type;
iov.iov_base = &msg;
iov.iov_len = msg.nlmsg_len;
mh.msg_name = &sa;
mh.msg_namelen = sizeof(sa);
mh.msg_iov = &iov;
mh.msg_iovlen = 1;
mh.msg_control = NULL;
mh.msg_controllen = 0;
mh.msg_flags = 0;
ret = sendmsg(cps->sock_fd, &mh, 0);
if (ret <= 0) {
LOGD(ERROR, ao->domid, "can't send msg to kernel by netlink: %s",
strerror(errno));
}
return ret;
}
static int colo_userspace_proxy_send(libxl__colo_proxy_state *cps,
uint8_t *buff,
uint32_t size)
{
int ret = 0;
uint32_t len = 0;
len = htonl(size);
ret = send(cps->sock_fd, (uint8_t *)&len, sizeof(len), 0);
if (ret != sizeof(len)) {
goto err;
}
ret = send(cps->sock_fd, (uint8_t *)buff, size, 0);
if (ret != size) {
goto err;
}
err:
return ret;
}
static int colo_userspace_proxy_recv(libxl__colo_proxy_state *cps,
char *buff,
unsigned int timeout_us)
{
struct timeval tv;
int ret;
uint32_t len = 0;
uint32_t size = 0;
STATE_AO_GC(cps->ao);
if (timeout_us) {
tv.tv_sec = timeout_us / 1000000;
tv.tv_usec = timeout_us % 1000000;
ret = setsockopt(cps->sock_fd, SOL_SOCKET, SO_RCVTIMEO, &tv,
sizeof(tv));
if (ret < 0) {
LOGD(ERROR, ao->domid,
"colo_userspace_proxy_recv setsockopt error: %s",
strerror(errno));
}
}
ret = recv(cps->sock_fd, (uint8_t *)&len, sizeof(len), 0);
if (ret < 0) {
goto err;
}
size = ntohl(len);
ret = recv(cps->sock_fd, buff, size, 0);
err:
return ret;
}
/* error: return -1, otherwise return 0 */
static int64_t colo_proxy_recv(libxl__colo_proxy_state *cps, uint8_t **buff,
unsigned int timeout_us)
{
struct sockaddr_nl sa;
struct iovec iov;
struct msghdr mh = {
.msg_name = &sa,
.msg_namelen = sizeof(sa),
.msg_iov = &iov,
.msg_iovlen = 1,
};
struct timeval tv;
uint32_t size = 16384;
int64_t len = 0;
int ret;
STATE_AO_GC(cps->ao);
uint8_t *tmp = libxl__malloc(NOGC, size);
if (timeout_us) {
tv.tv_sec = timeout_us / 1000000;
tv.tv_usec = timeout_us % 1000000;
setsockopt(cps->sock_fd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv));
}
iov.iov_base = tmp;
iov.iov_len = size;
next:
ret = recvmsg(cps->sock_fd, &mh, 0);
if (ret <= 0) {
if (errno != EAGAIN && errno != EWOULDBLOCK)
LOGED(ERROR, ao->domid, "can't recv msg from kernel by netlink");
goto err;
}
len += ret;
if (mh.msg_flags & MSG_TRUNC) {
size += 16384;
tmp = libxl__realloc(NOGC, tmp, size);
iov.iov_base = tmp + len;
iov.iov_len = size - len;
goto next;
}
*buff = tmp;
ret = len;
goto out;
err:
free(tmp);
*buff = NULL;
out:
if (timeout_us) {
tv.tv_sec = 0;
tv.tv_usec = 0;
setsockopt(cps->sock_fd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv));
}
return ret;
}
/* ========= colo-proxy: setup and teardown ========== */
int colo_proxy_setup(libxl__colo_proxy_state *cps)
{
int skfd = 0;
struct sockaddr_nl sa;
struct nlmsghdr *h;
int i = 1;
int ret = ERROR_FAIL;
uint8_t *buff = NULL;
int64_t size;
STATE_AO_GC(cps->ao);
/* If enable userspace proxy mode, we don't need setup kernel proxy */
if (cps->is_userspace_proxy) {
struct sockaddr_in addr;
int port;
char recvbuff[1024];
const char sendbuf[] = "COLO_USERSPACE_PROXY_INIT";
memset(&addr, 0, sizeof(addr));
port = atoi(cps->checkpoint_port);
addr.sin_family = AF_INET;
addr.sin_port = htons(port);
addr.sin_addr.s_addr = inet_addr(cps->checkpoint_host);
skfd = socket(AF_INET, SOCK_STREAM, 0);
if (skfd < 0) {
LOGD(ERROR, ao->domid, "can not create a TCP socket: %s",
strerror(errno));
goto out;
}
cps->sock_fd = skfd;
if (connect(skfd, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
LOGD(ERROR, ao->domid, "connect error");
goto out;
}
ret = colo_userspace_proxy_send(cps, (uint8_t *)sendbuf, strlen(sendbuf));
if (ret < 0)
goto out;
ret = colo_userspace_proxy_recv(cps, recvbuff, COLO_DEFAULT_WAIT_TIME);
if (ret < 0) {
LOGD(ERROR, ao->domid, "Can't recv msg from qemu colo-compare: %s",
strerror(errno));
goto out;
}
return 0;
}
skfd = socket(PF_NETLINK, SOCK_RAW, NETLINK_COLO);
if (skfd < 0) {
LOGD(ERROR, ao->domid, "can not create a netlink socket: %s", strerror(errno));
goto out;
}
cps->sock_fd = skfd;
memset(&sa, 0, sizeof(sa));
sa.nl_family = AF_NETLINK;
sa.nl_groups = 0;
retry:
sa.nl_pid = i++;
if (i > 10) {
LOGD(ERROR, ao->domid, "netlink bind error");
goto out;
}
ret = bind(skfd, (struct sockaddr *)&sa, sizeof(sa));
if (ret < 0 && errno == EADDRINUSE) {
LOGD(ERROR, ao->domid, "colo index %d has already in used", sa.nl_pid);
goto retry;
} else if (ret < 0) {
LOGD(ERROR, ao->domid, "netlink bind error");
goto out;
}
cps->index = sa.nl_pid;
ret = colo_proxy_send(cps, NULL, 0, COLO_PROXY_INIT);
if (ret < 0)
goto out;
/* receive ack */
size = colo_proxy_recv(cps, &buff, 500000);
if (size < 0) {
LOGD(ERROR, ao->domid, "Can't recv msg from kernel by netlink: %s",
strerror(errno));
goto out;
}
if (size) {
h = (struct nlmsghdr *)buff;
if (h->nlmsg_type == NLMSG_ERROR) {
/* ack's type is NLMSG_ERROR */
struct nlmsgerr *err = (struct nlmsgerr *)NLMSG_DATA(h);
if (size - sizeof(*h) < sizeof(*err)) {
LOGD(ERROR, ao->domid, "NLMSG_LENGTH is too short");
goto out;
}
if (err->error) {
LOGD(ERROR, ao->domid, "NLMSG_ERROR contains error %d", err->error);
goto out;
}
}
}
ret = 0;
out:
free(buff);
if (ret) {
close(cps->sock_fd);
cps->sock_fd = -1;
}
return ret;
}
void colo_proxy_teardown(libxl__colo_proxy_state *cps)
{
/*
* If enable userspace proxy mode,
* we don't need teardown kernel proxy
*/
if (cps->is_userspace_proxy)
return;
if (cps->sock_fd >= 0) {
close(cps->sock_fd);
cps->sock_fd = -1;
}
}
/* ========= colo-proxy: preresume, postresume and checkpoint ========== */
void colo_proxy_preresume(libxl__colo_proxy_state *cps)
{
/*
* If enable userspace proxy mode,
* we don't need preresume kernel proxy
*/
if (cps->is_userspace_proxy) {
const char sendbuf[] = "COLO_CHECKPOINT";
colo_userspace_proxy_send(cps,
(uint8_t *)sendbuf,
strlen(sendbuf));
return;
}
colo_proxy_send(cps, NULL, 0, COLO_CHECKPOINT);
/* TODO: need to handle if the call fails... */
}
void colo_proxy_postresume(libxl__colo_proxy_state *cps)
{
/* nothing to do... */
}
typedef struct colo_msg {
bool is_checkpoint;
} colo_msg;
/*
* Return value:
* -1: error
* 0: no checkpoint event is received before timeout
* 1: do checkpoint
*/
int colo_proxy_checkpoint(libxl__colo_proxy_state *cps,
unsigned int timeout_us)
{
uint8_t *buff = NULL;
int64_t size;
struct nlmsghdr *h;
struct colo_msg *m;
int ret = -1;
char recvbuff[1024];
STATE_AO_GC(cps->ao);
/*
* Enable userspace proxy to periodical checkpoint mode,
* sleeping temporarily for colo userspace proxy mode.
* then we will use socket recv instead of this usleep.
* In other words, we use socket communicate with Qemu
* Proxy part(colo-compare), for example, notify checkpoint
* event.
*/
if (cps->is_userspace_proxy) {
ret = colo_userspace_proxy_recv(cps, recvbuff, timeout_us);
if (ret <= 0) {
ret = 0;
goto out;
}
if (!strcmp(recvbuff, "DO_CHECKPOINT")) {
ret = 1;
} else {
LOGD(ERROR, ao->domid, "receive qemu colo-compare checkpoint error");
ret = 0;
}
goto out;
}
size = colo_proxy_recv(cps, &buff, timeout_us);
/* timeout, return no checkpoint message. */
if (size <= 0) {
ret = 0;
goto out;
}
h = (struct nlmsghdr *) buff;
if (h->nlmsg_type == NLMSG_ERROR) {
LOGD(ERROR, ao->domid, "receive NLMSG_ERROR");
goto out;
}
if (h->nlmsg_len < NLMSG_LENGTH(sizeof(*m))) {
LOGD(ERROR, ao->domid, "NLMSG_LENGTH is too short");
goto out;
}
m = NLMSG_DATA(h);
ret = m->is_checkpoint ? 1 : 0;
out:
free(buff);
return ret;
}
|