blob: 6ff8c21e4fff5edfcfb3fed3bd511d37271120f4 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Kentaro Takedac73bd6d2009-02-05 17:18:12 +09002/*
3 * security/tomoyo/realpath.c
4 *
Tetsuo Handa0f2a55d2011-07-14 14:46:51 +09005 * Copyright (C) 2005-2011 NTT DATA CORPORATION
Kentaro Takedac73bd6d2009-02-05 17:18:12 +09006 */
7
Kentaro Takedac73bd6d2009-02-05 17:18:12 +09008#include "common.h"
Al Virod10577a2011-12-07 13:06:11 -05009#include <linux/magic.h>
Kentaro Takedac73bd6d2009-02-05 17:18:12 +090010
11/**
Tetsuo Handa059d84d2011-09-10 15:23:54 +090012 * tomoyo_encode2 - Encode binary string to ascii string.
Kentaro Takedac73bd6d2009-02-05 17:18:12 +090013 *
Tetsuo Handa059d84d2011-09-10 15:23:54 +090014 * @str: String in binary format.
15 * @str_len: Size of @str in byte.
Kentaro Takedac73bd6d2009-02-05 17:18:12 +090016 *
Tetsuo Handac8c57e82010-06-03 20:36:43 +090017 * Returns pointer to @str in ascii format on success, NULL otherwise.
18 *
19 * This function uses kzalloc(), so caller must kfree() if this function
20 * didn't return NULL.
Kentaro Takedac73bd6d2009-02-05 17:18:12 +090021 */
Tetsuo Handa059d84d2011-09-10 15:23:54 +090022char *tomoyo_encode2(const char *str, int str_len)
Kentaro Takedac73bd6d2009-02-05 17:18:12 +090023{
Tetsuo Handa059d84d2011-09-10 15:23:54 +090024 int i;
Tetsuo Handac8c57e82010-06-03 20:36:43 +090025 int len = 0;
26 const char *p = str;
27 char *cp;
28 char *cp0;
Kentaro Takedac73bd6d2009-02-05 17:18:12 +090029
Tetsuo Handac8c57e82010-06-03 20:36:43 +090030 if (!p)
31 return NULL;
Tetsuo Handa059d84d2011-09-10 15:23:54 +090032 for (i = 0; i < str_len; i++) {
33 const unsigned char c = p[i];
34
Tetsuo Handac8c57e82010-06-03 20:36:43 +090035 if (c == '\\')
36 len += 2;
37 else if (c > ' ' && c < 127)
38 len++;
39 else
40 len += 4;
Kentaro Takedac73bd6d2009-02-05 17:18:12 +090041 }
Tetsuo Handac8c57e82010-06-03 20:36:43 +090042 len++;
43 /* Reserve space for appending "/". */
44 cp = kzalloc(len + 10, GFP_NOFS);
45 if (!cp)
46 return NULL;
47 cp0 = cp;
48 p = str;
Tetsuo Handa059d84d2011-09-10 15:23:54 +090049 for (i = 0; i < str_len; i++) {
50 const unsigned char c = p[i];
Kentaro Takedac73bd6d2009-02-05 17:18:12 +090051
Tetsuo Handac8c57e82010-06-03 20:36:43 +090052 if (c == '\\') {
53 *cp++ = '\\';
54 *cp++ = '\\';
55 } else if (c > ' ' && c < 127) {
56 *cp++ = c;
57 } else {
58 *cp++ = '\\';
59 *cp++ = (c >> 6) + '0';
60 *cp++ = ((c >> 3) & 7) + '0';
61 *cp++ = (c & 7) + '0';
Eric W. Biedermana4054b62009-11-20 09:12:22 -080062 }
Kentaro Takedac73bd6d2009-02-05 17:18:12 +090063 }
Tetsuo Handac8c57e82010-06-03 20:36:43 +090064 return cp0;
Kentaro Takedac73bd6d2009-02-05 17:18:12 +090065}
66
67/**
Tetsuo Handa059d84d2011-09-10 15:23:54 +090068 * tomoyo_encode - Encode binary string to ascii string.
69 *
70 * @str: String in binary format.
71 *
72 * Returns pointer to @str in ascii format on success, NULL otherwise.
73 *
74 * This function uses kzalloc(), so caller must kfree() if this function
75 * didn't return NULL.
76 */
77char *tomoyo_encode(const char *str)
78{
79 return str ? tomoyo_encode2(str, strlen(str)) : NULL;
80}
81
82/**
Tetsuo Handa5625f2e2011-06-26 23:20:23 +090083 * tomoyo_get_absolute_path - Get the path of a dentry but ignores chroot'ed root.
84 *
85 * @path: Pointer to "struct path".
86 * @buffer: Pointer to buffer to return value in.
87 * @buflen: Sizeof @buffer.
88 *
89 * Returns the buffer on success, an error code otherwise.
90 *
91 * If dentry is a directory, trailing '/' is appended.
92 */
Al Viro22473862015-03-08 19:24:30 -040093static char *tomoyo_get_absolute_path(const struct path *path, char * const buffer,
Tetsuo Handa5625f2e2011-06-26 23:20:23 +090094 const int buflen)
95{
96 char *pos = ERR_PTR(-ENOMEM);
97 if (buflen >= 256) {
Tetsuo Handa5625f2e2011-06-26 23:20:23 +090098 /* go to whatever namespace root we are under */
Al Viro02125a82011-12-05 08:43:34 -050099 pos = d_absolute_path(path, buffer, buflen - 1);
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900100 if (!IS_ERR(pos) && *pos == '/' && pos[1]) {
David Howellsc6f493d2015-03-17 22:26:22 +0000101 struct inode *inode = d_backing_inode(path->dentry);
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900102 if (inode && S_ISDIR(inode->i_mode)) {
103 buffer[buflen - 2] = '/';
104 buffer[buflen - 1] = '\0';
105 }
106 }
107 }
108 return pos;
109}
110
111/**
112 * tomoyo_get_dentry_path - Get the path of a dentry.
113 *
114 * @dentry: Pointer to "struct dentry".
115 * @buffer: Pointer to buffer to return value in.
116 * @buflen: Sizeof @buffer.
117 *
118 * Returns the buffer on success, an error code otherwise.
119 *
120 * If dentry is a directory, trailing '/' is appended.
121 */
122static char *tomoyo_get_dentry_path(struct dentry *dentry, char * const buffer,
123 const int buflen)
124{
125 char *pos = ERR_PTR(-ENOMEM);
126 if (buflen >= 256) {
127 pos = dentry_path_raw(dentry, buffer, buflen - 1);
128 if (!IS_ERR(pos) && *pos == '/' && pos[1]) {
David Howellsc6f493d2015-03-17 22:26:22 +0000129 struct inode *inode = d_backing_inode(dentry);
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900130 if (inode && S_ISDIR(inode->i_mode)) {
131 buffer[buflen - 2] = '/';
132 buffer[buflen - 1] = '\0';
133 }
134 }
135 }
136 return pos;
137}
138
139/**
140 * tomoyo_get_local_path - Get the path of a dentry.
141 *
142 * @dentry: Pointer to "struct dentry".
143 * @buffer: Pointer to buffer to return value in.
144 * @buflen: Sizeof @buffer.
145 *
146 * Returns the buffer on success, an error code otherwise.
147 */
148static char *tomoyo_get_local_path(struct dentry *dentry, char * const buffer,
149 const int buflen)
150{
151 struct super_block *sb = dentry->d_sb;
152 char *pos = tomoyo_get_dentry_path(dentry, buffer, buflen);
153 if (IS_ERR(pos))
154 return pos;
155 /* Convert from $PID to self if $PID is current thread. */
156 if (sb->s_magic == PROC_SUPER_MAGIC && *pos == '/') {
157 char *ep;
158 const pid_t pid = (pid_t) simple_strtoul(pos + 1, &ep, 10);
159 if (*ep == '/' && pid && pid ==
160 task_tgid_nr_ns(current, sb->s_fs_info)) {
161 pos = ep - 5;
162 if (pos < buffer)
163 goto out;
164 memmove(pos, "/self", 5);
165 }
166 goto prepend_filesystem_name;
167 }
168 /* Use filesystem name for unnamed devices. */
169 if (!MAJOR(sb->s_dev))
170 goto prepend_filesystem_name;
171 {
David Howellsc6f493d2015-03-17 22:26:22 +0000172 struct inode *inode = d_backing_inode(sb->s_root);
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900173 /*
174 * Use filesystem name if filesystem does not support rename()
175 * operation.
176 */
Miklos Szeredi2773bf02016-09-27 11:03:58 +0200177 if (!inode->i_op->rename)
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900178 goto prepend_filesystem_name;
179 }
180 /* Prepend device name. */
181 {
182 char name[64];
183 int name_len;
184 const dev_t dev = sb->s_dev;
185 name[sizeof(name) - 1] = '\0';
186 snprintf(name, sizeof(name) - 1, "dev(%u,%u):", MAJOR(dev),
187 MINOR(dev));
188 name_len = strlen(name);
189 pos -= name_len;
190 if (pos < buffer)
191 goto out;
192 memmove(pos, name, name_len);
193 return pos;
194 }
195 /* Prepend filesystem name. */
196prepend_filesystem_name:
197 {
198 const char *name = sb->s_type->name;
199 const int name_len = strlen(name);
200 pos -= name_len + 1;
201 if (pos < buffer)
202 goto out;
203 memmove(pos, name, name_len);
204 pos[name_len] = ':';
205 }
206 return pos;
207out:
208 return ERR_PTR(-ENOMEM);
209}
210
211/**
212 * tomoyo_get_socket_name - Get the name of a socket.
213 *
214 * @path: Pointer to "struct path".
215 * @buffer: Pointer to buffer to return value in.
216 * @buflen: Sizeof @buffer.
217 *
218 * Returns the buffer.
219 */
Al Viro22473862015-03-08 19:24:30 -0400220static char *tomoyo_get_socket_name(const struct path *path, char * const buffer,
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900221 const int buflen)
222{
David Howellsc6f493d2015-03-17 22:26:22 +0000223 struct inode *inode = d_backing_inode(path->dentry);
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900224 struct socket *sock = inode ? SOCKET_I(inode) : NULL;
225 struct sock *sk = sock ? sock->sk : NULL;
226 if (sk) {
227 snprintf(buffer, buflen, "socket:[family=%u:type=%u:"
228 "protocol=%u]", sk->sk_family, sk->sk_type,
229 sk->sk_protocol);
230 } else {
231 snprintf(buffer, buflen, "socket:[unknown]");
232 }
233 return buffer;
234}
235
236/**
Kentaro Takedac73bd6d2009-02-05 17:18:12 +0900237 * tomoyo_realpath_from_path - Returns realpath(3) of the given pathname but ignores chroot'ed root.
238 *
239 * @path: Pointer to "struct path".
240 *
241 * Returns the realpath of the given @path on success, NULL otherwise.
242 *
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900243 * If dentry is a directory, trailing '/' is appended.
244 * Characters out of 0x20 < c < 0x7F range are converted to
245 * \ooo style octal string.
246 * Character \ is converted to \\ string.
247 *
Tetsuo Handa8e2d39a2010-01-26 20:45:27 +0900248 * These functions use kzalloc(), so the caller must call kfree()
Kentaro Takedac73bd6d2009-02-05 17:18:12 +0900249 * if these functions didn't return NULL.
250 */
Al Viro22473862015-03-08 19:24:30 -0400251char *tomoyo_realpath_from_path(const struct path *path)
Kentaro Takedac73bd6d2009-02-05 17:18:12 +0900252{
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900253 char *buf = NULL;
254 char *name = NULL;
255 unsigned int buf_len = PAGE_SIZE / 2;
256 struct dentry *dentry = path->dentry;
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900257 struct super_block *sb;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900258 if (!dentry)
Kentaro Takedac73bd6d2009-02-05 17:18:12 +0900259 return NULL;
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900260 sb = dentry->d_sb;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900261 while (1) {
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900262 char *pos;
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900263 struct inode *inode;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900264 buf_len <<= 1;
265 kfree(buf);
266 buf = kmalloc(buf_len, GFP_NOFS);
267 if (!buf)
268 break;
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900269 /* To make sure that pos is '\0' terminated. */
270 buf[buf_len - 1] = '\0';
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900271 /* Get better name for socket. */
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900272 if (sb->s_magic == SOCKFS_MAGIC) {
273 pos = tomoyo_get_socket_name(path, buf, buf_len - 1);
274 goto encode;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900275 }
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900276 /* For "pipe:[\$]". */
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900277 if (dentry->d_op && dentry->d_op->d_dname) {
278 pos = dentry->d_op->d_dname(dentry, buf, buf_len - 1);
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900279 goto encode;
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900280 }
David Howellsc6f493d2015-03-17 22:26:22 +0000281 inode = d_backing_inode(sb->s_root);
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900282 /*
283 * Get local name for filesystems without rename() operation
284 * or dentry without vfsmount.
285 */
Tetsuo Handa8fe7a262014-08-20 14:14:04 +0900286 if (!path->mnt ||
Miklos Szeredi2773bf02016-09-27 11:03:58 +0200287 (!inode->i_op->rename))
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900288 pos = tomoyo_get_local_path(path->dentry, buf,
289 buf_len - 1);
290 /* Get absolute name for the rest. */
Tetsuo Handa1418a3e2011-12-08 21:24:06 +0900291 else {
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900292 pos = tomoyo_get_absolute_path(path, buf, buf_len - 1);
Tetsuo Handa1418a3e2011-12-08 21:24:06 +0900293 /*
294 * Fall back to local name if absolute name is not
295 * available.
296 */
297 if (pos == ERR_PTR(-EINVAL))
298 pos = tomoyo_get_local_path(path->dentry, buf,
299 buf_len - 1);
300 }
Tetsuo Handa5625f2e2011-06-26 23:20:23 +0900301encode:
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900302 if (IS_ERR(pos))
303 continue;
304 name = tomoyo_encode(pos);
305 break;
306 }
Tetsuo Handa8e2d39a2010-01-26 20:45:27 +0900307 kfree(buf);
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900308 if (!name)
309 tomoyo_warn_oom(__func__);
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900310 return name;
Kentaro Takedac73bd6d2009-02-05 17:18:12 +0900311}
312
313/**
Kentaro Takedac73bd6d2009-02-05 17:18:12 +0900314 * tomoyo_realpath_nofollow - Get realpath of a pathname.
315 *
316 * @pathname: The pathname to solve.
317 *
318 * Returns the realpath of @pathname on success, NULL otherwise.
319 */
320char *tomoyo_realpath_nofollow(const char *pathname)
321{
Al Viroe24977d2009-04-02 21:17:03 -0400322 struct path path;
Kentaro Takedac73bd6d2009-02-05 17:18:12 +0900323
Al Viroe24977d2009-04-02 21:17:03 -0400324 if (pathname && kern_path(pathname, 0, &path) == 0) {
325 char *buf = tomoyo_realpath_from_path(&path);
326 path_put(&path);
Kentaro Takedac73bd6d2009-02-05 17:18:12 +0900327 return buf;
328 }
329 return NULL;
330}