Revert "keyrings.7: ffix"
[man-pages.git] / man / man7 / capabilities.7
blob2cedf3267a602b801075e2a342adb684370ed9c2
1 .\" Copyright (c) 2002 by Michael Kerrisk <mtk.manpages@gmail.com>
2 .\"
3 .\" SPDX-License-Identifier: Linux-man-pages-copyleft
4 .\"
5 .\" 6 Aug 2002 - Initial Creation
6 .\" Modified 2003-05-23, Michael Kerrisk, <mtk.manpages@gmail.com>
7 .\" Modified 2004-05-27, Michael Kerrisk, <mtk.manpages@gmail.com>
8 .\" 2004-12-08, mtk Added O_NOATIME for CAP_FOWNER
9 .\" 2005-08-16, mtk, Added CAP_AUDIT_CONTROL and CAP_AUDIT_WRITE
10 .\" 2008-07-15, Serge Hallyn <serue@us.bbm.com>
11 .\"     Document file capabilities, per-process capability
12 .\"     bounding set, changed semantics for CAP_SETPCAP,
13 .\"     and other changes in Linux 2.6.2[45].
14 .\"     Add CAP_MAC_ADMIN, CAP_MAC_OVERRIDE, CAP_SETFCAP.
15 .\" 2008-07-15, mtk
16 .\"     Add text describing circumstances in which CAP_SETPCAP
17 .\"     (theoretically) permits a thread to change the
18 .\"     capability sets of another thread.
19 .\"     Add section describing rules for programmatically
20 .\"     adjusting thread capability sets.
21 .\"     Describe rationale for capability bounding set.
22 .\"     Document "securebits" flags.
23 .\"     Add text noting that if we set the effective flag for one file
24 .\"     capability, then we must also set the effective flag for all
25 .\"     other capabilities where the permitted or inheritable bit is set.
26 .\" 2011-09-07, mtk/Serge hallyn: Add CAP_SYSLOG
27 .\"
28 .TH Capabilities 7 (date) "Linux man-pages (unreleased)"
29 .SH NAME
30 capabilities \- overview of Linux capabilities
31 .SH DESCRIPTION
32 For the purpose of performing permission checks,
33 traditional UNIX implementations distinguish two categories of processes:
34 .I privileged
35 processes (whose effective user ID is 0, referred to as superuser or root),
36 and
37 .I unprivileged
38 processes (whose effective UID is nonzero).
39 Privileged processes bypass all kernel permission checks,
40 while unprivileged processes are subject to full permission
41 checking based on the process's credentials
42 (usually: effective UID, effective GID, and supplementary group list).
44 Starting with Linux 2.2, Linux divides the privileges traditionally
45 associated with superuser into distinct units, known as
46 .IR capabilities ,
47 which can be independently enabled and disabled.
48 Capabilities are a per-thread attribute.
49 .\"
50 .SS Capabilities list
51 The following list shows the capabilities implemented on Linux,
52 and the operations or behaviors that each capability permits:
53 .TP
54 .BR CAP_AUDIT_CONTROL " (since Linux 2.6.11)"
55 Enable and disable kernel auditing; change auditing filter rules;
56 retrieve auditing status and filtering rules.
57 .TP
58 .BR CAP_AUDIT_READ " (since Linux 3.16)"
59 .\" commit a29b694aa1739f9d76538e34ae25524f9c549d59
60 .\" commit 3a101b8de0d39403b2c7e5c23fd0b005668acf48
61 Allow reading the audit log via a multicast netlink socket.
62 .TP
63 .BR CAP_AUDIT_WRITE " (since Linux 2.6.11)"
64 Write records to kernel auditing log.
65 .\" FIXME Add FAN_ENABLE_AUDIT
66 .TP
67 .BR CAP_BLOCK_SUSPEND " (since Linux 3.5)"
68 Employ features that can block system suspend
69 .RB ( epoll (7)
70 .BR EPOLLWAKEUP ,
71 .IR /proc/sys/wake_lock ).
72 .TP
73 .BR CAP_BPF " (since Linux 5.8)"
74 Employ privileged BPF operations; see
75 .BR bpf (2)
76 and
77 .BR bpf\-helpers (7).
78 .IP
79 This capability was added in Linux 5.8 to separate out
80 BPF functionality from the overloaded
81 .B CAP_SYS_ADMIN
82 capability.
83 .TP
84 .BR CAP_CHECKPOINT_RESTORE " (since Linux 5.9)"
85 .\" commit 124ea650d3072b005457faed69909221c2905a1f
86 .PD 0
87 .RS
88 .IP \[bu] 3
89 Update
90 .I /proc/sys/kernel/ns_last_pid
91 (see
92 .BR pid_namespaces (7));
93 .IP \[bu]
94 employ the
95 .I set_tid
96 feature of
97 .BR clone3 (2);
98 .\" FIXME There is also some use case relating to
99 .\" prctl_set_mm_exe_file(); in the 5.9 sources, see
100 .\" prctl_set_mm_map().
101 .IP \[bu]
102 read the contents of the symbolic links in
103 .IR /proc/ pid /map_files
104 for other processes.
108 This capability was added in Linux 5.9 to separate out
109 checkpoint/restore functionality from the overloaded
110 .B CAP_SYS_ADMIN
111 capability.
113 .B CAP_CHOWN
114 Make arbitrary changes to file UIDs and GIDs (see
115 .BR chown (2)).
117 .B CAP_DAC_OVERRIDE
118 Bypass file read, write, and execute permission checks.
119 (DAC is an abbreviation of "discretionary access control".)
121 .B CAP_DAC_READ_SEARCH
122 .PD 0
124 .IP \[bu] 3
125 Bypass file read permission checks and
126 directory read and execute permission checks;
127 .IP \[bu]
128 invoke
129 .BR open_by_handle_at (2);
130 .IP \[bu]
131 use the
132 .BR linkat (2)
133 .B AT_EMPTY_PATH
134 flag to create a link to a file referred to by a file descriptor.
138 .B CAP_FOWNER
139 .PD 0
141 .IP \[bu] 3
142 Bypass permission checks on operations that normally
143 require the filesystem UID of the process to match the UID of
144 the file (e.g.,
145 .BR chmod (2),
146 .BR utime (2)),
147 excluding those operations covered by
148 .B CAP_DAC_OVERRIDE
150 .BR CAP_DAC_READ_SEARCH ;
151 .IP \[bu]
152 set inode flags (see
153 .BR FS_IOC_SETFLAGS (2const))
154 on arbitrary files;
155 .IP \[bu]
156 set Access Control Lists (ACLs) on arbitrary files;
157 .IP \[bu]
158 ignore directory sticky bit on file deletion;
159 .IP \[bu]
160 modify
161 .I user
162 extended attributes on sticky directory owned by any user;
163 .IP \[bu]
164 specify
165 .B O_NOATIME
166 for arbitrary files in
167 .BR open (2)
169 .BR fcntl (2).
173 .B CAP_FSETID
174 .PD 0
176 .IP \[bu] 3
177 Don't clear set-user-ID and set-group-ID mode
178 bits when a file is modified;
179 .IP \[bu]
180 set the set-group-ID bit for a file whose GID does not match
181 the filesystem or any of the supplementary GIDs of the calling process.
185 .B CAP_IPC_LOCK
186 .\" FIXME . As at Linux 3.2, there are some strange uses of this capability
187 .\" in other places; they probably should be replaced with something else.
188 .PD 0
190 .IP \[bu] 3
191 Lock memory
192 .RB ( mlock (2),
193 .BR mlockall (2),
194 .BR mmap (2),
195 .BR shmctl (2));
196 .IP \[bu]
197 Allocate memory using huge pages
198 .RB ( memfd_create (2),
199 .BR mmap (2),
200 .BR shmctl (2)).
204 .B CAP_IPC_OWNER
205 Bypass permission checks for operations on System V IPC objects.
207 .B CAP_KILL
208 Bypass permission checks for sending signals (see
209 .BR kill (2)).
210 This includes use of the
211 .BR ioctl (2)
212 .B KDSIGACCEPT
213 operation.
214 .\" FIXME . CAP_KILL also has an effect for threads + setting child
215 .\"       termination signal to other than SIGCHLD: without this
216 .\"       capability, the termination signal reverts to SIGCHLD
217 .\"       if the child does an exec().  What is the rationale
218 .\"       for this?
220 .BR CAP_LEASE " (since Linux 2.4)"
221 Establish leases on arbitrary files (see
222 .BR fcntl (2)).
224 .B CAP_LINUX_IMMUTABLE
225 Set the
226 .B FS_APPEND_FL
228 .B FS_IMMUTABLE_FL
229 inode flags (see
230 .BR FS_IOC_SETFLAGS (2const)).
232 .BR CAP_MAC_ADMIN " (since Linux 2.6.25)"
233 Allow MAC configuration or state changes.
234 Implemented for the Smack Linux Security Module (LSM).
236 .BR CAP_MAC_OVERRIDE " (since Linux 2.6.25)"
237 Override Mandatory Access Control (MAC).
238 Implemented for the Smack LSM.
240 .BR CAP_MKNOD " (since Linux 2.4)"
241 Create special files using
242 .BR mknod (2).
244 .B CAP_NET_ADMIN
245 Perform various network-related operations:
246 .PD 0
248 .IP \[bu] 3
249 interface configuration;
250 .IP \[bu]
251 administration of IP firewall, masquerading, and accounting;
252 .IP \[bu]
253 modify routing tables;
254 .IP \[bu]
255 bind to any address for transparent proxying;
256 .IP \[bu]
257 set type-of-service (TOS);
258 .IP \[bu]
259 clear driver statistics;
260 .IP \[bu]
261 set promiscuous mode;
262 .IP \[bu]
263 enabling multicasting;
264 .IP \[bu]
266 .BR setsockopt (2)
267 to set the following socket options:
268 .BR SO_DEBUG ,
269 .BR SO_MARK ,
270 .B SO_PRIORITY
271 (for a priority outside the range 0 to 6),
272 .BR SO_RCVBUFFORCE ,
274 .BR SO_SNDBUFFORCE .
278 .B CAP_NET_BIND_SERVICE
279 Bind a socket to Internet domain privileged ports
280 (port numbers less than 1024).
282 .B CAP_NET_BROADCAST
283 (Unused)  Make socket broadcasts, and listen to multicasts.
284 .\" FIXME Since Linux 4.2, there are use cases for netlink sockets
285 .\"    commit 59324cf35aba5336b611074028777838a963d03b
287 .B CAP_NET_RAW
288 .PD 0
290 .IP \[bu] 3
291 Use RAW and PACKET sockets;
292 .IP \[bu]
293 bind to any address for transparent proxying.
296 .\" Also various IP options and setsockopt(SO_BINDTODEVICE)
298 .BR CAP_PERFMON " (since Linux 5.8)"
299 Employ various performance-monitoring mechanisms, including:
301 .IP \[bu] 3
302 .PD 0
303 call
304 .BR perf_event_open (2);
305 .IP \[bu]
306 employ various BPF operations that have performance implications.
310 This capability was added in Linux 5.8 to separate out
311 performance monitoring functionality from the overloaded
312 .B CAP_SYS_ADMIN
313 capability.
314 See also the kernel source file
315 .IR Documentation/admin\-guide/perf\-security.rst .
317 .B CAP_SETGID
319 .PD 0
320 .IP \[bu] 3
321 Make arbitrary manipulations of process GIDs and supplementary GID list;
322 .IP \[bu]
323 forge GID when passing socket credentials via UNIX domain sockets;
324 .IP \[bu]
325 write a group ID mapping in a user namespace (see
326 .BR user_namespaces (7)).
330 .BR CAP_SETFCAP " (since Linux 2.6.24)"
331 Set arbitrary capabilities on a file.
333 .\" commit db2e718a47984b9d71ed890eb2ea36ecf150de18
334 Since Linux 5.12, this capability is
335 also needed to map user ID 0 in a new user namespace; see
336 .BR user_namespaces (7)
337 for details.
339 .B CAP_SETPCAP
340 If file capabilities are supported (i.e., since Linux 2.6.24):
341 add any capability from the calling thread's bounding set
342 to its inheritable set;
343 drop capabilities from the bounding set (via
344 .BR prctl (2)
345 .BR PR_CAPBSET_DROP );
346 make changes to the
347 .I securebits
348 flags.
350 If file capabilities are not supported (i.e., before Linux 2.6.24):
351 grant or remove any capability in the
352 caller's permitted capability set to or from any other process.
353 (This property of
354 .B CAP_SETPCAP
355 is not available when the kernel is configured to support
356 file capabilities, since
357 .B CAP_SETPCAP
358 has entirely different semantics for such kernels.)
360 .B CAP_SETUID
362 .PD 0
363 .IP \[bu] 3
364 Make arbitrary manipulations of process UIDs
365 .RB ( setuid (2),
366 .BR setreuid (2),
367 .BR setresuid (2),
368 .BR setfsuid (2));
369 .IP \[bu]
370 forge UID when passing socket credentials via UNIX domain sockets;
371 .IP \[bu]
372 write a user ID mapping in a user namespace (see
373 .BR user_namespaces (7)).
376 .\" FIXME CAP_SETUID also an effect in exec(); document this.
378 .B CAP_SYS_ADMIN
379 .IR Note :
380 this capability is overloaded; see
381 .I Notes to kernel developers
382 below.
384 .PD 0
386 .IP \[bu] 3
387 Perform a range of system administration operations including:
388 .BR quotactl (2),
389 .BR mount (2),
390 .BR umount (2),
391 .BR pivot_root (2),
392 .BR swapon (2),
393 .BR swapoff (2),
394 .BR sethostname (2),
396 .BR setdomainname (2);
397 .IP \[bu]
398 perform privileged
399 .BR syslog (2)
400 operations (since Linux 2.6.37,
401 .B CAP_SYSLOG
402 should be used to permit such operations);
403 .IP \[bu]
404 perform
405 .B VM86_REQUEST_IRQ
406 .BR vm86 (2)
407 command;
408 .IP \[bu]
409 access the same checkpoint/restore functionality that is governed by
410 .B CAP_CHECKPOINT_RESTORE
411 (but the latter, weaker capability is preferred for accessing
412 that functionality).
413 .IP \[bu]
414 perform the same BPF operations as are governed by
415 .B CAP_BPF
416 (but the latter, weaker capability is preferred for accessing
417 that functionality).
418 .IP \[bu]
419 employ the same performance monitoring mechanisms as are governed by
420 .B CAP_PERFMON
421 (but the latter, weaker capability is preferred for accessing
422 that functionality).
423 .IP \[bu]
424 perform
425 .B IPC_SET
427 .B IPC_RMID
428 operations on arbitrary System V IPC objects;
429 .IP \[bu]
430 override
431 .B RLIMIT_NPROC
432 resource limit;
433 .IP \[bu]
434 perform operations on
435 .I trusted
437 .I security
438 extended attributes (see
439 .BR xattr (7));
440 .IP \[bu]
442 .BR lookup_dcookie (2);
443 .IP \[bu]
445 .BR ioprio_set (2)
446 to assign
447 .B IOPRIO_CLASS_RT
448 and (before Linux 2.6.25)
449 .B IOPRIO_CLASS_IDLE
450 I/O scheduling classes;
451 .IP \[bu]
452 forge PID when passing socket credentials via UNIX domain sockets;
453 .IP \[bu]
454 exceed
455 .IR /proc/sys/fs/file\-max ,
456 the system-wide limit on the number of open files,
457 in system calls that open files (e.g.,
458 .BR accept (2),
459 .BR execve (2),
460 .BR open (2),
461 .BR pipe (2));
462 .IP \[bu]
463 employ
464 .B CLONE_*
465 flags that create new namespaces with
466 .BR clone (2)
468 .BR unshare (2)
469 (but, since Linux 3.8,
470 creating user namespaces does not require any capability);
471 .IP \[bu]
472 access privileged
473 .I perf
474 event information;
475 .IP \[bu]
476 call
477 .BR setns (2)
478 (requires
479 .B CAP_SYS_ADMIN
480 in the
481 .I target
482 namespace);
483 .IP \[bu]
484 call
485 .BR fanotify_init (2);
486 .IP \[bu]
487 perform privileged
488 .B KEYCTL_CHOWN
490 .B KEYCTL_SETPERM
491 .BR keyctl (2)
492 operations;
493 .IP \[bu]
494 perform
495 .BR madvise (2)
496 .B MADV_HWPOISON
497 operation;
498 .IP \[bu]
499 employ the
500 .B TIOCSTI
501 .BR ioctl (2)
502 to insert characters into the input queue of a terminal other than
503 the caller's controlling terminal;
504 .IP \[bu]
505 employ the obsolete
506 .BR nfsservctl (2)
507 system call;
508 .IP \[bu]
509 employ the obsolete
510 .BR bdflush (2)
511 system call;
512 .IP \[bu]
513 perform various privileged block-device
514 .BR ioctl (2)
515 operations;
516 .IP \[bu]
517 perform various privileged filesystem
518 .BR ioctl (2)
519 operations;
520 .IP \[bu]
521 perform privileged
522 .BR ioctl (2)
523 operations on the
524 .I /dev/random
525 device (see
526 .BR random (4));
527 .IP \[bu]
528 install a
529 .BR seccomp (2)
530 filter without first having to set the
531 .I no_new_privs
532 thread attribute;
533 .IP \[bu]
534 modify allow/deny rules for device control groups;
535 .IP \[bu]
536 employ the
537 .BR ptrace (2)
538 .B PTRACE_SECCOMP_GET_FILTER
539 operation to dump tracee's seccomp filters;
540 .IP \[bu]
541 employ the
542 .BR ptrace (2)
543 .B PTRACE_SETOPTIONS
544 operation to suspend the tracee's seccomp protections (i.e., the
545 .B PTRACE_O_SUSPEND_SECCOMP
546 flag);
547 .IP \[bu]
548 perform administrative operations on many device drivers;
549 .IP \[bu]
550 modify autogroup nice values by writing to
551 .IR /proc/ pid /autogroup
552 (see
553 .BR sched (7)).
557 .B CAP_SYS_BOOT
559 .BR reboot (2)
561 .BR kexec_load (2).
563 .B CAP_SYS_CHROOT
565 .PD 0
566 .IP \[bu] 3
568 .BR chroot (2);
569 .IP \[bu]
570 change mount namespaces using
571 .BR setns (2).
575 .B CAP_SYS_MODULE
577 .PD 0
578 .IP \[bu] 3
579 Load and unload kernel modules
580 (see
581 .BR init_module (2)
583 .BR delete_module (2));
584 .IP \[bu]
585 before Linux 2.6.25:
586 drop capabilities from the system-wide capability bounding set.
590 .B CAP_SYS_NICE
591 .PD 0
593 .IP \[bu] 3
594 Lower the process nice value
595 .RB ( nice (2),
596 .BR setpriority (2))
597 and change the nice value for arbitrary processes;
598 .IP \[bu]
599 set real-time scheduling policies for calling process,
600 and set scheduling policies and priorities for arbitrary processes
601 .RB ( sched_setscheduler (2),
602 .BR sched_setparam (2),
603 .BR sched_setattr (2));
604 .IP \[bu]
605 set CPU affinity for arbitrary processes
606 .RB ( sched_setaffinity (2));
607 .IP \[bu]
608 set I/O scheduling class and priority for arbitrary processes
609 .RB ( ioprio_set (2));
610 .IP \[bu]
611 apply
612 .BR migrate_pages (2)
613 to arbitrary processes and allow processes
614 to be migrated to arbitrary nodes;
615 .\" FIXME CAP_SYS_NICE also has the following effect for
616 .\" migrate_pages(2):
617 .\"     do_migrate_pages(mm, &old, &new,
618 .\"         capable(CAP_SYS_NICE) ? MPOL_MF_MOVE_ALL : MPOL_MF_MOVE);
620 .\" Document this.
621 .IP \[bu]
622 apply
623 .BR move_pages (2)
624 to arbitrary processes;
625 .IP \[bu]
626 use the
627 .B MPOL_MF_MOVE_ALL
628 flag with
629 .BR mbind (2)
631 .BR move_pages (2).
635 .B CAP_SYS_PACCT
637 .BR acct (2).
639 .B CAP_SYS_PTRACE
640 .PD 0
642 .IP \[bu] 3
643 Trace arbitrary processes using
644 .BR ptrace (2);
645 .IP \[bu]
646 apply
647 .BR get_robust_list (2)
648 to arbitrary processes;
649 .IP \[bu]
650 transfer data to or from the memory of arbitrary processes using
651 .BR process_vm_readv (2)
653 .BR process_vm_writev (2);
654 .IP \[bu]
655 inspect processes using
656 .BR kcmp (2).
660 .B CAP_SYS_RAWIO
661 .PD 0
663 .IP \[bu] 3
664 Perform I/O port operations
665 .RB ( iopl (2)
667 .BR ioperm (2));
668 .IP \[bu]
669 access
670 .IR /proc/kcore ;
671 .IP \[bu]
672 employ the
673 .B FIBMAP
674 .BR ioctl (2)
675 operation;
676 .IP \[bu]
677 open devices for accessing x86 model-specific registers (MSRs, see
678 .BR msr (4));
679 .IP \[bu]
680 update
681 .IR /proc/sys/vm/mmap_min_addr ;
682 .IP \[bu]
683 create memory mappings at addresses below the value specified by
684 .IR /proc/sys/vm/mmap_min_addr ;
685 .IP \[bu]
686 map files in
687 .IR /proc/bus/pci ;
688 .IP \[bu]
689 open
690 .I /dev/mem
692 .IR /dev/kmem ;
693 .IP \[bu]
694 perform various SCSI device commands;
695 .IP \[bu]
696 perform certain operations on
697 .BR hpsa (4)
699 .BR cciss (4)
700 devices;
701 .IP \[bu]
702 perform a range of device-specific operations on other devices.
706 .B CAP_SYS_RESOURCE
707 .PD 0
709 .IP \[bu] 3
710 Use reserved space on ext2 filesystems;
711 .IP \[bu]
712 make
713 .BR ioctl (2)
714 calls controlling ext3 journaling;
715 .IP \[bu]
716 override disk quota limits;
717 .IP \[bu]
718 increase resource limits (see
719 .BR setrlimit (2));
720 .IP \[bu]
721 override
722 .B RLIMIT_NPROC
723 resource limit;
724 .IP \[bu]
725 override maximum number of consoles on console allocation;
726 .IP \[bu]
727 override maximum number of keymaps;
728 .IP \[bu]
729 allow more than 64hz interrupts from the real-time clock;
730 .IP \[bu]
731 raise
732 .I msg_qbytes
733 limit for a System V message queue above the limit in
734 .I /proc/sys/kernel/msgmnb
735 (see
736 .BR msgop (2)
738 .BR msgctl (2));
739 .IP \[bu]
740 allow the
741 .B RLIMIT_NOFILE
742 resource limit on the number of "in-flight" file descriptors
743 to be bypassed when passing file descriptors to another process
744 via a UNIX domain socket (see
745 .BR unix (7));
746 .IP \[bu]
747 override the
748 .I /proc/sys/fs/pipe\-size\-max
749 limit when setting the capacity of a pipe using the
750 .B F_SETPIPE_SZ
751 .BR fcntl (2)
752 command;
753 .IP \[bu]
755 .B F_SETPIPE_SZ
756 to increase the capacity of a pipe above the limit specified by
757 .IR /proc/sys/fs/pipe\-max\-size ;
758 .IP \[bu]
759 override
760 .IR /proc/sys/fs/mqueue/queues_max ,
761 .IR /proc/sys/fs/mqueue/msg_max ,
763 .I /proc/sys/fs/mqueue/msgsize_max
764 limits when creating POSIX message queues (see
765 .BR mq_overview (7));
766 .IP \[bu]
767 employ the
768 .BR prctl (2)
769 .B PR_SET_MM
770 operation;
771 .IP \[bu]
773 .IR /proc/ pid /oom_score_adj
774 to a value lower than the value last set by a process with
775 .BR CAP_SYS_RESOURCE .
779 .B CAP_SYS_TIME
780 Set system clock
781 .RB ( settimeofday (2),
782 .BR stime (2),
783 .BR adjtimex (2));
784 set real-time (hardware) clock.
786 .B CAP_SYS_TTY_CONFIG
788 .BR vhangup (2);
789 employ various privileged
790 .BR ioctl (2)
791 operations on virtual terminals.
793 .BR CAP_SYSLOG " (since Linux 2.6.37)"
795 .PD 0
796 .IP \[bu] 3
797 Perform privileged
798 .BR syslog (2)
799 operations.
801 .BR syslog (2)
802 for information on which operations require privilege.
803 .IP \[bu]
804 View kernel addresses exposed via
805 .I /proc
806 and other interfaces when
807 .I /proc/sys/kernel/kptr_restrict
808 has the value 1.
809 (See the discussion of the
810 .I kptr_restrict
812 .BR proc (5).)
816 .BR CAP_WAKE_ALARM " (since Linux 3.0)"
817 Trigger something that will wake up the system (set
818 .B CLOCK_REALTIME_ALARM
820 .B CLOCK_BOOTTIME_ALARM
821 timers).
823 .SS Past and current implementation
824 A full implementation of capabilities requires that:
825 .IP \[bu] 3
826 For all privileged operations,
827 the kernel must check whether the thread has the required
828 capability in its effective set.
829 .IP \[bu]
830 The kernel must provide system calls allowing a thread's capability sets to
831 be changed and retrieved.
832 .IP \[bu]
833 The filesystem must support attaching capabilities to an executable file,
834 so that a process gains those capabilities when the file is executed.
836 Before Linux 2.6.24, only the first two of these requirements are met;
837 since Linux 2.6.24, all three requirements are met.
839 .SS Notes to kernel developers
840 When adding a new kernel feature that should be governed by a capability,
841 consider the following points.
842 .IP \[bu] 3
843 The goal of capabilities is divide the power of superuser into pieces,
844 such that if a program that has one or more capabilities is compromised,
845 its power to do damage to the system would be less than the same program
846 running with root privilege.
847 .IP \[bu]
848 You have the choice of either creating a new capability for your new feature,
849 or associating the feature with one of the existing capabilities.
850 In order to keep the set of capabilities to a manageable size,
851 the latter option is preferable,
852 unless there are compelling reasons to take the former option.
853 (There is also a technical limit:
854 the size of capability sets is currently limited to 64 bits.)
855 .IP \[bu]
856 To determine which existing capability might best be associated
857 with your new feature, review the list of capabilities above in order
858 to find a "silo" into which your new feature best fits.
859 One approach to take is to determine if there are other features
860 requiring capabilities that will always be used along with the new feature.
861 If the new feature is useless without these other features,
862 you should use the same capability as the other features.
863 .IP \[bu]
864 .I Don't
865 choose
866 .B CAP_SYS_ADMIN
867 if you can possibly avoid it!
868 A vast proportion of existing capability checks are associated
869 with this capability (see the partial list above).
870 It can plausibly be called "the new root",
871 since on the one hand, it confers a wide range of powers,
872 and on the other hand,
873 its broad scope means that this is the capability
874 that is required by many privileged programs.
875 Don't make the problem worse.
876 The only new features that should be associated with
877 .B CAP_SYS_ADMIN
878 are ones that
879 .I closely
880 match existing uses in that silo.
881 .IP \[bu]
882 If you have determined that it really is necessary to create
883 a new capability for your feature,
884 don't make or name it as a "single-use" capability.
885 Thus, for example, the addition of the highly specific
886 .B CAP_SYS_PACCT
887 was probably a mistake.
888 Instead, try to identify and name your new capability as a broader
889 silo into which other related future use cases might fit.
891 .SS Thread capability sets
892 Each thread has the following capability sets containing zero or more
893 of the above capabilities:
895 .I Permitted
896 This is a limiting superset for the effective
897 capabilities that the thread may assume.
898 It is also a limiting superset for the capabilities that
899 may be added to the inheritable set by a thread that does not have the
900 .B CAP_SETPCAP
901 capability in its effective set.
903 If a thread drops a capability from its permitted set,
904 it can never reacquire that capability (unless it
905 .BR execve (2)s
906 either a set-user-ID-root program, or
907 a program whose associated file capabilities grant that capability).
909 .I Inheritable
910 This is a set of capabilities preserved across an
911 .BR execve (2).
912 Inheritable capabilities remain inheritable when executing any program,
913 and inheritable capabilities are added to the permitted set when executing
914 a program that has the corresponding bits set in the file inheritable set.
916 Because inheritable capabilities are not generally preserved across
917 .BR execve (2)
918 when running as a non-root user, applications that wish to run helper
919 programs with elevated capabilities should consider using
920 ambient capabilities, described below.
922 .I Effective
923 This is the set of capabilities used by the kernel to
924 perform permission checks for the thread.
926 .IR Bounding " (per-thread since Linux 2.6.25)"
927 The capability bounding set is a mechanism that can be used
928 to limit the capabilities that are gained during
929 .BR execve (2).
931 Since Linux 2.6.25, this is a per-thread capability set.
932 In older kernels, the capability bounding set was a system wide attribute
933 shared by all threads on the system.
935 For more details, see
936 .I Capability bounding set
937 below.
939 .IR Ambient " (since Linux 4.3)"
940 .\" commit 58319057b7847667f0c9585b9de0e8932b0fdb08
941 This is a set of capabilities that are preserved across an
942 .BR execve (2)
943 of a program that is not privileged.
944 The ambient capability set obeys the invariant that no capability
945 can ever be ambient if it is not both permitted and inheritable.
947 The ambient capability set can be directly modified using
948 .BR prctl (2).
949 Ambient capabilities are automatically lowered if either of
950 the corresponding permitted or inheritable capabilities is lowered.
952 Executing a program that changes UID or GID due to the
953 set-user-ID or set-group-ID bits or executing a program that has
954 any file capabilities set will clear the ambient set.
955 Ambient capabilities are added to the permitted set and
956 assigned to the effective set when
957 .BR execve (2)
958 is called.
959 If ambient capabilities cause a process's permitted and effective
960 capabilities to increase during an
961 .BR execve (2),
962 this does not trigger the secure-execution mode described in
963 .BR ld.so (8).
965 A child created via
966 .BR fork (2)
967 inherits copies of its parent's capability sets.
968 For details on how
969 .BR execve (2)
970 affects capabilities, see
971 .I Transformation of capabilities during execve()
972 below.
974 Using
975 .BR capset (2),
976 a thread may manipulate its own capability sets; see
977 .I Programmatically adjusting capability sets
978 below.
980 Since Linux 3.2, the file
981 .I /proc/sys/kernel/cap_last_cap
982 .\" commit 73efc0394e148d0e15583e13712637831f926720
983 exposes the numerical value of the highest capability
984 supported by the running kernel;
985 this can be used to determine the highest bit
986 that may be set in a capability set.
988 .SS File capabilities
989 Since Linux 2.6.24, the kernel supports
990 associating capability sets with an executable file using
991 .BR setcap (8).
992 The file capability sets are stored in an extended attribute (see
993 .BR setxattr (2)
995 .BR xattr (7))
996 named
997 .IR "security.capability" .
998 Writing to this extended attribute requires the
999 .B CAP_SETFCAP
1000 capability.
1001 The file capability sets,
1002 in conjunction with the capability sets of the thread,
1003 determine the capabilities of a thread after an
1004 .BR execve (2).
1006 The three file capability sets are:
1008 .IR Permitted " (formerly known as " forced ):
1009 These capabilities are automatically permitted to the thread,
1010 regardless of the thread's inheritable capabilities.
1012 .IR Inheritable " (formerly known as " allowed ):
1013 This set is ANDed with the thread's inheritable set to determine which
1014 inheritable capabilities are enabled in the permitted set of
1015 the thread after the
1016 .BR execve (2).
1018 .IR Effective :
1019 This is not a set, but rather just a single bit.
1020 If this bit is set, then during an
1021 .BR execve (2)
1022 all of the new permitted capabilities for the thread are
1023 also raised in the effective set.
1024 If this bit is not set, then after an
1025 .BR execve (2),
1026 none of the new permitted capabilities is in the new effective set.
1028 Enabling the file effective capability bit implies
1029 that any file permitted or inheritable capability that causes a
1030 thread to acquire the corresponding permitted capability during an
1031 .BR execve (2)
1032 (see
1033 .I Transformation of capabilities during execve()
1034 below) will also acquire that
1035 capability in its effective set.
1036 Therefore, when assigning capabilities to a file
1037 .RB ( setcap (8),
1038 .BR cap_set_file (3),
1039 .BR cap_set_fd (3)),
1040 if we specify the effective flag as being enabled for any capability,
1041 then the effective flag must also be specified as enabled
1042 for all other capabilities for which the corresponding permitted or
1043 inheritable flag is enabled.
1045 .SS File capability extended attribute versioning
1046 To allow extensibility,
1047 the kernel supports a scheme to encode a version number inside the
1048 .I security.capability
1049 extended attribute that is used to implement file capabilities.
1050 These version numbers are internal to the implementation,
1051 and not directly visible to user-space applications.
1052 To date, the following versions are supported:
1054 .B VFS_CAP_REVISION_1
1055 This was the original file capability implementation,
1056 which supported 32-bit masks for file capabilities.
1058 .BR VFS_CAP_REVISION_2 " (since Linux 2.6.25)"
1059 .\" commit e338d263a76af78fe8f38a72131188b58fceb591
1060 This version allows for file capability masks that are 64 bits in size,
1061 and was necessary as the number of supported capabilities grew beyond 32.
1062 The kernel transparently continues to support the execution of files
1063 that have 32-bit version 1 capability masks,
1064 but when adding capabilities to files that did not previously
1065 have capabilities, or modifying the capabilities of existing files,
1066 it automatically uses the version 2 scheme
1067 (or possibly the version 3 scheme, as described below).
1069 .BR VFS_CAP_REVISION_3 " (since Linux 4.14)"
1070 .\" commit 8db6c34f1dbc8e06aa016a9b829b06902c3e1340
1071 Version 3 file capabilities are provided
1072 to support namespaced file capabilities (described below).
1074 As with version 2 file capabilities,
1075 version 3 capability masks are 64 bits in size.
1076 But in addition, the root user ID of namespace is encoded in the
1077 .I security.capability
1078 extended attribute.
1079 (A namespace's root user ID is the value that user ID 0
1080 inside that namespace maps to in the initial user namespace.)
1082 Version 3 file capabilities are designed to coexist
1083 with version 2 capabilities;
1084 that is, on a modern Linux system,
1085 there may be some files with version 2 capabilities
1086 while others have version 3 capabilities.
1088 Before Linux 4.14,
1089 the only kind of file capability extended attribute
1090 that could be attached to a file was a
1091 .B VFS_CAP_REVISION_2
1092 attribute.
1093 Since Linux 4.14,
1094 the version of the
1095 .I security.capability
1096 extended attribute that is attached to a file
1097 depends on the circumstances in which the attribute was created.
1099 Starting with Linux 4.14, a
1100 .I security.capability
1101 extended attribute is automatically created as (or converted to)
1102 a version 3
1103 .RB ( VFS_CAP_REVISION_3 )
1104 attribute if both of the following are true:
1105 .IP \[bu] 3
1106 The thread writing the attribute resides in a noninitial user namespace.
1107 (More precisely: the thread resides in a user namespace other
1108 than the one from which the underlying filesystem was mounted.)
1109 .IP \[bu]
1110 The thread has the
1111 .B CAP_SETFCAP
1112 capability over the file inode,
1113 meaning that (a) the thread has the
1114 .B CAP_SETFCAP
1115 capability in its own user namespace;
1116 and (b) the UID and GID of the file inode have mappings in
1117 the writer's user namespace.
1119 When a
1120 .B VFS_CAP_REVISION_3
1121 .I security.capability
1122 extended attribute is created, the root user ID of the creating thread's
1123 user namespace is saved in the extended attribute.
1125 By contrast, creating or modifying a
1126 .I security.capability
1127 extended attribute from a privileged
1128 .RB ( CAP_SETFCAP )
1129 thread that resides in the
1130 namespace where the underlying filesystem was mounted
1131 (this normally means the initial user namespace)
1132 automatically results in the creation of a version 2
1133 .RB ( VFS_CAP_REVISION_2 )
1134 attribute.
1136 Note that the creation of a version 3
1137 .I security.capability
1138 extended attribute is automatic.
1139 That is to say, when a user-space application writes
1140 .RB ( setxattr (2))
1142 .I security.capability
1143 attribute in the version 2 format,
1144 the kernel will automatically create a version 3 attribute
1145 if the attribute is created in the circumstances described above.
1146 Correspondingly, when a version 3
1147 .I security.capability
1148 attribute is retrieved
1149 .RB ( getxattr (2))
1150 by a process that resides inside a user namespace that was created by the
1151 root user ID (or a descendant of that user namespace),
1152 the returned attribute is (automatically)
1153 simplified to appear as a version 2 attribute
1154 (i.e., the returned value is the size of a version 2 attribute and does
1155 not include the root user ID).
1156 These automatic translations mean that no changes are required to
1157 user-space tools (e.g.,
1158 .BR setcap (1)
1160 .BR getcap (1))
1161 in order for those tools to be used to create and retrieve version 3
1162 .I security.capability
1163 attributes.
1165 Note that a file can have either a version 2 or a version 3
1166 .I security.capability
1167 extended attribute associated with it, but not both:
1168 creation or modification of the
1169 .I security.capability
1170 extended attribute will automatically modify the version
1171 according to the circumstances in which the extended attribute is
1172 created or modified.
1174 .SS Transformation of capabilities during execve()
1175 During an
1176 .BR execve (2),
1177 the kernel calculates the new capabilities of
1178 the process using the following algorithm:
1180 .in +4n
1182 P'(ambient)     = (file is privileged) ? 0 : P(ambient)
1184 P'(permitted)   = (P(inheritable) & F(inheritable)) |
1185                   (F(permitted) & P(bounding)) | P'(ambient)
1187 P'(effective)   = F(effective) ? P'(permitted) : P'(ambient)
1189 P'(inheritable) = P(inheritable)    [i.e., unchanged]
1191 P'(bounding)    = P(bounding)       [i.e., unchanged]
1195 where:
1196 .RS 4
1199 denotes the value of a thread capability set before the
1200 .BR execve (2)
1202 P'()
1203 denotes the value of a thread capability set after the
1204 .BR execve (2)
1207 denotes a file capability set
1210 Note the following details relating to the above capability
1211 transformation rules:
1212 .IP \[bu] 3
1213 The ambient capability set is present only since Linux 4.3.
1214 When determining the transformation of the ambient set during
1215 .BR execve (2),
1216 a privileged file is one that has capabilities or
1217 has the set-user-ID or set-group-ID bit set.
1218 .IP \[bu]
1219 Prior to Linux 2.6.25,
1220 the bounding set was a system-wide attribute shared by all threads.
1221 That system-wide value was employed to calculate the new permitted set during
1222 .BR execve (2)
1223 in the same manner as shown above for
1224 .IR P(bounding) .
1226 .IR Note :
1227 during the capability transitions described above,
1228 file capabilities may be ignored (treated as empty) for the same reasons
1229 that the set-user-ID and set-group-ID bits are ignored; see
1230 .BR execve (2).
1231 File capabilities are similarly ignored if the kernel was booted with the
1232 .I no_file_caps
1233 option.
1235 .IR Note :
1236 according to the rules above,
1237 if a process with nonzero user IDs performs an
1238 .BR execve (2)
1239 then any capabilities that are present in
1240 its permitted and effective sets will be cleared.
1241 For the treatment of capabilities when a process with a
1242 user ID of zero performs an
1243 .BR execve (2),
1245 .I Capabilities and execution of programs by root
1246 below.
1248 .SS Safety checking for capability-dumb binaries
1249 A capability-dumb binary is an application that has been
1250 marked to have file capabilities, but has not been converted to use the
1251 .BR libcap (3)
1252 API to manipulate its capabilities.
1253 (In other words, this is a traditional set-user-ID-root program
1254 that has been switched to use file capabilities,
1255 but whose code has not been modified to understand capabilities.)
1256 For such applications,
1257 the effective capability bit is set on the file,
1258 so that the file permitted capabilities are automatically
1259 enabled in the process effective set when executing the file.
1260 The kernel recognizes a file which has the effective capability bit set
1261 as capability-dumb for the purpose of the check described here.
1263 When executing a capability-dumb binary,
1264 the kernel checks if the process obtained all permitted capabilities
1265 that were specified in the file permitted set,
1266 after the capability transformations described above have been performed.
1267 (The typical reason why this might
1268 .I not
1269 occur is that the capability bounding set masked out some
1270 of the capabilities in the file permitted set.)
1271 If the process did not obtain the full set of
1272 file permitted capabilities, then
1273 .BR execve (2)
1274 fails with the error
1275 .BR EPERM .
1276 This prevents possible security risks that could arise when
1277 a capability-dumb application is executed with less privilege than it needs.
1278 Note that, by definition,
1279 the application could not itself recognize this problem,
1280 since it does not employ the
1281 .BR libcap (3)
1282 API.
1284 .SS Capabilities and execution of programs by root
1285 .\" See cap_bprm_set_creds(), bprm_caps_from_vfs_cap() and
1286 .\" handle_privileged_root() in security/commoncap.c (Linux 5.0 source)
1287 In order to mirror traditional UNIX semantics,
1288 the kernel performs special treatment of file capabilities when
1289 a process with UID 0 (root) executes a program and
1290 when a set-user-ID-root program is executed.
1292 After having performed any changes to the process effective ID that
1293 were triggered by the set-user-ID mode bit of the binary\[em]e.g.,
1294 switching the effective user ID to 0 (root) because
1295 a set-user-ID-root program was executed\[em]the
1296 kernel calculates the file capability sets as follows:
1297 .IP (1) 5
1298 If the real or effective user ID of the process is 0 (root),
1299 then the file inheritable and permitted sets are ignored;
1300 instead they are notionally considered to be all ones
1301 (i.e., all capabilities enabled).
1302 (There is one exception to this behavior, described in
1303 .I Set-user-ID-root programs that have file capabilities
1304 below.)
1305 .IP (2)
1306 If the effective user ID of the process is 0 (root) or
1307 the file effective bit is in fact enabled,
1308 then the file effective bit is notionally defined to be one (enabled).
1310 These notional values for the file's capability sets are then used
1311 as described above to calculate the transformation of the process's
1312 capabilities during
1313 .BR execve (2).
1315 Thus, when a process with nonzero UIDs
1316 .BR execve (2)s
1317 a set-user-ID-root program that does not have capabilities attached,
1318 or when a process whose real and effective UIDs are zero
1319 .BR execve (2)s
1320 a program, the calculation of the process's new
1321 permitted capabilities simplifies to:
1323 .in +4n
1325 P'(permitted)   = P(inheritable) | P(bounding)
1327 P'(effective)   = P'(permitted)
1331 Consequently, the process gains all capabilities in its permitted and
1332 effective capability sets,
1333 except those masked out by the capability bounding set.
1334 (In the calculation of P'(permitted),
1335 the P'(ambient) term can be simplified away because it is by
1336 definition a proper subset of P(inheritable).)
1338 The special treatments of user ID 0 (root) described in this subsection
1339 can be disabled using the securebits mechanism described below.
1342 .SS Set-user-ID-root programs that have file capabilities
1343 There is one exception to the behavior described in
1344 .I Capabilities and execution of programs by root
1345 above.
1346 If (a) the binary that is being executed has capabilities attached and
1347 (b) the real user ID of the process is
1348 .I not
1349 0 (root) and
1350 (c) the effective user ID of the process
1351 .I is
1352 0 (root), then the file capability bits are honored
1353 (i.e., they are not notionally considered to be all ones).
1354 The usual way in which this situation can arise is when executing
1355 a set-UID-root program that also has file capabilities.
1356 When such a program is executed,
1357 the process gains just the capabilities granted by the program
1358 (i.e., not all capabilities,
1359 as would occur when executing a set-user-ID-root program
1360 that does not have any associated file capabilities).
1362 Note that one can assign empty capability sets to a program file,
1363 and thus it is possible to create a set-user-ID-root program that
1364 changes the effective and saved set-user-ID of the process
1365 that executes the program to 0,
1366 but confers no capabilities to that process.
1368 .SS Capability bounding set
1369 The capability bounding set is a security mechanism that can be used
1370 to limit the capabilities that can be gained during an
1371 .BR execve (2).
1372 The bounding set is used in the following ways:
1373 .IP \[bu] 3
1374 During an
1375 .BR execve (2),
1376 the capability bounding set is ANDed with the file permitted
1377 capability set, and the result of this operation is assigned to the
1378 thread's permitted capability set.
1379 The capability bounding set thus places a limit on the permitted
1380 capabilities that may be granted by an executable file.
1381 .IP \[bu]
1382 (Since Linux 2.6.25)
1383 The capability bounding set acts as a limiting superset for
1384 the capabilities that a thread can add to its inheritable set using
1385 .BR capset (2).
1386 This means that if a capability is not in the bounding set,
1387 then a thread can't add this capability to its
1388 inheritable set, even if it was in its permitted capabilities,
1389 and thereby cannot have this capability preserved in its
1390 permitted set when it
1391 .BR execve (2)s
1392 a file that has the capability in its inheritable set.
1394 Note that the bounding set masks the file permitted capabilities,
1395 but not the inheritable capabilities.
1396 If a thread maintains a capability in its inheritable set
1397 that is not in its bounding set,
1398 then it can still gain that capability in its permitted set
1399 by executing a file that has the capability in its inheritable set.
1401 Depending on the kernel version, the capability bounding set is either
1402 a system-wide attribute, or a per-process attribute.
1404 .B "Capability bounding set from Linux 2.6.25 onward"
1406 From Linux 2.6.25, the
1407 .I "capability bounding set"
1408 is a per-thread attribute.
1409 (The system-wide capability bounding set described below no longer exists.)
1411 The bounding set is inherited at
1412 .BR fork (2)
1413 from the thread's parent, and is preserved across an
1414 .BR execve (2).
1416 A thread may remove capabilities from its capability bounding set using the
1417 .BR prctl (2)
1418 .B PR_CAPBSET_DROP
1419 operation, provided it has the
1420 .B CAP_SETPCAP
1421 capability.
1422 Once a capability has been dropped from the bounding set,
1423 it cannot be restored to that set.
1424 A thread can determine if a capability is in its bounding set using the
1425 .BR prctl (2)
1426 .B PR_CAPBSET_READ
1427 operation.
1429 Removing capabilities from the bounding set is supported only if file
1430 capabilities are compiled into the kernel.
1431 Before Linux 2.6.33,
1432 file capabilities were an optional feature configurable via the
1433 .B CONFIG_SECURITY_FILE_CAPABILITIES
1434 option.
1435 Since Linux 2.6.33,
1436 .\" commit b3a222e52e4d4be77cc4520a57af1a4a0d8222d1
1437 the configuration option has been removed
1438 and file capabilities are always part of the kernel.
1439 When file capabilities are compiled into the kernel, the
1440 .B init
1441 process (the ancestor of all processes) begins with a full bounding set.
1442 If file capabilities are not compiled into the kernel, then
1443 .B init
1444 begins with a full bounding set minus
1445 .BR CAP_SETPCAP ,
1446 because this capability has a different meaning when there are
1447 no file capabilities.
1449 Removing a capability from the bounding set does not remove it
1450 from the thread's inheritable set.
1451 However it does prevent the capability from being added
1452 back into the thread's inheritable set in the future.
1454 .B "Capability bounding set prior to Linux 2.6.25"
1456 Before Linux 2.6.25, the capability bounding set is a system-wide
1457 attribute that affects all threads on the system.
1458 The bounding set is accessible via the file
1459 .IR /proc/sys/kernel/cap\-bound .
1460 (Confusingly, this bit mask parameter is expressed as a
1461 signed decimal number in
1462 .IR /proc/sys/kernel/cap\-bound .)
1464 Only the
1465 .B init
1466 process may set capabilities in the capability bounding set;
1467 other than that, the superuser (more precisely: a process with the
1468 .B CAP_SYS_MODULE
1469 capability) may only clear capabilities from this set.
1471 On a standard system the capability bounding set always masks out the
1472 .B CAP_SETPCAP
1473 capability.
1474 To remove this restriction (dangerous!), modify the definition of
1475 .B CAP_INIT_EFF_SET
1477 .I include/linux/capability.h
1478 and rebuild the kernel.
1480 The system-wide capability bounding set feature was added
1481 to Linux 2.2.11.
1485 .SS Effect of user ID changes on capabilities
1486 To preserve the traditional semantics for transitions between
1487 0 and nonzero user IDs,
1488 the kernel makes the following changes to a thread's capability
1489 sets on changes to the thread's real, effective, saved set,
1490 and filesystem user IDs (using
1491 .BR setuid (2),
1492 .BR setresuid (2),
1493 or similar):
1494 .IP \[bu] 3
1495 If one or more of the real, effective, or saved set user IDs
1496 was previously 0, and as a result of the UID changes all of these IDs
1497 have a nonzero value,
1498 then all capabilities are cleared from the permitted, effective, and ambient
1499 capability sets.
1500 .IP \[bu]
1501 If the effective user ID is changed from 0 to nonzero,
1502 then all capabilities are cleared from the effective set.
1503 .IP \[bu]
1504 If the effective user ID is changed from nonzero to 0,
1505 then the permitted set is copied to the effective set.
1506 .IP \[bu]
1507 If the filesystem user ID is changed from 0 to nonzero (see
1508 .BR setfsuid (2)),
1509 then the following capabilities are cleared from the effective set:
1510 .BR CAP_CHOWN ,
1511 .BR CAP_DAC_OVERRIDE ,
1512 .BR CAP_DAC_READ_SEARCH ,
1513 .BR CAP_FOWNER ,
1514 .BR CAP_FSETID ,
1515 .B CAP_LINUX_IMMUTABLE
1516 (since Linux 2.6.30),
1517 .BR CAP_MAC_OVERRIDE ,
1519 .B CAP_MKNOD
1520 (since Linux 2.6.30).
1521 If the filesystem UID is changed from nonzero to 0,
1522 then any of these capabilities that are enabled in the permitted set
1523 are enabled in the effective set.
1525 If a thread that has a 0 value for one or more of its user IDs wants
1526 to prevent its permitted capability set being cleared when it resets
1527 all of its user IDs to nonzero values, it can do so using the
1528 .B SECBIT_KEEP_CAPS
1529 securebits flag described below.
1531 .SS Programmatically adjusting capability sets
1532 A thread can retrieve and change its permitted, effective, and inheritable
1533 capability sets using the
1534 .BR capget (2)
1536 .BR capset (2)
1537 system calls.
1538 However, the use of
1539 .BR cap_get_proc (3)
1541 .BR cap_set_proc (3),
1542 both provided in the
1543 .I libcap
1544 package,
1545 is preferred for this purpose.
1546 The following rules govern changes to the thread capability sets:
1547 .IP \[bu] 3
1548 If the caller does not have the
1549 .B CAP_SETPCAP
1550 capability,
1551 the new inheritable set must be a subset of the combination
1552 of the existing inheritable and permitted sets.
1553 .IP \[bu]
1554 (Since Linux 2.6.25)
1555 The new inheritable set must be a subset of the combination of the
1556 existing inheritable set and the capability bounding set.
1557 .IP \[bu]
1558 The new permitted set must be a subset of the existing permitted set
1559 (i.e., it is not possible to acquire permitted capabilities
1560 that the thread does not currently have).
1561 .IP \[bu]
1562 The new effective set must be a subset of the new permitted set.
1563 .SS The securebits flags: establishing a capabilities-only environment
1564 .\" For some background:
1565 .\"       see http://lwn.net/Articles/280279/ and
1566 .\"       http://article.gmane.org/gmane.linux.kernel.lsm/5476/
1567 Starting with Linux 2.6.26,
1568 and with a kernel in which file capabilities are enabled,
1569 Linux implements a set of per-thread
1570 .I securebits
1571 flags that can be used to disable special handling of capabilities for UID 0
1572 .RI ( root ).
1573 These flags are as follows:
1575 .B SECBIT_KEEP_CAPS
1576 Setting this flag allows a thread that has one or more 0 UIDs to retain
1577 capabilities in its permitted set
1578 when it switches all of its UIDs to nonzero values.
1579 If this flag is not set,
1580 then such a UID switch causes the thread to lose all permitted capabilities.
1581 This flag is always cleared on an
1582 .BR execve (2).
1584 Note that even with the
1585 .B SECBIT_KEEP_CAPS
1586 flag set, the effective capabilities of a thread are cleared when it
1587 switches its effective UID to a nonzero value.
1588 However,
1589 if the thread has set this flag and its effective UID is already nonzero,
1590 and the thread subsequently switches all other UIDs to nonzero values,
1591 then the effective capabilities will not be cleared.
1593 The setting of the
1594 .B SECBIT_KEEP_CAPS
1595 flag is ignored if the
1596 .B SECBIT_NO_SETUID_FIXUP
1597 flag is set.
1598 (The latter flag provides a superset of the effect of the former flag.)
1600 This flag provides the same functionality as the older
1601 .BR prctl (2)
1602 .B PR_SET_KEEPCAPS
1603 operation.
1605 .B SECBIT_NO_SETUID_FIXUP
1606 Setting this flag stops the kernel from adjusting the process's
1607 permitted, effective, and ambient capability sets when
1608 the thread's effective and filesystem UIDs are switched between
1609 zero and nonzero values.
1611 .I Effect of user ID changes on capabilities
1612 above.
1614 .B SECBIT_NOROOT
1615 If this bit is set, then the kernel does not grant capabilities
1616 when a set-user-ID-root program is executed, or when a process with
1617 an effective or real UID of 0 calls
1618 .BR execve (2).
1619 (See
1620 .I Capabilities and execution of programs by root
1621 above.)
1623 .B SECBIT_NO_CAP_AMBIENT_RAISE
1624 Setting this flag disallows raising ambient capabilities via the
1625 .BR prctl (2)
1626 .B PR_CAP_AMBIENT_RAISE
1627 operation.
1629 Each of the above "base" flags has a companion "locked" flag.
1630 Setting any of the "locked" flags is irreversible,
1631 and has the effect of preventing further changes to the
1632 corresponding "base" flag.
1633 The locked flags are:
1634 .BR SECBIT_KEEP_CAPS_LOCKED ,
1635 .BR SECBIT_NO_SETUID_FIXUP_LOCKED ,
1636 .BR SECBIT_NOROOT_LOCKED ,
1638 .BR SECBIT_NO_CAP_AMBIENT_RAISE_LOCKED .
1641 .I securebits
1642 flags can be modified and retrieved using the
1643 .BR prctl (2)
1644 .B PR_SET_SECUREBITS
1646 .B PR_GET_SECUREBITS
1647 operations.
1649 .B CAP_SETPCAP
1650 capability is required to modify the flags.
1651 Note that the
1652 .B SECBIT_*
1653 constants are available only after including the
1654 .I <linux/securebits.h>
1655 header file.
1658 .I securebits
1659 flags are inherited by child processes.
1660 During an
1661 .BR execve (2),
1662 all of the flags are preserved, except
1663 .B SECBIT_KEEP_CAPS
1664 which is always cleared.
1666 An application can use the following call to lock itself,
1667 and all of its descendants,
1668 into an environment where the only way of gaining capabilities
1669 is by executing a program with associated file capabilities:
1671 .in +4n
1673 prctl(PR_SET_SECUREBITS,
1674         /* SECBIT_KEEP_CAPS off */
1675         SECBIT_KEEP_CAPS_LOCKED |
1676         SECBIT_NO_SETUID_FIXUP |
1677         SECBIT_NO_SETUID_FIXUP_LOCKED |
1678         SECBIT_NOROOT |
1679         SECBIT_NOROOT_LOCKED);
1680         /* Setting/locking SECBIT_NO_CAP_AMBIENT_RAISE
1681            is not required */
1686 .SS Per-user-namespace \[dq]set-user-ID-root\[dq] programs
1687 A set-user-ID program whose UID matches the UID that
1688 created a user namespace will confer capabilities
1689 in the process's permitted and effective sets
1690 when executed by any process inside that namespace
1691 or any descendant user namespace.
1693 The rules about the transformation of the process's capabilities during the
1694 .BR execve (2)
1695 are exactly as described in
1696 .I Transformation of capabilities during execve()
1698 .I Capabilities and execution of programs by root
1699 above,
1700 with the difference that, in the latter subsection, "root"
1701 is the UID of the creator of the user namespace.
1704 .SS Namespaced file capabilities
1705 .\" commit 8db6c34f1dbc8e06aa016a9b829b06902c3e1340
1706 Traditional (i.e., version 2) file capabilities associate
1707 only a set of capability masks with a binary executable file.
1708 When a process executes a binary with such capabilities,
1709 it gains the associated capabilities (within its user namespace)
1710 as per the rules described in
1711 .I Transformation of capabilities during execve()
1712 above.
1714 Because version 2 file capabilities confer capabilities to
1715 the executing process regardless of which user namespace it resides in,
1716 only privileged processes are permitted to associate capabilities with a file.
1717 Here, "privileged" means a process that has the
1718 .B CAP_SETFCAP
1719 capability in the user namespace where the filesystem was mounted
1720 (normally the initial user namespace).
1721 This limitation renders file capabilities useless for certain use cases.
1722 For example, in user-namespaced containers,
1723 it can be desirable to be able to create a binary that
1724 confers capabilities only to processes executed inside that container,
1725 but not to processes that are executed outside the container.
1727 Linux 4.14 added so-called namespaced file capabilities
1728 to support such use cases.
1729 Namespaced file capabilities are recorded as version 3 (i.e.,
1730 .BR VFS_CAP_REVISION_3 )
1731 .I security.capability
1732 extended attributes.
1733 Such an attribute is automatically created in the circumstances described
1735 .I File capability extended attribute versioning
1736 above.
1737 When a version 3
1738 .I security.capability
1739 extended attribute is created,
1740 the kernel records not just the capability masks in the extended attribute,
1741 but also the namespace root user ID.
1743 As with a binary that has
1744 .B VFS_CAP_REVISION_2
1745 file capabilities, a binary with
1746 .B VFS_CAP_REVISION_3
1747 file capabilities confers capabilities to a process during
1748 .BR execve ().
1749 However, capabilities are conferred only if the binary is executed by
1750 a process that resides in a user namespace whose
1751 UID 0 maps to the root user ID that is saved in the extended attribute,
1752 or when executed by a process that resides in a descendant of such a namespace.
1755 .SS Interaction with user namespaces
1756 For further information on the interaction of
1757 capabilities and user namespaces, see
1758 .BR user_namespaces (7).
1759 .SH STANDARDS
1760 No standards govern capabilities, but the Linux capability implementation
1761 is based on the withdrawn
1762 .UR https://archive.org\:/details\:/posix_1003.1e\-990310
1763 POSIX.1e draft standard
1764 .UE .
1765 .SH NOTES
1766 When attempting to
1767 .BR strace (1)
1768 binaries that have capabilities (or set-user-ID-root binaries),
1769 you may find the
1770 .I \-u <username>
1771 option useful.
1772 Something like:
1774 .in +4n
1776 $ \fBsudo strace \-o trace.log \-u ceci ./myprivprog\fP
1780 From Linux 2.5.27 to Linux 2.6.26,
1781 .\" commit 5915eb53861c5776cfec33ca4fcc1fd20d66dd27 removed
1782 .\" CONFIG_SECURITY_CAPABILITIES
1783 capabilities were an optional kernel component,
1784 and could be enabled/disabled via the
1785 .B CONFIG_SECURITY_CAPABILITIES
1786 kernel configuration option.
1789 .IR /proc/ pid /task/TID/status
1790 file can be used to view the capability sets of a thread.
1792 .IR /proc/ pid /status
1793 file shows the capability sets of a process's main thread.
1794 Before Linux 3.8, nonexistent capabilities were shown as being
1795 enabled (1) in these sets.
1796 Since Linux 3.8,
1797 .\" 7b9a7ec565505699f503b4fcf61500dceb36e744
1798 all nonexistent capabilities (above
1799 .BR CAP_LAST_CAP )
1800 are shown as disabled (0).
1803 .I libcap
1804 package provides a suite of routines for setting and
1805 getting capabilities that is more comfortable and less likely
1806 to change than the interface provided by
1807 .BR capset (2)
1809 .BR capget (2).
1810 This package also provides the
1811 .BR setcap (8)
1813 .BR getcap (8)
1814 programs.
1815 It can be found at
1817 .UR https://git.kernel.org\:/pub\:/scm\:/libs\:/libcap\:/libcap.git\:/refs/
1818 .UE .
1820 Before Linux 2.6.24, and from Linux 2.6.24 to Linux 2.6.32 if
1821 file capabilities are not enabled, a thread with the
1822 .B CAP_SETPCAP
1823 capability can manipulate the capabilities of threads other than itself.
1824 However, this is only theoretically possible,
1825 since no thread ever has
1826 .B CAP_SETPCAP
1827 in either of these cases:
1828 .IP \[bu] 3
1829 In the pre-2.6.25 implementation the system-wide capability bounding set,
1830 .IR /proc/sys/kernel/cap\-bound ,
1831 always masks out the
1832 .B CAP_SETPCAP
1833 capability, and this can not be changed
1834 without modifying the kernel source and rebuilding the kernel.
1835 .IP \[bu]
1836 If file capabilities are disabled (i.e., the kernel
1837 .B CONFIG_SECURITY_FILE_CAPABILITIES
1838 option is disabled), then
1839 .B init
1840 starts out with the
1841 .B CAP_SETPCAP
1842 capability removed from its per-process bounding
1843 set, and that bounding set is inherited by all other processes
1844 created on the system.
1845 .SH SEE ALSO
1846 .BR capsh (1),
1847 .BR setpriv (1),
1848 .BR prctl (2),
1849 .BR setfsuid (2),
1850 .BR cap_clear (3),
1851 .BR cap_copy_ext (3),
1852 .BR cap_from_text (3),
1853 .BR cap_get_file (3),
1854 .BR cap_get_proc (3),
1855 .BR cap_init (3),
1856 .BR capgetp (3),
1857 .BR capsetp (3),
1858 .BR libcap (3),
1859 .BR proc (5),
1860 .BR credentials (7),
1861 .BR pthreads (7),
1862 .BR user_namespaces (7),
1863 .BR captest (8), \" from libcap-ng
1864 .BR filecap (8), \" from libcap-ng
1865 .BR getcap (8),
1866 .BR getpcaps (8),
1867 .BR netcap (8), \" from libcap-ng
1868 .BR pscap (8), \" from libcap-ng
1869 .BR setcap (8)
1871 .I include/linux/capability.h
1872 in the Linux kernel source tree