This source file includes following definitions.
- tomoyo_encode2
- tomoyo_encode
- tomoyo_get_absolute_path
- tomoyo_get_dentry_path
- tomoyo_get_local_path
- tomoyo_realpath_from_path
- tomoyo_realpath_nofollow
1
2
3
4
5
6
7
8 #include "common.h"
9 #include <linux/magic.h>
10
11
12
13
14
15
16
17
18
19
20
21
22 char *tomoyo_encode2(const char *str, int str_len)
23 {
24 int i;
25 int len = 0;
26 const char *p = str;
27 char *cp;
28 char *cp0;
29
30 if (!p)
31 return NULL;
32 for (i = 0; i < str_len; i++) {
33 const unsigned char c = p[i];
34
35 if (c == '\\')
36 len += 2;
37 else if (c > ' ' && c < 127)
38 len++;
39 else
40 len += 4;
41 }
42 len++;
43
44 cp = kzalloc(len + 10, GFP_NOFS);
45 if (!cp)
46 return NULL;
47 cp0 = cp;
48 p = str;
49 for (i = 0; i < str_len; i++) {
50 const unsigned char c = p[i];
51
52 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';
62 }
63 }
64 return cp0;
65 }
66
67
68
69
70
71
72
73
74
75
76
77 char *tomoyo_encode(const char *str)
78 {
79 return str ? tomoyo_encode2(str, strlen(str)) : NULL;
80 }
81
82
83
84
85
86
87
88
89
90
91
92
93 static char *tomoyo_get_absolute_path(const struct path *path, char * const buffer,
94 const int buflen)
95 {
96 char *pos = ERR_PTR(-ENOMEM);
97
98 if (buflen >= 256) {
99
100 pos = d_absolute_path(path, buffer, buflen - 1);
101 if (!IS_ERR(pos) && *pos == '/' && pos[1]) {
102 struct inode *inode = d_backing_inode(path->dentry);
103
104 if (inode && S_ISDIR(inode->i_mode)) {
105 buffer[buflen - 2] = '/';
106 buffer[buflen - 1] = '\0';
107 }
108 }
109 }
110 return pos;
111 }
112
113
114
115
116
117
118
119
120
121
122
123
124 static char *tomoyo_get_dentry_path(struct dentry *dentry, char * const buffer,
125 const int buflen)
126 {
127 char *pos = ERR_PTR(-ENOMEM);
128
129 if (buflen >= 256) {
130 pos = dentry_path_raw(dentry, buffer, buflen - 1);
131 if (!IS_ERR(pos) && *pos == '/' && pos[1]) {
132 struct inode *inode = d_backing_inode(dentry);
133
134 if (inode && S_ISDIR(inode->i_mode)) {
135 buffer[buflen - 2] = '/';
136 buffer[buflen - 1] = '\0';
137 }
138 }
139 }
140 return pos;
141 }
142
143
144
145
146
147
148
149
150
151
152 static char *tomoyo_get_local_path(struct dentry *dentry, char * const buffer,
153 const int buflen)
154 {
155 struct super_block *sb = dentry->d_sb;
156 char *pos = tomoyo_get_dentry_path(dentry, buffer, buflen);
157
158 if (IS_ERR(pos))
159 return pos;
160
161 if (sb->s_magic == PROC_SUPER_MAGIC && *pos == '/') {
162 char *ep;
163 const pid_t pid = (pid_t) simple_strtoul(pos + 1, &ep, 10);
164
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);
171 }
172 goto prepend_filesystem_name;
173 }
174
175 if (!MAJOR(sb->s_dev))
176 goto prepend_filesystem_name;
177 {
178 struct inode *inode = d_backing_inode(sb->s_root);
179
180
181
182
183
184 if (!inode->i_op->rename)
185 goto prepend_filesystem_name;
186 }
187
188 {
189 char name[64];
190 int name_len;
191 const dev_t dev = sb->s_dev;
192
193 name[sizeof(name) - 1] = '\0';
194 snprintf(name, sizeof(name) - 1, "dev(%u,%u):", MAJOR(dev),
195 MINOR(dev));
196 name_len = strlen(name);
197 pos -= name_len;
198 if (pos < buffer)
199 goto out;
200 memmove(pos, name, name_len);
201 return pos;
202 }
203
204 prepend_filesystem_name:
205 {
206 const char *name = sb->s_type->name;
207 const int name_len = strlen(name);
208
209 pos -= name_len + 1;
210 if (pos < buffer)
211 goto out;
212 memmove(pos, name, name_len);
213 pos[name_len] = ':';
214 }
215 return pos;
216 out:
217 return ERR_PTR(-ENOMEM);
218 }
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235 char *tomoyo_realpath_from_path(const struct path *path)
236 {
237 char *buf = NULL;
238 char *name = NULL;
239 unsigned int buf_len = PAGE_SIZE / 2;
240 struct dentry *dentry = path->dentry;
241 struct super_block *sb;
242
243 if (!dentry)
244 return NULL;
245 sb = dentry->d_sb;
246 while (1) {
247 char *pos;
248 struct inode *inode;
249
250 buf_len <<= 1;
251 kfree(buf);
252 buf = kmalloc(buf_len, GFP_NOFS);
253 if (!buf)
254 break;
255
256 buf[buf_len - 1] = '\0';
257
258 if (dentry->d_op && dentry->d_op->d_dname) {
259 pos = dentry->d_op->d_dname(dentry, buf, buf_len - 1);
260 goto encode;
261 }
262 inode = d_backing_inode(sb->s_root);
263
264
265
266
267 if (!path->mnt ||
268 (!inode->i_op->rename &&
269 !(sb->s_type->fs_flags & FS_REQUIRES_DEV)))
270 pos = tomoyo_get_local_path(path->dentry, buf,
271 buf_len - 1);
272
273 else {
274 pos = tomoyo_get_absolute_path(path, buf, buf_len - 1);
275
276
277
278
279 if (pos == ERR_PTR(-EINVAL))
280 pos = tomoyo_get_local_path(path->dentry, buf,
281 buf_len - 1);
282 }
283 encode:
284 if (IS_ERR(pos))
285 continue;
286 name = tomoyo_encode(pos);
287 break;
288 }
289 kfree(buf);
290 if (!name)
291 tomoyo_warn_oom(__func__);
292 return name;
293 }
294
295
296
297
298
299
300
301
302 char *tomoyo_realpath_nofollow(const char *pathname)
303 {
304 struct path path;
305
306 if (pathname && kern_path(pathname, 0, &path) == 0) {
307 char *buf = tomoyo_realpath_from_path(&path);
308
309 path_put(&path);
310 return buf;
311 }
312 return NULL;
313 }