Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 1 | /* |
| 2 | * security/tomoyo/realpath.c |
| 3 | * |
Tetsuo Handa | 0f2a55d | 2011-07-14 14:46:51 +0900 | [diff] [blame] | 4 | * Copyright (C) 2005-2011 NTT DATA CORPORATION |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 5 | */ |
| 6 | |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 7 | #include "common.h" |
Al Viro | d10577a | 2011-12-07 13:06:11 -0500 | [diff] [blame] | 8 | #include <linux/magic.h> |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 9 | |
| 10 | /** |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame] | 11 | * tomoyo_encode2 - Encode binary string to ascii string. |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 12 | * |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame] | 13 | * @str: String in binary format. |
| 14 | * @str_len: Size of @str in byte. |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 15 | * |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 16 | * Returns pointer to @str in ascii format on success, NULL otherwise. |
| 17 | * |
| 18 | * This function uses kzalloc(), so caller must kfree() if this function |
| 19 | * didn't return NULL. |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 20 | */ |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame] | 21 | char *tomoyo_encode2(const char *str, int str_len) |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 22 | { |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame] | 23 | int i; |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 24 | int len = 0; |
| 25 | const char *p = str; |
| 26 | char *cp; |
| 27 | char *cp0; |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 28 | |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 29 | if (!p) |
| 30 | return NULL; |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame] | 31 | for (i = 0; i < str_len; i++) { |
| 32 | const unsigned char c = p[i]; |
| 33 | |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 34 | if (c == '\\') |
| 35 | len += 2; |
| 36 | else if (c > ' ' && c < 127) |
| 37 | len++; |
| 38 | else |
| 39 | len += 4; |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 40 | } |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 41 | len++; |
| 42 | /* Reserve space for appending "/". */ |
| 43 | cp = kzalloc(len + 10, GFP_NOFS); |
| 44 | if (!cp) |
| 45 | return NULL; |
| 46 | cp0 = cp; |
| 47 | p = str; |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame] | 48 | for (i = 0; i < str_len; i++) { |
| 49 | const unsigned char c = p[i]; |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 50 | |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 51 | if (c == '\\') { |
| 52 | *cp++ = '\\'; |
| 53 | *cp++ = '\\'; |
| 54 | } else if (c > ' ' && c < 127) { |
| 55 | *cp++ = c; |
| 56 | } else { |
| 57 | *cp++ = '\\'; |
| 58 | *cp++ = (c >> 6) + '0'; |
| 59 | *cp++ = ((c >> 3) & 7) + '0'; |
| 60 | *cp++ = (c & 7) + '0'; |
Eric W. Biederman | a4054b6 | 2009-11-20 09:12:22 -0800 | [diff] [blame] | 61 | } |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 62 | } |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 63 | return cp0; |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | /** |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame] | 67 | * tomoyo_encode - Encode binary string to ascii string. |
| 68 | * |
| 69 | * @str: String in binary format. |
| 70 | * |
| 71 | * Returns pointer to @str in ascii format on success, NULL otherwise. |
| 72 | * |
| 73 | * This function uses kzalloc(), so caller must kfree() if this function |
| 74 | * didn't return NULL. |
| 75 | */ |
| 76 | char *tomoyo_encode(const char *str) |
| 77 | { |
| 78 | return str ? tomoyo_encode2(str, strlen(str)) : NULL; |
| 79 | } |
| 80 | |
| 81 | /** |
Tetsuo Handa | 5625f2e | 2011-06-26 23:20:23 +0900 | [diff] [blame] | 82 | * tomoyo_get_absolute_path - Get the path of a dentry but ignores chroot'ed root. |
| 83 | * |
| 84 | * @path: Pointer to "struct path". |
| 85 | * @buffer: Pointer to buffer to return value in. |
| 86 | * @buflen: Sizeof @buffer. |
| 87 | * |
| 88 | * Returns the buffer on success, an error code otherwise. |
| 89 | * |
| 90 | * If dentry is a directory, trailing '/' is appended. |
| 91 | */ |
| 92 | static char *tomoyo_get_absolute_path(struct path *path, char * const buffer, |
| 93 | const int buflen) |
| 94 | { |
| 95 | char *pos = ERR_PTR(-ENOMEM); |
| 96 | if (buflen >= 256) { |
Tetsuo Handa | 5625f2e | 2011-06-26 23:20:23 +0900 | [diff] [blame] | 97 | /* go to whatever namespace root we are under */ |
Al Viro | 02125a8 | 2011-12-05 08:43:34 -0500 | [diff] [blame] | 98 | pos = d_absolute_path(path, buffer, buflen - 1); |
Tetsuo Handa | 5625f2e | 2011-06-26 23:20:23 +0900 | [diff] [blame] | 99 | if (!IS_ERR(pos) && *pos == '/' && pos[1]) { |
| 100 | struct inode *inode = path->dentry->d_inode; |
| 101 | if (inode && S_ISDIR(inode->i_mode)) { |
| 102 | buffer[buflen - 2] = '/'; |
| 103 | buffer[buflen - 1] = '\0'; |
| 104 | } |
| 105 | } |
| 106 | } |
| 107 | return pos; |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * tomoyo_get_dentry_path - Get the path of a dentry. |
| 112 | * |
| 113 | * @dentry: Pointer to "struct dentry". |
| 114 | * @buffer: Pointer to buffer to return value in. |
| 115 | * @buflen: Sizeof @buffer. |
| 116 | * |
| 117 | * Returns the buffer on success, an error code otherwise. |
| 118 | * |
| 119 | * If dentry is a directory, trailing '/' is appended. |
| 120 | */ |
| 121 | static char *tomoyo_get_dentry_path(struct dentry *dentry, char * const buffer, |
| 122 | const int buflen) |
| 123 | { |
| 124 | char *pos = ERR_PTR(-ENOMEM); |
| 125 | if (buflen >= 256) { |
| 126 | pos = dentry_path_raw(dentry, buffer, buflen - 1); |
| 127 | if (!IS_ERR(pos) && *pos == '/' && pos[1]) { |
| 128 | struct inode *inode = dentry->d_inode; |
| 129 | if (inode && S_ISDIR(inode->i_mode)) { |
| 130 | buffer[buflen - 2] = '/'; |
| 131 | buffer[buflen - 1] = '\0'; |
| 132 | } |
| 133 | } |
| 134 | } |
| 135 | return pos; |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * tomoyo_get_local_path - Get the path of a dentry. |
| 140 | * |
| 141 | * @dentry: Pointer to "struct dentry". |
| 142 | * @buffer: Pointer to buffer to return value in. |
| 143 | * @buflen: Sizeof @buffer. |
| 144 | * |
| 145 | * Returns the buffer on success, an error code otherwise. |
| 146 | */ |
| 147 | static char *tomoyo_get_local_path(struct dentry *dentry, char * const buffer, |
| 148 | const int buflen) |
| 149 | { |
| 150 | struct super_block *sb = dentry->d_sb; |
| 151 | char *pos = tomoyo_get_dentry_path(dentry, buffer, buflen); |
| 152 | if (IS_ERR(pos)) |
| 153 | return pos; |
| 154 | /* Convert from $PID to self if $PID is current thread. */ |
| 155 | if (sb->s_magic == PROC_SUPER_MAGIC && *pos == '/') { |
| 156 | char *ep; |
| 157 | const pid_t pid = (pid_t) simple_strtoul(pos + 1, &ep, 10); |
| 158 | if (*ep == '/' && pid && pid == |
| 159 | task_tgid_nr_ns(current, sb->s_fs_info)) { |
| 160 | pos = ep - 5; |
| 161 | if (pos < buffer) |
| 162 | goto out; |
| 163 | memmove(pos, "/self", 5); |
| 164 | } |
| 165 | goto prepend_filesystem_name; |
| 166 | } |
| 167 | /* Use filesystem name for unnamed devices. */ |
| 168 | if (!MAJOR(sb->s_dev)) |
| 169 | goto prepend_filesystem_name; |
| 170 | { |
| 171 | struct inode *inode = sb->s_root->d_inode; |
| 172 | /* |
| 173 | * Use filesystem name if filesystem does not support rename() |
| 174 | * operation. |
| 175 | */ |
| 176 | if (inode->i_op && !inode->i_op->rename) |
| 177 | goto prepend_filesystem_name; |
| 178 | } |
| 179 | /* Prepend device name. */ |
| 180 | { |
| 181 | char name[64]; |
| 182 | int name_len; |
| 183 | const dev_t dev = sb->s_dev; |
| 184 | name[sizeof(name) - 1] = '\0'; |
| 185 | snprintf(name, sizeof(name) - 1, "dev(%u,%u):", MAJOR(dev), |
| 186 | MINOR(dev)); |
| 187 | name_len = strlen(name); |
| 188 | pos -= name_len; |
| 189 | if (pos < buffer) |
| 190 | goto out; |
| 191 | memmove(pos, name, name_len); |
| 192 | return pos; |
| 193 | } |
| 194 | /* Prepend filesystem name. */ |
| 195 | prepend_filesystem_name: |
| 196 | { |
| 197 | const char *name = sb->s_type->name; |
| 198 | const int name_len = strlen(name); |
| 199 | pos -= name_len + 1; |
| 200 | if (pos < buffer) |
| 201 | goto out; |
| 202 | memmove(pos, name, name_len); |
| 203 | pos[name_len] = ':'; |
| 204 | } |
| 205 | return pos; |
| 206 | out: |
| 207 | return ERR_PTR(-ENOMEM); |
| 208 | } |
| 209 | |
| 210 | /** |
| 211 | * tomoyo_get_socket_name - Get the name of a socket. |
| 212 | * |
| 213 | * @path: Pointer to "struct path". |
| 214 | * @buffer: Pointer to buffer to return value in. |
| 215 | * @buflen: Sizeof @buffer. |
| 216 | * |
| 217 | * Returns the buffer. |
| 218 | */ |
| 219 | static char *tomoyo_get_socket_name(struct path *path, char * const buffer, |
| 220 | const int buflen) |
| 221 | { |
| 222 | struct inode *inode = path->dentry->d_inode; |
| 223 | struct socket *sock = inode ? SOCKET_I(inode) : NULL; |
| 224 | struct sock *sk = sock ? sock->sk : NULL; |
| 225 | if (sk) { |
| 226 | snprintf(buffer, buflen, "socket:[family=%u:type=%u:" |
| 227 | "protocol=%u]", sk->sk_family, sk->sk_type, |
| 228 | sk->sk_protocol); |
| 229 | } else { |
| 230 | snprintf(buffer, buflen, "socket:[unknown]"); |
| 231 | } |
| 232 | return buffer; |
| 233 | } |
| 234 | |
| 235 | /** |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 236 | * tomoyo_realpath_from_path - Returns realpath(3) of the given pathname but ignores chroot'ed root. |
| 237 | * |
| 238 | * @path: Pointer to "struct path". |
| 239 | * |
| 240 | * Returns the realpath of the given @path on success, NULL otherwise. |
| 241 | * |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 242 | * If dentry is a directory, trailing '/' is appended. |
| 243 | * Characters out of 0x20 < c < 0x7F range are converted to |
| 244 | * \ooo style octal string. |
| 245 | * Character \ is converted to \\ string. |
| 246 | * |
Tetsuo Handa | 8e2d39a | 2010-01-26 20:45:27 +0900 | [diff] [blame] | 247 | * These functions use kzalloc(), so the caller must call kfree() |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 248 | * if these functions didn't return NULL. |
| 249 | */ |
| 250 | char *tomoyo_realpath_from_path(struct path *path) |
| 251 | { |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 252 | char *buf = NULL; |
| 253 | char *name = NULL; |
| 254 | unsigned int buf_len = PAGE_SIZE / 2; |
| 255 | struct dentry *dentry = path->dentry; |
Tetsuo Handa | 5625f2e | 2011-06-26 23:20:23 +0900 | [diff] [blame] | 256 | struct super_block *sb; |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 257 | if (!dentry) |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 258 | return NULL; |
Tetsuo Handa | 5625f2e | 2011-06-26 23:20:23 +0900 | [diff] [blame] | 259 | sb = dentry->d_sb; |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 260 | while (1) { |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 261 | char *pos; |
Tetsuo Handa | 5625f2e | 2011-06-26 23:20:23 +0900 | [diff] [blame] | 262 | struct inode *inode; |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 263 | buf_len <<= 1; |
| 264 | kfree(buf); |
| 265 | buf = kmalloc(buf_len, GFP_NOFS); |
| 266 | if (!buf) |
| 267 | break; |
Tetsuo Handa | 5625f2e | 2011-06-26 23:20:23 +0900 | [diff] [blame] | 268 | /* To make sure that pos is '\0' terminated. */ |
| 269 | buf[buf_len - 1] = '\0'; |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 270 | /* Get better name for socket. */ |
Tetsuo Handa | 5625f2e | 2011-06-26 23:20:23 +0900 | [diff] [blame] | 271 | if (sb->s_magic == SOCKFS_MAGIC) { |
| 272 | pos = tomoyo_get_socket_name(path, buf, buf_len - 1); |
| 273 | goto encode; |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 274 | } |
Tetsuo Handa | 5625f2e | 2011-06-26 23:20:23 +0900 | [diff] [blame] | 275 | /* For "pipe:[\$]". */ |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 276 | if (dentry->d_op && dentry->d_op->d_dname) { |
| 277 | pos = dentry->d_op->d_dname(dentry, buf, buf_len - 1); |
Tetsuo Handa | 5625f2e | 2011-06-26 23:20:23 +0900 | [diff] [blame] | 278 | goto encode; |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 279 | } |
Tetsuo Handa | 5625f2e | 2011-06-26 23:20:23 +0900 | [diff] [blame] | 280 | inode = sb->s_root->d_inode; |
| 281 | /* |
| 282 | * Get local name for filesystems without rename() operation |
| 283 | * or dentry without vfsmount. |
| 284 | */ |
| 285 | if (!path->mnt || (inode->i_op && !inode->i_op->rename)) |
| 286 | pos = tomoyo_get_local_path(path->dentry, buf, |
| 287 | buf_len - 1); |
| 288 | /* Get absolute name for the rest. */ |
Tetsuo Handa | 1418a3e | 2011-12-08 21:24:06 +0900 | [diff] [blame] | 289 | else { |
Tetsuo Handa | 5625f2e | 2011-06-26 23:20:23 +0900 | [diff] [blame] | 290 | pos = tomoyo_get_absolute_path(path, buf, buf_len - 1); |
Tetsuo Handa | 1418a3e | 2011-12-08 21:24:06 +0900 | [diff] [blame] | 291 | /* |
| 292 | * Fall back to local name if absolute name is not |
| 293 | * available. |
| 294 | */ |
| 295 | if (pos == ERR_PTR(-EINVAL)) |
| 296 | pos = tomoyo_get_local_path(path->dentry, buf, |
| 297 | buf_len - 1); |
| 298 | } |
Tetsuo Handa | 5625f2e | 2011-06-26 23:20:23 +0900 | [diff] [blame] | 299 | encode: |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 300 | if (IS_ERR(pos)) |
| 301 | continue; |
| 302 | name = tomoyo_encode(pos); |
| 303 | break; |
| 304 | } |
Tetsuo Handa | 8e2d39a | 2010-01-26 20:45:27 +0900 | [diff] [blame] | 305 | kfree(buf); |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 306 | if (!name) |
| 307 | tomoyo_warn_oom(__func__); |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 308 | return name; |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | /** |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 312 | * tomoyo_realpath_nofollow - Get realpath of a pathname. |
| 313 | * |
| 314 | * @pathname: The pathname to solve. |
| 315 | * |
| 316 | * Returns the realpath of @pathname on success, NULL otherwise. |
| 317 | */ |
| 318 | char *tomoyo_realpath_nofollow(const char *pathname) |
| 319 | { |
Al Viro | e24977d | 2009-04-02 21:17:03 -0400 | [diff] [blame] | 320 | struct path path; |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 321 | |
Al Viro | e24977d | 2009-04-02 21:17:03 -0400 | [diff] [blame] | 322 | if (pathname && kern_path(pathname, 0, &path) == 0) { |
| 323 | char *buf = tomoyo_realpath_from_path(&path); |
| 324 | path_put(&path); |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 325 | return buf; |
| 326 | } |
| 327 | return NULL; |
| 328 | } |