Move CAP_* definitions out to header files
* Makefile.am (strace_SOURCES): Add caps0.h and caps1.h. * caps0.h: New file. * caps1.h: New file. * capability.c: Remove CAP_* definitions, include "caps0.h" and "caps1.h" instead. Include "xlat/cap_mask0.h" instead of "xlat/capabilities.h". Include "xlat/cap_mask1.h" instead of "xlat/capabilities1.h". (print_cap_bits): Update callers. * xlat/capabilities.in: Rename to xlat/cap_mask0.in. * xlat/capabilities1.in: Rename to xlat/cap_mask1.in.
This commit is contained in:
parent
f523f103cc
commit
2f0808b88e
@ -33,6 +33,8 @@ strace_SOURCES = \
|
||||
block.c \
|
||||
cacheflush.c \
|
||||
capability.c \
|
||||
caps0.h \
|
||||
caps1.h \
|
||||
chdir.c \
|
||||
chmod.c \
|
||||
clone.c \
|
||||
|
48
capability.c
48
capability.c
@ -2,53 +2,17 @@
|
||||
|
||||
/* these constants are the same as in <linux/capability.h> */
|
||||
enum {
|
||||
CAP_CHOWN,
|
||||
CAP_DAC_OVERRIDE,
|
||||
CAP_DAC_READ_SEARCH,
|
||||
CAP_FOWNER,
|
||||
CAP_FSETID,
|
||||
CAP_KILL,
|
||||
CAP_SETGID,
|
||||
CAP_SETUID,
|
||||
CAP_SETPCAP,
|
||||
CAP_LINUX_IMMUTABLE,
|
||||
CAP_NET_BIND_SERVICE,
|
||||
CAP_NET_BROADCAST,
|
||||
CAP_NET_ADMIN,
|
||||
CAP_NET_RAW,
|
||||
CAP_IPC_LOCK,
|
||||
CAP_IPC_OWNER,
|
||||
CAP_SYS_MODULE,
|
||||
CAP_SYS_RAWIO,
|
||||
CAP_SYS_CHROOT,
|
||||
CAP_SYS_PTRACE,
|
||||
CAP_SYS_PACCT,
|
||||
CAP_SYS_ADMIN,
|
||||
CAP_SYS_BOOT,
|
||||
CAP_SYS_NICE,
|
||||
CAP_SYS_RESOURCE,
|
||||
CAP_SYS_TIME,
|
||||
CAP_SYS_TTY_CONFIG,
|
||||
CAP_MKNOD,
|
||||
CAP_LEASE,
|
||||
CAP_AUDIT_WRITE,
|
||||
CAP_AUDIT_CONTROL,
|
||||
CAP_SETFCAP
|
||||
#include "caps0.h"
|
||||
};
|
||||
|
||||
#include "xlat/capabilities.h"
|
||||
#include "xlat/cap_mask0.h"
|
||||
|
||||
/* these constants are CAP_TO_INDEX'ed constants from <linux/capability.h> */
|
||||
enum {
|
||||
CAP_MAC_OVERRIDE,
|
||||
CAP_MAC_ADMIN,
|
||||
CAP_SYSLOG,
|
||||
CAP_WAKE_ALARM,
|
||||
CAP_BLOCK_SUSPEND,
|
||||
CAP_AUDIT_READ
|
||||
#include "caps1.h"
|
||||
};
|
||||
|
||||
#include "xlat/capabilities1.h"
|
||||
#include "xlat/cap_mask1.h"
|
||||
|
||||
/* these constants are the same as in <linux/capability.h> */
|
||||
enum {
|
||||
@ -107,12 +71,12 @@ static void
|
||||
print_cap_bits(const uint32_t lo, const uint32_t hi)
|
||||
{
|
||||
if (lo || !hi)
|
||||
printflags(capabilities, lo, "CAP_???");
|
||||
printflags(cap_mask0, lo, "CAP_???");
|
||||
|
||||
if (hi) {
|
||||
if (lo)
|
||||
tprints("|");
|
||||
printflags(capabilities1, hi, "CAP_???");
|
||||
printflags(cap_mask1, hi, "CAP_???");
|
||||
}
|
||||
}
|
||||
|
||||
|
32
caps0.h
Normal file
32
caps0.h
Normal file
@ -0,0 +1,32 @@
|
||||
CAP_CHOWN,
|
||||
CAP_DAC_OVERRIDE,
|
||||
CAP_DAC_READ_SEARCH,
|
||||
CAP_FOWNER,
|
||||
CAP_FSETID,
|
||||
CAP_KILL,
|
||||
CAP_SETGID,
|
||||
CAP_SETUID,
|
||||
CAP_SETPCAP,
|
||||
CAP_LINUX_IMMUTABLE,
|
||||
CAP_NET_BIND_SERVICE,
|
||||
CAP_NET_BROADCAST,
|
||||
CAP_NET_ADMIN,
|
||||
CAP_NET_RAW,
|
||||
CAP_IPC_LOCK,
|
||||
CAP_IPC_OWNER,
|
||||
CAP_SYS_MODULE,
|
||||
CAP_SYS_RAWIO,
|
||||
CAP_SYS_CHROOT,
|
||||
CAP_SYS_PTRACE,
|
||||
CAP_SYS_PACCT,
|
||||
CAP_SYS_ADMIN,
|
||||
CAP_SYS_BOOT,
|
||||
CAP_SYS_NICE,
|
||||
CAP_SYS_RESOURCE,
|
||||
CAP_SYS_TIME,
|
||||
CAP_SYS_TTY_CONFIG,
|
||||
CAP_MKNOD,
|
||||
CAP_LEASE,
|
||||
CAP_AUDIT_WRITE,
|
||||
CAP_AUDIT_CONTROL,
|
||||
CAP_SETFCAP,
|
6
caps1.h
Normal file
6
caps1.h
Normal file
@ -0,0 +1,6 @@
|
||||
CAP_MAC_OVERRIDE,
|
||||
CAP_MAC_ADMIN,
|
||||
CAP_SYSLOG,
|
||||
CAP_WAKE_ALARM,
|
||||
CAP_BLOCK_SUSPEND,
|
||||
CAP_AUDIT_READ,
|
Loading…
Reference in New Issue
Block a user