blob: b6a31901f289477793b29af2456cd3ee18b225e0 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Kentaro Takedaf7433242009-02-05 17:18:16 +09002/*
3 * security/tomoyo/tomoyo.c
4 *
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +09005 * Copyright (C) 2005-2011 NTT DATA CORPORATION
Kentaro Takedaf7433242009-02-05 17:18:16 +09006 */
7
Casey Schaufler3c4ed7b2015-05-02 15:10:46 -07008#include <linux/lsm_hooks.h>
Kentaro Takedaf7433242009-02-05 17:18:16 +09009#include "common.h"
Kentaro Takedaf7433242009-02-05 17:18:16 +090010
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +090011/**
Tetsuo Handa8c6cb982019-01-19 23:11:40 +090012 * tomoyo_domain - Get "struct tomoyo_domain_info" for current thread.
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +090013 *
Tetsuo Handa8c6cb982019-01-19 23:11:40 +090014 * Returns pointer to "struct tomoyo_domain_info" for current thread.
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +090015 */
Tetsuo Handa8c6cb982019-01-19 23:11:40 +090016struct tomoyo_domain_info *tomoyo_domain(void)
David Howellsee18d642009-09-02 09:14:21 +010017{
Tetsuo Handa8c6cb982019-01-19 23:11:40 +090018 struct tomoyo_task *s = tomoyo_task(current);
Casey Schaufler43fc4602018-09-21 17:18:07 -070019
Tetsuo Handa8c6cb982019-01-19 23:11:40 +090020 if (s->old_domain_info && !current->in_execve) {
21 atomic_dec(&s->old_domain_info->users);
22 s->old_domain_info = NULL;
23 }
24 return s->domain_info;
David Howellsee18d642009-09-02 09:14:21 +010025}
26
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +090027/**
28 * tomoyo_cred_prepare - Target for security_prepare_creds().
29 *
30 * @new: Pointer to "struct cred".
31 * @old: Pointer to "struct cred".
32 * @gfp: Memory allocation flags.
33 *
34 * Returns 0.
35 */
Kentaro Takedaf7433242009-02-05 17:18:16 +090036static int tomoyo_cred_prepare(struct cred *new, const struct cred *old,
37 gfp_t gfp)
38{
Tetsuo Handa8c6cb982019-01-19 23:11:40 +090039 /* Restore old_domain_info saved by previous execve() request. */
40 struct tomoyo_task *s = tomoyo_task(current);
Casey Schaufler43fc4602018-09-21 17:18:07 -070041
Tetsuo Handa8c6cb982019-01-19 23:11:40 +090042 if (s->old_domain_info && !current->in_execve) {
43 atomic_dec(&s->domain_info->users);
44 s->domain_info = s->old_domain_info;
45 s->old_domain_info = NULL;
46 }
Kentaro Takedaf7433242009-02-05 17:18:16 +090047 return 0;
48}
49
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +090050/**
Tetsuo Handa8c6cb982019-01-19 23:11:40 +090051 * tomoyo_bprm_committed_creds - Target for security_bprm_committed_creds().
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +090052 *
Tetsuo Handa8c6cb982019-01-19 23:11:40 +090053 * @bprm: Pointer to "struct linux_binprm".
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +090054 */
Tetsuo Handa8c6cb982019-01-19 23:11:40 +090055static void tomoyo_bprm_committed_creds(struct linux_binprm *bprm)
David Howellsee18d642009-09-02 09:14:21 +010056{
Tetsuo Handa8c6cb982019-01-19 23:11:40 +090057 /* Clear old_domain_info saved by execve() request. */
58 struct tomoyo_task *s = tomoyo_task(current);
59
60 atomic_dec(&s->old_domain_info->users);
61 s->old_domain_info = NULL;
Tetsuo Handaec8e6a42010-02-11 09:43:20 +090062}
63
Tetsuo Handa8c6cb982019-01-19 23:11:40 +090064#ifndef CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +090065/**
ChenXiaoSong98eaa632021-06-10 15:49:00 +080066 * tomoyo_bprm_creds_for_exec - Target for security_bprm_creds_for_exec().
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +090067 *
68 * @bprm: Pointer to "struct linux_binprm".
69 *
Tetsuo Handa8c6cb982019-01-19 23:11:40 +090070 * Returns 0.
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +090071 */
Eric W. Biedermanb8bff592020-03-22 15:46:24 -050072static int tomoyo_bprm_creds_for_exec(struct linux_binprm *bprm)
Kentaro Takedaf7433242009-02-05 17:18:16 +090073{
74 /*
Kentaro Takedaf7433242009-02-05 17:18:16 +090075 * Load policy if /sbin/tomoyo-init exists and /sbin/init is requested
76 * for the first time.
77 */
78 if (!tomoyo_policy_loaded)
79 tomoyo_load_policy(bprm->filename);
Kentaro Takedaf7433242009-02-05 17:18:16 +090080 return 0;
81}
Tetsuo Handa8c6cb982019-01-19 23:11:40 +090082#endif
Kentaro Takedaf7433242009-02-05 17:18:16 +090083
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +090084/**
85 * tomoyo_bprm_check_security - Target for security_bprm_check().
86 *
87 * @bprm: Pointer to "struct linux_binprm".
88 *
89 * Returns 0 on success, negative value otherwise.
90 */
Kentaro Takedaf7433242009-02-05 17:18:16 +090091static int tomoyo_bprm_check_security(struct linux_binprm *bprm)
92{
Tetsuo Handa8c6cb982019-01-19 23:11:40 +090093 struct tomoyo_task *s = tomoyo_task(current);
Kentaro Takedaf7433242009-02-05 17:18:16 +090094
95 /*
Eric W. Biedermanbe619f72020-07-13 12:06:48 -050096 * Execute permission is checked against pathname passed to execve()
Kentaro Takedaf7433242009-02-05 17:18:16 +090097 * using current domain.
98 */
Tetsuo Handa8c6cb982019-01-19 23:11:40 +090099 if (!s->old_domain_info) {
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900100 const int idx = tomoyo_read_lock();
101 const int err = tomoyo_find_next_domain(bprm);
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900102
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900103 tomoyo_read_unlock(idx);
104 return err;
105 }
Kentaro Takedaf7433242009-02-05 17:18:16 +0900106 /*
107 * Read permission is checked against interpreters using next domain.
Kentaro Takedaf7433242009-02-05 17:18:16 +0900108 */
Tetsuo Handa8c6cb982019-01-19 23:11:40 +0900109 return tomoyo_check_open_permission(s->domain_info,
110 &bprm->file->f_path, O_RDONLY);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900111}
112
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900113/**
114 * tomoyo_inode_getattr - Target for security_inode_getattr().
115 *
ChenXiaoSong98eaa632021-06-10 15:49:00 +0800116 * @path: Pointer to "struct path".
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900117 *
118 * Returns 0 on success, negative value otherwise.
119 */
Al Viro3f7036a2015-03-08 19:28:30 -0400120static int tomoyo_inode_getattr(const struct path *path)
Tetsuo Handa7c759642011-06-26 23:15:31 +0900121{
Al Viro3f7036a2015-03-08 19:28:30 -0400122 return tomoyo_path_perm(TOMOYO_TYPE_GETATTR, path, NULL);
Tetsuo Handa7c759642011-06-26 23:15:31 +0900123}
124
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900125/**
126 * tomoyo_path_truncate - Target for security_path_truncate().
127 *
128 * @path: Pointer to "struct path".
129 *
130 * Returns 0 on success, negative value otherwise.
131 */
Al Viro81f4c502016-03-25 14:22:01 -0400132static int tomoyo_path_truncate(const struct path *path)
Kentaro Takedaf7433242009-02-05 17:18:16 +0900133{
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900134 return tomoyo_path_perm(TOMOYO_TYPE_TRUNCATE, path, NULL);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900135}
136
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900137/**
138 * tomoyo_path_unlink - Target for security_path_unlink().
139 *
140 * @parent: Pointer to "struct path".
141 * @dentry: Pointer to "struct dentry".
142 *
143 * Returns 0 on success, negative value otherwise.
144 */
Al Viro989f74e2016-03-25 15:13:39 -0400145static int tomoyo_path_unlink(const struct path *parent, struct dentry *dentry)
Kentaro Takedaf7433242009-02-05 17:18:16 +0900146{
Kees Cook82917982017-03-29 16:52:58 -0700147 struct path path = { .mnt = parent->mnt, .dentry = dentry };
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900148
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900149 return tomoyo_path_perm(TOMOYO_TYPE_UNLINK, &path, NULL);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900150}
151
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900152/**
153 * tomoyo_path_mkdir - Target for security_path_mkdir().
154 *
155 * @parent: Pointer to "struct path".
156 * @dentry: Pointer to "struct dentry".
157 * @mode: DAC permission mode.
158 *
159 * Returns 0 on success, negative value otherwise.
160 */
Al Virod3607752016-03-25 15:21:09 -0400161static int tomoyo_path_mkdir(const struct path *parent, struct dentry *dentry,
Al Viro4572bef2011-11-21 14:56:21 -0500162 umode_t mode)
Kentaro Takedaf7433242009-02-05 17:18:16 +0900163{
Kees Cook82917982017-03-29 16:52:58 -0700164 struct path path = { .mnt = parent->mnt, .dentry = dentry };
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900165
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900166 return tomoyo_path_number_perm(TOMOYO_TYPE_MKDIR, &path,
167 mode & S_IALLUGO);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900168}
169
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900170/**
171 * tomoyo_path_rmdir - Target for security_path_rmdir().
172 *
173 * @parent: Pointer to "struct path".
174 * @dentry: Pointer to "struct dentry".
175 *
176 * Returns 0 on success, negative value otherwise.
177 */
Al Viro989f74e2016-03-25 15:13:39 -0400178static int tomoyo_path_rmdir(const struct path *parent, struct dentry *dentry)
Kentaro Takedaf7433242009-02-05 17:18:16 +0900179{
Kees Cook82917982017-03-29 16:52:58 -0700180 struct path path = { .mnt = parent->mnt, .dentry = dentry };
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900181
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900182 return tomoyo_path_perm(TOMOYO_TYPE_RMDIR, &path, NULL);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900183}
184
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900185/**
186 * tomoyo_path_symlink - Target for security_path_symlink().
187 *
188 * @parent: Pointer to "struct path".
189 * @dentry: Pointer to "struct dentry".
190 * @old_name: Symlink's content.
191 *
192 * Returns 0 on success, negative value otherwise.
193 */
Al Virod3607752016-03-25 15:21:09 -0400194static int tomoyo_path_symlink(const struct path *parent, struct dentry *dentry,
Kentaro Takedaf7433242009-02-05 17:18:16 +0900195 const char *old_name)
196{
Kees Cook82917982017-03-29 16:52:58 -0700197 struct path path = { .mnt = parent->mnt, .dentry = dentry };
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900198
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900199 return tomoyo_path_perm(TOMOYO_TYPE_SYMLINK, &path, old_name);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900200}
201
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900202/**
203 * tomoyo_path_mknod - Target for security_path_mknod().
204 *
205 * @parent: Pointer to "struct path".
206 * @dentry: Pointer to "struct dentry".
207 * @mode: DAC permission mode.
208 * @dev: Device attributes.
209 *
210 * Returns 0 on success, negative value otherwise.
211 */
Al Virod3607752016-03-25 15:21:09 -0400212static int tomoyo_path_mknod(const struct path *parent, struct dentry *dentry,
Al Viro04fc66e2011-11-21 14:58:38 -0500213 umode_t mode, unsigned int dev)
Kentaro Takedaf7433242009-02-05 17:18:16 +0900214{
Kees Cook82917982017-03-29 16:52:58 -0700215 struct path path = { .mnt = parent->mnt, .dentry = dentry };
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900216 int type = TOMOYO_TYPE_CREATE;
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900217 const unsigned int perm = mode & S_IALLUGO;
Kentaro Takedaf7433242009-02-05 17:18:16 +0900218
219 switch (mode & S_IFMT) {
220 case S_IFCHR:
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900221 type = TOMOYO_TYPE_MKCHAR;
Kentaro Takedaf7433242009-02-05 17:18:16 +0900222 break;
223 case S_IFBLK:
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900224 type = TOMOYO_TYPE_MKBLOCK;
Kentaro Takedaf7433242009-02-05 17:18:16 +0900225 break;
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900226 default:
227 goto no_dev;
228 }
Tetsuo Handa75093152010-06-16 16:23:55 +0900229 return tomoyo_mkdev_perm(type, &path, perm, dev);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900230 no_dev:
231 switch (mode & S_IFMT) {
Kentaro Takedaf7433242009-02-05 17:18:16 +0900232 case S_IFIFO:
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900233 type = TOMOYO_TYPE_MKFIFO;
Kentaro Takedaf7433242009-02-05 17:18:16 +0900234 break;
235 case S_IFSOCK:
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900236 type = TOMOYO_TYPE_MKSOCK;
Kentaro Takedaf7433242009-02-05 17:18:16 +0900237 break;
238 }
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900239 return tomoyo_path_number_perm(type, &path, perm);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900240}
241
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900242/**
243 * tomoyo_path_link - Target for security_path_link().
244 *
245 * @old_dentry: Pointer to "struct dentry".
246 * @new_dir: Pointer to "struct path".
247 * @new_dentry: Pointer to "struct dentry".
248 *
249 * Returns 0 on success, negative value otherwise.
250 */
Al Viro3ccee462016-03-25 15:27:45 -0400251static int tomoyo_path_link(struct dentry *old_dentry, const struct path *new_dir,
Kentaro Takedaf7433242009-02-05 17:18:16 +0900252 struct dentry *new_dentry)
253{
Kees Cook82917982017-03-29 16:52:58 -0700254 struct path path1 = { .mnt = new_dir->mnt, .dentry = old_dentry };
255 struct path path2 = { .mnt = new_dir->mnt, .dentry = new_dentry };
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900256
Tetsuo Handa97d69312010-02-16 09:46:15 +0900257 return tomoyo_path2_perm(TOMOYO_TYPE_LINK, &path1, &path2);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900258}
259
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900260/**
261 * tomoyo_path_rename - Target for security_path_rename().
262 *
263 * @old_parent: Pointer to "struct path".
264 * @old_dentry: Pointer to "struct dentry".
265 * @new_parent: Pointer to "struct path".
266 * @new_dentry: Pointer to "struct dentry".
267 *
268 * Returns 0 on success, negative value otherwise.
269 */
Al Viro3ccee462016-03-25 15:27:45 -0400270static int tomoyo_path_rename(const struct path *old_parent,
Kentaro Takedaf7433242009-02-05 17:18:16 +0900271 struct dentry *old_dentry,
Al Viro3ccee462016-03-25 15:27:45 -0400272 const struct path *new_parent,
Kentaro Takedaf7433242009-02-05 17:18:16 +0900273 struct dentry *new_dentry)
274{
Kees Cook82917982017-03-29 16:52:58 -0700275 struct path path1 = { .mnt = old_parent->mnt, .dentry = old_dentry };
276 struct path path2 = { .mnt = new_parent->mnt, .dentry = new_dentry };
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900277
Tetsuo Handa97d69312010-02-16 09:46:15 +0900278 return tomoyo_path2_perm(TOMOYO_TYPE_RENAME, &path1, &path2);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900279}
280
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900281/**
282 * tomoyo_file_fcntl - Target for security_file_fcntl().
283 *
284 * @file: Pointer to "struct file".
285 * @cmd: Command for fcntl().
286 * @arg: Argument for @cmd.
287 *
288 * Returns 0 on success, negative value otherwise.
289 */
Kentaro Takedaf7433242009-02-05 17:18:16 +0900290static int tomoyo_file_fcntl(struct file *file, unsigned int cmd,
291 unsigned long arg)
292{
Tetsuo Handa7c759642011-06-26 23:15:31 +0900293 if (!(cmd == F_SETFL && ((arg ^ file->f_flags) & O_APPEND)))
294 return 0;
295 return tomoyo_check_open_permission(tomoyo_domain(), &file->f_path,
296 O_WRONLY | (arg & O_APPEND));
Kentaro Takedaf7433242009-02-05 17:18:16 +0900297}
298
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900299/**
Eric Paris83d49852012-04-04 13:45:40 -0400300 * tomoyo_file_open - Target for security_file_open().
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900301 *
ChenXiaoSong98eaa632021-06-10 15:49:00 +0800302 * @f: Pointer to "struct file".
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900303 *
304 * Returns 0 on success, negative value otherwise.
305 */
Al Viro94817692018-07-10 14:13:18 -0400306static int tomoyo_file_open(struct file *f)
Kentaro Takedaf7433242009-02-05 17:18:16 +0900307{
Eric W. Biedermanbe619f72020-07-13 12:06:48 -0500308 /* Don't check read permission here if called from execve(). */
Kentaro Takedaf7433242009-02-05 17:18:16 +0900309 if (current->in_execve)
310 return 0;
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900311 return tomoyo_check_open_permission(tomoyo_domain(), &f->f_path,
312 f->f_flags);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900313}
314
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900315/**
316 * tomoyo_file_ioctl - Target for security_file_ioctl().
317 *
318 * @file: Pointer to "struct file".
319 * @cmd: Command for ioctl().
320 * @arg: Argument for @cmd.
321 *
322 * Returns 0 on success, negative value otherwise.
323 */
Tetsuo Handa937bf612009-12-02 21:09:48 +0900324static int tomoyo_file_ioctl(struct file *file, unsigned int cmd,
325 unsigned long arg)
326{
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900327 return tomoyo_path_number_perm(TOMOYO_TYPE_IOCTL, &file->f_path, cmd);
Tetsuo Handa937bf612009-12-02 21:09:48 +0900328}
329
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900330/**
331 * tomoyo_path_chmod - Target for security_path_chmod().
332 *
Al Virocdcf1162011-12-08 10:51:53 -0500333 * @path: Pointer to "struct path".
334 * @mode: DAC permission mode.
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900335 *
336 * Returns 0 on success, negative value otherwise.
337 */
Al Virobe01f9f2016-03-25 14:56:23 -0400338static int tomoyo_path_chmod(const struct path *path, umode_t mode)
Tetsuo Handa937bf612009-12-02 21:09:48 +0900339{
Al Virocdcf1162011-12-08 10:51:53 -0500340 return tomoyo_path_number_perm(TOMOYO_TYPE_CHMOD, path,
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900341 mode & S_IALLUGO);
Tetsuo Handa937bf612009-12-02 21:09:48 +0900342}
343
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900344/**
345 * tomoyo_path_chown - Target for security_path_chown().
346 *
347 * @path: Pointer to "struct path".
348 * @uid: Owner ID.
349 * @gid: Group ID.
350 *
351 * Returns 0 on success, negative value otherwise.
352 */
Al Viro7fd25da2016-03-25 14:44:41 -0400353static int tomoyo_path_chown(const struct path *path, kuid_t uid, kgid_t gid)
Tetsuo Handa937bf612009-12-02 21:09:48 +0900354{
355 int error = 0;
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900356
Eric W. Biedermand2b31ca2012-06-01 16:14:19 -0600357 if (uid_valid(uid))
358 error = tomoyo_path_number_perm(TOMOYO_TYPE_CHOWN, path,
359 from_kuid(&init_user_ns, uid));
360 if (!error && gid_valid(gid))
361 error = tomoyo_path_number_perm(TOMOYO_TYPE_CHGRP, path,
362 from_kgid(&init_user_ns, gid));
Tetsuo Handa937bf612009-12-02 21:09:48 +0900363 return error;
364}
365
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900366/**
367 * tomoyo_path_chroot - Target for security_path_chroot().
368 *
369 * @path: Pointer to "struct path".
370 *
371 * Returns 0 on success, negative value otherwise.
372 */
Al Viro77b286c2016-03-25 15:28:43 -0400373static int tomoyo_path_chroot(const struct path *path)
Tetsuo Handa937bf612009-12-02 21:09:48 +0900374{
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900375 return tomoyo_path_perm(TOMOYO_TYPE_CHROOT, path, NULL);
Tetsuo Handa937bf612009-12-02 21:09:48 +0900376}
377
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900378/**
379 * tomoyo_sb_mount - Target for security_sb_mount().
380 *
381 * @dev_name: Name of device file. Maybe NULL.
382 * @path: Pointer to "struct path".
383 * @type: Name of filesystem type. Maybe NULL.
384 * @flags: Mount options.
385 * @data: Optional data. Maybe NULL.
386 *
387 * Returns 0 on success, negative value otherwise.
388 */
Al Viro8a04c432016-03-25 14:52:53 -0400389static int tomoyo_sb_mount(const char *dev_name, const struct path *path,
Al Viro808d4e32012-10-11 11:42:01 -0400390 const char *type, unsigned long flags, void *data)
Tetsuo Handa937bf612009-12-02 21:09:48 +0900391{
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900392 return tomoyo_mount_permission(dev_name, path, type, flags, data);
Tetsuo Handa937bf612009-12-02 21:09:48 +0900393}
394
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900395/**
396 * tomoyo_sb_umount - Target for security_sb_umount().
397 *
398 * @mnt: Pointer to "struct vfsmount".
399 * @flags: Unmount options.
400 *
401 * Returns 0 on success, negative value otherwise.
402 */
Tetsuo Handa937bf612009-12-02 21:09:48 +0900403static int tomoyo_sb_umount(struct vfsmount *mnt, int flags)
404{
Kees Cook82917982017-03-29 16:52:58 -0700405 struct path path = { .mnt = mnt, .dentry = mnt->mnt_root };
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900406
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900407 return tomoyo_path_perm(TOMOYO_TYPE_UMOUNT, &path, NULL);
Tetsuo Handa937bf612009-12-02 21:09:48 +0900408}
409
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900410/**
411 * tomoyo_sb_pivotroot - Target for security_sb_pivotroot().
412 *
413 * @old_path: Pointer to "struct path".
414 * @new_path: Pointer to "struct path".
415 *
416 * Returns 0 on success, negative value otherwise.
417 */
Al Viro3b73b682016-03-25 15:31:19 -0400418static int tomoyo_sb_pivotroot(const struct path *old_path, const struct path *new_path)
Tetsuo Handa937bf612009-12-02 21:09:48 +0900419{
Tetsuo Handa97d69312010-02-16 09:46:15 +0900420 return tomoyo_path2_perm(TOMOYO_TYPE_PIVOT_ROOT, new_path, old_path);
Tetsuo Handa937bf612009-12-02 21:09:48 +0900421}
422
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900423/**
424 * tomoyo_socket_listen - Check permission for listen().
425 *
426 * @sock: Pointer to "struct socket".
427 * @backlog: Backlog parameter.
428 *
429 * Returns 0 on success, negative value otherwise.
430 */
431static int tomoyo_socket_listen(struct socket *sock, int backlog)
432{
433 return tomoyo_socket_listen_permission(sock);
434}
435
436/**
437 * tomoyo_socket_connect - Check permission for connect().
438 *
439 * @sock: Pointer to "struct socket".
440 * @addr: Pointer to "struct sockaddr".
441 * @addr_len: Size of @addr.
442 *
443 * Returns 0 on success, negative value otherwise.
444 */
445static int tomoyo_socket_connect(struct socket *sock, struct sockaddr *addr,
446 int addr_len)
447{
448 return tomoyo_socket_connect_permission(sock, addr, addr_len);
449}
450
451/**
452 * tomoyo_socket_bind - Check permission for bind().
453 *
454 * @sock: Pointer to "struct socket".
455 * @addr: Pointer to "struct sockaddr".
456 * @addr_len: Size of @addr.
457 *
458 * Returns 0 on success, negative value otherwise.
459 */
460static int tomoyo_socket_bind(struct socket *sock, struct sockaddr *addr,
461 int addr_len)
462{
463 return tomoyo_socket_bind_permission(sock, addr, addr_len);
464}
465
466/**
467 * tomoyo_socket_sendmsg - Check permission for sendmsg().
468 *
469 * @sock: Pointer to "struct socket".
470 * @msg: Pointer to "struct msghdr".
471 * @size: Size of message.
472 *
473 * Returns 0 on success, negative value otherwise.
474 */
475static int tomoyo_socket_sendmsg(struct socket *sock, struct msghdr *msg,
476 int size)
477{
478 return tomoyo_socket_sendmsg_permission(sock, msg, size);
479}
480
Casey Schauflerbbd36622018-11-12 09:30:56 -0800481struct lsm_blob_sizes tomoyo_blob_sizes __lsm_ro_after_init = {
Tetsuo Handa8c6cb982019-01-19 23:11:40 +0900482 .lbs_task = sizeof(struct tomoyo_task),
Casey Schauflerbbd36622018-11-12 09:30:56 -0800483};
484
Tetsuo Handa8c6cb982019-01-19 23:11:40 +0900485/**
486 * tomoyo_task_alloc - Target for security_task_alloc().
487 *
ChenXiaoSong98eaa632021-06-10 15:49:00 +0800488 * @task: Pointer to "struct task_struct".
489 * @clone_flags: clone() flags.
Tetsuo Handa8c6cb982019-01-19 23:11:40 +0900490 *
491 * Returns 0.
492 */
493static int tomoyo_task_alloc(struct task_struct *task,
494 unsigned long clone_flags)
495{
496 struct tomoyo_task *old = tomoyo_task(current);
497 struct tomoyo_task *new = tomoyo_task(task);
498
499 new->domain_info = old->domain_info;
500 atomic_inc(&new->domain_info->users);
501 new->old_domain_info = NULL;
502 return 0;
503}
504
505/**
506 * tomoyo_task_free - Target for security_task_free().
507 *
508 * @task: Pointer to "struct task_struct".
509 */
510static void tomoyo_task_free(struct task_struct *task)
511{
512 struct tomoyo_task *s = tomoyo_task(task);
513
514 if (s->domain_info) {
515 atomic_dec(&s->domain_info->users);
516 s->domain_info = NULL;
517 }
518 if (s->old_domain_info) {
519 atomic_dec(&s->old_domain_info->users);
520 s->old_domain_info = NULL;
521 }
522}
523
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900524/*
525 * tomoyo_security_ops is a "struct security_operations" which is used for
526 * registering TOMOYO.
527 */
James Morrisca97d932017-02-15 00:18:51 +1100528static struct security_hook_list tomoyo_hooks[] __lsm_ro_after_init = {
Casey Schauflere20b0432015-05-02 15:11:36 -0700529 LSM_HOOK_INIT(cred_prepare, tomoyo_cred_prepare),
Tetsuo Handa8c6cb982019-01-19 23:11:40 +0900530 LSM_HOOK_INIT(bprm_committed_creds, tomoyo_bprm_committed_creds),
531 LSM_HOOK_INIT(task_alloc, tomoyo_task_alloc),
532 LSM_HOOK_INIT(task_free, tomoyo_task_free),
533#ifndef CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER
Eric W. Biedermanb8bff592020-03-22 15:46:24 -0500534 LSM_HOOK_INIT(bprm_creds_for_exec, tomoyo_bprm_creds_for_exec),
Tetsuo Handa8c6cb982019-01-19 23:11:40 +0900535#endif
Casey Schauflere20b0432015-05-02 15:11:36 -0700536 LSM_HOOK_INIT(bprm_check_security, tomoyo_bprm_check_security),
537 LSM_HOOK_INIT(file_fcntl, tomoyo_file_fcntl),
538 LSM_HOOK_INIT(file_open, tomoyo_file_open),
539 LSM_HOOK_INIT(path_truncate, tomoyo_path_truncate),
540 LSM_HOOK_INIT(path_unlink, tomoyo_path_unlink),
541 LSM_HOOK_INIT(path_mkdir, tomoyo_path_mkdir),
542 LSM_HOOK_INIT(path_rmdir, tomoyo_path_rmdir),
543 LSM_HOOK_INIT(path_symlink, tomoyo_path_symlink),
544 LSM_HOOK_INIT(path_mknod, tomoyo_path_mknod),
545 LSM_HOOK_INIT(path_link, tomoyo_path_link),
546 LSM_HOOK_INIT(path_rename, tomoyo_path_rename),
547 LSM_HOOK_INIT(inode_getattr, tomoyo_inode_getattr),
548 LSM_HOOK_INIT(file_ioctl, tomoyo_file_ioctl),
549 LSM_HOOK_INIT(path_chmod, tomoyo_path_chmod),
550 LSM_HOOK_INIT(path_chown, tomoyo_path_chown),
551 LSM_HOOK_INIT(path_chroot, tomoyo_path_chroot),
552 LSM_HOOK_INIT(sb_mount, tomoyo_sb_mount),
553 LSM_HOOK_INIT(sb_umount, tomoyo_sb_umount),
554 LSM_HOOK_INIT(sb_pivotroot, tomoyo_sb_pivotroot),
555 LSM_HOOK_INIT(socket_bind, tomoyo_socket_bind),
556 LSM_HOOK_INIT(socket_connect, tomoyo_socket_connect),
557 LSM_HOOK_INIT(socket_listen, tomoyo_socket_listen),
558 LSM_HOOK_INIT(socket_sendmsg, tomoyo_socket_sendmsg),
Kentaro Takedaf7433242009-02-05 17:18:16 +0900559};
560
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900561/* Lock for GC. */
Lai Jiangshan505f14f2013-03-16 00:50:53 +0800562DEFINE_SRCU(tomoyo_ss);
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900563
Casey Schaufler43fc4602018-09-21 17:18:07 -0700564int tomoyo_enabled __lsm_ro_after_init = 1;
565
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900566/**
567 * tomoyo_init - Register TOMOYO Linux as a LSM module.
568 *
569 * Returns 0.
570 */
Kentaro Takedaf7433242009-02-05 17:18:16 +0900571static int __init tomoyo_init(void)
572{
Tetsuo Handa8c6cb982019-01-19 23:11:40 +0900573 struct tomoyo_task *s = tomoyo_task(current);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900574
Kentaro Takedaf7433242009-02-05 17:18:16 +0900575 /* register ourselves with the security framework */
Casey Schauflerd69dece52017-01-18 17:09:05 -0800576 security_add_hooks(tomoyo_hooks, ARRAY_SIZE(tomoyo_hooks), "tomoyo");
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900577 pr_info("TOMOYO Linux initialized\n");
Tetsuo Handa8c6cb982019-01-19 23:11:40 +0900578 s->domain_info = &tomoyo_kernel_domain;
579 atomic_inc(&tomoyo_kernel_domain.users);
580 s->old_domain_info = NULL;
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900581 tomoyo_mm_init();
Casey Schaufler43fc4602018-09-21 17:18:07 -0700582
Kentaro Takedaf7433242009-02-05 17:18:16 +0900583 return 0;
584}
585
Kees Cook3d6e5f62018-10-10 17:18:23 -0700586DEFINE_LSM(tomoyo) = {
Kees Cook07aed2f2018-10-10 17:18:24 -0700587 .name = "tomoyo",
Casey Schaufler43fc4602018-09-21 17:18:07 -0700588 .enabled = &tomoyo_enabled,
Kees Cooka5e2fe72018-10-12 12:07:39 -0700589 .flags = LSM_FLAG_LEGACY_MAJOR,
Casey Schauflerbbd36622018-11-12 09:30:56 -0800590 .blobs = &tomoyo_blob_sizes,
Kees Cook3d6e5f62018-10-10 17:18:23 -0700591 .init = tomoyo_init,
592};