Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 1 | /* |
| 2 | * security/tomoyo/realpath.h |
| 3 | * |
| 4 | * Get the canonicalized absolute pathnames. The basis for TOMOYO. |
| 5 | * |
| 6 | * Copyright (C) 2005-2009 NTT DATA CORPORATION |
| 7 | * |
Tetsuo Handa | 39826a1 | 2009-04-08 22:31:28 +0900 | [diff] [blame] | 8 | * Version: 2.2.0 2009/04/01 |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 9 | * |
| 10 | */ |
| 11 | |
| 12 | #ifndef _SECURITY_TOMOYO_REALPATH_H |
| 13 | #define _SECURITY_TOMOYO_REALPATH_H |
| 14 | |
| 15 | struct path; |
| 16 | struct tomoyo_path_info; |
| 17 | struct tomoyo_io_buffer; |
| 18 | |
| 19 | /* Convert binary string to ascii string. */ |
| 20 | int tomoyo_encode(char *buffer, int buflen, const char *str); |
| 21 | |
| 22 | /* Returns realpath(3) of the given pathname but ignores chroot'ed root. */ |
| 23 | int tomoyo_realpath_from_path2(struct path *path, char *newname, |
| 24 | int newname_len); |
| 25 | |
| 26 | /* |
| 27 | * Returns realpath(3) of the given pathname but ignores chroot'ed root. |
Tetsuo Handa | 8e2d39a | 2010-01-26 20:45:27 +0900 | [diff] [blame] | 28 | * These functions use kzalloc(), so the caller must call kfree() |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 29 | * if these functions didn't return NULL. |
| 30 | */ |
| 31 | char *tomoyo_realpath(const char *pathname); |
| 32 | /* |
| 33 | * Same with tomoyo_realpath() except that it doesn't follow the final symlink. |
| 34 | */ |
| 35 | char *tomoyo_realpath_nofollow(const char *pathname); |
| 36 | /* Same with tomoyo_realpath() except that the pathname is already solved. */ |
| 37 | char *tomoyo_realpath_from_path(struct path *path); |
| 38 | |
Tetsuo Handa | cd7bec6 | 2010-01-05 06:39:37 +0900 | [diff] [blame] | 39 | /* Check memory quota. */ |
| 40 | bool tomoyo_memory_ok(void *ptr); |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 41 | |
| 42 | /* |
| 43 | * Keep the given name on the RAM. |
| 44 | * The RAM is shared, so NEVER try to modify or kfree() the returned name. |
| 45 | */ |
| 46 | const struct tomoyo_path_info *tomoyo_save_name(const char *name); |
| 47 | |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 48 | /* Check for memory usage. */ |
| 49 | int tomoyo_read_memory_counter(struct tomoyo_io_buffer *head); |
| 50 | |
| 51 | /* Set memory quota. */ |
| 52 | int tomoyo_write_memory_quota(struct tomoyo_io_buffer *head); |
| 53 | |
Tetsuo Handa | 1581e7d | 2009-02-21 20:40:50 +0900 | [diff] [blame] | 54 | /* Initialize realpath related code. */ |
| 55 | void __init tomoyo_realpath_init(void); |
| 56 | |
Kentaro Takeda | c73bd6d | 2009-02-05 17:18:12 +0900 | [diff] [blame] | 57 | #endif /* !defined(_SECURITY_TOMOYO_REALPATH_H) */ |