forked from eabatalov/criu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkerndat.c
397 lines (331 loc) · 7.98 KB
/
kerndat.c
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
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
#include <sys/file.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/mman.h>
#include <errno.h>
#include "log.h"
#include "bug.h"
#include "kerndat.h"
#include "fs-magic.h"
#include "mem.h"
#include "compiler.h"
#include "sysctl.h"
#include "syscall.h"
#include "asm/types.h"
#include "cr_options.h"
#include "util.h"
#include "lsm.h"
struct kerndat_s kdat = {
/*
* TCP send receive buffers are calculated
* dynamically by the kernel taking into account
* the size of memory present on the machine.
*
* On machines with huge amount of memory it grants
* up to 4M for sendding buffer and 6M for receiving.
* But in turn for low mem machines these limits
* are quite small down to 16K for sending and
* 87380 for receiving.
*
* We will find out precise limits in tcp_read_sysctl_limits
* but by default lets stick for small data to not fail
* on restore: better to slowdown restore procedure than
* failing completely.
*/
.tcp_max_rshare = 87380,
};
/*
* Anonymous shared mappings are backed by hidden tmpfs
* mount. Find out its dev to distinguish such mappings
* from real tmpfs files maps.
*/
static int kerndat_get_shmemdev(void)
{
void *map;
char maps[128];
struct stat buf;
map = mmap(NULL, PAGE_SIZE, PROT_READ | PROT_WRITE,
MAP_SHARED | MAP_ANONYMOUS, 0, 0);
if (map == MAP_FAILED) {
pr_perror("Can't mmap memory for shmemdev test");
return -1;
}
sprintf(maps, "/proc/self/map_files/%lx-%lx",
(unsigned long)map, (unsigned long)map + page_size());
if (stat(maps, &buf) < 0) {
munmap(map, PAGE_SIZE);
pr_perror("Can't stat self map_files");
return -1;
}
munmap(map, PAGE_SIZE);
kdat.shmem_dev = buf.st_dev;
pr_info("Found anon-shmem device at %"PRIx64"\n", kdat.shmem_dev);
return 0;
}
static dev_t get_host_dev(unsigned int which)
{
static struct kst {
const char *name;
const char *path;
unsigned int magic;
dev_t fs_dev;
} kstat[KERNDAT_FS_STAT_MAX] = {
[KERNDAT_FS_STAT_DEVPTS] = {
.name = "devpts",
.path = "/dev/pts",
.magic = DEVPTS_SUPER_MAGIC,
},
[KERNDAT_FS_STAT_DEVTMPFS] = {
.name = "devtmpfs",
.path = "/dev",
.magic = TMPFS_MAGIC,
},
};
if (which >= KERNDAT_FS_STAT_MAX) {
pr_err("Wrong fs type %u passed\n", which);
return 0;
}
if (kstat[which].fs_dev == 0) {
struct statfs fst;
struct stat st;
if (statfs(kstat[which].path, &fst)) {
pr_perror("Unable to statefs %s", kstat[which].path);
return 0;
}
/*
* XXX: If the fs we need is not there, it still
* may mean that it's virtualized, but just not
* mounted on the host.
*/
if (fst.f_type != kstat[which].magic) {
pr_err("%s isn't mount on the host\n", kstat[which].name);
return 0;
}
if (stat(kstat[which].path, &st)) {
pr_perror("Unable to stat %s", kstat[which].path);
return 0;
}
BUG_ON(st.st_dev == 0);
kstat[which].fs_dev = st.st_dev;
}
return kstat[which].fs_dev;
}
int kerndat_fs_virtualized(unsigned int which, u32 kdev)
{
dev_t host_fs_dev;
host_fs_dev = get_host_dev(which);
if (host_fs_dev == 0)
return -1;
return (kdev_to_odev(kdev) == host_fs_dev) ? 0 : 1;
}
/*
* Check whether pagemap reports soft dirty bit. Kernel has
* this functionality under CONFIG_MEM_SOFT_DIRTY option.
*/
int kerndat_get_dirty_track(void)
{
char *map;
int pm2;
u64 pmap = 0;
int ret = -1;
map = mmap(NULL, PAGE_SIZE, PROT_READ | PROT_WRITE,
MAP_PRIVATE | MAP_ANONYMOUS, 0, 0);
if (map == MAP_FAILED) {
pr_perror("Can't mmap memory for pagemap test");
return ret;
}
/*
* Kernel shows soft-dirty bits only if this soft-dirty
* was at least once re-set. (this is to be removed in
* a couple of kernel releases)
*/
do_task_reset_dirty_track(getpid());
pm2 = open("/proc/self/pagemap", O_RDONLY);
if (pm2 < 0) {
pr_perror("Can't open pagemap file");
munmap(map, PAGE_SIZE);
return ret;
}
map[0] = '\0';
lseek(pm2, (unsigned long)map / PAGE_SIZE * sizeof(u64), SEEK_SET);
ret = read(pm2, &pmap, sizeof(pmap));
if (ret < 0)
pr_perror("Read pmap err!");
close(pm2);
munmap(map, PAGE_SIZE);
if (pmap & PME_SOFT_DIRTY) {
pr_info("Dirty track supported on kernel\n");
kdat.has_dirty_track = true;
} else {
pr_info("Dirty tracking support is OFF\n");
if (opts.track_mem) {
pr_err("Tracking memory is not available\n");
return -1;
}
}
return 0;
}
/*
* Strictly speaking, if there is a machine with huge amount
* of memory, we're allowed to send up to 4M and read up to
* 6M of tcp data at once. But we will figure out precise size
* of a limit a bit later when restore starts.
*
* Meanwhile set it up to 2M and 3M, which is safe enough to
* proceed without errors.
*/
static int tcp_read_sysctl_limits(void)
{
u32 vect[3] = { };
int ret;
struct sysctl_req req[] = {
{ "net/ipv4/tcp_rmem", &vect, CTL_U32A(ARRAY_SIZE(vect)), CTL_FLAGS_OPTIONAL },
};
/*
* Lets figure out which exactly amount of memory is
* availabe for send/read queues on restore.
*/
ret = sysctl_op(req, ARRAY_SIZE(req), CTL_READ, 0);
if (ret || vect[0] == 0) {
pr_warn("TCP mem sysctls are not available. Using defaults.\n");
goto out;
}
kdat.tcp_max_rshare = min(kdat.tcp_max_rshare, (int)vect[2]);
if (kdat.tcp_max_rshare < 128)
pr_warn("The memory limits for TCP queues are suspiciously small\n");
out:
pr_debug("TCP recv queue memory limit is %d\n", kdat.tcp_max_rshare);
return 0;
}
/* The page frame number (PFN) is constant for the zero page */
static int init_zero_page_pfn()
{
void *addr;
int ret;
addr = mmap(NULL, PAGE_SIZE, PROT_READ, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
if (addr == MAP_FAILED) {
pr_perror("Unable to map zero page");
return 0;
}
if (*((int *) addr) != 0) {
BUG();
return -1;
}
ret = vaddr_to_pfn((unsigned long)addr, &kdat.zero_page_pfn);
munmap(addr, PAGE_SIZE);
if (kdat.zero_page_pfn == 0)
ret = -1;
return ret;
}
static int get_last_cap(void)
{
struct sysctl_req req[] = {
{ "kernel/cap_last_cap", &kdat.last_cap, CTL_U32 },
};
return sysctl_op(req, ARRAY_SIZE(req), CTL_READ, 0);
}
static bool kerndat_has_memfd_create(void)
{
int ret;
ret = sys_memfd_create(NULL, 0);
if (ret == -ENOSYS)
kdat.has_memfd = false;
else if (ret == -EFAULT)
kdat.has_memfd = true;
else {
pr_err("Unexpected error %d from memfd_create(NULL, 0)\n", ret);
return -1;
}
return 0;
}
static int get_task_size(void)
{
kdat.task_size = task_size();
pr_debug("Found task size of %lx\n", kdat.task_size);
return 0;
}
int kerndat_fdinfo_has_lock()
{
int fd, pfd = -1, exit_code = -1, len;
char buf[PAGE_SIZE];
fd = open("/proc/locks", O_RDONLY);
if (fd < 0) {
pr_perror("Unable to open /proc/locks");
return -1;
}
if (flock(fd, LOCK_SH)) {
pr_perror("Can't take a lock");
goto out;
}
pfd = open_proc(PROC_SELF, "fdinfo/%d", fd);
if (pfd < 0)
goto out;
len = read(pfd, buf, sizeof(buf) - 1);
if (len < 0) {
pr_perror("Unable to read");
goto out;
}
buf[len] = 0;
kdat.has_fdinfo_lock = (strstr(buf, "lock:") != NULL);
exit_code = 0;
out:
close(pfd);
close(fd);
return exit_code;
}
static int get_ipv6()
{
if (access("/proc/sys/net/ipv6", F_OK) < 0) {
if (errno == ENOENT) {
pr_debug("ipv6 is disabled\n");
kdat.ipv6 = false;
return 0;
}
pr_perror("Unable to access /proc/sys/net/ipv6");
return -1;
}
kdat.ipv6 = true;
return 0;
}
int kerndat_init(void)
{
int ret;
ret = kerndat_get_shmemdev();
if (!ret)
ret = kerndat_get_dirty_track();
if (!ret)
ret = init_zero_page_pfn();
if (!ret)
ret = get_last_cap();
if (!ret)
ret = kerndat_fdinfo_has_lock();
if (!ret)
ret = get_task_size();
if (!ret)
ret = get_ipv6();
kerndat_lsm();
return ret;
}
int kerndat_init_rst(void)
{
int ret;
/*
* Read TCP sysctls before anything else,
* since the limits we're interested in are
* not available inside namespaces.
*/
ret = tcp_read_sysctl_limits();
if (!ret)
ret = get_last_cap();
if (!ret)
ret = kerndat_has_memfd_create();
if (!ret)
ret = get_task_size();
if (!ret)
ret = get_ipv6();
kerndat_lsm();
return ret;
}