mmc: sdhci: Check mrq->cmd in sdhci_tasklet_finish
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / security / tomoyo / realpath.h
blob78217a37960b2e293afaae73d7bf749fe45e1ba3
1 /*
2 * security/tomoyo/realpath.h
4 * Get the canonicalized absolute pathnames. The basis for TOMOYO.
6 * Copyright (C) 2005-2009 NTT DATA CORPORATION
8 * Version: 2.2.0 2009/04/01
12 #ifndef _SECURITY_TOMOYO_REALPATH_H
13 #define _SECURITY_TOMOYO_REALPATH_H
15 struct path;
16 struct tomoyo_path_info;
17 struct tomoyo_io_buffer;
19 /* Convert binary string to ascii string. */
20 int tomoyo_encode(char *buffer, int buflen, const char *str);
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);
27 * Returns realpath(3) of the given pathname but ignores chroot'ed root.
28 * These functions use tomoyo_alloc(), so the caller must call tomoyo_free()
29 * if these functions didn't return NULL.
31 char *tomoyo_realpath(const char *pathname);
33 * Same with tomoyo_realpath() except that it doesn't follow the final symlink.
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);
40 * Allocate memory for ACL entry.
41 * The RAM is chunked, so NEVER try to kfree() the returned pointer.
43 void *tomoyo_alloc_element(const unsigned int size);
46 * Keep the given name on the RAM.
47 * The RAM is shared, so NEVER try to modify or kfree() the returned name.
49 const struct tomoyo_path_info *tomoyo_save_name(const char *name);
51 /* Allocate memory for temporary use (e.g. permission checks). */
52 void *tomoyo_alloc(const size_t size);
54 /* Free memory allocated by tomoyo_alloc(). */
55 void tomoyo_free(const void *p);
57 /* Check for memory usage. */
58 int tomoyo_read_memory_counter(struct tomoyo_io_buffer *head);
60 /* Set memory quota. */
61 int tomoyo_write_memory_quota(struct tomoyo_io_buffer *head);
63 /* Initialize realpath related code. */
64 void __init tomoyo_realpath_init(void);
66 #endif /* !defined(_SECURITY_TOMOYO_REALPATH_H) */