rt2800usb: Move ID out of unknown
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / security / tomoyo / realpath.c
blobd9f3ced8756ec4dc87492b8edecf172375843f5d
1 /*
2 * security/tomoyo/realpath.c
4 * Copyright (C) 2005-2011 NTT DATA CORPORATION
5 */
7 #include <linux/types.h>
8 #include <linux/mount.h>
9 #include <linux/mnt_namespace.h>
10 #include <linux/fs_struct.h>
11 #include <linux/magic.h>
12 #include <linux/slab.h>
13 #include <net/sock.h>
14 #include "common.h"
15 #include "../../fs/internal.h"
17 /**
18 * tomoyo_encode2 - Encode binary string to ascii string.
20 * @str: String in binary format.
21 * @str_len: Size of @str in byte.
23 * Returns pointer to @str in ascii format on success, NULL otherwise.
25 * This function uses kzalloc(), so caller must kfree() if this function
26 * didn't return NULL.
28 char *tomoyo_encode2(const char *str, int str_len)
30 int i;
31 int len = 0;
32 const char *p = str;
33 char *cp;
34 char *cp0;
36 if (!p)
37 return NULL;
38 for (i = 0; i < str_len; i++) {
39 const unsigned char c = p[i];
41 if (c == '\\')
42 len += 2;
43 else if (c > ' ' && c < 127)
44 len++;
45 else
46 len += 4;
48 len++;
49 /* Reserve space for appending "/". */
50 cp = kzalloc(len + 10, GFP_NOFS);
51 if (!cp)
52 return NULL;
53 cp0 = cp;
54 p = str;
55 for (i = 0; i < str_len; i++) {
56 const unsigned char c = p[i];
58 if (c == '\\') {
59 *cp++ = '\\';
60 *cp++ = '\\';
61 } else if (c > ' ' && c < 127) {
62 *cp++ = c;
63 } else {
64 *cp++ = '\\';
65 *cp++ = (c >> 6) + '0';
66 *cp++ = ((c >> 3) & 7) + '0';
67 *cp++ = (c & 7) + '0';
70 return cp0;
73 /**
74 * tomoyo_encode - Encode binary string to ascii string.
76 * @str: String in binary format.
78 * Returns pointer to @str in ascii format on success, NULL otherwise.
80 * This function uses kzalloc(), so caller must kfree() if this function
81 * didn't return NULL.
83 char *tomoyo_encode(const char *str)
85 return str ? tomoyo_encode2(str, strlen(str)) : NULL;
88 /**
89 * tomoyo_get_absolute_path - Get the path of a dentry but ignores chroot'ed root.
91 * @path: Pointer to "struct path".
92 * @buffer: Pointer to buffer to return value in.
93 * @buflen: Sizeof @buffer.
95 * Returns the buffer on success, an error code otherwise.
97 * If dentry is a directory, trailing '/' is appended.
99 static char *tomoyo_get_absolute_path(struct path *path, char * const buffer,
100 const int buflen)
102 char *pos = ERR_PTR(-ENOMEM);
103 if (buflen >= 256) {
104 /* go to whatever namespace root we are under */
105 pos = d_absolute_path(path, buffer, buflen - 1);
106 if (!IS_ERR(pos) && *pos == '/' && pos[1]) {
107 struct inode *inode = path->dentry->d_inode;
108 if (inode && S_ISDIR(inode->i_mode)) {
109 buffer[buflen - 2] = '/';
110 buffer[buflen - 1] = '\0';
114 return pos;
118 * tomoyo_get_dentry_path - Get the path of a dentry.
120 * @dentry: Pointer to "struct dentry".
121 * @buffer: Pointer to buffer to return value in.
122 * @buflen: Sizeof @buffer.
124 * Returns the buffer on success, an error code otherwise.
126 * If dentry is a directory, trailing '/' is appended.
128 static char *tomoyo_get_dentry_path(struct dentry *dentry, char * const buffer,
129 const int buflen)
131 char *pos = ERR_PTR(-ENOMEM);
132 if (buflen >= 256) {
133 pos = dentry_path_raw(dentry, buffer, buflen - 1);
134 if (!IS_ERR(pos) && *pos == '/' && pos[1]) {
135 struct inode *inode = dentry->d_inode;
136 if (inode && S_ISDIR(inode->i_mode)) {
137 buffer[buflen - 2] = '/';
138 buffer[buflen - 1] = '\0';
142 return pos;
146 * tomoyo_get_local_path - Get the path of a dentry.
148 * @dentry: Pointer to "struct dentry".
149 * @buffer: Pointer to buffer to return value in.
150 * @buflen: Sizeof @buffer.
152 * Returns the buffer on success, an error code otherwise.
154 static char *tomoyo_get_local_path(struct dentry *dentry, char * const buffer,
155 const int buflen)
157 struct super_block *sb = dentry->d_sb;
158 char *pos = tomoyo_get_dentry_path(dentry, buffer, buflen);
159 if (IS_ERR(pos))
160 return pos;
161 /* Convert from $PID to self if $PID is current thread. */
162 if (sb->s_magic == PROC_SUPER_MAGIC && *pos == '/') {
163 char *ep;
164 const pid_t pid = (pid_t) simple_strtoul(pos + 1, &ep, 10);
165 if (*ep == '/' && pid && pid ==
166 task_tgid_nr_ns(current, sb->s_fs_info)) {
167 pos = ep - 5;
168 if (pos < buffer)
169 goto out;
170 memmove(pos, "/self", 5);
172 goto prepend_filesystem_name;
174 /* Use filesystem name for unnamed devices. */
175 if (!MAJOR(sb->s_dev))
176 goto prepend_filesystem_name;
178 struct inode *inode = sb->s_root->d_inode;
180 * Use filesystem name if filesystem does not support rename()
181 * operation.
183 if (inode->i_op && !inode->i_op->rename)
184 goto prepend_filesystem_name;
186 /* Prepend device name. */
188 char name[64];
189 int name_len;
190 const dev_t dev = sb->s_dev;
191 name[sizeof(name) - 1] = '\0';
192 snprintf(name, sizeof(name) - 1, "dev(%u,%u):", MAJOR(dev),
193 MINOR(dev));
194 name_len = strlen(name);
195 pos -= name_len;
196 if (pos < buffer)
197 goto out;
198 memmove(pos, name, name_len);
199 return pos;
201 /* Prepend filesystem name. */
202 prepend_filesystem_name:
204 const char *name = sb->s_type->name;
205 const int name_len = strlen(name);
206 pos -= name_len + 1;
207 if (pos < buffer)
208 goto out;
209 memmove(pos, name, name_len);
210 pos[name_len] = ':';
212 return pos;
213 out:
214 return ERR_PTR(-ENOMEM);
218 * tomoyo_get_socket_name - Get the name of a socket.
220 * @path: Pointer to "struct path".
221 * @buffer: Pointer to buffer to return value in.
222 * @buflen: Sizeof @buffer.
224 * Returns the buffer.
226 static char *tomoyo_get_socket_name(struct path *path, char * const buffer,
227 const int buflen)
229 struct inode *inode = path->dentry->d_inode;
230 struct socket *sock = inode ? SOCKET_I(inode) : NULL;
231 struct sock *sk = sock ? sock->sk : NULL;
232 if (sk) {
233 snprintf(buffer, buflen, "socket:[family=%u:type=%u:"
234 "protocol=%u]", sk->sk_family, sk->sk_type,
235 sk->sk_protocol);
236 } else {
237 snprintf(buffer, buflen, "socket:[unknown]");
239 return buffer;
243 * tomoyo_realpath_from_path - Returns realpath(3) of the given pathname but ignores chroot'ed root.
245 * @path: Pointer to "struct path".
247 * Returns the realpath of the given @path on success, NULL otherwise.
249 * If dentry is a directory, trailing '/' is appended.
250 * Characters out of 0x20 < c < 0x7F range are converted to
251 * \ooo style octal string.
252 * Character \ is converted to \\ string.
254 * These functions use kzalloc(), so the caller must call kfree()
255 * if these functions didn't return NULL.
257 char *tomoyo_realpath_from_path(struct path *path)
259 char *buf = NULL;
260 char *name = NULL;
261 unsigned int buf_len = PAGE_SIZE / 2;
262 struct dentry *dentry = path->dentry;
263 struct super_block *sb;
264 if (!dentry)
265 return NULL;
266 sb = dentry->d_sb;
267 while (1) {
268 char *pos;
269 struct inode *inode;
270 buf_len <<= 1;
271 kfree(buf);
272 buf = kmalloc(buf_len, GFP_NOFS);
273 if (!buf)
274 break;
275 /* To make sure that pos is '\0' terminated. */
276 buf[buf_len - 1] = '\0';
277 /* Get better name for socket. */
278 if (sb->s_magic == SOCKFS_MAGIC) {
279 pos = tomoyo_get_socket_name(path, buf, buf_len - 1);
280 goto encode;
282 /* For "pipe:[\$]". */
283 if (dentry->d_op && dentry->d_op->d_dname) {
284 pos = dentry->d_op->d_dname(dentry, buf, buf_len - 1);
285 goto encode;
287 inode = sb->s_root->d_inode;
289 * Get local name for filesystems without rename() operation
290 * or dentry without vfsmount.
292 if (!path->mnt || (inode->i_op && !inode->i_op->rename))
293 pos = tomoyo_get_local_path(path->dentry, buf,
294 buf_len - 1);
295 /* Get absolute name for the rest. */
296 else {
297 pos = tomoyo_get_absolute_path(path, buf, buf_len - 1);
299 * Fall back to local name if absolute name is not
300 * available.
302 if (pos == ERR_PTR(-EINVAL))
303 pos = tomoyo_get_local_path(path->dentry, buf,
304 buf_len - 1);
306 encode:
307 if (IS_ERR(pos))
308 continue;
309 name = tomoyo_encode(pos);
310 break;
312 kfree(buf);
313 if (!name)
314 tomoyo_warn_oom(__func__);
315 return name;
319 * tomoyo_realpath_nofollow - Get realpath of a pathname.
321 * @pathname: The pathname to solve.
323 * Returns the realpath of @pathname on success, NULL otherwise.
325 char *tomoyo_realpath_nofollow(const char *pathname)
327 struct path path;
329 if (pathname && kern_path(pathname, 0, &path) == 0) {
330 char *buf = tomoyo_realpath_from_path(&path);
331 path_put(&path);
332 return buf;
334 return NULL;