aboutsummaryrefslogtreecommitdiffstats
path: root/xen/acm/acm_chinesewall_hooks.c
blob: 938716d3f9fe929632134624767fd08296d1ae09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
/****************************************************************
 * acm_chinesewall_hooks.c
 * 
 * Copyright (C) 2005 IBM Corporation
 *
 * Author:
 * Reiner Sailer <sailer@watson.ibm.com>
 *
 * Contributions:
 * Stefan Berger <stefanb@watson.ibm.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation, version 2 of the
 * License.
 *
 * sHype Chinese Wall Policy for Xen
 *    This code implements the hooks that are called
 *    throughout Xen operations and decides authorization
 *    based on domain types and Chinese Wall conflict type 
 *    sets. The CHWALL policy decides if a new domain can be started
 *    based on the types of running domains and the type of the
 *    new domain to be started. If the new domain's type is in
 *    conflict with types of running domains, then this new domain
 *    is not allowed to be created. A domain can have multiple types,
 *    in which case all types of a new domain must be conflict-free
 *    with all types of already running domains.
 *
 */
#include <xen/config.h>
#include <xen/errno.h>
#include <xen/types.h>
#include <xen/lib.h>
#include <xen/delay.h>
#include <xen/sched.h>
#include <public/acm.h>
#include <asm/atomic.h>
#include <acm/acm_core.h>
#include <acm/acm_hooks.h>
#include <acm/acm_endian.h>

/* local cache structures for chinese wall policy */
struct chwall_binary_policy chwall_bin_pol;

/*
 * Initializing chinese wall policy (will be filled by policy partition
 * using setpolicy command)
 */
int acm_init_chwall_policy(void)
{
	/* minimal startup policy; policy write-locked already */
	chwall_bin_pol.max_types = 1;
	chwall_bin_pol.max_ssidrefs = 1;
	chwall_bin_pol.max_conflictsets = 1;
	chwall_bin_pol.ssidrefs = (domaintype_t *)xmalloc_array(domaintype_t, chwall_bin_pol.max_ssidrefs*chwall_bin_pol.max_types);
	chwall_bin_pol.conflict_sets = (domaintype_t *)xmalloc_array(domaintype_t, chwall_bin_pol.max_conflictsets*chwall_bin_pol.max_types);
	chwall_bin_pol.running_types = (domaintype_t *)xmalloc_array(domaintype_t, chwall_bin_pol.max_types);
	chwall_bin_pol.conflict_aggregate_set = (domaintype_t *)xmalloc_array(domaintype_t, chwall_bin_pol.max_types);
	
	if ((chwall_bin_pol.conflict_sets == NULL) || (chwall_bin_pol.running_types == NULL) ||
	    (chwall_bin_pol.ssidrefs == NULL) || (chwall_bin_pol.conflict_aggregate_set == NULL))
		return ACM_INIT_SSID_ERROR;

	/* initialize state */
	memset((void *)chwall_bin_pol.ssidrefs, 0, chwall_bin_pol.max_ssidrefs*chwall_bin_pol.max_types*sizeof(domaintype_t));
	memset((void *)chwall_bin_pol.conflict_sets, 0, chwall_bin_pol.max_conflictsets*chwall_bin_pol.max_types*sizeof(domaintype_t));
	memset((void *)chwall_bin_pol.running_types, 0, chwall_bin_pol.max_types*sizeof(domaintype_t));
	memset((void *)chwall_bin_pol.conflict_aggregate_set, 0, chwall_bin_pol.max_types*sizeof(domaintype_t));	
	return ACM_OK;
}

static int
chwall_init_domain_ssid(void **chwall_ssid, ssidref_t ssidref)
{
	struct chwall_ssid *chwall_ssidp = xmalloc(struct chwall_ssid);
	traceprintk("%s.\n", __func__);
	if (chwall_ssidp == NULL)
		return ACM_INIT_SSID_ERROR;
	/* 
	 * depending on wheter chwall is primary or secondary, get the respective
	 * part of the global ssidref (same way we'll get the partial ssid pointer)
	 */
	chwall_ssidp->chwall_ssidref = GET_SSIDREF(ACM_CHINESE_WALL_POLICY, ssidref);
	if (chwall_ssidp->chwall_ssidref >= chwall_bin_pol.max_ssidrefs) {
		printkd("%s: ERROR chwall_ssidref(%x) > max(%x).\n",
			__func__, chwall_ssidp->chwall_ssidref, chwall_bin_pol.max_ssidrefs-1);
		xfree(chwall_ssidp);
		return ACM_INIT_SSID_ERROR;
	}
	(*chwall_ssid) = chwall_ssidp;
	printkd("%s: determined chwall_ssidref to %x.\n", 
	       __func__, chwall_ssidp->chwall_ssidref);
	return ACM_OK;
}

static void
chwall_free_domain_ssid(void *chwall_ssid)
{
	traceprintk("%s.\n", __func__);
	if (chwall_ssid != NULL)
		xfree(chwall_ssid);
	return;
}


/* dump chinese wall cache; policy read-locked already */
static int
chwall_dump_policy(u8 *buf, u16 buf_size) {	
     struct acm_chwall_policy_buffer *chwall_buf = (struct acm_chwall_policy_buffer *)buf;
     int ret = 0;

     chwall_buf->chwall_max_types = htons(chwall_bin_pol.max_types);
     chwall_buf->chwall_max_ssidrefs = htons(chwall_bin_pol.max_ssidrefs);
     chwall_buf->policy_code = htons(ACM_CHINESE_WALL_POLICY);
     chwall_buf->chwall_ssid_offset = htons(sizeof(struct acm_chwall_policy_buffer));
     chwall_buf->chwall_max_conflictsets = htons(chwall_bin_pol.max_conflictsets);
     chwall_buf->chwall_conflict_sets_offset =
	     htons(
		   ntohs(chwall_buf->chwall_ssid_offset) + 
		   sizeof(domaintype_t) * chwall_bin_pol.max_ssidrefs * 
		   chwall_bin_pol.max_types);

     chwall_buf->chwall_running_types_offset = 
	     htons(
		   ntohs(chwall_buf->chwall_conflict_sets_offset) +
		   sizeof(domaintype_t) * chwall_bin_pol.max_conflictsets *
		   chwall_bin_pol.max_types);

     chwall_buf->chwall_conflict_aggregate_offset =
	     htons(
		   ntohs(chwall_buf->chwall_running_types_offset) +
		   sizeof(domaintype_t) * chwall_bin_pol.max_types);

     ret = ntohs(chwall_buf->chwall_conflict_aggregate_offset) +
	     sizeof(domaintype_t) * chwall_bin_pol.max_types;

     /* now copy buffers over */
     arrcpy16((u16 *)(buf + ntohs(chwall_buf->chwall_ssid_offset)),
	      chwall_bin_pol.ssidrefs,
	      chwall_bin_pol.max_ssidrefs * chwall_bin_pol.max_types);

     arrcpy16((u16 *)(buf + ntohs(chwall_buf->chwall_conflict_sets_offset)),
	      chwall_bin_pol.conflict_sets,
	      chwall_bin_pol.max_conflictsets * chwall_bin_pol.max_types);

     arrcpy16((u16 *)(buf + ntohs(chwall_buf->chwall_running_types_offset)),
	      chwall_bin_pol.running_types,
	      chwall_bin_pol.max_types);

     arrcpy16((u16 *)(buf + ntohs(chwall_buf->chwall_conflict_aggregate_offset)),
	      chwall_bin_pol.conflict_aggregate_set,
	      chwall_bin_pol.max_types);
     return ret;
}

/* adapt security state (running_types and conflict_aggregate_set) to all running
 * domains; chwall_init_state is called when a policy is changed to bring the security
 * information into a consistent state and to detect violations (return != 0).
 * from a security point of view, we simulate that all running domains are re-started
 */ 
static int
chwall_init_state(struct acm_chwall_policy_buffer *chwall_buf, domaintype_t *ssidrefs, domaintype_t *conflict_sets,
		  domaintype_t *running_types, domaintype_t *conflict_aggregate_set)
{
	int violation = 0, i, j;
	struct chwall_ssid *chwall_ssid;
	ssidref_t chwall_ssidref;
	struct domain **pd;

        write_lock(&domlist_lock);
	/* go through all domains and adjust policy as if this domain was started now */
        pd = &domain_list;
        for ( pd = &domain_list; *pd != NULL; pd = &(*pd)->next_in_list ) {
		chwall_ssid = GET_SSIDP(ACM_CHINESE_WALL_POLICY, (struct acm_ssid_domain *)(*pd)->ssid);
		chwall_ssidref = chwall_ssid->chwall_ssidref;
		traceprintk("%s: validating policy for domain %x (chwall-REF=%x).\n", 
			__func__, (*pd)->domain_id, chwall_ssidref);
		/* a) adjust types ref-count for running domains */
		for (i=0; i< chwall_buf->chwall_max_types; i++)
			running_types[i] +=
				ssidrefs[chwall_ssidref*chwall_buf->chwall_max_types + i];

		/* b) check for conflict */
		for (i=0; i< chwall_buf->chwall_max_types; i++)
			if (conflict_aggregate_set[i] && 
			    ssidrefs[chwall_ssidref*chwall_buf->chwall_max_types + i]) {
				printk("%s: CHINESE WALL CONFLICT in type %02x.\n", __func__, i);
				violation = 1;
				goto out;
			}
		/* set violation and break out of the loop */
		/* c) adapt conflict aggregate set for this domain (notice conflicts) */
		for (i=0; i<chwall_buf->chwall_max_conflictsets; i++) {
			int common = 0;
			/* check if conflict_set_i and ssidref have common types */
			for (j=0; j<chwall_buf->chwall_max_types; j++)
				if (conflict_sets[i*chwall_buf->chwall_max_types + j] &&
				    ssidrefs[chwall_ssidref*chwall_buf->chwall_max_types + j]) {
					common = 1;
					break;
				}
			if (common == 0)
				continue; /* try next conflict set */
			/* now add types of the conflict set to conflict_aggregate_set (except types in chwall_ssidref) */
			for (j=0; j<chwall_buf->chwall_max_types; j++)
				if (conflict_sets[i*chwall_buf->chwall_max_types + j] &&
				    !ssidrefs[chwall_ssidref*chwall_buf->chwall_max_types + j])
					conflict_aggregate_set[j]++;
		}	
	}
 out:
        write_unlock(&domlist_lock);
	return violation;
	/* returning "violation != 0" means that the currently running set of domains would 
	 * not be possible if the new policy had been enforced before starting them; for chinese
	 * wall, this means that the new policy includes at least one conflict set of which 
	 * more than one type is currently running */
}

static int
chwall_set_policy(u8 *buf, u16 buf_size) 
{	
	/* policy write-locked already */
	struct acm_chwall_policy_buffer *chwall_buf = (struct acm_chwall_policy_buffer *)buf;
	void *ssids = NULL, *conflict_sets = NULL, *running_types = NULL, *conflict_aggregate_set = NULL;	

        /* rewrite the policy due to endianess */
        chwall_buf->policy_code                      = ntohs(chwall_buf->policy_code);
        chwall_buf->chwall_max_types                 = ntohs(chwall_buf->chwall_max_types);
        chwall_buf->chwall_max_ssidrefs              = ntohs(chwall_buf->chwall_max_ssidrefs);
        chwall_buf->chwall_max_conflictsets          = ntohs(chwall_buf->chwall_max_conflictsets);
        chwall_buf->chwall_ssid_offset               = ntohs(chwall_buf->chwall_ssid_offset);
        chwall_buf->chwall_conflict_sets_offset      = ntohs(chwall_buf->chwall_conflict_sets_offset);
        chwall_buf->chwall_running_types_offset      = ntohs(chwall_buf->chwall_running_types_offset);
        chwall_buf->chwall_conflict_aggregate_offset = ntohs(chwall_buf->chwall_conflict_aggregate_offset);

	/* 1. allocate new buffers */
	ssids = xmalloc_array(domaintype_t, chwall_buf->chwall_max_types*chwall_buf->chwall_max_ssidrefs);
	conflict_sets = xmalloc_array(domaintype_t, chwall_buf->chwall_max_conflictsets*chwall_buf->chwall_max_types);
	running_types = xmalloc_array(domaintype_t,chwall_buf->chwall_max_types);
	conflict_aggregate_set = xmalloc_array(domaintype_t, chwall_buf->chwall_max_types);

	if ((ssids == NULL)||(conflict_sets == NULL)||(running_types == NULL)||(conflict_aggregate_set == NULL))
		goto error_free;

	/* 2. set new policy */
	if (chwall_buf->chwall_ssid_offset + sizeof(domaintype_t) * 
	    chwall_buf->chwall_max_types * chwall_buf->chwall_max_ssidrefs > buf_size)
		goto error_free;
	arrcpy(ssids, buf + chwall_buf->chwall_ssid_offset,
	       sizeof(domaintype_t),  
	       chwall_buf->chwall_max_types * chwall_buf->chwall_max_ssidrefs);

	if (chwall_buf->chwall_conflict_sets_offset + sizeof(domaintype_t) * 
	    chwall_buf->chwall_max_types * chwall_buf->chwall_max_conflictsets > buf_size)
		goto error_free;

	arrcpy(conflict_sets, buf + chwall_buf->chwall_conflict_sets_offset,
	       sizeof(domaintype_t),
	       chwall_buf->chwall_max_types * chwall_buf->chwall_max_conflictsets);

	/* we also use new state buffers since max_types can change */
	memset(running_types, 0, sizeof(domaintype_t)*chwall_buf->chwall_max_types);
	memset(conflict_aggregate_set, 0, sizeof(domaintype_t)*chwall_buf->chwall_max_types);

	/* 3. now re-calculate the state for the new policy based on running domains; 
	 *    this can fail if new policy is conflicting with running domains */
	if (chwall_init_state(chwall_buf, ssids, conflict_sets, running_types, conflict_aggregate_set)) {
		printk("%s: New policy conflicts with running domains. Policy load aborted.\n", __func__);
		goto error_free; /* new policy conflicts with running domains */
	}
	/* 4. free old policy buffers, replace with new ones */
	chwall_bin_pol.max_types = chwall_buf->chwall_max_types;
	chwall_bin_pol.max_ssidrefs = chwall_buf->chwall_max_ssidrefs;
	chwall_bin_pol.max_conflictsets = chwall_buf->chwall_max_conflictsets;
	if (chwall_bin_pol.ssidrefs != NULL) 
		xfree(chwall_bin_pol.ssidrefs);
	if (chwall_bin_pol.conflict_aggregate_set != NULL) 
		xfree(chwall_bin_pol.conflict_aggregate_set);
	if (chwall_bin_pol.running_types != NULL) 
		xfree(chwall_bin_pol.running_types);
	if (chwall_bin_pol.conflict_sets != NULL) 
		xfree(chwall_bin_pol.conflict_sets);
	chwall_bin_pol.ssidrefs = ssids;
	chwall_bin_pol.conflict_aggregate_set = conflict_aggregate_set;
	chwall_bin_pol.running_types = running_types;
	chwall_bin_pol.conflict_sets = conflict_sets;
	return ACM_OK;

error_free:
	printk("%s: ERROR setting policy.\n", __func__);
	if (ssids != NULL) xfree(ssids);
	if (conflict_sets != NULL) xfree(conflict_sets);
	if (running_types != NULL) xfree(running_types);
	if (conflict_aggregate_set != NULL) xfree(conflict_aggregate_set);
	return -EFAULT;
}
	
static int 
chwall_dump_stats(u8 *buf, u16 len)
{
	/* no stats for Chinese Wall Policy */
	return 0;
}

/***************************
 * Authorization functions
 ***************************/


/* -------- DOMAIN OPERATION HOOKS -----------*/

static int 
chwall_pre_domain_create(void *subject_ssid, ssidref_t ssidref)
{
	ssidref_t chwall_ssidref;
	int i,j;
	traceprintk("%s.\n", __func__);

	read_lock(&acm_bin_pol_rwlock);
	chwall_ssidref = GET_SSIDREF(ACM_CHINESE_WALL_POLICY, ssidref);
	if (chwall_ssidref == ACM_DEFAULT_LOCAL_SSID) {
		printk("%s: ERROR CHWALL SSID is NOT SET but policy enforced.\n", __func__);
		read_unlock(&acm_bin_pol_rwlock);
		return ACM_ACCESS_DENIED; /* catching and indicating config error */
	}
	if (chwall_ssidref >= chwall_bin_pol.max_ssidrefs) {
		printk("%s: ERROR chwall_ssidref > max(%x).\n",
		       __func__, chwall_bin_pol.max_ssidrefs-1);
		read_unlock(&acm_bin_pol_rwlock);
		return ACM_ACCESS_DENIED;
	}
	/* A: chinese wall check for conflicts */
	for (i=0; i< chwall_bin_pol.max_types; i++)
		if (chwall_bin_pol.conflict_aggregate_set[i] && 
		    chwall_bin_pol.ssidrefs[chwall_ssidref*chwall_bin_pol.max_types + i]) {
			printk("%s: CHINESE WALL CONFLICT in type %02x.\n", __func__, i);
			read_unlock(&acm_bin_pol_rwlock);
		        return ACM_ACCESS_DENIED;
		}

	/* B: chinese wall conflict set adjustment (so that other 
	 *	other domains simultaneously created are evaluated against this new set)*/
	for (i=0; i<chwall_bin_pol.max_conflictsets; i++) {
		int common = 0;
		/* check if conflict_set_i and ssidref have common types */
		for (j=0; j<chwall_bin_pol.max_types; j++)
			if (chwall_bin_pol.conflict_sets[i*chwall_bin_pol.max_types + j] &&
			    chwall_bin_pol.ssidrefs[chwall_ssidref*chwall_bin_pol.max_types + j]) {
				common = 1;
				break;
			}
		if (common == 0)
			continue; /* try next conflict set */
		/* now add types of the conflict set to conflict_aggregate_set (except types in chwall_ssidref) */
		for (j=0; j<chwall_bin_pol.max_types; j++)
			if (chwall_bin_pol.conflict_sets[i*chwall_bin_pol.max_types + j] &&
			    !chwall_bin_pol.ssidrefs[chwall_ssidref*chwall_bin_pol.max_types + j])
				chwall_bin_pol.conflict_aggregate_set[j]++;
	}
	read_unlock(&acm_bin_pol_rwlock);
	return ACM_ACCESS_PERMITTED;
}

static void
chwall_post_domain_create(domid_t domid, ssidref_t ssidref)
{
	int i,j;
	ssidref_t chwall_ssidref;
	traceprintk("%s.\n", __func__);
	
	read_lock(&acm_bin_pol_rwlock);
	chwall_ssidref = GET_SSIDREF(ACM_CHINESE_WALL_POLICY, ssidref);
	/* adjust types ref-count for running domains */
	for (i=0; i< chwall_bin_pol.max_types; i++)
		chwall_bin_pol.running_types[i] +=
			chwall_bin_pol.ssidrefs[chwall_ssidref*chwall_bin_pol.max_types + i];
	if (domid) {
		read_unlock(&acm_bin_pol_rwlock);
		return;
	}
	/* Xen does not call pre-create hook for DOM0;
	 * to consider type conflicts of any domain with DOM0, we need
	 * to adjust the conflict_aggregate for DOM0 here the same way it
	 * is done for non-DOM0 domains in the pre-hook */
	printkd("%s: adjusting security state for DOM0 (ssidref=%x, chwall_ssidref=%x).\n", 
		__func__, ssidref, chwall_ssidref);

	/* chinese wall conflict set adjustment (so that other 
	 *	other domains simultaneously created are evaluated against this new set)*/
	for (i=0; i<chwall_bin_pol.max_conflictsets; i++) {
		int common = 0;
		/* check if conflict_set_i and ssidref have common types */
		for (j=0; j<chwall_bin_pol.max_types; j++)
			if (chwall_bin_pol.conflict_sets[i*chwall_bin_pol.max_types + j] &&
			    chwall_bin_pol.ssidrefs[chwall_ssidref*chwall_bin_pol.max_types + j]) {
				common = 1;
				break;
			}
		if (common == 0)
			continue; /* try next conflict set */
		/* now add types of the conflict set to conflict_aggregate_set (except types in chwall_ssidref) */
		for (j=0; j<chwall_bin_pol.max_types; j++)
			if (chwall_bin_pol.conflict_sets[i*chwall_bin_pol.max_types + j] &&
			    !chwall_bin_pol.ssidrefs[chwall_ssidref*chwall_bin_pol.max_types + j])
				chwall_bin_pol.conflict_aggregate_set[j]++;
	}
	read_unlock(&acm_bin_pol_rwlock);
	return;
}

static void
chwall_fail_domain_create(void *subject_ssid, ssidref_t ssidref)
{
	int i, j;
	ssidref_t chwall_ssidref;
	traceprintk("%s.\n", __func__);

	read_lock(&acm_bin_pol_rwlock);
	chwall_ssidref = GET_SSIDREF(ACM_CHINESE_WALL_POLICY, ssidref);
	/* roll-back: re-adjust conflicting types aggregate */
	for (i=0; i<chwall_bin_pol.max_conflictsets; i++) {
		int common = 0;
		/* check if conflict_set_i and ssidref have common types */
		for (j=0; j<chwall_bin_pol.max_types; j++)
			if (chwall_bin_pol.conflict_sets[i*chwall_bin_pol.max_types + j] &&
			    chwall_bin_pol.ssidrefs[chwall_ssidref*chwall_bin_pol.max_types + j]) {
				common = 1;
				break;
			}
		if (common == 0)
			continue; /* try next conflict set, this one does not include any type of chwall_ssidref */
		/* now add types of the conflict set to conflict_aggregate_set (except types in chwall_ssidref) */
		for (j=0; j<chwall_bin_pol.max_types; j++)
			if (chwall_bin_pol.conflict_sets[i*chwall_bin_pol.max_types + j] &&
			    !chwall_bin_pol.ssidrefs[chwall_ssidref*chwall_bin_pol.max_types + j])
				chwall_bin_pol.conflict_aggregate_set[j]--;
	}
	read_unlock(&acm_bin_pol_rwlock);
}


static void
chwall_post_domain_destroy(void *object_ssid, domid_t id) 
{
	int i,j;
	struct chwall_ssid *chwall_ssidp = 
		GET_SSIDP(ACM_CHINESE_WALL_POLICY, (struct acm_ssid_domain *)object_ssid);
	ssidref_t chwall_ssidref = chwall_ssidp->chwall_ssidref;

	traceprintk("%s.\n", __func__);

	read_lock(&acm_bin_pol_rwlock);
	/* adjust running types set */
	for (i=0; i< chwall_bin_pol.max_types; i++)
		chwall_bin_pol.running_types[i] -=
			chwall_bin_pol.ssidrefs[chwall_ssidref*chwall_bin_pol.max_types + i];

	/* roll-back: re-adjust conflicting types aggregate */
	for (i=0; i<chwall_bin_pol.max_conflictsets; i++) {
		int common = 0;
		/* check if conflict_set_i and ssidref have common types */
		for (j=0; j<chwall_bin_pol.max_types; j++)
			if (chwall_bin_pol.conflict_sets[i*chwall_bin_pol.max_types + j] &&
			    chwall_bin_pol.ssidrefs[chwall_ssidref*chwall_bin_pol.max_types + j]) {
				common = 1;
				break;
			}
		if (common == 0)
			continue; /* try next conflict set, this one does not include any type of chwall_ssidref */
		/* now add types of the conflict set to conflict_aggregate_set (except types in chwall_ssidref) */
		for (j=0; j<chwall_bin_pol.max_types; j++)
			if (chwall_bin_pol.conflict_sets[i*chwall_bin_pol.max_types + j] &&
			    !chwall_bin_pol.ssidrefs[chwall_ssidref*chwall_bin_pol.max_types + j])
				chwall_bin_pol.conflict_aggregate_set[j]--;
	}
	read_unlock(&acm_bin_pol_rwlock);
	return;
}

struct acm_operations acm_chinesewall_ops = {
	/* policy management services */
	.init_domain_ssid		= chwall_init_domain_ssid,
	.free_domain_ssid		= chwall_free_domain_ssid,
	.dump_binary_policy		= chwall_dump_policy,
	.set_binary_policy		= chwall_set_policy,
	.dump_statistics		= chwall_dump_stats,
	/* domain management control hooks */
	.pre_domain_create     		= chwall_pre_domain_create,
	.post_domain_create		= chwall_post_domain_create,
	.fail_domain_create		= chwall_fail_domain_create,
	.post_domain_destroy		= chwall_post_domain_destroy,
	/* event channel control hooks */
	.pre_eventchannel_unbound      	= NULL,
	.fail_eventchannel_unbound	= NULL,
	.pre_eventchannel_interdomain	= NULL,
	.fail_eventchannel_interdomain  = NULL,
	/* grant table control hooks */
	.pre_grant_map_ref       	= NULL,
	.fail_grant_map_ref		= NULL,
	.pre_grant_setup	       	= NULL,
	.fail_grant_setup		= NULL,
};