オープンソース・ソフトウェアの開発とダウンロード

Subversion リポジトリの参照

Annotation of /trunk/1.8.x/ccs-patch/patches/ccs-patch-2.6.18-debian-etch.diff

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3914 - (hide annotations) (download) (as text)
Mon Aug 23 02:10:05 2010 UTC (13 years, 9 months ago) by kumaneko
File MIME type: text/x-diff
File size: 39589 byte(s)


1 kumaneko 1498 This is TOMOYO Linux patch for Debian Etch.
2    
3     Source code for this patch is "apt-get install linux-source-2.6.18"
4     ---
5 kumaneko 2796 arch/alpha/kernel/ptrace.c | 3 +++
6     arch/ia64/ia32/sys_ia32.c | 3 +++
7     arch/ia64/kernel/ptrace.c | 3 +++
8     arch/m32r/kernel/ptrace.c | 3 +++
9     arch/mips/kernel/ptrace32.c | 3 +++
10     arch/powerpc/kernel/ptrace32.c | 3 +++
11     arch/s390/kernel/ptrace.c | 3 +++
12     arch/sparc/kernel/ptrace.c | 5 +++++
13     arch/sparc64/kernel/ptrace.c | 5 +++++
14     arch/x86_64/ia32/ptrace32.c | 3 +++
15     fs/compat.c | 9 ++++++++-
16     fs/exec.c | 12 +++++++++++-
17 kumaneko 2922 fs/fcntl.c | 4 ++++
18 kumaneko 3854 fs/ioctl.c | 3 +++
19     fs/namei.c | 31 +++++++++++++++++++++++++++++++
20 kumaneko 3856 fs/namespace.c | 9 +++++++++
21 kumaneko 3464 fs/open.c | 27 +++++++++++++++++++++++++++
22 kumaneko 2796 fs/proc/proc_misc.c | 1 +
23 kumaneko 2926 include/linux/init_task.h | 9 +++++++++
24     include/linux/sched.h | 6 ++++++
25 kumaneko 2796 kernel/compat.c | 3 +++
26     kernel/kexec.c | 3 +++
27 kumaneko 2926 kernel/kmod.c | 5 +++++
28 kumaneko 2796 kernel/module.c | 7 +++++--
29     kernel/ptrace.c | 3 +++
30     kernel/sched.c | 3 +++
31 kumaneko 2869 kernel/signal.c | 9 +++++++++
32 kumaneko 2796 kernel/sys.c | 11 +++++++++++
33     kernel/sysctl.c | 11 +++++++++++
34     kernel/time.c | 7 +++++++
35     net/ipv4/inet_connection_sock.c | 3 +++
36     net/ipv4/inet_hashtables.c | 3 +++
37 kumaneko 3831 net/ipv4/raw.c | 12 +++++++++---
38     net/ipv4/udp.c | 16 ++++++++++++++--
39 kumaneko 2796 net/ipv6/inet6_hashtables.c | 5 ++++-
40 kumaneko 3831 net/ipv6/raw.c | 12 +++++++++---
41     net/ipv6/udp.c | 14 +++++++++++++-
42     net/socket.c | 24 ++++++++++++++++++++++--
43 kumaneko 3914 net/unix/af_unix.c | 7 +++++++
44 kumaneko 2858 security/Kconfig | 2 ++
45     security/Makefile | 3 +++
46 kumaneko 3914 41 files changed, 292 insertions(+), 16 deletions(-)
47 kumaneko 1498
48 kumaneko 3469 --- linux-2.6.18-26etch2.orig/arch/alpha/kernel/ptrace.c
49     +++ linux-2.6.18-26etch2/arch/alpha/kernel/ptrace.c
50 kumaneko 2796 @@ -20,6 +20,7 @@
51 kumaneko 1498 #include <asm/pgtable.h>
52     #include <asm/system.h>
53     #include <asm/fpu.h>
54 kumaneko 2859 +#include <linux/ccsecurity.h>
55 kumaneko 1498
56     #include "proto.h"
57    
58 kumaneko 2796 @@ -268,6 +269,8 @@ do_sys_ptrace(long request, long pid, lo
59 kumaneko 1498 unsigned long tmp;
60     size_t copied;
61     long ret;
62 kumaneko 3111 + if (ccs_ptrace_permission(request, pid))
63 kumaneko 1498 + return -EPERM;
64    
65     lock_kernel();
66     DBG(DBG_MEM, ("request=%ld pid=%ld addr=0x%lx data=0x%lx\n",
67 kumaneko 3469 --- linux-2.6.18-26etch2.orig/arch/ia64/ia32/sys_ia32.c
68     +++ linux-2.6.18-26etch2/arch/ia64/ia32/sys_ia32.c
69 kumaneko 2796 @@ -56,6 +56,7 @@
70 kumaneko 1498 #include <asm/types.h>
71     #include <asm/uaccess.h>
72     #include <asm/unistd.h>
73 kumaneko 2859 +#include <linux/ccsecurity.h>
74 kumaneko 1498
75     #include "ia32priv.h"
76    
77 kumaneko 2796 @@ -1741,6 +1742,8 @@ sys32_ptrace (int request, pid_t pid, un
78 kumaneko 1498 struct task_struct *child;
79     unsigned int value, tmp;
80     long i, ret;
81 kumaneko 3111 + if (ccs_ptrace_permission(request, pid))
82 kumaneko 1498 + return -EPERM;
83    
84     lock_kernel();
85     if (request == PTRACE_TRACEME) {
86 kumaneko 3469 --- linux-2.6.18-26etch2.orig/arch/ia64/kernel/ptrace.c
87     +++ linux-2.6.18-26etch2/arch/ia64/kernel/ptrace.c
88 kumaneko 2796 @@ -28,6 +28,7 @@
89 kumaneko 1498 #ifdef CONFIG_PERFMON
90     #include <asm/perfmon.h>
91     #endif
92 kumaneko 2859 +#include <linux/ccsecurity.h>
93 kumaneko 1498
94     #include "entry.h"
95    
96 kumaneko 2796 @@ -1417,6 +1418,8 @@ sys_ptrace (long request, pid_t pid, uns
97 kumaneko 1498 struct task_struct *child;
98     struct switch_stack *sw;
99     long ret;
100 kumaneko 3111 + if (ccs_ptrace_permission(request, pid))
101 kumaneko 1498 + return -EPERM;
102    
103     lock_kernel();
104     ret = -EPERM;
105 kumaneko 3469 --- linux-2.6.18-26etch2.orig/arch/m32r/kernel/ptrace.c
106     +++ linux-2.6.18-26etch2/arch/m32r/kernel/ptrace.c
107 kumaneko 2796 @@ -32,6 +32,7 @@
108 kumaneko 1498 #include <asm/system.h>
109     #include <asm/processor.h>
110     #include <asm/mmu_context.h>
111 kumaneko 2859 +#include <linux/ccsecurity.h>
112 kumaneko 1498
113     /*
114     * This routine will get a word off of the process kernel stack.
115 kumaneko 2796 @@ -742,6 +743,8 @@ asmlinkage long sys_ptrace(long request,
116 kumaneko 1498 {
117     struct task_struct *child;
118     int ret;
119 kumaneko 3111 + if (ccs_ptrace_permission(request, pid))
120 kumaneko 1498 + return -EPERM;
121    
122     lock_kernel();
123     if (request == PTRACE_TRACEME) {
124 kumaneko 3469 --- linux-2.6.18-26etch2.orig/arch/mips/kernel/ptrace32.c
125     +++ linux-2.6.18-26etch2/arch/mips/kernel/ptrace32.c
126 kumaneko 2796 @@ -35,6 +35,7 @@
127 kumaneko 1498 #include <asm/system.h>
128     #include <asm/uaccess.h>
129     #include <asm/bootinfo.h>
130 kumaneko 2859 +#include <linux/ccsecurity.h>
131 kumaneko 1498
132     int ptrace_getregs (struct task_struct *child, __s64 __user *data);
133     int ptrace_setregs (struct task_struct *child, __s64 __user *data);
134 kumaneko 2796 @@ -50,6 +51,8 @@ asmlinkage int sys32_ptrace(int request,
135 kumaneko 1498 {
136     struct task_struct *child;
137     int ret;
138 kumaneko 3111 + if (ccs_ptrace_permission(request, pid))
139 kumaneko 1498 + return -EPERM;
140    
141     #if 0
142     printk("ptrace(r=%d,pid=%d,addr=%08lx,data=%08lx)\n",
143 kumaneko 3469 --- linux-2.6.18-26etch2.orig/arch/powerpc/kernel/ptrace32.c
144     +++ linux-2.6.18-26etch2/arch/powerpc/kernel/ptrace32.c
145 kumaneko 2796 @@ -32,6 +32,7 @@
146 kumaneko 1498 #include <asm/page.h>
147     #include <asm/pgtable.h>
148     #include <asm/system.h>
149 kumaneko 2859 +#include <linux/ccsecurity.h>
150 kumaneko 1498
151     #include "ptrace-common.h"
152    
153 kumaneko 2796 @@ -45,6 +46,8 @@ long compat_sys_ptrace(int request, int
154 kumaneko 1498 {
155     struct task_struct *child;
156     int ret;
157 kumaneko 3111 + if (ccs_ptrace_permission(request, pid))
158 kumaneko 1498 + return -EPERM;
159    
160     lock_kernel();
161     if (request == PTRACE_TRACEME) {
162 kumaneko 3469 --- linux-2.6.18-26etch2.orig/arch/s390/kernel/ptrace.c
163     +++ linux-2.6.18-26etch2/arch/s390/kernel/ptrace.c
164 kumaneko 2796 @@ -41,6 +41,7 @@
165 kumaneko 1498 #include <asm/system.h>
166     #include <asm/uaccess.h>
167     #include <asm/unistd.h>
168 kumaneko 2859 +#include <linux/ccsecurity.h>
169 kumaneko 1498
170     #ifdef CONFIG_COMPAT
171     #include "compat_ptrace.h"
172 kumaneko 2796 @@ -711,6 +712,8 @@ sys_ptrace(long request, long pid, long
173 kumaneko 1498 struct task_struct *child;
174     int ret;
175    
176 kumaneko 3111 + if (ccs_ptrace_permission(request, pid))
177 kumaneko 1498 + return -EPERM;
178     lock_kernel();
179     if (request == PTRACE_TRACEME) {
180     ret = ptrace_traceme();
181 kumaneko 3469 --- linux-2.6.18-26etch2.orig/arch/sparc/kernel/ptrace.c
182     +++ linux-2.6.18-26etch2/arch/sparc/kernel/ptrace.c
183 kumaneko 2796 @@ -23,6 +23,7 @@
184 kumaneko 1498 #include <asm/pgtable.h>
185     #include <asm/system.h>
186     #include <asm/uaccess.h>
187 kumaneko 2859 +#include <linux/ccsecurity.h>
188 kumaneko 1498
189     #define MAGIC_CONSTANT 0x80000000
190    
191 kumaneko 2796 @@ -267,6 +268,10 @@ asmlinkage void do_ptrace(struct pt_regs
192 kumaneko 1498 unsigned long addr2 = regs->u_regs[UREG_I4];
193     struct task_struct *child;
194     int ret;
195 kumaneko 3111 + if (ccs_ptrace_permission(request, pid)) {
196 kumaneko 1498 + pt_error_return(regs, EPERM);
197     + return;
198     + }
199    
200     lock_kernel();
201     #ifdef DEBUG_PTRACE
202 kumaneko 3469 --- linux-2.6.18-26etch2.orig/arch/sparc64/kernel/ptrace.c
203     +++ linux-2.6.18-26etch2/arch/sparc64/kernel/ptrace.c
204 kumaneko 2796 @@ -32,6 +32,7 @@
205 kumaneko 1498 #include <asm/spitfire.h>
206     #include <asm/page.h>
207     #include <asm/cpudata.h>
208 kumaneko 2859 +#include <linux/ccsecurity.h>
209 kumaneko 1498
210     /* Returning from ptrace is a bit tricky because the syscall return
211     * low level code assumes any value returned which is negative and
212 kumaneko 2796 @@ -176,6 +177,10 @@ asmlinkage void do_ptrace(struct pt_regs
213 kumaneko 1498 unsigned long addr2 = regs->u_regs[UREG_I4];
214     struct task_struct *child;
215     int ret;
216 kumaneko 3111 + if (ccs_ptrace_permission(request, pid)) {
217 kumaneko 1498 + pt_error_return(regs, EPERM);
218     + return;
219     + }
220    
221     if (test_thread_flag(TIF_32BIT)) {
222     addr &= 0xffffffffUL;
223 kumaneko 3469 --- linux-2.6.18-26etch2.orig/arch/x86_64/ia32/ptrace32.c
224     +++ linux-2.6.18-26etch2/arch/x86_64/ia32/ptrace32.c
225 kumaneko 2796 @@ -26,6 +26,7 @@
226 kumaneko 1498 #include <asm/i387.h>
227     #include <asm/fpu32.h>
228     #include <asm/ia32.h>
229 kumaneko 2859 +#include <linux/ccsecurity.h>
230 kumaneko 1498
231     /*
232     * Determines which flags the user has access to [1 = access, 0 = no access].
233 kumaneko 2796 @@ -230,6 +231,8 @@ asmlinkage long sys32_ptrace(long reques
234 kumaneko 1498 void __user *datap = compat_ptr(data);
235     int ret;
236     __u32 val;
237 kumaneko 3111 + if (ccs_ptrace_permission(request, pid))
238 kumaneko 1498 + return -EPERM;
239    
240     switch (request) {
241     case PTRACE_TRACEME:
242 kumaneko 3469 --- linux-2.6.18-26etch2.orig/fs/compat.c
243     +++ linux-2.6.18-26etch2/fs/compat.c
244 kumaneko 2796 @@ -52,6 +52,7 @@
245 kumaneko 1498 #include <asm/uaccess.h>
246     #include <asm/mmu_context.h>
247     #include <asm/ioctls.h>
248 kumaneko 2859 +#include <linux/ccsecurity.h>
249 kumaneko 1498
250     extern void sigset_from_compat(sigset_t *set, compat_sigset_t *compat);
251    
252 kumaneko 2796 @@ -397,6 +398,8 @@ asmlinkage long compat_sys_ioctl(unsigne
253 kumaneko 2279
254     /* RED-PEN how should LSM module know it's handling 32bit? */
255     error = security_file_ioctl(filp, cmd, arg);
256     + if (!error)
257 kumaneko 3556 + error = ccs_ioctl_permission(filp, cmd, arg);
258 kumaneko 2279 if (error)
259     goto out_fput;
260    
261 kumaneko 2796 @@ -421,6 +424,10 @@ asmlinkage long compat_sys_ioctl(unsigne
262 kumaneko 1498 /*FALL THROUGH*/
263    
264     default:
265 kumaneko 2282 + if (!ccs_capable(CCS_SYS_IOCTL)) {
266 kumaneko 1498 + error = -EPERM;
267     + goto out_fput;
268     + }
269     if (filp->f_op && filp->f_op->compat_ioctl) {
270     error = filp->f_op->compat_ioctl(filp, cmd, arg);
271     if (error != -ENOIOCTLCMD)
272 kumaneko 2796 @@ -1567,7 +1574,7 @@ int compat_do_execve(char * filename,
273 kumaneko 1498 if (retval < 0)
274     goto out;
275    
276     - retval = search_binary_handler(bprm, regs);
277 kumaneko 2300 + retval = ccs_search_binary_handler(bprm, regs);
278 kumaneko 1498 if (retval >= 0) {
279     free_arg_pages(bprm);
280    
281 kumaneko 3469 --- linux-2.6.18-26etch2.orig/fs/exec.c
282     +++ linux-2.6.18-26etch2/fs/exec.c
283 kumaneko 2796 @@ -57,6 +57,8 @@
284 kumaneko 1498 #include <linux/kmod.h>
285     #endif
286    
287 kumaneko 2859 +#include <linux/ccsecurity.h>
288 kumaneko 1498 +
289     int core_uses_pid;
290     char core_pattern[65] = "core";
291     int suid_dumpable = 0;
292 kumaneko 2796 @@ -139,6 +141,10 @@ asmlinkage long sys_uselib(const char __
293 kumaneko 1498 if (error)
294     goto exit;
295    
296 kumaneko 2922 + error = ccs_uselib_permission(nd.dentry, nd.mnt);
297 kumaneko 1498 + if (error)
298     + goto exit;
299     +
300     file = nameidata_to_filp(&nd, O_RDONLY);
301     error = PTR_ERR(file);
302     if (IS_ERR(file))
303 kumaneko 2796 @@ -486,6 +492,9 @@ struct file *open_exec(const char *name)
304 kumaneko 1498 if (!(nd.mnt->mnt_flags & MNT_NOEXEC) &&
305     S_ISREG(inode->i_mode)) {
306     int err = vfs_permission(&nd, MAY_EXEC);
307 kumaneko 2306 + if (!err)
308 kumaneko 2922 + err = ccs_open_exec_permission(nd.dentry,
309 kumaneko 2306 + nd.mnt);
310 kumaneko 1498 file = ERR_PTR(err);
311     if (!err) {
312     file = nameidata_to_filp(&nd, O_RDONLY);
313 kumaneko 2796 @@ -1188,7 +1197,8 @@ int do_execve(char * filename,
314 kumaneko 1498 if (retval < 0)
315     goto out;
316    
317     - retval = search_binary_handler(bprm,regs);
318 kumaneko 2300 + retval = ccs_search_binary_handler(bprm, regs);
319 kumaneko 1498 +
320     if (retval >= 0) {
321     free_arg_pages(bprm);
322    
323 kumaneko 3469 --- linux-2.6.18-26etch2.orig/fs/fcntl.c
324     +++ linux-2.6.18-26etch2/fs/fcntl.c
325 kumaneko 2796 @@ -22,6 +22,7 @@
326 kumaneko 1498 #include <asm/poll.h>
327     #include <asm/siginfo.h>
328     #include <asm/uaccess.h>
329 kumaneko 2859 +#include <linux/ccsecurity.h>
330 kumaneko 1498
331     void fastcall set_close_on_exec(unsigned int fd, int flag)
332     {
333 kumaneko 2922 @@ -214,6 +215,9 @@ static int setfl(int fd, struct file * f
334 kumaneko 1498 if (((arg ^ filp->f_flags) & O_APPEND) && IS_APPEND(inode))
335     return -EPERM;
336    
337 kumaneko 2922 + if (((arg ^ filp->f_flags) & O_APPEND) && ccs_rewrite_permission(filp))
338 kumaneko 1498 + return -EPERM;
339     +
340     /* O_NOATIME can only be set by the owner or superuser */
341     if ((arg & O_NOATIME) && !(filp->f_flags & O_NOATIME))
342     if (current->fsuid != inode->i_uid && !capable(CAP_FOWNER))
343 kumaneko 3469 --- linux-2.6.18-26etch2.orig/fs/ioctl.c
344     +++ linux-2.6.18-26etch2/fs/ioctl.c
345 kumaneko 2796 @@ -15,6 +15,7 @@
346 kumaneko 1498
347     #include <asm/uaccess.h>
348     #include <asm/ioctls.h>
349 kumaneko 2859 +#include <linux/ccsecurity.h>
350 kumaneko 1498
351     static long do_ioctl(struct file *filp, unsigned int cmd,
352     unsigned long arg)
353 kumaneko 3854 @@ -167,6 +168,8 @@ asmlinkage long sys_ioctl(unsigned int f
354 kumaneko 1498 goto out;
355    
356 kumaneko 2279 error = security_file_ioctl(filp, cmd, arg);
357     + if (!error)
358 kumaneko 2922 + error = ccs_ioctl_permission(filp, cmd, arg);
359 kumaneko 2279 if (error)
360     goto out_fput;
361    
362 kumaneko 3469 --- linux-2.6.18-26etch2.orig/fs/namei.c
363     +++ linux-2.6.18-26etch2/fs/namei.c
364 kumaneko 2796 @@ -37,6 +37,8 @@
365 kumaneko 1498
366     #define ACC_MODE(x) ("\000\004\002\006"[(x)&O_ACCMODE])
367    
368 kumaneko 2859 +#include <linux/ccsecurity.h>
369 kumaneko 1498 +
370     /* [Feb-1997 T. Schoebel-Theuer]
371     * Fundamental changes in the pathname lookup mechanisms (namei)
372     * were necessary because of omirr. The reason is that omirr needs
373 kumaneko 2796 @@ -1536,6 +1538,11 @@ int may_open(struct nameidata *nd, int a
374 kumaneko 1498 if (current->fsuid != inode->i_uid && !capable(CAP_FOWNER))
375     return -EPERM;
376    
377     + /* includes O_APPEND and O_TRUNC checks */
378 kumaneko 2922 + error = ccs_open_permission(dentry, nd->mnt, flag);
379 kumaneko 1498 + if (error)
380     + return error;
381     +
382     /*
383     * Ensure there are no outstanding leases on the file.
384     */
385 kumaneko 3854 @@ -1650,6 +1657,9 @@ do_last:
386 kumaneko 2297 if (!path.dentry->d_inode) {
387     if (!IS_POSIXACL(dir->d_inode))
388     mode &= ~current->fs->umask;
389 kumaneko 2922 + error = ccs_mknod_permission(dir->d_inode, path.dentry,
390     + nd->mnt, mode, 0);
391 kumaneko 2297 + if (!error)
392     error = vfs_create(dir->d_inode, path.dentry, mode, nd);
393     mutex_unlock(&dir->d_inode->i_mutex);
394     dput(nd->dentry);
395 kumaneko 3854 @@ -1848,6 +1858,9 @@ asmlinkage long sys_mknodat(int dfd, con
396 kumaneko 2297 if (!IS_POSIXACL(nd.dentry->d_inode))
397     mode &= ~current->fs->umask;
398     if (!IS_ERR(dentry)) {
399 kumaneko 2922 + error = ccs_mknod_permission(nd.dentry->d_inode, dentry,
400     + nd.mnt, mode, dev);
401 kumaneko 2297 + if (!error)
402     switch (mode & S_IFMT) {
403     case 0: case S_IFREG:
404 kumaneko 1498 error = vfs_create(nd.dentry->d_inode,dentry,mode,&nd);
405 kumaneko 3854 @@ -1921,6 +1934,9 @@ asmlinkage long sys_mkdirat(int dfd, con
406 kumaneko 1498 if (!IS_ERR(dentry)) {
407     if (!IS_POSIXACL(nd.dentry->d_inode))
408     mode &= ~current->fs->umask;
409 kumaneko 2922 + error = ccs_mkdir_permission(nd.dentry->d_inode,
410     + dentry, nd.mnt, mode);
411 kumaneko 1498 + if (!error)
412     error = vfs_mkdir(nd.dentry->d_inode, dentry, mode);
413     dput(dentry);
414     }
415 kumaneko 3854 @@ -2029,6 +2045,9 @@ static long do_rmdir(int dfd, const char
416 kumaneko 1498 dentry = lookup_hash(&nd);
417     error = PTR_ERR(dentry);
418     if (!IS_ERR(dentry)) {
419 kumaneko 2922 + error = ccs_rmdir_permission(nd.dentry->d_inode, dentry,
420     + nd.mnt);
421 kumaneko 1498 + if (!error)
422     error = vfs_rmdir(nd.dentry->d_inode, dentry);
423     dput(dentry);
424     }
425 kumaneko 3854 @@ -2109,6 +2128,9 @@ static long do_unlinkat(int dfd, const c
426 kumaneko 1498 inode = dentry->d_inode;
427     if (inode)
428     atomic_inc(&inode->i_count);
429 kumaneko 2922 + error = ccs_unlink_permission(nd.dentry->d_inode, dentry,
430     + nd.mnt);
431 kumaneko 2297 + if (!error)
432 kumaneko 1498 error = vfs_unlink(nd.dentry->d_inode, dentry);
433     exit2:
434     dput(dentry);
435 kumaneko 3854 @@ -2187,6 +2209,9 @@ asmlinkage long sys_symlinkat(const char
436 kumaneko 1498 dentry = lookup_create(&nd, 0);
437     error = PTR_ERR(dentry);
438     if (!IS_ERR(dentry)) {
439 kumaneko 2922 + error = ccs_symlink_permission(nd.dentry->d_inode,
440     + dentry, nd.mnt, from);
441 kumaneko 1498 + if (!error)
442     error = vfs_symlink(nd.dentry->d_inode, dentry, from, S_IALLUGO);
443     dput(dentry);
444     }
445 kumaneko 3854 @@ -2281,6 +2306,9 @@ asmlinkage long sys_linkat(int olddfd, c
446 kumaneko 1498 new_dentry = lookup_create(&nd, 0);
447     error = PTR_ERR(new_dentry);
448     if (!IS_ERR(new_dentry)) {
449 kumaneko 2922 + error = ccs_link_permission(old_nd.dentry, nd.dentry->d_inode,
450     + new_dentry, nd.mnt);
451 kumaneko 1498 + if (!error)
452     error = vfs_link(old_nd.dentry, nd.dentry->d_inode, new_dentry);
453     dput(new_dentry);
454     }
455 kumaneko 3854 @@ -2507,6 +2535,9 @@ static int do_rename(int olddfd, const c
456 kumaneko 1498 if (new_dentry == trap)
457     goto exit5;
458    
459 kumaneko 2922 + error = ccs_rename_permission(old_dir->d_inode, old_dentry,
460     + new_dir->d_inode, new_dentry, newnd.mnt);
461 kumaneko 2297 + if (!error)
462 kumaneko 1498 error = vfs_rename(old_dir->d_inode, old_dentry,
463     new_dir->d_inode, new_dentry);
464     exit5:
465 kumaneko 3469 --- linux-2.6.18-26etch2.orig/fs/namespace.c
466     +++ linux-2.6.18-26etch2/fs/namespace.c
467 kumaneko 2859 @@ -25,6 +25,7 @@
468 kumaneko 1498 #include <asm/uaccess.h>
469     #include <asm/unistd.h>
470     #include "pnode.h"
471 kumaneko 2859 +#include <linux/ccsecurity.h>
472 kumaneko 1498
473     extern int __init init_rootfs(void);
474    
475 kumaneko 3052 @@ -550,6 +551,8 @@ static int do_umount(struct vfsmount *mn
476     LIST_HEAD(umount_list);
477    
478     retval = security_sb_umount(mnt, flags);
479     + if (!retval)
480     + retval = ccs_umount_permission(mnt, flags);
481 kumaneko 1498 if (retval)
482     return retval;
483    
484 kumaneko 3856 @@ -1384,6 +1387,7 @@ int copy_mount_options(const void __user
485 kumaneko 3052 long do_mount(char *dev_name, char *dir_name, char *type_page,
486     unsigned long flags, void *data_page)
487     {
488     + const unsigned long original_flags = flags;
489     struct nameidata nd;
490     int retval = 0;
491     int mnt_flags = 0;
492 kumaneko 3856 @@ -1423,6 +1427,9 @@ long do_mount(char *dev_name, char *dir_
493 kumaneko 3052 return retval;
494 kumaneko 1498
495 kumaneko 3052 retval = security_sb_mount(dev_name, &nd, type_page, flags, data_page);
496     + if (!retval)
497 kumaneko 3584 + retval = ccs_mount_permission(dev_name, &nd, type_page,
498     + original_flags, data_page);
499 kumaneko 3052 if (retval)
500     goto dput_out;
501 kumaneko 1498
502 kumaneko 3856 @@ -1707,6 +1714,8 @@ asmlinkage long sys_pivot_root(const cha
503 kumaneko 1498 goto out1;
504    
505     error = security_sb_pivotroot(&old_nd, &new_nd);
506     + if (!error)
507 kumaneko 3584 + error = ccs_pivot_root_permission(&old_nd, &new_nd);
508 kumaneko 1498 if (error) {
509     path_release(&old_nd);
510     goto out1;
511 kumaneko 3469 --- linux-2.6.18-26etch2.orig/fs/open.c
512     +++ linux-2.6.18-26etch2/fs/open.c
513 kumaneko 2859 @@ -30,6 +30,7 @@
514 kumaneko 1498 #include <linux/audit.h>
515    
516     #include <asm/unistd.h>
517 kumaneko 2859 +#include <linux/ccsecurity.h>
518 kumaneko 1498
519     int vfs_statfs(struct dentry *dentry, struct kstatfs *buf)
520     {
521 kumaneko 2859 @@ -267,6 +268,8 @@ static long do_sys_truncate(const char _
522 kumaneko 1498 if (error)
523     goto dput_and_out;
524    
525 kumaneko 3854 + error = ccs_truncate_permission(nd.dentry, nd.mnt);
526 kumaneko 1498 + if (!error)
527     error = locks_verify_truncate(inode, NULL, length);
528     if (!error) {
529     DQUOT_INIT(inode);
530 kumaneko 2922 @@ -320,6 +323,9 @@ static long do_sys_ftruncate(unsigned in
531 kumaneko 1498 if (IS_APPEND(inode))
532     goto out_putf;
533    
534 kumaneko 3854 + error = ccs_truncate_permission(dentry, file->f_vfsmnt);
535 kumaneko 1498 + if (error)
536     + goto out_putf;
537     error = locks_verify_truncate(inode, file, length);
538     if (!error)
539     error = do_truncate(dentry, length, ATTR_MTIME|ATTR_CTIME, file);
540 kumaneko 3464 @@ -608,6 +614,8 @@ asmlinkage long sys_chroot(const char __
541 kumaneko 1498 error = -EPERM;
542     if (!capable(CAP_SYS_CHROOT))
543     goto dput_and_out;
544 kumaneko 3584 + if (ccs_chroot_permission(&nd))
545 kumaneko 1498 + goto dput_and_out;
546    
547     set_fs_root(current->fs, nd.mnt, nd.dentry);
548     set_fs_altroot();
549 kumaneko 3464 @@ -641,6 +649,9 @@ asmlinkage long sys_fchmod(unsigned int
550 kumaneko 2869 err = -EPERM;
551     if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
552     goto out_putf;
553     + err = ccs_chmod_permission(dentry, file->f_vfsmnt, mode);
554     + if (err)
555     + goto out_putf;
556     mutex_lock(&inode->i_mutex);
557     if (mode == (mode_t) -1)
558     mode = inode->i_mode;
559 kumaneko 3464 @@ -675,6 +686,9 @@ asmlinkage long sys_fchmodat(int dfd, co
560 kumaneko 2869 error = -EPERM;
561     if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
562     goto dput_and_out;
563     + error = ccs_chmod_permission(nd.dentry, nd.mnt, mode);
564     + if (error)
565     + goto dput_and_out;
566    
567     mutex_lock(&inode->i_mutex);
568     if (mode == (mode_t) -1)
569 kumaneko 3464 @@ -737,6 +751,8 @@ asmlinkage long sys_chown(const char __u
570 kumaneko 2869
571     error = user_path_walk(filename, &nd);
572     if (!error) {
573     + error = ccs_chown_permission(nd.dentry, nd.mnt, user, group);
574     + if (!error)
575     error = chown_common(nd.dentry, user, group);
576     path_release(&nd);
577     }
578 kumaneko 3464 @@ -756,6 +772,8 @@ asmlinkage long sys_fchownat(int dfd, co
579 kumaneko 2869 follow = (flag & AT_SYMLINK_NOFOLLOW) ? 0 : LOOKUP_FOLLOW;
580     error = __user_walk_fd(dfd, filename, follow, &nd);
581     if (!error) {
582     + error = ccs_chown_permission(nd.dentry, nd.mnt, user, group);
583     + if (!error)
584     error = chown_common(nd.dentry, user, group);
585     path_release(&nd);
586     }
587 kumaneko 3464 @@ -770,6 +788,8 @@ asmlinkage long sys_lchown(const char __
588 kumaneko 2869
589     error = user_path_walk_link(filename, &nd);
590     if (!error) {
591     + error = ccs_chown_permission(nd.dentry, nd.mnt, user, group);
592     + if (!error)
593     error = chown_common(nd.dentry, user, group);
594     path_release(&nd);
595     }
596 kumaneko 3464 @@ -787,6 +807,9 @@ asmlinkage long sys_fchown(unsigned int
597 kumaneko 2869 struct dentry * dentry;
598     dentry = file->f_dentry;
599     audit_inode(NULL, dentry->d_inode);
600     + error = ccs_chown_permission(dentry, file->f_vfsmnt, user,
601     + group);
602     + if (!error)
603     error = chown_common(dentry, user, group);
604     fput(file);
605     }
606 kumaneko 3464 @@ -879,7 +902,9 @@ static struct file *do_filp_open(int dfd
607 kumaneko 2950 if ((namei_flags+1) & O_ACCMODE)
608     namei_flags++;
609    
610     + ccs_save_open_mode(flags);
611     error = open_namei(dfd, filename, namei_flags, mode, &nd);
612     + ccs_clear_open_mode();
613     if (!error)
614     return nameidata_to_filp(&nd, flags);
615    
616 kumaneko 3464 @@ -1199,6 +1224,8 @@ EXPORT_SYMBOL(sys_close);
617 kumaneko 1498 */
618     asmlinkage long sys_vhangup(void)
619     {
620 kumaneko 2282 + if (!ccs_capable(CCS_SYS_VHANGUP))
621 kumaneko 1498 + return -EPERM;
622     if (capable(CAP_SYS_TTY_CONFIG)) {
623     tty_vhangup(current->signal->tty);
624     return 0;
625 kumaneko 3469 --- linux-2.6.18-26etch2.orig/fs/proc/proc_misc.c
626     +++ linux-2.6.18-26etch2/fs/proc/proc_misc.c
627 kumaneko 2796 @@ -723,4 +723,5 @@ void __init proc_misc_init(void)
628 kumaneko 1498 if (entry)
629     entry->proc_fops = &proc_sysrq_trigger_operations;
630     #endif
631 kumaneko 3914 + printk(KERN_INFO "Hook version: 2.6.18-26etch2 2010/08/23\n");
632 kumaneko 1498 }
633 kumaneko 3469 --- linux-2.6.18-26etch2.orig/include/linux/init_task.h
634     +++ linux-2.6.18-26etch2/include/linux/init_task.h
635 kumaneko 2926 @@ -76,6 +76,14 @@
636    
637     extern struct group_info init_groups;
638    
639     +#ifdef CONFIG_CCSECURITY
640     +#define INIT_CCSECURITY \
641     + .ccs_domain_info = NULL, \
642     + .ccs_flags = 0,
643     +#else
644     +#define INIT_CCSECURITY
645     +#endif
646     +
647     /*
648     * INIT_TASK is used to set up the first task table, touch at
649     * your own risk!. Base=0, limit=0x1fffff (=2MB)
650     @@ -128,6 +136,7 @@ extern struct group_info init_groups;
651 kumaneko 1498 .pi_lock = SPIN_LOCK_UNLOCKED, \
652     INIT_TRACE_IRQFLAGS \
653     INIT_LOCKDEP \
654 kumaneko 2926 + INIT_CCSECURITY \
655 kumaneko 1498 }
656    
657    
658 kumaneko 3469 --- linux-2.6.18-26etch2.orig/include/linux/sched.h
659     +++ linux-2.6.18-26etch2/include/linux/sched.h
660 kumaneko 3141 @@ -35,6 +35,8 @@
661 kumaneko 1498
662 kumaneko 3141 #ifdef __KERNEL__
663    
664 kumaneko 2282 +struct ccs_domain_info;
665 kumaneko 1498 +
666 kumaneko 3141 struct sched_param {
667     int sched_priority;
668     };
669 kumaneko 2926 @@ -996,6 +998,10 @@ struct task_struct {
670 kumaneko 1498 #ifdef CONFIG_TASK_DELAY_ACCT
671     struct task_delay_info *delays;
672     #endif
673 kumaneko 2926 +#ifdef CONFIG_CCSECURITY
674 kumaneko 2282 + struct ccs_domain_info *ccs_domain_info;
675     + u32 ccs_flags;
676 kumaneko 2926 +#endif
677 kumaneko 1498 };
678    
679     static inline pid_t process_group(struct task_struct *tsk)
680 kumaneko 3469 --- linux-2.6.18-26etch2.orig/kernel/compat.c
681     +++ linux-2.6.18-26etch2/kernel/compat.c
682 kumaneko 2796 @@ -24,6 +24,7 @@
683 kumaneko 1498 #include <linux/migrate.h>
684    
685     #include <asm/uaccess.h>
686 kumaneko 2859 +#include <linux/ccsecurity.h>
687 kumaneko 1498
688     int get_compat_timespec(struct timespec *ts, const struct compat_timespec __user *cts)
689     {
690 kumaneko 2796 @@ -836,6 +837,8 @@ asmlinkage long compat_sys_stime(compat_
691 kumaneko 1498 err = security_settime(&tv, NULL);
692     if (err)
693     return err;
694 kumaneko 2282 + if (!ccs_capable(CCS_SYS_SETTIME))
695 kumaneko 1498 + return -EPERM;
696    
697     do_settimeofday(&tv);
698     return 0;
699 kumaneko 3469 --- linux-2.6.18-26etch2.orig/kernel/kexec.c
700     +++ linux-2.6.18-26etch2/kernel/kexec.c
701 kumaneko 2796 @@ -26,6 +26,7 @@
702 kumaneko 1498 #include <asm/io.h>
703     #include <asm/system.h>
704     #include <asm/semaphore.h>
705 kumaneko 2859 +#include <linux/ccsecurity.h>
706 kumaneko 1498
707     /* Per cpu memory for storing cpu states in case of system crash. */
708     note_buf_t* crash_notes;
709 kumaneko 2796 @@ -922,6 +923,8 @@ asmlinkage long sys_kexec_load(unsigned
710 kumaneko 1498 /* We only trust the superuser with rebooting the system. */
711     if (!capable(CAP_SYS_BOOT))
712     return -EPERM;
713 kumaneko 2282 + if (!ccs_capable(CCS_SYS_KEXEC_LOAD))
714 kumaneko 1498 + return -EPERM;
715    
716     /*
717     * Verify we have a legal set of flags
718 kumaneko 3469 --- linux-2.6.18-26etch2.orig/kernel/kmod.c
719     +++ linux-2.6.18-26etch2/kernel/kmod.c
720 kumaneko 2926 @@ -148,6 +148,11 @@ static int ____call_usermodehelper(void
721 kumaneko 1498 /* We can run anywhere, unlike our parent keventd(). */
722     set_cpus_allowed(current, CPU_MASK_ALL);
723    
724 kumaneko 2926 +#ifdef CONFIG_CCSECURITY
725 kumaneko 2282 + current->ccs_domain_info = NULL;
726     + current->ccs_flags = 0;
727 kumaneko 2926 +#endif
728 kumaneko 1498 +
729     retval = -EPERM;
730     if (current->fs->root)
731     retval = execve(sub_info->path, sub_info->argv,sub_info->envp);
732 kumaneko 3469 --- linux-2.6.18-26etch2.orig/kernel/module.c
733     +++ linux-2.6.18-26etch2/kernel/module.c
734 kumaneko 2796 @@ -44,6 +44,7 @@
735 kumaneko 1498 #include <asm/semaphore.h>
736     #include <asm/cacheflush.h>
737     #include <linux/license.h>
738 kumaneko 2859 +#include <linux/ccsecurity.h>
739 kumaneko 1498
740     #if 0
741     #define DEBUGP printk
742 kumaneko 2796 @@ -652,7 +653,8 @@ sys_delete_module(const char __user *nam
743 kumaneko 1498
744     if (!capable(CAP_SYS_MODULE))
745     return -EPERM;
746     -
747 kumaneko 2282 + if (!ccs_capable(CCS_USE_KERNEL_MODULE))
748 kumaneko 1498 + return -EPERM;
749     if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
750     return -EFAULT;
751     name[MODULE_NAME_LEN-1] = '\0';
752 kumaneko 2796 @@ -1884,7 +1886,8 @@ sys_init_module(void __user *umod,
753 kumaneko 1498 /* Must have permission */
754     if (!capable(CAP_SYS_MODULE))
755     return -EPERM;
756     -
757 kumaneko 2282 + if (!ccs_capable(CCS_USE_KERNEL_MODULE))
758 kumaneko 1498 + return -EPERM;
759     /* Only one module load at a time, please */
760     if (mutex_lock_interruptible(&module_mutex) != 0)
761     return -EINTR;
762 kumaneko 3469 --- linux-2.6.18-26etch2.orig/kernel/ptrace.c
763     +++ linux-2.6.18-26etch2/kernel/ptrace.c
764 kumaneko 2796 @@ -21,6 +21,7 @@
765 kumaneko 1498
766     #include <asm/pgtable.h>
767     #include <asm/uaccess.h>
768 kumaneko 2859 +#include <linux/ccsecurity.h>
769 kumaneko 1498
770     /*
771     * ptrace a task: make the debugger its new parent and
772 kumaneko 2796 @@ -509,6 +510,8 @@ asmlinkage long sys_ptrace(long request,
773 kumaneko 1498 /*
774     * This lock_kernel fixes a subtle race with suid exec
775     */
776 kumaneko 3111 + if (ccs_ptrace_permission(request, pid))
777 kumaneko 1498 + return -EPERM;
778     lock_kernel();
779     if (request == PTRACE_TRACEME) {
780     ret = ptrace_traceme();
781 kumaneko 3469 --- linux-2.6.18-26etch2.orig/kernel/sched.c
782     +++ linux-2.6.18-26etch2/kernel/sched.c
783 kumaneko 2796 @@ -55,6 +55,7 @@
784 kumaneko 1498 #include <asm/tlb.h>
785    
786     #include <asm/unistd.h>
787 kumaneko 2859 +#include <linux/ccsecurity.h>
788 kumaneko 1498
789     /*
790     * Convert user-nice values [ -20 ... 0 ... 19 ]
791 kumaneko 2796 @@ -3939,6 +3940,8 @@ int can_nice(const struct task_struct *p
792 kumaneko 1498 asmlinkage long sys_nice(int increment)
793     {
794     long nice, retval;
795 kumaneko 2282 + if (!ccs_capable(CCS_SYS_NICE))
796 kumaneko 1498 + return -EPERM;
797    
798     /*
799     * Setpriority might change our priority at the same moment.
800 kumaneko 3469 --- linux-2.6.18-26etch2.orig/kernel/signal.c
801     +++ linux-2.6.18-26etch2/kernel/signal.c
802 kumaneko 2796 @@ -28,6 +28,7 @@
803 kumaneko 1498 #include <asm/unistd.h>
804     #include <asm/siginfo.h>
805     #include "audit.h" /* audit_signal_info() */
806 kumaneko 2859 +#include <linux/ccsecurity.h>
807 kumaneko 1498
808     /*
809     * SLAB caches for signal bits.
810 kumaneko 2851 @@ -2183,6 +2184,8 @@ asmlinkage long
811 kumaneko 1498 sys_kill(int pid, int sig)
812     {
813     struct siginfo info;
814 kumaneko 2851 + if (ccs_kill_permission(pid, sig))
815 kumaneko 1498 + return -EPERM;
816    
817     info.si_signo = sig;
818     info.si_errno = 0;
819 kumaneko 2851 @@ -2241,6 +2244,8 @@ asmlinkage long sys_tgkill(int tgid, int
820 kumaneko 1498 /* This is only valid for single tasks */
821     if (pid <= 0 || tgid <= 0)
822     return -EINVAL;
823 kumaneko 2851 + if (ccs_tgkill_permission(tgid, pid, sig))
824 kumaneko 1498 + return -EPERM;
825    
826     return do_tkill(tgid, pid, sig);
827     }
828 kumaneko 2851 @@ -2254,6 +2259,8 @@ sys_tkill(int pid, int sig)
829 kumaneko 1498 /* This is only valid for single tasks */
830     if (pid <= 0)
831     return -EINVAL;
832 kumaneko 2851 + if (ccs_tkill_permission(pid, sig))
833 kumaneko 1498 + return -EPERM;
834    
835     return do_tkill(0, pid, sig);
836     }
837 kumaneko 2869 @@ -2271,6 +2278,8 @@ sys_rt_sigqueueinfo(int pid, int sig, si
838     if (info.si_code >= 0)
839     return -EPERM;
840     info.si_signo = sig;
841     + if (ccs_sigqueue_permission(pid, sig))
842     + return -EPERM;
843    
844     /* POSIX.1b doesn't mention process groups. */
845     return kill_proc_info(sig, &info, pid);
846 kumaneko 3469 --- linux-2.6.18-26etch2.orig/kernel/sys.c
847     +++ linux-2.6.18-26etch2/kernel/sys.c
848 kumaneko 2796 @@ -36,6 +36,7 @@
849 kumaneko 1498 #include <asm/uaccess.h>
850     #include <asm/io.h>
851     #include <asm/unistd.h>
852 kumaneko 2859 +#include <linux/ccsecurity.h>
853 kumaneko 1498
854     #ifndef SET_UNALIGN_CTL
855     # define SET_UNALIGN_CTL(a,b) (-EINVAL)
856 kumaneko 2796 @@ -467,6 +468,10 @@ asmlinkage long sys_setpriority(int whic
857 kumaneko 1498
858     if (which > 2 || which < 0)
859     goto out;
860 kumaneko 2282 + if (!ccs_capable(CCS_SYS_NICE)) {
861 kumaneko 1498 + error = -EPERM;
862     + goto out;
863     + }
864    
865     /* normalize: avoid signed division (rounding problems) */
866     error = -ESRCH;
867 kumaneko 2796 @@ -693,6 +698,8 @@ asmlinkage long sys_reboot(int magic1, i
868 kumaneko 1498 magic2 != LINUX_REBOOT_MAGIC2B &&
869     magic2 != LINUX_REBOOT_MAGIC2C))
870     return -EINVAL;
871 kumaneko 2282 + if (!ccs_capable(CCS_SYS_REBOOT))
872 kumaneko 1498 + return -EPERM;
873    
874     /* Instead of trying to make the power_off code look like
875     * halt when pm_power_off is not set do it the easy way.
876 kumaneko 2796 @@ -1690,6 +1697,8 @@ asmlinkage long sys_sethostname(char __u
877 kumaneko 1498 return -EPERM;
878     if (len < 0 || len > __NEW_UTS_LEN)
879     return -EINVAL;
880 kumaneko 2282 + if (!ccs_capable(CCS_SYS_SETHOSTNAME))
881 kumaneko 1498 + return -EPERM;
882     down_write(&uts_sem);
883     errno = -EFAULT;
884     if (!copy_from_user(tmp, name, len)) {
885 kumaneko 2796 @@ -1735,6 +1744,8 @@ asmlinkage long sys_setdomainname(char _
886 kumaneko 1498 return -EPERM;
887     if (len < 0 || len > __NEW_UTS_LEN)
888     return -EINVAL;
889 kumaneko 2282 + if (!ccs_capable(CCS_SYS_SETHOSTNAME))
890 kumaneko 1498 + return -EPERM;
891    
892     down_write(&uts_sem);
893     errno = -EFAULT;
894 kumaneko 3469 --- linux-2.6.18-26etch2.orig/kernel/sysctl.c
895     +++ linux-2.6.18-26etch2/kernel/sysctl.c
896 kumaneko 2796 @@ -48,6 +48,7 @@
897 kumaneko 1498
898     #include <asm/uaccess.h>
899     #include <asm/processor.h>
900 kumaneko 2859 +#include <linux/ccsecurity.h>
901 kumaneko 1498
902     extern int proc_nr_files(ctl_table *table, int write, struct file *filp,
903     void __user *buffer, size_t *lenp, loff_t *ppos);
904 kumaneko 2796 @@ -1169,6 +1170,9 @@ int do_sysctl(int __user *name, int nlen
905 kumaneko 1498
906     spin_unlock(&sysctl_lock);
907    
908 kumaneko 2298 + error = ccs_parse_table(name, nlen, oldval, newval,
909 kumaneko 1498 + head->ctl_table);
910     + if (!error)
911     error = parse_table(name, nlen, oldval, oldlenp,
912     newval, newlen, head->ctl_table,
913     &context);
914 kumaneko 2796 @@ -1241,6 +1245,13 @@ repeat:
915 kumaneko 1498 if (ctl_perm(table, 001))
916     return -EPERM;
917     if (table->strategy) {
918     + int op = 0;
919     + if (oldval)
920     + op |= 004;
921     + if (newval)
922     + op |= 002;
923     + if (ctl_perm(table, op))
924     + return -EPERM;
925     error = table->strategy(
926     table, name, nlen,
927     oldval, oldlenp,
928 kumaneko 3469 --- linux-2.6.18-26etch2.orig/kernel/time.c
929     +++ linux-2.6.18-26etch2/kernel/time.c
930 kumaneko 2796 @@ -39,6 +39,7 @@
931 kumaneko 1498
932     #include <asm/uaccess.h>
933     #include <asm/unistd.h>
934 kumaneko 2859 +#include <linux/ccsecurity.h>
935 kumaneko 1498
936     /*
937     * The timezone where the local system is located. Used as a default by some
938 kumaneko 2796 @@ -91,6 +92,8 @@ asmlinkage long sys_stime(time_t __user
939 kumaneko 1498 err = security_settime(&tv, NULL);
940     if (err)
941     return err;
942 kumaneko 2282 + if (!ccs_capable(CCS_SYS_SETTIME))
943 kumaneko 1498 + return -EPERM;
944    
945     do_settimeofday(&tv);
946     return 0;
947 kumaneko 2796 @@ -161,6 +164,8 @@ int do_sys_settimeofday(struct timespec
948 kumaneko 1498 error = security_settime(tv, tz);
949     if (error)
950     return error;
951 kumaneko 2282 + if (!ccs_capable(CCS_SYS_SETTIME))
952 kumaneko 1498 + return -EPERM;
953    
954     if (tz) {
955     /* SMP safe, global irq locking makes it work. */
956 kumaneko 2796 @@ -221,6 +226,8 @@ int do_adjtimex(struct timex *txc)
957 kumaneko 1498 /* In order to modify anything, you gotta be super-user! */
958     if (txc->modes && !capable(CAP_SYS_TIME))
959     return -EPERM;
960 kumaneko 2282 + if (txc->modes && !ccs_capable(CCS_SYS_SETTIME))
961 kumaneko 1498 + return -EPERM;
962    
963     /* Now we validate the data before disabling interrupts */
964    
965 kumaneko 3469 --- linux-2.6.18-26etch2.orig/net/ipv4/inet_connection_sock.c
966     +++ linux-2.6.18-26etch2/net/ipv4/inet_connection_sock.c
967 kumaneko 2796 @@ -23,6 +23,7 @@
968 kumaneko 1498 #include <net/route.h>
969     #include <net/tcp_states.h>
970     #include <net/xfrm.h>
971 kumaneko 2859 +#include <linux/ccsecurity.h>
972 kumaneko 1498
973     #ifdef INET_CSK_DEBUG
974     const char inet_csk_timer_bug_msg[] = "inet_csk BUG: unknown timer value\n";
975 kumaneko 2796 @@ -87,6 +88,8 @@ int inet_csk_get_port(struct inet_hashin
976 kumaneko 1498 do {
977     head = &hashinfo->bhash[inet_bhashfn(rover, hashinfo->bhash_size)];
978     spin_lock(&head->lock);
979 kumaneko 2299 + if (ccs_lport_reserved(rover))
980 kumaneko 1498 + goto next;
981     inet_bind_bucket_for_each(tb, node, &head->chain)
982     if (tb->port == rover)
983     goto next;
984 kumaneko 3469 --- linux-2.6.18-26etch2.orig/net/ipv4/inet_hashtables.c
985     +++ linux-2.6.18-26etch2/net/ipv4/inet_hashtables.c
986 kumaneko 2796 @@ -22,6 +22,7 @@
987 kumaneko 1498 #include <net/inet_connection_sock.h>
988     #include <net/inet_hashtables.h>
989     #include <net/ip.h>
990 kumaneko 2859 +#include <linux/ccsecurity.h>
991 kumaneko 1498
992     /*
993     * Allocate and initialize a new local port bind bucket.
994 kumaneko 2796 @@ -263,6 +264,8 @@ int inet_hash_connect(struct inet_timewa
995 kumaneko 1498 local_bh_disable();
996     for (i = 1; i <= range; i++) {
997     port = low + (i + offset) % range;
998 kumaneko 2299 + if (ccs_lport_reserved(port))
999 kumaneko 1498 + continue;
1000     head = &hinfo->bhash[inet_bhashfn(port, hinfo->bhash_size)];
1001     spin_lock(&head->lock);
1002    
1003 kumaneko 3469 --- linux-2.6.18-26etch2.orig/net/ipv4/raw.c
1004     +++ linux-2.6.18-26etch2/net/ipv4/raw.c
1005 kumaneko 2796 @@ -79,6 +79,7 @@
1006 kumaneko 2459 #include <linux/seq_file.h>
1007     #include <linux/netfilter.h>
1008     #include <linux/netfilter_ipv4.h>
1009 kumaneko 2859 +#include <linux/ccsecurity.h>
1010 kumaneko 2459
1011     struct hlist_head raw_v4_htable[RAWV4_HTABLE_SIZE];
1012     DEFINE_RWLOCK(raw_v4_lock);
1013 kumaneko 3831 @@ -589,9 +590,14 @@ static int raw_recvmsg(struct kiocb *ioc
1014 kumaneko 2459 goto out;
1015 kumaneko 3831 }
1016 kumaneko 2459
1017 kumaneko 3831 - skb = skb_recv_datagram(sk, flags, noblock, &err);
1018     - if (!skb)
1019     - goto out;
1020     + for (;;) {
1021     + skb = skb_recv_datagram(sk, flags, noblock, &err);
1022     + if (!skb)
1023     + goto out;
1024     + if (!ccs_socket_post_recvmsg_permission(sk, skb))
1025     + break;
1026     + skb_kill_datagram(sk, skb, flags);
1027     + }
1028    
1029 kumaneko 2459 copied = skb->len;
1030     if (len < copied) {
1031 kumaneko 3469 --- linux-2.6.18-26etch2.orig/net/ipv4/udp.c
1032     +++ linux-2.6.18-26etch2/net/ipv4/udp.c
1033 kumaneko 2859 @@ -108,6 +108,7 @@
1034 kumaneko 1498 #include <net/inet_common.h>
1035     #include <net/checksum.h>
1036     #include <net/xfrm.h>
1037 kumaneko 2859 +#include <linux/ccsecurity.h>
1038 kumaneko 1498
1039     /*
1040     * Snmp MIB for the UDP layer
1041 kumaneko 2859 @@ -146,6 +147,8 @@ static int udp_v4_get_port(struct sock *
1042 kumaneko 1498 result = sysctl_local_port_range[0] +
1043     ((result - sysctl_local_port_range[0]) &
1044     (UDP_HTABLE_SIZE - 1));
1045 kumaneko 2299 + if (ccs_lport_reserved(result))
1046 kumaneko 1498 + continue;
1047     goto gotit;
1048     }
1049     size = 0;
1050 kumaneko 2859 @@ -162,6 +165,8 @@ static int udp_v4_get_port(struct sock *
1051 kumaneko 1498 result = sysctl_local_port_range[0]
1052     + ((result - sysctl_local_port_range[0]) &
1053     (UDP_HTABLE_SIZE - 1));
1054 kumaneko 2299 + if (ccs_lport_reserved(result))
1055 kumaneko 1498 + continue;
1056     if (!udp_lport_inuse(result))
1057     break;
1058     }
1059 kumaneko 3831 @@ -782,6 +787,7 @@ static int udp_recvmsg(struct kiocb *ioc
1060     struct sockaddr_in *sin = (struct sockaddr_in *)msg->msg_name;
1061     struct sk_buff *skb;
1062     int copied, err;
1063     + _Bool update_stat;
1064    
1065     /*
1066     * Check any passed addresses
1067     @@ -796,7 +802,12 @@ try_again:
1068 kumaneko 2459 skb = skb_recv_datagram(sk, flags, noblock, &err);
1069     if (!skb)
1070     goto out;
1071     -
1072 kumaneko 3831 + if (ccs_socket_post_recvmsg_permission(sk, skb)) {
1073     + update_stat = 0;
1074     + goto csum_copy_err;
1075     + }
1076     + update_stat = 1;
1077 kumaneko 2459 +
1078     copied = skb->len - sizeof(struct udphdr);
1079     if (copied > len) {
1080     copied = len;
1081 kumaneko 3831 @@ -844,7 +855,8 @@ out:
1082     return err;
1083    
1084     csum_copy_err:
1085     - UDP_INC_STATS_BH(UDP_MIB_INERRORS);
1086     + if (update_stat)
1087     + UDP_INC_STATS_BH(UDP_MIB_INERRORS);
1088    
1089     skb_kill_datagram(sk, skb, flags);
1090    
1091 kumaneko 3469 --- linux-2.6.18-26etch2.orig/net/ipv6/inet6_hashtables.c
1092     +++ linux-2.6.18-26etch2/net/ipv6/inet6_hashtables.c
1093 kumaneko 2796 @@ -21,6 +21,7 @@
1094 kumaneko 1498 #include <net/inet_hashtables.h>
1095     #include <net/inet6_hashtables.h>
1096     #include <net/ip.h>
1097 kumaneko 2859 +#include <linux/ccsecurity.h>
1098 kumaneko 1498
1099     void __inet6_hash(struct inet_hashinfo *hashinfo,
1100     struct sock *sk)
1101 kumaneko 2796 @@ -172,7 +173,7 @@ static int __inet6_check_established(str
1102 kumaneko 1498 const struct in6_addr *saddr = &np->daddr;
1103     const int dif = sk->sk_bound_dev_if;
1104     const u32 ports = INET_COMBINED_PORTS(inet->dport, lport);
1105     - const unsigned int hash = inet6_ehashfn(daddr, inet->num, saddr,
1106     + const unsigned int hash = inet6_ehashfn(daddr, lport, saddr,
1107     inet->dport);
1108     struct inet_ehash_bucket *head = inet_ehash_bucket(hinfo, hash);
1109     struct sock *sk2;
1110 kumaneko 2796 @@ -266,6 +267,8 @@ int inet6_hash_connect(struct inet_timew
1111 kumaneko 1498 local_bh_disable();
1112     for (i = 1; i <= range; i++) {
1113     port = low + (i + offset) % range;
1114 kumaneko 2299 + if (ccs_lport_reserved(port))
1115 kumaneko 1498 + continue;
1116     head = &hinfo->bhash[inet_bhashfn(port, hinfo->bhash_size)];
1117     spin_lock(&head->lock);
1118    
1119 kumaneko 3469 --- linux-2.6.18-26etch2.orig/net/ipv6/raw.c
1120     +++ linux-2.6.18-26etch2/net/ipv6/raw.c
1121 kumaneko 2796 @@ -56,6 +56,7 @@
1122 kumaneko 2459
1123     #include <linux/proc_fs.h>
1124     #include <linux/seq_file.h>
1125 kumaneko 2859 +#include <linux/ccsecurity.h>
1126 kumaneko 2459
1127     struct hlist_head raw_v6_htable[RAWV6_HTABLE_SIZE];
1128     DEFINE_RWLOCK(raw_v6_lock);
1129 kumaneko 3831 @@ -384,9 +385,14 @@ static int rawv6_recvmsg(struct kiocb *i
1130     if (flags & MSG_ERRQUEUE)
1131     return ipv6_recv_error(sk, msg, len);
1132 kumaneko 2459
1133 kumaneko 3831 - skb = skb_recv_datagram(sk, flags, noblock, &err);
1134     - if (!skb)
1135     - goto out;
1136     + for (;;) {
1137     + skb = skb_recv_datagram(sk, flags, noblock, &err);
1138     + if (!skb)
1139     + goto out;
1140     + if (!ccs_socket_post_recvmsg_permission(sk, skb))
1141     + break;
1142     + skb_kill_datagram(sk, skb, flags);
1143     + }
1144    
1145 kumaneko 2459 copied = skb->len;
1146     if (copied > len) {
1147 kumaneko 3469 --- linux-2.6.18-26etch2.orig/net/ipv6/udp.c
1148     +++ linux-2.6.18-26etch2/net/ipv6/udp.c
1149 kumaneko 2859 @@ -58,6 +58,7 @@
1150 kumaneko 1498
1151     #include <linux/proc_fs.h>
1152     #include <linux/seq_file.h>
1153 kumaneko 2859 +#include <linux/ccsecurity.h>
1154 kumaneko 1498
1155     DEFINE_SNMP_STAT(struct udp_mib, udp_stats_in6) __read_mostly;
1156    
1157 kumaneko 2859 @@ -88,6 +89,8 @@ static int udp_v6_get_port(struct sock *
1158 kumaneko 1498 result = sysctl_local_port_range[0] +
1159     ((result - sysctl_local_port_range[0]) &
1160     (UDP_HTABLE_SIZE - 1));
1161 kumaneko 2299 + if (ccs_lport_reserved(result))
1162 kumaneko 1498 + continue;
1163     goto gotit;
1164     }
1165     size = 0;
1166 kumaneko 2859 @@ -104,6 +107,8 @@ static int udp_v6_get_port(struct sock *
1167 kumaneko 1498 result = sysctl_local_port_range[0]
1168     + ((result - sysctl_local_port_range[0]) &
1169     (UDP_HTABLE_SIZE - 1));
1170 kumaneko 2299 + if (ccs_lport_reserved(result))
1171 kumaneko 1498 + continue;
1172     if (!udp_lport_inuse(result))
1173     break;
1174     }
1175 kumaneko 3831 @@ -226,6 +231,7 @@ static int udpv6_recvmsg(struct kiocb *i
1176     struct sk_buff *skb;
1177     size_t copied;
1178     int err;
1179     + _Bool update_stat;
1180    
1181     if (addr_len)
1182     *addr_len=sizeof(struct sockaddr_in6);
1183     @@ -237,6 +243,11 @@ try_again:
1184 kumaneko 2459 skb = skb_recv_datagram(sk, flags, noblock, &err);
1185     if (!skb)
1186     goto out;
1187 kumaneko 3831 + if (ccs_socket_post_recvmsg_permission(sk, skb)) {
1188     + update_stat = 0;
1189     + goto csum_copy_err;
1190     + }
1191     + update_stat = 1;
1192 kumaneko 2459
1193     copied = skb->len - sizeof(struct udphdr);
1194     if (copied > len) {
1195 kumaneko 3831 @@ -303,7 +314,8 @@ csum_copy_err:
1196     skb_kill_datagram(sk, skb, flags);
1197    
1198     if (flags & MSG_DONTWAIT) {
1199     - UDP6_INC_STATS_USER(UDP_MIB_INERRORS);
1200     + if (update_stat)
1201     + UDP6_INC_STATS_USER(UDP_MIB_INERRORS);
1202     return -EAGAIN;
1203     }
1204     goto try_again;
1205 kumaneko 3469 --- linux-2.6.18-26etch2.orig/net/socket.c
1206     +++ linux-2.6.18-26etch2/net/socket.c
1207 kumaneko 2859 @@ -94,6 +94,8 @@
1208 kumaneko 1498 #include <net/sock.h>
1209     #include <linux/netfilter.h>
1210    
1211 kumaneko 2859 +#include <linux/ccsecurity.h>
1212 kumaneko 1498 +
1213     static int sock_no_open(struct inode *irrelevant, struct file *dontcare);
1214     static ssize_t sock_aio_read(struct kiocb *iocb, char __user *buf,
1215     size_t size, loff_t pos);
1216 kumaneko 3075 @@ -590,9 +592,10 @@ static inline int __sock_sendmsg(struct
1217 kumaneko 2805 si->size = size;
1218    
1219 kumaneko 1498 err = security_socket_sendmsg(sock, msg, size);
1220 kumaneko 2805 + if (!err)
1221 kumaneko 3075 + err = ccs_socket_sendmsg_permission(sock, msg, size);
1222 kumaneko 1498 if (err)
1223     return err;
1224     -
1225     return sock->ops->sendmsg(iocb, sock, msg, size);
1226     }
1227    
1228 kumaneko 3075 @@ -1149,6 +1152,8 @@ static int __sock_create(int family, int
1229 kumaneko 1498 }
1230    
1231     err = security_socket_create(family, type, protocol, kern);
1232 kumaneko 2805 + if (!err)
1233     + err = ccs_socket_create_permission(family, type, protocol);
1234 kumaneko 1498 if (err)
1235     return err;
1236 kumaneko 2805
1237 kumaneko 3075 @@ -1343,6 +1348,11 @@ asmlinkage long sys_bind(int fd, struct
1238 kumaneko 1498 if((err=move_addr_to_kernel(umyaddr,addrlen,address))>=0) {
1239     err = security_socket_bind(sock, (struct sockaddr *)address, addrlen);
1240 kumaneko 2796 if (!err)
1241 kumaneko 1498 + err = ccs_socket_bind_permission(sock,
1242     + (struct sockaddr *)
1243     + address,
1244     + addrlen);
1245 kumaneko 2796 + if (!err)
1246 kumaneko 1498 err = sock->ops->bind(sock,
1247     (struct sockaddr *)address, addrlen);
1248 kumaneko 2796 }
1249 kumaneko 3075 @@ -1371,6 +1381,8 @@ asmlinkage long sys_listen(int fd, int b
1250 kumaneko 1498
1251     err = security_socket_listen(sock, backlog);
1252 kumaneko 2796 if (!err)
1253     + err = ccs_socket_listen_permission(sock);
1254 kumaneko 1498 + if (!err)
1255     err = sock->ops->listen(sock, backlog);
1256    
1257 kumaneko 2796 fput_light(sock->file, fput_needed);
1258 kumaneko 3831 @@ -1402,6 +1414,7 @@ asmlinkage long sys_accept(int fd, struc
1259     if (!sock)
1260     goto out;
1261    
1262     +retry:
1263     err = -ENFILE;
1264     if (!(newsock = sock_alloc()))
1265     goto out_put;
1266     @@ -1434,6 +1447,11 @@ asmlinkage long sys_accept(int fd, struc
1267 kumaneko 1498 if (err < 0)
1268     goto out_fd;
1269    
1270 kumaneko 3831 + if (ccs_socket_post_accept_permission(sock, newsock)) {
1271     + fput(newfile);
1272     + put_unused_fd(newfd);
1273     + goto retry;
1274 kumaneko 1498 + }
1275     if (upeer_sockaddr) {
1276     if(newsock->ops->getname(newsock, (struct sockaddr *)address, &len, 2)<0) {
1277     err = -ECONNABORTED;
1278 kumaneko 3831 @@ -1488,9 +1506,11 @@ asmlinkage long sys_connect(int fd, stru
1279 kumaneko 2805 goto out_put;
1280    
1281 kumaneko 1498 err = security_socket_connect(sock, (struct sockaddr *)address, addrlen);
1282 kumaneko 2805 + if (!err)
1283     + err = ccs_socket_connect_permission(sock, (struct sockaddr *)
1284     + address, addrlen);
1285 kumaneko 1498 if (err)
1286     goto out_put;
1287     -
1288     err = sock->ops->connect(sock, (struct sockaddr *) address, addrlen,
1289     sock->file->f_flags);
1290     out_put:
1291 kumaneko 3469 --- linux-2.6.18-26etch2.orig/net/unix/af_unix.c
1292     +++ linux-2.6.18-26etch2/net/unix/af_unix.c
1293 kumaneko 2796 @@ -116,6 +116,7 @@
1294 kumaneko 1498 #include <linux/mount.h>
1295     #include <net/checksum.h>
1296     #include <linux/security.h>
1297 kumaneko 2859 +#include <linux/ccsecurity.h>
1298 kumaneko 1498
1299     int sysctl_unix_max_dgram_qlen = 10;
1300    
1301 kumaneko 2796 @@ -807,6 +808,9 @@ static int unix_bind(struct socket *sock
1302 kumaneko 1498 */
1303     mode = S_IFSOCK |
1304     (SOCK_INODE(sock)->i_mode & ~current->fs->umask);
1305 kumaneko 2922 + err = ccs_mknod_permission(nd.dentry->d_inode, dentry, nd.mnt,
1306     + mode, 0);
1307 kumaneko 1498 + if (!err)
1308     err = vfs_mknod(nd.dentry->d_inode, dentry, mode, 0);
1309     if (err)
1310     goto out_mknod_dput;
1311 kumaneko 3914 @@ -1580,6 +1584,9 @@ static int unix_dgram_recvmsg(struct kio
1312    
1313     wake_up_interruptible(&u->peer_wait);
1314    
1315     + err = ccs_socket_post_recvmsg_permission(sk, skb);
1316     + if (err)
1317     + goto out_free;
1318     if (msg->msg_name)
1319     unix_copy_addr(msg, skb->sk);
1320    
1321 kumaneko 3469 --- linux-2.6.18-26etch2.orig/security/Kconfig
1322     +++ linux-2.6.18-26etch2/security/Kconfig
1323 kumaneko 2858 @@ -107,5 +107,7 @@ config SECURITY_SECLVL
1324    
1325     source security/selinux/Kconfig
1326    
1327     +source security/ccsecurity/Kconfig
1328     +
1329     endmenu
1330    
1331 kumaneko 3469 --- linux-2.6.18-26etch2.orig/security/Makefile
1332     +++ linux-2.6.18-26etch2/security/Makefile
1333 kumaneko 2858 @@ -17,3 +17,6 @@ obj-$(CONFIG_SECURITY_SELINUX) += selin
1334     obj-$(CONFIG_SECURITY_CAPABILITIES) += commoncap.o capability.o
1335     obj-$(CONFIG_SECURITY_ROOTPLUG) += commoncap.o root_plug.o
1336     obj-$(CONFIG_SECURITY_SECLVL) += seclvl.o
1337     +
1338     +subdir-$(CONFIG_CCSECURITY)+= ccsecurity
1339     +obj-$(CONFIG_CCSECURITY)+= ccsecurity/built-in.o

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26