オープンソース・ソフトウェアの開発とダウンロード

Subversion リポジトリの参照

Contents of /trunk/1.6.x/ccs-patch/fs/realpath.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1055 - (show annotations) (download) (as text)
Tue Mar 25 09:01:31 2008 UTC (16 years, 2 months ago) by kumaneko
File MIME type: text/x-csrc
File size: 15132 byte(s)


1 /*
2 * fs/realpath.c
3 *
4 * Get the canonicalized absolute pathnames. The basis for SAKURA and TOMOYO.
5 *
6 * Copyright (C) 2005-2008 NTT DATA CORPORATION
7 *
8 * Version: 1.6.0-pre 2008/03/24
9 *
10 * This file is applicable to both 2.4.30 and 2.6.11 and later.
11 * See README.ccs for ChangeLog.
12 *
13 */
14 #include <linux/string.h>
15 #include <linux/mm.h>
16 #include <linux/utime.h>
17 #include <linux/file.h>
18 #include <linux/smp_lock.h>
19 #include <linux/module.h>
20 #include <linux/slab.h>
21 #include <asm/uaccess.h>
22 #include <asm/atomic.h>
23 #include <linux/version.h>
24 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 5, 0)
25 #include <linux/namei.h>
26 #include <linux/mount.h>
27 static const int lookup_flags = LOOKUP_FOLLOW;
28 #else
29 static const int lookup_flags = LOOKUP_FOLLOW | LOOKUP_POSITIVE;
30 #endif
31 #include <linux/realpath.h>
32 #include <linux/proc_fs.h>
33 #include <linux/ccs_common.h>
34
35 /**
36 * get_absolute_path - Get the path of a dentry but ignores chroot'ed root.
37 *
38 * @dentry: Pointer to "struct dentry".
39 * @vfsmnt: Pointer to "struct vfsmount".
40 * @buffer: Pointer to buffer to return value in.
41 * @buflen: Sizeof @buffer.
42 *
43 * Returns 0 on success, -ENOMEM otherwise.
44 *
45 * Caller holds the dcache_lock and vfsmount_lock .
46 * Based on __d_path() in fs/dcache.c
47 *
48 * If dentry is a directory, trailing '/' is appended.
49 * Characters out of 0x20 < c < 0x7F range are converted to
50 * \ooo style octal string.
51 * Character \ is converted to \\ string.
52 */
53 static int get_absolute_path(struct dentry *dentry, struct vfsmount *vfsmnt,
54 char *buffer, int buflen)
55 {
56 /***** CRITICAL SECTION START *****/
57 char *start = buffer;
58 char *end = buffer + buflen;
59 bool is_dir = (dentry->d_inode && S_ISDIR(dentry->d_inode->i_mode));
60
61 if (buflen < 256)
62 goto out;
63
64 *--end = '\0';
65 buflen--;
66
67 for (;;) {
68 struct dentry *parent;
69
70 if (dentry == vfsmnt->mnt_root || IS_ROOT(dentry)) {
71 /* Global root? */
72 if (vfsmnt->mnt_parent == vfsmnt)
73 break;
74 dentry = vfsmnt->mnt_mountpoint;
75 vfsmnt = vfsmnt->mnt_parent;
76 continue;
77 }
78 if (is_dir) {
79 is_dir = false;
80 *--end = '/';
81 buflen--;
82 }
83 parent = dentry->d_parent;
84 {
85 const char *sp = dentry->d_name.name;
86 const char *cp = sp + dentry->d_name.len - 1;
87 unsigned char c;
88
89 /*
90 * Exception: Use /proc/self/ rather than
91 * /proc/\$/ for current process.
92 */
93 if (IS_ROOT(parent) && *sp > '0' && *sp <= '9' &&
94 parent->d_sb &&
95 parent->d_sb->s_magic == PROC_SUPER_MAGIC) {
96 char *ep;
97 const pid_t pid
98 = (pid_t) simple_strtoul(sp, &ep, 10);
99 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 5, 0)
100 if (!*ep && pid == current->tgid) {
101 sp = "self";
102 cp = sp + 3;
103 }
104 #else
105 if (!*ep && pid == current->pid) {
106 sp = "self";
107 cp = sp + 3;
108 }
109 #endif
110 }
111
112 while (sp <= cp) {
113 c = *(unsigned char *) cp;
114 if (c == '\\') {
115 buflen -= 2;
116 if (buflen < 0)
117 goto out;
118 *--end = '\\';
119 *--end = '\\';
120 } else if (c > ' ' && c < 127) {
121 if (--buflen < 0)
122 goto out;
123 *--end = (char) c;
124 } else {
125 buflen -= 4;
126 if (buflen < 0)
127 goto out;
128 *--end = (c & 7) + '0';
129 *--end = ((c >> 3) & 7) + '0';
130 *--end = (c >> 6) + '0';
131 *--end = '\\';
132 }
133 cp--;
134 }
135 if (--buflen < 0)
136 goto out;
137 *--end = '/';
138 }
139 dentry = parent;
140 }
141 if (*end == '/') {
142 buflen++;
143 end++;
144 }
145 {
146 const char *sp = dentry->d_name.name;
147 const char *cp = sp + dentry->d_name.len - 1;
148 unsigned char c;
149 while (sp <= cp) {
150 c = *(unsigned char *) cp;
151 if (c == '\\') {
152 buflen -= 2;
153 if (buflen < 0)
154 goto out;
155 *--end = '\\';
156 *--end = '\\';
157 } else if (c > ' ' && c < 127) {
158 if (--buflen < 0)
159 goto out;
160 *--end = (char) c;
161 } else {
162 buflen -= 4;
163 if (buflen < 0)
164 goto out;
165 *--end = (c & 7) + '0';
166 *--end = ((c >> 3) & 7) + '0';
167 *--end = (c >> 6) + '0';
168 *--end = '\\';
169 }
170 cp--;
171 }
172 }
173 /* Move the pathname to the top of the buffer. */
174 memmove(start, end, strlen(end) + 1);
175 return 0;
176 out:
177 return -ENOMEM;
178 /***** CRITICAL SECTION END *****/
179 }
180
181 /**
182 * ccs_realpath_from_dentry2 - Returns realpath(3) of the given dentry but ignores chroot'ed root.
183 *
184 * @dentry: Pointer to "struct dentry".
185 * @mnt: Pointer to "struct vfsmount".
186 * @newname: Pointer to buffer to return value in.
187 * @newname_len: Size of @newname .
188 *
189 * Returns 0 on success, negative value otherwise.
190 */
191 int ccs_realpath_from_dentry2(struct dentry *dentry, struct vfsmount *mnt,
192 char *newname, int newname_len)
193 {
194 int error;
195 struct dentry *d_dentry;
196 struct vfsmount *d_mnt;
197 if (!dentry || !mnt || !newname || newname_len <= 0)
198 return -EINVAL;
199 d_dentry = dget(dentry);
200 d_mnt = mntget(mnt);
201 /***** CRITICAL SECTION START *****/
202 spin_lock(&dcache_lock);
203 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 5, 0)
204 spin_lock(&vfsmount_lock);
205 #endif
206 error = get_absolute_path(d_dentry, d_mnt, newname, newname_len);
207 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 5, 0)
208 spin_unlock(&vfsmount_lock);
209 #endif
210 spin_unlock(&dcache_lock);
211 /***** CRITICAL SECTION END *****/
212 dput(d_dentry);
213 mntput(d_mnt);
214 return error;
215 }
216
217 /**
218 * ccs_realpath_from_dentry - Returns realpath(3) of the given pathname but ignores chroot'ed root.
219 *
220 * @dentry: Pointer to "struct dentry".
221 * @mnt: Pointer to "struct vfsmount".
222 *
223 * Returns the realpath of the given @dentry and @mnt on success,
224 * NULL otherwise.
225 *
226 * These functions use ccs_alloc(), so caller must ccs_free()
227 * if these functions didn't return NULL.
228 */
229 char *ccs_realpath_from_dentry(struct dentry *dentry, struct vfsmount *mnt)
230 {
231 char *buf = ccs_alloc(sizeof(struct ccs_page_buffer));
232 if (buf && ccs_realpath_from_dentry2(dentry, mnt, buf,
233 CCS_MAX_PATHNAME_LEN - 1) == 0)
234 return buf;
235 ccs_free(buf);
236 return NULL;
237 }
238
239 /**
240 * ccs_realpath - Get realpath of a pathname.
241 *
242 * @pathname: The pathname to solve.
243 *
244 * Returns the realpath of @pathname on success, NULL otherwise.
245 */
246 char *ccs_realpath(const char *pathname)
247 {
248 struct nameidata nd;
249 if (pathname && path_lookup(pathname, lookup_flags, &nd) == 0) {
250 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 25)
251 char *buf = ccs_realpath_from_dentry(nd.path.dentry,
252 nd.path.mnt);
253 path_put(&nd.path);
254 #else
255 char *buf = ccs_realpath_from_dentry(nd.dentry, nd.mnt);
256 path_release(&nd);
257 #endif
258 return buf;
259 }
260 return NULL;
261 }
262
263 /**
264 * ccs_realpath_nofollow - Get realpath of a pathname.
265 *
266 * @pathname: The pathname to solve.
267 *
268 * Returns the realpath of @pathname on success, NULL otherwise.
269 */
270 char *ccs_realpath_nofollow(const char *pathname)
271 {
272 struct nameidata nd;
273 if (pathname && path_lookup(pathname, lookup_flags ^ LOOKUP_FOLLOW,
274 &nd) == 0) {
275 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 25)
276 char *buf = ccs_realpath_from_dentry(nd.path.dentry,
277 nd.path.mnt);
278 path_put(&nd.path);
279 #else
280 char *buf = ccs_realpath_from_dentry(nd.dentry, nd.mnt);
281 path_release(&nd);
282 #endif
283 return buf;
284 }
285 return NULL;
286 }
287
288 /**
289 * round_up - Round up an integer so that the returned pointers are appropriately aligned.
290 *
291 * @size: Size in bytes.
292 *
293 * Returns rounded value of @size.
294 *
295 * FIXME: Are there more requirements that is needed for assigning value
296 * atomically?
297 */
298 static inline unsigned int round_up(const unsigned int size)
299 {
300 if (sizeof(void *) >= sizeof(long))
301 return ((size + sizeof(void *) - 1)
302 / sizeof(void *)) * sizeof(void *);
303 else
304 return ((size + sizeof(long) - 1)
305 / sizeof(long)) * sizeof(long);
306 }
307
308 static unsigned int allocated_memory_for_elements;
309
310 /**
311 * ccs_get_memory_used_for_elements - Get memory used for keeping ACL structures.
312 *
313 * Returns memory used for keeping ACL structures.
314 */
315 unsigned int ccs_get_memory_used_for_elements(void)
316 {
317 return allocated_memory_for_elements;
318 }
319
320 /**
321 * ccs_alloc_element - Allocate permanent memory for structures.
322 *
323 * @size: Size in bytes.
324 *
325 * Returns pointer to allocated memory on success, NULL otherwise.
326 *
327 * The RAM is chunked, so NEVER try to kfree() the returned pointer.
328 */
329 void *ccs_alloc_element(const unsigned int size)
330 {
331 static DEFINE_MUTEX(lock);
332 static char *buf;
333 static unsigned int buf_used_len = PAGE_SIZE;
334 char *ptr = NULL;
335 const unsigned int word_aligned_size = round_up(size);
336 if (word_aligned_size > PAGE_SIZE)
337 return NULL;
338 mutex_lock(&lock);
339 if (buf_used_len + word_aligned_size > PAGE_SIZE) {
340 ptr = kzalloc(PAGE_SIZE, GFP_KERNEL);
341 if (!ptr) {
342 printk(KERN_WARNING "ERROR: Out of memory "
343 "for ccs_alloc_element().\n");
344 if (!sbin_init_started)
345 panic("MAC Initialization failed.\n");
346 } else {
347 buf = ptr;
348 allocated_memory_for_elements += PAGE_SIZE;
349 buf_used_len = word_aligned_size;
350 ptr = buf;
351 }
352 } else if (word_aligned_size) {
353 int i;
354 ptr = buf + buf_used_len;
355 buf_used_len += word_aligned_size;
356 for (i = 0; i < word_aligned_size; i++) {
357 if (!ptr[i])
358 continue;
359 printk(KERN_ERR "WARNING: Reserved memory was tainted! "
360 "The system might go wrong.\n");
361 ptr[i] = '\0';
362 }
363 }
364 mutex_unlock(&lock);
365 return ptr;
366 }
367
368 static unsigned int allocated_memory_for_savename;
369
370 /**
371 * ccs_get_memory_used_for_save_name - Get memory used for keeping string data.
372 *
373 * Returns memory used for keeping string data.
374 */
375 unsigned int ccs_get_memory_used_for_save_name(void)
376 {
377 return allocated_memory_for_savename;
378 }
379
380 #define MAX_HASH 256
381
382 /* Structure for string data. */
383 struct name_entry {
384 struct list1_head list;
385 struct path_info entry;
386 };
387
388 /* Structure for available memory region. */
389 struct free_memory_block_list {
390 struct list_head list;
391 char *ptr; /* Pointer to a free area. */
392 int len; /* Length of the area. */
393 };
394
395 /* The list for "struct name_entry". */
396 static struct list1_head name_list[MAX_HASH];
397
398 /**
399 * ccs_save_name - Allocate permanent memory for string data.
400 *
401 * @name: The string to store into the permernent memory.
402 *
403 * Returns pointer to "struct path_info" on success, NULL otherwise.
404 *
405 * The RAM is shared, so NEVER try to modify or kfree() the returned name.
406 */
407 const struct path_info *ccs_save_name(const char *name)
408 {
409 static LIST_HEAD(fmb_list);
410 static DEFINE_MUTEX(lock);
411 struct name_entry *ptr;
412 unsigned int hash;
413 struct free_memory_block_list *fmb;
414 int len;
415 char *cp;
416 if (!name)
417 return NULL;
418 len = strlen(name) + 1;
419 if (len > CCS_MAX_PATHNAME_LEN) {
420 printk(KERN_WARNING "ERROR: Name too long "
421 "for ccs_save_name().\n");
422 return NULL;
423 }
424 hash = full_name_hash((const unsigned char *) name, len - 1);
425 mutex_lock(&lock);
426 list1_for_each_entry(ptr, &name_list[hash % MAX_HASH], list) {
427 if (hash == ptr->entry.hash && !strcmp(name, ptr->entry.name))
428 goto out;
429 }
430 list_for_each_entry(fmb, &fmb_list, list) {
431 if (len <= fmb->len)
432 goto ready;
433 }
434 cp = kzalloc(PAGE_SIZE, GFP_KERNEL);
435 fmb = kzalloc(sizeof(*fmb), GFP_KERNEL);
436 if (!cp || !fmb) {
437 kfree(cp);
438 kfree(fmb);
439 printk(KERN_WARNING "ERROR: Out of memory "
440 "for ccs_save_name().\n");
441 if (!sbin_init_started)
442 panic("MAC Initialization failed.\n");
443 ptr = NULL;
444 goto out;
445 }
446 allocated_memory_for_savename += PAGE_SIZE;
447 list_add(&fmb->list, &fmb_list);
448 fmb->ptr = cp;
449 fmb->len = PAGE_SIZE;
450 ready:
451 ptr = ccs_alloc_element(sizeof(*ptr));
452 if (!ptr)
453 goto out;
454 ptr->entry.name = fmb->ptr;
455 memmove(fmb->ptr, name, len);
456 ccs_fill_path_info(&ptr->entry);
457 fmb->ptr += len;
458 fmb->len -= len;
459 list1_add_tail_mb(&ptr->list, &name_list[hash % MAX_HASH]);
460 if (fmb->len == 0) {
461 list_del(&fmb->list);
462 kfree(fmb);
463 }
464 out:
465 mutex_unlock(&lock);
466 return ptr ? &ptr->entry : NULL;
467 }
468
469 /* Structure for temporarily allocated memory. */
470 struct cache_entry {
471 struct list_head list;
472 void *ptr;
473 int size;
474 };
475
476 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 20)
477 static struct kmem_cache *ccs_cachep;
478 #else
479 static kmem_cache_t *ccs_cachep;
480 #endif
481
482 /**
483 * ccs_realpath_init - Initialize realpath related code.
484 *
485 * Returns 0.
486 */
487 static int __init ccs_realpath_init(void)
488 {
489 int i;
490 if (CCS_MAX_PATHNAME_LEN > PAGE_SIZE)
491 panic("Bad size.");
492 if (sizeof(struct path_info_with_data) > sizeof(struct ccs_page_buffer))
493 panic("Bad size.");
494 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 23)
495 ccs_cachep = kmem_cache_create("ccs_cache", sizeof(struct cache_entry),
496 0, 0, NULL);
497 #else
498 ccs_cachep = kmem_cache_create("ccs_cache", sizeof(struct cache_entry),
499 0, 0, NULL, NULL);
500 #endif
501 if (!ccs_cachep)
502 panic("Can't create cache.\n");
503 for (i = 0; i < MAX_HASH; i++)
504 INIT_LIST1_HEAD(&name_list[i]);
505 INIT_LIST1_HEAD(&KERNEL_DOMAIN.acl_info_list);
506 KERNEL_DOMAIN.domainname = ccs_save_name(ROOT_NAME);
507 list1_add_tail_mb(&KERNEL_DOMAIN.list, &domain_list);
508 if (ccs_find_domain(ROOT_NAME) != &KERNEL_DOMAIN)
509 panic("Can't register KERNEL_DOMAIN");
510 return 0;
511 }
512
513 __initcall(ccs_realpath_init);
514
515 /* The list for "struct cache_entry". */
516 static LIST_HEAD(cache_list);
517
518 static DEFINE_SPINLOCK(cache_list_lock);
519
520 static unsigned int dynamic_memory_size;
521
522 /**
523 * ccs_get_memory_used_for_dynamic - Get memory used for temporal purpose.
524 *
525 * Returns memory used for temporal purpose.
526 */
527 unsigned int ccs_get_memory_used_for_dynamic(void)
528 {
529 return dynamic_memory_size;
530 }
531
532 #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 5, 0)
533 /**
534 * round2 - Rounded up to power-of-two value.
535 *
536 * @size: Size in bytes.
537 *
538 * Returns power-of-two of @size.
539 */
540 static int round2(size_t size)
541 {
542 #if PAGE_SIZE == 4096
543 size_t bsize = 32;
544 #else
545 size_t bsize = 64;
546 #endif
547 while (size > bsize) bsize <<= 1;
548 return bsize;
549 }
550 #endif
551
552 /**
553 * ccs_alloc - Allocate memory for temporal purpose.
554 *
555 * @size: Size in bytes.
556 *
557 * Returns pointer to allocated memory on success, NULL otherwise.
558 */
559 void *ccs_alloc(const size_t size)
560 {
561 struct cache_entry *new_entry;
562 void *ret = kzalloc(size, GFP_KERNEL);
563 if (!ret)
564 goto out;
565 new_entry = kmem_cache_alloc(ccs_cachep, GFP_KERNEL);
566 if (!new_entry) {
567 kfree(ret); ret = NULL;
568 goto out;
569 }
570 INIT_LIST_HEAD(&new_entry->list);
571 new_entry->ptr = ret;
572 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 5, 0)
573 new_entry->size = ksize(ret);
574 #else
575 new_entry->size = round2(size);
576 #endif
577 /***** CRITICAL SECTION START *****/
578 spin_lock(&cache_list_lock);
579 list_add_tail(&new_entry->list, &cache_list);
580 dynamic_memory_size += new_entry->size;
581 spin_unlock(&cache_list_lock);
582 /***** CRITICAL SECTION END *****/
583 out:
584 return ret;
585 }
586
587 /**
588 * ccs_free - Release memory allocated by ccs_alloc().
589 *
590 * @p: Pointer returned by ccs_alloc(). May be NULL.
591 *
592 * Returns nothing.
593 */
594 void ccs_free(const void *p)
595 {
596 struct list_head *v;
597 struct cache_entry *entry = NULL;
598 if (!p)
599 return;
600 /***** CRITICAL SECTION START *****/
601 spin_lock(&cache_list_lock);
602 list_for_each(v, &cache_list) {
603 entry = list_entry(v, struct cache_entry, list);
604 if (entry->ptr != p) {
605 entry = NULL; continue;
606 }
607 list_del(&entry->list);
608 dynamic_memory_size -= entry->size;
609 break;
610 }
611 spin_unlock(&cache_list_lock);
612 /***** CRITICAL SECTION END *****/
613 if (entry) {
614 kfree(p);
615 kmem_cache_free(ccs_cachep, entry);
616 } else {
617 printk(KERN_WARNING "BUG: ccs_free() with invalid pointer.\n");
618 }
619 }

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26