diff options
Diffstat (limited to 'security')
| -rw-r--r-- | security/tomoyo/tomoyo.c | 293 | ||||
| -rw-r--r-- | security/tomoyo/tomoyo.h | 106 |
2 files changed, 399 insertions, 0 deletions
diff --git a/security/tomoyo/tomoyo.c b/security/tomoyo/tomoyo.c new file mode 100644 index 000000000000..f3ab20758c0f --- /dev/null +++ b/security/tomoyo/tomoyo.c | |||
| @@ -0,0 +1,293 @@ | |||
| 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-pre 2009/02/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 | /* | ||
| 31 | * Do only if this function is called for the first time of an execve | ||
| 32 | * operation. | ||
| 33 | */ | ||
| 34 | if (bprm->cred_prepared) | ||
| 35 | return 0; | ||
| 36 | /* | ||
| 37 | * Load policy if /sbin/tomoyo-init exists and /sbin/init is requested | ||
| 38 | * for the first time. | ||
| 39 | */ | ||
| 40 | if (!tomoyo_policy_loaded) | ||
| 41 | tomoyo_load_policy(bprm->filename); | ||
| 42 | /* | ||
| 43 | * Tell tomoyo_bprm_check_security() is called for the first time of an | ||
| 44 | * execve operation. | ||
| 45 | */ | ||
| 46 | bprm->cred->security = NULL; | ||
| 47 | return 0; | ||
| 48 | } | ||
| 49 | |||
| 50 | static int tomoyo_bprm_check_security(struct linux_binprm *bprm) | ||
| 51 | { | ||
| 52 | struct tomoyo_domain_info *domain = bprm->cred->security; | ||
| 53 | |||
| 54 | /* | ||
| 55 | * Execute permission is checked against pathname passed to do_execve() | ||
| 56 | * using current domain. | ||
| 57 | */ | ||
| 58 | if (!domain) { | ||
| 59 | struct tomoyo_domain_info *next_domain = NULL; | ||
| 60 | int retval = tomoyo_find_next_domain(bprm, &next_domain); | ||
| 61 | |||
| 62 | if (!retval) | ||
| 63 | bprm->cred->security = next_domain; | ||
| 64 | return retval; | ||
| 65 | } | ||
| 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 buf[32]; | ||
| 111 | const char *sp = table->procname; | ||
| 112 | |||
| 113 | if (!sp) { | ||
| 114 | memset(buf, 0, sizeof(buf)); | ||
| 115 | snprintf(buf, sizeof(buf) - 1, "=%d=", table->ctl_name); | ||
| 116 | sp = buf; | ||
| 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 | static struct security_operations tomoyo_security_ops = { | ||
| 260 | .name = "tomoyo", | ||
| 261 | .cred_prepare = tomoyo_cred_prepare, | ||
| 262 | .bprm_set_creds = tomoyo_bprm_set_creds, | ||
| 263 | .bprm_check_security = tomoyo_bprm_check_security, | ||
| 264 | #ifdef CONFIG_SYSCTL | ||
| 265 | .sysctl = tomoyo_sysctl, | ||
| 266 | #endif | ||
| 267 | .file_fcntl = tomoyo_file_fcntl, | ||
| 268 | .dentry_open = tomoyo_dentry_open, | ||
| 269 | .path_truncate = tomoyo_path_truncate, | ||
| 270 | .path_unlink = tomoyo_path_unlink, | ||
| 271 | .path_mkdir = tomoyo_path_mkdir, | ||
| 272 | .path_rmdir = tomoyo_path_rmdir, | ||
| 273 | .path_symlink = tomoyo_path_symlink, | ||
| 274 | .path_mknod = tomoyo_path_mknod, | ||
| 275 | .path_link = tomoyo_path_link, | ||
| 276 | .path_rename = tomoyo_path_rename, | ||
| 277 | }; | ||
| 278 | |||
| 279 | static int __init tomoyo_init(void) | ||
| 280 | { | ||
| 281 | struct cred *cred = (struct cred *) current_cred(); | ||
| 282 | |||
| 283 | if (!security_module_enable(&tomoyo_security_ops)) | ||
| 284 | return 0; | ||
| 285 | /* register ourselves with the security framework */ | ||
| 286 | if (register_security(&tomoyo_security_ops)) | ||
| 287 | panic("Failure registering TOMOYO Linux"); | ||
| 288 | printk(KERN_INFO "TOMOYO Linux initialized\n"); | ||
| 289 | cred->security = &tomoyo_kernel_domain; | ||
| 290 | return 0; | ||
| 291 | } | ||
| 292 | |||
| 293 | security_initcall(tomoyo_init); | ||
diff --git a/security/tomoyo/tomoyo.h b/security/tomoyo/tomoyo.h new file mode 100644 index 000000000000..a0c8f6e0bea4 --- /dev/null +++ b/security/tomoyo/tomoyo.h | |||
| @@ -0,0 +1,106 @@ | |||
| 1 | /* | ||
| 2 | * security/tomoyo/tomoyo.h | ||
| 3 | * | ||
| 4 | * Implementation of the Domain-Based Mandatory Access Control. | ||
| 5 | * | ||
| 6 | * Copyright (C) 2005-2009 NTT DATA CORPORATION | ||
| 7 | * | ||
| 8 | * Version: 2.2.0-pre 2009/02/01 | ||
| 9 | * | ||
| 10 | */ | ||
| 11 | |||
| 12 | #ifndef _SECURITY_TOMOYO_TOMOYO_H | ||
| 13 | #define _SECURITY_TOMOYO_TOMOYO_H | ||
| 14 | |||
| 15 | struct tomoyo_path_info; | ||
| 16 | struct path; | ||
| 17 | struct inode; | ||
| 18 | struct linux_binprm; | ||
| 19 | struct pt_regs; | ||
| 20 | struct tomoyo_page_buffer; | ||
| 21 | |||
| 22 | int tomoyo_check_file_perm(struct tomoyo_domain_info *domain, | ||
| 23 | const char *filename, const u8 perm); | ||
| 24 | int tomoyo_check_exec_perm(struct tomoyo_domain_info *domain, | ||
| 25 | const struct tomoyo_path_info *filename, | ||
| 26 | struct tomoyo_page_buffer *buf); | ||
| 27 | int tomoyo_check_open_permission(struct tomoyo_domain_info *domain, | ||
| 28 | struct path *path, const int flag); | ||
| 29 | int tomoyo_check_1path_perm(struct tomoyo_domain_info *domain, | ||
| 30 | const u8 operation, struct path *path); | ||
| 31 | int tomoyo_check_2path_perm(struct tomoyo_domain_info *domain, | ||
| 32 | const u8 operation, struct path *path1, | ||
| 33 | struct path *path2); | ||
| 34 | int tomoyo_check_rewrite_permission(struct tomoyo_domain_info *domain, | ||
| 35 | struct file *filp); | ||
| 36 | int tomoyo_find_next_domain(struct linux_binprm *bprm, | ||
| 37 | struct tomoyo_domain_info **next_domain); | ||
| 38 | |||
| 39 | /* Index numbers for Access Controls. */ | ||
| 40 | |||
| 41 | #define TOMOYO_TYPE_SINGLE_PATH_ACL 0 | ||
| 42 | #define TOMOYO_TYPE_DOUBLE_PATH_ACL 1 | ||
| 43 | |||
| 44 | /* Index numbers for File Controls. */ | ||
| 45 | |||
| 46 | /* | ||
| 47 | * TYPE_READ_WRITE_ACL is special. TYPE_READ_WRITE_ACL is automatically set | ||
| 48 | * if both TYPE_READ_ACL and TYPE_WRITE_ACL are set. Both TYPE_READ_ACL and | ||
| 49 | * TYPE_WRITE_ACL are automatically set if TYPE_READ_WRITE_ACL is set. | ||
| 50 | * TYPE_READ_WRITE_ACL is automatically cleared if either TYPE_READ_ACL or | ||
| 51 | * TYPE_WRITE_ACL is cleared. Both TYPE_READ_ACL and TYPE_WRITE_ACL are | ||
| 52 | * automatically cleared if TYPE_READ_WRITE_ACL is cleared. | ||
| 53 | */ | ||
| 54 | |||
| 55 | #define TOMOYO_TYPE_READ_WRITE_ACL 0 | ||
| 56 | #define TOMOYO_TYPE_EXECUTE_ACL 1 | ||
| 57 | #define TOMOYO_TYPE_READ_ACL 2 | ||
| 58 | #define TOMOYO_TYPE_WRITE_ACL 3 | ||
| 59 | #define TOMOYO_TYPE_CREATE_ACL 4 | ||
| 60 | #define TOMOYO_TYPE_UNLINK_ACL 5 | ||
| 61 | #define TOMOYO_TYPE_MKDIR_ACL 6 | ||
| 62 | #define TOMOYO_TYPE_RMDIR_ACL 7 | ||
| 63 | #define TOMOYO_TYPE_MKFIFO_ACL 8 | ||
| 64 | #define TOMOYO_TYPE_MKSOCK_ACL 9 | ||
| 65 | #define TOMOYO_TYPE_MKBLOCK_ACL 10 | ||
| 66 | #define TOMOYO_TYPE_MKCHAR_ACL 11 | ||
| 67 | #define TOMOYO_TYPE_TRUNCATE_ACL 12 | ||
| 68 | #define TOMOYO_TYPE_SYMLINK_ACL 13 | ||
| 69 | #define TOMOYO_TYPE_REWRITE_ACL 14 | ||
| 70 | #define TOMOYO_MAX_SINGLE_PATH_OPERATION 15 | ||
| 71 | |||
| 72 | #define TOMOYO_TYPE_LINK_ACL 0 | ||
| 73 | #define TOMOYO_TYPE_RENAME_ACL 1 | ||
| 74 | #define TOMOYO_MAX_DOUBLE_PATH_OPERATION 2 | ||
| 75 | |||
| 76 | #define TOMOYO_DOMAINPOLICY 0 | ||
| 77 | #define TOMOYO_EXCEPTIONPOLICY 1 | ||
| 78 | #define TOMOYO_DOMAIN_STATUS 2 | ||
| 79 | #define TOMOYO_PROCESS_STATUS 3 | ||
| 80 | #define TOMOYO_MEMINFO 4 | ||
| 81 | #define TOMOYO_SELFDOMAIN 5 | ||
| 82 | #define TOMOYO_VERSION 6 | ||
| 83 | #define TOMOYO_PROFILE 7 | ||
| 84 | #define TOMOYO_MANAGER 8 | ||
| 85 | |||
| 86 | extern struct tomoyo_domain_info tomoyo_kernel_domain; | ||
| 87 | |||
| 88 | static inline struct tomoyo_domain_info *tomoyo_domain(void) | ||
| 89 | { | ||
| 90 | return current_cred()->security; | ||
| 91 | } | ||
| 92 | |||
| 93 | /* Caller holds tasklist_lock spinlock. */ | ||
| 94 | static inline struct tomoyo_domain_info *tomoyo_real_domain(struct task_struct | ||
| 95 | *task) | ||
| 96 | { | ||
| 97 | /***** CRITICAL SECTION START *****/ | ||
| 98 | const struct cred *cred = get_task_cred(task); | ||
| 99 | struct tomoyo_domain_info *domain = cred->security; | ||
| 100 | |||
| 101 | put_cred(cred); | ||
| 102 | return domain; | ||
| 103 | /***** CRITICAL SECTION END *****/ | ||
| 104 | } | ||
| 105 | |||
| 106 | #endif /* !defined(_SECURITY_TOMOYO_TOMOYO_H) */ | ||
