linux/include/linux/capability.h
<<
>>
Prefs
   1/*
   2 * This is <linux/capability.h>
   3 *
   4 * Andrew G. Morgan <morgan@kernel.org>
   5 * Alexander Kjeldaas <astor@guardian.no>
   6 * with help from Aleph1, Roland Buresund and Andrew Main.
   7 *
   8 * See here for the libcap library ("POSIX draft" compliance):
   9 *
  10 * ftp://linux.kernel.org/pub/linux/libs/security/linux-privs/kernel-2.6/
  11 */
  12
  13#ifndef _LINUX_CAPABILITY_H
  14#define _LINUX_CAPABILITY_H
  15
  16#include <linux/types.h>
  17
  18struct task_struct;
  19
  20/* User-level do most of the mapping between kernel and user
  21   capabilities based on the version tag given by the kernel. The
  22   kernel might be somewhat backwards compatible, but don't bet on
  23   it. */
  24
  25/* Note, cap_t, is defined by POSIX (draft) to be an "opaque" pointer to
  26   a set of three capability sets.  The transposition of 3*the
  27   following structure to such a composite is better handled in a user
  28   library since the draft standard requires the use of malloc/free
  29   etc.. */
  30
  31#define _LINUX_CAPABILITY_VERSION_1  0x19980330
  32#define _LINUX_CAPABILITY_U32S_1     1
  33
  34#define _LINUX_CAPABILITY_VERSION_2  0x20071026  /* deprecated - use v3 */
  35#define _LINUX_CAPABILITY_U32S_2     2
  36
  37#define _LINUX_CAPABILITY_VERSION_3  0x20080522
  38#define _LINUX_CAPABILITY_U32S_3     2
  39
  40typedef struct __user_cap_header_struct {
  41        __u32 version;
  42        int pid;
  43} __user *cap_user_header_t;
  44
  45typedef struct __user_cap_data_struct {
  46        __u32 effective;
  47        __u32 permitted;
  48        __u32 inheritable;
  49} __user *cap_user_data_t;
  50
  51
  52#define XATTR_CAPS_SUFFIX "capability"
  53#define XATTR_NAME_CAPS XATTR_SECURITY_PREFIX XATTR_CAPS_SUFFIX
  54
  55#define VFS_CAP_REVISION_MASK   0xFF000000
  56#define VFS_CAP_FLAGS_MASK      ~VFS_CAP_REVISION_MASK
  57#define VFS_CAP_FLAGS_EFFECTIVE 0x000001
  58
  59#define VFS_CAP_REVISION_1      0x01000000
  60#define VFS_CAP_U32_1           1
  61#define XATTR_CAPS_SZ_1         (sizeof(__le32)*(1 + 2*VFS_CAP_U32_1))
  62
  63#define VFS_CAP_REVISION_2      0x02000000
  64#define VFS_CAP_U32_2           2
  65#define XATTR_CAPS_SZ_2         (sizeof(__le32)*(1 + 2*VFS_CAP_U32_2))
  66
  67#define XATTR_CAPS_SZ           XATTR_CAPS_SZ_2
  68#define VFS_CAP_U32             VFS_CAP_U32_2
  69#define VFS_CAP_REVISION        VFS_CAP_REVISION_2
  70
  71
  72struct vfs_cap_data {
  73        __le32 magic_etc;            /* Little endian */
  74        struct {
  75                __le32 permitted;    /* Little endian */
  76                __le32 inheritable;  /* Little endian */
  77        } data[VFS_CAP_U32];
  78};
  79
  80#ifndef __KERNEL__
  81
  82/*
  83 * Backwardly compatible definition for source code - trapped in a
  84 * 32-bit world. If you find you need this, please consider using
  85 * libcap to untrap yourself...
  86 */
  87#define _LINUX_CAPABILITY_VERSION  _LINUX_CAPABILITY_VERSION_1
  88#define _LINUX_CAPABILITY_U32S     _LINUX_CAPABILITY_U32S_1
  89
  90#else
  91
  92#define _KERNEL_CAPABILITY_VERSION _LINUX_CAPABILITY_VERSION_3
  93#define _KERNEL_CAPABILITY_U32S    _LINUX_CAPABILITY_U32S_3
  94
  95typedef struct kernel_cap_struct {
  96        __u32 cap[_KERNEL_CAPABILITY_U32S];
  97} kernel_cap_t;
  98
  99#define _USER_CAP_HEADER_SIZE  (sizeof(struct __user_cap_header_struct))
 100#define _KERNEL_CAP_T_SIZE     (sizeof(kernel_cap_t))
 101
 102#endif
 103
 104
 105/**
 106 ** POSIX-draft defined capabilities.
 107 **/
 108
 109/* In a system with the [_POSIX_CHOWN_RESTRICTED] option defined, this
 110   overrides the restriction of changing file ownership and group
 111   ownership. */
 112
 113#define CAP_CHOWN            0
 114
 115/* Override all DAC access, including ACL execute access if
 116   [_POSIX_ACL] is defined. Excluding DAC access covered by
 117   CAP_LINUX_IMMUTABLE. */
 118
 119#define CAP_DAC_OVERRIDE     1
 120
 121/* Overrides all DAC restrictions regarding read and search on files
 122   and directories, including ACL restrictions if [_POSIX_ACL] is
 123   defined. Excluding DAC access covered by CAP_LINUX_IMMUTABLE. */
 124
 125#define CAP_DAC_READ_SEARCH  2
 126
 127/* Overrides all restrictions about allowed operations on files, where
 128   file owner ID must be equal to the user ID, except where CAP_FSETID
 129   is applicable. It doesn't override MAC and DAC restrictions. */
 130
 131#define CAP_FOWNER           3
 132
 133/* Overrides the following restrictions that the effective user ID
 134   shall match the file owner ID when setting the S_ISUID and S_ISGID
 135   bits on that file; that the effective group ID (or one of the
 136   supplementary group IDs) shall match the file owner ID when setting
 137   the S_ISGID bit on that file; that the S_ISUID and S_ISGID bits are
 138   cleared on successful return from chown(2) (not implemented). */
 139
 140#define CAP_FSETID           4
 141
 142/* Overrides the restriction that the real or effective user ID of a
 143   process sending a signal must match the real or effective user ID
 144   of the process receiving the signal. */
 145
 146#define CAP_KILL             5
 147
 148/* Allows setgid(2) manipulation */
 149/* Allows setgroups(2) */
 150/* Allows forged gids on socket credentials passing. */
 151
 152#define CAP_SETGID           6
 153
 154/* Allows set*uid(2) manipulation (including fsuid). */
 155/* Allows forged pids on socket credentials passing. */
 156
 157#define CAP_SETUID           7
 158
 159
 160/**
 161 ** Linux-specific capabilities
 162 **/
 163
 164/* Without VFS support for capabilities:
 165 *   Transfer any capability in your permitted set to any pid,
 166 *   remove any capability in your permitted set from any pid
 167 * With VFS support for capabilities (neither of above, but)
 168 *   Add any capability from current's capability bounding set
 169 *       to the current process' inheritable set
 170 *   Allow taking bits out of capability bounding set
 171 */
 172
 173#define CAP_SETPCAP          8
 174
 175/* Allow modification of S_IMMUTABLE and S_APPEND file attributes */
 176
 177#define CAP_LINUX_IMMUTABLE  9
 178
 179/* Allows binding to TCP/UDP sockets below 1024 */
 180/* Allows binding to ATM VCIs below 32 */
 181
 182#define CAP_NET_BIND_SERVICE 10
 183
 184/* Allow broadcasting, listen to multicast */
 185
 186#define CAP_NET_BROADCAST    11
 187
 188/* Allow interface configuration */
 189/* Allow administration of IP firewall, masquerading and accounting */
 190/* Allow setting debug option on sockets */
 191/* Allow modification of routing tables */
 192/* Allow setting arbitrary process / process group ownership on
 193   sockets */
 194/* Allow binding to any address for transparent proxying */
 195/* Allow setting TOS (type of service) */
 196/* Allow setting promiscuous mode */
 197/* Allow clearing driver statistics */
 198/* Allow multicasting */
 199/* Allow read/write of device-specific registers */
 200/* Allow activation of ATM control sockets */
 201
 202#define CAP_NET_ADMIN        12
 203
 204/* Allow use of RAW sockets */
 205/* Allow use of PACKET sockets */
 206
 207#define CAP_NET_RAW          13
 208
 209/* Allow locking of shared memory segments */
 210/* Allow mlock and mlockall (which doesn't really have anything to do
 211   with IPC) */
 212
 213#define CAP_IPC_LOCK         14
 214
 215/* Override IPC ownership checks */
 216
 217#define CAP_IPC_OWNER        15
 218
 219/* Insert and remove kernel modules - modify kernel without limit */
 220#define CAP_SYS_MODULE       16
 221
 222/* Allow ioperm/iopl access */
 223/* Allow sending USB messages to any device via /proc/bus/usb */
 224
 225#define CAP_SYS_RAWIO        17
 226
 227/* Allow use of chroot() */
 228
 229#define CAP_SYS_CHROOT       18
 230
 231/* Allow ptrace() of any process */
 232
 233#define CAP_SYS_PTRACE       19
 234
 235/* Allow configuration of process accounting */
 236
 237#define CAP_SYS_PACCT        20
 238
 239/* Allow configuration of the secure attention key */
 240/* Allow administration of the random device */
 241/* Allow examination and configuration of disk quotas */
 242/* Allow configuring the kernel's syslog (printk behaviour) */
 243/* Allow setting the domainname */
 244/* Allow setting the hostname */
 245/* Allow calling bdflush() */
 246/* Allow mount() and umount(), setting up new smb connection */
 247/* Allow some autofs root ioctls */
 248/* Allow nfsservctl */
 249/* Allow VM86_REQUEST_IRQ */
 250/* Allow to read/write pci config on alpha */
 251/* Allow irix_prctl on mips (setstacksize) */
 252/* Allow flushing all cache on m68k (sys_cacheflush) */
 253/* Allow removing semaphores */
 254/* Used instead of CAP_CHOWN to "chown" IPC message queues, semaphores
 255   and shared memory */
 256/* Allow locking/unlocking of shared memory segment */
 257/* Allow turning swap on/off */
 258/* Allow forged pids on socket credentials passing */
 259/* Allow setting readahead and flushing buffers on block devices */
 260/* Allow setting geometry in floppy driver */
 261/* Allow turning DMA on/off in xd driver */
 262/* Allow administration of md devices (mostly the above, but some
 263   extra ioctls) */
 264/* Allow tuning the ide driver */
 265/* Allow access to the nvram device */
 266/* Allow administration of apm_bios, serial and bttv (TV) device */
 267/* Allow manufacturer commands in isdn CAPI support driver */
 268/* Allow reading non-standardized portions of pci configuration space */
 269/* Allow DDI debug ioctl on sbpcd driver */
 270/* Allow setting up serial ports */
 271/* Allow sending raw qic-117 commands */
 272/* Allow enabling/disabling tagged queuing on SCSI controllers and sending
 273   arbitrary SCSI commands */
 274/* Allow setting encryption key on loopback filesystem */
 275/* Allow setting zone reclaim policy */
 276
 277#define CAP_SYS_ADMIN        21
 278
 279/* Allow use of reboot() */
 280
 281#define CAP_SYS_BOOT         22
 282
 283/* Allow raising priority and setting priority on other (different
 284   UID) processes */
 285/* Allow use of FIFO and round-robin (realtime) scheduling on own
 286   processes and setting the scheduling algorithm used by another
 287   process. */
 288/* Allow setting cpu affinity on other processes */
 289
 290#define CAP_SYS_NICE         23
 291
 292/* Override resource limits. Set resource limits. */
 293/* Override quota limits. */
 294/* Override reserved space on ext2 filesystem */
 295/* Modify data journaling mode on ext3 filesystem (uses journaling
 296   resources) */
 297/* NOTE: ext2 honors fsuid when checking for resource overrides, so
 298   you can override using fsuid too */
 299/* Override size restrictions on IPC message queues */
 300/* Allow more than 64hz interrupts from the real-time clock */
 301/* Override max number of consoles on console allocation */
 302/* Override max number of keymaps */
 303
 304#define CAP_SYS_RESOURCE     24
 305
 306/* Allow manipulation of system clock */
 307/* Allow irix_stime on mips */
 308/* Allow setting the real-time clock */
 309
 310#define CAP_SYS_TIME         25
 311
 312/* Allow configuration of tty devices */
 313/* Allow vhangup() of tty */
 314
 315#define CAP_SYS_TTY_CONFIG   26
 316
 317/* Allow the privileged aspects of mknod() */
 318
 319#define CAP_MKNOD            27
 320
 321/* Allow taking of leases on files */
 322
 323#define CAP_LEASE            28
 324
 325#define CAP_AUDIT_WRITE      29
 326
 327#define CAP_AUDIT_CONTROL    30
 328
 329#define CAP_SETFCAP          31
 330
 331/* Override MAC access.
 332   The base kernel enforces no MAC policy.
 333   An LSM may enforce a MAC policy, and if it does and it chooses
 334   to implement capability based overrides of that policy, this is
 335   the capability it should use to do so. */
 336
 337#define CAP_MAC_OVERRIDE     32
 338
 339/* Allow MAC configuration or state changes.
 340   The base kernel requires no MAC configuration.
 341   An LSM may enforce a MAC policy, and if it does and it chooses
 342   to implement capability based checks on modifications to that
 343   policy or the data required to maintain it, this is the
 344   capability it should use to do so. */
 345
 346#define CAP_MAC_ADMIN        33
 347
 348#define CAP_LAST_CAP         CAP_MAC_ADMIN
 349
 350#define cap_valid(x) ((x) >= 0 && (x) <= CAP_LAST_CAP)
 351
 352/*
 353 * Bit location of each capability (used by user-space library and kernel)
 354 */
 355
 356#define CAP_TO_INDEX(x)     ((x) >> 5)        /* 1 << 5 == bits in __u32 */
 357#define CAP_TO_MASK(x)      (1 << ((x) & 31)) /* mask for indexed __u32 */
 358
 359#ifdef __KERNEL__
 360
 361/*
 362 * Internal kernel functions only
 363 */
 364
 365#define CAP_FOR_EACH_U32(__capi)  \
 366        for (__capi = 0; __capi < _KERNEL_CAPABILITY_U32S; ++__capi)
 367
 368# define CAP_FS_MASK_B0     (CAP_TO_MASK(CAP_CHOWN)             \
 369                            | CAP_TO_MASK(CAP_DAC_OVERRIDE)     \
 370                            | CAP_TO_MASK(CAP_DAC_READ_SEARCH)  \
 371                            | CAP_TO_MASK(CAP_FOWNER)           \
 372                            | CAP_TO_MASK(CAP_FSETID))
 373
 374# define CAP_FS_MASK_B1     (CAP_TO_MASK(CAP_MAC_OVERRIDE))
 375
 376#if _KERNEL_CAPABILITY_U32S != 2
 377# error Fix up hand-coded capability macro initializers
 378#else /* HAND-CODED capability initializers */
 379
 380# define CAP_EMPTY_SET    {{ 0, 0 }}
 381# define CAP_FULL_SET     {{ ~0, ~0 }}
 382# define CAP_INIT_EFF_SET {{ ~CAP_TO_MASK(CAP_SETPCAP), ~0 }}
 383# define CAP_FS_SET       {{ CAP_FS_MASK_B0, CAP_FS_MASK_B1 } }
 384# define CAP_NFSD_SET     {{ CAP_FS_MASK_B0|CAP_TO_MASK(CAP_SYS_RESOURCE), \
 385                             CAP_FS_MASK_B1 } }
 386
 387#endif /* _KERNEL_CAPABILITY_U32S != 2 */
 388
 389#define CAP_INIT_INH_SET    CAP_EMPTY_SET
 390
 391# define cap_clear(c)         do { (c) = __cap_empty_set; } while (0)
 392# define cap_set_full(c)      do { (c) = __cap_full_set; } while (0)
 393# define cap_set_init_eff(c)  do { (c) = __cap_init_eff_set; } while (0)
 394
 395#define cap_raise(c, flag)  ((c).cap[CAP_TO_INDEX(flag)] |= CAP_TO_MASK(flag))
 396#define cap_lower(c, flag)  ((c).cap[CAP_TO_INDEX(flag)] &= ~CAP_TO_MASK(flag))
 397#define cap_raised(c, flag) ((c).cap[CAP_TO_INDEX(flag)] & CAP_TO_MASK(flag))
 398
 399#define CAP_BOP_ALL(c, a, b, OP)                                    \
 400do {                                                                \
 401        unsigned __capi;                                            \
 402        CAP_FOR_EACH_U32(__capi) {                                  \
 403                c.cap[__capi] = a.cap[__capi] OP b.cap[__capi];     \
 404        }                                                           \
 405} while (0)
 406
 407#define CAP_UOP_ALL(c, a, OP)                                       \
 408do {                                                                \
 409        unsigned __capi;                                            \
 410        CAP_FOR_EACH_U32(__capi) {                                  \
 411                c.cap[__capi] = OP a.cap[__capi];                   \
 412        }                                                           \
 413} while (0)
 414
 415static inline kernel_cap_t cap_combine(const kernel_cap_t a,
 416                                       const kernel_cap_t b)
 417{
 418        kernel_cap_t dest;
 419        CAP_BOP_ALL(dest, a, b, |);
 420        return dest;
 421}
 422
 423static inline kernel_cap_t cap_intersect(const kernel_cap_t a,
 424                                         const kernel_cap_t b)
 425{
 426        kernel_cap_t dest;
 427        CAP_BOP_ALL(dest, a, b, &);
 428        return dest;
 429}
 430
 431static inline kernel_cap_t cap_drop(const kernel_cap_t a,
 432                                    const kernel_cap_t drop)
 433{
 434        kernel_cap_t dest;
 435        CAP_BOP_ALL(dest, a, drop, &~);
 436        return dest;
 437}
 438
 439static inline kernel_cap_t cap_invert(const kernel_cap_t c)
 440{
 441        kernel_cap_t dest;
 442        CAP_UOP_ALL(dest, c, ~);
 443        return dest;
 444}
 445
 446static inline int cap_isclear(const kernel_cap_t a)
 447{
 448        unsigned __capi;
 449        CAP_FOR_EACH_U32(__capi) {
 450                if (a.cap[__capi] != 0)
 451                        return 0;
 452        }
 453        return 1;
 454}
 455
 456static inline int cap_issubset(const kernel_cap_t a, const kernel_cap_t set)
 457{
 458        kernel_cap_t dest;
 459        dest = cap_drop(a, set);
 460        return cap_isclear(dest);
 461}
 462
 463/* Used to decide between falling back on the old suser() or fsuser(). */
 464
 465static inline int cap_is_fs_cap(int cap)
 466{
 467        const kernel_cap_t __cap_fs_set = CAP_FS_SET;
 468        return !!(CAP_TO_MASK(cap) & __cap_fs_set.cap[CAP_TO_INDEX(cap)]);
 469}
 470
 471static inline kernel_cap_t cap_drop_fs_set(const kernel_cap_t a)
 472{
 473        const kernel_cap_t __cap_fs_set = CAP_FS_SET;
 474        return cap_drop(a, __cap_fs_set);
 475}
 476
 477static inline kernel_cap_t cap_raise_fs_set(const kernel_cap_t a,
 478                                            const kernel_cap_t permitted)
 479{
 480        const kernel_cap_t __cap_fs_set = CAP_FS_SET;
 481        return cap_combine(a,
 482                           cap_intersect(permitted, __cap_fs_set));
 483}
 484
 485static inline kernel_cap_t cap_drop_nfsd_set(const kernel_cap_t a)
 486{
 487        const kernel_cap_t __cap_fs_set = CAP_NFSD_SET;
 488        return cap_drop(a, __cap_fs_set);
 489}
 490
 491static inline kernel_cap_t cap_raise_nfsd_set(const kernel_cap_t a,
 492                                              const kernel_cap_t permitted)
 493{
 494        const kernel_cap_t __cap_nfsd_set = CAP_NFSD_SET;
 495        return cap_combine(a,
 496                           cap_intersect(permitted, __cap_nfsd_set));
 497}
 498
 499extern const kernel_cap_t __cap_empty_set;
 500extern const kernel_cap_t __cap_full_set;
 501extern const kernel_cap_t __cap_init_eff_set;
 502
 503int capable(int cap);
 504int __capable(struct task_struct *t, int cap);
 505
 506extern long cap_prctl_drop(unsigned long cap);
 507
 508#endif /* __KERNEL__ */
 509
 510#endif /* !_LINUX_CAPABILITY_H */
 511
lxr.linux.no kindly hosted by Redpill Linpro AS, provider of Linux consulting and operations services since 1995.