2 * security/tomoyo/mount.c
4 * Copyright (C) 2005-2011 NTT DATA CORPORATION
7 #include <linux/slab.h>
10 /* String table for special mount operations. */
11 static const char * const tomoyo_mounts
[TOMOYO_MAX_SPECIAL_MOUNT
] = {
12 [TOMOYO_MOUNT_BIND
] = "--bind",
13 [TOMOYO_MOUNT_MOVE
] = "--move",
14 [TOMOYO_MOUNT_REMOUNT
] = "--remount",
15 [TOMOYO_MOUNT_MAKE_UNBINDABLE
] = "--make-unbindable",
16 [TOMOYO_MOUNT_MAKE_PRIVATE
] = "--make-private",
17 [TOMOYO_MOUNT_MAKE_SLAVE
] = "--make-slave",
18 [TOMOYO_MOUNT_MAKE_SHARED
] = "--make-shared",
22 * tomoyo_audit_mount_log - Audit mount log.
24 * @r: Pointer to "struct tomoyo_request_info".
26 * Returns 0 on success, negative value otherwise.
28 static int tomoyo_audit_mount_log(struct tomoyo_request_info
*r
)
30 return tomoyo_supervisor(r
, "file mount %s %s %s 0x%lX\n",
31 r
->param
.mount
.dev
->name
,
32 r
->param
.mount
.dir
->name
,
33 r
->param
.mount
.type
->name
,
34 r
->param
.mount
.flags
);
38 * tomoyo_check_mount_acl - Check permission for path path path number operation.
40 * @r: Pointer to "struct tomoyo_request_info".
41 * @ptr: Pointer to "struct tomoyo_acl_info".
43 * Returns true if granted, false otherwise.
45 static bool tomoyo_check_mount_acl(struct tomoyo_request_info
*r
,
46 const struct tomoyo_acl_info
*ptr
)
48 const struct tomoyo_mount_acl
*acl
=
49 container_of(ptr
, typeof(*acl
), head
);
50 return tomoyo_compare_number_union(r
->param
.mount
.flags
,
52 tomoyo_compare_name_union(r
->param
.mount
.type
,
54 tomoyo_compare_name_union(r
->param
.mount
.dir
,
56 (!r
->param
.mount
.need_dev
||
57 tomoyo_compare_name_union(r
->param
.mount
.dev
,
62 * tomoyo_mount_acl - Check permission for mount() operation.
64 * @r: Pointer to "struct tomoyo_request_info".
65 * @dev_name: Name of device file. Maybe NULL.
66 * @dir: Pointer to "struct path".
67 * @type: Name of filesystem type.
68 * @flags: Mount options.
70 * Returns 0 on success, negative value otherwise.
72 * Caller holds tomoyo_read_lock().
74 static int tomoyo_mount_acl(struct tomoyo_request_info
*r
, char *dev_name
,
75 struct path
*dir
, const char *type
,
78 struct tomoyo_obj_info obj
= { };
80 struct file_system_type
*fstype
= NULL
;
81 const char *requested_type
= NULL
;
82 const char *requested_dir_name
= NULL
;
83 const char *requested_dev_name
= NULL
;
84 struct tomoyo_path_info rtype
;
85 struct tomoyo_path_info rdev
;
86 struct tomoyo_path_info rdir
;
92 requested_type
= tomoyo_encode(type
);
95 rtype
.name
= requested_type
;
96 tomoyo_fill_path_info(&rtype
);
98 /* Get mount point. */
100 requested_dir_name
= tomoyo_realpath_from_path(dir
);
101 if (!requested_dir_name
) {
105 rdir
.name
= requested_dir_name
;
106 tomoyo_fill_path_info(&rdir
);
108 /* Compare fs name. */
109 if (type
== tomoyo_mounts
[TOMOYO_MOUNT_REMOUNT
]) {
110 /* dev_name is ignored. */
111 } else if (type
== tomoyo_mounts
[TOMOYO_MOUNT_MAKE_UNBINDABLE
] ||
112 type
== tomoyo_mounts
[TOMOYO_MOUNT_MAKE_PRIVATE
] ||
113 type
== tomoyo_mounts
[TOMOYO_MOUNT_MAKE_SLAVE
] ||
114 type
== tomoyo_mounts
[TOMOYO_MOUNT_MAKE_SHARED
]) {
115 /* dev_name is ignored. */
116 } else if (type
== tomoyo_mounts
[TOMOYO_MOUNT_BIND
] ||
117 type
== tomoyo_mounts
[TOMOYO_MOUNT_MOVE
]) {
118 need_dev
= -1; /* dev_name is a directory */
120 fstype
= get_fs_type(type
);
125 if (fstype
->fs_flags
& FS_REQUIRES_DEV
)
126 /* dev_name is a block device file. */
130 /* Get mount point or device file. */
131 if (!dev_name
|| kern_path(dev_name
, LOOKUP_FOLLOW
, &path
)) {
136 requested_dev_name
= tomoyo_realpath_from_path(&path
);
137 if (!requested_dev_name
) {
142 /* Map dev_name to "<NULL>" if no dev_name given. */
145 requested_dev_name
= tomoyo_encode(dev_name
);
146 if (!requested_dev_name
) {
151 rdev
.name
= requested_dev_name
;
152 tomoyo_fill_path_info(&rdev
);
153 r
->param_type
= TOMOYO_TYPE_MOUNT_ACL
;
154 r
->param
.mount
.need_dev
= need_dev
;
155 r
->param
.mount
.dev
= &rdev
;
156 r
->param
.mount
.dir
= &rdir
;
157 r
->param
.mount
.type
= &rtype
;
158 r
->param
.mount
.flags
= flags
;
160 tomoyo_check_acl(r
, tomoyo_check_mount_acl
);
161 error
= tomoyo_audit_mount_log(r
);
162 } while (error
== TOMOYO_RETRY_REQUEST
);
164 kfree(requested_dev_name
);
165 kfree(requested_dir_name
);
167 put_filesystem(fstype
);
168 kfree(requested_type
);
169 /* Drop refcount obtained by kern_path(). */
170 if (obj
.path1
.dentry
)
171 path_put(&obj
.path1
);
176 * tomoyo_mount_permission - Check permission for mount() operation.
178 * @dev_name: Name of device file. Maybe NULL.
179 * @path: Pointer to "struct path".
180 * @type: Name of filesystem type. Maybe NULL.
181 * @flags: Mount options.
182 * @data_page: Optional data. Maybe NULL.
184 * Returns 0 on success, negative value otherwise.
186 int tomoyo_mount_permission(char *dev_name
, struct path
*path
,
187 const char *type
, unsigned long flags
,
190 struct tomoyo_request_info r
;
194 if (tomoyo_init_request_info(&r
, NULL
, TOMOYO_MAC_FILE_MOUNT
)
195 == TOMOYO_CONFIG_DISABLED
)
197 if ((flags
& MS_MGC_MSK
) == MS_MGC_VAL
)
198 flags
&= ~MS_MGC_MSK
;
199 if (flags
& MS_REMOUNT
) {
200 type
= tomoyo_mounts
[TOMOYO_MOUNT_REMOUNT
];
201 flags
&= ~MS_REMOUNT
;
203 if (flags
& MS_MOVE
) {
204 type
= tomoyo_mounts
[TOMOYO_MOUNT_MOVE
];
207 if (flags
& MS_BIND
) {
208 type
= tomoyo_mounts
[TOMOYO_MOUNT_BIND
];
211 if (flags
& MS_UNBINDABLE
) {
212 type
= tomoyo_mounts
[TOMOYO_MOUNT_MAKE_UNBINDABLE
];
213 flags
&= ~MS_UNBINDABLE
;
215 if (flags
& MS_PRIVATE
) {
216 type
= tomoyo_mounts
[TOMOYO_MOUNT_MAKE_PRIVATE
];
217 flags
&= ~MS_PRIVATE
;
219 if (flags
& MS_SLAVE
) {
220 type
= tomoyo_mounts
[TOMOYO_MOUNT_MAKE_SLAVE
];
223 if (flags
& MS_SHARED
) {
224 type
= tomoyo_mounts
[TOMOYO_MOUNT_MAKE_SHARED
];
229 idx
= tomoyo_read_lock();
230 error
= tomoyo_mount_acl(&r
, dev_name
, path
, type
, flags
);
231 tomoyo_read_unlock(idx
);