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
|
/*
* capabilities.c
* potd is licensed under the BSD license:
*
* Copyright (c) 2018 Toni Uhlig <matzeton@googlemail.com>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* - The names of its contributors may not be used to endorse or promote
* products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <ctype.h>
#include <assert.h>
#include <errno.h>
#include <linux/capability.h>
#include <sys/prctl.h>
#include "capabilities.h"
#include "utils.h"
#include "log.h"
typedef struct {
const char *name;
int nr;
} CapsEntry;
static CapsEntry capslist[] = {
#ifdef CAP_CHOWN
{"chown", CAP_CHOWN },
#endif
#ifdef CAP_DAC_OVERRIDE
{"dac_override", CAP_DAC_OVERRIDE },
#endif
#ifdef CAP_DAC_READ_SEARCH
{"dac_read_search", CAP_DAC_READ_SEARCH },
#endif
#ifdef CAP_FOWNER
{"fowner", CAP_FOWNER },
#endif
#ifdef CAP_FSETID
{"fsetid", CAP_FSETID },
#endif
#ifdef CAP_KILL
{"kill", CAP_KILL },
#endif
#ifdef CAP_SETGID
{"setgid", CAP_SETGID },
#endif
#ifdef CAP_SETUID
{"setuid", CAP_SETUID },
#endif
#ifdef CAP_SETPCAP
{"setpcap", CAP_SETPCAP },
#endif
#ifdef CAP_LINUX_IMMUTABLE
{"linux_immutable", CAP_LINUX_IMMUTABLE },
#endif
#ifdef CAP_NET_BIND_SERVICE
{"net_bind_service", CAP_NET_BIND_SERVICE },
#endif
#ifdef CAP_NET_BROADCAST
{"net_broadcast", CAP_NET_BROADCAST },
#endif
#ifdef CAP_NET_ADMIN
{"net_admin", CAP_NET_ADMIN },
#endif
#ifdef CAP_NET_RAW
{"net_raw", CAP_NET_RAW },
#endif
#ifdef CAP_IPC_LOCK
{"ipc_lock", CAP_IPC_LOCK },
#endif
#ifdef CAP_IPC_OWNER
{"ipc_owner", CAP_IPC_OWNER },
#endif
#ifdef CAP_SYS_MODULE
{"sys_module", CAP_SYS_MODULE },
#endif
#ifdef CAP_SYS_RAWIO
{"sys_rawio", CAP_SYS_RAWIO },
#endif
#ifdef CAP_SYS_CHROOT
{"sys_chroot", CAP_SYS_CHROOT },
#endif
#ifdef CAP_SYS_PTRACE
{"sys_ptrace", CAP_SYS_PTRACE },
#endif
#ifdef CAP_SYS_PACCT
{"sys_pacct", CAP_SYS_PACCT },
#endif
#ifdef CAP_SYS_ADMIN
{"sys_admin", CAP_SYS_ADMIN },
#endif
#ifdef CAP_SYS_BOOT
{"sys_boot", CAP_SYS_BOOT },
#endif
#ifdef CAP_SYS_NICE
{"sys_nice", CAP_SYS_NICE },
#endif
#ifdef CAP_SYS_RESOURCE
{"sys_resource", CAP_SYS_RESOURCE },
#endif
#ifdef CAP_SYS_TIME
{"sys_time", CAP_SYS_TIME },
#endif
#ifdef CAP_SYS_TTY_CONFIG
{"sys_tty_config", CAP_SYS_TTY_CONFIG },
#endif
#ifdef CAP_MKNOD
{"mknod", CAP_MKNOD },
#endif
#ifdef CAP_LEASE
{"lease", CAP_LEASE },
#endif
#ifdef CAP_AUDIT_WRITE
{"audit_write", CAP_AUDIT_WRITE },
#endif
#ifdef CAP_AUDIT_CONTROL
{"audit_control", CAP_AUDIT_CONTROL },
#endif
#ifdef CAP_SETFCAP
{"setfcap", CAP_SETFCAP },
#endif
#ifdef CAP_MAC_OVERRIDE
{"mac_override", CAP_MAC_OVERRIDE },
#endif
#ifdef CAP_MAC_ADMIN
{"mac_admin", CAP_MAC_ADMIN },
#endif
#ifdef CAP_SYSLOG
{"syslog", CAP_SYSLOG },
#endif
#ifdef CAP_WAKE_ALARM
{"wake_alarm", CAP_WAKE_ALARM },
#endif
#ifdef CAP_BLOCK_SUSPEND
{"block_suspend", CAP_BLOCK_SUSPEND },
#else
{"block_suspend", 36 },
#endif
#ifdef CAP_AUDIT_READ
{"audit_read", CAP_AUDIT_READ },
#else
{"audit_read", 37 },
#endif
}; // end of capslist
static int caps_find_name(const char *name)
{
int i;
int elems = SIZEOF(capslist);
for (i = 0; i < elems; i++) {
if (strcmp(name, capslist[i].name) == 0)
return capslist[i].nr;
}
W2("Capability \"%s\" not found or not available on your system", name);
return -1;
}
void caps_check_list(const char *clist, void (*callback)(int))
{
char *str;
char *ptr;
char *start;
int nr;
assert(clist && *clist != '\0');
str = strdup(clist);
assert(str);
ptr = str;
start = str;
while (*ptr != '\0') {
if (islower(*ptr) || isdigit(*ptr) || *ptr == '_') {
} else if (*ptr == ',') {
*ptr = '\0';
nr = caps_find_name(start);
if (nr == -1)
goto errexit;
else if (callback != NULL)
callback(nr);
start = ptr + 1;
}
ptr++;
}
if (*start != '\0') {
nr = caps_find_name(start);
if (nr == -1)
goto errexit;
else if (callback != NULL)
callback(nr);
}
free(str);
return;
errexit:
E2("Error: capability \"%s\" not found", start);
exit(EXIT_FAILURE);
}
void caps_print(void)
{
int i;
int elems = SIZEOF(capslist);
int cnt = 0;
unsigned long cap;
int code;
for (cap=0; cap <= 63; cap++) {
code = prctl(PR_CAPBSET_DROP, cap, 0, 0, 0);
if (code == 0)
cnt++;
}
D("Your kernel supports %d capabilities.", cnt);
for (i = 0; i < elems; i++) {
D("%d\t- %s", capslist[i].nr, capslist[i].name);
}
}
void caps_drop_dac_override(int noprofile)
{
if (getuid() == 0 && !noprofile) {
if (prctl(PR_CAPBSET_DROP, CAP_DAC_OVERRIDE, 0, 0, 0)) {
} else {
D2("%s", "Drop CAP_DAC_OVERRIDE");
}
if (prctl(PR_CAPBSET_DROP, CAP_DAC_READ_SEARCH, 0, 0, 0)) {
} else {
D2("%s", "Drop CAP_DAC_READ_SEARCH");
}
}
}
int caps_default_filter(void)
{
size_t i;
int code;
const char *const capstrs[] = {
"sys_module", "sys_rawio", "sys_boot",
"sys_nice", "sys_tty_config",
"mknod", "sys_admin", "sys_resource",
"sys_time"
};
for (i = 0; i < SIZEOF(capstrs); ++i ) {
code = caps_find_name(capstrs[i]);
if (code < 0)
goto errexit;
if (prctl(PR_CAPBSET_DROP, code, 0, 0, 0) < 0)
goto errexit;
}
return 0;
errexit:
E("%s", "Can not drop capabilities");
exit(EXIT_FAILURE);
}
int caps_jail_filter(void)
{
size_t i;
int code;
const char *const capstrs[] = {
#ifdef CAP_SYSLOG
"syslog",
#endif
"audit_control", "audit_read", "audit_write",
"sys_ptrace", "sys_pacct", "sys_chroot", "sys_nice",
"sys_tty_config"
};
for (i = 0; i < SIZEOF(capstrs); ++i) {
code = caps_find_name(capstrs[i]);
if (code < 0)
goto errexit;
if (prctl(PR_CAPBSET_DROP, code, 0, 0, 0) < 0)
goto errexit;
}
return 0;
errexit:
E("%s", "Can not drop capabilities");
exit(EXIT_FAILURE);
}
void caps_drop_all(void)
{
unsigned long cap;
int code;
D("%s", "Dropping all capabilities");
for (cap = 0; cap <= 63; cap++) {
code = prctl(PR_CAPBSET_DROP, cap, 0, 0, 0);
if (code == -1 && errno != EINVAL) {
FATAL("%s", "PR_CAPBSET_DROP");
}
}
}
void caps_set(uint64_t caps)
{
unsigned long i;
uint64_t mask = 1LLU;
int code;
D("Set caps filter %llx\n", (unsigned long long) caps);
for (i = 0; i < 64; i++, mask <<= 1) {
if ((mask & caps) == 0) {
code = prctl(PR_CAPBSET_DROP, i, 0, 0, 0);
if (code == -1 && errno != EINVAL)
FATAL("%s", "PR_CAPBSET_DROP");
}
}
}
static uint64_t filter;
static void caps_set_bit(int nr)
{
uint64_t mask = 1LLU << nr;
filter |= mask;
}
static void caps_reset_bit(int nr)
{
uint64_t mask = 1LLU << nr;
filter &= ~mask;
}
void caps_drop_list(const char *clist)
{
filter = 0;
filter--;
caps_check_list(clist, caps_reset_bit);
caps_set(filter);
}
void caps_keep_list(const char *clist)
{
filter = 0;
caps_check_list(clist, caps_set_bit);
caps_set(filter);
}
|