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

Subversion リポジトリの参照

Diff of /trunk/1.8.x/ccs-patch/security/ccsecurity/network.c

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

trunk/1.6.x/ccs-patch/fs/tomoyo_network.c revision 1817 by kumaneko, Tue Nov 11 00:22:48 2008 UTC trunk/1.7.x/ccs-patch/security/ccsecurity/network.c revision 3502 by kumaneko, Mon Mar 8 08:44:55 2010 UTC
# Line 1  Line 1 
1  /*  /*
2   * fs/tomoyo_network.c   * security/ccsecurity/network.c
3   *   *
4   * Implementation of the Domain-Based Mandatory Access Control.   * Copyright (C) 2005-2010  NTT DATA CORPORATION
5   *   *
6   * Copyright (C) 2005-2008  NTT DATA CORPORATION   * Version: 1.7.2-pre   2010/03/08
  *  
  * Version: 1.6.5   2008/11/11  
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    
 #include <linux/ccs_common.h>  
 #include <linux/tomoyo.h>  
 #include <linux/realpath.h>  
13  #include <linux/net.h>  #include <linux/net.h>
14  #include <linux/inet.h>  #include <linux/inet.h>
15  #include <linux/in.h>  #include <linux/in.h>
16  #include <linux/in6.h>  #include <linux/in6.h>
17    #include <net/ip.h>
18    #include <net/ipv6.h>
19    #include <net/udp.h>
20    #include "internal.h"
21    
22  /**  /**
23   * audit_network_log - Audit network log.   * ccs_audit_network_log - Audit network log.
24   *   *
25   * @r:          Pointer to "struct ccs_request_info".   * @r:          Pointer to "struct ccs_request_info".
26   * @operation:  The name of operation.   * @operation:  The name of operation.
# Line 31  Line 30 
30   *   *
31   * Returns 0 on success, negative value otherwise.   * Returns 0 on success, negative value otherwise.
32   */   */
33  static int audit_network_log(struct ccs_request_info *r, const char *operation,  static int ccs_audit_network_log(struct ccs_request_info *r,
34                               const char *address, const u16 port,                                   const char *operation, const char *address,
35                               const bool is_granted)                                   const u16 port, const bool is_granted)
36  {  {
37          return ccs_write_audit_log(is_granted, r, KEYWORD_ALLOW_NETWORK          if (!is_granted)
38                    ccs_warn_log(r, "%s %s %u", operation, address, port);
39            return ccs_write_audit_log(is_granted, r, CCS_KEYWORD_ALLOW_NETWORK
40                                     "%s %s %u\n", operation, address, port);                                     "%s %s %u\n", operation, address, port);
41  }  }
42    
43  /**  /**
44   * save_ipv6_address - Keep the given IPv6 address on the RAM.   * ccs_parse_ip_address - Parse an IP address.
  *  
  * @addr: Pointer to "struct in6_addr".  
  *  
  * Returns pointer to "struct in6_addr" on success, NULL otherwise.  
  *  
  * The RAM is shared, so NEVER try to modify or kfree() the returned address.  
  */  
 static const struct in6_addr *save_ipv6_address(const struct in6_addr *addr)  
 {  
         static const u8 block_size = 16;  
         struct addr_list {  
                 /* Workaround for gcc 4.3's bug. */  
                 struct in6_addr addr[16]; /* = block_size */  
                 struct list1_head list;  
                 u32 in_use_count;  
         };  
         static LIST1_HEAD(address_list);  
         struct addr_list *ptr;  
         static DEFINE_MUTEX(lock);  
         u8 i = block_size;  
         if (!addr)  
                 return NULL;  
         mutex_lock(&lock);  
         list1_for_each_entry(ptr, &address_list, list) {  
                 for (i = 0; i < ptr->in_use_count; i++) {  
                         if (!memcmp(&ptr->addr[i], addr, sizeof(*addr)))  
                                 goto ok;  
                 }  
                 if (i < block_size)  
                         break;  
         }  
         if (i == block_size) {  
                 ptr = ccs_alloc_element(sizeof(*ptr));  
                 if (!ptr)  
                         goto ok;  
                 list1_add_tail_mb(&ptr->list, &address_list);  
                 i = 0;  
         }  
         ptr->addr[ptr->in_use_count++] = *addr;  
  ok:  
         mutex_unlock(&lock);  
         return ptr ? &ptr->addr[i] : NULL;  
 }  
   
 /* The list for "struct address_group_entry". */  
 static LIST1_HEAD(address_group_list);  
   
 /**  
  * update_address_group_entry - Update "struct address_group_entry" list.  
  *  
  * @group_name:  The name of address group.  
  * @is_ipv6:     True if @min_address and @max_address are IPv6 addresses.  
  * @min_address: Start of IPv4 or IPv6 address range.  
  * @max_address: End of IPv4 or IPv6 address range.  
  * @is_delete:   True if it is a delete request.  
  *  
  * Returns 0 on success, negative value otherwise.  
  */  
 static int update_address_group_entry(const char *group_name,  
                                       const bool is_ipv6,  
                                       const u16 *min_address,  
                                       const u16 *max_address,  
                                       const bool is_delete)  
 {  
         static DEFINE_MUTEX(lock);  
         struct address_group_entry *new_group;  
         struct address_group_entry *group;  
         struct address_group_member *new_member;  
         struct address_group_member *member;  
         const struct path_info *saved_group_name;  
         const struct in6_addr *saved_min_address = NULL;  
         const struct in6_addr *saved_max_address = NULL;  
         int error = -ENOMEM;  
         bool found = false;  
         if (!ccs_is_correct_path(group_name, 0, 0, 0, __func__) ||  
             !group_name[0])  
                 return -EINVAL;  
         saved_group_name = ccs_save_name(group_name);  
         if (!saved_group_name)  
                 return -ENOMEM;  
         if (!is_ipv6)  
                 goto not_ipv6;  
         saved_min_address  
                 = save_ipv6_address((struct in6_addr *) min_address);  
         saved_max_address  
                 = save_ipv6_address((struct in6_addr *) max_address);  
         if (!saved_min_address || !saved_max_address)  
                 return -ENOMEM;  
  not_ipv6:  
         mutex_lock(&lock);  
         list1_for_each_entry(group, &address_group_list, list) {  
                 if (saved_group_name != group->group_name)  
                         continue;  
                 list1_for_each_entry(member, &group->address_group_member_list,  
                                      list) {  
                         if (member->is_ipv6 != is_ipv6)  
                                 continue;  
                         if (is_ipv6) {  
                                 if (member->min.ipv6 != saved_min_address ||  
                                     member->max.ipv6 != saved_max_address)  
                                         continue;  
                         } else {  
                                 if (member->min.ipv4 != *(u32 *) min_address ||  
                                     member->max.ipv4 != *(u32 *) max_address)  
                                         continue;  
                         }  
                         member->is_deleted = is_delete;  
                         error = 0;  
                         goto out;  
                 }  
                 found = true;  
                 break;  
         }  
         if (is_delete) {  
                 error = -ENOENT;  
                 goto out;  
         }  
         if (!found) {  
                 new_group = ccs_alloc_element(sizeof(*new_group));  
                 if (!new_group)  
                         goto out;  
                 INIT_LIST1_HEAD(&new_group->address_group_member_list);  
                 new_group->group_name = saved_group_name;  
                 list1_add_tail_mb(&new_group->list, &address_group_list);  
                 group = new_group;  
         }  
         new_member = ccs_alloc_element(sizeof(*new_member));  
         if (!new_member)  
                 goto out;  
         new_member->is_ipv6 = is_ipv6;  
         if (is_ipv6) {  
                 new_member->min.ipv6 = saved_min_address;  
                 new_member->max.ipv6 = saved_max_address;  
         } else {  
                 new_member->min.ipv4 = *(u32 *) min_address;  
                 new_member->max.ipv4 = *(u32 *) max_address;  
         }  
         list1_add_tail_mb(&new_member->list, &group->address_group_member_list);  
         error = 0;  
  out:  
         mutex_unlock(&lock);  
         ccs_update_counter(CCS_UPDATES_COUNTER_EXCEPTION_POLICY);  
         return error;  
 }  
   
 /**  
  * parse_ip_address - Parse an IP address.  
45   *   *
46   * @address: String to parse.   * @address: String to parse.
47   * @min:     Pointer to store min address.   * @min:     Pointer to store min address.
# Line 195  static int update_address_group_entry(co Line 49  static int update_address_group_entry(co
49   *   *
50   * Returns 2 if @address is an IPv6, 1 if @address is an IPv4, 0 otherwise.   * Returns 2 if @address is an IPv6, 1 if @address is an IPv4, 0 otherwise.
51   */   */
52  static int parse_ip_address(char *address, u16 *min, u16 *max)  int ccs_parse_ip_address(char *address, u16 *min, u16 *max)
53  {  {
54          int count = sscanf(address, "%hx:%hx:%hx:%hx:%hx:%hx:%hx:%hx"          int count = sscanf(address, "%hx:%hx:%hx:%hx:%hx:%hx:%hx:%hx"
55                             "-%hx:%hx:%hx:%hx:%hx:%hx:%hx:%hx",                             "-%hx:%hx:%hx:%hx:%hx:%hx:%hx:%hx",
# Line 229  static int parse_ip_address(char *addres Line 83  static int parse_ip_address(char *addres
83          return 0;          return 0;
84  }  }
85    
 /**  
  * ccs_write_address_group_policy - Write "struct address_group_entry" list.  
  *  
  * @data:      String to parse.  
  * @is_delete: True if it is a delete request.  
  *  
  * Returns 0 on success, negative value otherwise.  
  */  
 int ccs_write_address_group_policy(char *data, const bool is_delete)  
 {  
         bool is_ipv6;  
         u16 min_address[8];  
         u16 max_address[8];  
         char *cp = strchr(data, ' ');  
         if (!cp)  
                 return -EINVAL;  
         *cp++ = '\0';  
         switch (parse_ip_address(cp, min_address, max_address)) {  
         case 2:  
                 is_ipv6 = true;  
                 break;  
         case 1:  
                 is_ipv6 = false;  
                 break;  
         default:  
                 return -EINVAL;  
         }  
         return update_address_group_entry(data, is_ipv6,  
                                           min_address, max_address, is_delete);  
 }  
   
 /**  
  * find_or_assign_new_address_group - Create address group.  
  *  
  * @group_name: The name of address group.  
  *  
  * Returns pointer to "struct address_group_entry" on success, NULL otherwise.  
  */  
 static struct address_group_entry *  
 find_or_assign_new_address_group(const char *group_name)  
 {  
         u8 i;  
         struct address_group_entry *group;  
         for (i = 0; i <= 1; i++) {  
                 list1_for_each_entry(group, &address_group_list, list) {  
                         if (!strcmp(group_name, group->group_name->name))  
                                 return group;  
                 }  
                 if (!i) {  
                         const u16 dummy[2] = { 0, 0 };  
                         update_address_group_entry(group_name, false,  
                                                    dummy, dummy, false);  
                         update_address_group_entry(group_name, false,  
                                                    dummy, dummy, true);  
                 }  
         }  
         return NULL;  
 }  
   
 /**  
  * address_matches_to_group - Check whether the given address matches members of the given address group.  
  *  
  * @is_ipv6: True if @address is an IPv6 address.  
  * @address: An IPv4 or IPv6 address.  
  * @group:   Pointer to "struct address_group_entry".  
  *  
  * Returns true if @address matches addresses in @group group, false otherwise.  
  */  
 static bool address_matches_to_group(const bool is_ipv6, const u32 *address,  
                                      const struct address_group_entry *group)  
 {  
         struct address_group_member *member;  
         const u32 ip = ntohl(*address);  
         list1_for_each_entry(member, &group->address_group_member_list, list) {  
                 if (member->is_deleted)  
                         continue;  
                 if (member->is_ipv6) {  
                         if (is_ipv6 &&  
                             memcmp(member->min.ipv6, address, 16) <= 0 &&  
                             memcmp(address, member->max.ipv6, 16) <= 0)  
                                 return true;  
                 } else {  
                         if (!is_ipv6 &&  
                             member->min.ipv4 <= ip && ip <= member->max.ipv4)  
                                 return true;  
                 }  
         }  
         return false;  
 }  
   
 /**  
  * ccs_read_address_group_policy - Read "struct address_group_entry" list.  
  *  
  * @head: Pointer to "struct ccs_io_buffer".  
  *  
  * Returns true on success, false otherwise.  
  */  
 bool ccs_read_address_group_policy(struct ccs_io_buffer *head)  
 {  
         struct list1_head *gpos;  
         struct list1_head *mpos;  
         list1_for_each_cookie(gpos, head->read_var1, &address_group_list) {  
                 struct address_group_entry *group;  
                 group = list1_entry(gpos, struct address_group_entry, list);  
                 list1_for_each_cookie(mpos, head->read_var2,  
                                       &group->address_group_member_list) {  
                         char buf[128];  
                         struct address_group_member *member;  
                         member = list1_entry(mpos, struct address_group_member,  
                                              list);  
                         if (member->is_deleted)  
                                 continue;  
                         if (member->is_ipv6) {  
                                 const struct in6_addr *min_address  
                                         = member->min.ipv6;  
                                 const struct in6_addr *max_address  
                                         = member->max.ipv6;  
                                 ccs_print_ipv6(buf, sizeof(buf), min_address);  
                                 if (min_address != max_address) {  
                                         int len;  
                                         char *cp = buf + strlen(buf);  
                                         *cp++ = '-';  
                                         len = strlen(buf);  
                                         ccs_print_ipv6(cp, sizeof(buf) - len,  
                                                        max_address);  
                                 }  
                         } else {  
                                 const u32 min_address = member->min.ipv4;  
                                 const u32 max_address = member->max.ipv4;  
                                 memset(buf, 0, sizeof(buf));  
                                 snprintf(buf, sizeof(buf) - 1, "%u.%u.%u.%u",  
                                          HIPQUAD(min_address));  
                                 if (min_address != max_address) {  
                                         const int len = strlen(buf);  
                                         snprintf(buf + len,  
                                                  sizeof(buf) - 1 - len,  
                                                  "-%u.%u.%u.%u",  
                                                  HIPQUAD(max_address));  
                                 }  
                         }  
                         if (!ccs_io_printf(head, KEYWORD_ADDRESS_GROUP  
                                            "%s %s\n", group->group_name->name,  
                                            buf))  
                                 goto out;  
                 }  
         }  
         return true;  
  out:  
         return false;  
 }  
   
86  #if !defined(NIP6)  #if !defined(NIP6)
87  #define NIP6(addr)      \  #define NIP6(addr)                                                      \
88          ntohs((addr).s6_addr16[0]), ntohs((addr).s6_addr16[1]), \          ntohs((addr).s6_addr16[0]), ntohs((addr).s6_addr16[1]),         \
89          ntohs((addr).s6_addr16[2]), ntohs((addr).s6_addr16[3]), \                  ntohs((addr).s6_addr16[2]), ntohs((addr).s6_addr16[3]), \
90          ntohs((addr).s6_addr16[4]), ntohs((addr).s6_addr16[5]), \                  ntohs((addr).s6_addr16[4]), ntohs((addr).s6_addr16[5]), \
91          ntohs((addr).s6_addr16[6]), ntohs((addr).s6_addr16[7])                  ntohs((addr).s6_addr16[6]), ntohs((addr).s6_addr16[7])
92  #endif  #endif
93    
94  /**  /**
# Line 415  const char *ccs_net2keyword(const u8 ope Line 118  const char *ccs_net2keyword(const u8 ope
118  {  {
119          const char *keyword = "unknown";          const char *keyword = "unknown";
120          switch (operation) {          switch (operation) {
121          case NETWORK_ACL_UDP_BIND:          case CCS_NETWORK_UDP_BIND:
122                  keyword = "UDP bind";                  keyword = "UDP bind";
123                  break;                  break;
124          case NETWORK_ACL_UDP_CONNECT:          case CCS_NETWORK_UDP_CONNECT:
125                  keyword = "UDP connect";                  keyword = "UDP connect";
126                  break;                  break;
127          case NETWORK_ACL_TCP_BIND:          case CCS_NETWORK_TCP_BIND:
128                  keyword = "TCP bind";                  keyword = "TCP bind";
129                  break;                  break;
130          case NETWORK_ACL_TCP_LISTEN:          case CCS_NETWORK_TCP_LISTEN:
131                  keyword = "TCP listen";                  keyword = "TCP listen";
132                  break;                  break;
133          case NETWORK_ACL_TCP_CONNECT:          case CCS_NETWORK_TCP_CONNECT:
134                  keyword = "TCP connect";                  keyword = "TCP connect";
135                  break;                  break;
136          case NETWORK_ACL_TCP_ACCEPT:          case CCS_NETWORK_TCP_ACCEPT:
137                  keyword = "TCP accept";                  keyword = "TCP accept";
138                  break;                  break;
139          case NETWORK_ACL_RAW_BIND:          case CCS_NETWORK_RAW_BIND:
140                  keyword = "RAW bind";                  keyword = "RAW bind";
141                  break;                  break;
142          case NETWORK_ACL_RAW_CONNECT:          case CCS_NETWORK_RAW_CONNECT:
143                  keyword = "RAW connect";                  keyword = "RAW connect";
144                  break;                  break;
145          }          }
# Line 444  const char *ccs_net2keyword(const u8 ope Line 147  const char *ccs_net2keyword(const u8 ope
147  }  }
148    
149  /**  /**
150   * update_network_entry - Update "struct ip_network_acl_record" list.   * ccs_network_entry2 - Check permission for network operation.
  *  
  * @operation:   Type of operation.  
  * @record_type: Type of address.  
  * @group:       Pointer to "struct address_group_entry". May be NULL.  
  * @min_address: Start of IPv4 or IPv6 address range.  
  * @max_address: End of IPv4 or IPv6 address range.  
  * @min_port:    Start of port number range.  
  * @max_port:    End of port number range.  
  * @domain:      Pointer to "struct domain_info".  
  * @condition:   Pointer to "struct condition_list". May be NULL.  
  * @is_delete:   True if it is a delete request.  
  *  
  * Returns 0 on success, negative value otherwise.  
  */  
 static int update_network_entry(const u8 operation, const u8 record_type,  
                                 const struct address_group_entry *group,  
                                 const u32 *min_address, const u32 *max_address,  
                                 const u16 min_port, const u16 max_port,  
                                 struct domain_info *domain,  
                                 const struct condition_list *condition,  
                                 const bool is_delete)  
 {  
         static DEFINE_MUTEX(lock);  
         struct acl_info *ptr;  
         struct ip_network_acl_record *acl;  
         int error = -ENOMEM;  
         /* using host byte order to allow u32 comparison than memcmp().*/  
         const u32 min_ip = ntohl(*min_address);  
         const u32 max_ip = ntohl(*max_address);  
         const struct in6_addr *saved_min_address = NULL;  
         const struct in6_addr *saved_max_address = NULL;  
         if (!domain)  
                 return -EINVAL;  
         if (record_type != IP_RECORD_TYPE_IPv6)  
                 goto not_ipv6;  
         saved_min_address = save_ipv6_address((struct in6_addr *) min_address);  
         saved_max_address = save_ipv6_address((struct in6_addr *) max_address);  
         if (!saved_min_address || !saved_max_address)  
                 return -ENOMEM;  
  not_ipv6:  
         mutex_lock(&lock);  
         if (is_delete)  
                 goto delete;  
         list1_for_each_entry(ptr, &domain->acl_info_list, list) {  
                 if (ccs_acl_type1(ptr) != TYPE_IP_NETWORK_ACL)  
                         continue;  
                 if (ccs_get_condition_part(ptr) != condition)  
                         continue;  
                 acl = container_of(ptr, struct ip_network_acl_record, head);  
                 if (acl->operation_type != operation ||  
                     acl->record_type != record_type ||  
                     acl->min_port != min_port || max_port != acl->max_port)  
                         continue;  
                 if (record_type == IP_RECORD_TYPE_ADDRESS_GROUP) {  
                         if (acl->u.group != group)  
                                 continue;  
                 } else if (record_type == IP_RECORD_TYPE_IPv4) {  
                         if (acl->u.ipv4.min != min_ip ||  
                             max_ip != acl->u.ipv4.max)  
                                 continue;  
                 } else if (record_type == IP_RECORD_TYPE_IPv6) {  
                         if (acl->u.ipv6.min != saved_min_address ||  
                             saved_max_address != acl->u.ipv6.max)  
                                 continue;  
                 }  
                 error = ccs_add_domain_acl(NULL, ptr);  
                 goto out;  
         }  
         /* Not found. Append it to the tail. */  
         acl = ccs_alloc_acl_element(TYPE_IP_NETWORK_ACL, condition);  
         if (!acl)  
                 goto out;  
         acl->operation_type = operation;  
         acl->record_type = record_type;  
         if (record_type == IP_RECORD_TYPE_ADDRESS_GROUP) {  
                 acl->u.group = group;  
         } else if (record_type == IP_RECORD_TYPE_IPv4) {  
                 acl->u.ipv4.min = min_ip;  
                 acl->u.ipv4.max = max_ip;  
         } else {  
                 acl->u.ipv6.min = saved_min_address;  
                 acl->u.ipv6.max = saved_max_address;  
         }  
         acl->min_port = min_port;  
         acl->max_port = max_port;  
         error = ccs_add_domain_acl(domain, &acl->head);  
         goto out;  
  delete:  
         error = -ENOENT;  
         list1_for_each_entry(ptr, &domain->acl_info_list, list) {  
                 if (ccs_acl_type2(ptr) != TYPE_IP_NETWORK_ACL)  
                         continue;  
                 if (ccs_get_condition_part(ptr) != condition)  
                         continue;  
                 acl = container_of(ptr, struct ip_network_acl_record, head);  
                 if (acl->operation_type != operation ||  
                     acl->record_type != record_type ||  
                     acl->min_port != min_port || max_port != acl->max_port)  
                         continue;  
                 if (record_type == IP_RECORD_TYPE_ADDRESS_GROUP) {  
                         if (acl->u.group != group)  
                                 continue;  
                 } else if (record_type == IP_RECORD_TYPE_IPv4) {  
                         if (acl->u.ipv4.min != min_ip ||  
                             max_ip != acl->u.ipv4.max)  
                                 continue;  
                 } else if (record_type == IP_RECORD_TYPE_IPv6) {  
                         if (acl->u.ipv6.min != saved_min_address ||  
                             saved_max_address != acl->u.ipv6.max)  
                                 continue;  
                 }  
                 error = ccs_del_domain_acl(ptr);  
                 break;  
         }  
  out:  
         mutex_unlock(&lock);  
         return error;  
 }  
   
 /**  
  * check_network_entry - Check permission for network operation.  
151   *   *
152   * @is_ipv6:   True if @address is an IPv6 address.   * @is_ipv6:   True if @address is an IPv6 address.
153   * @operation: Type of operation.   * @operation: Type of operation.
# Line 573  static int update_network_entry(const u8 Line 155  static int update_network_entry(const u8
155   * @port:      Port number.   * @port:      Port number.
156   *   *
157   * Returns 0 on success, negative value otherwise.   * Returns 0 on success, negative value otherwise.
158     *
159     * Caller holds ccs_read_lock().
160   */   */
161  static int check_network_entry(const bool is_ipv6, const u8 operation,  static int ccs_network_entry2(const bool is_ipv6, const u8 operation,
162                                 const u32 *address, const u16 port)                                const u32 *address, const u16 port)
163  {  {
164          struct ccs_request_info r;          struct ccs_request_info r;
165          struct acl_info *ptr;          struct ccs_acl_info *ptr;
166          const char *keyword = ccs_net2keyword(operation);          const char *keyword = ccs_net2keyword(operation);
167          bool is_enforce;          const u16 perm = 1 << operation;
168          /* using host byte order to allow u32 comparison than memcmp().*/          /* using host byte order to allow u32 comparison than memcmp().*/
169          const u32 ip = ntohl(*address);          const u32 ip = ntohl(*address);
170          bool found = false;          int error;
171          char buf[64];          char buf[64];
172          if (!ccs_can_sleep())          if (ccs_init_request_info(&r, NULL,
173                                      CCS_MAC_NETWORK_UDP_BIND + operation)
174                == CCS_CONFIG_DISABLED)
175                  return 0;                  return 0;
         ccs_init_request_info(&r, NULL, CCS_TOMOYO_MAC_FOR_NETWORK);  
         is_enforce = (r.mode == 3);  
         if (!r.mode)  
                 return 0;  
 retry:  
         list1_for_each_entry(ptr, &r.domain->acl_info_list, list) {  
                 struct ip_network_acl_record *acl;  
                 if (ccs_acl_type2(ptr) != TYPE_IP_NETWORK_ACL)  
                         continue;  
                 acl = container_of(ptr, struct ip_network_acl_record, head);  
                 if (acl->operation_type != operation || port < acl->min_port ||  
                     acl->max_port < port || !ccs_check_condition(&r, ptr))  
                         continue;  
                 if (acl->record_type == IP_RECORD_TYPE_ADDRESS_GROUP) {  
                         if (!address_matches_to_group(is_ipv6, address,  
                                                       acl->u.group))  
                                 continue;  
                 } else if (acl->record_type == IP_RECORD_TYPE_IPv4) {  
                         if (is_ipv6 ||  
                             ip < acl->u.ipv4.min || acl->u.ipv4.max < ip)  
                                 continue;  
                 } else {  
                         if (!is_ipv6 ||  
                             memcmp(acl->u.ipv6.min, address, 16) > 0 ||  
                             memcmp(address, acl->u.ipv6.max, 16) > 0)  
                                 continue;  
                 }  
                 r.cond = ccs_get_condition_part(ptr);  
                 found = true;  
                 break;  
         }  
176          memset(buf, 0, sizeof(buf));          memset(buf, 0, sizeof(buf));
177          if (is_ipv6)          if (is_ipv6)
178                  ccs_print_ipv6(buf, sizeof(buf),                  ccs_print_ipv6(buf, sizeof(buf), (const struct in6_addr *)
179                                 (const struct in6_addr *) address);                                 address);
180          else          else
181                  snprintf(buf, sizeof(buf) - 1, "%u.%u.%u.%u", HIPQUAD(ip));                  snprintf(buf, sizeof(buf) - 1, "%u.%u.%u.%u", HIPQUAD(ip));
182          audit_network_log(&r, keyword, buf, port, found);          do {
183          if (found)                  error = -EPERM;
184                  return 0;                  list_for_each_entry_rcu(ptr, &r.domain->acl_info_list, list) {
185          if (ccs_verbose_mode(r.domain))                          struct ccs_ip_network_acl *acl;
186                  printk(KERN_WARNING "TOMOYO-%s: %s to %s %u denied for %s\n",                          if (ptr->is_deleted ||
187                         ccs_get_msg(is_enforce), keyword, buf, port,                              ptr->type != CCS_TYPE_IP_NETWORK_ACL)
188                         ccs_get_last_name(r.domain));                                  continue;
189          if (is_enforce) {                          acl = container_of(ptr, struct ccs_ip_network_acl,
190                  int error = ccs_check_supervisor(&r, KEYWORD_ALLOW_NETWORK                                             head);
191                                                   "%s %s %u\n", keyword, buf,                          if (!(acl->perm & perm))
192                                                   port);                                  continue;
193                  if (error == 1)                          if (!ccs_compare_number_union(port, &acl->port) ||
194                          goto retry;                              !ccs_condition(&r, ptr))
195                  return error;                                  continue;
196          }                          switch (acl->address_type) {
197          if (r.mode == 1 && ccs_check_domain_quota(r.domain))                          case CCS_IP_ADDRESS_TYPE_ADDRESS_GROUP:
198                  update_network_entry(operation, is_ipv6 ?                                  if (!ccs_address_matches_group(is_ipv6,
199                                       IP_RECORD_TYPE_IPv6 : IP_RECORD_TYPE_IPv4,                                                                 address,
200                                       NULL, address, address, port, port,                                                                 acl->address.
201                                       r.domain, NULL, 0);                                                                 group))
202          return 0;                                          continue;
203                                    break;
204                            case CCS_IP_ADDRESS_TYPE_IPv4:
205                                    if (is_ipv6 || ip < acl->address.ipv4.min ||
206                                        acl->address.ipv4.max < ip)
207                                            continue;
208                                    break;
209                            default:
210                                    if (!is_ipv6 ||
211                                        memcmp(acl->address.ipv6.min, address, 16)
212                                        > 0 ||
213                                        memcmp(address, acl->address.ipv6.max, 16)
214                                        > 0)
215                                            continue;
216                                    break;
217                            }
218                            r.cond = ptr->cond;
219                            error = 0;
220                            break;
221                    }
222                    ccs_audit_network_log(&r, keyword, buf, port, !error);
223                    if (!error)
224                            break;
225                    error = ccs_supervisor(&r, CCS_KEYWORD_ALLOW_NETWORK
226                                           "%s %s %u\n", keyword, buf, port);
227            } while (error == CCS_RETRY_REQUEST);
228            if (r.mode != CCS_CONFIG_ENFORCING)
229                    error = 0;
230            return error;
231  }  }
232    
233  /**  /**
234   * ccs_write_network_policy - Write "struct ip_network_acl_record" list.   * ccs_network_entry - Check permission for network operation.
235     *
236     * @is_ipv6:   True if @address is an IPv6 address.
237     * @operation: Type of operation.
238     * @address:   An IPv4 or IPv6 address.
239     * @port:      Port number.
240     *
241     * Returns 0 on success, negative value otherwise.
242     */
243    static int ccs_network_entry(const bool is_ipv6, const u8 operation,
244                                 const u32 *address, const u16 port)
245    {
246            const int idx = ccs_read_lock();
247            const int error = ccs_network_entry2(is_ipv6, operation, address,
248                                                 port);
249            ccs_read_unlock(idx);
250            return error;
251    }
252    
253    /**
254     * ccs_write_network_policy - Write "struct ccs_ip_network_acl" list.
255   *   *
256   * @data:      String to parse.   * @data:      String to parse.
257   * @domain:    Pointer to "struct domain_info".   * @domain:    Pointer to "struct ccs_domain_info".
258   * @condition: Pointer to "struct condition_list". May be NULL.   * @condition: Pointer to "struct ccs_condition". May be NULL.
259   * @is_delete: True if it is a delete request.   * @is_delete: True if it is a delete request.
260   *   *
261   * Returns 0 on success, negative value otherwise.   * Returns 0 on success, negative value otherwise.
262   */   */
263  int ccs_write_network_policy(char *data, struct domain_info *domain,  int ccs_write_network_policy(char *data, struct ccs_domain_info *domain,
264                               const struct condition_list *condition,                               struct ccs_condition *condition,
265                               const bool is_delete)                               const bool is_delete)
266  {  {
267          u8 sock_type;          struct ccs_ip_network_acl *entry = NULL;
268          u8 operation;          struct ccs_acl_info *ptr;
269          u8 record_type;          struct ccs_ip_network_acl e = {
270                    .head.type = CCS_TYPE_IP_NETWORK_ACL,
271                    .head.cond = condition,
272            };
273          u16 min_address[8];          u16 min_address[8];
274          u16 max_address[8];          u16 max_address[8];
275          struct address_group_entry *group = NULL;          int error = is_delete ? -ENOENT : -ENOMEM;
276          u16 min_port;          u8 sock_type;
277          u16 max_port;          char *w[4];
278          u8 count;          if (!ccs_tokenize(data, w, sizeof(w)) || !w[3][0])
279          char *cp1 = strchr(data, ' ');                  return -EINVAL;
280          char *cp2;          if (!strcmp(w[0], "TCP"))
         if (!cp1)  
                 goto out;  
         cp1++;  
         if (!strncmp(data, "TCP ", 4))  
281                  sock_type = SOCK_STREAM;                  sock_type = SOCK_STREAM;
282          else if (!strncmp(data, "UDP ", 4))          else if (!strcmp(w[0], "UDP"))
283                  sock_type = SOCK_DGRAM;                  sock_type = SOCK_DGRAM;
284          else if (!strncmp(data, "RAW ", 4))          else if (!strcmp(w[0], "RAW"))
285                  sock_type = SOCK_RAW;                  sock_type = SOCK_RAW;
286          else          else
287                  goto out;                  return -EINVAL;
288          cp2 = strchr(cp1, ' ');          if (!strcmp(w[1], "bind"))
         if (!cp2)  
                 goto out;  
         cp2++;  
         if (!strncmp(cp1, "bind ", 5))  
289                  switch (sock_type) {                  switch (sock_type) {
290                  case SOCK_STREAM:                  case SOCK_STREAM:
291                          operation = NETWORK_ACL_TCP_BIND;                          e.perm = 1 << CCS_NETWORK_TCP_BIND;
292                          break;                          break;
293                  case SOCK_DGRAM:                  case SOCK_DGRAM:
294                          operation = NETWORK_ACL_UDP_BIND;                          e.perm = 1 << CCS_NETWORK_UDP_BIND;
295                          break;                          break;
296                  default:                  default:
297                          operation = NETWORK_ACL_RAW_BIND;                          e.perm = 1 << CCS_NETWORK_RAW_BIND;
298                            break;
299                  }                  }
300          else if (!strncmp(cp1, "connect ", 8))          else if (!strcmp(w[1], "connect"))
301                  switch (sock_type) {                  switch (sock_type) {
302                  case SOCK_STREAM:                  case SOCK_STREAM:
303                          operation = NETWORK_ACL_TCP_CONNECT;                          e.perm = 1 << CCS_NETWORK_TCP_CONNECT;
304                          break;                          break;
305                  case SOCK_DGRAM:                  case SOCK_DGRAM:
306                          operation = NETWORK_ACL_UDP_CONNECT;                          e.perm = 1 << CCS_NETWORK_UDP_CONNECT;
307                          break;                          break;
308                  default:                  default:
309                          operation = NETWORK_ACL_RAW_CONNECT;                          e.perm = 1 << CCS_NETWORK_RAW_CONNECT;
310                            break;
311                  }                  }
312          else if (sock_type == SOCK_STREAM && !strncmp(cp1, "listen ", 7))          else if (sock_type == SOCK_STREAM && !strcmp(w[1], "listen"))
313                  operation = NETWORK_ACL_TCP_LISTEN;                  e.perm = 1 << CCS_NETWORK_TCP_LISTEN;
314          else if (sock_type == SOCK_STREAM && !strncmp(cp1, "accept ", 7))          else if (sock_type == SOCK_STREAM && !strcmp(w[1], "accept"))
315                  operation = NETWORK_ACL_TCP_ACCEPT;                  e.perm = 1 << CCS_NETWORK_TCP_ACCEPT;
316          else          else
317                  goto out;                  return -EINVAL;
318          cp1 = strchr(cp2, ' ');          switch (ccs_parse_ip_address(w[2], min_address, max_address)) {
         if (!cp1)  
                 goto out;  
         *cp1++ = '\0';  
         switch (parse_ip_address(cp2, min_address, max_address)) {  
319          case 2:          case 2:
320                  record_type = IP_RECORD_TYPE_IPv6;                  e.address_type = CCS_IP_ADDRESS_TYPE_IPv6;
321                    e.address.ipv6.min = ccs_get_ipv6_address((struct in6_addr *)
322                                                              min_address);
323                    e.address.ipv6.max = ccs_get_ipv6_address((struct in6_addr *)
324                                                              max_address);
325                    if (!e.address.ipv6.min || !e.address.ipv6.max)
326                            goto out;
327                  break;                  break;
328          case 1:          case 1:
329                  record_type = IP_RECORD_TYPE_IPv4;                  e.address_type = CCS_IP_ADDRESS_TYPE_IPv4;
330                    /* use host byte order to allow u32 comparison.*/
331                    e.address.ipv4.min = ntohl(*(u32 *) min_address);
332                    e.address.ipv4.max = ntohl(*(u32 *) max_address);
333                  break;                  break;
334          default:          default:
335                  if (*cp2 != '@')                  if (w[2][0] != '@')
336                          goto out;                          return -EINVAL;
337                  group = find_or_assign_new_address_group(cp2 + 1);                  e.address_type = CCS_IP_ADDRESS_TYPE_ADDRESS_GROUP;
338                  if (!group)                  e.address.group = ccs_get_address_group(w[2] + 1);
339                    if (!e.address.group)
340                          return -ENOMEM;                          return -ENOMEM;
                 record_type = IP_RECORD_TYPE_ADDRESS_GROUP;  
341                  break;                  break;
342          }          }
343          if (strchr(cp1, ' '))          if (!ccs_parse_number_union(w[3], &e.port))
                 goto out;  
         count = sscanf(cp1, "%hu-%hu", &min_port, &max_port);  
         if (count != 1 && count != 2)  
344                  goto out;                  goto out;
345          if (count == 1)          if (!is_delete)
346                  max_port = min_port;                  entry = kmalloc(sizeof(e), GFP_KERNEL);
347          return update_network_entry(operation, record_type, group,          mutex_lock(&ccs_policy_lock);
348                                      (u32 *) min_address, (u32 *) max_address,          list_for_each_entry_rcu(ptr, &domain->acl_info_list, list) {
349                                      min_port, max_port, domain, condition,                  struct ccs_ip_network_acl *acl =
350                                      is_delete);                          container_of(ptr, struct ccs_ip_network_acl, head);
351                    if (ptr->type != CCS_TYPE_IP_NETWORK_ACL ||
352                        ptr->cond != condition ||
353                        ccs_memcmp(acl, &e, offsetof(typeof(e), address_type),
354                                   sizeof(e)))
355                            continue;
356                    if (is_delete) {
357                            acl->perm &= ~e.perm;
358                            if (!acl->perm)
359                                    ptr->is_deleted = true;
360                    } else {
361                            if (ptr->is_deleted)
362                                    acl->perm = 0;
363                            acl->perm |= e.perm;
364                            ptr->is_deleted = false;
365                    }
366                    error = 0;
367                    break;
368            }
369            if (!is_delete && error && ccs_commit_ok(entry, &e, sizeof(e))) {
370                    ccs_add_domain_acl(domain, &entry->head);
371                    entry = NULL;
372                    error = 0;
373            }
374            mutex_unlock(&ccs_policy_lock);
375   out:   out:
376          return -EINVAL;          if (w[2][0] == '@')
377                    ccs_put_address_group(e.address.group);
378            else if (e.address_type == CCS_IP_ADDRESS_TYPE_IPv6) {
379                    ccs_put_ipv6_address(e.address.ipv6.min);
380                    ccs_put_ipv6_address(e.address.ipv6.max);
381            }
382            ccs_put_number_union(&e.port);
383            kfree(entry);
384            return error;
385  }  }
386    
387  /**  /**
388   * ccs_check_network_listen_acl - Check permission for listen() operation.   * ccs_network_listen_acl - Check permission for listen() operation.
389   *   *
390   * @is_ipv6: True if @address is an IPv6 address.   * @is_ipv6: True if @address is an IPv6 address.
391   * @address: An IPv4 or IPv6 address.   * @address: An IPv4 or IPv6 address.
# Line 759  int ccs_write_network_policy(char *data, Line 393  int ccs_write_network_policy(char *data,
393   *   *
394   * Returns 0 on success, negative value otherwise.   * Returns 0 on success, negative value otherwise.
395   */   */
396  int ccs_check_network_listen_acl(const _Bool is_ipv6, const u8 *address,  static inline int ccs_network_listen_acl(const bool is_ipv6, const u8 *address,
397                                   const u16 port)                                           const u16 port)
398  {  {
399          return check_network_entry(is_ipv6, NETWORK_ACL_TCP_LISTEN,          return ccs_network_entry(is_ipv6, CCS_NETWORK_TCP_LISTEN,
400                                     (const u32 *) address, ntohs(port));                                   (const u32 *) address, ntohs(port));
401  }  }
402    
403  /**  /**
404   * ccs_check_network_connect_acl - Check permission for connect() operation.   * ccs_network_connect_acl - Check permission for connect() operation.
405   *   *
406   * @is_ipv6:   True if @address is an IPv6 address.   * @is_ipv6:   True if @address is an IPv6 address.
407   * @sock_type: Type of socket. (TCP or UDP or RAW)   * @sock_type: Type of socket. (TCP or UDP or RAW)
# Line 776  int ccs_check_network_listen_acl(const _ Line 410  int ccs_check_network_listen_acl(const _
410   *   *
411   * Returns 0 on success, negative value otherwise.   * Returns 0 on success, negative value otherwise.
412   */   */
413  int ccs_check_network_connect_acl(const _Bool is_ipv6, const int sock_type,  static inline int ccs_network_connect_acl(const bool is_ipv6,
414                                    const u8 *address, const u16 port)                                            const int sock_type,
415                                              const u8 *address, const u16 port)
416  {  {
417          u8 operation;          u8 operation;
418          switch (sock_type) {          switch (sock_type) {
419          case SOCK_STREAM:          case SOCK_STREAM:
420                  operation = NETWORK_ACL_TCP_CONNECT;                  operation = CCS_NETWORK_TCP_CONNECT;
421                  break;                  break;
422          case SOCK_DGRAM:          case SOCK_DGRAM:
423                  operation = NETWORK_ACL_UDP_CONNECT;                  operation = CCS_NETWORK_UDP_CONNECT;
424                  break;                  break;
425          default:          default:
426                  operation = NETWORK_ACL_RAW_CONNECT;                  operation = CCS_NETWORK_RAW_CONNECT;
427          }          }
428          return check_network_entry(is_ipv6, operation, (const u32 *) address,          return ccs_network_entry(is_ipv6, operation,
429                                     ntohs(port));                                   (const u32 *) address, ntohs(port));
430  }  }
431    
432  /**  /**
433   * ccs_check_network_bind_acl - Check permission for bind() operation.   * ccs_network_bind_acl - Check permission for bind() operation.
434   *   *
435   * @is_ipv6:   True if @address is an IPv6 address.   * @is_ipv6:   True if @address is an IPv6 address.
436   * @sock_type: Type of socket. (TCP or UDP or RAW)   * @sock_type: Type of socket. (TCP or UDP or RAW)
# Line 804  int ccs_check_network_connect_acl(const Line 439  int ccs_check_network_connect_acl(const
439   *   *
440   * Returns 0 on success, negative value otherwise.   * Returns 0 on success, negative value otherwise.
441   */   */
442  int ccs_check_network_bind_acl(const _Bool is_ipv6, const int sock_type,  static int ccs_network_bind_acl(const bool is_ipv6, const int sock_type,
443                                 const u8 *address, const u16 port)                                  const u8 *address, const u16 port)
444  {  {
445          u8 operation;          u8 operation;
446          switch (sock_type) {          switch (sock_type) {
447          case SOCK_STREAM:          case SOCK_STREAM:
448                  operation = NETWORK_ACL_TCP_BIND;                  operation = CCS_NETWORK_TCP_BIND;
449                  break;                  break;
450          case SOCK_DGRAM:          case SOCK_DGRAM:
451                  operation = NETWORK_ACL_UDP_BIND;                  operation = CCS_NETWORK_UDP_BIND;
452                  break;                  break;
453          default:          default:
454                  operation = NETWORK_ACL_RAW_BIND;                  operation = CCS_NETWORK_RAW_BIND;
455          }          }
456          return check_network_entry(is_ipv6, operation, (const u32 *) address,          return ccs_network_entry(is_ipv6, operation,
457                                     ntohs(port));                                   (const u32 *) address, ntohs(port));
458  }  }
459    
460  /**  /**
461   * ccs_check_network_accept_acl - Check permission for accept() operation.   * ccs_network_accept_acl - Check permission for accept() operation.
462   *   *
463   * @is_ipv6: True if @address is an IPv6 address.   * @is_ipv6: True if @address is an IPv6 address.
464   * @address: An IPv4 or IPv6 address.   * @address: An IPv4 or IPv6 address.
# Line 831  int ccs_check_network_bind_acl(const _Bo Line 466  int ccs_check_network_bind_acl(const _Bo
466   *   *
467   * Returns 0 on success, negative value otherwise.   * Returns 0 on success, negative value otherwise.
468   */   */
469  int ccs_check_network_accept_acl(const _Bool is_ipv6, const u8 *address,  static inline int ccs_network_accept_acl(const bool is_ipv6, const u8 *address,
470                                   const u16 port)                                           const u16 port)
471  {  {
472          int retval;          int retval;
473          current->tomoyo_flags |= CCS_DONT_SLEEP_ON_ENFORCE_ERROR;          current->ccs_flags |= CCS_DONT_SLEEP_ON_ENFORCE_ERROR;
474          retval = check_network_entry(is_ipv6, NETWORK_ACL_TCP_ACCEPT,          retval = ccs_network_entry(is_ipv6, CCS_NETWORK_TCP_ACCEPT,
475                                       (const u32 *) address, ntohs(port));                                     (const u32 *) address, ntohs(port));
476          current->tomoyo_flags &= ~CCS_DONT_SLEEP_ON_ENFORCE_ERROR;          current->ccs_flags &= ~CCS_DONT_SLEEP_ON_ENFORCE_ERROR;
477          return retval;          return retval;
478  }  }
479    
480  /**  /**
481   * ccs_check_network_sendmsg_acl - Check permission for sendmsg() operation.   * ccs_network_sendmsg_acl - Check permission for sendmsg() operation.
482   *   *
483   * @is_ipv6:   True if @address is an IPv6 address.   * @is_ipv6:   True if @address is an IPv6 address.
484   * @sock_type: Type of socket. (UDP or RAW)   * @sock_type: Type of socket. (UDP or RAW)
# Line 852  int ccs_check_network_accept_acl(const _ Line 487  int ccs_check_network_accept_acl(const _
487   *   *
488   * Returns 0 on success, negative value otherwise.   * Returns 0 on success, negative value otherwise.
489   */   */
490  int ccs_check_network_sendmsg_acl(const _Bool is_ipv6, const int sock_type,  static inline int ccs_network_sendmsg_acl(const bool is_ipv6,
491                                    const u8 *address, const u16 port)                                            const int sock_type,
492                                              const u8 *address, const u16 port)
493  {  {
494          u8 operation;          u8 operation;
495          if (sock_type == SOCK_DGRAM)          if (sock_type == SOCK_DGRAM)
496                  operation = NETWORK_ACL_UDP_CONNECT;                  operation = CCS_NETWORK_UDP_CONNECT;
497          else          else
498                  operation = NETWORK_ACL_RAW_CONNECT;                  operation = CCS_NETWORK_RAW_CONNECT;
499          return check_network_entry(is_ipv6, operation, (const u32 *) address,          return ccs_network_entry(is_ipv6, operation,
500                                     ntohs(port));                                   (const u32 *) address, ntohs(port));
501  }  }
502    
503  /**  /**
504   * ccs_check_network_recvmsg_acl - Check permission for recvmsg() operation.   * ccs_network_recvmsg_acl - Check permission for recvmsg() operation.
505   *   *
506   * @is_ipv6:   True if @address is an IPv6 address.   * @is_ipv6:   True if @address is an IPv6 address.
507   * @sock_type: Type of socket. (UDP or RAW)   * @sock_type: Type of socket. (UDP or RAW)
# Line 874  int ccs_check_network_sendmsg_acl(const Line 510  int ccs_check_network_sendmsg_acl(const
510   *   *
511   * Returns 0 on success, negative value otherwise.   * Returns 0 on success, negative value otherwise.
512   */   */
513  int ccs_check_network_recvmsg_acl(const _Bool is_ipv6, const int sock_type,  static inline int ccs_network_recvmsg_acl(const bool is_ipv6,
514                                    const u8 *address, const u16 port)                                            const int sock_type,
515                                              const u8 *address, const u16 port)
516  {  {
517          int retval;          int retval;
518          const u8 operation          const u8 operation
519                  = (sock_type == SOCK_DGRAM) ?                  = (sock_type == SOCK_DGRAM) ?
520                  NETWORK_ACL_UDP_CONNECT : NETWORK_ACL_RAW_CONNECT;                  CCS_NETWORK_UDP_CONNECT : CCS_NETWORK_RAW_CONNECT;
521          current->tomoyo_flags |= CCS_DONT_SLEEP_ON_ENFORCE_ERROR;          current->ccs_flags |= CCS_DONT_SLEEP_ON_ENFORCE_ERROR;
522          retval = check_network_entry(is_ipv6, operation, (const u32 *) address,          retval = ccs_network_entry(is_ipv6, operation,
523                                       ntohs(port));                                     (const u32 *) address, ntohs(port));
524          current->tomoyo_flags &= ~CCS_DONT_SLEEP_ON_ENFORCE_ERROR;          current->ccs_flags &= ~CCS_DONT_SLEEP_ON_ENFORCE_ERROR;
525          return retval;          return retval;
526  }  }
527    
528    #define MAX_SOCK_ADDR 128 /* net/socket.c */
529    
530    /* Check permission for creating a socket. */
531    static int __ccs_socket_create_permission(int family, int type, int protocol)
532    {
533            int error = 0;
534            /* Nothing to do if I am a kernel service. */
535            if (segment_eq(get_fs(), KERNEL_DS))
536                    return 0;
537            if (family == PF_PACKET && !ccs_capable(CCS_USE_PACKET_SOCKET))
538                    return -EPERM;
539            if (family == PF_ROUTE && !ccs_capable(CCS_USE_ROUTE_SOCKET))
540                    return -EPERM;
541            if (family != PF_INET && family != PF_INET6)
542                    return 0;
543            switch (type) {
544            case SOCK_STREAM:
545                    if (!ccs_capable(CCS_INET_STREAM_SOCKET_CREATE))
546                            error = -EPERM;
547                    break;
548            case SOCK_DGRAM:
549                    if (!ccs_capable(CCS_USE_INET_DGRAM_SOCKET))
550                            error = -EPERM;
551                    break;
552            case SOCK_RAW:
553                    if (!ccs_capable(CCS_USE_INET_RAW_SOCKET))
554                            error = -EPERM;
555                    break;
556            }
557            return error;
558    }
559    
560    /* Check permission for listening a TCP socket. */
561    static int __ccs_socket_listen_permission(struct socket *sock)
562    {
563            int error = 0;
564            char addr[MAX_SOCK_ADDR];
565            int addr_len;
566            /* Nothing to do if I am a kernel service. */
567            if (segment_eq(get_fs(), KERNEL_DS))
568                    return 0;
569            if (sock->type != SOCK_STREAM)
570                    return 0;
571            switch (sock->sk->sk_family) {
572            case PF_INET:
573            case PF_INET6:
574                    break;
575            default:
576                    return 0;
577            }
578            if (!ccs_capable(CCS_INET_STREAM_SOCKET_LISTEN))
579                    return -EPERM;
580            if (sock->ops->getname(sock, (struct sockaddr *) addr, &addr_len, 0))
581                    return -EPERM;
582            switch (((struct sockaddr *) addr)->sa_family) {
583                    struct sockaddr_in6 *addr6;
584                    struct sockaddr_in *addr4;
585            case AF_INET6:
586                    addr6 = (struct sockaddr_in6 *) addr;
587                    error = ccs_network_listen_acl(true,
588                                                   addr6->sin6_addr.s6_addr,
589                                                   addr6->sin6_port);
590                    break;
591            case AF_INET:
592                    addr4 = (struct sockaddr_in *) addr;
593                    error = ccs_network_listen_acl(false,
594                                                   (u8 *) &addr4->sin_addr,
595                                                   addr4->sin_port);
596                    break;
597            }
598            return error;
599    }
600    
601    /* Check permission for setting the remote IP address/port pair of a socket. */
602    static int __ccs_socket_connect_permission(struct socket *sock,
603                                               struct sockaddr *addr, int addr_len)
604    {
605            int error = 0;
606            const unsigned int type = sock->type;
607            /* Nothing to do if I am a kernel service. */
608            if (segment_eq(get_fs(), KERNEL_DS))
609                    return 0;
610            switch (type) {
611            case SOCK_STREAM:
612            case SOCK_DGRAM:
613            case SOCK_RAW:
614                    break;
615            default:
616                    return 0;
617            }
618            switch (addr->sa_family) {
619                    struct sockaddr_in6 *addr6;
620                    struct sockaddr_in *addr4;
621                    u16 port;
622            case AF_INET6:
623                    if (addr_len < SIN6_LEN_RFC2133)
624                            break;
625                    addr6 = (struct sockaddr_in6 *) addr;
626                    if (type != SOCK_RAW)
627                            port = addr6->sin6_port;
628                    else
629                            port = htons(sock->sk->sk_protocol);
630                    error = ccs_network_connect_acl(true, type,
631                                                    addr6->sin6_addr.s6_addr,
632                                                    port);
633                    break;
634            case AF_INET:
635                    if (addr_len < sizeof(struct sockaddr_in))
636                            break;
637                    addr4 = (struct sockaddr_in *) addr;
638                    if (type != SOCK_RAW)
639                            port = addr4->sin_port;
640                    else
641                            port = htons(sock->sk->sk_protocol);
642                    error = ccs_network_connect_acl(false, type,
643                                                    (u8 *) &addr4->sin_addr,
644                                                    port);
645                    break;
646            }
647            if (type != SOCK_STREAM)
648                    return error;
649            switch (sock->sk->sk_family) {
650            case PF_INET:
651            case PF_INET6:
652                    if (!ccs_capable(CCS_INET_STREAM_SOCKET_CONNECT))
653                            error = -EPERM;
654                    break;
655            }
656            return error;
657    }
658    
659    /* Check permission for setting the local IP address/port pair of a socket. */
660    static int __ccs_socket_bind_permission(struct socket *sock,
661                                            struct sockaddr *addr, int addr_len)
662    {
663            int error = 0;
664            const unsigned int type = sock->type;
665            /* Nothing to do if I am a kernel service. */
666            if (segment_eq(get_fs(), KERNEL_DS))
667                    return 0;
668            switch (type) {
669            case SOCK_STREAM:
670            case SOCK_DGRAM:
671            case SOCK_RAW:
672                    break;
673            default:
674                    return 0;
675            }
676            switch (addr->sa_family) {
677                    struct sockaddr_in6 *addr6;
678                    struct sockaddr_in *addr4;
679                    u16 port;
680            case AF_INET6:
681                    if (addr_len < SIN6_LEN_RFC2133)
682                            break;
683                    addr6 = (struct sockaddr_in6 *) addr;
684                    if (type != SOCK_RAW)
685                            port = addr6->sin6_port;
686                    else
687                            port = htons(sock->sk->sk_protocol);
688                    error = ccs_network_bind_acl(true, type,
689                                                 addr6->sin6_addr.s6_addr,
690                                                 port);
691                    break;
692            case AF_INET:
693                    if (addr_len < sizeof(struct sockaddr_in))
694                            break;
695                    addr4 = (struct sockaddr_in *) addr;
696                    if (type != SOCK_RAW)
697                            port = addr4->sin_port;
698                    else
699                            port = htons(sock->sk->sk_protocol);
700                    error = ccs_network_bind_acl(false, type,
701                                                 (u8 *) &addr4->sin_addr,
702                                                 port);
703                    break;
704            }
705            return error;
706    }
707    
708    /*
709     * Check permission for accepting a TCP socket.
710     *
711     * Currently, the LSM hook for this purpose is not provided.
712     */
713    static int __ccs_socket_accept_permission(struct socket *sock,
714                                              struct sockaddr *addr)
715    {
716            int error = 0;
717            int addr_len;
718            /* Nothing to do if I am a kernel service. */
719            if (segment_eq(get_fs(), KERNEL_DS))
720                    return 0;
721            switch (sock->sk->sk_family) {
722            case PF_INET:
723            case PF_INET6:
724                    break;
725            default:
726                    return 0;
727            }
728            error = sock->ops->getname(sock, addr, &addr_len, 2);
729            if (error)
730                    return error;
731            switch (addr->sa_family) {
732                    struct sockaddr_in6 *addr6;
733                    struct sockaddr_in *addr4;
734            case AF_INET6:
735                    addr6 = (struct sockaddr_in6 *) addr;
736                    error = ccs_network_accept_acl(true,
737                                                   addr6->sin6_addr.s6_addr,
738                                                   addr6->sin6_port);
739                    break;
740            case AF_INET:
741                    addr4 = (struct sockaddr_in *) addr;
742                    error = ccs_network_accept_acl(false,
743                                                   (u8 *) &addr4->sin_addr,
744                                                   addr4->sin_port);
745                    break;
746            }
747            return error;
748    }
749    
750    /* Check permission for sending a datagram via a UDP or RAW socket. */
751    static int __ccs_socket_sendmsg_permission(struct socket *sock,
752                                               struct msghdr *msg, int size)
753    {
754            struct sockaddr *addr = (struct sockaddr *) msg->msg_name;
755            const int addr_len = msg->msg_namelen;
756            int error = 0;
757            const int type = sock->type;
758            /* Nothing to do if I am a kernel service. */
759            if (segment_eq(get_fs(), KERNEL_DS))
760                    return 0;
761            if (!addr || (type != SOCK_DGRAM && type != SOCK_RAW))
762                    return 0;
763            switch (addr->sa_family) {
764                    struct sockaddr_in6 *addr6;
765                    struct sockaddr_in *addr4;
766                    u16 port;
767            case AF_INET6:
768                    if (addr_len < SIN6_LEN_RFC2133)
769                            break;
770                    addr6 = (struct sockaddr_in6 *) addr;
771                    if (type == SOCK_DGRAM)
772                            port = addr6->sin6_port;
773                    else
774                            port = htons(sock->sk->sk_protocol);
775                    error = ccs_network_sendmsg_acl(true, type,
776                                                    addr6->sin6_addr.s6_addr,
777                                                    port);
778                    break;
779            case AF_INET:
780                    if (addr_len < sizeof(struct sockaddr_in))
781                            break;
782                    addr4 = (struct sockaddr_in *) addr;
783                    if (type == SOCK_DGRAM)
784                            port = addr4->sin_port;
785                    else
786                            port = htons(sock->sk->sk_protocol);
787                    error = ccs_network_sendmsg_acl(false, type,
788                                                    (u8 *) &addr4->sin_addr, port);
789                    break;
790            }
791            return error;
792    }
793    
794    #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 22)
795    #if !defined(RHEL_MAJOR) || RHEL_MAJOR != 5
796    #if !defined(AX_MAJOR) || AX_MAJOR != 3 || !defined(AX_MINOR) || AX_MINOR < 2
797    
798    static inline struct iphdr *ip_hdr(const struct sk_buff *skb)
799    {
800            return skb->nh.iph;
801    }
802    
803    static inline struct udphdr *udp_hdr(const struct sk_buff *skb)
804    {
805            return skb->h.uh;
806    }
807    
808    static inline struct ipv6hdr *ipv6_hdr(const struct sk_buff *skb)
809    {
810            return skb->nh.ipv6h;
811    }
812    
813    #endif
814    #endif
815    #endif
816    
817    #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 12)
818    static void skb_kill_datagram(struct sock *sk, struct sk_buff *skb,
819                                  unsigned int flags)
820    {
821            /* Clear queue. */
822            if (flags & MSG_PEEK) {
823                    int clear = 0;
824                    spin_lock_irq(&sk->sk_receive_queue.lock);
825                    if (skb == skb_peek(&sk->sk_receive_queue)) {
826                            __skb_unlink(skb, &sk->sk_receive_queue);
827                            clear = 1;
828                    }
829                    spin_unlock_irq(&sk->sk_receive_queue.lock);
830                    if (clear)
831                            kfree_skb(skb);
832            }
833            skb_free_datagram(sk, skb);
834    }
835    #elif LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 16)
836    static void skb_kill_datagram(struct sock *sk, struct sk_buff *skb,
837                                  unsigned int flags)
838    {
839            /* Clear queue. */
840            if (flags & MSG_PEEK) {
841                    int clear = 0;
842                    spin_lock_bh(&sk->sk_receive_queue.lock);
843                    if (skb == skb_peek(&sk->sk_receive_queue)) {
844                            __skb_unlink(skb, &sk->sk_receive_queue);
845                            clear = 1;
846                    }
847                    spin_unlock_bh(&sk->sk_receive_queue.lock);
848                    if (clear)
849                            kfree_skb(skb);
850            }
851            skb_free_datagram(sk, skb);
852    }
853    #endif
854    
855    /*
856     * Check permission for receiving a datagram via a UDP or RAW socket.
857     *
858     * Currently, the LSM hook for this purpose is not provided.
859     */
860    static int __ccs_socket_recvmsg_permission(struct sock *sk,
861                                               struct sk_buff *skb,
862                                               const unsigned int flags)
863    {
864            int error = 0;
865            const unsigned int type = sk->sk_type;
866            if (type != SOCK_DGRAM && type != SOCK_RAW)
867                    return 0;
868            /* Nothing to do if I am a kernel service. */
869            if (segment_eq(get_fs(), KERNEL_DS))
870                    return 0;
871    
872            switch (sk->sk_family) {
873                    struct in6_addr sin6;
874                    struct in_addr sin4;
875                    u16 port;
876            case PF_INET6:
877                    if (type == SOCK_DGRAM) { /* UDP IPv6 */
878                            if (skb->protocol == htons(ETH_P_IP)) {
879                                    ipv6_addr_set(&sin6, 0, 0, htonl(0xffff),
880                                                  ip_hdr(skb)->saddr);
881                            } else {
882                                    ipv6_addr_copy(&sin6, &ipv6_hdr(skb)->saddr);
883                            }
884                            port = udp_hdr(skb)->source;
885                    } else { /* RAW IPv6 */
886                            ipv6_addr_copy(&sin6, &ipv6_hdr(skb)->saddr);
887                            port = htons(sk->sk_protocol);
888                    }
889                    error = ccs_network_recvmsg_acl(true, type,
890                                                    (u8 *) &sin6, port);
891                    break;
892            case PF_INET:
893                    if (type == SOCK_DGRAM) { /* UDP IPv4 */
894                            sin4.s_addr = ip_hdr(skb)->saddr;
895                            port = udp_hdr(skb)->source;
896                    } else { /* RAW IPv4 */
897                            sin4.s_addr = ip_hdr(skb)->saddr;
898                            port = htons(sk->sk_protocol);
899                    }
900                    error = ccs_network_recvmsg_acl(false, type,
901                                                    (u8 *) &sin4, port);
902                    break;
903            }
904            if (!error)
905                    return 0;
906            /*
907             * Remove from queue if MSG_PEEK is used so that
908             * the head message from unwanted source in receive queue will not
909             * prevent the caller from picking up next message from wanted source
910             * when the caller is using MSG_PEEK flag for picking up.
911             */
912    #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 25)
913            if (type == SOCK_DGRAM)
914                    lock_sock(sk);
915    #endif
916            skb_kill_datagram(sk, skb, flags);
917    #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 25)
918            if (type == SOCK_DGRAM)
919                    release_sock(sk);
920    #endif
921            /* Hope less harmful than -EPERM. */
922            return -ENOMEM;
923    }
924    
925    void __init ccs_network_init(void)
926    {
927            ccsecurity_ops.socket_create_permission =
928                    __ccs_socket_create_permission;
929            ccsecurity_ops.socket_listen_permission =
930                    __ccs_socket_listen_permission;
931            ccsecurity_ops.socket_connect_permission =
932                    __ccs_socket_connect_permission;
933            ccsecurity_ops.socket_bind_permission = __ccs_socket_bind_permission;
934            ccsecurity_ops.socket_accept_permission =
935                    __ccs_socket_accept_permission;
936            ccsecurity_ops.socket_sendmsg_permission =
937                    __ccs_socket_sendmsg_permission;
938            ccsecurity_ops.socket_recvmsg_permission =
939                    __ccs_socket_recvmsg_permission;
940    }

Legend:
Removed from v.1817  
changed lines
  Added in v.3502

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