1 // SPDX-License-Identifier: GPL-2.0
3 #include <linux/capability.h>
10 #include "../kselftest.h"
12 #ifndef PR_CAP_AMBIENT
13 #define PR_CAP_AMBIENT 47
14 # define PR_CAP_AMBIENT_IS_SET 1
15 # define PR_CAP_AMBIENT_RAISE 2
16 # define PR_CAP_AMBIENT_LOWER 3
17 # define PR_CAP_AMBIENT_CLEAR_ALL 4
20 #if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 19)
21 # define HAVE_GETAUXVAL
24 static bool bool_arg(char **argv
, int i
)
26 if (!strcmp(argv
[i
], "0"))
28 else if (!strcmp(argv
[i
], "1"))
31 ksft_exit_fail_msg("wrong argv[%d]\n", i
);
36 int main(int argc
, char **argv
)
38 const char *atsec
= "";
41 * Be careful just in case a setgid or setcapped copy of this
46 ksft_exit_fail_msg("wrong argc\n");
49 if (getauxval(AT_SECURE
))
50 atsec
= " (AT_SECURE is set)";
52 atsec
= " (AT_SECURE is not set)";
55 capng_get_caps_process();
57 if (capng_have_capability(CAPNG_EFFECTIVE
, CAP_NET_BIND_SERVICE
) != bool_arg(argv
, 1)) {
58 ksft_print_msg("Wrong effective state%s\n", atsec
);
62 if (capng_have_capability(CAPNG_PERMITTED
, CAP_NET_BIND_SERVICE
) != bool_arg(argv
, 2)) {
63 ksft_print_msg("Wrong permitted state%s\n", atsec
);
67 if (capng_have_capability(CAPNG_INHERITABLE
, CAP_NET_BIND_SERVICE
) != bool_arg(argv
, 3)) {
68 ksft_print_msg("Wrong inheritable state%s\n", atsec
);
72 if (prctl(PR_CAP_AMBIENT
, PR_CAP_AMBIENT_IS_SET
, CAP_NET_BIND_SERVICE
, 0, 0, 0) != bool_arg(argv
, 4)) {
73 ksft_print_msg("Wrong ambient state%s\n", atsec
);
77 ksft_print_msg("%s: Capabilities after execve were correct\n",