CRED: Wrap task credential accesses in the capabilities code
[safe/jmp/linux-2.6] / 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/audit.h>
12 #include <linux/module.h>
13 #include <linux/init.h>
14 #include <linux/kernel.h>
15 #include <linux/security.h>
16 #include <linux/file.h>
17 #include <linux/mm.h>
18 #include <linux/mman.h>
19 #include <linux/pagemap.h>
20 #include <linux/swap.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/mount.h>
27 #include <linux/sched.h>
28 #include <linux/prctl.h>
29 #include <linux/securebits.h>
30
31 int cap_netlink_send(struct sock *sk, struct sk_buff *skb)
32 {
33         NETLINK_CB(skb).eff_cap = current->cap_effective;
34         return 0;
35 }
36
37 int cap_netlink_recv(struct sk_buff *skb, int cap)
38 {
39         if (!cap_raised(NETLINK_CB(skb).eff_cap, cap))
40                 return -EPERM;
41         return 0;
42 }
43
44 EXPORT_SYMBOL(cap_netlink_recv);
45
46 /*
47  * NOTE WELL: cap_capable() cannot be used like the kernel's capable()
48  * function.  That is, it has the reverse semantics: cap_capable()
49  * returns 0 when a task has a capability, but the kernel's capable()
50  * returns 1 for this case.
51  */
52 int cap_capable(struct task_struct *tsk, int cap, int audit)
53 {
54         /* Derived from include/linux/sched.h:capable. */
55         if (cap_raised(tsk->cap_effective, cap))
56                 return 0;
57         return -EPERM;
58 }
59
60 int cap_settime(struct timespec *ts, struct timezone *tz)
61 {
62         if (!capable(CAP_SYS_TIME))
63                 return -EPERM;
64         return 0;
65 }
66
67 int cap_ptrace_may_access(struct task_struct *child, unsigned int mode)
68 {
69         /* Derived from arch/i386/kernel/ptrace.c:sys_ptrace. */
70         if (cap_issubset(child->cap_permitted, current->cap_permitted))
71                 return 0;
72         if (capable(CAP_SYS_PTRACE))
73                 return 0;
74         return -EPERM;
75 }
76
77 int cap_ptrace_traceme(struct task_struct *parent)
78 {
79         /* Derived from arch/i386/kernel/ptrace.c:sys_ptrace. */
80         if (cap_issubset(current->cap_permitted, parent->cap_permitted))
81                 return 0;
82         if (has_capability(parent, CAP_SYS_PTRACE))
83                 return 0;
84         return -EPERM;
85 }
86
87 int cap_capget (struct task_struct *target, kernel_cap_t *effective,
88                 kernel_cap_t *inheritable, kernel_cap_t *permitted)
89 {
90         /* Derived from kernel/capability.c:sys_capget. */
91         *effective = target->cap_effective;
92         *inheritable = target->cap_inheritable;
93         *permitted = target->cap_permitted;
94         return 0;
95 }
96
97 #ifdef CONFIG_SECURITY_FILE_CAPABILITIES
98
99 static inline int cap_block_setpcap(struct task_struct *target)
100 {
101         /*
102          * No support for remote process capability manipulation with
103          * filesystem capability support.
104          */
105         return (target != current);
106 }
107
108 static inline int cap_inh_is_capped(void)
109 {
110         /*
111          * Return 1 if changes to the inheritable set are limited
112          * to the old permitted set. That is, if the current task
113          * does *not* possess the CAP_SETPCAP capability.
114          */
115         return (cap_capable(current, CAP_SETPCAP, SECURITY_CAP_AUDIT) != 0);
116 }
117
118 static inline int cap_limit_ptraced_target(void) { return 1; }
119
120 #else /* ie., ndef CONFIG_SECURITY_FILE_CAPABILITIES */
121
122 static inline int cap_block_setpcap(struct task_struct *t) { return 0; }
123 static inline int cap_inh_is_capped(void) { return 1; }
124 static inline int cap_limit_ptraced_target(void)
125 {
126         return !capable(CAP_SETPCAP);
127 }
128
129 #endif /* def CONFIG_SECURITY_FILE_CAPABILITIES */
130
131 int cap_capset_check (struct task_struct *target, kernel_cap_t *effective,
132                       kernel_cap_t *inheritable, kernel_cap_t *permitted)
133 {
134         if (cap_block_setpcap(target)) {
135                 return -EPERM;
136         }
137         if (cap_inh_is_capped()
138             && !cap_issubset(*inheritable,
139                              cap_combine(target->cap_inheritable,
140                                          current->cap_permitted))) {
141                 /* incapable of using this inheritable set */
142                 return -EPERM;
143         }
144         if (!cap_issubset(*inheritable,
145                            cap_combine(target->cap_inheritable,
146                                        current->cap_bset))) {
147                 /* no new pI capabilities outside bounding set */
148                 return -EPERM;
149         }
150
151         /* verify restrictions on target's new Permitted set */
152         if (!cap_issubset (*permitted,
153                            cap_combine (target->cap_permitted,
154                                         current->cap_permitted))) {
155                 return -EPERM;
156         }
157
158         /* verify the _new_Effective_ is a subset of the _new_Permitted_ */
159         if (!cap_issubset (*effective, *permitted)) {
160                 return -EPERM;
161         }
162
163         return 0;
164 }
165
166 void cap_capset_set (struct task_struct *target, kernel_cap_t *effective,
167                      kernel_cap_t *inheritable, kernel_cap_t *permitted)
168 {
169         target->cap_effective = *effective;
170         target->cap_inheritable = *inheritable;
171         target->cap_permitted = *permitted;
172 }
173
174 static inline void bprm_clear_caps(struct linux_binprm *bprm)
175 {
176         cap_clear(bprm->cap_post_exec_permitted);
177         bprm->cap_effective = false;
178 }
179
180 #ifdef CONFIG_SECURITY_FILE_CAPABILITIES
181
182 int cap_inode_need_killpriv(struct dentry *dentry)
183 {
184         struct inode *inode = dentry->d_inode;
185         int error;
186
187         if (!inode->i_op || !inode->i_op->getxattr)
188                return 0;
189
190         error = inode->i_op->getxattr(dentry, XATTR_NAME_CAPS, NULL, 0);
191         if (error <= 0)
192                 return 0;
193         return 1;
194 }
195
196 int cap_inode_killpriv(struct dentry *dentry)
197 {
198         struct inode *inode = dentry->d_inode;
199
200         if (!inode->i_op || !inode->i_op->removexattr)
201                return 0;
202
203         return inode->i_op->removexattr(dentry, XATTR_NAME_CAPS);
204 }
205
206 static inline int bprm_caps_from_vfs_caps(struct cpu_vfs_cap_data *caps,
207                                           struct linux_binprm *bprm)
208 {
209         unsigned i;
210         int ret = 0;
211
212         if (caps->magic_etc & VFS_CAP_FLAGS_EFFECTIVE)
213                 bprm->cap_effective = true;
214         else
215                 bprm->cap_effective = false;
216
217         CAP_FOR_EACH_U32(i) {
218                 __u32 permitted = caps->permitted.cap[i];
219                 __u32 inheritable = caps->inheritable.cap[i];
220
221                 /*
222                  * pP' = (X & fP) | (pI & fI)
223                  */
224                 bprm->cap_post_exec_permitted.cap[i] =
225                         (current->cap_bset.cap[i] & permitted) |
226                         (current->cap_inheritable.cap[i] & inheritable);
227
228                 if (permitted & ~bprm->cap_post_exec_permitted.cap[i]) {
229                         /*
230                          * insufficient to execute correctly
231                          */
232                         ret = -EPERM;
233                 }
234         }
235
236         /*
237          * For legacy apps, with no internal support for recognizing they
238          * do not have enough capabilities, we return an error if they are
239          * missing some "forced" (aka file-permitted) capabilities.
240          */
241         return bprm->cap_effective ? ret : 0;
242 }
243
244 int get_vfs_caps_from_disk(const struct dentry *dentry, struct cpu_vfs_cap_data *cpu_caps)
245 {
246         struct inode *inode = dentry->d_inode;
247         __u32 magic_etc;
248         unsigned tocopy, i;
249         int size;
250         struct vfs_cap_data caps;
251
252         memset(cpu_caps, 0, sizeof(struct cpu_vfs_cap_data));
253
254         if (!inode || !inode->i_op || !inode->i_op->getxattr)
255                 return -ENODATA;
256
257         size = inode->i_op->getxattr((struct dentry *)dentry, XATTR_NAME_CAPS, &caps,
258                                    XATTR_CAPS_SZ);
259         if (size == -ENODATA || size == -EOPNOTSUPP) {
260                 /* no data, that's ok */
261                 return -ENODATA;
262         }
263         if (size < 0)
264                 return size;
265
266         if (size < sizeof(magic_etc))
267                 return -EINVAL;
268
269         cpu_caps->magic_etc = magic_etc = le32_to_cpu(caps.magic_etc);
270
271         switch ((magic_etc & VFS_CAP_REVISION_MASK)) {
272         case VFS_CAP_REVISION_1:
273                 if (size != XATTR_CAPS_SZ_1)
274                         return -EINVAL;
275                 tocopy = VFS_CAP_U32_1;
276                 break;
277         case VFS_CAP_REVISION_2:
278                 if (size != XATTR_CAPS_SZ_2)
279                         return -EINVAL;
280                 tocopy = VFS_CAP_U32_2;
281                 break;
282         default:
283                 return -EINVAL;
284         }
285
286         CAP_FOR_EACH_U32(i) {
287                 if (i >= tocopy)
288                         break;
289                 cpu_caps->permitted.cap[i] = le32_to_cpu(caps.data[i].permitted);
290                 cpu_caps->inheritable.cap[i] = le32_to_cpu(caps.data[i].inheritable);
291         }
292         return 0;
293 }
294
295 /* Locate any VFS capabilities: */
296 static int get_file_caps(struct linux_binprm *bprm)
297 {
298         struct dentry *dentry;
299         int rc = 0;
300         struct cpu_vfs_cap_data vcaps;
301
302         bprm_clear_caps(bprm);
303
304         if (!file_caps_enabled)
305                 return 0;
306
307         if (bprm->file->f_vfsmnt->mnt_flags & MNT_NOSUID)
308                 return 0;
309
310         dentry = dget(bprm->file->f_dentry);
311
312         rc = get_vfs_caps_from_disk(dentry, &vcaps);
313         if (rc < 0) {
314                 if (rc == -EINVAL)
315                         printk(KERN_NOTICE "%s: get_vfs_caps_from_disk returned %d for %s\n",
316                                 __func__, rc, bprm->filename);
317                 else if (rc == -ENODATA)
318                         rc = 0;
319                 goto out;
320         }
321
322         rc = bprm_caps_from_vfs_caps(&vcaps, bprm);
323
324 out:
325         dput(dentry);
326         if (rc)
327                 bprm_clear_caps(bprm);
328
329         return rc;
330 }
331
332 #else
333 int cap_inode_need_killpriv(struct dentry *dentry)
334 {
335         return 0;
336 }
337
338 int cap_inode_killpriv(struct dentry *dentry)
339 {
340         return 0;
341 }
342
343 static inline int get_file_caps(struct linux_binprm *bprm)
344 {
345         bprm_clear_caps(bprm);
346         return 0;
347 }
348 #endif
349
350 int cap_bprm_set_security (struct linux_binprm *bprm)
351 {
352         int ret;
353
354         ret = get_file_caps(bprm);
355
356         if (!issecure(SECURE_NOROOT)) {
357                 /*
358                  * To support inheritance of root-permissions and suid-root
359                  * executables under compatibility mode, we override the
360                  * capability sets for the file.
361                  *
362                  * If only the real uid is 0, we do not set the effective
363                  * bit.
364                  */
365                 if (bprm->e_uid == 0 || current_uid() == 0) {
366                         /* pP' = (cap_bset & ~0) | (pI & ~0) */
367                         bprm->cap_post_exec_permitted = cap_combine(
368                                 current->cap_bset, current->cap_inheritable
369                                 );
370                         bprm->cap_effective = (bprm->e_uid == 0);
371                         ret = 0;
372                 }
373         }
374
375         return ret;
376 }
377
378 void cap_bprm_apply_creds (struct linux_binprm *bprm, int unsafe)
379 {
380         kernel_cap_t pP = current->cap_permitted;
381         kernel_cap_t pE = current->cap_effective;
382         uid_t uid;
383         gid_t gid;
384
385         current_uid_gid(&uid, &gid);
386
387         if (bprm->e_uid != uid || bprm->e_gid != gid ||
388             !cap_issubset(bprm->cap_post_exec_permitted,
389                           current->cap_permitted)) {
390                 set_dumpable(current->mm, suid_dumpable);
391                 current->pdeath_signal = 0;
392
393                 if (unsafe & ~LSM_UNSAFE_PTRACE_CAP) {
394                         if (!capable(CAP_SETUID)) {
395                                 bprm->e_uid = uid;
396                                 bprm->e_gid = gid;
397                         }
398                         if (cap_limit_ptraced_target()) {
399                                 bprm->cap_post_exec_permitted = cap_intersect(
400                                         bprm->cap_post_exec_permitted,
401                                         current->cap_permitted);
402                         }
403                 }
404         }
405
406         current->suid = current->euid = current->fsuid = bprm->e_uid;
407         current->sgid = current->egid = current->fsgid = bprm->e_gid;
408
409         /* For init, we want to retain the capabilities set
410          * in the init_task struct. Thus we skip the usual
411          * capability rules */
412         if (!is_global_init(current)) {
413                 current->cap_permitted = bprm->cap_post_exec_permitted;
414                 if (bprm->cap_effective)
415                         current->cap_effective = bprm->cap_post_exec_permitted;
416                 else
417                         cap_clear(current->cap_effective);
418         }
419
420         /*
421          * Audit candidate if current->cap_effective is set
422          *
423          * We do not bother to audit if 3 things are true:
424          *   1) cap_effective has all caps
425          *   2) we are root
426          *   3) root is supposed to have all caps (SECURE_NOROOT)
427          * Since this is just a normal root execing a process.
428          *
429          * Number 1 above might fail if you don't have a full bset, but I think
430          * that is interesting information to audit.
431          */
432         if (!cap_isclear(current->cap_effective)) {
433                 if (!cap_issubset(CAP_FULL_SET, current->cap_effective) ||
434                     (bprm->e_uid != 0) || (current->uid != 0) ||
435                     issecure(SECURE_NOROOT))
436                         audit_log_bprm_fcaps(bprm, &pP, &pE);
437         }
438
439         current->securebits &= ~issecure_mask(SECURE_KEEP_CAPS);
440 }
441
442 int cap_bprm_secureexec (struct linux_binprm *bprm)
443 {
444         if (current_uid() != 0) {
445                 if (bprm->cap_effective)
446                         return 1;
447                 if (!cap_isclear(bprm->cap_post_exec_permitted))
448                         return 1;
449         }
450
451         return (current_euid() != current_uid() ||
452                 current_egid() != current_gid());
453 }
454
455 int cap_inode_setxattr(struct dentry *dentry, const char *name,
456                        const void *value, size_t size, int flags)
457 {
458         if (!strcmp(name, XATTR_NAME_CAPS)) {
459                 if (!capable(CAP_SETFCAP))
460                         return -EPERM;
461                 return 0;
462         } else if (!strncmp(name, XATTR_SECURITY_PREFIX,
463                      sizeof(XATTR_SECURITY_PREFIX) - 1)  &&
464             !capable(CAP_SYS_ADMIN))
465                 return -EPERM;
466         return 0;
467 }
468
469 int cap_inode_removexattr(struct dentry *dentry, const char *name)
470 {
471         if (!strcmp(name, XATTR_NAME_CAPS)) {
472                 if (!capable(CAP_SETFCAP))
473                         return -EPERM;
474                 return 0;
475         } else if (!strncmp(name, XATTR_SECURITY_PREFIX,
476                      sizeof(XATTR_SECURITY_PREFIX) - 1)  &&
477             !capable(CAP_SYS_ADMIN))
478                 return -EPERM;
479         return 0;
480 }
481
482 /* moved from kernel/sys.c. */
483 /* 
484  * cap_emulate_setxuid() fixes the effective / permitted capabilities of
485  * a process after a call to setuid, setreuid, or setresuid.
486  *
487  *  1) When set*uiding _from_ one of {r,e,s}uid == 0 _to_ all of
488  *  {r,e,s}uid != 0, the permitted and effective capabilities are
489  *  cleared.
490  *
491  *  2) When set*uiding _from_ euid == 0 _to_ euid != 0, the effective
492  *  capabilities of the process are cleared.
493  *
494  *  3) When set*uiding _from_ euid != 0 _to_ euid == 0, the effective
495  *  capabilities are set to the permitted capabilities.
496  *
497  *  fsuid is handled elsewhere. fsuid == 0 and {r,e,s}uid!= 0 should 
498  *  never happen.
499  *
500  *  -astor 
501  *
502  * cevans - New behaviour, Oct '99
503  * A process may, via prctl(), elect to keep its capabilities when it
504  * calls setuid() and switches away from uid==0. Both permitted and
505  * effective sets will be retained.
506  * Without this change, it was impossible for a daemon to drop only some
507  * of its privilege. The call to setuid(!=0) would drop all privileges!
508  * Keeping uid 0 is not an option because uid 0 owns too many vital
509  * files..
510  * Thanks to Olaf Kirch and Peter Benie for spotting this.
511  */
512 static inline void cap_emulate_setxuid (int old_ruid, int old_euid,
513                                         int old_suid)
514 {
515         uid_t euid = current_euid();
516
517         if ((old_ruid == 0 || old_euid == 0 || old_suid == 0) &&
518             (current_uid()  != 0 && euid != 0 && current_suid() != 0) &&
519             !issecure(SECURE_KEEP_CAPS)) {
520                 cap_clear (current->cap_permitted);
521                 cap_clear (current->cap_effective);
522         }
523         if (old_euid == 0 && euid != 0) {
524                 cap_clear (current->cap_effective);
525         }
526         if (old_euid != 0 && euid == 0) {
527                 current->cap_effective = current->cap_permitted;
528         }
529 }
530
531 int cap_task_post_setuid (uid_t old_ruid, uid_t old_euid, uid_t old_suid,
532                           int flags)
533 {
534         switch (flags) {
535         case LSM_SETID_RE:
536         case LSM_SETID_ID:
537         case LSM_SETID_RES:
538                 /* Copied from kernel/sys.c:setreuid/setuid/setresuid. */
539                 if (!issecure (SECURE_NO_SETUID_FIXUP)) {
540                         cap_emulate_setxuid (old_ruid, old_euid, old_suid);
541                 }
542                 break;
543         case LSM_SETID_FS:
544                 {
545                         uid_t old_fsuid = old_ruid;
546
547                         /* Copied from kernel/sys.c:setfsuid. */
548
549                         /*
550                          * FIXME - is fsuser used for all CAP_FS_MASK capabilities?
551                          *          if not, we might be a bit too harsh here.
552                          */
553
554                         if (!issecure (SECURE_NO_SETUID_FIXUP)) {
555                                 if (old_fsuid == 0 && current_fsuid() != 0) {
556                                         current->cap_effective =
557                                                 cap_drop_fs_set(
558                                                     current->cap_effective);
559                                 }
560                                 if (old_fsuid != 0 && current_fsuid() == 0) {
561                                         current->cap_effective =
562                                                 cap_raise_fs_set(
563                                                     current->cap_effective,
564                                                     current->cap_permitted);
565                                 }
566                         }
567                         break;
568                 }
569         default:
570                 return -EINVAL;
571         }
572
573         return 0;
574 }
575
576 #ifdef CONFIG_SECURITY_FILE_CAPABILITIES
577 /*
578  * Rationale: code calling task_setscheduler, task_setioprio, and
579  * task_setnice, assumes that
580  *   . if capable(cap_sys_nice), then those actions should be allowed
581  *   . if not capable(cap_sys_nice), but acting on your own processes,
582  *      then those actions should be allowed
583  * This is insufficient now since you can call code without suid, but
584  * yet with increased caps.
585  * So we check for increased caps on the target process.
586  */
587 static int cap_safe_nice(struct task_struct *p)
588 {
589         if (!cap_issubset(p->cap_permitted, current->cap_permitted) &&
590             !capable(CAP_SYS_NICE))
591                 return -EPERM;
592         return 0;
593 }
594
595 int cap_task_setscheduler (struct task_struct *p, int policy,
596                            struct sched_param *lp)
597 {
598         return cap_safe_nice(p);
599 }
600
601 int cap_task_setioprio (struct task_struct *p, int ioprio)
602 {
603         return cap_safe_nice(p);
604 }
605
606 int cap_task_setnice (struct task_struct *p, int nice)
607 {
608         return cap_safe_nice(p);
609 }
610
611 /*
612  * called from kernel/sys.c for prctl(PR_CABSET_DROP)
613  * done without task_capability_lock() because it introduces
614  * no new races - i.e. only another task doing capget() on
615  * this task could get inconsistent info.  There can be no
616  * racing writer bc a task can only change its own caps.
617  */
618 static long cap_prctl_drop(unsigned long cap)
619 {
620         if (!capable(CAP_SETPCAP))
621                 return -EPERM;
622         if (!cap_valid(cap))
623                 return -EINVAL;
624         cap_lower(current->cap_bset, cap);
625         return 0;
626 }
627
628 #else
629 int cap_task_setscheduler (struct task_struct *p, int policy,
630                            struct sched_param *lp)
631 {
632         return 0;
633 }
634 int cap_task_setioprio (struct task_struct *p, int ioprio)
635 {
636         return 0;
637 }
638 int cap_task_setnice (struct task_struct *p, int nice)
639 {
640         return 0;
641 }
642 #endif
643
644 int cap_task_prctl(int option, unsigned long arg2, unsigned long arg3,
645                    unsigned long arg4, unsigned long arg5, long *rc_p)
646 {
647         long error = 0;
648
649         switch (option) {
650         case PR_CAPBSET_READ:
651                 if (!cap_valid(arg2))
652                         error = -EINVAL;
653                 else
654                         error = !!cap_raised(current->cap_bset, arg2);
655                 break;
656 #ifdef CONFIG_SECURITY_FILE_CAPABILITIES
657         case PR_CAPBSET_DROP:
658                 error = cap_prctl_drop(arg2);
659                 break;
660
661         /*
662          * The next four prctl's remain to assist with transitioning a
663          * system from legacy UID=0 based privilege (when filesystem
664          * capabilities are not in use) to a system using filesystem
665          * capabilities only - as the POSIX.1e draft intended.
666          *
667          * Note:
668          *
669          *  PR_SET_SECUREBITS =
670          *      issecure_mask(SECURE_KEEP_CAPS_LOCKED)
671          *    | issecure_mask(SECURE_NOROOT)
672          *    | issecure_mask(SECURE_NOROOT_LOCKED)
673          *    | issecure_mask(SECURE_NO_SETUID_FIXUP)
674          *    | issecure_mask(SECURE_NO_SETUID_FIXUP_LOCKED)
675          *
676          * will ensure that the current process and all of its
677          * children will be locked into a pure
678          * capability-based-privilege environment.
679          */
680         case PR_SET_SECUREBITS:
681                 if ((((current->securebits & SECURE_ALL_LOCKS) >> 1)
682                      & (current->securebits ^ arg2))                  /*[1]*/
683                     || ((current->securebits & SECURE_ALL_LOCKS
684                          & ~arg2))                                    /*[2]*/
685                     || (arg2 & ~(SECURE_ALL_LOCKS | SECURE_ALL_BITS)) /*[3]*/
686                     || (cap_capable(current, CAP_SETPCAP, SECURITY_CAP_AUDIT) != 0)) { /*[4]*/
687                         /*
688                          * [1] no changing of bits that are locked
689                          * [2] no unlocking of locks
690                          * [3] no setting of unsupported bits
691                          * [4] doing anything requires privilege (go read about
692                          *     the "sendmail capabilities bug")
693                          */
694                         error = -EPERM;  /* cannot change a locked bit */
695                 } else {
696                         current->securebits = arg2;
697                 }
698                 break;
699         case PR_GET_SECUREBITS:
700                 error = current->securebits;
701                 break;
702
703 #endif /* def CONFIG_SECURITY_FILE_CAPABILITIES */
704
705         case PR_GET_KEEPCAPS:
706                 if (issecure(SECURE_KEEP_CAPS))
707                         error = 1;
708                 break;
709         case PR_SET_KEEPCAPS:
710                 if (arg2 > 1) /* Note, we rely on arg2 being unsigned here */
711                         error = -EINVAL;
712                 else if (issecure(SECURE_KEEP_CAPS_LOCKED))
713                         error = -EPERM;
714                 else if (arg2)
715                         current->securebits |= issecure_mask(SECURE_KEEP_CAPS);
716                 else
717                         current->securebits &=
718                                 ~issecure_mask(SECURE_KEEP_CAPS);
719                 break;
720
721         default:
722                 /* No functionality available - continue with default */
723                 return 0;
724         }
725
726         /* Functionality provided */
727         *rc_p = error;
728         return 1;
729 }
730
731 void cap_task_reparent_to_init (struct task_struct *p)
732 {
733         cap_set_init_eff(p->cap_effective);
734         cap_clear(p->cap_inheritable);
735         cap_set_full(p->cap_permitted);
736         p->securebits = SECUREBITS_DEFAULT;
737         return;
738 }
739
740 int cap_syslog (int type)
741 {
742         if ((type != 3 && type != 10) && !capable(CAP_SYS_ADMIN))
743                 return -EPERM;
744         return 0;
745 }
746
747 int cap_vm_enough_memory(struct mm_struct *mm, long pages)
748 {
749         int cap_sys_admin = 0;
750
751         if (cap_capable(current, CAP_SYS_ADMIN, SECURITY_CAP_NOAUDIT) == 0)
752                 cap_sys_admin = 1;
753         return __vm_enough_memory(mm, pages, cap_sys_admin);
754 }
755