fedora core 6 1.2949 + vserver 2.2.0
[linux-2.6.git] / security / commoncap.c
1 /* Common capabilities, needed by capability.o and root_plug.o 
2  *
3  *      This program is free software; you can redistribute it and/or modify
4  *      it under the terms of the GNU General Public License as published by
5  *      the Free Software Foundation; either version 2 of the License, or
6  *      (at your option) any later version.
7  *
8  */
9
10 #include <linux/capability.h>
11 #include <linux/module.h>
12 #include <linux/init.h>
13 #include <linux/kernel.h>
14 #include <linux/security.h>
15 #include <linux/file.h>
16 #include <linux/mm.h>
17 #include <linux/mman.h>
18 #include <linux/pagemap.h>
19 #include <linux/swap.h>
20 #include <linux/smp_lock.h>
21 #include <linux/skbuff.h>
22 #include <linux/netlink.h>
23 #include <linux/ptrace.h>
24 #include <linux/xattr.h>
25 #include <linux/hugetlb.h>
26 #include <linux/vs_context.h>
27
28 int cap_netlink_send(struct sock *sk, struct sk_buff *skb)
29 {
30         cap_t(NETLINK_CB(skb).eff_cap) = vx_mbcap(cap_effective);
31         return 0;
32 }
33
34 EXPORT_SYMBOL(cap_netlink_send);
35
36 int cap_netlink_recv(struct sk_buff *skb, int cap)
37 {
38         if (!cap_raised(NETLINK_CB(skb).eff_cap, cap))
39                 return -EPERM;
40         return 0;
41 }
42
43 EXPORT_SYMBOL(cap_netlink_recv);
44
45 int cap_capable (struct task_struct *tsk, int cap)
46 {
47         /* Derived from include/linux/sched.h:capable. */
48        if (vx_cap_raised(tsk->vx_info, tsk->cap_effective, cap))
49                 return 0;
50         return -EPERM;
51 }
52
53 int cap_settime(struct timespec *ts, struct timezone *tz)
54 {
55         if (!capable(CAP_SYS_TIME))
56                 return -EPERM;
57         return 0;
58 }
59
60 int cap_ptrace (struct task_struct *parent, struct task_struct *child)
61 {
62         /* Derived from arch/i386/kernel/ptrace.c:sys_ptrace. */
63         if (!cap_issubset(child->cap_permitted, parent->cap_permitted) &&
64             !__capable(parent, CAP_SYS_PTRACE))
65                 return -EPERM;
66         return 0;
67 }
68
69 int cap_capget (struct task_struct *target, kernel_cap_t *effective,
70                 kernel_cap_t *inheritable, kernel_cap_t *permitted)
71 {
72         /* Derived from kernel/capability.c:sys_capget. */
73         *effective = cap_t (target->cap_effective);
74         *inheritable = cap_t (target->cap_inheritable);
75         *permitted = cap_t (target->cap_permitted);
76         return 0;
77 }
78
79 int cap_capset_check (struct task_struct *target, kernel_cap_t *effective,
80                       kernel_cap_t *inheritable, kernel_cap_t *permitted)
81 {
82         /* Derived from kernel/capability.c:sys_capset. */
83         /* verify restrictions on target's new Inheritable set */
84         if (!cap_issubset (*inheritable,
85                            cap_combine (target->cap_inheritable,
86                                         current->cap_permitted))) {
87                 return -EPERM;
88         }
89
90         /* verify restrictions on target's new Permitted set */
91         if (!cap_issubset (*permitted,
92                            cap_combine (target->cap_permitted,
93                                         current->cap_permitted))) {
94                 return -EPERM;
95         }
96
97         /* verify the _new_Effective_ is a subset of the _new_Permitted_ */
98         if (!cap_issubset (*effective, *permitted)) {
99                 return -EPERM;
100         }
101
102         return 0;
103 }
104
105 void cap_capset_set (struct task_struct *target, kernel_cap_t *effective,
106                      kernel_cap_t *inheritable, kernel_cap_t *permitted)
107 {
108         target->cap_effective = *effective;
109         target->cap_inheritable = *inheritable;
110         target->cap_permitted = *permitted;
111 }
112
113 int cap_bprm_set_security (struct linux_binprm *bprm)
114 {
115         /* Copied from fs/exec.c:prepare_binprm. */
116
117         /* We don't have VFS support for capabilities yet */
118         cap_clear (bprm->cap_inheritable);
119         cap_clear (bprm->cap_permitted);
120         cap_clear (bprm->cap_effective);
121
122         /*  To support inheritance of root-permissions and suid-root
123          *  executables under compatibility mode, we raise all three
124          *  capability sets for the file.
125          *
126          *  If only the real uid is 0, we only raise the inheritable
127          *  and permitted sets of the executable file.
128          */
129
130         if (!issecure (SECURE_NOROOT)) {
131                 if (bprm->e_uid == 0 || current->uid == 0) {
132                         cap_set_full (bprm->cap_inheritable);
133                         cap_set_full (bprm->cap_permitted);
134                 }
135                 if (bprm->e_uid == 0)
136                         cap_set_full (bprm->cap_effective);
137         }
138         return 0;
139 }
140
141 void cap_bprm_apply_creds (struct linux_binprm *bprm, int unsafe)
142 {
143         /* Derived from fs/exec.c:compute_creds. */
144         kernel_cap_t new_permitted, working;
145
146         new_permitted = cap_intersect (bprm->cap_permitted,
147                                         vx_current_cap_bset());
148         working = cap_intersect (bprm->cap_inheritable,
149                                  current->cap_inheritable);
150         new_permitted = cap_combine (new_permitted, working);
151
152         if (bprm->e_uid != current->uid || bprm->e_gid != current->gid ||
153             !cap_issubset (new_permitted, current->cap_permitted)) {
154                 current->mm->dumpable = suid_dumpable;
155
156                 if (unsafe & ~LSM_UNSAFE_PTRACE_CAP) {
157                         if (!capable(CAP_SETUID)) {
158                                 bprm->e_uid = current->uid;
159                                 bprm->e_gid = current->gid;
160                         }
161                         if (!capable (CAP_SETPCAP)) {
162                                 new_permitted = cap_intersect (new_permitted,
163                                                         current->cap_permitted);
164                         }
165                 }
166         }
167
168         current->suid = current->euid = current->fsuid = bprm->e_uid;
169         current->sgid = current->egid = current->fsgid = bprm->e_gid;
170
171         /* For init, we want to retain the capabilities set
172          * in the init_task struct. Thus we skip the usual
173          * capability rules */
174         if (!is_init(current)) {
175                 current->cap_permitted = new_permitted;
176                 current->cap_effective =
177                     cap_intersect (new_permitted, bprm->cap_effective);
178         }
179
180         /* AUD: Audit candidate if current->cap_effective is set */
181
182         current->keep_capabilities = 0;
183 }
184
185 int cap_bprm_secureexec (struct linux_binprm *bprm)
186 {
187         /* If/when this module is enhanced to incorporate capability
188            bits on files, the test below should be extended to also perform a 
189            test between the old and new capability sets.  For now,
190            it simply preserves the legacy decision algorithm used by
191            the old userland. */
192         return (current->euid != current->uid ||
193                 current->egid != current->gid);
194 }
195
196 int cap_inode_setxattr(struct dentry *dentry, char *name, void *value,
197                        size_t size, int flags)
198 {
199         if (!strncmp(name, XATTR_SECURITY_PREFIX,
200                      sizeof(XATTR_SECURITY_PREFIX) - 1)  &&
201             !capable(CAP_SYS_ADMIN))
202                 return -EPERM;
203         return 0;
204 }
205
206 int cap_inode_removexattr(struct dentry *dentry, char *name)
207 {
208         if (!strncmp(name, XATTR_SECURITY_PREFIX,
209                      sizeof(XATTR_SECURITY_PREFIX) - 1)  &&
210             !capable(CAP_SYS_ADMIN))
211                 return -EPERM;
212         return 0;
213 }
214
215 /* moved from kernel/sys.c. */
216 /* 
217  * cap_emulate_setxuid() fixes the effective / permitted capabilities of
218  * a process after a call to setuid, setreuid, or setresuid.
219  *
220  *  1) When set*uiding _from_ one of {r,e,s}uid == 0 _to_ all of
221  *  {r,e,s}uid != 0, the permitted and effective capabilities are
222  *  cleared.
223  *
224  *  2) When set*uiding _from_ euid == 0 _to_ euid != 0, the effective
225  *  capabilities of the process are cleared.
226  *
227  *  3) When set*uiding _from_ euid != 0 _to_ euid == 0, the effective
228  *  capabilities are set to the permitted capabilities.
229  *
230  *  fsuid is handled elsewhere. fsuid == 0 and {r,e,s}uid!= 0 should 
231  *  never happen.
232  *
233  *  -astor 
234  *
235  * cevans - New behaviour, Oct '99
236  * A process may, via prctl(), elect to keep its capabilities when it
237  * calls setuid() and switches away from uid==0. Both permitted and
238  * effective sets will be retained.
239  * Without this change, it was impossible for a daemon to drop only some
240  * of its privilege. The call to setuid(!=0) would drop all privileges!
241  * Keeping uid 0 is not an option because uid 0 owns too many vital
242  * files..
243  * Thanks to Olaf Kirch and Peter Benie for spotting this.
244  */
245 static inline void cap_emulate_setxuid (int old_ruid, int old_euid,
246                                         int old_suid)
247 {
248         if ((old_ruid == 0 || old_euid == 0 || old_suid == 0) &&
249             (current->uid != 0 && current->euid != 0 && current->suid != 0) &&
250             !current->keep_capabilities) {
251                 cap_clear (current->cap_permitted);
252                 cap_clear (current->cap_effective);
253         }
254         if (old_euid == 0 && current->euid != 0) {
255                 cap_clear (current->cap_effective);
256         }
257         if (old_euid != 0 && current->euid == 0) {
258                 current->cap_effective = current->cap_permitted;
259         }
260 }
261
262 int cap_task_post_setuid (uid_t old_ruid, uid_t old_euid, uid_t old_suid,
263                           int flags)
264 {
265         switch (flags) {
266         case LSM_SETID_RE:
267         case LSM_SETID_ID:
268         case LSM_SETID_RES:
269                 /* Copied from kernel/sys.c:setreuid/setuid/setresuid. */
270                 if (!issecure (SECURE_NO_SETUID_FIXUP)) {
271                         cap_emulate_setxuid (old_ruid, old_euid, old_suid);
272                 }
273                 break;
274         case LSM_SETID_FS:
275                 {
276                         uid_t old_fsuid = old_ruid;
277
278                         /* Copied from kernel/sys.c:setfsuid. */
279
280                         /*
281                          * FIXME - is fsuser used for all CAP_FS_MASK capabilities?
282                          *          if not, we might be a bit too harsh here.
283                          */
284
285                         if (!issecure (SECURE_NO_SETUID_FIXUP)) {
286                                 if (old_fsuid == 0 && current->fsuid != 0) {
287                                         cap_t (current->cap_effective) &=
288                                             ~CAP_FS_MASK;
289                                 }
290                                 if (old_fsuid != 0 && current->fsuid == 0) {
291                                         cap_t (current->cap_effective) |=
292                                             (cap_t (current->cap_permitted) &
293                                              CAP_FS_MASK);
294                                 }
295                         }
296                         break;
297                 }
298         default:
299                 return -EINVAL;
300         }
301
302         return 0;
303 }
304
305 void cap_task_reparent_to_init (struct task_struct *p)
306 {
307         p->cap_effective = CAP_INIT_EFF_SET;
308         p->cap_inheritable = CAP_INIT_INH_SET;
309         p->cap_permitted = CAP_FULL_SET;
310         p->keep_capabilities = 0;
311         return;
312 }
313
314 int cap_syslog (int type)
315 {
316         if ((type != 3 && type != 10) &&
317                 !vx_capable(CAP_SYS_ADMIN, VXC_SYSLOG))
318                 return -EPERM;
319         return 0;
320 }
321
322 int cap_vm_enough_memory(long pages)
323 {
324         int cap_sys_admin = 0;
325
326         if (cap_capable(current, CAP_SYS_ADMIN) == 0)
327                 cap_sys_admin = 1;
328         return __vm_enough_memory(pages, cap_sys_admin);
329 }
330
331 EXPORT_SYMBOL(cap_capable);
332 EXPORT_SYMBOL(cap_settime);
333 EXPORT_SYMBOL(cap_ptrace);
334 EXPORT_SYMBOL(cap_capget);
335 EXPORT_SYMBOL(cap_capset_check);
336 EXPORT_SYMBOL(cap_capset_set);
337 EXPORT_SYMBOL(cap_bprm_set_security);
338 EXPORT_SYMBOL(cap_bprm_apply_creds);
339 EXPORT_SYMBOL(cap_bprm_secureexec);
340 EXPORT_SYMBOL(cap_inode_setxattr);
341 EXPORT_SYMBOL(cap_inode_removexattr);
342 EXPORT_SYMBOL(cap_task_post_setuid);
343 EXPORT_SYMBOL(cap_task_reparent_to_init);
344 EXPORT_SYMBOL(cap_syslog);
345 EXPORT_SYMBOL(cap_vm_enough_memory);
346
347 MODULE_DESCRIPTION("Standard Linux Common Capabilities Security Module");
348 MODULE_LICENSE("GPL");