-
Notifications
You must be signed in to change notification settings - Fork 12
/
ns.c
170 lines (149 loc) · 4.31 KB
/
ns.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
/* Copyright © 2020 Arista Networks, Inc. All rights reserved.
*
* Use of this source code is governed by the MIT license that can be found
* in the LICENSE file.
*/
#include <err.h>
#include <errno.h>
#include <fcntl.h>
#include <sched.h>
#include <stdlib.h>
#include "capable.h"
#include "enter.h"
#include "ns.h"
#include "path.h"
#include "util.h"
static struct {
int flag;
const char *proc_ns_name;
} flags[] = {
[NS_CGROUP] = { BST_CLONE_NEWCGROUP, "cgroup" },
[NS_IPC] = { BST_CLONE_NEWIPC, "ipc", },
[NS_MNT] = { BST_CLONE_NEWNS, "mnt" },
[NS_NET] = { BST_CLONE_NEWNET, "net" },
[NS_PID] = { BST_CLONE_NEWPID, "pid" },
[NS_TIME] = { BST_CLONE_NEWTIME, "time" },
[NS_USER] = { BST_CLONE_NEWUSER, "user" },
[NS_UTS] = { BST_CLONE_NEWUTS, "uts" },
};
const char *ns_name(enum nstype ns)
{
return flags[ns].proc_ns_name;
}
int ns_cloneflag(enum nstype ns)
{
return flags[ns].flag;
}
static bool is_nsfd_current(int nsfd, const char *name)
{
const char *path = makepath("/proc/self/ns/%s", name);
struct stat self;
if (stat(path, &self) == -1) {
if (errno == ENOENT) {
/* This namespace is unsupported. */
return false;
}
err(1, "stat %s", path);
}
struct stat stat;
if (fstat(nsfd, &stat) == -1) {
err(1, "fstat %s nsfs", name);
}
return self.st_ino == stat.st_ino;
}
void opts_to_nsactions(const char *shares[], enum nsaction *nsactions)
{
for (enum nstype ns = 0; ns < MAX_NS; ns++) {
const char *share = shares[ns];
if (share == NULL) {
nsactions[ns] = NSACTION_UNSHARE;
} else if (share == SHARE_WITH_PARENT) {
nsactions[ns] = NSACTION_SHARE_WITH_PARENT;
} else {
nsactions[ns] = open(share, O_RDONLY | O_CLOEXEC);
if (nsactions[ns] < 0) {
err(1, "open %s", share);
}
/* If the nsfd refers to the same namespace as the one we are
currently in, treat as for SHARE_WITH_PARENT.
We want to give semantics to --share <ns>=/proc/self/ns/<ns>
being the same as --share <ns>. */
if (is_nsfd_current(nsactions[ns], ns_name(ns))) {
close(nsactions[ns]);
nsactions[ns] = NSACTION_SHARE_WITH_PARENT;
}
}
}
}
struct nsid {
int ns;
enum nsaction action;
};
static int is_setns(const struct nsid *ns)
{
switch (ns->action) {
case NSACTION_UNSHARE:
case NSACTION_SHARE_WITH_PARENT:
return 0;
default:
return 1;
}
}
/* cmp_nsids compares two ns IDs in a stable manner, such that
namespaces that are entered via setns are sorted before those that
are entered via unshare (or not changed at all). */
static int cmp_nsids(const void *lhs, const void *rhs)
{
int diff = is_setns(rhs) - is_setns(lhs);
if (diff != 0) {
return diff;
}
/* Both namespaces are the same kind -- keep ordering intact by comparing
pointer values. */
return (int) ((intptr_t) lhs - (intptr_t) rhs);
}
void ns_enter(enum nsaction *nsactions)
{
/* Enter all relevant namespaces. It's hard to check in advance which
namespaces are supported, so we unshare them one by one in order. */
struct nsid namespaces[] = {
/* User namespace must be entered first and foremost. */
{ NS_USER, nsactions[NS_USER] },
{ NS_NET, nsactions[NS_NET] },
{ NS_MNT, nsactions[NS_MNT] },
{ NS_IPC, nsactions[NS_IPC] },
{ NS_PID, nsactions[NS_PID] },
{ NS_CGROUP, nsactions[NS_CGROUP] },
{ NS_UTS, nsactions[NS_UTS] },
{ NS_TIME, nsactions[NS_TIME] },
};
/* If we have CAP_SYS_ADMIN from the get-go, starting by entering
the userns may restrict us from joining additional namespaces, so
we rearrange the order so that we setns into target nsfs files first. */
if (capable(BST_CAP_SYS_ADMIN)) {
qsort(namespaces, lengthof(namespaces), sizeof (namespaces[0]),
cmp_nsids);
}
for (struct nsid *ns = &namespaces[0]; ns < namespaces + lengthof(namespaces); ++ns) {
switch (ns->action) {
case NSACTION_UNSHARE:
if (unshare(flags[ns->ns].flag) == -1) {
if (errno == EINVAL) {
/* We realized that the namespace isn't supported -- remove it
from the unshare set. */
nsactions[ns->ns] = NSACTION_SHARE_WITH_PARENT;
} else {
err(1, "unshare %s", flags[ns->ns].proc_ns_name);
}
}
break;
case NSACTION_SHARE_WITH_PARENT:
break;
default:
if (setns(ns->action, flags[ns->ns].flag) == -1) {
err(1, "setns %s", flags[ns->ns].proc_ns_name);
}
break;
}
}
}