forked from checkpoint-restore/criu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tun.c
494 lines (395 loc) · 10 KB
/
tun.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
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
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
#include <unistd.h>
#include <sys/socket.h>
#include <linux/if.h>
#include <linux/if_tun.h>
#include <sys/ioctl.h>
#include "cr_options.h"
#include "fdset.h"
#include "protobuf.h"
#include "cr-show.h"
#include "string.h"
#include "files.h"
#include "files-reg.h"
#include "tun.h"
#include "net.h"
#include "namespaces.h"
#include "protobuf/tun.pb-c.h"
#ifndef IFF_PERSIST
#define IFF_PERSIST 0x0800
#endif
#ifndef IFF_NOFILTER
#define IFF_NOFILTER 0x1000
#endif
#ifndef TUNSETQUEUE
#define TUNSETQUEUE _IOW('T', 217, int)
#define IFF_ATTACH_QUEUE 0x0200
#define IFF_DETACH_QUEUE 0x0400
#endif
/*
* Absense of the 1st ioctl means we cannot restore tun link. But
* since the 2nd one appeared at the same time, we'll "check" this
* by trying to dump filter and abort dump if it's not there.
*/
#ifndef TUNSETIFINDEX
#define TUNSETIFINDEX _IOW('T', 218, unsigned int)
#endif
#ifndef TUNGETFILTER
#define TUNGETFILTER _IOR('T', 219, struct sock_fprog)
#endif
#define TUN_DEV_GEN_PATH "/dev/net/tun"
int check_tun(void)
{
int fd, idx = 13, ret;
if (opts.check_ms_kernel) {
pr_warn("Skipping tun support check\n");
return 0;
}
fd = open(TUN_DEV_GEN_PATH, O_RDWR);
if (fd < 0) {
pr_perror("Can't check tun support");
return 0;
}
ret = ioctl(fd, TUNSETIFINDEX, &idx);
if (ret < 0)
pr_perror("No proper support for tun dump/restore");
close(fd);
return ret;
}
static LIST_HEAD(tun_links);
struct tun_link {
char name[IFNAMSIZ];
struct list_head l;
union {
struct {
unsigned flags;
} rst;
struct {
unsigned sndbuf;
unsigned vnethdr;
} dmp;
};
};
static int list_tun_link(NetDeviceEntry *nde)
{
struct tun_link *tl;
tl = xmalloc(sizeof(*tl));
if (!tl)
return -1;
strlcpy(tl->name, nde->name, sizeof(tl->name));
/*
* Keep tun-flags not only for persistency fixup (see
* commend below), but also for TUNSETIFF -- we must
* open the device with the same flags it should live
* with (i.e. -- with which it was created.
*/
tl->rst.flags = nde->tun->flags;
list_add_tail(&tl->l, &tun_links);
return 0;
}
static struct tun_link *find_tun_link(char *name)
{
struct tun_link *tl;
list_for_each_entry(tl, &tun_links, l)
if (!strcmp(tl->name, name))
return tl;
return NULL;
}
static struct tun_link *__dump_tun_link_fd(int fd, char *name, unsigned flags)
{
struct tun_link *tl;
struct sock_fprog flt;
tl = xmalloc(sizeof(*tl));
if (!tl)
goto err;
strlcpy(tl->name, name, sizeof(tl->name));
if (ioctl(fd, TUNGETVNETHDRSZ, &tl->dmp.vnethdr) < 0) {
pr_perror("Can't dump vnethdr size for %s", name);
goto err;
}
if (ioctl(fd, TUNGETSNDBUF, &tl->dmp.sndbuf) < 0) {
pr_perror("Can't dump sndbuf for %s", name);
goto err;
}
if (flags & IFF_TAP) {
pr_debug("Checking filter for tap %s\n", name);
if (ioctl(fd, TUNGETFILTER, &flt) < 0) {
pr_perror("Can't get tun filter for %s", name);
goto err;
}
/*
* TUN filters are tricky -- the program itself is 'somewhere'
* in the task's memory, so we can't get one for unattached
* persistent device. The only way for doing it is opening the
* device with IFF_NOFILTER and attaching some fake one :(
*/
if (flt.len != 0) {
pr_err("Can't dump %s with filter on-board\n", name);
goto err;
}
} else if (!(flags & IFF_NOFILTER)) {
pr_err("No info about %s filter, kernel is too old\n", name);
goto err;
}
return tl;
err:
xfree(tl);
return NULL;
}
static struct tun_link *dump_tun_link_fd(int fd, char *name, unsigned flags)
{
struct tun_link *tl;
tl = find_tun_link(name);
if (tl)
return tl;
tl = __dump_tun_link_fd(fd, name, flags);
if (tl)
/*
* Keep this in list till links dumping code starts.
* We can't let it dump all this stuff itself, since
* multiple attaches to one tun device is limited and
* we may not be able to it that late.
*
* For persistent detached devices the get_tun_link_fd
* will attach to the device and get the needed stuff.
*/
list_add(&tl->l, &tun_links);
return tl;
}
static int open_tun_dev(char *name, unsigned int idx, unsigned flags)
{
int fd;
struct ifreq ifr;
fd = open(TUN_DEV_GEN_PATH, O_RDWR);
if (fd < 0) {
pr_perror("Can't open tun device");
return -1;
}
if (idx) {
pr_debug(" restoring %u for %s tun\n", idx, name);
if (ioctl(fd, TUNSETIFINDEX, &idx) < 0) {
pr_perror("Can't restore tun's index");
goto err;
}
}
memset(&ifr, 0, sizeof(ifr));
strlcpy(ifr.ifr_name, name, sizeof(ifr.ifr_name));
ifr.ifr_flags = flags;
if (ioctl(fd, TUNSETIFF, &ifr)) {
pr_perror("Can't create tun device");
goto err;
}
return fd;
err:
close(fd);
return -1;
}
static struct tun_link *get_tun_link_fd(char *name, unsigned flags)
{
struct tun_link *tl;
int fd;
tl = find_tun_link(name);
if (tl)
return tl;
/*
* If we haven't found this thing, then the
* device we see via netlink exists w/o any fds
* attached, i.e. -- it's persistent
*/
if (!(flags & IFF_PERSIST)) {
pr_err("No fd infor for non persistent tun device %s\n", name);
return NULL;
}
/*
* Kernel will try to attach filter (if it exists) to our memory,
* avoid this.
*/
flags |= IFF_NOFILTER;
fd = open_tun_dev(name, 0, flags);
if (fd < 0)
return NULL;
tl = __dump_tun_link_fd(fd, name, flags);
close(fd);
return tl;
}
static int dump_tunfile(int lfd, u32 id, const struct fd_parms *p)
{
int ret, img = fdset_fd(glob_fdset, CR_FD_TUNFILE);
TunfileEntry tfe = TUNFILE_ENTRY__INIT;
struct ifreq ifr;
if (!(current_ns_mask & CLONE_NEWNET)) {
pr_err("Net namespace is required to dump tun link\n");
return -1;
}
if (dump_one_reg_file(lfd, id, p))
return -1;
pr_info("Dumping tun-file %d with id %#x\n", lfd, id);
tfe.id = id;
ret = ioctl(lfd, TUNGETIFF, &ifr);
if (ret < 0) {
if (errno != EBADFD) {
pr_perror("Can't dump tun-file device");
return -1;
}
/*
* Otherwise this is just opened file with not yet attached
* tun device. Go agead an write the respective entry.
*/
} else {
tfe.netdev = ifr.ifr_name;
pr_info("`- attached to device %s (flags %x)\n", tfe.netdev, ifr.ifr_flags);
if (ifr.ifr_flags & IFF_DETACH_QUEUE) {
tfe.has_detached = true;
tfe.detached = true;
}
if (dump_tun_link_fd(lfd, tfe.netdev, ifr.ifr_flags) == NULL)
return -1;
}
return pb_write_one(img, &tfe, PB_TUNFILE);
}
const struct fdtype_ops tunfile_dump_ops = {
.type = FD_TYPES__TUN,
.dump = dump_tunfile,
};
struct tunfile_info {
struct file_desc d;
TunfileEntry *tfe;
};
static int tunfile_open(struct file_desc *d)
{
int fd;
struct tunfile_info *ti;
struct ifreq ifr;
struct tun_link *tl;
ti = container_of(d, struct tunfile_info, d);
fd = open_reg_by_id(ti->tfe->id);
if (fd < 0)
return -1;
if (!ti->tfe->netdev)
/* just-opened tun file */
return fd;
tl = find_tun_link(ti->tfe->netdev);
if (!tl) {
pr_err("No tun device for file %s\n", ti->tfe->netdev);
return -1;
}
memset(&ifr, 0, sizeof(ifr));
strlcpy(ifr.ifr_name, tl->name, sizeof(ifr.ifr_name));
ifr.ifr_flags = tl->rst.flags;
if (ioctl(fd, TUNSETIFF, &ifr) < 0) {
pr_perror("Can't attach tunfile to device");
goto err;
}
if (ti->tfe->has_detached && ti->tfe->detached) {
pr_info("Detaching from %s queue\n", ti->tfe->netdev);
ifr.ifr_flags = IFF_DETACH_QUEUE;
if (ioctl(fd, TUNSETQUEUE, &ifr) < 0) {
pr_perror("Can't detach queue");
goto err;
}
}
if (!(tl->rst.flags & IFF_PERSIST)) {
pr_info("Dropping persistency for %s\n", tl->name);
if (ioctl(fd, TUNSETPERSIST, 0) < 0) {
pr_perror("Error dropping persistency");
goto err;
}
}
return fd;
err:
close(fd);
return -1;
}
static struct file_desc_ops tunfile_desc_ops = {
.type = FD_TYPES__TUN,
.open = tunfile_open,
};
static int collect_one_tunfile(void *o, ProtobufCMessage *base)
{
struct tunfile_info *ti = o;
ti->tfe = pb_msg(base, TunfileEntry);
file_desc_add(&ti->d, ti->tfe->id, &tunfile_desc_ops);
pr_info("Collected %s tunfile\n", ti->tfe->netdev);
return 0;
}
struct collect_image_info tunfile_cinfo = {
.fd_type = CR_FD_TUNFILE,
.pb_type = PB_TUNFILE,
.priv_size = sizeof(struct tunfile_info),
.collect = collect_one_tunfile,
.flags = COLLECT_OPTIONAL,
};
int dump_tun_link(NetDeviceEntry *nde, struct cr_fdset *fds)
{
TunLinkEntry tle = TUN_LINK_ENTRY__INIT;
char spath[64];
char buf[64];
int ret = 0;
struct tun_link *tl;
sprintf(spath, "class/net/%s/tun_flags", nde->name);
ret |= read_ns_sys_file(spath, buf, sizeof(buf));
tle.flags = strtol(buf, NULL, 0);
sprintf(spath, "class/net/%s/owner", nde->name);
ret |= read_ns_sys_file(spath, buf, sizeof(buf));
tle.owner = strtol(buf, NULL, 10);
sprintf(spath, "class/net/%s/group", nde->name);
ret |= read_ns_sys_file(spath, buf, sizeof(buf));
tle.group = strtol(buf, NULL, 10);
if (ret < 0)
return ret;
tl = get_tun_link_fd(nde->name, tle.flags);
if (!tl)
return ret;
tle.vnethdr = tl->dmp.vnethdr;
tle.sndbuf = tl->dmp.sndbuf;
nde->tun = &tle;
return write_netdev_img(nde, fds);
}
int restore_one_tun(NetDeviceEntry *nde, int nlsk)
{
int fd, ret = -1, aux;
if (!nde->tun) {
pr_err("Corrupted TUN link entry %x\n", nde->ifindex);
return -1;
}
pr_info("Restoring tun device %s\n", nde->name);
fd = open_tun_dev(nde->name, nde->ifindex, nde->tun->flags);
if (fd < 0)
return -1;
aux = nde->tun->owner;
if ((aux != -1) && ioctl(fd, TUNSETOWNER, aux) < 0) {
pr_perror("Can't set owner");
goto out;
}
aux = nde->tun->group;
if ((aux != -1) && ioctl(fd, TUNSETGROUP, aux) < 0) {
pr_perror("Can't set group");
goto out;
}
aux = nde->tun->sndbuf;
if (ioctl(fd, TUNSETSNDBUF, &aux) < 0) {
pr_perror("Can't set sndbuf");
goto out;
}
aux = nde->tun->vnethdr;
if (ioctl(fd, TUNSETVNETHDRSZ, &aux) < 0) {
pr_perror("Can't set vnethdr");
goto out;
}
/*
* Set this device persistent anyway and schedule
* the persistence drop if it should not be such.
* The first _real_ opener will do it.
*/
if (ioctl(fd, TUNSETPERSIST, 1)) {
pr_perror("Can't make tun device persistent");
goto out;
}
if (restore_link_parms(nde, nlsk)) {
pr_err("Error restoring %s link params\n", nde->name);
goto out;
}
ret = list_tun_link(nde);
out:
close(fd);
return ret;
}