開發和下載開源軟體

Browse Subversion Repository

Contents of /trunk/1.5.x/ccs-patch/fs/tomoyo_signal.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 502 - (show annotations) (download) (as text)
Tue Sep 25 13:33:45 2007 UTC (16 years, 7 months ago) by kumaneko
File MIME type: text/x-csrc
File size: 5507 byte(s)


1 /*
2 * fs/tomoyo_signal.c
3 *
4 * Implementation of the Domain-Based Mandatory Access Control.
5 *
6 * Copyright (C) 2005-2007 NTT DATA CORPORATION
7 *
8 * Version: 1.5.0 2007/09/20
9 *
10 * This file is applicable to both 2.4.30 and 2.6.11 and later.
11 * See README.ccs for ChangeLog.
12 *
13 */
14 /***** TOMOYO Linux start. *****/
15
16 #include <linux/ccs_common.h>
17 #include <linux/tomoyo.h>
18 #include <linux/realpath.h>
19
20 /************************* VARIABLES *************************/
21
22 /* The initial domain. */
23 extern struct domain_info KERNEL_DOMAIN;
24
25 extern struct semaphore domain_acl_lock;
26
27 /************************* AUDIT FUNCTIONS *************************/
28
29 static int AuditSignalLog(const int signal, const struct path_info *dest_domain, const int is_granted)
30 {
31 char *buf;
32 int len;
33 if (CanSaveAuditLog(is_granted) < 0) return -ENOMEM;
34 len = dest_domain->total_len;
35 if ((buf = InitAuditLog(&len)) == NULL) return -ENOMEM;
36 snprintf(buf + strlen(buf), len - strlen(buf) - 1, KEYWORD_ALLOW_SIGNAL "%d %s\n", signal, dest_domain->name);
37 return WriteAuditLog(buf, is_granted);
38 }
39
40 /************************* SIGNAL ACL HANDLER *************************/
41
42 static int AddSignalEntry(const int sig, const char *dest_pattern, struct domain_info *domain, const u8 is_add, const struct condition_list *condition)
43 {
44 struct acl_info *ptr;
45 const struct path_info *saved_dest_pattern;
46 const u16 hash = sig;
47 int error = -ENOMEM;
48 if (!domain) return -EINVAL;
49 if (!dest_pattern || !IsCorrectDomain(dest_pattern, __FUNCTION__)) return -EINVAL;
50 if ((saved_dest_pattern = SaveName(dest_pattern)) == NULL) return -ENOMEM;
51 down(&domain_acl_lock);
52 if (is_add) {
53 if ((ptr = domain->first_acl_ptr) == NULL) goto first_entry;
54 while (1) {
55 struct signal_acl_record *new_ptr = (struct signal_acl_record *) ptr;
56 if (ptr->type == TYPE_SIGNAL_ACL && new_ptr->sig == hash && ptr->cond == condition) {
57 if (!pathcmp(new_ptr->domainname, saved_dest_pattern)) {
58 ptr->is_deleted = 0;
59 /* Found. Nothing to do. */
60 error = 0;
61 break;
62 }
63 }
64 if (ptr->next) {
65 ptr = ptr->next;
66 continue;
67 }
68 first_entry: ;
69 if (is_add == 1 && TooManyDomainACL(domain)) break;
70 /* Not found. Append it to the tail. */
71 if ((new_ptr = alloc_element(sizeof(*new_ptr))) == NULL) break;
72 new_ptr->head.type = TYPE_SIGNAL_ACL;
73 new_ptr->sig = hash;
74 new_ptr->head.cond = condition;
75 new_ptr->domainname = saved_dest_pattern;
76 error = AddDomainACL(ptr, domain, (struct acl_info *) new_ptr);
77 break;
78 }
79 } else {
80 error = -ENOENT;
81 for (ptr = domain->first_acl_ptr; ptr; ptr = ptr->next) {
82 struct signal_acl_record *ptr2 = (struct signal_acl_record *) ptr;
83 if (ptr->type != TYPE_SIGNAL_ACL || ptr->is_deleted || ptr2->sig != hash || ptr->cond != condition) continue;
84 if (pathcmp(ptr2->domainname, saved_dest_pattern)) continue;
85 error = DelDomainACL(ptr);
86 break;
87 }
88 }
89 up(&domain_acl_lock);
90 return error;
91 }
92
93 int CheckSignalACL(const int sig, const int pid)
94 {
95 struct domain_info *domain = current->domain_info;
96 struct domain_info *dest = NULL;
97 const char *dest_pattern;
98 struct acl_info *ptr;
99 const u16 hash = sig;
100 const int is_enforce = CheckCCSEnforce(CCS_TOMOYO_MAC_FOR_SIGNAL);
101 if (!CheckCCSFlags(CCS_TOMOYO_MAC_FOR_SIGNAL)) return 0;
102 if (!sig) return 0; /* No check for NULL signal. */
103 if (current->pid == pid) {
104 AuditSignalLog(sig, domain->domainname, 1);
105 return 0; /* No check for self. */
106 }
107 { /* Simplified checking. */
108 struct task_struct *p = NULL;
109 read_lock(&tasklist_lock);
110 if (pid > 0) p = find_task_by_pid((pid_t) pid);
111 else if (pid == 0) p = current;
112 else if (pid == -1) dest = &KERNEL_DOMAIN;
113 else p = find_task_by_pid((pid_t) -pid);
114 if (p) dest = p->domain_info;
115 read_unlock(&tasklist_lock);
116 if (!dest) return 0; /* I can't find destinatioin. */
117 }
118 if (domain == dest) {
119 AuditSignalLog(sig, dest->domainname, 1);
120 return 0;
121 }
122 dest_pattern = dest->domainname->name;
123 for (ptr = domain->first_acl_ptr; ptr; ptr = ptr->next) {
124 struct signal_acl_record *ptr2 = (struct signal_acl_record *) ptr;
125 if (ptr->type == TYPE_SIGNAL_ACL && ptr->is_deleted == 0 && ptr2->sig == hash && CheckCondition(ptr->cond, NULL) == 0) {
126 const int len = ptr2->domainname->total_len;
127 if (strncmp(ptr2->domainname->name, dest_pattern, len) == 0 && (dest_pattern[len] == ' ' || dest_pattern[len] == '\0')) break;
128 }
129 }
130 if (ptr) {
131 AuditSignalLog(sig, dest->domainname, 1);
132 return 0;
133 }
134 if (TomoyoVerboseMode()) {
135 printk("TOMOYO-%s: Signal %d to %s denied for %s\n", GetMSG(is_enforce), sig, GetLastName(dest), GetLastName(domain));
136 }
137 AuditSignalLog(sig, dest->domainname, 0);
138 if (is_enforce) return CheckSupervisor("%s\n" KEYWORD_ALLOW_SIGNAL "%d %s\n", domain->domainname->name, sig, dest_pattern);
139 if (CheckCCSAccept(CCS_TOMOYO_MAC_FOR_SIGNAL)) AddSignalEntry(sig, dest_pattern, domain, 1, NULL);
140 return 0;
141 }
142 EXPORT_SYMBOL(CheckSignalACL);
143
144 int AddSignalPolicy(char *data, struct domain_info *domain, const int is_delete)
145 {
146 int sig;
147 char *domainname = strchr(data, ' ');
148 if (sscanf(data, "%d", &sig) == 1 && domainname && IsDomainDef(domainname + 1)) {
149 const struct condition_list *condition = NULL;
150 const char *cp = FindConditionPart(domainname + 1);
151 if (cp && (condition = FindOrAssignNewCondition(cp)) == NULL) return -EINVAL;
152 return AddSignalEntry(sig, domainname + 1, domain, is_delete ? 0 : -1, condition);
153 }
154 return -EINVAL;
155 }
156
157 /***** TOMOYO Linux end. *****/

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