]> git.proxmox.com Git - mirror_lxc.git/blame - src/lxc/caps.h
Merge pull request #3059 from brauner/2019-06-21/seccomp_notify
[mirror_lxc.git] / src / lxc / caps.h
CommitLineData
b3357a6f
DL
1/*
2 * lxc: linux Container library
3 *
4 * (C) Copyright IBM Corp. 2007, 2008
5 *
6 * Authors:
9afe19d6 7 * Daniel Lezcano <daniel.lezcano at free.fr>
b3357a6f
DL
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
250b1eec 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
b3357a6f 22 */
ca364dc0 23
74a99f40
LW
24#ifndef __LXC_CAPS_H
25#define __LXC_CAPS_H
26
ca364dc0 27#include <stdbool.h>
495d2046 28
d38dd64a
CB
29#include "config.h"
30
e37dda71 31#if HAVE_LIBCAP
9cd5f7fa 32#include <linux/types.h> /* workaround for libcap < 2.17 bug */
ca364dc0
CB
33#include <sys/capability.h>
34
7d40e69b
DL
35extern int lxc_caps_down(void);
36extern int lxc_caps_up(void);
611ddd34
CB
37extern int lxc_ambient_caps_up(void);
38extern int lxc_ambient_caps_down(void);
7d40e69b 39extern int lxc_caps_init(void);
20d81659 40extern int lxc_caps_last_cap(void);
207c4c71 41extern bool lxc_proc_cap_is_set(cap_value_t cap, cap_flag_t flag);
611ddd34
CB
42extern bool lxc_file_cap_is_set(const char *path, cap_value_t cap,
43 cap_flag_t flag);
495d2046 44#else
611ddd34
CB
45static inline int lxc_caps_down(void)
46{
d028235d 47 return 0;
495d2046 48}
611ddd34
CB
49
50static inline int lxc_caps_up(void)
51{
d028235d 52 return 0;
495d2046 53}
611ddd34
CB
54
55static inline int lxc_ambient_caps_up(void)
56{
57 return 0;
58}
59
60static inline int lxc_ambient_caps_down(void)
61{
62 return 0;
63}
64
65static inline int lxc_caps_init(void)
66{
d028235d 67 return 0;
495d2046 68}
495d2046 69
611ddd34
CB
70static inline int lxc_caps_last_cap(void)
71{
d028235d 72 return 0;
495d2046 73}
ca364dc0
CB
74
75typedef int cap_value_t;
76typedef int cap_flag_t;
611ddd34
CB
77static inline bool lxc_proc_cap_is_set(cap_value_t cap, cap_flag_t flag)
78{
c61079a4 79 return false;
207c4c71
CB
80}
81
611ddd34
CB
82static inline bool lxc_file_cap_is_set(const char *path, cap_value_t cap,
83 cap_flag_t flag)
84{
c61079a4 85 return false;
ca364dc0 86}
495d2046 87#endif
20d81659 88
611ddd34
CB
89#define lxc_priv(__lxc_function) \
90 ({ \
91 __label__ out; \
92 int __ret, __ret2, ___errno = 0; \
93 __ret = lxc_caps_up(); \
94 if (__ret) \
95 goto out; \
96 __ret = __lxc_function; \
97 if (__ret) \
98 ___errno = errno; \
99 __ret2 = lxc_caps_down(); \
100 out: \
101 __ret ? errno = ___errno, __ret : __ret2; \
7d40e69b
DL
102 })
103
611ddd34
CB
104#define lxc_unpriv(__lxc_function) \
105 ({ \
106 __label__ out; \
107 int __ret, __ret2, ___errno = 0; \
108 __ret = lxc_caps_down(); \
109 if (__ret) \
110 goto out; \
111 __ret = __lxc_function; \
112 if (__ret) \
113 ___errno = errno; \
114 __ret2 = lxc_caps_up(); \
115 out: \
116 __ret ? errno = ___errno, __ret : __ret2; \
7d40e69b 117 })
b3357a6f 118#endif