TOMOYO: Remove next_domain from tomoyo_find_next_domain().
[safe/jmp/linux-2.6] / security / tomoyo / tomoyo.c
1 /*
2  * security/tomoyo/tomoyo.c
3  *
4  * LSM hooks for TOMOYO Linux.
5  *
6  * Copyright (C) 2005-2009  NTT DATA CORPORATION
7  *
8  * Version: 2.2.0   2009/04/01
9  *
10  */
11
12 #include <linux/security.h>
13 #include "common.h"
14 #include "tomoyo.h"
15 #include "realpath.h"
16
17 static int tomoyo_cred_prepare(struct cred *new, const struct cred *old,
18                                gfp_t gfp)
19 {
20         /*
21          * Since "struct tomoyo_domain_info *" is a sharable pointer,
22          * we don't need to duplicate.
23          */
24         new->security = old->security;
25         return 0;
26 }
27
28 static int tomoyo_bprm_set_creds(struct linux_binprm *bprm)
29 {
30         int rc;
31
32         rc = cap_bprm_set_creds(bprm);
33         if (rc)
34                 return rc;
35
36         /*
37          * Do only if this function is called for the first time of an execve
38          * operation.
39          */
40         if (bprm->cred_prepared)
41                 return 0;
42         /*
43          * Load policy if /sbin/tomoyo-init exists and /sbin/init is requested
44          * for the first time.
45          */
46         if (!tomoyo_policy_loaded)
47                 tomoyo_load_policy(bprm->filename);
48         /*
49          * Tell tomoyo_bprm_check_security() is called for the first time of an
50          * execve operation.
51          */
52         bprm->cred->security = NULL;
53         return 0;
54 }
55
56 static int tomoyo_bprm_check_security(struct linux_binprm *bprm)
57 {
58         struct tomoyo_domain_info *domain = bprm->cred->security;
59
60         /*
61          * Execute permission is checked against pathname passed to do_execve()
62          * using current domain.
63          */
64         if (!domain)
65                 return tomoyo_find_next_domain(bprm);
66         /*
67          * Read permission is checked against interpreters using next domain.
68          * '1' is the result of open_to_namei_flags(O_RDONLY).
69          */
70         return tomoyo_check_open_permission(domain, &bprm->file->f_path, 1);
71 }
72
73 #ifdef CONFIG_SYSCTL
74
75 static int tomoyo_prepend(char **buffer, int *buflen, const char *str)
76 {
77         int namelen = strlen(str);
78
79         if (*buflen < namelen)
80                 return -ENOMEM;
81         *buflen -= namelen;
82         *buffer -= namelen;
83         memcpy(*buffer, str, namelen);
84         return 0;
85 }
86
87 /**
88  * tomoyo_sysctl_path - return the realpath of a ctl_table.
89  * @table: pointer to "struct ctl_table".
90  *
91  * Returns realpath(3) of the @table on success.
92  * Returns NULL on failure.
93  *
94  * This function uses tomoyo_alloc(), so the caller must call tomoyo_free()
95  * if this function didn't return NULL.
96  */
97 static char *tomoyo_sysctl_path(struct ctl_table *table)
98 {
99         int buflen = TOMOYO_MAX_PATHNAME_LEN;
100         char *buf = tomoyo_alloc(buflen);
101         char *end = buf + buflen;
102         int error = -ENOMEM;
103
104         if (!buf)
105                 return NULL;
106
107         *--end = '\0';
108         buflen--;
109         while (table) {
110                 char num[32];
111                 const char *sp = table->procname;
112
113                 if (!sp) {
114                         memset(num, 0, sizeof(num));
115                         snprintf(num, sizeof(num) - 1, "=%d=", table->ctl_name);
116                         sp = num;
117                 }
118                 if (tomoyo_prepend(&end, &buflen, sp) ||
119                     tomoyo_prepend(&end, &buflen, "/"))
120                         goto out;
121                 table = table->parent;
122         }
123         if (tomoyo_prepend(&end, &buflen, "/proc/sys"))
124                 goto out;
125         error = tomoyo_encode(buf, end - buf, end);
126  out:
127         if (!error)
128                 return buf;
129         tomoyo_free(buf);
130         return NULL;
131 }
132
133 static int tomoyo_sysctl(struct ctl_table *table, int op)
134 {
135         int error;
136         char *name;
137
138         op &= MAY_READ | MAY_WRITE;
139         if (!op)
140                 return 0;
141         name = tomoyo_sysctl_path(table);
142         if (!name)
143                 return -ENOMEM;
144         error = tomoyo_check_file_perm(tomoyo_domain(), name, op);
145         tomoyo_free(name);
146         return error;
147 }
148 #endif
149
150 static int tomoyo_path_truncate(struct path *path, loff_t length,
151                                 unsigned int time_attrs)
152 {
153         return tomoyo_check_1path_perm(tomoyo_domain(),
154                                        TOMOYO_TYPE_TRUNCATE_ACL,
155                                        path);
156 }
157
158 static int tomoyo_path_unlink(struct path *parent, struct dentry *dentry)
159 {
160         struct path path = { parent->mnt, dentry };
161         return tomoyo_check_1path_perm(tomoyo_domain(),
162                                        TOMOYO_TYPE_UNLINK_ACL,
163                                        &path);
164 }
165
166 static int tomoyo_path_mkdir(struct path *parent, struct dentry *dentry,
167                              int mode)
168 {
169         struct path path = { parent->mnt, dentry };
170         return tomoyo_check_1path_perm(tomoyo_domain(),
171                                        TOMOYO_TYPE_MKDIR_ACL,
172                                        &path);
173 }
174
175 static int tomoyo_path_rmdir(struct path *parent, struct dentry *dentry)
176 {
177         struct path path = { parent->mnt, dentry };
178         return tomoyo_check_1path_perm(tomoyo_domain(),
179                                        TOMOYO_TYPE_RMDIR_ACL,
180                                        &path);
181 }
182
183 static int tomoyo_path_symlink(struct path *parent, struct dentry *dentry,
184                                const char *old_name)
185 {
186         struct path path = { parent->mnt, dentry };
187         return tomoyo_check_1path_perm(tomoyo_domain(),
188                                        TOMOYO_TYPE_SYMLINK_ACL,
189                                        &path);
190 }
191
192 static int tomoyo_path_mknod(struct path *parent, struct dentry *dentry,
193                              int mode, unsigned int dev)
194 {
195         struct path path = { parent->mnt, dentry };
196         int type = TOMOYO_TYPE_CREATE_ACL;
197
198         switch (mode & S_IFMT) {
199         case S_IFCHR:
200                 type = TOMOYO_TYPE_MKCHAR_ACL;
201                 break;
202         case S_IFBLK:
203                 type = TOMOYO_TYPE_MKBLOCK_ACL;
204                 break;
205         case S_IFIFO:
206                 type = TOMOYO_TYPE_MKFIFO_ACL;
207                 break;
208         case S_IFSOCK:
209                 type = TOMOYO_TYPE_MKSOCK_ACL;
210                 break;
211         }
212         return tomoyo_check_1path_perm(tomoyo_domain(),
213                                        type, &path);
214 }
215
216 static int tomoyo_path_link(struct dentry *old_dentry, struct path *new_dir,
217                             struct dentry *new_dentry)
218 {
219         struct path path1 = { new_dir->mnt, old_dentry };
220         struct path path2 = { new_dir->mnt, new_dentry };
221         return tomoyo_check_2path_perm(tomoyo_domain(),
222                                        TOMOYO_TYPE_LINK_ACL,
223                                        &path1, &path2);
224 }
225
226 static int tomoyo_path_rename(struct path *old_parent,
227                               struct dentry *old_dentry,
228                               struct path *new_parent,
229                               struct dentry *new_dentry)
230 {
231         struct path path1 = { old_parent->mnt, old_dentry };
232         struct path path2 = { new_parent->mnt, new_dentry };
233         return tomoyo_check_2path_perm(tomoyo_domain(),
234                                        TOMOYO_TYPE_RENAME_ACL,
235                                        &path1, &path2);
236 }
237
238 static int tomoyo_file_fcntl(struct file *file, unsigned int cmd,
239                              unsigned long arg)
240 {
241         if (cmd == F_SETFL && ((arg ^ file->f_flags) & O_APPEND))
242                 return tomoyo_check_rewrite_permission(tomoyo_domain(), file);
243         return 0;
244 }
245
246 static int tomoyo_dentry_open(struct file *f, const struct cred *cred)
247 {
248         int flags = f->f_flags;
249
250         if ((flags + 1) & O_ACCMODE)
251                 flags++;
252         flags |= f->f_flags & (O_APPEND | O_TRUNC);
253         /* Don't check read permission here if called from do_execve(). */
254         if (current->in_execve)
255                 return 0;
256         return tomoyo_check_open_permission(tomoyo_domain(), &f->f_path, flags);
257 }
258
259 /*
260  * tomoyo_security_ops is a "struct security_operations" which is used for
261  * registering TOMOYO.
262  */
263 static struct security_operations tomoyo_security_ops = {
264         .name                = "tomoyo",
265         .cred_prepare        = tomoyo_cred_prepare,
266         .bprm_set_creds      = tomoyo_bprm_set_creds,
267         .bprm_check_security = tomoyo_bprm_check_security,
268 #ifdef CONFIG_SYSCTL
269         .sysctl              = tomoyo_sysctl,
270 #endif
271         .file_fcntl          = tomoyo_file_fcntl,
272         .dentry_open         = tomoyo_dentry_open,
273         .path_truncate       = tomoyo_path_truncate,
274         .path_unlink         = tomoyo_path_unlink,
275         .path_mkdir          = tomoyo_path_mkdir,
276         .path_rmdir          = tomoyo_path_rmdir,
277         .path_symlink        = tomoyo_path_symlink,
278         .path_mknod          = tomoyo_path_mknod,
279         .path_link           = tomoyo_path_link,
280         .path_rename         = tomoyo_path_rename,
281 };
282
283 static int __init tomoyo_init(void)
284 {
285         struct cred *cred = (struct cred *) current_cred();
286
287         if (!security_module_enable(&tomoyo_security_ops))
288                 return 0;
289         /* register ourselves with the security framework */
290         if (register_security(&tomoyo_security_ops))
291                 panic("Failure registering TOMOYO Linux");
292         printk(KERN_INFO "TOMOYO Linux initialized\n");
293         cred->security = &tomoyo_kernel_domain;
294         tomoyo_realpath_init();
295         return 0;
296 }
297
298 security_initcall(tomoyo_init);