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

Subversion リポジトリの参照

Diff of /trunk/1.7.x/ccs-patch/security/ccsecurity/util.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/1.6.x/ccs-patch/fs/ccs_common.c revision 1280 by kumaneko, Tue Jun 10 05:22:12 2008 UTC branches/ccs-patch/security/ccsecurity/util.c revision 2943 by kumaneko, Mon Aug 24 04:58:42 2009 UTC
# Line 1  Line 1 
1  /*  /*
2   * fs/ccs_common.c   * security/ccsecurity/util.c
3   *   *
4   * Common functions for SAKURA and TOMOYO.   * Copyright (C) 2005-2009  NTT DATA CORPORATION
5   *   *
6   * Copyright (C) 2005-2008  NTT DATA CORPORATION   * Version: 1.7.0-pre   2009/08/24
  *  
  * Version: 1.6.2-pre   2008/06/10  
7   *   *
8   * This file is applicable to both 2.4.30 and 2.6.11 and later.   * This file is applicable to both 2.4.30 and 2.6.11 and later.
9   * See README.ccs for ChangeLog.   * See README.ccs for ChangeLog.
10   *   *
11   */   */
12    
13  #include <linux/version.h>  #include "internal.h"
 #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 5, 0)  
 #define __KERNEL_SYSCALLS__  
 #endif  
 #include <linux/string.h>  
 #include <linux/mm.h>  
 #include <linux/utime.h>  
 #include <linux/file.h>  
 #include <linux/module.h>  
 #include <linux/slab.h>  
 #include <asm/uaccess.h>  
 #include <stdarg.h>  
 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 5, 0)  
 #include <linux/namei.h>  
 #include <linux/mount.h>  
 static const int lookup_flags = LOOKUP_FOLLOW;  
 #else  
 static const int lookup_flags = LOOKUP_FOLLOW | LOOKUP_POSITIVE;  
 #endif  
 #include <linux/realpath.h>  
 #include <linux/ccs_common.h>  
 #include <linux/ccs_proc.h>  
 #include <linux/tomoyo.h>  
 #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 5, 0)  
 #include <linux/unistd.h>  
 #endif  
   
 /* To support PID namespace. */  
 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 24)  
 #define find_task_by_pid find_task_by_vpid  
 #endif  
14    
15  /* Set default specified by the kernel config. */  DEFINE_MUTEX(ccs_policy_lock);
 #ifdef CONFIG_TOMOYO  
 #define MAX_ACCEPT_ENTRY (CONFIG_TOMOYO_MAX_ACCEPT_ENTRY)  
 #define MAX_GRANT_LOG    (CONFIG_TOMOYO_MAX_GRANT_LOG)  
 #define MAX_REJECT_LOG   (CONFIG_TOMOYO_MAX_REJECT_LOG)  
 #else  
 #define MAX_ACCEPT_ENTRY 0  
 #define MAX_GRANT_LOG    0  
 #define MAX_REJECT_LOG   0  
 #endif  
16    
17  /* Has /sbin/init started? */  /* Has /sbin/init started? */
18  bool sbin_init_started = false;  bool ccs_policy_loaded;
   
 /* Log level for SAKURA's printk(). */  
 const char *ccs_log_level = KERN_DEBUG;  
   
 /* String table for functionality that takes 4 modes. */  
 static const char *mode_4[4] = {  
         "disabled", "learning", "permissive", "enforcing"  
 };  
 /* String table for functionality that takes 2 modes. */  
 static const char *mode_2[4] = {  
         "disabled", "enabled", "enabled", "enabled"  
 };  
   
 /* Table for profile. */  
 static struct {  
         const char *keyword;  
         unsigned int current_value;  
         const unsigned int max_value;  
 } ccs_control_array[CCS_MAX_CONTROL_INDEX] = {  
         [CCS_TOMOYO_MAC_FOR_FILE]        = { "MAC_FOR_FILE",        0, 3 },  
         [CCS_TOMOYO_MAC_FOR_ARGV0]       = { "MAC_FOR_ARGV0",       0, 3 },  
         [CCS_TOMOYO_MAC_FOR_ENV]         = { "MAC_FOR_ENV",         0, 3 },  
         [CCS_TOMOYO_MAC_FOR_NETWORK]     = { "MAC_FOR_NETWORK",     0, 3 },  
         [CCS_TOMOYO_MAC_FOR_SIGNAL]      = { "MAC_FOR_SIGNAL",      0, 3 },  
         [CCS_SAKURA_DENY_CONCEAL_MOUNT]  = { "DENY_CONCEAL_MOUNT",  0, 3 },  
         [CCS_SAKURA_RESTRICT_CHROOT]     = { "RESTRICT_CHROOT",     0, 3 },  
         [CCS_SAKURA_RESTRICT_MOUNT]      = { "RESTRICT_MOUNT",      0, 3 },  
         [CCS_SAKURA_RESTRICT_UNMOUNT]    = { "RESTRICT_UNMOUNT",    0, 3 },  
         [CCS_SAKURA_RESTRICT_PIVOT_ROOT] = { "RESTRICT_PIVOT_ROOT", 0, 3 },  
         [CCS_SAKURA_RESTRICT_AUTOBIND]   = { "RESTRICT_AUTOBIND",   0, 1 },  
         [CCS_TOMOYO_MAX_ACCEPT_ENTRY]  
         = { "MAX_ACCEPT_ENTRY",    MAX_ACCEPT_ENTRY, INT_MAX },  
         [CCS_TOMOYO_MAX_GRANT_LOG]  
         = { "MAX_GRANT_LOG",       MAX_GRANT_LOG, INT_MAX },  
         [CCS_TOMOYO_MAX_REJECT_LOG]  
         = { "MAX_REJECT_LOG",      MAX_REJECT_LOG, INT_MAX },  
         [CCS_TOMOYO_VERBOSE]             = { "TOMOYO_VERBOSE",      1, 1 },  
         [CCS_ALLOW_ENFORCE_GRACE]        = { "ALLOW_ENFORCE_GRACE", 0, 1 },  
         [CCS_SLEEP_PERIOD]  
         = { "SLEEP_PERIOD",        0, 3000 }, /* in 0.1 second */  
 };  
   
 #ifdef CONFIG_TOMOYO  
 /* Capability name used by domain policy. */  
 static const char *capability_control_keyword[TOMOYO_MAX_CAPABILITY_INDEX] = {  
         [TOMOYO_INET_STREAM_SOCKET_CREATE]  = "inet_tcp_create",  
         [TOMOYO_INET_STREAM_SOCKET_LISTEN]  = "inet_tcp_listen",  
         [TOMOYO_INET_STREAM_SOCKET_CONNECT] = "inet_tcp_connect",  
         [TOMOYO_USE_INET_DGRAM_SOCKET]      = "use_inet_udp",  
         [TOMOYO_USE_INET_RAW_SOCKET]        = "use_inet_ip",  
         [TOMOYO_USE_ROUTE_SOCKET]           = "use_route",  
         [TOMOYO_USE_PACKET_SOCKET]          = "use_packet",  
         [TOMOYO_SYS_MOUNT]                  = "SYS_MOUNT",  
         [TOMOYO_SYS_UMOUNT]                 = "SYS_UMOUNT",  
         [TOMOYO_SYS_REBOOT]                 = "SYS_REBOOT",  
         [TOMOYO_SYS_CHROOT]                 = "SYS_CHROOT",  
         [TOMOYO_SYS_KILL]                   = "SYS_KILL",  
         [TOMOYO_SYS_VHANGUP]                = "SYS_VHANGUP",  
         [TOMOYO_SYS_SETTIME]                = "SYS_TIME",  
         [TOMOYO_SYS_NICE]                   = "SYS_NICE",  
         [TOMOYO_SYS_SETHOSTNAME]            = "SYS_SETHOSTNAME",  
         [TOMOYO_USE_KERNEL_MODULE]          = "use_kernel_module",  
         [TOMOYO_CREATE_FIFO]                = "create_fifo",  
         [TOMOYO_CREATE_BLOCK_DEV]           = "create_block_dev",  
         [TOMOYO_CREATE_CHAR_DEV]            = "create_char_dev",  
         [TOMOYO_CREATE_UNIX_SOCKET]         = "create_unix_socket",  
         [TOMOYO_SYS_LINK]                   = "SYS_LINK",  
         [TOMOYO_SYS_SYMLINK]                = "SYS_SYMLINK",  
         [TOMOYO_SYS_RENAME]                 = "SYS_RENAME",  
         [TOMOYO_SYS_UNLINK]                 = "SYS_UNLINK",  
         [TOMOYO_SYS_CHMOD]                  = "SYS_CHMOD",  
         [TOMOYO_SYS_CHOWN]                  = "SYS_CHOWN",  
         [TOMOYO_SYS_IOCTL]                  = "SYS_IOCTL",  
         [TOMOYO_SYS_KEXEC_LOAD]             = "SYS_KEXEC_LOAD",  
         [TOMOYO_SYS_PIVOT_ROOT]             = "SYS_PIVOT_ROOT",  
         [TOMOYO_SYS_PTRACE]                 = "SYS_PTRACE",  
 };  
 #endif  
19    
20  /* Profile table. Memory is allocated as needed. */  /* Profile table. Memory is allocated as needed. */
21  static struct profile {  struct ccs_profile *ccs_profile_ptr[CCS_MAX_PROFILES];
         unsigned int value[CCS_MAX_CONTROL_INDEX];  
         const struct path_info *comment;  
 #ifdef CONFIG_TOMOYO  
         unsigned char capability_value[TOMOYO_MAX_CAPABILITY_INDEX];  
 #endif  
 } *profile_ptr[MAX_PROFILES];  
22    
23  /* Permit policy management by non-root user? */  static const u8 ccs_index2category[CCS_MAX_MAC_INDEX +
24  static bool manage_by_non_root = false;                                     CCS_MAX_CAPABILITY_INDEX] = {
25            [CCS_MAC_FILE_EXECUTE]    = CCS_MAC_CATEGORY_FILE,
26            [CCS_MAC_FILE_OPEN]       = CCS_MAC_CATEGORY_FILE,
27            [CCS_MAC_FILE_CREATE]     = CCS_MAC_CATEGORY_FILE,
28            [CCS_MAC_FILE_UNLINK]     = CCS_MAC_CATEGORY_FILE,
29            [CCS_MAC_FILE_MKDIR]      = CCS_MAC_CATEGORY_FILE,
30            [CCS_MAC_FILE_RMDIR]      = CCS_MAC_CATEGORY_FILE,
31            [CCS_MAC_FILE_MKFIFO]     = CCS_MAC_CATEGORY_FILE,
32            [CCS_MAC_FILE_MKSOCK]     = CCS_MAC_CATEGORY_FILE,
33            [CCS_MAC_FILE_TRUNCATE]   = CCS_MAC_CATEGORY_FILE,
34            [CCS_MAC_FILE_SYMLINK]    = CCS_MAC_CATEGORY_FILE,
35            [CCS_MAC_FILE_REWRITE]    = CCS_MAC_CATEGORY_FILE,
36            [CCS_MAC_FILE_MKBLOCK]    = CCS_MAC_CATEGORY_FILE,
37            [CCS_MAC_FILE_MKCHAR]     = CCS_MAC_CATEGORY_FILE,
38            [CCS_MAC_FILE_LINK]       = CCS_MAC_CATEGORY_FILE,
39            [CCS_MAC_FILE_RENAME]     = CCS_MAC_CATEGORY_FILE,
40            [CCS_MAC_FILE_CHMOD]      = CCS_MAC_CATEGORY_FILE,
41            [CCS_MAC_FILE_CHOWN]      = CCS_MAC_CATEGORY_FILE,
42            [CCS_MAC_FILE_CHGRP]      = CCS_MAC_CATEGORY_FILE,
43            [CCS_MAC_FILE_IOCTL]      = CCS_MAC_CATEGORY_FILE,
44            [CCS_MAC_FILE_CHROOT]     = CCS_MAC_CATEGORY_FILE,
45            [CCS_MAC_FILE_MOUNT]      = CCS_MAC_CATEGORY_FILE,
46            [CCS_MAC_FILE_UMOUNT]     = CCS_MAC_CATEGORY_FILE,
47            [CCS_MAC_FILE_PIVOT_ROOT] = CCS_MAC_CATEGORY_FILE,
48            [CCS_MAC_ENVIRON]         = CCS_MAC_CATEGORY_MISC,
49            [CCS_MAC_NETWORK_UDP_BIND]    = CCS_MAC_CATEGORY_NETWORK,
50            [CCS_MAC_NETWORK_UDP_CONNECT] = CCS_MAC_CATEGORY_NETWORK,
51            [CCS_MAC_NETWORK_TCP_BIND]    = CCS_MAC_CATEGORY_NETWORK,
52            [CCS_MAC_NETWORK_TCP_LISTEN]  = CCS_MAC_CATEGORY_NETWORK,
53            [CCS_MAC_NETWORK_TCP_CONNECT] = CCS_MAC_CATEGORY_NETWORK,
54            [CCS_MAC_NETWORK_TCP_ACCEPT]  = CCS_MAC_CATEGORY_NETWORK,
55            [CCS_MAC_NETWORK_RAW_BIND]    = CCS_MAC_CATEGORY_NETWORK,
56            [CCS_MAC_NETWORK_RAW_CONNECT] = CCS_MAC_CATEGORY_NETWORK,
57            [CCS_MAC_SIGNAL]          = CCS_MAC_CATEGORY_IPC,
58            [CCS_MAX_MAC_INDEX + CCS_INET_STREAM_SOCKET_CREATE]
59            = CCS_MAC_CATEGORY_CAPABILITY,
60            [CCS_MAX_MAC_INDEX + CCS_INET_STREAM_SOCKET_LISTEN]
61            = CCS_MAC_CATEGORY_CAPABILITY,
62            [CCS_MAX_MAC_INDEX + CCS_INET_STREAM_SOCKET_CONNECT]
63            = CCS_MAC_CATEGORY_CAPABILITY,
64            [CCS_MAX_MAC_INDEX + CCS_USE_INET_DGRAM_SOCKET]
65            = CCS_MAC_CATEGORY_CAPABILITY,
66            [CCS_MAX_MAC_INDEX + CCS_USE_INET_RAW_SOCKET]
67            = CCS_MAC_CATEGORY_CAPABILITY,
68            [CCS_MAX_MAC_INDEX + CCS_USE_ROUTE_SOCKET]
69            = CCS_MAC_CATEGORY_CAPABILITY,
70            [CCS_MAX_MAC_INDEX + CCS_USE_PACKET_SOCKET]
71            = CCS_MAC_CATEGORY_CAPABILITY,
72            [CCS_MAX_MAC_INDEX + CCS_SYS_MOUNT]
73            = CCS_MAC_CATEGORY_CAPABILITY,
74            [CCS_MAX_MAC_INDEX + CCS_SYS_UMOUNT]
75            = CCS_MAC_CATEGORY_CAPABILITY,
76            [CCS_MAX_MAC_INDEX + CCS_SYS_REBOOT]
77            = CCS_MAC_CATEGORY_CAPABILITY,
78            [CCS_MAX_MAC_INDEX + CCS_SYS_CHROOT]
79            = CCS_MAC_CATEGORY_CAPABILITY,
80            [CCS_MAX_MAC_INDEX + CCS_SYS_KILL]
81            = CCS_MAC_CATEGORY_CAPABILITY,
82            [CCS_MAX_MAC_INDEX + CCS_SYS_VHANGUP]
83            = CCS_MAC_CATEGORY_CAPABILITY,
84            [CCS_MAX_MAC_INDEX + CCS_SYS_SETTIME]
85            = CCS_MAC_CATEGORY_CAPABILITY,
86            [CCS_MAX_MAC_INDEX + CCS_SYS_NICE]
87            = CCS_MAC_CATEGORY_CAPABILITY,
88            [CCS_MAX_MAC_INDEX + CCS_SYS_SETHOSTNAME]
89            = CCS_MAC_CATEGORY_CAPABILITY,
90            [CCS_MAX_MAC_INDEX + CCS_USE_KERNEL_MODULE]
91            = CCS_MAC_CATEGORY_CAPABILITY,
92            [CCS_MAX_MAC_INDEX + CCS_CREATE_FIFO]
93            = CCS_MAC_CATEGORY_CAPABILITY,
94            [CCS_MAX_MAC_INDEX + CCS_CREATE_BLOCK_DEV]
95            = CCS_MAC_CATEGORY_CAPABILITY,
96            [CCS_MAX_MAC_INDEX + CCS_CREATE_CHAR_DEV]
97            = CCS_MAC_CATEGORY_CAPABILITY,
98            [CCS_MAX_MAC_INDEX + CCS_CREATE_UNIX_SOCKET]
99            = CCS_MAC_CATEGORY_CAPABILITY,
100            [CCS_MAX_MAC_INDEX + CCS_SYS_LINK]
101            = CCS_MAC_CATEGORY_CAPABILITY,
102            [CCS_MAX_MAC_INDEX + CCS_SYS_SYMLINK]
103            = CCS_MAC_CATEGORY_CAPABILITY,
104            [CCS_MAX_MAC_INDEX + CCS_SYS_RENAME]
105            = CCS_MAC_CATEGORY_CAPABILITY,
106            [CCS_MAX_MAC_INDEX + CCS_SYS_UNLINK]
107            = CCS_MAC_CATEGORY_CAPABILITY,
108            [CCS_MAX_MAC_INDEX + CCS_SYS_CHMOD]
109            = CCS_MAC_CATEGORY_CAPABILITY,
110            [CCS_MAX_MAC_INDEX + CCS_SYS_CHOWN]
111            = CCS_MAC_CATEGORY_CAPABILITY,
112            [CCS_MAX_MAC_INDEX + CCS_SYS_IOCTL]
113            = CCS_MAC_CATEGORY_CAPABILITY,
114            [CCS_MAX_MAC_INDEX + CCS_SYS_KEXEC_LOAD]
115            = CCS_MAC_CATEGORY_CAPABILITY,
116            [CCS_MAX_MAC_INDEX + CCS_SYS_PIVOT_ROOT]
117            = CCS_MAC_CATEGORY_CAPABILITY,
118            [CCS_MAX_MAC_INDEX + CCS_SYS_PTRACE]
119            = CCS_MAC_CATEGORY_CAPABILITY,
120            [CCS_MAX_MAC_INDEX + CCS_CONCEAL_MOUNT]
121            = CCS_MAC_CATEGORY_CAPABILITY,
122    };
123    
124  /* Utility functions. */  /* Utility functions. */
125    
 #ifdef CONFIG_TOMOYO  
126  /**  /**
127   * tomoyo_quiet_setup - Set TOMOYO_VERBOSE=0 by default.   * ccs_parse_ulong - Parse an "unsigned long" value.
128     *
129     * @result: Pointer to "unsigned long".
130     * @str:    Pointer to string to parse.
131     *
132     * Returns value type on success, 0 otherwise.
133     *
134     * The @src is updated to point the first character after the value
135     * on success.
136     */
137    u8 ccs_parse_ulong(unsigned long *result, char **str)
138    {
139            const char *cp = *str;
140            char *ep;
141            int base = 10;
142            if (*cp == '0') {
143                    char c = *(cp + 1);
144                    if (c == 'x' || c == 'X') {
145                            base = 16;
146                            cp += 2;
147                    } else if (c >= '0' && c <= '7') {
148                            base = 8;
149                            cp++;
150                    }
151            }
152            *result = simple_strtoul(cp, &ep, base);
153            if (cp == ep)
154                    return 0;
155            *str = ep;
156            switch (base) {
157            case 16:
158                    return CCS_VALUE_TYPE_HEXADECIMAL;
159            case 8:
160                    return CCS_VALUE_TYPE_OCTAL;
161            default:
162                    return CCS_VALUE_TYPE_DECIMAL;
163            }
164    }
165    
166    /**
167     * ccs_print_ulong - Print an "unsigned long" value.
168   *   *
169   * @str: Unused.   * @buffer:     Pointer to buffer.
170     * @buffer_len: Size of @buffer.
171     * @value:      An "unsigned long" value.
172     * @type:       Type of @value.
173   *   *
174   * Returns 0.   * Returns nothing.
175   */   */
176  static int __init tomoyo_quiet_setup(char *str)  void ccs_print_ulong(char *buffer, const int buffer_len,
177                         const unsigned long value, const u8 type)
178  {  {
179          ccs_control_array[CCS_TOMOYO_VERBOSE].current_value = 0;          if (type == CCS_VALUE_TYPE_DECIMAL)
180          return 0;                  snprintf(buffer, buffer_len, "%lu", value);
181            else if (type == CCS_VALUE_TYPE_OCTAL)
182                    snprintf(buffer, buffer_len, "0%lo", value);
183            else if (type == CCS_VALUE_TYPE_HEXADECIMAL)
184                    snprintf(buffer, buffer_len, "0x%lX", value);
185            else
186                    snprintf(buffer, buffer_len, "type(%u)", type);
187  }  }
188    
189  __setup("TOMOYO_QUIET", tomoyo_quiet_setup);  bool ccs_parse_name_union(const char *filename, struct ccs_name_union *ptr)
190  #endif  {
191            if (!ccs_is_correct_path(filename, 0, 0, 0))
192                    return false;
193            if (filename[0] == '@') {
194                    ptr->group = ccs_get_path_group(filename + 1);
195                    ptr->is_group = true;
196                    return ptr->group != NULL;
197            }
198            ptr->filename = ccs_get_name(filename);
199            ptr->is_group = false;
200            return ptr->filename != NULL;
201    }
202    
203    bool ccs_parse_number_union(char *data, struct ccs_number_union *num)
204    {
205            u8 type;
206            unsigned long v;
207            memset(num, 0, sizeof(*num));
208            if (data[0] == '@') {
209                    if (!ccs_is_correct_path(data, 0, 0, 0))
210                            return false;
211                    num->group = ccs_get_number_group(data + 1);
212                    num->is_group = true;
213                    return num->group != NULL;
214            }
215            type = ccs_parse_ulong(&v, &data);
216            if (!type)
217                    return false;
218            num->values[0] = v;
219            num->min_type = type;
220            if (!*data) {
221                    num->values[1] = v;
222                    num->max_type = type;
223                    return true;
224            }
225            if (*data++ != '-')
226                    return false;
227            type = ccs_parse_ulong(&v, &data);
228            if (!type || *data)
229                    return false;
230            num->values[1] = v;
231            num->max_type = type;
232            return true;
233    }
234    
235  /**  /**
236   * is_byte_range - Check whether the string isa \ooo style octal value.   * ccs_is_byte_range - Check whether the string isa \ooo style octal value.
237   *   *
238   * @str: Pointer to the string.   * @str: Pointer to the string.
239   *   *
240   * Returns true if @str is a \ooo style octal value, false otherwise.   * Returns true if @str is a \ooo style octal value, false otherwise.
241   */   */
242  static bool is_byte_range(const char *str)  static inline bool ccs_is_byte_range(const char *str)
243  {  {
244          return *str >= '0' && *str++ <= '3' &&          return *str >= '0' && *str++ <= '3' &&
245                  *str >= '0' && *str++ <= '7' &&                  *str >= '0' && *str++ <= '7' &&
# Line 182  static bool is_byte_range(const char *st Line 247  static bool is_byte_range(const char *st
247  }  }
248    
249  /**  /**
250   * is_decimal - Check whether the character is a decimal character.   * ccs_is_decimal - Check whether the character is a decimal character.
251   *   *
252   * @c: The character to check.   * @c: The character to check.
253   *   *
254   * Returns true if @c is a decimal character, false otherwise.   * Returns true if @c is a decimal character, false otherwise.
255   */   */
256  static bool is_decimal(const char c)  static inline bool ccs_is_decimal(const char c)
257  {  {
258          return (c >= '0' && c <= '9');          return c >= '0' && c <= '9';
259  }  }
260    
261  /**  /**
262   * is_hexadecimal - Check whether the character is a hexadecimal character.   * ccs_is_hexadecimal - Check whether the character is a hexadecimal character.
263   *   *
264   * @c: The character to check.   * @c: The character to check.
265   *   *
266   * Returns true if @c is a hexadecimal character, false otherwise.   * Returns true if @c is a hexadecimal character, false otherwise.
267   */   */
268  static bool is_hexadecimal(const char c)  static inline bool ccs_is_hexadecimal(const char c)
269  {  {
270          return ((c >= '0' && c <= '9') ||          return (c >= '0' && c <= '9') ||
271                  (c >= 'A' && c <= 'F') ||                  (c >= 'A' && c <= 'F') ||
272                  (c >= 'a' && c <= 'f'));                  (c >= 'a' && c <= 'f');
273  }  }
274    
275  /**  /**
276   * is_alphabet_char - Check whether the character is an alphabet.   * ccs_is_alphabet_char - Check whether the character is an alphabet.
277   *   *
278   * @c: The character to check.   * @c: The character to check.
279   *   *
280   * Returns true if @c is an alphabet character, false otherwise.   * Returns true if @c is an alphabet character, false otherwise.
281   */   */
282  static bool is_alphabet_char(const char c)  static inline bool ccs_is_alphabet_char(const char c)
283  {  {
284          return ((c >= 'A' && c <= 'F') || (c >= 'a' && c <= 'f'));          return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z');
285  }  }
286    
287  /**  /**
288   * make_byte - Make byte value from three octal characters.   * ccs_make_byte - Make byte value from three octal characters.
289   *   *
290   * @c1: The first character.   * @c1: The first character.
291   * @c2: The second character.   * @c2: The second character.
# Line 228  static bool is_alphabet_char(const char Line 293  static bool is_alphabet_char(const char
293   *   *
294   * Returns byte value.   * Returns byte value.
295   */   */
296  static u8 make_byte(const u8 c1, const u8 c2, const u8 c3)  static inline u8 ccs_make_byte(const u8 c1, const u8 c2, const u8 c3)
297  {  {
298          return ((c1 - '0') << 6) + ((c2 - '0') << 3) + (c3 - '0');          return ((c1 - '0') << 6) + ((c2 - '0') << 3) + (c3 - '0');
299  }  }
300    
301  /**  /**
302   * str_starts - Check whether the given string starts with the given keyword.   * ccs_str_starts - Check whether the given string starts with the given keyword.
303   *   *
304   * @src:  Pointer to pointer to the string.   * @src:  Pointer to pointer to the string.
305   * @find: Pointer to the keyword.   * @find: Pointer to the keyword.
# Line 244  static u8 make_byte(const u8 c1, const u Line 309  static u8 make_byte(const u8 c1, const u
309   * The @src is updated to point the first character after the @find   * The @src is updated to point the first character after the @find
310   * if @src starts with @find.   * if @src starts with @find.
311   */   */
312  static bool str_starts(char **src, const char *find)  bool ccs_str_starts(char **src, const char *find)
313  {  {
314          const int len = strlen(find);          const int len = strlen(find);
315          char *tmp = *src;          char *tmp = *src;
# Line 256  static bool str_starts(char **src, const Line 321  static bool str_starts(char **src, const
321  }  }
322    
323  /**  /**
324   * normalize_line - Format string.   * ccs_normalize_line - Format string.
325   *   *
326   * @buffer: The line to normalize.   * @buffer: The line to normalize.
327   *   *
# Line 265  static bool str_starts(char **src, const Line 330  static bool str_starts(char **src, const
330   *   *
331   * Returns nothing.   * Returns nothing.
332   */   */
333  static void normalize_line(unsigned char *buffer)  void ccs_normalize_line(unsigned char *buffer)
334  {  {
335          unsigned char *sp = buffer;          unsigned char *sp = buffer;
336          unsigned char *dp = buffer;          unsigned char *dp = buffer;
# Line 285  static void normalize_line(unsigned char Line 350  static void normalize_line(unsigned char
350  }  }
351    
352  /**  /**
353     * ccs_tokenize - Tokenize string.
354     *
355     * @buffer: The line to tokenize.
356     * @w:      Pointer to "char *".
357     * @size:   Sizeof @w .
358     *
359     * Returns true on success, false otherwise.
360     */
361    bool ccs_tokenize(char *buffer, char *w[], size_t size)
362    {
363            int count = size / sizeof(char *);
364            int i;
365            for (i = 0; i < count; i++)
366                    w[i] = "";
367            for (i = 0; i < count; i++) {
368                    char *cp = strchr(buffer, ' ');
369                    if (cp)
370                            *cp = '\0';
371                    w[i] = buffer;
372                    if (!cp)
373                            break;
374                    buffer = cp + 1;
375            }
376            return i < count || !*buffer;
377    }
378    
379    /**
380   * ccs_is_correct_path - Validate a pathname.   * ccs_is_correct_path - Validate a pathname.
381   * @filename:     The pathname to check.   * @filename:     The pathname to check.
382   * @start_type:   Should the pathname start with '/'?   * @start_type:   Should the pathname start with '/'?
# Line 293  static void normalize_line(unsigned char Line 385  static void normalize_line(unsigned char
385   *                1 = must / -1 = must not / 0 = don't care   *                1 = must / -1 = must not / 0 = don't care
386   * @end_type:     Should the pathname end with '/'?   * @end_type:     Should the pathname end with '/'?
387   *                1 = must / -1 = must not / 0 = don't care   *                1 = must / -1 = must not / 0 = don't care
  * @function:     The name of function calling me.  
388   *   *
389   * Check whether the given filename follows the naming rules.   * Check whether the given filename follows the naming rules.
390   * Returns true if @filename follows the naming rules, false otherwise.   * Returns true if @filename follows the naming rules, false otherwise.
391   */   */
392  bool ccs_is_correct_path(const char *filename, const s8 start_type,  bool ccs_is_correct_path(const char *filename, const s8 start_type,
393                           const s8 pattern_type, const s8 end_type,                           const s8 pattern_type, const s8 end_type)
                          const char *function)  
394  {  {
395          bool contains_pattern = false;          bool contains_pattern = false;
396          unsigned char c;          unsigned char c;
# Line 318  bool ccs_is_correct_path(const char *fil Line 408  bool ccs_is_correct_path(const char *fil
408                          goto out;                          goto out;
409          }          }
410          if (c)          if (c)
411                  c = *(strchr(filename, '\0') - 1);                  c = *(filename + strlen(filename) - 1);
412          if (end_type == 1) { /* Must end with '/' */          if (end_type == 1) { /* Must end with '/' */
413                  if (c != '/')                  if (c != '/')
414                          goto out;                          goto out;
# Line 326  bool ccs_is_correct_path(const char *fil Line 416  bool ccs_is_correct_path(const char *fil
416                  if (c == '/')                  if (c == '/')
417                          goto out;                          goto out;
418          }          }
419          while ((c = *filename++) != '\0') {          while (1) {
420                    c = *filename++;
421                    if (!c)
422                            break;
423                  if (c == '\\') {                  if (c == '\\') {
424                          switch ((c = *filename++)) {                          c = *filename++;
425                            switch (c) {
426                          case '\\':  /* "\\" */                          case '\\':  /* "\\" */
427                                  continue;                                  continue;
428                          case '$':   /* "\$" */                          case '$':   /* "\$" */
# Line 355  bool ccs_is_correct_path(const char *fil Line 449  bool ccs_is_correct_path(const char *fil
449                                  e = *filename++;                                  e = *filename++;
450                                  if (e < '0' || e > '7')                                  if (e < '0' || e > '7')
451                                          break;                                          break;
452                                  c = make_byte(c, d, e);                                  c = ccs_make_byte(c, d, e);
453                                  if (c && (c <= ' ' || c >= 127))                                  if (c && (c <= ' ' || c >= 127))
454                                          continue; /* pattern is not \000 */                                          continue; /* pattern is not \000 */
455                          }                          }
# Line 370  bool ccs_is_correct_path(const char *fil Line 464  bool ccs_is_correct_path(const char *fil
464          }          }
465          return true;          return true;
466   out:   out:
467          printk(KERN_DEBUG "%s: Invalid pathname '%s'\n", function,          printk(KERN_DEBUG "Invalid pathname '%s'\n", original_filename);
                original_filename);  
468          return false;          return false;
469  }  }
470    
471  /**  /**
472   * ccs_is_correct_domain - Check whether the given domainname follows the naming rules.   * ccs_is_correct_domain - Check whether the given domainname follows the naming rules.
473   * @domainname:   The domainname to check.   * @domainname:   The domainname to check.
  * @function:     The name of function calling me.  
474   *   *
475   * Returns true if @domainname follows the naming rules, false otherwise.   * Returns true if @domainname follows the naming rules, false otherwise.
476   */   */
477  bool ccs_is_correct_domain(const unsigned char *domainname,  bool ccs_is_correct_domain(const unsigned char *domainname)
                            const char *function)  
478  {  {
479          unsigned char c;          unsigned char c;
480          unsigned char d;          unsigned char d;
# Line 399  bool ccs_is_correct_domain(const unsigne Line 490  bool ccs_is_correct_domain(const unsigne
490                          goto out;                          goto out;
491                  if (*domainname++ != '/')                  if (*domainname++ != '/')
492                          goto out;                          goto out;
493                  while ((c = *domainname) != '\0' && c != ' ') {                  while (1) {
494                            c = *domainname;
495                            if (!c || c == ' ')
496                                    break;
497                          domainname++;                          domainname++;
498                          if (c == '\\') {                          if (c == '\\') {
499                                  c = *domainname++;                                  c = *domainname++;
# Line 416  bool ccs_is_correct_domain(const unsigne Line 510  bool ccs_is_correct_domain(const unsigne
510                                          e = *domainname++;                                          e = *domainname++;
511                                          if (e < '0' || e > '7')                                          if (e < '0' || e > '7')
512                                                  break;                                                  break;
513                                          c = make_byte(c, d, e);                                          c = ccs_make_byte(c, d, e);
514                                          if (c && (c <= ' ' || c >= 127))                                          if (c && (c <= ' ' || c >= 127))
515                                                  /* pattern is not \000 */                                                  /* pattern is not \000 */
516                                                  continue;                                                  continue;
# Line 429  bool ccs_is_correct_domain(const unsigne Line 523  bool ccs_is_correct_domain(const unsigne
523          } while (*domainname);          } while (*domainname);
524          return true;          return true;
525   out:   out:
526          printk(KERN_DEBUG "%s: Invalid domainname '%s'\n", function,          printk(KERN_DEBUG "Invalid domainname '%s'\n", org_domainname);
                org_domainname);  
527          return false;          return false;
528  }  }
529    
# Line 451  bool ccs_is_domain_def(const unsigned ch Line 544  bool ccs_is_domain_def(const unsigned ch
544   *   *
545   * @domainname: The domainname to find.   * @domainname: The domainname to find.
546   *   *
547   * Returns pointer to "struct domain_info" if found, NULL otherwise.   * Returns pointer to "struct ccs_domain_info" if found, NULL otherwise.
548     *
549     * Caller holds ccs_read_lock().
550   */   */
551  struct domain_info *ccs_find_domain(const char *domainname)  struct ccs_domain_info *ccs_find_domain(const char *domainname)
552  {  {
553          struct domain_info *domain;          struct ccs_domain_info *domain;
554          struct path_info name;          struct ccs_path_info name;
555            ccs_assert_read_lock();
556          name.name = domainname;          name.name = domainname;
557          ccs_fill_path_info(&name);          ccs_fill_path_info(&name);
558          list1_for_each_entry(domain, &domain_list, list) {          list_for_each_entry_rcu(domain, &ccs_domain_list, list) {
559                  if (!domain->is_deleted &&                  if (!domain->is_deleted &&
560                      !ccs_pathcmp(&name, domain->domainname))                      !ccs_pathcmp(&name, domain->domainname))
561                          return domain;                          return domain;
# Line 468  struct domain_info *ccs_find_domain(cons Line 564  struct domain_info *ccs_find_domain(cons
564  }  }
565    
566  /**  /**
567   * path_depth - Evaluate the number of '/' in a string.   * ccs_path_depth - Evaluate the number of '/' in a string.
568   *   *
569   * @pathname: The string to evaluate.   * @pathname: The string to evaluate.
570   *   *
# Line 477  struct domain_info *ccs_find_domain(cons Line 573  struct domain_info *ccs_find_domain(cons
573   * I score 2 for each of the '/' in the @pathname   * I score 2 for each of the '/' in the @pathname
574   * and score 1 if the @pathname ends with '/'.   * and score 1 if the @pathname ends with '/'.
575   */   */
576  static int path_depth(const char *pathname)  static int ccs_path_depth(const char *pathname)
577  {  {
578          int i = 0;          int i = 0;
579          if (pathname) {          if (pathname) {
580                  char *ep = strchr(pathname, '\0');                  const char *ep = pathname + strlen(pathname);
581                  if (pathname < ep--) {                  if (pathname < ep--) {
582                          if (*ep != '/')                          if (*ep != '/')
583                                  i++;                                  i++;
# Line 494  static int path_depth(const char *pathna Line 590  static int path_depth(const char *pathna
590  }  }
591    
592  /**  /**
593   * const_part_length - Evaluate the initial length without a pattern in a token.   * ccs_const_part_length - Evaluate the initial length without a pattern in a token.
594   *   *
595   * @filename: The string to evaluate.   * @filename: The string to evaluate.
596   *   *
597   * Returns the initial length without a pattern in @filename.   * Returns the initial length without a pattern in @filename.
598   */   */
599  static int const_part_length(const char *filename)  static int ccs_const_part_length(const char *filename)
600  {  {
601          char c;          char c;
602          int len = 0;          int len = 0;
603          if (!filename)          if (!filename)
604                  return 0;                  return 0;
605          while ((c = *filename++) != '\0') {          while (1) {
606                    c = *filename++;
607                    if (!c)
608                            break;
609                  if (c != '\\') {                  if (c != '\\') {
610                          len++;                          len++;
611                          continue;                          continue;
# Line 535  static int const_part_length(const char Line 634  static int const_part_length(const char
634  }  }
635    
636  /**  /**
637   * ccs_fill_path_info - Fill in "struct path_info" members.   * ccs_fill_path_info - Fill in "struct ccs_path_info" members.
638   *   *
639   * @ptr: Pointer to "struct path_info" to fill in.   * @ptr: Pointer to "struct ccs_path_info" to fill in.
640   *   *
641   * The caller sets "struct path_info"->name.   * The caller sets "struct ccs_path_info"->name.
642   */   */
643  void ccs_fill_path_info(struct path_info *ptr)  void ccs_fill_path_info(struct ccs_path_info *ptr)
644  {  {
645          const char *name = ptr->name;          const char *name = ptr->name;
646          const int len = strlen(name);          const int len = strlen(name);
647          ptr->total_len = len;          ptr->total_len = len;
648          ptr->const_len = const_part_length(name);          ptr->const_len = ccs_const_part_length(name);
649          ptr->is_dir = len && (name[len - 1] == '/');          ptr->is_dir = len && (name[len - 1] == '/');
650          ptr->is_patterned = (ptr->const_len < len);          ptr->is_patterned = (ptr->const_len < len);
651          ptr->hash = full_name_hash(name, len);          ptr->hash = full_name_hash(name, len);
652          ptr->depth = path_depth(name);          ptr->depth = ccs_path_depth(name);
653  }  }
654    
655  /**  /**
656   * file_matches_to_pattern2 - Pattern matching without '/' character   * ccs_file_matches_pattern2 - Pattern matching without '/' character
657   * and "\-" pattern.   * and "\-" pattern.
658   *   *
659   * @filename:     The start of string to check.   * @filename:     The start of string to check.
# Line 564  void ccs_fill_path_info(struct path_info Line 663  void ccs_fill_path_info(struct path_info
663   *   *
664   * Returns true if @filename matches @pattern, false otherwise.   * Returns true if @filename matches @pattern, false otherwise.
665   */   */
666  static bool file_matches_to_pattern2(const char *filename,  static bool ccs_file_matches_pattern2(const char *filename,
667                                       const char *filename_end,                                        const char *filename_end,
668                                       const char *pattern,                                        const char *pattern,
669                                       const char *pattern_end)                                        const char *pattern_end)
670  {  {
671          while (filename < filename_end && pattern < pattern_end) {          while (filename < filename_end && pattern < pattern_end) {
672                  char c;                  char c;
# Line 587  static bool file_matches_to_pattern2(con Line 686  static bool file_matches_to_pattern2(con
686                          } else if (c == '\\') {                          } else if (c == '\\') {
687                                  if (filename[1] == '\\')                                  if (filename[1] == '\\')
688                                          filename++;                                          filename++;
689                                  else if (is_byte_range(filename + 1))                                  else if (ccs_is_byte_range(filename + 1))
690                                          filename += 3;                                          filename += 3;
691                                  else                                  else
692                                          return false;                                          return false;
# Line 600  static bool file_matches_to_pattern2(con Line 699  static bool file_matches_to_pattern2(con
699                                  return false;                                  return false;
700                          break;                          break;
701                  case '+':                  case '+':
702                          if (!is_decimal(c))                          if (!ccs_is_decimal(c))
703                                  return false;                                  return false;
704                          break;                          break;
705                  case 'x':                  case 'x':
706                          if (!is_hexadecimal(c))                          if (!ccs_is_hexadecimal(c))
707                                  return false;                                  return false;
708                          break;                          break;
709                  case 'a':                  case 'a':
710                          if (!is_alphabet_char(c))                          if (!ccs_is_alphabet_char(c))
711                                  return false;                                  return false;
712                          break;                          break;
713                  case '0':                  case '0':
714                  case '1':                  case '1':
715                  case '2':                  case '2':
716                  case '3':                  case '3':
717                          if (c == '\\' && is_byte_range(filename + 1)                          if (c == '\\' && ccs_is_byte_range(filename + 1)
718                              && strncmp(filename + 1, pattern, 3) == 0) {                              && strncmp(filename + 1, pattern, 3) == 0) {
719                                  filename += 3;                                  filename += 3;
720                                  pattern += 2;                                  pattern += 2;
# Line 625  static bool file_matches_to_pattern2(con Line 724  static bool file_matches_to_pattern2(con
724                  case '*':                  case '*':
725                  case '@':                  case '@':
726                          for (i = 0; i <= filename_end - filename; i++) {                          for (i = 0; i <= filename_end - filename; i++) {
727                                  if (file_matches_to_pattern2(filename + i,                                  if (ccs_file_matches_pattern2(filename + i,
728                                                               filename_end,                                                                filename_end,
729                                                               pattern + 1,                                                                pattern + 1,
730                                                               pattern_end))                                                                pattern_end))
731                                          return true;                                          return true;
732                                  c = filename[i];                                  c = filename[i];
733                                  if (c == '.' && *pattern == '@')                                  if (c == '.' && *pattern == '@')
# Line 637  static bool file_matches_to_pattern2(con Line 736  static bool file_matches_to_pattern2(con
736                                          continue;                                          continue;
737                                  if (filename[i + 1] == '\\')                                  if (filename[i + 1] == '\\')
738                                          i++;                                          i++;
739                                  else if (is_byte_range(filename + i + 1))                                  else if (ccs_is_byte_range(filename + i + 1))
740                                          i += 3;                                          i += 3;
741                                  else                                  else
742                                          break; /* Bad pattern. */                                          break; /* Bad pattern. */
# Line 647  static bool file_matches_to_pattern2(con Line 746  static bool file_matches_to_pattern2(con
746                          j = 0;                          j = 0;
747                          c = *pattern;                          c = *pattern;
748                          if (c == '$') {                          if (c == '$') {
749                                  while (is_decimal(filename[j]))                                  while (ccs_is_decimal(filename[j]))
750                                          j++;                                          j++;
751                          } else if (c == 'X') {                          } else if (c == 'X') {
752                                  while (is_hexadecimal(filename[j]))                                  while (ccs_is_hexadecimal(filename[j]))
753                                          j++;                                          j++;
754                          } else if (c == 'A') {                          } else if (c == 'A') {
755                                  while (is_alphabet_char(filename[j]))                                  while (ccs_is_alphabet_char(filename[j]))
756                                          j++;                                          j++;
757                          }                          }
758                          for (i = 1; i <= j; i++) {                          for (i = 1; i <= j; i++) {
759                                  if (file_matches_to_pattern2(filename + i,                                  if (ccs_file_matches_pattern2(filename + i,
760                                                               filename_end,                                                                filename_end,
761                                                               pattern + 1,                                                                pattern + 1,
762                                                               pattern_end))                                                                pattern_end))
763                                          return true;                                          return true;
764                          }                          }
765                          return false; /* Not matched or bad pattern. */                          return false; /* Not matched or bad pattern. */
# Line 671  static bool file_matches_to_pattern2(con Line 770  static bool file_matches_to_pattern2(con
770          while (*pattern == '\\' &&          while (*pattern == '\\' &&
771                 (*(pattern + 1) == '*' || *(pattern + 1) == '@'))                 (*(pattern + 1) == '*' || *(pattern + 1) == '@'))
772                  pattern += 2;                  pattern += 2;
773          return (filename == filename_end && pattern == pattern_end);          return filename == filename_end && pattern == pattern_end;
774  }  }
775    
776  /**  /**
777   * file_matches_to_pattern - Pattern matching without without '/' character.   * ccs_file_matches_pattern - Pattern matching without without '/' character.
778   *   *
779   * @filename:     The start of string to check.   * @filename:     The start of string to check.
780   * @filename_end: The end of string to check.   * @filename_end: The end of string to check.
# Line 684  static bool file_matches_to_pattern2(con Line 783  static bool file_matches_to_pattern2(con
783   *   *
784   * Returns true if @filename matches @pattern, false otherwise.   * Returns true if @filename matches @pattern, false otherwise.
785   */   */
786  static bool file_matches_to_pattern(const char *filename,  static bool ccs_file_matches_pattern(const char *filename,
787                                      const char *filename_end,                                       const char *filename_end,
788                                      const char *pattern,                                       const char *pattern,
789                                      const char *pattern_end)                                       const char *pattern_end)
790  {  {
791          const char *pattern_start = pattern;          const char *pattern_start = pattern;
792          bool first = true;          bool first = true;
# Line 696  static bool file_matches_to_pattern(cons Line 795  static bool file_matches_to_pattern(cons
795                  /* Split at "\-" pattern. */                  /* Split at "\-" pattern. */
796                  if (*pattern++ != '\\' || *pattern++ != '-')                  if (*pattern++ != '\\' || *pattern++ != '-')
797                          continue;                          continue;
798                  result = file_matches_to_pattern2(filename, filename_end,                  result = ccs_file_matches_pattern2(filename, filename_end,
799                                                    pattern_start, pattern - 2);                                                     pattern_start, pattern - 2);
800                  if (first)                  if (first)
801                          result = !result;                          result = !result;
802                  if (result)                  if (result)
# Line 705  static bool file_matches_to_pattern(cons Line 804  static bool file_matches_to_pattern(cons
804                  first = false;                  first = false;
805                  pattern_start = pattern;                  pattern_start = pattern;
806          }          }
807          result = file_matches_to_pattern2(filename, filename_end,          result = ccs_file_matches_pattern2(filename, filename_end,
808                                            pattern_start, pattern_end);                                             pattern_start, pattern_end);
809          return first ? result : !result;          return first ? result : !result;
810  }  }
811    
# Line 731  static bool file_matches_to_pattern(cons Line 830  static bool file_matches_to_pattern(cons
830   *   \a     1 alphabet character.   *   \a     1 alphabet character.
831   *   \-     Subtraction operator.   *   \-     Subtraction operator.
832   */   */
833  bool ccs_path_matches_pattern(const struct path_info *filename,  bool ccs_path_matches_pattern(const struct ccs_path_info *filename,
834                                const struct path_info *pattern)                                const struct ccs_path_info *pattern)
835  {  {
836          /*          /*
837            if (!filename || !pattern)            if (!filename || !pattern)
# Line 744  bool ccs_path_matches_pattern(const stru Line 843  bool ccs_path_matches_pattern(const stru
843          /* If @pattern doesn't contain pattern, I can use strcmp(). */          /* If @pattern doesn't contain pattern, I can use strcmp(). */
844          if (!pattern->is_patterned)          if (!pattern->is_patterned)
845                  return !ccs_pathcmp(filename, pattern);                  return !ccs_pathcmp(filename, pattern);
846          /* Dont compare if the number of '/' differs. */          /* Don't compare if the number of '/' differs. */
847          if (filename->depth != pattern->depth)          if (filename->depth != pattern->depth)
848                  return false;                  return false;
849          /* Compare the initial length without patterns. */          /* Compare the initial length without patterns. */
# Line 757  bool ccs_path_matches_pattern(const stru Line 856  bool ccs_path_matches_pattern(const stru
856                  const char *f_delimiter = strchr(f, '/');                  const char *f_delimiter = strchr(f, '/');
857                  const char *p_delimiter = strchr(p, '/');                  const char *p_delimiter = strchr(p, '/');
858                  if (!f_delimiter)                  if (!f_delimiter)
859                          f_delimiter = strchr(f, '\0');                          f_delimiter = f + strlen(f);
860                  if (!p_delimiter)                  if (!p_delimiter)
861                          p_delimiter = strchr(p, '\0');                          p_delimiter = p + strlen(p);
862                  if (!file_matches_to_pattern(f, f_delimiter, p, p_delimiter))                  if (!ccs_file_matches_pattern(f, f_delimiter, p, p_delimiter))
863                          return false;                          return false;
864                  f = f_delimiter;                  f = f_delimiter;
865                  if (*f)                  if (*f)
# Line 773  bool ccs_path_matches_pattern(const stru Line 872  bool ccs_path_matches_pattern(const stru
872          while (*p == '\\' &&          while (*p == '\\' &&
873                 (*(p + 1) == '*' || *(p + 1) == '@'))                 (*(p + 1) == '*' || *(p + 1) == '@'))
874                  p += 2;                  p += 2;
875          return (!*f && !*p);          return !*f && !*p;
 }  
   
 /**  
  * ccs_io_printf - Transactional printf() to "struct ccs_io_buffer" structure.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  * @fmt:  The printf()'s format string, followed by parameters.  
  *  
  * Returns true on success, false otherwise.  
  *  
  * The snprintf() will truncate, but ccs_io_printf() won't.  
  */  
 bool ccs_io_printf(struct ccs_io_buffer *head, const char *fmt, ...)  
 {  
         va_list args;  
         int len;  
         int pos = head->read_avail;  
         int size = head->readbuf_size - pos;  
         if (size <= 0)  
                 return false;  
         va_start(args, fmt);  
         len = vsnprintf(head->read_buf + pos, size, fmt, args);  
         va_end(args);  
         if (pos + len >= head->readbuf_size)  
                 return false;  
         head->read_avail += len;  
         return true;  
876  }  }
877    
878  /**  /**
# Line 808  bool ccs_io_printf(struct ccs_io_buffer Line 880  bool ccs_io_printf(struct ccs_io_buffer
880   *   *
881   * Returns the ccs_realpath() of current process on success, NULL otherwise.   * Returns the ccs_realpath() of current process on success, NULL otherwise.
882   *   *
883   * This function uses ccs_alloc(), so the caller must ccs_free()   * This function uses kzalloc(), so the caller must kfree()
884   * if this function didn't return NULL.   * if this function didn't return NULL.
885   */   */
886  const char *ccs_get_exe(void)  const char *ccs_get_exe(void)
# Line 821  const char *ccs_get_exe(void) Line 893  const char *ccs_get_exe(void)
893          down_read(&mm->mmap_sem);          down_read(&mm->mmap_sem);
894          for (vma = mm->mmap; vma; vma = vma->vm_next) {          for (vma = mm->mmap; vma; vma = vma->vm_next) {
895                  if ((vma->vm_flags & VM_EXECUTABLE) && vma->vm_file) {                  if ((vma->vm_flags & VM_EXECUTABLE) && vma->vm_file) {
896                          cp = ccs_realpath_from_dentry(vma->vm_file->f_dentry,  #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20)
897                                                        vma->vm_file->f_vfsmnt);                          struct path path = { vma->vm_file->f_vfsmnt,
898                                                 vma->vm_file->f_dentry };
899                            cp = ccs_realpath_from_path(&path);
900    #else
901                            cp = ccs_realpath_from_path(&vma->vm_file->f_path);
902    #endif
903                          break;                          break;
904                  }                  }
905          }          }
# Line 831  const char *ccs_get_exe(void) Line 908  const char *ccs_get_exe(void)
908  }  }
909    
910  /**  /**
911   * ccs_get_msg - Get warning message.   * ccs_flags - Check mode for specified functionality.
  *  
  * @is_enforce: Is it enforcing mode?  
  *  
  * Returns "ERROR" or "WARNING".  
  */  
 const char *ccs_get_msg(const bool is_enforce)  
 {  
         if (is_enforce)  
                 return "ERROR";  
         else  
                 return "WARNING";  
 }  
   
 /**  
  * ccs_check_flags_no_sleep_check - Check mode for specified functionality.  
912   *   *
913   * @index: The functionality to check mode.   * @domain: Pointer to "struct ccs_domain_info". NULL for ccs_current_domain().
914     * @index:  The functionality to check mode.
915   *   *
916   * Returns the mode of specified functionality.   * Returns the mode of specified functionality.
917   */   */
918  unsigned int ccs_check_flags_no_sleep_check(const u8 index)  unsigned int ccs_flags(const struct ccs_domain_info *domain,
919                           const u8 index)
920  {  {
921          const u8 profile = current->domain_info->profile;          u8 profile;
922          return sbin_init_started && index < CCS_MAX_CONTROL_INDEX          if (!domain)
923  #if MAX_PROFILES != 256                  domain = ccs_current_domain();
924                  && profile < MAX_PROFILES          profile = domain->profile;
925            return ccs_policy_loaded && index < CCS_MAX_CONTROL_INDEX
926    #if CCS_MAX_PROFILES != 256
927                    && profile < CCS_MAX_PROFILES
928  #endif  #endif
929                  && profile_ptr[profile] ?                  && ccs_profile_ptr[profile] ?
930                  profile_ptr[profile]->value[index] : 0;                  ccs_profile_ptr[profile]->value[index] : 0;
931  }  }
932    
933  /**  /**
934   * sleep_check - Check whether it is permitted to do operations that may sleep.   * ccs_get_audit - Get audit mode.
935   *   *
936   * Returns true if it is permitted to do operations that may sleep,   * @profile:    Profile number.
937   * false otherwise.   * @index:      Index number of functionality.
938     * @is_granted: True if granted log, false otehrwise.
939   *   *
940   * TOMOYO Linux supports interactive enforcement that lets processes   * Returns mode.
  * wait for the administrator's decision.  
  * All hooks but the one for ccs_may_autobind() are inserted where  
  * it is permitted to do operations that may sleep.  
  * Thus, this warning should not happen.  
941   */   */
942  static bool sleep_check(void)  bool ccs_get_audit(const u8 profile, const u8 index, const bool is_granted)
943  {  {
944          static u8 count = 20;          u8 mode;
945          if (likely(!in_interrupt()))          const u8 category = ccs_index2category[index] + CCS_MAX_MAC_INDEX
946                  return true;                  + CCS_MAX_CAPABILITY_INDEX;
947          if (count) {          if (!ccs_policy_loaded || !ccs_profile_ptr[profile])
948                  count--;                  return false;
949                  printk(KERN_ERR "BUG: sleeping function called "          mode = ccs_profile_ptr[profile]->config[index];
950                         "from invalid context.\n");          if (mode == CCS_MAC_MODE_USE_DEFAULT)
951                  dump_stack();                  mode = ccs_profile_ptr[profile]->config[category];
952          }          if (mode == CCS_MAC_MODE_USE_DEFAULT)
953          return false;                  mode = ccs_profile_ptr[profile]->default_config;
954            if (is_granted)
955                    return !(mode & CCS_MAC_MODE_NO_GRANT_LOG);
956            return !(mode & CCS_MAC_MODE_NO_REJECT_LOG);
957  }  }
958    
959  /**  /**
960   * ccs_check_flags - Check mode for specified functionality.   * ccs_get_mode - Get MAC mode.
961   *   *
962   * @index: The functionality to check mode.   * @profile: Profile number.
963     * @index:   Index number of functionality.
964   *   *
965   * Returns the mode of specified functionality.   * Returns mode.
966   */   */
967  unsigned int ccs_check_flags(const u8 index)  int ccs_get_mode(const u8 profile, const u8 index)
968  {  {
969          return sleep_check() ? ccs_check_flags_no_sleep_check(index) : 0;          u8 mode;
970            const u8 category = ccs_index2category[index] + CCS_MAX_MAC_INDEX
971                    + CCS_MAX_CAPABILITY_INDEX;
972            if (!ccs_policy_loaded || !ccs_profile_ptr[profile])
973                    return CCS_MAC_MODE_DISABLED;
974            mode = ccs_profile_ptr[profile]->config[index];
975            if (mode == CCS_MAC_MODE_USE_DEFAULT)
976                    mode = ccs_profile_ptr[profile]->config[category];
977            if (mode == CCS_MAC_MODE_USE_DEFAULT)
978                    mode = ccs_profile_ptr[profile]->default_config;
979            return mode & 3;
980  }  }
981    
 #ifdef CONFIG_TOMOYO  
982  /**  /**
983   * ccs_check_capability_flags - Check mode for specified capability.   * ccs_init_request_info - Initialize "struct ccs_request_info" members.
984   *   *
985   * @index: The capability to check mode.   * @r:      Pointer to "struct ccs_request_info" to initialize.
986     * @domain: Pointer to "struct ccs_domain_info". NULL for ccs_current_domain().
987     * @index:  Index number of functionality.
988   *   *
989   * Returns the mode of specified capability.   * Returns mode.
990   */   */
991  u8 ccs_check_capability_flags(const u8 index)  int ccs_init_request_info(struct ccs_request_info *r,
992                              struct ccs_domain_info *domain, const u8 index)
993  {  {
994          const u8 profile = current->domain_info->profile;          u8 profile;
995          return sbin_init_started && index < TOMOYO_MAX_CAPABILITY_INDEX          memset(r, 0, sizeof(*r));
996  #if MAX_PROFILES != 256          if (!domain)
997                  && profile < MAX_PROFILES                  domain = ccs_current_domain();
998  #endif          r->domain = domain;
999                  && sleep_check()          profile = domain->profile;
1000                  && profile_ptr[profile] ?          r->profile = profile;
1001                  profile_ptr[profile]->capability_value[index] : 0;          r->type = index;
1002            r->mode = ccs_get_mode(profile, index);
1003            return r->mode;
1004  }  }
1005    
1006  /**  /**
1007   * ccs_cap2keyword - Convert capability operation to capability name.   * ccs_last_word - Get last component of a line.
1008   *   *
1009   * @operation: The capability index.   * @line: A line.
1010   *   *
1011   * Returns the name of the specified capability's name.   * Returns the last word of a line.
1012   */   */
1013  const char *ccs_cap2keyword(const u8 operation)  const char *ccs_last_word(const char *name)
1014  {  {
1015          return operation < TOMOYO_MAX_CAPABILITY_INDEX          const char *cp = strrchr(name, ' ');
1016                  ? capability_control_keyword[operation] : NULL;          if (cp)
1017                    return cp + 1;
1018            return name;
1019  }  }
1020    
1021  #endif  void ccs_warn_log(struct ccs_request_info *r, const char *fmt, ...)
   
 /**  
  * ccs_verbose_mode - Check whether TOMOYO is verbose mode.  
  *  
  * Returns true if domain policy violation warning should be printed to  
  * console.  
  */  
 bool ccs_verbose_mode(void)  
1022  {  {
1023          return ccs_check_flags(CCS_TOMOYO_VERBOSE) != 0;          int len = PAGE_SIZE;
1024            va_list args;
1025            char *buffer;
1026            if (!ccs_flags(r->domain, CCS_VERBOSE))
1027                    return;
1028            while (1) {
1029                    int len2;
1030                    buffer = kmalloc(len, GFP_KERNEL);
1031                    if (!buffer)
1032                            return;
1033                    va_start(args, fmt);
1034                    len2 = vsnprintf(buffer, len - 1, fmt, args);
1035                    va_end(args);
1036                    if (len2 < len - 1) {
1037                            buffer[len2] = '\0';
1038                            break;
1039                    }
1040                    len = len2 + 1;
1041                    kfree(buffer);
1042            }
1043            printk(KERN_WARNING "%s: Access %s denied for %s\n",
1044                   r->mode == CCS_MAC_MODE_ENFORCING ? "ERROR" : "WARNING", buffer,
1045                   ccs_last_word(r->domain->domainname->name));
1046            kfree(buffer);
1047  }  }
1048    
1049  /**  /**
1050   * ccs_check_domain_quota - Check for domain's quota.   * ccs_domain_quota_ok - Check for domain's quota.
1051   *   *
1052   * @domain: Pointer to "struct domain_info".   * @r: Pointer to "struct ccs_request_info".
1053   *   *
1054   * Returns true if the domain is not exceeded quota, false otherwise.   * Returns true if the domain is not exceeded quota, false otherwise.
1055     *
1056     * Caller holds ccs_read_lock().
1057   */   */
1058  bool ccs_check_domain_quota(struct domain_info * const domain)  bool ccs_domain_quota_ok(struct ccs_request_info *r)
1059  {  {
1060          unsigned int count = 0;          unsigned int count = 0;
1061          struct acl_info *ptr;          struct ccs_domain_info *domain = r->domain;
1062            struct ccs_acl_info *ptr;
1063            ccs_assert_read_lock();
1064            if (r->mode != 1)
1065                    return false;
1066          if (!domain)          if (!domain)
1067                  return true;                  return true;
1068          list1_for_each_entry(ptr, &domain->acl_info_list, list) {          list_for_each_entry_rcu(ptr, &domain->acl_info_list, list) {
1069                  if (ptr->type & ACL_DELETED)                  if (ptr->is_deleted)
1070                          continue;                          continue;
1071                  switch (ccs_acl_type2(ptr)) {                  switch (ptr->type) {
                         struct single_path_acl_record *acl1;  
                         struct double_path_acl_record *acl2;  
1072                          u16 perm;                          u16 perm;
1073                  case TYPE_SINGLE_PATH_ACL:                          u8 i;
1074                          acl1 = container_of(ptr, struct single_path_acl_record,                  case CCS_TYPE_PATH_ACL:
1075                                              head);                          perm = container_of(ptr, struct ccs_path_acl, head)->
1076                          perm = acl1->perm;                                  perm;
1077                          if (perm & (1 << TYPE_EXECUTE_ACL))                          for (i = 0; i < CCS_MAX_PATH_OPERATION; i++)
1078                                  count++;                                  if (perm & (1 << i))
1079                          if (perm &                                          count++;
1080                              ((1 << TYPE_READ_ACL) | (1 << TYPE_WRITE_ACL)))                          if (perm & (1 << CCS_TYPE_READ_WRITE))
1081                                  count++;                                  count -= 2;
1082                          if (perm & (1 << TYPE_CREATE_ACL))                          break;
1083                                  count++;                  case CCS_TYPE_PATH2_ACL:
1084                          if (perm & (1 << TYPE_UNLINK_ACL))                          perm = container_of(ptr, struct ccs_path2_acl,
1085                                  count++;                                              head)->perm;
1086                          if (perm & (1 << TYPE_MKDIR_ACL))                          for (i = 0; i < CCS_MAX_PATH2_OPERATION; i++)
1087                                  count++;                                  if (perm & (1 << i))
1088                          if (perm & (1 << TYPE_RMDIR_ACL))                                          count++;
                                 count++;  
                         if (perm & (1 << TYPE_MKFIFO_ACL))  
                                 count++;  
                         if (perm & (1 << TYPE_MKSOCK_ACL))  
                                 count++;  
                         if (perm & (1 << TYPE_MKBLOCK_ACL))  
                                 count++;  
                         if (perm & (1 << TYPE_MKCHAR_ACL))  
                                 count++;  
                         if (perm & (1 << TYPE_TRUNCATE_ACL))  
                                 count++;  
                         if (perm & (1 << TYPE_SYMLINK_ACL))  
                                 count++;  
                         if (perm & (1 << TYPE_REWRITE_ACL))  
                                 count++;  
1089                          break;                          break;
1090                  case TYPE_DOUBLE_PATH_ACL:                  case CCS_TYPE_EXECUTE_HANDLER:
1091                          acl2 = container_of(ptr, struct double_path_acl_record,                  case CCS_TYPE_DENIED_EXECUTE_HANDLER:
                                             head);  
                         perm = acl2->perm;  
                         if (perm & (1 << TYPE_LINK_ACL))  
                                 count++;  
                         if (perm & (1 << TYPE_RENAME_ACL))  
                                 count++;  
1092                          break;                          break;
1093                  case TYPE_EXECUTE_HANDLER:                  case CCS_TYPE_PATH_NUMBER_ACL:
1094                  case TYPE_DENIED_EXECUTE_HANDLER:                          perm = container_of(ptr, struct ccs_path_number_acl,
1095                                                head)->perm;
1096                            for (i = 0; i < CCS_MAX_PATH_NUMBER_OPERATION; i++)
1097                                    if (perm & (1 << i))
1098                                            count++;
1099                            break;
1100                    case CCS_TYPE_PATH_NUMBER3_ACL:
1101                            perm = container_of(ptr,
1102                                                struct ccs_path_number3_acl,
1103                                                head)->perm;
1104                            for (i = 0; i < CCS_MAX_PATH_NUMBER3_OPERATION;
1105                                 i++)
1106                                    if (perm & (1 << i))
1107                                            count++;
1108                            break;
1109                    case CCS_TYPE_IP_NETWORK_ACL:
1110                            perm = container_of(ptr, struct ccs_ip_network_acl,
1111                                                head)->perm;
1112                            for (i = 0; i < CCS_MAX_NETWORK_OPERATION; i++)
1113                                    if (perm & (1 << i))
1114                                            count++;
1115                          break;                          break;
1116                  default:                  default:
1117                          count++;                          count++;
1118                  }                  }
1119          }          }
1120          if (count < ccs_check_flags(CCS_TOMOYO_MAX_ACCEPT_ENTRY))          if (count < ccs_flags(domain, CCS_MAX_ACCEPT_ENTRY))
1121                  return true;                  return true;
1122          if (!domain->quota_warned) {          if (!domain->quota_warned) {
1123                  domain->quota_warned = true;                  domain->quota_warned = true;
1124                  printk(KERN_WARNING "TOMOYO-WARNING: "                  printk(KERN_WARNING "WARNING: "
1125                         "Domain '%s' has so many ACLs to hold. "                         "Domain '%s' has so many ACLs to hold. "
1126                         "Stopped learning mode.\n", domain->domainname->name);                         "Stopped learning mode.\n", domain->domainname->name);
1127          }          }
1128          return false;          return false;
1129  }  }
   
 /**  
  * ccs_find_or_assign_new_profile - Create a new profile.  
  *  
  * @profile: Profile number to create.  
  *  
  * Returns pointer to "struct profile" on success, NULL otherwise.  
  */  
 static struct profile *ccs_find_or_assign_new_profile(const unsigned int  
                                                       profile)  
 {  
         static DEFINE_MUTEX(profile_lock);  
         struct profile *ptr = NULL;  
         mutex_lock(&profile_lock);  
         if (profile < MAX_PROFILES) {  
                 ptr = profile_ptr[profile];  
                 if (ptr)  
                         goto ok;  
                 ptr = ccs_alloc_element(sizeof(*ptr));  
                 if (ptr) {  
                         int i;  
                         for (i = 0; i < CCS_MAX_CONTROL_INDEX; i++)  
                                 ptr->value[i]  
                                         = ccs_control_array[i].current_value;  
                         /*  
                          * Needn't to initialize "ptr->capability_value"  
                          * because they are always 0.  
                          */  
                         mb(); /* Avoid out-of-order execution. */  
                         profile_ptr[profile] = ptr;  
                 }  
         }  
  ok:  
         mutex_unlock(&profile_lock);  
         return ptr;  
 }  
   
 /**  
  * write_profile - Write profile table.  
  *  
  * @head: Pointer to "struct ccs_io_buffer"  
  *  
  * Returns 0 on success, negative value otherwise.  
  */  
 static int write_profile(struct ccs_io_buffer *head)  
 {  
         char *data = head->write_buf;  
         unsigned int i;  
         unsigned int value;  
         char *cp;  
         struct profile *profile;  
         i = simple_strtoul(data, &cp, 10);  
         if (data != cp) {  
                 if (*cp != '-')  
                         return -EINVAL;  
                 data = cp + 1;  
         }  
         profile = ccs_find_or_assign_new_profile(i);  
         if (!profile)  
                 return -EINVAL;  
         cp = strchr(data, '=');  
         if (!cp)  
                 return -EINVAL;  
         *cp = '\0';  
         ccs_update_counter(CCS_UPDATES_COUNTER_PROFILE);  
         if (!strcmp(data, "COMMENT")) {  
                 profile->comment = ccs_save_name(cp + 1);  
                 return 0;  
         }  
 #ifdef CONFIG_TOMOYO  
         if (str_starts(&data, KEYWORD_MAC_FOR_CAPABILITY)) {  
                 if (sscanf(cp + 1, "%u", &value) != 1) {  
                         for (i = 0; i < 4; i++) {  
                                 if (strcmp(cp + 1, mode_4[i]))  
                                         continue;  
                                 value = i;  
                                 break;  
                         }  
                         if (i == 4)  
                                 return -EINVAL;  
                 }  
                 if (value > 3)  
                         value = 3;  
                 for (i = 0; i < TOMOYO_MAX_CAPABILITY_INDEX; i++) {  
                         if (strcmp(data, capability_control_keyword[i]))  
                                 continue;  
                         profile->capability_value[i] = value;  
                         return 0;  
                 }  
                 return -EINVAL;  
         }  
 #endif  
         for (i = 0; i < CCS_MAX_CONTROL_INDEX; i++) {  
                 if (strcmp(data, ccs_control_array[i].keyword))  
                         continue;  
                 if (sscanf(cp + 1, "%u", &value) != 1) {  
                         int j;  
                         const char **modes;  
                         switch (i) {  
                         case CCS_SAKURA_RESTRICT_AUTOBIND:  
                         case CCS_TOMOYO_VERBOSE:  
                         case CCS_ALLOW_ENFORCE_GRACE:  
                                 modes = mode_2;  
                                 break;  
                         default:  
                                 modes = mode_4;  
                                 break;  
                         }  
                         for (j = 0; j < 4; j++) {  
                                 if (strcmp(cp + 1, modes[j]))  
                                         continue;  
                                 value = j;  
                                 break;  
                         }  
                         if (j == 4)  
                                 return -EINVAL;  
                 } else if (value > ccs_control_array[i].max_value) {  
                         value = ccs_control_array[i].max_value;  
                 }  
                 switch (i) {  
                 case CCS_SAKURA_DENY_CONCEAL_MOUNT:  
                 case CCS_SAKURA_RESTRICT_UNMOUNT:  
                         if (value == 1)  
                                 value = 2; /* learning mode is not supported. */  
                 }  
                 profile->value[i] = value;  
                 return 0;  
         }  
         return -EINVAL;  
 }  
   
 /**  
  * read_profile - Read profile table.  
  *  
  * @head: Pointer to "struct ccs_io_buffer"  
  *  
  * Returns 0.  
  */  
 static int read_profile(struct ccs_io_buffer *head)  
 {  
         static const int total  
                 = CCS_MAX_CONTROL_INDEX + TOMOYO_MAX_CAPABILITY_INDEX + 1;  
         int step;  
         if (head->read_eof)  
                 return 0;  
         for (step = head->read_step; step < MAX_PROFILES * total; step++) {  
                 const u8 index = step / total;  
                 u8 type = step % total;  
                 const struct profile *profile = profile_ptr[index];  
                 head->read_step = step;  
                 if (!profile)  
                         continue;  
 #if !defined(CONFIG_SAKURA) || !defined(CONFIG_TOMOYO)  
                 switch (type) {  
 #ifndef CONFIG_SAKURA  
                 case CCS_SAKURA_DENY_CONCEAL_MOUNT:  
                 case CCS_SAKURA_RESTRICT_CHROOT:  
                 case CCS_SAKURA_RESTRICT_MOUNT:  
                 case CCS_SAKURA_RESTRICT_UNMOUNT:  
                 case CCS_SAKURA_RESTRICT_PIVOT_ROOT:  
                 case CCS_SAKURA_RESTRICT_AUTOBIND:  
 #endif  
 #ifndef CONFIG_TOMOYO  
                 case CCS_TOMOYO_MAC_FOR_FILE:  
                 case CCS_TOMOYO_MAC_FOR_ARGV0:  
                 case CCS_TOMOYO_MAC_FOR_ENV:  
                 case CCS_TOMOYO_MAC_FOR_NETWORK:  
                 case CCS_TOMOYO_MAC_FOR_SIGNAL:  
                 case CCS_TOMOYO_MAX_ACCEPT_ENTRY:  
                 case CCS_TOMOYO_MAX_GRANT_LOG:  
                 case CCS_TOMOYO_MAX_REJECT_LOG:  
                 case CCS_TOMOYO_VERBOSE:  
 #endif  
                         continue;  
                 }  
 #endif  
                 if (!type) { /* Print profile' comment tag. */  
                         if (!ccs_io_printf(head, "%u-COMMENT=%s\n",  
                                            index, profile->comment ?  
                                            profile->comment->name : ""))  
                                 break;  
                         continue;  
                 }  
                 type--;  
                 if (type >= CCS_MAX_CONTROL_INDEX) {  
 #ifdef CONFIG_TOMOYO  
                         const int i = type - CCS_MAX_CONTROL_INDEX;  
                         const u8 value = profile->capability_value[i];  
                         if (!ccs_io_printf(head,  
                                            "%u-" KEYWORD_MAC_FOR_CAPABILITY  
                                            "%s=%s\n", index,  
                                            capability_control_keyword[i],  
                                            mode_4[value]))  
                                 break;  
 #endif  
                 } else {  
                         const unsigned int value = profile->value[type];  
                         const char **modes = NULL;  
                         const char *keyword = ccs_control_array[type].keyword;  
                         switch (ccs_control_array[type].max_value) {  
                         case 3:  
                                 modes = mode_4;  
                                 break;  
                         case 1:  
                                 modes = mode_2;  
                                 break;  
                         }  
                         if (modes) {  
                                 if (!ccs_io_printf(head, "%u-%s=%s\n", index,  
                                                    keyword, modes[value]))  
                                         break;  
                         } else {  
                                 if (!ccs_io_printf(head, "%u-%s=%u\n", index,  
                                                    keyword, value))  
                                         break;  
                         }  
                 }  
         }  
         if (step == MAX_PROFILES * total)  
                 head->read_eof = true;  
         return 0;  
 }  
   
 /* Structure for policy manager. */  
 struct policy_manager_entry {  
         struct list1_head list;  
         /* A path to program or a domainname. */  
         const struct path_info *manager;  
         bool is_domain;  /* True if manager is a domainname. */  
         bool is_deleted; /* True if this entry is deleted. */  
 };  
   
 /* The list for "struct policy_manager_entry". */  
 static LIST1_HEAD(policy_manager_list);  
   
 /**  
  * update_manager_entry - Add a manager entry.  
  *  
  * @manager:   The path to manager or the domainnamme.  
  * @is_delete: True if it is a delete request.  
  *  
  * Returns 0 on success, negative value otherwise.  
  */  
 static int update_manager_entry(const char *manager, const bool is_delete)  
 {  
         struct policy_manager_entry *new_entry;  
         struct policy_manager_entry *ptr;  
         static DEFINE_MUTEX(lock);  
         const struct path_info *saved_manager;  
         int error = -ENOMEM;  
         bool is_domain = false;  
         if (ccs_is_domain_def(manager)) {  
                 if (!ccs_is_correct_domain(manager, __func__))  
                         return -EINVAL;  
                 is_domain = true;  
         } else {  
                 if (!ccs_is_correct_path(manager, 1, -1, -1, __func__))  
                         return -EINVAL;  
         }  
         saved_manager = ccs_save_name(manager);  
         if (!saved_manager)  
                 return -ENOMEM;  
         mutex_lock(&lock);  
         list1_for_each_entry(ptr, &policy_manager_list, list) {  
                 if (ptr->manager != saved_manager)  
                         continue;  
                 ptr->is_deleted = is_delete;  
                 error = 0;  
                 goto out;  
         }  
         if (is_delete) {  
                 error = -ENOENT;  
                 goto out;  
         }  
         new_entry = ccs_alloc_element(sizeof(*new_entry));  
         if (!new_entry)  
                 goto out;  
         new_entry->manager = saved_manager;  
         new_entry->is_domain = is_domain;  
         list1_add_tail_mb(&new_entry->list, &policy_manager_list);  
         error = 0;  
  out:  
         mutex_unlock(&lock);  
         if (!error)  
                 ccs_update_counter(CCS_UPDATES_COUNTER_MANAGER);  
         return error;  
 }  
   
 /**  
  * write_manager_policy - Write manager policy.  
  *  
  * @head: Pointer to "struct ccs_io_buffer"  
  *  
  * Returns 0 on success, negative value otherwise.  
  */  
 static int write_manager_policy(struct ccs_io_buffer *head)  
 {  
         char *data = head->write_buf;  
         bool is_delete = str_starts(&data, KEYWORD_DELETE);  
         if (!strcmp(data, "manage_by_non_root")) {  
                 manage_by_non_root = !is_delete;  
                 return 0;  
         }  
         return update_manager_entry(data, is_delete);  
 }  
   
 /**  
  * read_manager_policy - Read manager policy.  
  *  
  * @head: Pointer to "struct ccs_io_buffer"  
  *  
  * Returns 0.  
  */  
 static int read_manager_policy(struct ccs_io_buffer *head)  
 {  
         struct list1_head *pos;  
         if (head->read_eof)  
                 return 0;  
         list1_for_each_cookie(pos, head->read_var2, &policy_manager_list) {  
                 struct policy_manager_entry *ptr;  
                 ptr = list1_entry(pos, struct policy_manager_entry, list);  
                 if (ptr->is_deleted)  
                         continue;  
                 if (!ccs_io_printf(head, "%s\n", ptr->manager->name))  
                         return 0;  
         }  
         head->read_eof = true;  
         return 0;  
 }  
   
 /**  
  * is_policy_manager - Check whether the current process is a policy manager.  
  *  
  * Returns true if the current process is permitted to modify policy  
  * via /proc/ccs/ interface.  
  */  
 static bool is_policy_manager(void)  
 {  
         struct policy_manager_entry *ptr;  
         const char *exe;  
         const struct task_struct *task = current;  
         const struct path_info *domainname = task->domain_info->domainname;  
         bool found = false;  
         if (!sbin_init_started)  
                 return true;  
         if (!manage_by_non_root && (task->uid || task->euid))  
                 return false;  
         list1_for_each_entry(ptr, &policy_manager_list, list) {  
                 if (!ptr->is_deleted && ptr->is_domain  
                     && !ccs_pathcmp(domainname, ptr->manager))  
                         return true;  
         }  
         exe = ccs_get_exe();  
         if (!exe)  
                 return false;  
         list1_for_each_entry(ptr, &policy_manager_list, list) {  
                 if (!ptr->is_deleted && !ptr->is_domain  
                     && !strcmp(exe, ptr->manager->name)) {  
                         found = true;  
                         break;  
                 }  
         }  
         if (!found) { /* Reduce error messages. */  
                 static pid_t last_pid;  
                 const pid_t pid = current->pid;  
                 if (last_pid != pid) {  
                         printk(KERN_WARNING "%s ( %s ) is not permitted to "  
                                "update policies.\n", domainname->name, exe);  
                         last_pid = pid;  
                 }  
         }  
         ccs_free(exe);  
         return found;  
 }  
   
 #ifdef CONFIG_TOMOYO  
   
 /**  
  * ccs_find_condition_part - Find condition part from the statement.  
  *  
  * @data: String to parse.  
  *  
  * Returns pointer to the condition part if it was found in the statement,  
  * NULL otherwise.  
  */  
 static char *ccs_find_condition_part(char *data)  
 {  
         char *cp = strstr(data, " if ");  
         if (cp) {  
                 char *cp2;  
                 while ((cp2 = strstr(cp + 3, " if ")) != NULL)  
                         cp = cp2;  
                 *cp++ = '\0';  
         } else {  
                 cp = strstr(data, " ; set ");  
                 if (cp)  
                         *cp++ = '\0';  
         }  
         return cp;  
 }  
   
 /**  
  * write_domain_policy - Write domain policy.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  *  
  * Returns 0 on success, negative value otherwise.  
  */  
 static int write_domain_policy(struct ccs_io_buffer *head)  
 {  
         char *data = head->write_buf;  
         struct domain_info *domain = head->write_var1;  
         bool is_delete = false;  
         bool is_select = false;  
         bool is_undelete = false;  
         unsigned int profile;  
         const struct condition_list *cond = NULL;  
         char *cp;  
         if (str_starts(&data, KEYWORD_DELETE))  
                 is_delete = true;  
         else if (str_starts(&data, KEYWORD_SELECT))  
                 is_select = true;  
         else if (str_starts(&data, KEYWORD_UNDELETE))  
                 is_undelete = true;  
         if (ccs_is_domain_def(data)) {  
                 domain = NULL;  
                 if (is_delete)  
                         ccs_delete_domain(data);  
                 else if (is_select)  
                         domain = ccs_find_domain(data);  
                 else if (is_undelete)  
                         domain = ccs_undelete_domain(data);  
                 else  
                         domain = ccs_find_or_assign_new_domain(data, 0);  
                 head->write_var1 = domain;  
                 ccs_update_counter(CCS_UPDATES_COUNTER_DOMAIN_POLICY);  
                 return 0;  
         }  
         if (!domain)  
                 return -EINVAL;  
   
         if (sscanf(data, KEYWORD_USE_PROFILE "%u", &profile) == 1  
             && profile < MAX_PROFILES) {  
                 if (profile_ptr[profile] || !sbin_init_started)  
                         domain->profile = (u8) profile;  
                 return 0;  
         }  
         if (!strcmp(data, KEYWORD_IGNORE_GLOBAL_ALLOW_READ)) {  
                 ccs_set_domain_flag(domain, is_delete,  
                                     DOMAIN_FLAGS_IGNORE_GLOBAL_ALLOW_READ);  
                 return 0;  
         }  
         if (!strcmp(data, KEYWORD_IGNORE_GLOBAL_ALLOW_ENV)) {  
                 ccs_set_domain_flag(domain, is_delete,  
                                     DOMAIN_FLAGS_IGNORE_GLOBAL_ALLOW_ENV);  
                 return 0;  
         }  
         cp = ccs_find_condition_part(data);  
         if (cp) {  
                 cond = ccs_find_or_assign_new_condition(cp);  
                 if (!cond)  
                         return -EINVAL;  
         }  
         if (str_starts(&data, KEYWORD_ALLOW_CAPABILITY))  
                 return ccs_write_capability_policy(data, domain, cond,  
                                                    is_delete);  
         else if (str_starts(&data, KEYWORD_ALLOW_NETWORK))  
                 return ccs_write_network_policy(data, domain, cond, is_delete);  
         else if (str_starts(&data, KEYWORD_ALLOW_SIGNAL))  
                 return ccs_write_signal_policy(data, domain, cond, is_delete);  
         else if (str_starts(&data, KEYWORD_ALLOW_ARGV0))  
                 return ccs_write_argv0_policy(data, domain, cond, is_delete);  
         else if (str_starts(&data, KEYWORD_ALLOW_ENV))  
                 return ccs_write_env_policy(data, domain, cond, is_delete);  
         else  
                 return ccs_write_file_policy(data, domain, cond, is_delete);  
 }  
   
 /**  
  * print_single_path_acl - Print a single path ACL entry.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  * @ptr:  Pointer to "struct single_path_acl_record".  
  * @cond: Pointer to "struct condition_list". May be NULL.  
  *  
  * Returns true on success, false otherwise.  
  */  
 static bool print_single_path_acl(struct ccs_io_buffer *head,  
                                   struct single_path_acl_record *ptr,  
                                   const struct condition_list *cond)  
 {  
         int pos;  
         u8 bit;  
         const char *atmark = "";  
         const char *filename;  
         const u16 perm = ptr->perm;  
         if (ptr->u_is_group) {  
                 atmark = "@";  
                 filename = ptr->u.group->group_name->name;  
         } else {  
                 filename = ptr->u.filename->name;  
         }  
         for (bit = head->read_bit; bit < MAX_SINGLE_PATH_OPERATION; bit++) {  
                 const char *msg;  
                 if (!(perm & (1 << bit)))  
                         continue;  
                 /* Print "read/write" instead of "read" and "write". */  
                 if ((bit == TYPE_READ_ACL || bit == TYPE_WRITE_ACL)  
                     && (perm & (1 << TYPE_READ_WRITE_ACL)))  
                         continue;  
                 msg = ccs_sp2keyword(bit);  
                 pos = head->read_avail;  
                 if (!ccs_io_printf(head, "allow_%s %s%s", msg,  
                                    atmark, filename) ||  
                     !ccs_print_condition(head, cond))  
                         goto out;  
         }  
         head->read_bit = 0;  
         return true;  
  out:  
         head->read_bit = bit;  
         head->read_avail = pos;  
         return false;  
 }  
   
 /**  
  * print_double_path_acl - Print a double path ACL entry.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  * @ptr:  Pointer to "struct double_path_acl_record".  
  * @cond: Pointer to "struct condition_list". May be NULL.  
  *  
  * Returns true on success, false otherwise.  
  */  
 static bool print_double_path_acl(struct ccs_io_buffer *head,  
                                   struct double_path_acl_record *ptr,  
                                   const struct condition_list *cond)  
 {  
         int pos;  
         const char *atmark1 = "";  
         const char *atmark2 = "";  
         const char *filename1;  
         const char *filename2;  
         const u8 perm = ptr->perm;  
         u8 bit;  
         if (ptr->u1_is_group) {  
                 atmark1 = "@";  
                 filename1 = ptr->u1.group1->group_name->name;  
         } else {  
                 filename1 = ptr->u1.filename1->name;  
         }  
         if (ptr->u2_is_group) {  
                 atmark2 = "@";  
                 filename2 = ptr->u2.group2->group_name->name;  
         } else {  
                 filename2 = ptr->u2.filename2->name;  
         }  
         for (bit = head->read_bit; bit < MAX_DOUBLE_PATH_OPERATION; bit++) {  
                 const char *msg;  
                 if (!(perm & (1 << bit)))  
                         continue;  
                 msg = ccs_dp2keyword(bit);  
                 pos = head->read_avail;  
                 if (!ccs_io_printf(head, "allow_%s %s%s %s%s", msg,  
                                    atmark1, filename1, atmark2, filename2) ||  
                     !ccs_print_condition(head, cond))  
                         goto out;  
         }  
         head->read_bit = 0;  
         return true;  
  out:  
         head->read_bit = bit;  
         head->read_avail = pos;  
         return false;  
 }  
   
 /**  
  * print_argv0_acl - Print an argv[0] ACL entry.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  * @ptr:  Pointer to "struct argv0_acl_record".  
  * @cond: Pointer to "struct condition_list". May be NULL.  
  *  
  * Returns true on success, false otherwise.  
  */  
 static bool print_argv0_acl(struct ccs_io_buffer *head,  
                             struct argv0_acl_record *ptr,  
                             const struct condition_list *cond)  
 {  
         int pos = head->read_avail;  
         if (!ccs_io_printf(head, KEYWORD_ALLOW_ARGV0 "%s %s",  
                            ptr->filename->name, ptr->argv0->name))  
                 goto out;  
         if (!ccs_print_condition(head, cond))  
                 goto out;  
         return true;  
  out:  
         head->read_avail = pos;  
         return false;  
 }  
   
 /**  
  * print_env_acl - Print an evironment variable name's ACL entry.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  * @ptr:  Pointer to "struct env_acl_record".  
  * @cond: Pointer to "struct condition_list". May be NULL.  
  *  
  * Returns true on success, false otherwise.  
  */  
 static bool print_env_acl(struct ccs_io_buffer *head,  
                           struct env_acl_record *ptr,  
                           const struct condition_list *cond)  
 {  
         int pos = head->read_avail;  
         if (!ccs_io_printf(head, KEYWORD_ALLOW_ENV "%s", ptr->env->name))  
                 goto out;  
         if (!ccs_print_condition(head, cond))  
                 goto out;  
         return true;  
  out:  
         head->read_avail = pos;  
         return false;  
 }  
   
 /**  
  * print_capability_acl - Print a capability ACL entry.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  * @ptr:  Pointer to "struct capability_acl_record".  
  * @cond: Pointer to "struct condition_list". May be NULL.  
  *  
  * Returns true on success, false otherwise.  
  */  
 static bool print_capability_acl(struct ccs_io_buffer *head,  
                                  struct capability_acl_record *ptr,  
                                  const struct condition_list *cond)  
 {  
         int pos = head->read_avail;  
         if (!ccs_io_printf(head, KEYWORD_ALLOW_CAPABILITY "%s",  
                            ccs_cap2keyword(ptr->operation)))  
                 goto out;  
         if (!ccs_print_condition(head, cond))  
                 goto out;  
         return true;  
  out:  
         head->read_avail = pos;  
         return false;  
 }  
   
 /**  
  * print_ipv4_entry - Print IPv4 address of a network ACL entry.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  * @ptr:  Pointer to "struct ip_network_acl_record".  
  *  
  * Returns true on success, false otherwise.  
  */  
 static bool print_ipv4_entry(struct ccs_io_buffer *head,  
                              struct ip_network_acl_record *ptr)  
 {  
         const u32 min_address = ptr->u.ipv4.min;  
         const u32 max_address = ptr->u.ipv4.max;  
         if (!ccs_io_printf(head, "%u.%u.%u.%u", HIPQUAD(min_address)))  
                 return false;  
         if (min_address != max_address  
             && !ccs_io_printf(head, "-%u.%u.%u.%u", HIPQUAD(max_address)))  
                 return false;  
         return true;  
 }  
   
 /**  
  * print_ipv6_entry - Print IPv6 address of a network ACL entry.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  * @ptr:  Pointer to "struct ip_network_acl_record".  
  *  
  * Returns true on success, false otherwise.  
  */  
 static bool print_ipv6_entry(struct ccs_io_buffer *head,  
                              struct ip_network_acl_record *ptr)  
 {  
         char buf[64];  
         const struct in6_addr *min_address = ptr->u.ipv6.min;  
         const struct in6_addr *max_address = ptr->u.ipv6.max;  
         ccs_print_ipv6(buf, sizeof(buf), min_address);  
         if (!ccs_io_printf(head, "%s", buf))  
                 return false;  
         if (min_address != max_address) {  
                 ccs_print_ipv6(buf, sizeof(buf), max_address);  
                 if (!ccs_io_printf(head, "-%s", buf))  
                         return false;  
         }  
         return true;  
 }  
   
 /**  
  * print_port_entry - Print port number of a network ACL entry.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  * @ptr:  Pointer to "struct ip_network_acl_record".  
  *  
  * Returns true on success, false otherwise.  
  */  
 static bool print_port_entry(struct ccs_io_buffer *head,  
                              struct ip_network_acl_record *ptr)  
 {  
         const u16 min_port = ptr->min_port, max_port = ptr->max_port;  
         if (!ccs_io_printf(head, " %u", min_port))  
                 return false;  
         if (min_port != max_port && !ccs_io_printf(head, "-%u", max_port))  
                 return false;  
         return true;  
 }  
   
 /**  
  * print_network_acl - Print a network ACL entry.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  * @ptr:  Pointer to "struct ip_network_acl_record".  
  * @cond: Pointer to "struct condition_list". May be NULL.  
  *  
  * Returns true on success, false otherwise.  
  */  
 static bool print_network_acl(struct ccs_io_buffer *head,  
                               struct ip_network_acl_record *ptr,  
                               const struct condition_list *cond)  
 {  
         int pos = head->read_avail;  
         if (!ccs_io_printf(head, KEYWORD_ALLOW_NETWORK "%s ",  
                            ccs_net2keyword(ptr->operation_type)))  
                 goto out;  
         switch (ptr->record_type) {  
         case IP_RECORD_TYPE_ADDRESS_GROUP:  
                 if (!ccs_io_printf(head, "@%s", ptr->u.group->group_name->name))  
                         goto out;  
                 break;  
         case IP_RECORD_TYPE_IPv4:  
                 if (!print_ipv4_entry(head, ptr))  
                         goto out;  
                 break;  
         case IP_RECORD_TYPE_IPv6:  
                 if (!print_ipv6_entry(head, ptr))  
                         goto out;  
                 break;  
         }  
         if (!print_port_entry(head, ptr))  
                 goto out;  
         if (!ccs_print_condition(head, cond))  
                 goto out;  
         return true;  
  out:  
         head->read_avail = pos;  
         return false;  
 }  
   
 /**  
  * print_signal_acl - Print a signal ACL entry.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  * @ptr:  Pointer to "struct signale_acl_record".  
  * @cond: Pointer to "struct condition_list". May be NULL.  
  *  
  * Returns true on success, false otherwise.  
  */  
 static bool print_signal_acl(struct ccs_io_buffer *head,  
                              struct signal_acl_record *ptr,  
                              const struct condition_list *cond)  
 {  
         int pos = head->read_avail;  
         if (!ccs_io_printf(head, KEYWORD_ALLOW_SIGNAL "%u %s",  
                            ptr->sig, ptr->domainname->name))  
                 goto out;  
         if (!ccs_print_condition(head, cond))  
                 goto out;  
         return true;  
  out:  
         head->read_avail = pos;  
         return false;  
 }  
   
 /**  
  * print_execute_handler_record - Print an execute handler ACL entry.  
  *  
  * @head:    Pointer to "struct ccs_io_buffer".  
  * @keyword: Name of the keyword.  
  * @ptr:     Pointer to "struct execute_handler_record".  
  *  
  * Returns true on success, false otherwise.  
  */  
 static bool print_execute_handler_record(struct ccs_io_buffer *head,  
                                          const char *keyword,  
                                          struct execute_handler_record *ptr)  
 {  
         return ccs_io_printf(head, "%s %s\n", keyword, ptr->handler->name);  
 }  
   
 /**  
  * print_entry - Print an ACL entry.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  * @ptr:  Pointer to an ACL entry.  
  *  
  * Returns true on success, false otherwise.  
  */  
 static bool print_entry(struct ccs_io_buffer *head, struct acl_info *ptr)  
 {  
         const struct condition_list *cond = ccs_get_condition_part(ptr);  
         const u8 acl_type = ccs_acl_type2(ptr);  
         if (acl_type & ACL_DELETED)  
                 return true;  
         if (acl_type == TYPE_SINGLE_PATH_ACL) {  
                 struct single_path_acl_record *acl  
                         = container_of(ptr, struct single_path_acl_record,  
                                        head);  
                 return print_single_path_acl(head, acl, cond);  
         }  
         if (acl_type == TYPE_DOUBLE_PATH_ACL) {  
                 struct double_path_acl_record *acl  
                         = container_of(ptr, struct double_path_acl_record,  
                                        head);  
                 return print_double_path_acl(head, acl, cond);  
         }  
         if (acl_type == TYPE_ARGV0_ACL) {  
                 struct argv0_acl_record *acl  
                         = container_of(ptr, struct argv0_acl_record, head);  
                 return print_argv0_acl(head, acl, cond);  
         }  
         if (acl_type == TYPE_ENV_ACL) {  
                 struct env_acl_record *acl  
                         = container_of(ptr, struct env_acl_record, head);  
                 return print_env_acl(head, acl, cond);  
         }  
         if (acl_type == TYPE_CAPABILITY_ACL) {  
                 struct capability_acl_record *acl  
                         = container_of(ptr, struct capability_acl_record, head);  
                 return print_capability_acl(head, acl, cond);  
         }  
         if (acl_type == TYPE_IP_NETWORK_ACL) {  
                 struct ip_network_acl_record *acl  
                         = container_of(ptr, struct ip_network_acl_record, head);  
                 return print_network_acl(head, acl, cond);  
         }  
         if (acl_type == TYPE_SIGNAL_ACL) {  
                 struct signal_acl_record *acl  
                         = container_of(ptr, struct signal_acl_record, head);  
                 return print_signal_acl(head, acl, cond);  
         }  
         if (acl_type == TYPE_EXECUTE_HANDLER) {  
                 struct execute_handler_record *acl  
                         = container_of(ptr, struct execute_handler_record,  
                                        head);  
                 const char *keyword = KEYWORD_EXECUTE_HANDLER;  
                 return print_execute_handler_record(head, keyword, acl);  
         }  
         if (acl_type == TYPE_DENIED_EXECUTE_HANDLER) {  
                 struct execute_handler_record *acl  
                         = container_of(ptr, struct execute_handler_record,  
                                        head);  
                 const char *keyword = KEYWORD_DENIED_EXECUTE_HANDLER;  
                 return print_execute_handler_record(head, keyword, acl);  
         }  
         /* Workaround for gcc 3.2.2's inline bug. */  
         if (acl_type & ACL_DELETED)  
                 return true;  
         BUG(); /* This must not happen. */  
         return false;  
 }  
   
 /**  
  * read_domain_policy - Read domain policy.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  *  
  * Returns 0.  
  */  
 static int read_domain_policy(struct ccs_io_buffer *head)  
 {  
         struct list1_head *dpos;  
         struct list1_head *apos;  
         if (head->read_eof)  
                 return 0;  
         if (head->read_step == 0)  
                 head->read_step = 1;  
         list1_for_each_cookie(dpos, head->read_var1, &domain_list) {  
                 struct domain_info *domain;  
                 const char *quota_exceeded = "";  
                 const char *transition_failed = "";  
                 const char *ignore_global_allow_read = "";  
                 const char *ignore_global_allow_env = "";  
                 domain = list1_entry(dpos, struct domain_info, list);  
                 if (head->read_step != 1)  
                         goto acl_loop;  
                 if (domain->is_deleted)  
                         continue;  
                 /* Print domainname and flags. */  
                 if (domain->quota_warned)  
                         quota_exceeded = "quota_exceeded\n";  
                 if (domain->flags & DOMAIN_FLAGS_TRANSITION_FAILED)  
                         transition_failed = "transition_failed\n";  
                 if (domain->flags & DOMAIN_FLAGS_IGNORE_GLOBAL_ALLOW_READ)  
                         ignore_global_allow_read  
                                 = KEYWORD_IGNORE_GLOBAL_ALLOW_READ "\n";  
                 if (domain->flags & DOMAIN_FLAGS_IGNORE_GLOBAL_ALLOW_ENV)  
                         ignore_global_allow_env  
                                 = KEYWORD_IGNORE_GLOBAL_ALLOW_ENV "\n";  
                 if (!ccs_io_printf(head, "%s\n" KEYWORD_USE_PROFILE "%u\n"  
                                    "%s%s%s%s\n", domain->domainname->name,  
                                    domain->profile, quota_exceeded,  
                                    transition_failed,  
                                    ignore_global_allow_read,  
                                    ignore_global_allow_env))  
                         return 0;  
                 head->read_step = 2;  
  acl_loop:  
                 if (head->read_step == 3)  
                         goto tail_mark;  
                 /* Print ACL entries in the domain. */  
                 list1_for_each_cookie(apos, head->read_var2,  
                                       &domain->acl_info_list) {  
                         struct acl_info *ptr  
                                 = list1_entry(apos, struct acl_info, list);  
                         if (!print_entry(head, ptr))  
                                 return 0;  
                 }  
                 head->read_step = 3;  
  tail_mark:  
                 if (!ccs_io_printf(head, "\n"))  
                         return 0;  
                 head->read_step = 1;  
         }  
         head->read_eof = true;  
         return 0;  
 }  
   
 #endif  
   
 /**  
  * write_domain_profile - Assign profile for specified domain.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  *  
  * Returns 0 on success, -EINVAL otherwise.  
  *  
  * This is equivalent to doing  
  *  
  *     ( echo "select " $domainname; echo "use_profile " $profile ) |  
  *     /usr/lib/ccs/loadpolicy -d  
  */  
 static int write_domain_profile(struct ccs_io_buffer *head)  
 {  
         char *data = head->write_buf;  
         char *cp = strchr(data, ' ');  
         struct domain_info *domain;  
         unsigned int profile;  
         if (!cp)  
                 return -EINVAL;  
         *cp = '\0';  
         domain = ccs_find_domain(cp + 1);  
         profile = simple_strtoul(data, NULL, 10);  
         if (domain && profile < MAX_PROFILES  
             && (profile_ptr[profile] || !sbin_init_started))  
                 domain->profile = (u8) profile;  
         ccs_update_counter(CCS_UPDATES_COUNTER_DOMAIN_POLICY);  
         return 0;  
 }  
   
 /**  
  * read_domain_profile - Read only domainname and profile.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  *  
  * Returns list of profile number and domainname pairs.  
  *  
  * This is equivalent to doing  
  *  
  *     grep -A 1 '^<kernel>' /proc/ccs/domain_policy |  
  *     awk ' { if ( domainname == "" ) { if ( $1 == "<kernel>" )  
  *     domainname = $0; } else if ( $1 == "use_profile" ) {  
  *     print $2 " " domainname; domainname = ""; } } ; '  
  */  
 static int read_domain_profile(struct ccs_io_buffer *head)  
 {  
         struct list1_head *pos;  
         if (head->read_eof)  
                 return 0;  
         list1_for_each_cookie(pos, head->read_var1, &domain_list) {  
                 struct domain_info *domain;  
                 domain = list1_entry(pos, struct domain_info, list);  
                 if (domain->is_deleted)  
                         continue;  
                 if (!ccs_io_printf(head, "%u %s\n", domain->profile,  
                                    domain->domainname->name))  
                         return 0;  
         }  
         head->read_eof = true;  
         return 0;  
 }  
   
 /**  
  * write_pid: Specify PID to obtain domainname.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  *  
  * Returns 0.  
  */  
 static int write_pid(struct ccs_io_buffer *head)  
 {  
         head->read_step = (int) simple_strtoul(head->write_buf, NULL, 10);  
         head->read_eof = false;  
         return 0;  
 }  
   
 /**  
  * read_pid - Get domainname of the specified PID.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  *  
  * Returns the domainname which the specified PID is in on success,  
  * empty string otherwise.  
  * The PID is specified by write_pid() so that the user can obtain  
  * using read()/write() interface rather than sysctl() interface.  
  */  
 static int read_pid(struct ccs_io_buffer *head)  
 {  
         if (head->read_avail == 0 && !head->read_eof) {  
                 const int pid = head->read_step;  
                 struct task_struct *p;  
                 struct domain_info *domain = NULL;  
                 /***** CRITICAL SECTION START *****/  
                 read_lock(&tasklist_lock);  
                 p = find_task_by_pid(pid);  
                 if (p)  
                         domain = p->domain_info;  
                 read_unlock(&tasklist_lock);  
                 /***** CRITICAL SECTION END *****/  
                 if (domain)  
                         ccs_io_printf(head, "%d %u %s", pid, domain->profile,  
                                       domain->domainname->name);  
                 head->read_eof = true;  
         }  
         return 0;  
 }  
   
 #ifdef CONFIG_TOMOYO  
   
 /**  
  * write_exception_policy - Write exception policy.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  *  
  * Returns 0 on success, negative value otherwise.  
  */  
 static int write_exception_policy(struct ccs_io_buffer *head)  
 {  
         char *data = head->write_buf;  
         bool is_delete = str_starts(&data, KEYWORD_DELETE);  
         if (str_starts(&data, KEYWORD_KEEP_DOMAIN))  
                 return ccs_write_domain_keeper_policy(data, false, is_delete);  
         if (str_starts(&data, KEYWORD_NO_KEEP_DOMAIN))  
                 return ccs_write_domain_keeper_policy(data, true, is_delete);  
         if (str_starts(&data, KEYWORD_INITIALIZE_DOMAIN))  
                 return ccs_write_domain_initializer_policy(data, false,  
                                                            is_delete);  
         if (str_starts(&data, KEYWORD_NO_INITIALIZE_DOMAIN))  
                 return ccs_write_domain_initializer_policy(data, true,  
                                                            is_delete);  
         if (str_starts(&data, KEYWORD_ALIAS))  
                 return ccs_write_alias_policy(data, is_delete);  
         if (str_starts(&data, KEYWORD_AGGREGATOR))  
                 return ccs_write_aggregator_policy(data, is_delete);  
         if (str_starts(&data, KEYWORD_ALLOW_READ))  
                 return ccs_write_globally_readable_policy(data, is_delete);  
         if (str_starts(&data, KEYWORD_ALLOW_ENV))  
                 return ccs_write_globally_usable_env_policy(data, is_delete);  
         if (str_starts(&data, KEYWORD_FILE_PATTERN))  
                 return ccs_write_pattern_policy(data, is_delete);  
         if (str_starts(&data, KEYWORD_PATH_GROUP))  
                 return ccs_write_path_group_policy(data, is_delete);  
         if (str_starts(&data, KEYWORD_DENY_REWRITE))  
                 return ccs_write_no_rewrite_policy(data, is_delete);  
         if (str_starts(&data, KEYWORD_ADDRESS_GROUP))  
                 return ccs_write_address_group_policy(data, is_delete);  
         return -EINVAL;  
 }  
   
 /**  
  * read_exception_policy - Read exception policy.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  *  
  * Returns 0 on success, -EINVAL otherwise.  
  */  
 static int read_exception_policy(struct ccs_io_buffer *head)  
 {  
         if (!head->read_eof) {  
                 switch (head->read_step) {  
                 case 0:  
                         head->read_var2 = NULL;  
                         head->read_step = 1;  
                 case 1:  
                         if (!ccs_read_domain_keeper_policy(head))  
                                 break;  
                         head->read_var2 = NULL;  
                         head->read_step = 2;  
                 case 2:  
                         if (!ccs_read_globally_readable_policy(head))  
                                 break;  
                         head->read_var2 = NULL;  
                         head->read_step = 3;  
                 case 3:  
                         if (!ccs_read_globally_usable_env_policy(head))  
                                 break;  
                         head->read_var2 = NULL;  
                         head->read_step = 4;  
                 case 4:  
                         if (!ccs_read_domain_initializer_policy(head))  
                                 break;  
                         head->read_var2 = NULL;  
                         head->read_step = 5;  
                 case 5:  
                         if (!ccs_read_alias_policy(head))  
                                 break;  
                         head->read_var2 = NULL;  
                         head->read_step = 6;  
                 case 6:  
                         if (!ccs_read_aggregator_policy(head))  
                                 break;  
                         head->read_var2 = NULL;  
                         head->read_step = 7;  
                 case 7:  
                         if (!ccs_read_file_pattern(head))  
                                 break;  
                         head->read_var2 = NULL;  
                         head->read_step = 8;  
                 case 8:  
                         if (!ccs_read_no_rewrite_policy(head))  
                                 break;  
                         head->read_var2 = NULL;  
                         head->read_step = 9;  
                 case 9:  
                         if (!ccs_read_path_group_policy(head))  
                                 break;  
                         head->read_var1 = NULL;  
                         head->read_var2 = NULL;  
                         head->read_step = 10;  
                 case 10:  
                         if (!ccs_read_address_group_policy(head))  
                                 break;  
                         head->read_eof = true;  
                         break;  
                 default:  
                         return -EINVAL;  
                 }  
         }  
         return 0;  
 }  
   
 #endif  
   
 #ifdef CONFIG_SAKURA  
   
 /**  
  * write_system_policy - Write system policy.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  *  
  * Returns 0 on success, negative value otherwise.  
  */  
 static int write_system_policy(struct ccs_io_buffer *head)  
 {  
         char *data = head->write_buf;  
         bool is_delete = false;  
         if (str_starts(&data, KEYWORD_DELETE))  
                 is_delete = true;  
         if (str_starts(&data, KEYWORD_ALLOW_MOUNT))  
                 return ccs_write_mount_policy(data, is_delete);  
         if (str_starts(&data, KEYWORD_DENY_UNMOUNT))  
                 return ccs_write_no_umount_policy(data, is_delete);  
         if (str_starts(&data, KEYWORD_ALLOW_CHROOT))  
                 return ccs_write_chroot_policy(data, is_delete);  
         if (str_starts(&data, KEYWORD_ALLOW_PIVOT_ROOT))  
                 return ccs_write_pivot_root_policy(data, is_delete);  
         if (str_starts(&data, KEYWORD_DENY_AUTOBIND))  
                 return ccs_write_reserved_port_policy(data, is_delete);  
         return -EINVAL;  
 }  
   
 /**  
  * read_system_policy - Read system policy.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  *  
  * Returns 0 on success, -EINVAL otherwise.  
  */  
 static int read_system_policy(struct ccs_io_buffer *head)  
 {  
         if (!head->read_eof) {  
                 switch (head->read_step) {  
                 case 0:  
                         head->read_var2 = NULL;  
                         head->read_step = 1;  
                 case 1:  
                         if (!ccs_read_mount_policy(head))  
                                 break;  
                         head->read_var2 = NULL;  
                         head->read_step = 2;  
                 case 2:  
                         if (!ccs_read_no_umount_policy(head))  
                                 break;  
                         head->read_var2 = NULL;  
                         head->read_step = 3;  
                 case 3:  
                         if (!ccs_read_chroot_policy(head))  
                                 break;  
                         head->read_var2 = NULL;  
                         head->read_step = 4;  
                 case 4:  
                         if (!ccs_read_pivot_root_policy(head))  
                                 break;  
                         head->read_var2 = NULL;  
                         head->read_step = 5;  
                 case 5:  
                         if (!ccs_read_reserved_port_policy(head))  
                                 break;  
                         head->read_eof = true;  
                         break;  
                 default:  
                         return -EINVAL;  
                 }  
         }  
         return 0;  
 }  
   
 #endif  
   
 /* Path to the policy loader. The default is /sbin/ccs-init. */  
 static const char *ccs_loader;  
   
 /**  
  * loader_setup - Specify the policy loader to use.  
  *  
  * @str: Path to the policy loader.  
  *  
  * Returns 0.  
  */  
 static int __init loader_setup(char *str)  
 {  
         ccs_loader = str;  
         return 0;  
 }  
   
 __setup("CCS_loader=", loader_setup);  
   
 /**  
  * policy_loader_exists - Check whether /sbin/ccs-init exists.  
  *  
  * Returns true if /sbin/ccs-init exists, false otherwise.  
  */  
 static bool policy_loader_exists(void)  
 {  
         /*  
          * Don't activate MAC if the path given by 'CCS_loader=' option doesn't  
          * exist. If the initrd includes /sbin/init but real-root-dev has not  
          * mounted on / yet, activating MAC will block the system since  
          * policies are not loaded yet.  
          * Thus, let do_execve() call this function everytime.  
          */  
         struct nameidata nd;  
         if (!ccs_loader)  
                 ccs_loader = "/sbin/ccs-init";  
         if (path_lookup(ccs_loader, lookup_flags, &nd)) {  
                 printk(KERN_INFO "Not activating Mandatory Access Control now "  
                        "since %s doesn't exist.\n", ccs_loader);  
                 return false;  
         }  
 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 25)  
         path_put(&nd.path);  
 #else  
         path_release(&nd);  
 #endif  
         return true;  
 }  
   
 #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 5, 0)  
 /**  
  * run_ccs_loader - Start /sbin/ccs-init .  
  *  
  * @unused: Not used.  
  *  
  * Returns PID of /sbin/ccs-init on success, negative value otherwise.  
  */  
 static int run_ccs_loader(void *unused)  
 {  
         char *argv[2];  
         char *envp[3];  
         printk(KERN_INFO "Calling %s to load policy. Please wait.\n",  
                ccs_loader);  
         argv[0] = (char *) ccs_loader;  
         argv[1] = NULL;  
         envp[0] = "HOME=/";  
         envp[1] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";  
         envp[2] = NULL;  
         return exec_usermodehelper(argv[0], argv, envp);  
 }  
 #endif  
   
 /**  
  * ccs_load_policy - Run external policy loader to load policy.  
  *  
  * @filename: The program about to start.  
  *  
  * This function checks whether @filename is /sbin/init , and if so  
  * invoke /sbin/ccs-init and wait for the termination of /sbin/ccs-init  
  * and then continues invocation of /sbin/init.  
  * /sbin/ccs-init reads policy files in /etc/ccs/ directory and  
  * writes to /proc/ccs/ interfaces.  
  *  
  * Returns nothing.  
  */  
 void ccs_load_policy(const char *filename)  
 {  
         if (sbin_init_started)  
                 return;  
         /*  
          * Check filename is /sbin/init or /sbin/ccs-start.  
          * /sbin/ccs-start is a dummy filename in case where /sbin/init can't  
          * be passed.  
          * You can create /sbin/ccs-start by "ln -s /bin/true /sbin/ccs-start".  
          */  
         if (strcmp(filename, "/sbin/init") &&  
             strcmp(filename, "/sbin/ccs-start"))  
                 return;  
         if (!policy_loader_exists())  
                 return;  
 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 5, 0)  
         {  
                 char *argv[2];  
                 char *envp[3];  
                 printk(KERN_INFO "Calling %s to load policy. Please wait.\n",  
                        ccs_loader);  
                 argv[0] = (char *) ccs_loader;  
                 argv[1] = NULL;  
                 envp[0] = "HOME=/";  
                 envp[1] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";  
                 envp[2] = NULL;  
                 call_usermodehelper(argv[0], argv, envp, 1);  
         }  
 #else  
         {  
                 /* Copied from kernel/kmod.c */  
                 struct task_struct *task = current;  
                 pid_t pid = kernel_thread(run_ccs_loader, NULL, 0);  
                 sigset_t tmpsig;  
                 spin_lock_irq(&task->sigmask_lock);  
                 tmpsig = task->blocked;  
                 siginitsetinv(&task->blocked,  
                               sigmask(SIGKILL) | sigmask(SIGSTOP));  
                 recalc_sigpending(task);  
                 spin_unlock_irq(&task->sigmask_lock);  
                 if (pid >= 0)  
                         waitpid(pid, NULL, __WCLONE);  
                 spin_lock_irq(&task->sigmask_lock);  
                 task->blocked = tmpsig;  
                 recalc_sigpending(task);  
                 spin_unlock_irq(&task->sigmask_lock);  
         }  
 #endif  
 #ifdef CONFIG_SAKURA  
         printk(KERN_INFO "SAKURA: 1.6.2-pre   2008/06/10\n");  
 #endif  
 #ifdef CONFIG_TOMOYO  
         printk(KERN_INFO "TOMOYO: 1.6.2-pre   2008/06/10\n");  
 #endif  
         printk(KERN_INFO "Mandatory Access Control activated.\n");  
         sbin_init_started = true;  
         ccs_log_level = KERN_WARNING;  
         { /* Check all profiles currently assigned to domains are defined. */  
                 struct domain_info *domain;  
                 list1_for_each_entry(domain, &domain_list, list) {  
                         const u8 profile = domain->profile;  
                         if (profile_ptr[profile])  
                                 continue;  
                         panic("Profile %u (used by '%s') not defined.\n",  
                               profile, domain->domainname->name);  
                 }  
         }  
 }  
   
 /* Wait queue for query_list. */  
 static DECLARE_WAIT_QUEUE_HEAD(query_wait);  
   
 /* Lock for manipurating query_list. */  
 static DEFINE_SPINLOCK(query_lock);  
   
 /* Structure for query. */  
 struct query_entry {  
         struct list_head list;  
         char *query;  
         int query_len;  
         unsigned int serial;  
         int timer;  
         int answer;  
 };  
   
 /* The list for "struct query_entry". */  
 static LIST_HEAD(query_list);  
   
 /* Number of "struct file" referring /proc/ccs/query interface. */  
 static atomic_t queryd_watcher = ATOMIC_INIT(0);  
   
 /**  
  * ccs_check_supervisor - Ask for the supervisor's decision.  
  *  
  * @bprm: Pointer to "struct linux_binprm". May be NULL.  
  * @fmt:  The printf()'s format string, followed by parameters.  
  *  
  * Returns 0 if the supervisor decided to permit the access request which  
  * violated the policy in enforcing mode, -EPERM otherwise.  
  */  
 int ccs_check_supervisor(struct linux_binprm *bprm, const char *fmt, ...)  
 {  
         va_list args;  
         int error = -EPERM;  
         int pos;  
         int len;  
         static unsigned int serial;  
         struct query_entry *query_entry = NULL;  
         char *header;  
         if (!atomic_read(&queryd_watcher)) {  
                 int i;  
                 if (current->tomoyo_flags & CCS_DONT_SLEEP_ON_ENFORCE_ERROR)  
                         return -EPERM;  
                 for (i = 0; i < ccs_check_flags(CCS_SLEEP_PERIOD); i++) {  
                         set_current_state(TASK_INTERRUPTIBLE);  
                         schedule_timeout(HZ / 10);  
                 }  
                 return -EPERM;  
         }  
         va_start(args, fmt);  
         len = vsnprintf((char *) &pos, sizeof(pos) - 1, fmt, args) + 32;  
         va_end(args);  
 #ifdef CONFIG_TOMOYO  
         header = ccs_init_audit_log(&len, current->domain_info->profile,  
                                     3, bprm);  
 #else  
         header = ccs_alloc(1);  
 #endif  
         if (!header)  
                 goto out;  
         query_entry = ccs_alloc(sizeof(*query_entry));  
         if (!query_entry)  
                 goto out;  
         query_entry->query = ccs_alloc(len);  
         if (!query_entry->query)  
                 goto out;  
         INIT_LIST_HEAD(&query_entry->list);  
         /***** CRITICAL SECTION START *****/  
         spin_lock(&query_lock);  
         query_entry->serial = serial++;  
         spin_unlock(&query_lock);  
         /***** CRITICAL SECTION END *****/  
         pos = snprintf(query_entry->query, len - 1, "Q%u\n%s",  
                        query_entry->serial, header);  
         ccs_free(header);  
         header = NULL;  
         va_start(args, fmt);  
         vsnprintf(query_entry->query + pos, len - 1 - pos, fmt, args);  
         query_entry->query_len = strlen(query_entry->query) + 1;  
         va_end(args);  
         /***** CRITICAL SECTION START *****/  
         spin_lock(&query_lock);  
         list_add_tail(&query_entry->list, &query_list);  
         spin_unlock(&query_lock);  
         /***** CRITICAL SECTION END *****/  
         ccs_update_counter(CCS_UPDATES_COUNTER_QUERY);  
         /* Give 10 seconds for supervisor's opinion. */  
         for (query_entry->timer = 0; atomic_read(&queryd_watcher)  
                      && query_entry->timer < 100; query_entry->timer++) {  
                 wake_up(&query_wait);  
                 set_current_state(TASK_INTERRUPTIBLE);  
                 schedule_timeout(HZ / 10);  
                 if (query_entry->answer)  
                         break;  
         }  
         ccs_update_counter(CCS_UPDATES_COUNTER_QUERY);  
         /***** CRITICAL SECTION START *****/  
         spin_lock(&query_lock);  
         list_del(&query_entry->list);  
         spin_unlock(&query_lock);  
         /***** CRITICAL SECTION END *****/  
         switch (query_entry->answer) {  
         case 1:  
                 /* Granted by administrator. */  
                 error = 0;  
                 break;  
         case 0:  
                 /* Timed out. */  
                 break;  
         default:  
                 /* Rejected by administrator. */  
                 break;  
         }  
  out:  
         if (query_entry)  
                 ccs_free(query_entry->query);  
         ccs_free(query_entry);  
         ccs_free(header);  
         return error;  
 }  
   
 /**  
  * poll_query - poll() for /proc/ccs/query.  
  *  
  * @file: Pointer to "struct file".  
  * @wait: Pointer to "poll_table".  
  *  
  * Returns POLLIN | POLLRDNORM when ready to read, 0 otherwise.  
  *  
  * Waits for access requests which violated policy in enforcing mode.  
  */  
 static int poll_query(struct file *file, poll_table *wait)  
 {  
         bool found;  
         /***** CRITICAL SECTION START *****/  
         spin_lock(&query_lock);  
         found = !list_empty(&query_list);  
         spin_unlock(&query_lock);  
         /***** CRITICAL SECTION END *****/  
         if (found)  
                 return POLLIN | POLLRDNORM;  
         poll_wait(file, &query_wait, wait);  
         /***** CRITICAL SECTION START *****/  
         spin_lock(&query_lock);  
         found = !list_empty(&query_list);  
         spin_unlock(&query_lock);  
         /***** CRITICAL SECTION END *****/  
         if (found)  
                 return POLLIN | POLLRDNORM;  
         return 0;  
 }  
   
 /**  
  * read_query - Read access requests which violated policy in enforcing mode.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  *  
  * Returns 0.  
  */  
 static int read_query(struct ccs_io_buffer *head)  
 {  
         struct list_head *tmp;  
         int pos = 0;  
         int len = 0;  
         char *buf;  
         if (head->read_avail)  
                 return 0;  
         if (head->read_buf) {  
                 ccs_free(head->read_buf);  
                 head->read_buf = NULL;  
                 head->readbuf_size = 0;  
         }  
         /***** CRITICAL SECTION START *****/  
         spin_lock(&query_lock);  
         list_for_each(tmp, &query_list) {  
                 struct query_entry *ptr  
                         = list_entry(tmp, struct query_entry, list);  
                 if (pos++ != head->read_step)  
                         continue;  
                 len = ptr->query_len;  
                 break;  
         }  
         spin_unlock(&query_lock);  
         /***** CRITICAL SECTION END *****/  
         if (!len) {  
                 head->read_step = 0;  
                 return 0;  
         }  
         buf = ccs_alloc(len);  
         if (buf) {  
                 pos = 0;  
                 /***** CRITICAL SECTION START *****/  
                 spin_lock(&query_lock);  
                 list_for_each(tmp, &query_list) {  
                         struct query_entry *ptr  
                                 = list_entry(tmp, struct query_entry, list);  
                         if (pos++ != head->read_step)  
                                 continue;  
                         /*  
                          * Some query can be skipped because query_list  
                          * can change, but I don't care.  
                          */  
                         if (len == ptr->query_len)  
                                 memmove(buf, ptr->query, len);  
                         break;  
                 }  
                 spin_unlock(&query_lock);  
                 /***** CRITICAL SECTION END *****/  
                 if (buf[0]) {  
                         head->read_avail = len;  
                         head->readbuf_size = head->read_avail;  
                         head->read_buf = buf;  
                         head->read_step++;  
                 } else {  
                         ccs_free(buf);  
                 }  
         }  
         return 0;  
 }  
   
 /**  
  * write_answer - Write the supervisor's decision.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  *  
  * Returns 0 on success, -EINVAL otherwise.  
  */  
 static int write_answer(struct ccs_io_buffer *head)  
 {  
         char *data = head->write_buf;  
         struct list_head *tmp;  
         unsigned int serial;  
         unsigned int answer;  
         if (!ccs_check_flags(CCS_ALLOW_ENFORCE_GRACE))  
                 return -EPERM;  
         /***** CRITICAL SECTION START *****/  
         spin_lock(&query_lock);  
         list_for_each(tmp, &query_list) {  
                 struct query_entry *ptr  
                         = list_entry(tmp, struct query_entry, list);  
                 ptr->timer = 0;  
         }  
         spin_unlock(&query_lock);  
         /***** CRITICAL SECTION END *****/  
         if (sscanf(data, "A%u=%u", &serial, &answer) != 2)  
                 return -EINVAL;  
         /***** CRITICAL SECTION START *****/  
         spin_lock(&query_lock);  
         list_for_each(tmp, &query_list) {  
                 struct query_entry *ptr  
                         = list_entry(tmp, struct query_entry, list);  
                 if (ptr->serial != serial)  
                         continue;  
                 if (!ptr->answer)  
                         ptr->answer = answer;  
                 break;  
         }  
         spin_unlock(&query_lock);  
         /***** CRITICAL SECTION END *****/  
         return 0;  
 }  
   
 /* Policy updates counter. */  
 static unsigned int updates_counter[MAX_CCS_UPDATES_COUNTER];  
   
 /* Policy updates counter lock. */  
 static DEFINE_SPINLOCK(updates_counter_lock);  
   
 /**  
  * ccs_update_counter - Increment policy change counter.  
  *  
  * @index: Type of policy.  
  *  
  * Returns nothing.  
  */  
 void ccs_update_counter(const unsigned char index)  
 {  
         /***** CRITICAL SECTION START *****/  
         spin_lock(&updates_counter_lock);  
         if (index < MAX_CCS_UPDATES_COUNTER)  
                 updates_counter[index]++;  
         spin_unlock(&updates_counter_lock);  
         /***** CRITICAL SECTION END *****/  
 }  
   
 /**  
  * read_updates_counter - Check for policy change counter.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  *  
  * Returns how many times policy has changed since the previous check.  
  */  
 static int read_updates_counter(struct ccs_io_buffer *head)  
 {  
         if (!head->read_eof) {  
                 unsigned int counter[MAX_CCS_UPDATES_COUNTER];  
                 /***** CRITICAL SECTION START *****/  
                 spin_lock(&updates_counter_lock);  
                 memmove(counter, updates_counter, sizeof(updates_counter));  
                 memset(updates_counter, 0, sizeof(updates_counter));  
                 spin_unlock(&updates_counter_lock);  
                 /***** CRITICAL SECTION END *****/  
                 ccs_io_printf(head,  
                               "/proc/ccs/system_policy:    %10u\n"  
                               "/proc/ccs/domain_policy:    %10u\n"  
                               "/proc/ccs/exception_policy: %10u\n"  
                               "/proc/ccs/profile:          %10u\n"  
                               "/proc/ccs/query:            %10u\n"  
                               "/proc/ccs/manager:          %10u\n"  
                               "/proc/ccs/grant_log:        %10u\n"  
                               "/proc/ccs/reject_log:       %10u\n",  
                               counter[CCS_UPDATES_COUNTER_SYSTEM_POLICY],  
                               counter[CCS_UPDATES_COUNTER_DOMAIN_POLICY],  
                               counter[CCS_UPDATES_COUNTER_EXCEPTION_POLICY],  
                               counter[CCS_UPDATES_COUNTER_PROFILE],  
                               counter[CCS_UPDATES_COUNTER_QUERY],  
                               counter[CCS_UPDATES_COUNTER_MANAGER],  
                               counter[CCS_UPDATES_COUNTER_GRANT_LOG],  
                               counter[CCS_UPDATES_COUNTER_REJECT_LOG]);  
                 head->read_eof = true;  
         }  
         return 0;  
 }  
   
 /**  
  * read_version: Get version.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  *  
  * Returns version information.  
  */  
 static int read_version(struct ccs_io_buffer *head)  
 {  
         if (!head->read_eof) {  
                 ccs_io_printf(head, "1.6.1");  
                 head->read_eof = true;  
         }  
         return 0;  
 }  
   
 /**  
  * read_self_domain - Get the current process's domainname.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  *  
  * Returns the current process's domainname.  
  */  
 static int read_self_domain(struct ccs_io_buffer *head)  
 {  
         if (!head->read_eof) {  
                 /*  
                  * current->domain_info->domainname != NULL  
                  * because every process belongs to a domain and  
                  * the domain's name cannot be NULL.  
                  */  
                 ccs_io_printf(head, "%s",  
                               current->domain_info->domainname->name);  
                 head->read_eof = true;  
         }  
         return 0;  
 }  
   
 /**  
  * ccs_open_control - open() for /proc/ccs/ interface.  
  *  
  * @type: Type of interface.  
  * @file: Pointer to "struct file".  
  *  
  * Associates policy handler and returns 0 on success, -ENOMEM otherwise.  
  */  
 int ccs_open_control(const u8 type, struct file *file)  
 {  
         struct ccs_io_buffer *head = ccs_alloc(sizeof(*head));  
         if (!head)  
                 return -ENOMEM;  
         mutex_init(&head->read_sem);  
         mutex_init(&head->write_sem);  
         switch (type) {  
 #ifdef CONFIG_SAKURA  
         case CCS_SYSTEMPOLICY: /* /proc/ccs/system_policy */  
                 head->write = write_system_policy;  
                 head->read = read_system_policy;  
                 break;  
 #endif  
 #ifdef CONFIG_TOMOYO  
         case CCS_DOMAINPOLICY: /* /proc/ccs/domain_policy */  
                 head->write = write_domain_policy;  
                 head->read = read_domain_policy;  
                 break;  
         case CCS_EXCEPTIONPOLICY: /* /proc/ccs/exception_policy */  
                 head->write = write_exception_policy;  
                 head->read = read_exception_policy;  
                 break;  
         case CCS_GRANTLOG: /* /proc/ccs/grant_log */  
                 head->poll = ccs_poll_grant_log;  
                 head->read = ccs_read_grant_log;  
                 break;  
         case CCS_REJECTLOG: /* /proc/ccs/reject_log */  
                 head->poll = ccs_poll_reject_log;  
                 head->read = ccs_read_reject_log;  
                 break;  
 #endif  
         case CCS_SELFDOMAIN: /* /proc/ccs/self_domain */  
                 head->read = read_self_domain;  
                 break;  
         case CCS_DOMAIN_STATUS: /* /proc/ccs/.domain_status */  
                 head->write = write_domain_profile;  
                 head->read = read_domain_profile;  
                 break;  
         case CCS_PROCESS_STATUS: /* /proc/ccs/.process_status */  
                 head->write = write_pid;  
                 head->read = read_pid;  
                 break;  
         case CCS_VERSION: /* /proc/ccs/version */  
                 head->read = read_version;  
                 head->readbuf_size = 128;  
                 break;  
         case CCS_MEMINFO: /* /proc/ccs/meminfo */  
                 head->write = ccs_write_memory_quota;  
                 head->read = ccs_read_memory_counter;  
                 head->readbuf_size = 512;  
                 break;  
         case CCS_PROFILE: /* /proc/ccs/profile */  
                 head->write = write_profile;  
                 head->read = read_profile;  
                 break;  
         case CCS_QUERY: /* /proc/ccs/query */  
                 head->poll = poll_query;  
                 head->write = write_answer;  
                 head->read = read_query;  
                 break;  
         case CCS_MANAGER: /* /proc/ccs/manager */  
                 head->write = write_manager_policy;  
                 head->read = read_manager_policy;  
                 break;  
         case CCS_UPDATESCOUNTER: /* /proc/ccs/.updates_counter */  
                 head->read = read_updates_counter;  
                 break;  
         }  
         if (!(file->f_mode & FMODE_READ)) {  
                 /*  
                  * No need to allocate read_buf since it is not opened  
                  * for reading.  
                  */  
                 head->read = NULL;  
                 head->poll = NULL;  
         } else if (type != CCS_GRANTLOG && type != CCS_REJECTLOG  
                    && type != CCS_QUERY) {  
                 /*  
                  * Don't allocate buffer for reading if the file is one of  
                  * /proc/ccs/grant_log , /proc/ccs/reject_log , /proc/ccs/query.  
                  */  
                 if (!head->readbuf_size)  
                         head->readbuf_size = 4096 * 2;  
                 head->read_buf = ccs_alloc(head->readbuf_size);  
                 if (!head->read_buf) {  
                         ccs_free(head);  
                         return -ENOMEM;  
                 }  
         }  
         if (!(file->f_mode & FMODE_WRITE)) {  
                 /*  
                  * No need to allocate write_buf since it is not opened  
                  * for writing.  
                  */  
                 head->write = NULL;  
         } else if (head->write) {  
                 head->writebuf_size = 4096 * 2;  
                 head->write_buf = ccs_alloc(head->writebuf_size);  
                 if (!head->write_buf) {  
                         ccs_free(head->read_buf);  
                         ccs_free(head);  
                         return -ENOMEM;  
                 }  
         }  
         file->private_data = head;  
         /*  
          * Call the handler now if the file is /proc/ccs/self_domain  
          * so that the user can use "cat < /proc/ccs/self_domain" to  
          * know the current process's domainname.  
          */  
         if (type == CCS_SELFDOMAIN)  
                 ccs_read_control(file, NULL, 0);  
         /*  
          * If the file is /proc/ccs/query , increment the monitor count.  
          * The monitor count is used by ccs_check_supervisor() to see if  
          * there is some process monitoring /proc/ccs/query.  
          */  
         else if (head->write == write_answer || head->read == read_query)  
                 atomic_inc(&queryd_watcher);  
         return 0;  
 }  
   
 /**  
  * ccs_poll_control - poll() for /proc/ccs/ interface.  
  *  
  * @file: Pointer to "struct file".  
  * @wait: Pointer to "poll_table".  
  *  
  * Waits for read readiness.  
  * /proc/ccs/query is handled by /usr/lib/ccs/ccs-queryd and  
  * /proc/ccs/grant_log and /proc/ccs/reject_log are handled by  
  * /usr/lib/ccs/ccs-auditd.  
  */  
 int ccs_poll_control(struct file *file, poll_table *wait)  
 {  
         struct ccs_io_buffer *head = file->private_data;  
         if (!head->poll)  
                 return -ENOSYS;  
         return head->poll(file, wait);  
 }  
   
 /**  
  * ccs_read_control - read() for /proc/ccs/ interface.  
  *  
  * @file:       Pointer to "struct file".  
  * @buffer:     Poiner to buffer to write to.  
  * @buffer_len: Size of @buffer.  
  *  
  * Returns bytes read on success, negative value otherwise.  
  */  
 int ccs_read_control(struct file *file, char __user *buffer,  
                      const int buffer_len)  
 {  
         int len = 0;  
         struct ccs_io_buffer *head = file->private_data;  
         char *cp;  
         if (!head->read)  
                 return -ENOSYS;  
         if (!access_ok(VERIFY_WRITE, buffer, buffer_len))  
                 return -EFAULT;  
         if (mutex_lock_interruptible(&head->read_sem))  
                 return -EINTR;  
         /* Call the policy handler. */  
         len = head->read(head);  
         if (len < 0)  
                 goto out;  
         /* Write to buffer. */  
         len = head->read_avail;  
         if (len > buffer_len)  
                 len = buffer_len;  
         if (!len)  
                 goto out;  
         /* head->read_buf changes by some functions. */  
         cp = head->read_buf;  
         if (copy_to_user(buffer, cp, len)) {  
                 len = -EFAULT;  
                 goto out;  
         }  
         head->read_avail -= len;  
         memmove(cp, cp + len, head->read_avail);  
  out:  
         mutex_unlock(&head->read_sem);  
         return len;  
 }  
   
 /**  
  * ccs_write_control - write() for /proc/ccs/ interface.  
  *  
  * @file:       Pointer to "struct file".  
  * @buffer:     Pointer to buffer to read from.  
  * @buffer_len: Size of @buffer.  
  *  
  * Returns @buffer_len on success, negative value otherwise.  
  */  
 int ccs_write_control(struct file *file, const char __user *buffer,  
                       const int buffer_len)  
 {  
         struct ccs_io_buffer *head = file->private_data;  
         int error = buffer_len;  
         int avail_len = buffer_len;  
         char *cp0 = head->write_buf;  
         if (!head->write)  
                 return -ENOSYS;  
         if (!access_ok(VERIFY_READ, buffer, buffer_len))  
                 return -EFAULT;  
         /* Don't allow updating policies by non manager programs. */  
         if (head->write != write_pid && !is_policy_manager())  
                 return -EPERM;  
         if (mutex_lock_interruptible(&head->write_sem))  
                 return -EINTR;  
         /* Read a line and dispatch it to the policy handler. */  
         while (avail_len > 0) {  
                 char c;  
                 if (head->write_avail >= head->writebuf_size - 1) {  
                         error = -ENOMEM;  
                         break;  
                 } else if (get_user(c, buffer)) {  
                         error = -EFAULT;  
                         break;  
                 }  
                 buffer++;  
                 avail_len--;  
                 cp0[head->write_avail++] = c;  
                 if (c != '\n')  
                         continue;  
                 cp0[head->write_avail - 1] = '\0';  
                 head->write_avail = 0;  
                 normalize_line(cp0);  
                 head->write(head);  
         }  
         mutex_unlock(&head->write_sem);  
         return error;  
 }  
   
 /**  
  * ccs_close_control - close() for /proc/ccs/ interface.  
  *  
  * @file: Pointer to "struct file".  
  *  
  * Releases memory and returns 0.  
  */  
 int ccs_close_control(struct file *file)  
 {  
         struct ccs_io_buffer *head = file->private_data;  
         /*  
          * If the file is /proc/ccs/query , decrement the monitor count.  
          */  
         if (head->write == write_answer || head->read == read_query)  
                 atomic_dec(&queryd_watcher);  
         /* Release memory used for policy I/O. */  
         ccs_free(head->read_buf);  
         head->read_buf = NULL;  
         ccs_free(head->write_buf);  
         head->write_buf = NULL;  
         ccs_free(head);  
         head = NULL;  
         file->private_data = NULL;  
         return 0;  
 }  
   
 /**  
  * ccs_alloc_acl_element - Allocate permanent memory for ACL entry.  
  *  
  * @acl_type:  Type of ACL entry.  
  * @condition: Pointer to condition part of the ACL entry. May be NULL.  
  *  
  * Returns pointer to the ACL entry on success, NULL otherwise.  
  */  
 void *ccs_alloc_acl_element(const u8 acl_type,  
                             const struct condition_list *condition)  
 {  
         int len;  
         struct acl_info *ptr;  
         switch (acl_type) {  
         case TYPE_SINGLE_PATH_ACL:  
                 len = sizeof(struct single_path_acl_record);  
                 break;  
         case TYPE_DOUBLE_PATH_ACL:  
                 len = sizeof(struct double_path_acl_record);  
                 break;  
         case TYPE_ARGV0_ACL:  
                 len = sizeof(struct argv0_acl_record);  
                 break;  
         case TYPE_ENV_ACL:  
                 len = sizeof(struct env_acl_record);  
                 break;  
         case TYPE_CAPABILITY_ACL:  
                 len = sizeof(struct capability_acl_record);  
                 break;  
         case TYPE_IP_NETWORK_ACL:  
                 len = sizeof(struct ip_network_acl_record);  
                 break;  
         case TYPE_SIGNAL_ACL:  
                 len = sizeof(struct signal_acl_record);  
                 break;  
         case TYPE_EXECUTE_HANDLER:  
         case TYPE_DENIED_EXECUTE_HANDLER:  
                 len = sizeof(struct execute_handler_record);  
                 break;  
         default:  
                 return NULL;  
         }  
         /*  
          * If the ACL doesn't have condition part, reduce memory usage  
          * by eliminating sizeof(struct condition_list *).  
          */  
         if (!condition)  
                 len -= sizeof(ptr->access_me_via_ccs_get_condition_part);  
         ptr = ccs_alloc_element(len);  
         if (!ptr)  
                 return NULL;  
         if (condition) {  
                 ptr->access_me_via_ccs_get_condition_part = condition;  
                 ptr->type = acl_type | ACL_WITH_CONDITION;  
                 return ptr;  
         }  
         /*  
          * Substract sizeof(struct condition_list *) because I eliminated  
          * sizeof(struct condition_list *) from "struct acl_info"  
          * but I must return the start address of "struct acl_info".  
          */  
         ptr = (void *) (((u8 *) ptr)  
                         - sizeof(ptr->access_me_via_ccs_get_condition_part));  
         ptr->type = acl_type;  
         return ptr;  
 }  
   
 /**  
  * ccs_get_condition_part - Get condition part of the given ACL entry.  
  *  
  * @acl: Pointer to "struct acl_info". Pointer to an ACL entry.  
  *  
  * Returns pointer to the condition part if the ACL has it, NULL otherwise.  
  */  
 const struct condition_list *ccs_get_condition_part(const struct acl_info *acl)  
 {  
         return (acl->type & ACL_WITH_CONDITION) ?  
                 acl->access_me_via_ccs_get_condition_part : NULL;  
 }  

Legend:
Removed from v.1280  
changed lines
  Added in v.2943

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