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

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 trunk/1.7.x/ccs-patch/security/ccsecurity/util.c revision 3033 by kumaneko, Tue Sep 15 04:29:21 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   2009/09/14
  *  
  * 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. */  /* Lock for protecting policy. */
16  #ifdef CONFIG_TOMOYO  DEFINE_MUTEX(ccs_policy_lock);
 #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  
17    
18  /* Has /sbin/init started? */  /* Has /sbin/init started? */
19  bool sbin_init_started = false;  bool ccs_policy_loaded;
20    
21  /* Log level for SAKURA's printk(). */  /* Index table for searching parent category. */
22  const char *ccs_log_level = KERN_DEBUG;  static const u8 ccs_index2category[CCS_MAX_MAC_INDEX +
23                                       CCS_MAX_CAPABILITY_INDEX] = {
24  /* String table for functionality that takes 4 modes. */          [CCS_MAC_FILE_EXECUTE]    = CCS_MAC_CATEGORY_FILE,
25  static const char *mode_4[4] = {          [CCS_MAC_FILE_OPEN]       = CCS_MAC_CATEGORY_FILE,
26          "disabled", "learning", "permissive", "enforcing"          [CCS_MAC_FILE_CREATE]     = CCS_MAC_CATEGORY_FILE,
27  };          [CCS_MAC_FILE_UNLINK]     = CCS_MAC_CATEGORY_FILE,
28  /* String table for functionality that takes 2 modes. */          [CCS_MAC_FILE_MKDIR]      = CCS_MAC_CATEGORY_FILE,
29  static const char *mode_2[4] = {          [CCS_MAC_FILE_RMDIR]      = CCS_MAC_CATEGORY_FILE,
30          "disabled", "enabled", "enabled", "enabled"          [CCS_MAC_FILE_MKFIFO]     = CCS_MAC_CATEGORY_FILE,
31            [CCS_MAC_FILE_MKSOCK]     = CCS_MAC_CATEGORY_FILE,
32            [CCS_MAC_FILE_TRUNCATE]   = CCS_MAC_CATEGORY_FILE,
33            [CCS_MAC_FILE_SYMLINK]    = CCS_MAC_CATEGORY_FILE,
34            [CCS_MAC_FILE_REWRITE]    = CCS_MAC_CATEGORY_FILE,
35            [CCS_MAC_FILE_MKBLOCK]    = CCS_MAC_CATEGORY_FILE,
36            [CCS_MAC_FILE_MKCHAR]     = CCS_MAC_CATEGORY_FILE,
37            [CCS_MAC_FILE_LINK]       = CCS_MAC_CATEGORY_FILE,
38            [CCS_MAC_FILE_RENAME]     = CCS_MAC_CATEGORY_FILE,
39            [CCS_MAC_FILE_CHMOD]      = CCS_MAC_CATEGORY_FILE,
40            [CCS_MAC_FILE_CHOWN]      = CCS_MAC_CATEGORY_FILE,
41            [CCS_MAC_FILE_CHGRP]      = CCS_MAC_CATEGORY_FILE,
42            [CCS_MAC_FILE_IOCTL]      = CCS_MAC_CATEGORY_FILE,
43            [CCS_MAC_FILE_CHROOT]     = CCS_MAC_CATEGORY_FILE,
44            [CCS_MAC_FILE_MOUNT]      = CCS_MAC_CATEGORY_FILE,
45            [CCS_MAC_FILE_UMOUNT]     = CCS_MAC_CATEGORY_FILE,
46            [CCS_MAC_FILE_PIVOT_ROOT] = CCS_MAC_CATEGORY_FILE,
47            [CCS_MAC_ENVIRON]         = CCS_MAC_CATEGORY_MISC,
48            [CCS_MAC_NETWORK_UDP_BIND]    = CCS_MAC_CATEGORY_NETWORK,
49            [CCS_MAC_NETWORK_UDP_CONNECT] = CCS_MAC_CATEGORY_NETWORK,
50            [CCS_MAC_NETWORK_TCP_BIND]    = CCS_MAC_CATEGORY_NETWORK,
51            [CCS_MAC_NETWORK_TCP_LISTEN]  = CCS_MAC_CATEGORY_NETWORK,
52            [CCS_MAC_NETWORK_TCP_CONNECT] = CCS_MAC_CATEGORY_NETWORK,
53            [CCS_MAC_NETWORK_TCP_ACCEPT]  = CCS_MAC_CATEGORY_NETWORK,
54            [CCS_MAC_NETWORK_RAW_BIND]    = CCS_MAC_CATEGORY_NETWORK,
55            [CCS_MAC_NETWORK_RAW_CONNECT] = CCS_MAC_CATEGORY_NETWORK,
56            [CCS_MAC_SIGNAL]          = CCS_MAC_CATEGORY_IPC,
57            [CCS_MAX_MAC_INDEX + CCS_INET_STREAM_SOCKET_CREATE]
58            = CCS_MAC_CATEGORY_CAPABILITY,
59            [CCS_MAX_MAC_INDEX + CCS_INET_STREAM_SOCKET_LISTEN]
60            = CCS_MAC_CATEGORY_CAPABILITY,
61            [CCS_MAX_MAC_INDEX + CCS_INET_STREAM_SOCKET_CONNECT]
62            = CCS_MAC_CATEGORY_CAPABILITY,
63            [CCS_MAX_MAC_INDEX + CCS_USE_INET_DGRAM_SOCKET]
64            = CCS_MAC_CATEGORY_CAPABILITY,
65            [CCS_MAX_MAC_INDEX + CCS_USE_INET_RAW_SOCKET]
66            = CCS_MAC_CATEGORY_CAPABILITY,
67            [CCS_MAX_MAC_INDEX + CCS_USE_ROUTE_SOCKET]
68            = CCS_MAC_CATEGORY_CAPABILITY,
69            [CCS_MAX_MAC_INDEX + CCS_USE_PACKET_SOCKET]
70            = CCS_MAC_CATEGORY_CAPABILITY,
71            [CCS_MAX_MAC_INDEX + CCS_SYS_MOUNT]
72            = CCS_MAC_CATEGORY_CAPABILITY,
73            [CCS_MAX_MAC_INDEX + CCS_SYS_UMOUNT]
74            = CCS_MAC_CATEGORY_CAPABILITY,
75            [CCS_MAX_MAC_INDEX + CCS_SYS_REBOOT]
76            = CCS_MAC_CATEGORY_CAPABILITY,
77            [CCS_MAX_MAC_INDEX + CCS_SYS_CHROOT]
78            = CCS_MAC_CATEGORY_CAPABILITY,
79            [CCS_MAX_MAC_INDEX + CCS_SYS_KILL]
80            = CCS_MAC_CATEGORY_CAPABILITY,
81            [CCS_MAX_MAC_INDEX + CCS_SYS_VHANGUP]
82            = CCS_MAC_CATEGORY_CAPABILITY,
83            [CCS_MAX_MAC_INDEX + CCS_SYS_SETTIME]
84            = CCS_MAC_CATEGORY_CAPABILITY,
85            [CCS_MAX_MAC_INDEX + CCS_SYS_NICE]
86            = CCS_MAC_CATEGORY_CAPABILITY,
87            [CCS_MAX_MAC_INDEX + CCS_SYS_SETHOSTNAME]
88            = CCS_MAC_CATEGORY_CAPABILITY,
89            [CCS_MAX_MAC_INDEX + CCS_USE_KERNEL_MODULE]
90            = CCS_MAC_CATEGORY_CAPABILITY,
91            [CCS_MAX_MAC_INDEX + CCS_CREATE_FIFO]
92            = CCS_MAC_CATEGORY_CAPABILITY,
93            [CCS_MAX_MAC_INDEX + CCS_CREATE_BLOCK_DEV]
94            = CCS_MAC_CATEGORY_CAPABILITY,
95            [CCS_MAX_MAC_INDEX + CCS_CREATE_CHAR_DEV]
96            = CCS_MAC_CATEGORY_CAPABILITY,
97            [CCS_MAX_MAC_INDEX + CCS_CREATE_UNIX_SOCKET]
98            = CCS_MAC_CATEGORY_CAPABILITY,
99            [CCS_MAX_MAC_INDEX + CCS_SYS_LINK]
100            = CCS_MAC_CATEGORY_CAPABILITY,
101            [CCS_MAX_MAC_INDEX + CCS_SYS_SYMLINK]
102            = CCS_MAC_CATEGORY_CAPABILITY,
103            [CCS_MAX_MAC_INDEX + CCS_SYS_RENAME]
104            = CCS_MAC_CATEGORY_CAPABILITY,
105            [CCS_MAX_MAC_INDEX + CCS_SYS_UNLINK]
106            = CCS_MAC_CATEGORY_CAPABILITY,
107            [CCS_MAX_MAC_INDEX + CCS_SYS_CHMOD]
108            = CCS_MAC_CATEGORY_CAPABILITY,
109            [CCS_MAX_MAC_INDEX + CCS_SYS_CHOWN]
110            = CCS_MAC_CATEGORY_CAPABILITY,
111            [CCS_MAX_MAC_INDEX + CCS_SYS_IOCTL]
112            = CCS_MAC_CATEGORY_CAPABILITY,
113            [CCS_MAX_MAC_INDEX + CCS_SYS_KEXEC_LOAD]
114            = CCS_MAC_CATEGORY_CAPABILITY,
115            [CCS_MAX_MAC_INDEX + CCS_SYS_PIVOT_ROOT]
116            = CCS_MAC_CATEGORY_CAPABILITY,
117            [CCS_MAX_MAC_INDEX + CCS_SYS_PTRACE]
118            = CCS_MAC_CATEGORY_CAPABILITY,
119            [CCS_MAX_MAC_INDEX + CCS_CONCEAL_MOUNT]
120            = CCS_MAC_CATEGORY_CAPABILITY,
121  };  };
122    
123  /* Table for profile. */  /* Utility functions. */
 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  
   
 /* Profile table. Memory is allocated as needed. */  
 static struct profile {  
         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];  
124    
125  /* Permit policy management by non-root user? */  /**
126  static bool manage_by_non_root = false;   * ccs_parse_ulong - Parse an "unsigned long" value.
127     *
128     * @result: Pointer to "unsigned long".
129     * @str:    Pointer to string to parse.
130     *
131     * Returns value type on success, 0 otherwise.
132     *
133     * The @src is updated to point the first character after the value
134     * on success.
135     */
136    u8 ccs_parse_ulong(unsigned long *result, char **str)
137    {
138            const char *cp = *str;
139            char *ep;
140            int base = 10;
141            if (*cp == '0') {
142                    char c = *(cp + 1);
143                    if (c == 'x' || c == 'X') {
144                            base = 16;
145                            cp += 2;
146                    } else if (c >= '0' && c <= '7') {
147                            base = 8;
148                            cp++;
149                    }
150            }
151            *result = simple_strtoul(cp, &ep, base);
152            if (cp == ep)
153                    return 0;
154            *str = ep;
155            switch (base) {
156            case 16:
157                    return CCS_VALUE_TYPE_HEXADECIMAL;
158            case 8:
159                    return CCS_VALUE_TYPE_OCTAL;
160            default:
161                    return CCS_VALUE_TYPE_DECIMAL;
162            }
163    }
164    
165  /* Utility functions. */  /**
166     * ccs_print_ulong - Print an "unsigned long" value.
167     *
168     * @buffer:     Pointer to buffer.
169     * @buffer_len: Size of @buffer.
170     * @value:      An "unsigned long" value.
171     * @type:       Type of @value.
172     *
173     * Returns nothing.
174     */
175    void ccs_print_ulong(char *buffer, const int buffer_len,
176                         const unsigned long value, const u8 type)
177    {
178            if (type == CCS_VALUE_TYPE_DECIMAL)
179                    snprintf(buffer, buffer_len, "%lu", value);
180            else if (type == CCS_VALUE_TYPE_OCTAL)
181                    snprintf(buffer, buffer_len, "0%lo", value);
182            else if (type == CCS_VALUE_TYPE_HEXADECIMAL)
183                    snprintf(buffer, buffer_len, "0x%lX", value);
184            else
185                    snprintf(buffer, buffer_len, "type(%u)", type);
186    }
187    
 #ifdef CONFIG_TOMOYO  
188  /**  /**
189   * tomoyo_quiet_setup - Set TOMOYO_VERBOSE=0 by default.   * ccs_parse_name_union - Parse a ccs_name_union.
190   *   *
191   * @str: Unused.   * @filename: Name or name group.
192     * @ptr:      Pointer to "struct ccs_name_union".
193   *   *
194   * Returns 0.   * Returns true on success, false otherwise.
195   */   */
196  static int __init tomoyo_quiet_setup(char *str)  bool ccs_parse_name_union(const char *filename, struct ccs_name_union *ptr)
197  {  {
198          ccs_control_array[CCS_TOMOYO_VERBOSE].current_value = 0;          if (!ccs_is_correct_path(filename, 0, 0, 0))
199          return 0;                  return false;
200            if (filename[0] == '@') {
201                    ptr->group = ccs_get_path_group(filename + 1);
202                    ptr->is_group = true;
203                    return ptr->group != NULL;
204            }
205            ptr->filename = ccs_get_name(filename);
206            ptr->is_group = false;
207            return ptr->filename != NULL;
208  }  }
209    
210  __setup("TOMOYO_QUIET", tomoyo_quiet_setup);  /**
211  #endif   * ccs_parse_number_union - Parse a ccs_number_union.
212     *
213     * @data: Number or number range or number group.
214     * @ptr:  Pointer to "struct ccs_number_union".
215     *
216     * Returns true on success, false otherwise.
217     */
218    bool ccs_parse_number_union(char *data, struct ccs_number_union *num)
219    {
220            u8 type;
221            unsigned long v;
222            memset(num, 0, sizeof(*num));
223            if (data[0] == '@') {
224                    if (!ccs_is_correct_path(data, 0, 0, 0))
225                            return false;
226                    num->group = ccs_get_number_group(data + 1);
227                    num->is_group = true;
228                    return num->group != NULL;
229            }
230            type = ccs_parse_ulong(&v, &data);
231            if (!type)
232                    return false;
233            num->values[0] = v;
234            num->min_type = type;
235            if (!*data) {
236                    num->values[1] = v;
237                    num->max_type = type;
238                    return true;
239            }
240            if (*data++ != '-')
241                    return false;
242            type = ccs_parse_ulong(&v, &data);
243            if (!type || *data)
244                    return false;
245            num->values[1] = v;
246            num->max_type = type;
247            return true;
248    }
249    
250  /**  /**
251   * 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.
252   *   *
253   * @str: Pointer to the string.   * @str: Pointer to the string.
254   *   *
255   * Returns true if @str is a \ooo style octal value, false otherwise.   * Returns true if @str is a \ooo style octal value, false otherwise.
256   */   */
257  static bool is_byte_range(const char *str)  static inline bool ccs_is_byte_range(const char *str)
258  {  {
259          return *str >= '0' && *str++ <= '3' &&          return *str >= '0' && *str++ <= '3' &&
260                  *str >= '0' && *str++ <= '7' &&                  *str >= '0' && *str++ <= '7' &&
# Line 182  static bool is_byte_range(const char *st Line 262  static bool is_byte_range(const char *st
262  }  }
263    
264  /**  /**
265   * is_decimal - Check whether the character is a decimal character.   * ccs_is_decimal - Check whether the character is a decimal character.
266   *   *
267   * @c: The character to check.   * @c: The character to check.
268   *   *
269   * Returns true if @c is a decimal character, false otherwise.   * Returns true if @c is a decimal character, false otherwise.
270   */   */
271  static bool is_decimal(const char c)  static inline bool ccs_is_decimal(const char c)
272  {  {
273          return (c >= '0' && c <= '9');          return c >= '0' && c <= '9';
274  }  }
275    
276  /**  /**
277   * is_hexadecimal - Check whether the character is a hexadecimal character.   * ccs_is_hexadecimal - Check whether the character is a hexadecimal character.
278   *   *
279   * @c: The character to check.   * @c: The character to check.
280   *   *
281   * Returns true if @c is a hexadecimal character, false otherwise.   * Returns true if @c is a hexadecimal character, false otherwise.
282   */   */
283  static bool is_hexadecimal(const char c)  static inline bool ccs_is_hexadecimal(const char c)
284  {  {
285          return ((c >= '0' && c <= '9') ||          return (c >= '0' && c <= '9') ||
286                  (c >= 'A' && c <= 'F') ||                  (c >= 'A' && c <= 'F') ||
287                  (c >= 'a' && c <= 'f'));                  (c >= 'a' && c <= 'f');
288  }  }
289    
290  /**  /**
291   * is_alphabet_char - Check whether the character is an alphabet.   * ccs_is_alphabet_char - Check whether the character is an alphabet.
292   *   *
293   * @c: The character to check.   * @c: The character to check.
294   *   *
295   * Returns true if @c is an alphabet character, false otherwise.   * Returns true if @c is an alphabet character, false otherwise.
296   */   */
297  static bool is_alphabet_char(const char c)  static inline bool ccs_is_alphabet_char(const char c)
298  {  {
299          return ((c >= 'A' && c <= 'F') || (c >= 'a' && c <= 'f'));          return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z');
300  }  }
301    
302  /**  /**
303   * make_byte - Make byte value from three octal characters.   * ccs_make_byte - Make byte value from three octal characters.
304   *   *
305   * @c1: The first character.   * @c1: The first character.
306   * @c2: The second character.   * @c2: The second character.
# Line 228  static bool is_alphabet_char(const char Line 308  static bool is_alphabet_char(const char
308   *   *
309   * Returns byte value.   * Returns byte value.
310   */   */
311  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)
312  {  {
313          return ((c1 - '0') << 6) + ((c2 - '0') << 3) + (c3 - '0');          return ((c1 - '0') << 6) + ((c2 - '0') << 3) + (c3 - '0');
314  }  }
315    
316  /**  /**
317   * 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.
318   *   *
319   * @src:  Pointer to pointer to the string.   * @src:  Pointer to pointer to the string.
320   * @find: Pointer to the keyword.   * @find: Pointer to the keyword.
# Line 244  static u8 make_byte(const u8 c1, const u Line 324  static u8 make_byte(const u8 c1, const u
324   * The @src is updated to point the first character after the @find   * The @src is updated to point the first character after the @find
325   * if @src starts with @find.   * if @src starts with @find.
326   */   */
327  static bool str_starts(char **src, const char *find)  bool ccs_str_starts(char **src, const char *find)
328  {  {
329          const int len = strlen(find);          const int len = strlen(find);
330          char *tmp = *src;          char *tmp = *src;
# Line 256  static bool str_starts(char **src, const Line 336  static bool str_starts(char **src, const
336  }  }
337    
338  /**  /**
339   * normalize_line - Format string.   * ccs_normalize_line - Format string.
340   *   *
341   * @buffer: The line to normalize.   * @buffer: The line to normalize.
342   *   *
# Line 265  static bool str_starts(char **src, const Line 345  static bool str_starts(char **src, const
345   *   *
346   * Returns nothing.   * Returns nothing.
347   */   */
348  static void normalize_line(unsigned char *buffer)  void ccs_normalize_line(unsigned char *buffer)
349  {  {
350          unsigned char *sp = buffer;          unsigned char *sp = buffer;
351          unsigned char *dp = buffer;          unsigned char *dp = buffer;
# Line 285  static void normalize_line(unsigned char Line 365  static void normalize_line(unsigned char
365  }  }
366    
367  /**  /**
368     * ccs_tokenize - Tokenize string.
369     *
370     * @buffer: The line to tokenize.
371     * @w:      Pointer to "char *".
372     * @size:   Sizeof @w .
373     *
374     * Returns true on success, false otherwise.
375     */
376    bool ccs_tokenize(char *buffer, char *w[], size_t size)
377    {
378            int count = size / sizeof(char *);
379            int i;
380            for (i = 0; i < count; i++)
381                    w[i] = "";
382            for (i = 0; i < count; i++) {
383                    char *cp = strchr(buffer, ' ');
384                    if (cp)
385                            *cp = '\0';
386                    w[i] = buffer;
387                    if (!cp)
388                            break;
389                    buffer = cp + 1;
390            }
391            return i < count || !*buffer;
392    }
393    
394    /**
395   * ccs_is_correct_path - Validate a pathname.   * ccs_is_correct_path - Validate a pathname.
396   * @filename:     The pathname to check.   * @filename:     The pathname to check.
397   * @start_type:   Should the pathname start with '/'?   * @start_type:   Should the pathname start with '/'?
# Line 293  static void normalize_line(unsigned char Line 400  static void normalize_line(unsigned char
400   *                1 = must / -1 = must not / 0 = don't care   *                1 = must / -1 = must not / 0 = don't care
401   * @end_type:     Should the pathname end with '/'?   * @end_type:     Should the pathname end with '/'?
402   *                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.  
403   *   *
404   * Check whether the given filename follows the naming rules.   * Check whether the given filename follows the naming rules.
405   * Returns true if @filename follows the naming rules, false otherwise.   * Returns true if @filename follows the naming rules, false otherwise.
406   */   */
407  bool ccs_is_correct_path(const char *filename, const s8 start_type,  bool ccs_is_correct_path(const char *filename, const s8 start_type,
408                           const s8 pattern_type, const s8 end_type,                           const s8 pattern_type, const s8 end_type)
                          const char *function)  
409  {  {
410            const char *const start = filename;
411            bool in_repetition = false;
412          bool contains_pattern = false;          bool contains_pattern = false;
413          unsigned char c;          unsigned char c;
414          unsigned char d;          unsigned char d;
415          unsigned char e;          unsigned char e;
         const char *original_filename = filename;  
416          if (!filename)          if (!filename)
417                  goto out;                  goto out;
418          c = *filename;          c = *filename;
# Line 318  bool ccs_is_correct_path(const char *fil Line 424  bool ccs_is_correct_path(const char *fil
424                          goto out;                          goto out;
425          }          }
426          if (c)          if (c)
427                  c = *(strchr(filename, '\0') - 1);                  c = *(filename + strlen(filename) - 1);
428          if (end_type == 1) { /* Must end with '/' */          if (end_type == 1) { /* Must end with '/' */
429                  if (c != '/')                  if (c != '/')
430                          goto out;                          goto out;
# Line 326  bool ccs_is_correct_path(const char *fil Line 432  bool ccs_is_correct_path(const char *fil
432                  if (c == '/')                  if (c == '/')
433                          goto out;                          goto out;
434          }          }
435          while ((c = *filename++) != '\0') {          while (1) {
436                    c = *filename++;
437                    if (!c)
438                            break;
439                  if (c == '\\') {                  if (c == '\\') {
440                          switch ((c = *filename++)) {                          c = *filename++;
441                            switch (c) {
442                          case '\\':  /* "\\" */                          case '\\':  /* "\\" */
443                                  continue;                                  continue;
444                          case '$':   /* "\$" */                          case '$':   /* "\$" */
# Line 345  bool ccs_is_correct_path(const char *fil Line 455  bool ccs_is_correct_path(const char *fil
455                                          break; /* Must not contain pattern */                                          break; /* Must not contain pattern */
456                                  contains_pattern = true;                                  contains_pattern = true;
457                                  continue;                                  continue;
458                            case '{':   /* "/\{" */
459                                    if (filename - 3 < start ||
460                                        *(filename - 3) != '/')
461                                            break;
462                                    if (pattern_type == -1)
463                                            break; /* Must not contain pattern */
464                                    contains_pattern = true;
465                                    in_repetition = true;
466                                    continue;
467                            case '}':   /* "\}/" */
468                                    if (*filename != '/')
469                                            break;
470                                    if (!in_repetition)
471                                            break;
472                                    in_repetition = false;
473                                    continue;
474                          case '0':   /* "\ooo" */                          case '0':   /* "\ooo" */
475                          case '1':                          case '1':
476                          case '2':                          case '2':
# Line 355  bool ccs_is_correct_path(const char *fil Line 481  bool ccs_is_correct_path(const char *fil
481                                  e = *filename++;                                  e = *filename++;
482                                  if (e < '0' || e > '7')                                  if (e < '0' || e > '7')
483                                          break;                                          break;
484                                  c = make_byte(c, d, e);                                  c = ccs_make_byte(c, d, e);
485                                  if (c && (c <= ' ' || c >= 127))                                  if (c && (c <= ' ' || c >= 127))
486                                          continue; /* pattern is not \000 */                                          continue; /* pattern is not \000 */
487                          }                          }
488                          goto out;                          goto out;
489                    } else if (in_repetition && c == '/') {
490                            goto out;
491                  } else if (c <= ' ' || c >= 127) {                  } else if (c <= ' ' || c >= 127) {
492                          goto out;                          goto out;
493                  }                  }
# Line 368  bool ccs_is_correct_path(const char *fil Line 496  bool ccs_is_correct_path(const char *fil
496                  if (!contains_pattern)                  if (!contains_pattern)
497                          goto out;                          goto out;
498          }          }
499            if (in_repetition)
500                    goto out;
501          return true;          return true;
502   out:   out:
         printk(KERN_DEBUG "%s: Invalid pathname '%s'\n", function,  
                original_filename);  
503          return false;          return false;
504  }  }
505    
506  /**  /**
507   * 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.
508   * @domainname:   The domainname to check.   * @domainname:   The domainname to check.
  * @function:     The name of function calling me.  
509   *   *
510   * Returns true if @domainname follows the naming rules, false otherwise.   * Returns true if @domainname follows the naming rules, false otherwise.
511   */   */
512  bool ccs_is_correct_domain(const unsigned char *domainname,  bool ccs_is_correct_domain(const unsigned char *domainname)
                            const char *function)  
513  {  {
514          unsigned char c;          unsigned char c;
515          unsigned char d;          unsigned char d;
516          unsigned char e;          unsigned char e;
         const char *org_domainname = domainname;  
517          if (!domainname || strncmp(domainname, ROOT_NAME, ROOT_NAME_LEN))          if (!domainname || strncmp(domainname, ROOT_NAME, ROOT_NAME_LEN))
518                  goto out;                  goto out;
519          domainname += ROOT_NAME_LEN;          domainname += ROOT_NAME_LEN;
# Line 399  bool ccs_is_correct_domain(const unsigne Line 524  bool ccs_is_correct_domain(const unsigne
524                          goto out;                          goto out;
525                  if (*domainname++ != '/')                  if (*domainname++ != '/')
526                          goto out;                          goto out;
527                  while ((c = *domainname) != '\0' && c != ' ') {                  while (1) {
528                            c = *domainname;
529                            if (!c || c == ' ')
530                                    break;
531                          domainname++;                          domainname++;
532                          if (c == '\\') {                          if (c == '\\') {
533                                  c = *domainname++;                                  c = *domainname++;
# Line 416  bool ccs_is_correct_domain(const unsigne Line 544  bool ccs_is_correct_domain(const unsigne
544                                          e = *domainname++;                                          e = *domainname++;
545                                          if (e < '0' || e > '7')                                          if (e < '0' || e > '7')
546                                                  break;                                                  break;
547                                          c = make_byte(c, d, e);                                          c = ccs_make_byte(c, d, e);
548                                          if (c && (c <= ' ' || c >= 127))                                          if (c && (c <= ' ' || c >= 127))
549                                                  /* pattern is not \000 */                                                  /* pattern is not \000 */
550                                                  continue;                                                  continue;
# Line 429  bool ccs_is_correct_domain(const unsigne Line 557  bool ccs_is_correct_domain(const unsigne
557          } while (*domainname);          } while (*domainname);
558          return true;          return true;
559   out:   out:
         printk(KERN_DEBUG "%s: Invalid domainname '%s'\n", function,  
                org_domainname);  
560          return false;          return false;
561  }  }
562    
# Line 451  bool ccs_is_domain_def(const unsigned ch Line 577  bool ccs_is_domain_def(const unsigned ch
577   *   *
578   * @domainname: The domainname to find.   * @domainname: The domainname to find.
579   *   *
580   * Returns pointer to "struct domain_info" if found, NULL otherwise.   * Returns pointer to "struct ccs_domain_info" if found, NULL otherwise.
581     *
582     * Caller holds ccs_read_lock().
583   */   */
584  struct domain_info *ccs_find_domain(const char *domainname)  struct ccs_domain_info *ccs_find_domain(const char *domainname)
585  {  {
586          struct domain_info *domain;          struct ccs_domain_info *domain;
587          struct path_info name;          struct ccs_path_info name;
588          name.name = domainname;          name.name = domainname;
589          ccs_fill_path_info(&name);          ccs_fill_path_info(&name);
590          list1_for_each_entry(domain, &domain_list, list) {          list_for_each_entry_rcu(domain, &ccs_domain_list, list) {
591                  if (!domain->is_deleted &&                  if (!domain->is_deleted &&
592                      !ccs_pathcmp(&name, domain->domainname))                      !ccs_pathcmp(&name, domain->domainname))
593                          return domain;                          return domain;
# Line 468  struct domain_info *ccs_find_domain(cons Line 596  struct domain_info *ccs_find_domain(cons
596  }  }
597    
598  /**  /**
599   * path_depth - Evaluate the number of '/' in a string.   * ccs_const_part_length - Evaluate the initial length without a pattern in a token.
  *  
  * @pathname: The string to evaluate.  
  *  
  * Returns path depth of the string.  
  *  
  * I score 2 for each of the '/' in the @pathname  
  * and score 1 if the @pathname ends with '/'.  
  */  
 static int path_depth(const char *pathname)  
 {  
         int i = 0;  
         if (pathname) {  
                 char *ep = strchr(pathname, '\0');  
                 if (pathname < ep--) {  
                         if (*ep != '/')  
                                 i++;  
                         while (pathname <= ep)  
                                 if (*ep-- == '/')  
                                         i += 2;  
                 }  
         }  
         return i;  
 }  
   
 /**  
  * const_part_length - Evaluate the initial length without a pattern in a token.  
600   *   *
601   * @filename: The string to evaluate.   * @filename: The string to evaluate.
602   *   *
603   * Returns the initial length without a pattern in @filename.   * Returns the initial length without a pattern in @filename.
604   */   */
605  static int const_part_length(const char *filename)  static int ccs_const_part_length(const char *filename)
606  {  {
607          char c;          char c;
608          int len = 0;          int len = 0;
609          if (!filename)          if (!filename)
610                  return 0;                  return 0;
611          while ((c = *filename++) != '\0') {          while (1) {
612                    c = *filename++;
613                    if (!c)
614                            break;
615                  if (c != '\\') {                  if (c != '\\') {
616                          len++;                          len++;
617                          continue;                          continue;
# Line 535  static int const_part_length(const char Line 640  static int const_part_length(const char
640  }  }
641    
642  /**  /**
643   * ccs_fill_path_info - Fill in "struct path_info" members.   * ccs_fill_path_info - Fill in "struct ccs_path_info" members.
644   *   *
645   * @ptr: Pointer to "struct path_info" to fill in.   * @ptr: Pointer to "struct ccs_path_info" to fill in.
646   *   *
647   * The caller sets "struct path_info"->name.   * The caller sets "struct ccs_path_info"->name.
648   */   */
649  void ccs_fill_path_info(struct path_info *ptr)  void ccs_fill_path_info(struct ccs_path_info *ptr)
650  {  {
651          const char *name = ptr->name;          const char *name = ptr->name;
652          const int len = strlen(name);          const int len = strlen(name);
653          ptr->total_len = len;          ptr->total_len = len;
654          ptr->const_len = const_part_length(name);          ptr->const_len = ccs_const_part_length(name);
655          ptr->is_dir = len && (name[len - 1] == '/');          ptr->is_dir = len && (name[len - 1] == '/');
656          ptr->is_patterned = (ptr->const_len < len);          ptr->is_patterned = (ptr->const_len < len);
657          ptr->hash = full_name_hash(name, len);          ptr->hash = full_name_hash(name, len);
         ptr->depth = path_depth(name);  
658  }  }
659    
660  /**  /**
661   * file_matches_to_pattern2 - Pattern matching without '/' character   * ccs_file_matches_pattern2 - Pattern matching without '/' character
662   * and "\-" pattern.   * and "\-" pattern.
663   *   *
664   * @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 668  void ccs_fill_path_info(struct path_info
668   *   *
669   * Returns true if @filename matches @pattern, false otherwise.   * Returns true if @filename matches @pattern, false otherwise.
670   */   */
671  static bool file_matches_to_pattern2(const char *filename,  static bool ccs_file_matches_pattern2(const char *filename,
672                                       const char *filename_end,                                        const char *filename_end,
673                                       const char *pattern,                                        const char *pattern,
674                                       const char *pattern_end)                                        const char *pattern_end)
675  {  {
676          while (filename < filename_end && pattern < pattern_end) {          while (filename < filename_end && pattern < pattern_end) {
677                  char c;                  char c;
# Line 587  static bool file_matches_to_pattern2(con Line 691  static bool file_matches_to_pattern2(con
691                          } else if (c == '\\') {                          } else if (c == '\\') {
692                                  if (filename[1] == '\\')                                  if (filename[1] == '\\')
693                                          filename++;                                          filename++;
694                                  else if (is_byte_range(filename + 1))                                  else if (ccs_is_byte_range(filename + 1))
695                                          filename += 3;                                          filename += 3;
696                                  else                                  else
697                                          return false;                                          return false;
# Line 600  static bool file_matches_to_pattern2(con Line 704  static bool file_matches_to_pattern2(con
704                                  return false;                                  return false;
705                          break;                          break;
706                  case '+':                  case '+':
707                          if (!is_decimal(c))                          if (!ccs_is_decimal(c))
708                                  return false;                                  return false;
709                          break;                          break;
710                  case 'x':                  case 'x':
711                          if (!is_hexadecimal(c))                          if (!ccs_is_hexadecimal(c))
712                                  return false;                                  return false;
713                          break;                          break;
714                  case 'a':                  case 'a':
715                          if (!is_alphabet_char(c))                          if (!ccs_is_alphabet_char(c))
716                                  return false;                                  return false;
717                          break;                          break;
718                  case '0':                  case '0':
719                  case '1':                  case '1':
720                  case '2':                  case '2':
721                  case '3':                  case '3':
722                          if (c == '\\' && is_byte_range(filename + 1)                          if (c == '\\' && ccs_is_byte_range(filename + 1)
723                              && strncmp(filename + 1, pattern, 3) == 0) {                              && !strncmp(filename + 1, pattern, 3)) {
724                                  filename += 3;                                  filename += 3;
725                                  pattern += 2;                                  pattern += 2;
726                                  break;                                  break;
# Line 625  static bool file_matches_to_pattern2(con Line 729  static bool file_matches_to_pattern2(con
729                  case '*':                  case '*':
730                  case '@':                  case '@':
731                          for (i = 0; i <= filename_end - filename; i++) {                          for (i = 0; i <= filename_end - filename; i++) {
732                                  if (file_matches_to_pattern2(filename + i,                                  if (ccs_file_matches_pattern2(filename + i,
733                                                               filename_end,                                                                filename_end,
734                                                               pattern + 1,                                                                pattern + 1,
735                                                               pattern_end))                                                                pattern_end))
736                                          return true;                                          return true;
737                                  c = filename[i];                                  c = filename[i];
738                                  if (c == '.' && *pattern == '@')                                  if (c == '.' && *pattern == '@')
# Line 637  static bool file_matches_to_pattern2(con Line 741  static bool file_matches_to_pattern2(con
741                                          continue;                                          continue;
742                                  if (filename[i + 1] == '\\')                                  if (filename[i + 1] == '\\')
743                                          i++;                                          i++;
744                                  else if (is_byte_range(filename + i + 1))                                  else if (ccs_is_byte_range(filename + i + 1))
745                                          i += 3;                                          i += 3;
746                                  else                                  else
747                                          break; /* Bad pattern. */                                          break; /* Bad pattern. */
# Line 647  static bool file_matches_to_pattern2(con Line 751  static bool file_matches_to_pattern2(con
751                          j = 0;                          j = 0;
752                          c = *pattern;                          c = *pattern;
753                          if (c == '$') {                          if (c == '$') {
754                                  while (is_decimal(filename[j]))                                  while (ccs_is_decimal(filename[j]))
755                                          j++;                                          j++;
756                          } else if (c == 'X') {                          } else if (c == 'X') {
757                                  while (is_hexadecimal(filename[j]))                                  while (ccs_is_hexadecimal(filename[j]))
758                                          j++;                                          j++;
759                          } else if (c == 'A') {                          } else if (c == 'A') {
760                                  while (is_alphabet_char(filename[j]))                                  while (ccs_is_alphabet_char(filename[j]))
761                                          j++;                                          j++;
762                          }                          }
763                          for (i = 1; i <= j; i++) {                          for (i = 1; i <= j; i++) {
764                                  if (file_matches_to_pattern2(filename + i,                                  if (ccs_file_matches_pattern2(filename + i,
765                                                               filename_end,                                                                filename_end,
766                                                               pattern + 1,                                                                pattern + 1,
767                                                               pattern_end))                                                                pattern_end))
768                                          return true;                                          return true;
769                          }                          }
770                          return false; /* Not matched or bad pattern. */                          return false; /* Not matched or bad pattern. */
# Line 671  static bool file_matches_to_pattern2(con Line 775  static bool file_matches_to_pattern2(con
775          while (*pattern == '\\' &&          while (*pattern == '\\' &&
776                 (*(pattern + 1) == '*' || *(pattern + 1) == '@'))                 (*(pattern + 1) == '*' || *(pattern + 1) == '@'))
777                  pattern += 2;                  pattern += 2;
778          return (filename == filename_end && pattern == pattern_end);          return filename == filename_end && pattern == pattern_end;
779  }  }
780    
781  /**  /**
782   * file_matches_to_pattern - Pattern matching without without '/' character.   * ccs_file_matches_pattern - Pattern matching without without '/' character.
783   *   *
784   * @filename:     The start of string to check.   * @filename:     The start of string to check.
785   * @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 788  static bool file_matches_to_pattern2(con
788   *   *
789   * Returns true if @filename matches @pattern, false otherwise.   * Returns true if @filename matches @pattern, false otherwise.
790   */   */
791  static bool file_matches_to_pattern(const char *filename,  static bool ccs_file_matches_pattern(const char *filename,
792                                      const char *filename_end,                                       const char *filename_end,
793                                      const char *pattern,                                       const char *pattern,
794                                      const char *pattern_end)                                       const char *pattern_end)
795  {  {
796          const char *pattern_start = pattern;          const char *pattern_start = pattern;
797          bool first = true;          bool first = true;
# Line 696  static bool file_matches_to_pattern(cons Line 800  static bool file_matches_to_pattern(cons
800                  /* Split at "\-" pattern. */                  /* Split at "\-" pattern. */
801                  if (*pattern++ != '\\' || *pattern++ != '-')                  if (*pattern++ != '\\' || *pattern++ != '-')
802                          continue;                          continue;
803                  result = file_matches_to_pattern2(filename, filename_end,                  result = ccs_file_matches_pattern2(filename, filename_end,
804                                                    pattern_start, pattern - 2);                                                     pattern_start, pattern - 2);
805                  if (first)                  if (first)
806                          result = !result;                          result = !result;
807                  if (result)                  if (result)
# Line 705  static bool file_matches_to_pattern(cons Line 809  static bool file_matches_to_pattern(cons
809                  first = false;                  first = false;
810                  pattern_start = pattern;                  pattern_start = pattern;
811          }          }
812          result = file_matches_to_pattern2(filename, filename_end,          result = ccs_file_matches_pattern2(filename, filename_end,
813                                            pattern_start, pattern_end);                                             pattern_start, pattern_end);
814          return first ? result : !result;          return first ? result : !result;
815  }  }
816    
817  /**  /**
818   * ccs_path_matches_pattern - Check whether the given filename matches the given pattern.   * ccs_path_matches_pattern2 - Do pathname pattern matching.
  * @filename: The filename to check.  
  * @pattern:  The pattern to compare.  
819   *   *
820   * Returns true if matches, false otherwise.   * @f: The start of string to check.
821     * @p: The start of pattern to compare.
822   *   *
823   * The following patterns are available.   * Returns true if @f matches @p, false otherwise.
  *   \\     \ itself.  
  *   \ooo   Octal representation of a byte.  
  *   \*     More than or equals to 0 character other than '/'.  
  *   \@     More than or equals to 0 character other than '/' or '.'.  
  *   \?     1 byte character other than '/'.  
  *   \$     More than or equals to 1 decimal digit.  
  *   \+     1 decimal digit.  
  *   \X     More than or equals to 1 hexadecimal digit.  
  *   \x     1 hexadecimal digit.  
  *   \A     More than or equals to 1 alphabet character.  
  *   \a     1 alphabet character.  
  *   \-     Subtraction operator.  
824   */   */
825  bool ccs_path_matches_pattern(const struct path_info *filename,  static bool ccs_path_matches_pattern2(const char *f, const char *p)
                               const struct path_info *pattern)  
826  {  {
827          /*          const char *f_delimiter;
828            if (!filename || !pattern)          const char *p_delimiter;
           return false;  
         */  
         const char *f = filename->name;  
         const char *p = pattern->name;  
         const int len = pattern->const_len;  
         /* If @pattern doesn't contain pattern, I can use strcmp(). */  
         if (!pattern->is_patterned)  
                 return !ccs_pathcmp(filename, pattern);  
         /* Dont compare if the number of '/' differs. */  
         if (filename->depth != pattern->depth)  
                 return false;  
         /* Compare the initial length without patterns. */  
         if (strncmp(f, p, len))  
                 return false;  
         f += len;  
         p += len;  
         /* Main loop. Compare each directory component. */  
829          while (*f && *p) {          while (*f && *p) {
830                  const char *f_delimiter = strchr(f, '/');                  f_delimiter = strchr(f, '/');
                 const char *p_delimiter = strchr(p, '/');  
831                  if (!f_delimiter)                  if (!f_delimiter)
832                          f_delimiter = strchr(f, '\0');                          f_delimiter = f + strlen(f);
833                    p_delimiter = strchr(p, '/');
834                  if (!p_delimiter)                  if (!p_delimiter)
835                          p_delimiter = strchr(p, '\0');                          p_delimiter = p + strlen(p);
836                  if (!file_matches_to_pattern(f, f_delimiter, p, p_delimiter))                  if (*p == '\\' && *(p + 1) == '{')
837                            goto recursive;
838                    if (!ccs_file_matches_pattern(f, f_delimiter, p, p_delimiter))
839                          return false;                          return false;
840                  f = f_delimiter;                  f = f_delimiter;
841                  if (*f)                  if (*f)
# Line 773  bool ccs_path_matches_pattern(const stru Line 848  bool ccs_path_matches_pattern(const stru
848          while (*p == '\\' &&          while (*p == '\\' &&
849                 (*(p + 1) == '*' || *(p + 1) == '@'))                 (*(p + 1) == '*' || *(p + 1) == '@'))
850                  p += 2;                  p += 2;
851          return (!*f && !*p);          return !*f && !*p;
852     recursive:
853            /*
854             * The "\{" pattern is permitted only after '/' character.
855             * This guarantees that below "*(p - 1)" is safe.
856             * Also, the "\}" pattern is permitted only before '/' character
857             * so that "\{" + "\}" pair will not break the "\-" operator.
858             */
859            if (*(p - 1) != '/' || p_delimiter <= p + 3 || *p_delimiter != '/' ||
860                *(p_delimiter - 1) != '}' || *(p_delimiter - 2) != '\\')
861                    return false; /* Bad pattern. */
862            do {
863                    /* Compare current component with pattern. */
864                    if (!ccs_file_matches_pattern(f, f_delimiter, p + 2,
865                                                  p_delimiter - 2))
866                            break;
867                    /* Proceed to next component. */
868                    f = f_delimiter;
869                    if (!*f)
870                            break;
871                    f++;
872                    /* Continue comparison. */
873                    if (ccs_path_matches_pattern2(f, p_delimiter + 1))
874                            return true;
875                    f_delimiter = strchr(f, '/');
876            } while (f_delimiter);
877            return false; /* Not matched. */
878  }  }
879    
880  /**  /**
881   * ccs_io_printf - Transactional printf() to "struct ccs_io_buffer" structure.   * ccs_path_matches_pattern - Check whether the given filename matches the given pattern.
882     * @filename: The filename to check.
883     * @pattern:  The pattern to compare.
884   *   *
885   * @head: Pointer to "struct ccs_io_buffer".   * Returns true if matches, false otherwise.
  * @fmt:  The printf()'s format string, followed by parameters.  
886   *   *
887   * Returns true on success, false otherwise.   * The following patterns are available.
888     *   \\     \ itself.
889     *   \ooo   Octal representation of a byte.
890     *   \*     Zero or more repetitions of characters other than '/'.
891     *   \@     Zero or more repetitions of characters other than '/' or '.'.
892     *   \?     1 byte character other than '/'.
893     *   \$     One or more repetitions of decimal digits.
894     *   \+     1 decimal digit.
895     *   \X     One or more repetitions of hexadecimal digits.
896     *   \x     1 hexadecimal digit.
897     *   \A     One or more repetitions of alphabet characters.
898     *   \a     1 alphabet character.
899   *   *
900   * The snprintf() will truncate, but ccs_io_printf() won't.   *   \-     Subtraction operator.
901     *
902     *   /\{dir\}/   One or more repetitions of dir (e.g. /dir/ /dir/dir/
903     *               /dir/dir/dir/ ).
904   */   */
905  bool ccs_io_printf(struct ccs_io_buffer *head, const char *fmt, ...)  bool ccs_path_matches_pattern(const struct ccs_path_info *filename,
906                                  const struct ccs_path_info *pattern)
907  {  {
908          va_list args;          const char *f = filename->name;
909          int len;          const char *p = pattern->name;
910          int pos = head->read_avail;          const int len = pattern->const_len;
911          int size = head->readbuf_size - pos;          /* If @pattern doesn't contain pattern, I can use strcmp(). */
912          if (size <= 0)          if (!pattern->is_patterned)
913                    return !ccs_pathcmp(filename, pattern);
914            /* Don't compare directory and non-directory. */
915            if (filename->is_dir != pattern->is_dir)
916                  return false;                  return false;
917          va_start(args, fmt);          /* Compare the initial length without patterns. */
918          len = vsnprintf(head->read_buf + pos, size, fmt, args);          if (strncmp(f, p, len))
         va_end(args);  
         if (pos + len >= head->readbuf_size)  
919                  return false;                  return false;
920          head->read_avail += len;          f += len;
921          return true;          p += len;
922            return ccs_path_matches_pattern2(f, p);
923  }  }
924    
925  /**  /**
# Line 808  bool ccs_io_printf(struct ccs_io_buffer Line 927  bool ccs_io_printf(struct ccs_io_buffer
927   *   *
928   * Returns the ccs_realpath() of current process on success, NULL otherwise.   * Returns the ccs_realpath() of current process on success, NULL otherwise.
929   *   *
930   * This function uses ccs_alloc(), so the caller must ccs_free()   * This function uses kzalloc(), so the caller must kfree()
931   * if this function didn't return NULL.   * if this function didn't return NULL.
932   */   */
933  const char *ccs_get_exe(void)  const char *ccs_get_exe(void)
# Line 821  const char *ccs_get_exe(void) Line 940  const char *ccs_get_exe(void)
940          down_read(&mm->mmap_sem);          down_read(&mm->mmap_sem);
941          for (vma = mm->mmap; vma; vma = vma->vm_next) {          for (vma = mm->mmap; vma; vma = vma->vm_next) {
942                  if ((vma->vm_flags & VM_EXECUTABLE) && vma->vm_file) {                  if ((vma->vm_flags & VM_EXECUTABLE) && vma->vm_file) {
943                          cp = ccs_realpath_from_dentry(vma->vm_file->f_dentry,  #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20)
944                                                        vma->vm_file->f_vfsmnt);                          struct path path = { vma->vm_file->f_vfsmnt,
945                                                 vma->vm_file->f_dentry };
946                            cp = ccs_realpath_from_path(&path);
947    #else
948                            cp = ccs_realpath_from_path(&vma->vm_file->f_path);
949    #endif
950                          break;                          break;
951                  }                  }
952          }          }
# Line 831  const char *ccs_get_exe(void) Line 955  const char *ccs_get_exe(void)
955  }  }
956    
957  /**  /**
958   * ccs_get_msg - Get warning message.   * ccs_get_audit - Get audit mode.
  *  
  * @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.  
959   *   *
960   * @index: The functionality to check mode.   * @profile:    Profile number.
961     * @index:      Index number of functionality.
962     * @is_granted: True if granted log, false otehrwise.
963   *   *
964   * Returns the mode of specified functionality.   * Returns mode.
965   */   */
966  unsigned int ccs_check_flags_no_sleep_check(const u8 index)  bool ccs_get_audit(const u8 profile, const u8 index, const bool is_granted)
967  {  {
968          const u8 profile = current->domain_info->profile;          u8 mode;
969          return sbin_init_started && index < CCS_MAX_CONTROL_INDEX          const u8 category = ccs_index2category[index] + CCS_MAX_MAC_INDEX
970  #if MAX_PROFILES != 256                  + CCS_MAX_CAPABILITY_INDEX;
971                  && profile < MAX_PROFILES          if (!ccs_policy_loaded)
972  #endif                  return false;
973                  && profile_ptr[profile] ?          mode = ccs_profile(profile)->config[index];
974                  profile_ptr[profile]->value[index] : 0;          if (mode == CCS_CONFIG_USE_DEFAULT)
975  }                  mode = ccs_profile(profile)->config[category];
976            if (mode == CCS_CONFIG_USE_DEFAULT)
977  /**                  mode = ccs_profile(profile)->default_config;
978   * sleep_check - Check whether it is permitted to do operations that may sleep.          if (is_granted)
979   *                  return mode & CCS_CONFIG_WANT_GRANT_LOG;
980   * Returns true if it is permitted to do operations that may sleep,          return mode & CCS_CONFIG_WANT_REJECT_LOG;
  * false otherwise.  
  *  
  * TOMOYO Linux supports interactive enforcement that lets processes  
  * 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.  
  */  
 static bool sleep_check(void)  
 {  
         static u8 count = 20;  
         if (likely(!in_interrupt()))  
                 return true;  
         if (count) {  
                 count--;  
                 printk(KERN_ERR "BUG: sleeping function called "  
                        "from invalid context.\n");  
                 dump_stack();  
         }  
         return false;  
981  }  }
982    
983  /**  /**
984   * ccs_check_flags - Check mode for specified functionality.   * ccs_get_mode - Get MAC mode.
985   *   *
986   * @index: The functionality to check mode.   * @profile: Profile number.
987     * @index:   Index number of functionality.
988   *   *
989   * Returns the mode of specified functionality.   * Returns mode.
990   */   */
991  unsigned int ccs_check_flags(const u8 index)  int ccs_get_mode(const u8 profile, const u8 index)
992  {  {
993          return sleep_check() ? ccs_check_flags_no_sleep_check(index) : 0;          u8 mode;
994            const u8 category = ccs_index2category[index] + CCS_MAX_MAC_INDEX
995                    + CCS_MAX_CAPABILITY_INDEX;
996            if (!ccs_policy_loaded)
997                    return CCS_CONFIG_DISABLED;
998            mode = ccs_profile(profile)->config[index];
999            if (mode == CCS_CONFIG_USE_DEFAULT)
1000                    mode = ccs_profile(profile)->config[category];
1001            if (mode == CCS_CONFIG_USE_DEFAULT)
1002                    mode = ccs_profile(profile)->default_config;
1003            return mode & 3;
1004  }  }
1005    
 #ifdef CONFIG_TOMOYO  
1006  /**  /**
1007   * ccs_check_capability_flags - Check mode for specified capability.   * ccs_init_request_info - Initialize "struct ccs_request_info" members.
1008   *   *
1009   * @index: The capability to check mode.   * @r:      Pointer to "struct ccs_request_info" to initialize.
1010     * @domain: Pointer to "struct ccs_domain_info". NULL for ccs_current_domain().
1011     * @index:  Index number of functionality.
1012   *   *
1013   * Returns the mode of specified capability.   * Returns mode.
1014   */   */
1015  u8 ccs_check_capability_flags(const u8 index)  int ccs_init_request_info(struct ccs_request_info *r,
1016                              struct ccs_domain_info *domain, const u8 index)
1017  {  {
1018          const u8 profile = current->domain_info->profile;          u8 profile;
1019          return sbin_init_started && index < TOMOYO_MAX_CAPABILITY_INDEX          memset(r, 0, sizeof(*r));
1020  #if MAX_PROFILES != 256          if (!domain)
1021                  && profile < MAX_PROFILES                  domain = ccs_current_domain();
1022  #endif          r->domain = domain;
1023                  && sleep_check()          profile = domain->profile;
1024                  && profile_ptr[profile] ?          r->profile = profile;
1025                  profile_ptr[profile]->capability_value[index] : 0;          r->type = index;
1026            r->mode = ccs_get_mode(profile, index);
1027            return r->mode;
1028  }  }
1029    
1030  /**  /**
1031   * ccs_cap2keyword - Convert capability operation to capability name.   * ccs_last_word - Get last component of a line.
1032   *   *
1033   * @operation: The capability index.   * @line: A line.
1034   *   *
1035   * Returns the name of the specified capability's name.   * Returns the last word of a line.
1036   */   */
1037  const char *ccs_cap2keyword(const u8 operation)  const char *ccs_last_word(const char *name)
1038  {  {
1039          return operation < TOMOYO_MAX_CAPABILITY_INDEX          const char *cp = strrchr(name, ' ');
1040                  ? capability_control_keyword[operation] : NULL;          if (cp)
1041                    return cp + 1;
1042            return name;
1043  }  }
1044    
 #endif  
   
1045  /**  /**
1046   * ccs_verbose_mode - Check whether TOMOYO is verbose mode.   * ccs_warn_log - Print warning or error message on console.
1047   *   *
1048   * Returns true if domain policy violation warning should be printed to   * @r:   Pointer to "struct ccs_request_info".
1049   * console.   * @fmt: The printf()'s format string, followed by parameters.
1050   */   */
1051  bool ccs_verbose_mode(void)  void ccs_warn_log(struct ccs_request_info *r, const char *fmt, ...)
1052  {  {
1053          return ccs_check_flags(CCS_TOMOYO_VERBOSE) != 0;          int len = PAGE_SIZE;
1054            va_list args;
1055            char *buffer;
1056            const struct ccs_profile *profile =
1057                    ccs_profile(r->domain->profile);
1058            switch (r->mode) {
1059            case CCS_CONFIG_ENFORCING:
1060                    if (!profile->enforcing->enforcing_verbose)
1061                            return;
1062                    break;
1063            case CCS_CONFIG_PERMISSIVE:
1064                    if (!profile->permissive->permissive_verbose)
1065                            return;
1066                    break;
1067            case CCS_CONFIG_LEARNING:
1068                    if (!profile->learning->learning_verbose)
1069                            return;
1070                    break;
1071            }
1072            while (1) {
1073                    int len2;
1074                    buffer = kmalloc(len, GFP_KERNEL);
1075                    if (!buffer)
1076                            return;
1077                    va_start(args, fmt);
1078                    len2 = vsnprintf(buffer, len - 1, fmt, args);
1079                    va_end(args);
1080                    if (len2 <= len - 1) {
1081                            buffer[len2] = '\0';
1082                            break;
1083                    }
1084                    len = len2 + 1;
1085                    kfree(buffer);
1086            }
1087            printk(KERN_WARNING "%s: Access %s denied for %s\n",
1088                   r->mode == CCS_CONFIG_ENFORCING ? "ERROR" : "WARNING", buffer,
1089                   ccs_last_word(r->domain->domainname->name));
1090            kfree(buffer);
1091  }  }
1092    
1093  /**  /**
1094   * ccs_check_domain_quota - Check for domain's quota.   * ccs_domain_quota_ok - Check for domain's quota.
1095   *   *
1096   * @domain: Pointer to "struct domain_info".   * @r: Pointer to "struct ccs_request_info".
1097   *   *
1098   * Returns true if the domain is not exceeded quota, false otherwise.   * Returns true if the domain is not exceeded quota, false otherwise.
1099     *
1100     * Caller holds ccs_read_lock().
1101   */   */
1102  bool ccs_check_domain_quota(struct domain_info * const domain)  bool ccs_domain_quota_ok(struct ccs_request_info *r)
1103  {  {
1104          unsigned int count = 0;          unsigned int count = 0;
1105          struct acl_info *ptr;          struct ccs_domain_info *domain = r->domain;
1106            struct ccs_acl_info *ptr;
1107            if (r->mode != 1)
1108                    return false;
1109          if (!domain)          if (!domain)
1110                  return true;                  return true;
1111          list1_for_each_entry(ptr, &domain->acl_info_list, list) {          list_for_each_entry_rcu(ptr, &domain->acl_info_list, list) {
1112                  if (ptr->type & ACL_DELETED)                  if (ptr->is_deleted)
1113                          continue;                          continue;
1114                  switch (ccs_acl_type2(ptr)) {                  switch (ptr->type) {
                         struct single_path_acl_record *acl1;  
                         struct double_path_acl_record *acl2;  
1115                          u16 perm;                          u16 perm;
1116                  case TYPE_SINGLE_PATH_ACL:                          u8 i;
1117                          acl1 = container_of(ptr, struct single_path_acl_record,                  case CCS_TYPE_PATH_ACL:
1118                                              head);                          perm = container_of(ptr, struct ccs_path_acl, head)->
1119                          perm = acl1->perm;                                  perm;
1120                          if (perm & (1 << TYPE_EXECUTE_ACL))                          for (i = 0; i < CCS_MAX_PATH_OPERATION; i++)
1121                                  count++;                                  if (perm & (1 << i))
1122                          if (perm &                                          count++;
1123                              ((1 << TYPE_READ_ACL) | (1 << TYPE_WRITE_ACL)))                          if (perm & (1 << CCS_TYPE_READ_WRITE))
1124                                  count++;                                  count -= 2;
                         if (perm & (1 << TYPE_CREATE_ACL))  
                                 count++;  
                         if (perm & (1 << TYPE_UNLINK_ACL))  
                                 count++;  
                         if (perm & (1 << TYPE_MKDIR_ACL))  
                                 count++;  
                         if (perm & (1 << TYPE_RMDIR_ACL))  
                                 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++;  
1125                          break;                          break;
1126                  case TYPE_DOUBLE_PATH_ACL:                  case CCS_TYPE_PATH2_ACL:
1127                          acl2 = container_of(ptr, struct double_path_acl_record,                          perm = container_of(ptr, struct ccs_path2_acl,
1128                                              head);                                              head)->perm;
1129                          perm = acl2->perm;                          for (i = 0; i < CCS_MAX_PATH2_OPERATION; i++)
1130                          if (perm & (1 << TYPE_LINK_ACL))                                  if (perm & (1 << i))
1131                                  count++;                                          count++;
                         if (perm & (1 << TYPE_RENAME_ACL))  
                                 count++;  
1132                          break;                          break;
1133                  case TYPE_EXECUTE_HANDLER:                  case CCS_TYPE_EXECUTE_HANDLER:
1134                  case TYPE_DENIED_EXECUTE_HANDLER:                  case CCS_TYPE_DENIED_EXECUTE_HANDLER:
1135                            break;
1136                    case CCS_TYPE_PATH_NUMBER_ACL:
1137                            perm = container_of(ptr, struct ccs_path_number_acl,
1138                                                head)->perm;
1139                            for (i = 0; i < CCS_MAX_PATH_NUMBER_OPERATION; i++)
1140                                    if (perm & (1 << i))
1141                                            count++;
1142                            break;
1143                    case CCS_TYPE_PATH_NUMBER3_ACL:
1144                            perm = container_of(ptr,
1145                                                struct ccs_path_number3_acl,
1146                                                head)->perm;
1147                            for (i = 0; i < CCS_MAX_PATH_NUMBER3_OPERATION;
1148                                 i++)
1149                                    if (perm & (1 << i))
1150                                            count++;
1151                            break;
1152                    case CCS_TYPE_IP_NETWORK_ACL:
1153                            perm = container_of(ptr, struct ccs_ip_network_acl,
1154                                                head)->perm;
1155                            for (i = 0; i < CCS_MAX_NETWORK_OPERATION; i++)
1156                                    if (perm & (1 << i))
1157                                            count++;
1158                          break;                          break;
1159                  default:                  default:
1160                          count++;                          count++;
1161                  }                  }
1162          }          }
1163          if (count < ccs_check_flags(CCS_TOMOYO_MAX_ACCEPT_ENTRY))          if (count < ccs_profile(domain->profile)->learning->learning_max_entry)
1164                  return true;                  return true;
1165          if (!domain->quota_warned) {          if (!domain->quota_warned) {
1166                  domain->quota_warned = true;                  domain->quota_warned = true;
1167                  printk(KERN_WARNING "TOMOYO-WARNING: "                  printk(KERN_WARNING "WARNING: "
1168                         "Domain '%s' has so many ACLs to hold. "                         "Domain '%s' has so many ACLs to hold. "
1169                         "Stopped learning mode.\n", domain->domainname->name);                         "Stopped learning mode.\n", domain->domainname->name);
1170          }          }
1171          return false;          return false;
1172  }  }
   
 /**  
  * 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.3033

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