blob: 716c92ec941adc595c1887995afd897a77d8ab26 [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/**
66 * tomoyo_bprm_set_creds - Target for security_bprm_set_creds().
67 *
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 */
Kentaro Takedaf7433242009-02-05 17:18:16 +090072static int tomoyo_bprm_set_creds(struct linux_binprm *bprm)
73{
74 /*
75 * Do only if this function is called for the first time of an execve
76 * operation.
77 */
Kees Cookddb4a142017-07-18 15:25:23 -070078 if (bprm->called_set_creds)
Kentaro Takedaf7433242009-02-05 17:18:16 +090079 return 0;
80 /*
81 * Load policy if /sbin/tomoyo-init exists and /sbin/init is requested
82 * for the first time.
83 */
84 if (!tomoyo_policy_loaded)
85 tomoyo_load_policy(bprm->filename);
Kentaro Takedaf7433242009-02-05 17:18:16 +090086 return 0;
87}
Tetsuo Handa8c6cb982019-01-19 23:11:40 +090088#endif
Kentaro Takedaf7433242009-02-05 17:18:16 +090089
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +090090/**
91 * tomoyo_bprm_check_security - Target for security_bprm_check().
92 *
93 * @bprm: Pointer to "struct linux_binprm".
94 *
95 * Returns 0 on success, negative value otherwise.
96 */
Kentaro Takedaf7433242009-02-05 17:18:16 +090097static int tomoyo_bprm_check_security(struct linux_binprm *bprm)
98{
Tetsuo Handa8c6cb982019-01-19 23:11:40 +090099 struct tomoyo_task *s = tomoyo_task(current);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900100
101 /*
102 * Execute permission is checked against pathname passed to do_execve()
103 * using current domain.
104 */
Tetsuo Handa8c6cb982019-01-19 23:11:40 +0900105 if (!s->old_domain_info) {
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900106 const int idx = tomoyo_read_lock();
107 const int err = tomoyo_find_next_domain(bprm);
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900108
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900109 tomoyo_read_unlock(idx);
110 return err;
111 }
Kentaro Takedaf7433242009-02-05 17:18:16 +0900112 /*
113 * Read permission is checked against interpreters using next domain.
Kentaro Takedaf7433242009-02-05 17:18:16 +0900114 */
Tetsuo Handa8c6cb982019-01-19 23:11:40 +0900115 return tomoyo_check_open_permission(s->domain_info,
116 &bprm->file->f_path, O_RDONLY);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900117}
118
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900119/**
120 * tomoyo_inode_getattr - Target for security_inode_getattr().
121 *
122 * @mnt: Pointer to "struct vfsmount".
123 * @dentry: Pointer to "struct dentry".
124 *
125 * Returns 0 on success, negative value otherwise.
126 */
Al Viro3f7036a2015-03-08 19:28:30 -0400127static int tomoyo_inode_getattr(const struct path *path)
Tetsuo Handa7c759642011-06-26 23:15:31 +0900128{
Al Viro3f7036a2015-03-08 19:28:30 -0400129 return tomoyo_path_perm(TOMOYO_TYPE_GETATTR, path, NULL);
Tetsuo Handa7c759642011-06-26 23:15:31 +0900130}
131
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900132/**
133 * tomoyo_path_truncate - Target for security_path_truncate().
134 *
135 * @path: Pointer to "struct path".
136 *
137 * Returns 0 on success, negative value otherwise.
138 */
Al Viro81f4c502016-03-25 14:22:01 -0400139static int tomoyo_path_truncate(const struct path *path)
Kentaro Takedaf7433242009-02-05 17:18:16 +0900140{
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900141 return tomoyo_path_perm(TOMOYO_TYPE_TRUNCATE, path, NULL);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900142}
143
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900144/**
145 * tomoyo_path_unlink - Target for security_path_unlink().
146 *
147 * @parent: Pointer to "struct path".
148 * @dentry: Pointer to "struct dentry".
149 *
150 * Returns 0 on success, negative value otherwise.
151 */
Al Viro989f74e2016-03-25 15:13:39 -0400152static int tomoyo_path_unlink(const struct path *parent, struct dentry *dentry)
Kentaro Takedaf7433242009-02-05 17:18:16 +0900153{
Kees Cook82917982017-03-29 16:52:58 -0700154 struct path path = { .mnt = parent->mnt, .dentry = dentry };
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900155
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900156 return tomoyo_path_perm(TOMOYO_TYPE_UNLINK, &path, NULL);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900157}
158
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900159/**
160 * tomoyo_path_mkdir - Target for security_path_mkdir().
161 *
162 * @parent: Pointer to "struct path".
163 * @dentry: Pointer to "struct dentry".
164 * @mode: DAC permission mode.
165 *
166 * Returns 0 on success, negative value otherwise.
167 */
Al Virod3607752016-03-25 15:21:09 -0400168static int tomoyo_path_mkdir(const struct path *parent, struct dentry *dentry,
Al Viro4572bef2011-11-21 14:56:21 -0500169 umode_t mode)
Kentaro Takedaf7433242009-02-05 17:18:16 +0900170{
Kees Cook82917982017-03-29 16:52:58 -0700171 struct path path = { .mnt = parent->mnt, .dentry = dentry };
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900172
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900173 return tomoyo_path_number_perm(TOMOYO_TYPE_MKDIR, &path,
174 mode & S_IALLUGO);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900175}
176
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900177/**
178 * tomoyo_path_rmdir - Target for security_path_rmdir().
179 *
180 * @parent: Pointer to "struct path".
181 * @dentry: Pointer to "struct dentry".
182 *
183 * Returns 0 on success, negative value otherwise.
184 */
Al Viro989f74e2016-03-25 15:13:39 -0400185static int tomoyo_path_rmdir(const struct path *parent, struct dentry *dentry)
Kentaro Takedaf7433242009-02-05 17:18:16 +0900186{
Kees Cook82917982017-03-29 16:52:58 -0700187 struct path path = { .mnt = parent->mnt, .dentry = dentry };
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900188
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900189 return tomoyo_path_perm(TOMOYO_TYPE_RMDIR, &path, NULL);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900190}
191
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900192/**
193 * tomoyo_path_symlink - Target for security_path_symlink().
194 *
195 * @parent: Pointer to "struct path".
196 * @dentry: Pointer to "struct dentry".
197 * @old_name: Symlink's content.
198 *
199 * Returns 0 on success, negative value otherwise.
200 */
Al Virod3607752016-03-25 15:21:09 -0400201static int tomoyo_path_symlink(const struct path *parent, struct dentry *dentry,
Kentaro Takedaf7433242009-02-05 17:18:16 +0900202 const char *old_name)
203{
Kees Cook82917982017-03-29 16:52:58 -0700204 struct path path = { .mnt = parent->mnt, .dentry = dentry };
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900205
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900206 return tomoyo_path_perm(TOMOYO_TYPE_SYMLINK, &path, old_name);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900207}
208
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900209/**
210 * tomoyo_path_mknod - Target for security_path_mknod().
211 *
212 * @parent: Pointer to "struct path".
213 * @dentry: Pointer to "struct dentry".
214 * @mode: DAC permission mode.
215 * @dev: Device attributes.
216 *
217 * Returns 0 on success, negative value otherwise.
218 */
Al Virod3607752016-03-25 15:21:09 -0400219static int tomoyo_path_mknod(const struct path *parent, struct dentry *dentry,
Al Viro04fc66e2011-11-21 14:58:38 -0500220 umode_t mode, unsigned int dev)
Kentaro Takedaf7433242009-02-05 17:18:16 +0900221{
Kees Cook82917982017-03-29 16:52:58 -0700222 struct path path = { .mnt = parent->mnt, .dentry = dentry };
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900223 int type = TOMOYO_TYPE_CREATE;
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900224 const unsigned int perm = mode & S_IALLUGO;
Kentaro Takedaf7433242009-02-05 17:18:16 +0900225
226 switch (mode & S_IFMT) {
227 case S_IFCHR:
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900228 type = TOMOYO_TYPE_MKCHAR;
Kentaro Takedaf7433242009-02-05 17:18:16 +0900229 break;
230 case S_IFBLK:
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900231 type = TOMOYO_TYPE_MKBLOCK;
Kentaro Takedaf7433242009-02-05 17:18:16 +0900232 break;
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900233 default:
234 goto no_dev;
235 }
Tetsuo Handa75093152010-06-16 16:23:55 +0900236 return tomoyo_mkdev_perm(type, &path, perm, dev);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900237 no_dev:
238 switch (mode & S_IFMT) {
Kentaro Takedaf7433242009-02-05 17:18:16 +0900239 case S_IFIFO:
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900240 type = TOMOYO_TYPE_MKFIFO;
Kentaro Takedaf7433242009-02-05 17:18:16 +0900241 break;
242 case S_IFSOCK:
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900243 type = TOMOYO_TYPE_MKSOCK;
Kentaro Takedaf7433242009-02-05 17:18:16 +0900244 break;
245 }
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900246 return tomoyo_path_number_perm(type, &path, perm);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900247}
248
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900249/**
250 * tomoyo_path_link - Target for security_path_link().
251 *
252 * @old_dentry: Pointer to "struct dentry".
253 * @new_dir: Pointer to "struct path".
254 * @new_dentry: Pointer to "struct dentry".
255 *
256 * Returns 0 on success, negative value otherwise.
257 */
Al Viro3ccee462016-03-25 15:27:45 -0400258static int tomoyo_path_link(struct dentry *old_dentry, const struct path *new_dir,
Kentaro Takedaf7433242009-02-05 17:18:16 +0900259 struct dentry *new_dentry)
260{
Kees Cook82917982017-03-29 16:52:58 -0700261 struct path path1 = { .mnt = new_dir->mnt, .dentry = old_dentry };
262 struct path path2 = { .mnt = new_dir->mnt, .dentry = new_dentry };
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900263
Tetsuo Handa97d69312010-02-16 09:46:15 +0900264 return tomoyo_path2_perm(TOMOYO_TYPE_LINK, &path1, &path2);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900265}
266
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900267/**
268 * tomoyo_path_rename - Target for security_path_rename().
269 *
270 * @old_parent: Pointer to "struct path".
271 * @old_dentry: Pointer to "struct dentry".
272 * @new_parent: Pointer to "struct path".
273 * @new_dentry: Pointer to "struct dentry".
274 *
275 * Returns 0 on success, negative value otherwise.
276 */
Al Viro3ccee462016-03-25 15:27:45 -0400277static int tomoyo_path_rename(const struct path *old_parent,
Kentaro Takedaf7433242009-02-05 17:18:16 +0900278 struct dentry *old_dentry,
Al Viro3ccee462016-03-25 15:27:45 -0400279 const struct path *new_parent,
Kentaro Takedaf7433242009-02-05 17:18:16 +0900280 struct dentry *new_dentry)
281{
Kees Cook82917982017-03-29 16:52:58 -0700282 struct path path1 = { .mnt = old_parent->mnt, .dentry = old_dentry };
283 struct path path2 = { .mnt = new_parent->mnt, .dentry = new_dentry };
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900284
Tetsuo Handa97d69312010-02-16 09:46:15 +0900285 return tomoyo_path2_perm(TOMOYO_TYPE_RENAME, &path1, &path2);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900286}
287
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900288/**
289 * tomoyo_file_fcntl - Target for security_file_fcntl().
290 *
291 * @file: Pointer to "struct file".
292 * @cmd: Command for fcntl().
293 * @arg: Argument for @cmd.
294 *
295 * Returns 0 on success, negative value otherwise.
296 */
Kentaro Takedaf7433242009-02-05 17:18:16 +0900297static int tomoyo_file_fcntl(struct file *file, unsigned int cmd,
298 unsigned long arg)
299{
Tetsuo Handa7c759642011-06-26 23:15:31 +0900300 if (!(cmd == F_SETFL && ((arg ^ file->f_flags) & O_APPEND)))
301 return 0;
302 return tomoyo_check_open_permission(tomoyo_domain(), &file->f_path,
303 O_WRONLY | (arg & O_APPEND));
Kentaro Takedaf7433242009-02-05 17:18:16 +0900304}
305
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900306/**
Eric Paris83d49852012-04-04 13:45:40 -0400307 * tomoyo_file_open - Target for security_file_open().
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900308 *
309 * @f: Pointer to "struct file".
310 * @cred: Pointer to "struct cred".
311 *
312 * Returns 0 on success, negative value otherwise.
313 */
Al Viro94817692018-07-10 14:13:18 -0400314static int tomoyo_file_open(struct file *f)
Kentaro Takedaf7433242009-02-05 17:18:16 +0900315{
Kentaro Takedaf7433242009-02-05 17:18:16 +0900316 /* Don't check read permission here if called from do_execve(). */
317 if (current->in_execve)
318 return 0;
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900319 return tomoyo_check_open_permission(tomoyo_domain(), &f->f_path,
320 f->f_flags);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900321}
322
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900323/**
324 * tomoyo_file_ioctl - Target for security_file_ioctl().
325 *
326 * @file: Pointer to "struct file".
327 * @cmd: Command for ioctl().
328 * @arg: Argument for @cmd.
329 *
330 * Returns 0 on success, negative value otherwise.
331 */
Tetsuo Handa937bf612009-12-02 21:09:48 +0900332static int tomoyo_file_ioctl(struct file *file, unsigned int cmd,
333 unsigned long arg)
334{
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900335 return tomoyo_path_number_perm(TOMOYO_TYPE_IOCTL, &file->f_path, cmd);
Tetsuo Handa937bf612009-12-02 21:09:48 +0900336}
337
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900338/**
339 * tomoyo_path_chmod - Target for security_path_chmod().
340 *
Al Virocdcf1162011-12-08 10:51:53 -0500341 * @path: Pointer to "struct path".
342 * @mode: DAC permission mode.
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900343 *
344 * Returns 0 on success, negative value otherwise.
345 */
Al Virobe01f9f2016-03-25 14:56:23 -0400346static int tomoyo_path_chmod(const struct path *path, umode_t mode)
Tetsuo Handa937bf612009-12-02 21:09:48 +0900347{
Al Virocdcf1162011-12-08 10:51:53 -0500348 return tomoyo_path_number_perm(TOMOYO_TYPE_CHMOD, path,
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900349 mode & S_IALLUGO);
Tetsuo Handa937bf612009-12-02 21:09:48 +0900350}
351
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900352/**
353 * tomoyo_path_chown - Target for security_path_chown().
354 *
355 * @path: Pointer to "struct path".
356 * @uid: Owner ID.
357 * @gid: Group ID.
358 *
359 * Returns 0 on success, negative value otherwise.
360 */
Al Viro7fd25da2016-03-25 14:44:41 -0400361static int tomoyo_path_chown(const struct path *path, kuid_t uid, kgid_t gid)
Tetsuo Handa937bf612009-12-02 21:09:48 +0900362{
363 int error = 0;
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900364
Eric W. Biedermand2b31ca2012-06-01 16:14:19 -0600365 if (uid_valid(uid))
366 error = tomoyo_path_number_perm(TOMOYO_TYPE_CHOWN, path,
367 from_kuid(&init_user_ns, uid));
368 if (!error && gid_valid(gid))
369 error = tomoyo_path_number_perm(TOMOYO_TYPE_CHGRP, path,
370 from_kgid(&init_user_ns, gid));
Tetsuo Handa937bf612009-12-02 21:09:48 +0900371 return error;
372}
373
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900374/**
375 * tomoyo_path_chroot - Target for security_path_chroot().
376 *
377 * @path: Pointer to "struct path".
378 *
379 * Returns 0 on success, negative value otherwise.
380 */
Al Viro77b286c2016-03-25 15:28:43 -0400381static int tomoyo_path_chroot(const struct path *path)
Tetsuo Handa937bf612009-12-02 21:09:48 +0900382{
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900383 return tomoyo_path_perm(TOMOYO_TYPE_CHROOT, path, NULL);
Tetsuo Handa937bf612009-12-02 21:09:48 +0900384}
385
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900386/**
387 * tomoyo_sb_mount - Target for security_sb_mount().
388 *
389 * @dev_name: Name of device file. Maybe NULL.
390 * @path: Pointer to "struct path".
391 * @type: Name of filesystem type. Maybe NULL.
392 * @flags: Mount options.
393 * @data: Optional data. Maybe NULL.
394 *
395 * Returns 0 on success, negative value otherwise.
396 */
Al Viro8a04c432016-03-25 14:52:53 -0400397static int tomoyo_sb_mount(const char *dev_name, const struct path *path,
Al Viro808d4e32012-10-11 11:42:01 -0400398 const char *type, unsigned long flags, void *data)
Tetsuo Handa937bf612009-12-02 21:09:48 +0900399{
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900400 return tomoyo_mount_permission(dev_name, path, type, flags, data);
Tetsuo Handa937bf612009-12-02 21:09:48 +0900401}
402
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900403/**
404 * tomoyo_sb_umount - Target for security_sb_umount().
405 *
406 * @mnt: Pointer to "struct vfsmount".
407 * @flags: Unmount options.
408 *
409 * Returns 0 on success, negative value otherwise.
410 */
Tetsuo Handa937bf612009-12-02 21:09:48 +0900411static int tomoyo_sb_umount(struct vfsmount *mnt, int flags)
412{
Kees Cook82917982017-03-29 16:52:58 -0700413 struct path path = { .mnt = mnt, .dentry = mnt->mnt_root };
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900414
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900415 return tomoyo_path_perm(TOMOYO_TYPE_UMOUNT, &path, NULL);
Tetsuo Handa937bf612009-12-02 21:09:48 +0900416}
417
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900418/**
419 * tomoyo_sb_pivotroot - Target for security_sb_pivotroot().
420 *
421 * @old_path: Pointer to "struct path".
422 * @new_path: Pointer to "struct path".
423 *
424 * Returns 0 on success, negative value otherwise.
425 */
Al Viro3b73b682016-03-25 15:31:19 -0400426static int tomoyo_sb_pivotroot(const struct path *old_path, const struct path *new_path)
Tetsuo Handa937bf612009-12-02 21:09:48 +0900427{
Tetsuo Handa97d69312010-02-16 09:46:15 +0900428 return tomoyo_path2_perm(TOMOYO_TYPE_PIVOT_ROOT, new_path, old_path);
Tetsuo Handa937bf612009-12-02 21:09:48 +0900429}
430
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900431/**
432 * tomoyo_socket_listen - Check permission for listen().
433 *
434 * @sock: Pointer to "struct socket".
435 * @backlog: Backlog parameter.
436 *
437 * Returns 0 on success, negative value otherwise.
438 */
439static int tomoyo_socket_listen(struct socket *sock, int backlog)
440{
441 return tomoyo_socket_listen_permission(sock);
442}
443
444/**
445 * tomoyo_socket_connect - Check permission for connect().
446 *
447 * @sock: Pointer to "struct socket".
448 * @addr: Pointer to "struct sockaddr".
449 * @addr_len: Size of @addr.
450 *
451 * Returns 0 on success, negative value otherwise.
452 */
453static int tomoyo_socket_connect(struct socket *sock, struct sockaddr *addr,
454 int addr_len)
455{
456 return tomoyo_socket_connect_permission(sock, addr, addr_len);
457}
458
459/**
460 * tomoyo_socket_bind - Check permission for bind().
461 *
462 * @sock: Pointer to "struct socket".
463 * @addr: Pointer to "struct sockaddr".
464 * @addr_len: Size of @addr.
465 *
466 * Returns 0 on success, negative value otherwise.
467 */
468static int tomoyo_socket_bind(struct socket *sock, struct sockaddr *addr,
469 int addr_len)
470{
471 return tomoyo_socket_bind_permission(sock, addr, addr_len);
472}
473
474/**
475 * tomoyo_socket_sendmsg - Check permission for sendmsg().
476 *
477 * @sock: Pointer to "struct socket".
478 * @msg: Pointer to "struct msghdr".
479 * @size: Size of message.
480 *
481 * Returns 0 on success, negative value otherwise.
482 */
483static int tomoyo_socket_sendmsg(struct socket *sock, struct msghdr *msg,
484 int size)
485{
486 return tomoyo_socket_sendmsg_permission(sock, msg, size);
487}
488
Casey Schauflerbbd36622018-11-12 09:30:56 -0800489struct lsm_blob_sizes tomoyo_blob_sizes __lsm_ro_after_init = {
Tetsuo Handa8c6cb982019-01-19 23:11:40 +0900490 .lbs_task = sizeof(struct tomoyo_task),
Casey Schauflerbbd36622018-11-12 09:30:56 -0800491};
492
Tetsuo Handa8c6cb982019-01-19 23:11:40 +0900493/**
494 * tomoyo_task_alloc - Target for security_task_alloc().
495 *
496 * @task: Pointer to "struct task_struct".
497 * @flags: clone() flags.
498 *
499 * Returns 0.
500 */
501static int tomoyo_task_alloc(struct task_struct *task,
502 unsigned long clone_flags)
503{
504 struct tomoyo_task *old = tomoyo_task(current);
505 struct tomoyo_task *new = tomoyo_task(task);
506
507 new->domain_info = old->domain_info;
508 atomic_inc(&new->domain_info->users);
509 new->old_domain_info = NULL;
510 return 0;
511}
512
513/**
514 * tomoyo_task_free - Target for security_task_free().
515 *
516 * @task: Pointer to "struct task_struct".
517 */
518static void tomoyo_task_free(struct task_struct *task)
519{
520 struct tomoyo_task *s = tomoyo_task(task);
521
522 if (s->domain_info) {
523 atomic_dec(&s->domain_info->users);
524 s->domain_info = NULL;
525 }
526 if (s->old_domain_info) {
527 atomic_dec(&s->old_domain_info->users);
528 s->old_domain_info = NULL;
529 }
530}
531
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900532/*
533 * tomoyo_security_ops is a "struct security_operations" which is used for
534 * registering TOMOYO.
535 */
James Morrisca97d932017-02-15 00:18:51 +1100536static struct security_hook_list tomoyo_hooks[] __lsm_ro_after_init = {
Casey Schauflere20b0432015-05-02 15:11:36 -0700537 LSM_HOOK_INIT(cred_prepare, tomoyo_cred_prepare),
Tetsuo Handa8c6cb982019-01-19 23:11:40 +0900538 LSM_HOOK_INIT(bprm_committed_creds, tomoyo_bprm_committed_creds),
539 LSM_HOOK_INIT(task_alloc, tomoyo_task_alloc),
540 LSM_HOOK_INIT(task_free, tomoyo_task_free),
541#ifndef CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER
Casey Schauflere20b0432015-05-02 15:11:36 -0700542 LSM_HOOK_INIT(bprm_set_creds, tomoyo_bprm_set_creds),
Tetsuo Handa8c6cb982019-01-19 23:11:40 +0900543#endif
Casey Schauflere20b0432015-05-02 15:11:36 -0700544 LSM_HOOK_INIT(bprm_check_security, tomoyo_bprm_check_security),
545 LSM_HOOK_INIT(file_fcntl, tomoyo_file_fcntl),
546 LSM_HOOK_INIT(file_open, tomoyo_file_open),
547 LSM_HOOK_INIT(path_truncate, tomoyo_path_truncate),
548 LSM_HOOK_INIT(path_unlink, tomoyo_path_unlink),
549 LSM_HOOK_INIT(path_mkdir, tomoyo_path_mkdir),
550 LSM_HOOK_INIT(path_rmdir, tomoyo_path_rmdir),
551 LSM_HOOK_INIT(path_symlink, tomoyo_path_symlink),
552 LSM_HOOK_INIT(path_mknod, tomoyo_path_mknod),
553 LSM_HOOK_INIT(path_link, tomoyo_path_link),
554 LSM_HOOK_INIT(path_rename, tomoyo_path_rename),
555 LSM_HOOK_INIT(inode_getattr, tomoyo_inode_getattr),
556 LSM_HOOK_INIT(file_ioctl, tomoyo_file_ioctl),
557 LSM_HOOK_INIT(path_chmod, tomoyo_path_chmod),
558 LSM_HOOK_INIT(path_chown, tomoyo_path_chown),
559 LSM_HOOK_INIT(path_chroot, tomoyo_path_chroot),
560 LSM_HOOK_INIT(sb_mount, tomoyo_sb_mount),
561 LSM_HOOK_INIT(sb_umount, tomoyo_sb_umount),
562 LSM_HOOK_INIT(sb_pivotroot, tomoyo_sb_pivotroot),
563 LSM_HOOK_INIT(socket_bind, tomoyo_socket_bind),
564 LSM_HOOK_INIT(socket_connect, tomoyo_socket_connect),
565 LSM_HOOK_INIT(socket_listen, tomoyo_socket_listen),
566 LSM_HOOK_INIT(socket_sendmsg, tomoyo_socket_sendmsg),
Kentaro Takedaf7433242009-02-05 17:18:16 +0900567};
568
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900569/* Lock for GC. */
Lai Jiangshan505f14f2013-03-16 00:50:53 +0800570DEFINE_SRCU(tomoyo_ss);
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900571
Casey Schaufler43fc4602018-09-21 17:18:07 -0700572int tomoyo_enabled __lsm_ro_after_init = 1;
573
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +0900574/**
575 * tomoyo_init - Register TOMOYO Linux as a LSM module.
576 *
577 * Returns 0.
578 */
Kentaro Takedaf7433242009-02-05 17:18:16 +0900579static int __init tomoyo_init(void)
580{
Tetsuo Handa8c6cb982019-01-19 23:11:40 +0900581 struct tomoyo_task *s = tomoyo_task(current);
Kentaro Takedaf7433242009-02-05 17:18:16 +0900582
Kentaro Takedaf7433242009-02-05 17:18:16 +0900583 /* register ourselves with the security framework */
Casey Schauflerd69dece52017-01-18 17:09:05 -0800584 security_add_hooks(tomoyo_hooks, ARRAY_SIZE(tomoyo_hooks), "tomoyo");
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900585 pr_info("TOMOYO Linux initialized\n");
Tetsuo Handa8c6cb982019-01-19 23:11:40 +0900586 s->domain_info = &tomoyo_kernel_domain;
587 atomic_inc(&tomoyo_kernel_domain.users);
588 s->old_domain_info = NULL;
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900589 tomoyo_mm_init();
Casey Schaufler43fc4602018-09-21 17:18:07 -0700590
Kentaro Takedaf7433242009-02-05 17:18:16 +0900591 return 0;
592}
593
Kees Cook3d6e5f62018-10-10 17:18:23 -0700594DEFINE_LSM(tomoyo) = {
Kees Cook07aed2f2018-10-10 17:18:24 -0700595 .name = "tomoyo",
Casey Schaufler43fc4602018-09-21 17:18:07 -0700596 .enabled = &tomoyo_enabled,
Kees Cooka5e2fe72018-10-12 12:07:39 -0700597 .flags = LSM_FLAG_LEGACY_MAJOR,
Casey Schauflerbbd36622018-11-12 09:30:56 -0800598 .blobs = &tomoyo_blob_sizes,
Kees Cook3d6e5f62018-10-10 17:18:23 -0700599 .init = tomoyo_init,
600};