2 * linux/kernel/capability.c
4 * Copyright (C) 1997 Andrew Main <zefram@fysh.org>
6 * Integrated into 2.1.97+, Andrew G. Morgan <morgan@kernel.org>
7 * 30 May 2002: Cleanup, Robert M. Love <rml@tech9.net>
10 #include <linux/capability.h>
12 #include <linux/module.h>
13 #include <linux/security.h>
14 #include <linux/syscalls.h>
15 #include <linux/pid_namespace.h>
16 #include <asm/uaccess.h>
19 * This lock protects task->cap_* for all tasks including current.
20 * Locking rule: acquire this prior to tasklist_lock.
22 static DEFINE_SPINLOCK(task_capability_lock
);
25 * For sys_getproccap() and sys_setproccap(), any of the three
26 * capability set pointers may be NULL -- indicating that that set is
27 * uninteresting and/or not to be changed.
31 * sys_capget - get the capabilities of a given process.
32 * @header: pointer to struct that contains capability version and
34 * @dataptr: pointer to struct that contains the effective, permitted,
35 * and inheritable capabilities that are returned
37 * Returns 0 on success and < 0 on error.
39 asmlinkage
long sys_capget(cap_user_header_t header
, cap_user_data_t dataptr
)
44 struct task_struct
*target
;
45 struct __user_cap_data_struct data
;
47 if (get_user(version
, &header
->version
))
50 if (version
!= _LINUX_CAPABILITY_VERSION
) {
51 if (put_user(_LINUX_CAPABILITY_VERSION
, &header
->version
))
56 if (get_user(pid
, &header
->pid
))
62 spin_lock(&task_capability_lock
);
63 read_lock(&tasklist_lock
);
65 if (pid
&& pid
!= task_pid_vnr(current
)) {
66 target
= find_task_by_vpid(pid
);
74 ret
= security_capget(target
, &data
.effective
, &data
.inheritable
, &data
.permitted
);
77 read_unlock(&tasklist_lock
);
78 spin_unlock(&task_capability_lock
);
80 if (!ret
&& copy_to_user(dataptr
, &data
, sizeof data
))
87 * cap_set_pg - set capabilities for all processes in a given process
88 * group. We call this holding task_capability_lock and tasklist_lock.
90 static inline int cap_set_pg(int pgrp_nr
, kernel_cap_t
*effective
,
91 kernel_cap_t
*inheritable
,
92 kernel_cap_t
*permitted
)
94 struct task_struct
*g
, *target
;
99 pgrp
= find_vpid(pgrp_nr
);
100 do_each_pid_task(pgrp
, PIDTYPE_PGID
, g
) {
102 while_each_thread(g
, target
) {
103 if (!security_capset_check(target
, effective
,
106 security_capset_set(target
, effective
,
113 } while_each_pid_task(pgrp
, PIDTYPE_PGID
, g
);
121 * cap_set_all - set capabilities for all processes other than init
122 * and self. We call this holding task_capability_lock and tasklist_lock.
124 static inline int cap_set_all(kernel_cap_t
*effective
,
125 kernel_cap_t
*inheritable
,
126 kernel_cap_t
*permitted
)
128 struct task_struct
*g
, *target
;
132 do_each_thread(g
, target
) {
133 if (target
== current
|| is_container_init(target
->group_leader
))
136 if (security_capset_check(target
, effective
, inheritable
,
140 security_capset_set(target
, effective
, inheritable
, permitted
);
141 } while_each_thread(g
, target
);
149 * sys_capset - set capabilities for a process or a group of processes
150 * @header: pointer to struct that contains capability version and
152 * @data: pointer to struct that contains the effective, permitted,
153 * and inheritable capabilities
155 * Set capabilities for a given process, all processes, or all
156 * processes in a given process group.
158 * The restrictions on setting capabilities are specified as:
160 * [pid is for the 'target' task. 'current' is the calling task.]
162 * I: any raised capabilities must be a subset of the (old current) permitted
163 * P: any raised capabilities must be a subset of the (old current) permitted
164 * E: must be set to a subset of (new target) permitted
166 * Returns 0 on success and < 0 on error.
168 asmlinkage
long sys_capset(cap_user_header_t header
, const cap_user_data_t data
)
170 kernel_cap_t inheritable
, permitted
, effective
;
172 struct task_struct
*target
;
176 if (get_user(version
, &header
->version
))
179 if (version
!= _LINUX_CAPABILITY_VERSION
) {
180 if (put_user(_LINUX_CAPABILITY_VERSION
, &header
->version
))
185 if (get_user(pid
, &header
->pid
))
188 if (pid
&& pid
!= task_pid_vnr(current
) && !capable(CAP_SETPCAP
))
191 if (copy_from_user(&effective
, &data
->effective
, sizeof(effective
)) ||
192 copy_from_user(&inheritable
, &data
->inheritable
, sizeof(inheritable
)) ||
193 copy_from_user(&permitted
, &data
->permitted
, sizeof(permitted
)))
196 spin_lock(&task_capability_lock
);
197 read_lock(&tasklist_lock
);
199 if (pid
> 0 && pid
!= task_pid_vnr(current
)) {
200 target
= find_task_by_vpid(pid
);
210 /* having verified that the proposed changes are legal,
211 we now put them into effect. */
213 if (pid
== -1) /* all procs other than current and init */
214 ret
= cap_set_all(&effective
, &inheritable
, &permitted
);
216 else /* all procs in process group */
217 ret
= cap_set_pg(-pid
, &effective
, &inheritable
,
220 ret
= security_capset_check(target
, &effective
, &inheritable
,
223 security_capset_set(target
, &effective
, &inheritable
,
228 read_unlock(&tasklist_lock
);
229 spin_unlock(&task_capability_lock
);
234 int __capable(struct task_struct
*t
, int cap
)
236 if (security_capable(t
, cap
) == 0) {
237 t
->flags
|= PF_SUPERPRIV
;
245 return __capable(current
, cap
);
247 EXPORT_SYMBOL(capable
);