aboutsummaryrefslogtreecommitdiffstats
path: root/xen/acm/acm_simple_type_enforcement_hooks.c
blob: 17e75deca8f3309b454722dbbeab19fec4ca8c75 (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
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
/****************************************************************
 * acm_simple_type_enforcement_hooks.c
 * 
 * Copyright (C) 2005 IBM Corporation
 *
 * Author:
 * Reiner Sailer <sailer@watson.ibm.com>
 *
 * Contributors:
 * Stefan Berger <stefanb@watson.ibm.com>
 *         support for network order binary policies
 *
 * 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 Simple Type Enforcement for Xen
 *     STE allows to control which domains can setup sharing
 *     (eventchannels right now) with which other domains. Hooks
 *     are defined and called throughout Xen when domains bind to
 *     shared resources (setup eventchannels) and a domain is allowed
 *     to setup sharing with another domain if and only if both domains
 *     share at least on common type.
 *
 */
#include <xen/lib.h>
#include <asm/types.h>
#include <asm/current.h>
#include <acm/acm_hooks.h>
#include <asm/atomic.h>
#include <acm/acm_endian.h>

/* local cache structures for chinese wall policy */
struct ste_binary_policy ste_bin_pol;

static inline int have_common_type (ssidref_t ref1, ssidref_t ref2) {
	int i;
	for(i=0; i< ste_bin_pol.max_types; i++)
		if ( ste_bin_pol.ssidrefs[ref1*ste_bin_pol.max_types + i] && 
		     ste_bin_pol.ssidrefs[ref2*ste_bin_pol.max_types + i]) {
			printkd("%s: common type #%02x.\n", __func__, i);
			return 1;
		}
	return 0;
}

/* Helper function: return = (subj and obj share a common type) */
static int share_common_type(struct domain *subj, struct domain *obj)
{
	ssidref_t ref_s, ref_o;
	int ret;

	if ((subj == NULL) || (obj == NULL) || (subj->ssid == NULL) || (obj->ssid == NULL))
		return 0;
	read_lock(&acm_bin_pol_rwlock);
	/* lookup the policy-local ssids */
	ref_s = ((struct ste_ssid *)(GET_SSIDP(ACM_SIMPLE_TYPE_ENFORCEMENT_POLICY, 
				    (struct acm_ssid_domain *)subj->ssid)))->ste_ssidref;
	ref_o = ((struct ste_ssid *)(GET_SSIDP(ACM_SIMPLE_TYPE_ENFORCEMENT_POLICY, 
				    (struct acm_ssid_domain *)obj->ssid)))->ste_ssidref;
        /* check whether subj and obj share a common ste type */
	ret = have_common_type(ref_s, ref_o);
	read_unlock(&acm_bin_pol_rwlock);
	return ret;
}

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

	/* initialize state */
	ste_bin_pol.ssidrefs[0] = 1;

	/* init stats */
	atomic_set(&(ste_bin_pol.ec_eval_count), 0);
	atomic_set(&(ste_bin_pol.ec_denied_count), 0); 
	atomic_set(&(ste_bin_pol.ec_cachehit_count), 0);
	atomic_set(&(ste_bin_pol.gt_eval_count), 0);
	atomic_set(&(ste_bin_pol.gt_denied_count), 0); 
	atomic_set(&(ste_bin_pol.gt_cachehit_count), 0);
	return ACM_OK;
}


/* ste initialization function hooks */
static int
ste_init_domain_ssid(void **ste_ssid, ssidref_t ssidref)
{
	int i;
	struct ste_ssid *ste_ssidp = xmalloc(struct ste_ssid); 
	traceprintk("%s.\n", __func__);

	if (ste_ssidp == NULL)
		return ACM_INIT_SSID_ERROR;

	/* get policy-local ssid reference */
	ste_ssidp->ste_ssidref = GET_SSIDREF(ACM_SIMPLE_TYPE_ENFORCEMENT_POLICY, ssidref);
	if (ste_ssidp->ste_ssidref >= ste_bin_pol.max_ssidrefs) {
		printkd("%s: ERROR ste_ssidref (%x) > max(%x).\n",
			__func__, ste_ssidp->ste_ssidref, ste_bin_pol.max_ssidrefs-1);
		xfree(ste_ssidp);
		return ACM_INIT_SSID_ERROR;
	}
	/* clean ste cache */
	for (i=0; i<ACM_TE_CACHE_SIZE; i++)
		ste_ssidp->ste_cache[i].valid = FREE;

	(*ste_ssid) = ste_ssidp;
	printkd("%s: determined ste_ssidref to %x.\n", 
	       __func__, ste_ssidp->ste_ssidref);
	return ACM_OK;
}


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

/* dump type enforcement cache; policy read-locked already */
static int 
ste_dump_policy(u8 *buf, u16 buf_size) {
     struct acm_ste_policy_buffer *ste_buf = (struct acm_ste_policy_buffer *)buf;
     int ret = 0;

     ste_buf->ste_max_types = htons(ste_bin_pol.max_types);
     ste_buf->ste_max_ssidrefs = htons(ste_bin_pol.max_ssidrefs);
     ste_buf->policy_code = htons(ACM_SIMPLE_TYPE_ENFORCEMENT_POLICY);
     ste_buf->ste_ssid_offset = htons(sizeof(struct acm_ste_policy_buffer));
     ret = ntohs(ste_buf->ste_ssid_offset) +
	     sizeof(domaintype_t)*ste_bin_pol.max_ssidrefs*ste_bin_pol.max_types;

     /* now copy buffer over */
     arrcpy(buf + ntohs(ste_buf->ste_ssid_offset),
	    ste_bin_pol.ssidrefs,
	    sizeof(domaintype_t),
             ste_bin_pol.max_ssidrefs*ste_bin_pol.max_types);

     return ret;
}

/* ste_init_state is called when a policy is changed to detect violations (return != 0).
 * from a security point of view, we simulate that all running domains are re-started and
 * all sharing decisions are replayed to detect violations or current sharing behavior
 * (right now: event_channels, future: also grant_tables)
 */ 
static int
ste_init_state(struct acm_ste_policy_buffer *ste_buf, domaintype_t *ssidrefs)
{
    int violation = 1;
    struct ste_ssid *ste_ssid, *ste_rssid;
    ssidref_t ste_ssidref, ste_rssidref;
    struct domain **pd, *rdom;
    domid_t rdomid;
    grant_entry_t sha_copy;
    int port, i;

    read_lock(&domlist_lock); /* go by domain? or directly by global? event/grant list */
    /* 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 ) {
	    ste_ssid = GET_SSIDP(ACM_SIMPLE_TYPE_ENFORCEMENT_POLICY, 
				 (struct acm_ssid_domain *)(*pd)->ssid);
	    ste_ssidref = ste_ssid->ste_ssidref;
	    traceprintk("%s: validating policy for eventch domain %x (ste-Ref=%x).\n",
		    __func__, (*pd)->domain_id, ste_ssidref);
	    /* a) check for event channel conflicts */
	    for (port=0; port < NR_EVTCHN_BUCKETS; port++) {
		    spin_lock(&(*pd)->evtchn_lock);
		    if ((*pd)->evtchn[port] == NULL) {
                            spin_unlock(&(*pd)->evtchn_lock);
		            continue;
		    }
		    if ((*pd)->evtchn[port]->state == ECS_INTERDOMAIN) {
			    rdom = (*pd)->evtchn[port]->u.interdomain.remote_dom;
			    rdomid = rdom->domain_id;
			    /* rdom now has remote domain */
			    ste_rssid = GET_SSIDP(ACM_SIMPLE_TYPE_ENFORCEMENT_POLICY, 
						  (struct acm_ssid_domain *)(rdom->ssid));
			    ste_rssidref = ste_rssid->ste_ssidref;
		    } else if ((*pd)->evtchn[port]->state == ECS_UNBOUND) {
			    rdomid = (*pd)->evtchn[port]->u.unbound.remote_domid;
			    if ((rdom = find_domain_by_id(rdomid)) == NULL) {
				    printk("%s: Error finding domain to id %x!\n", __func__, rdomid);
				    goto out;
			    }
			    /* rdom now has remote domain */
			    ste_rssid = GET_SSIDP(ACM_SIMPLE_TYPE_ENFORCEMENT_POLICY, 
						  (struct acm_ssid_domain *)(rdom->ssid));
			    ste_rssidref = ste_rssid->ste_ssidref;
			    put_domain(rdom);
		    } else {
			    spin_unlock(&(*pd)->evtchn_lock);
			    continue; /* port unused */
		    }
		    spin_unlock(&(*pd)->evtchn_lock);

		    /* rdom now has remote domain */
		    ste_rssid = GET_SSIDP(ACM_SIMPLE_TYPE_ENFORCEMENT_POLICY, 
					     (struct acm_ssid_domain *)(rdom->ssid));
		    ste_rssidref = ste_rssid->ste_ssidref;
		    traceprintk("%s: eventch: domain %x (ssidref %x) --> domain %x (rssidref %x) used (port %x).\n", 
			    __func__, (*pd)->domain_id, ste_ssidref, rdom->domain_id, ste_rssidref, port);  
		    /* check whether on subj->ssid, obj->ssid share a common type*/
		    if (!have_common_type(ste_ssidref, ste_rssidref)) {
			    printkd("%s: Policy violation in event channel domain %x -> domain %x.\n",
				    __func__, (*pd)->domain_id, rdomid);
			    goto out;
		    }
	    }	
	    /* b) check for grant table conflicts on shared pages */
	    if ((*pd)->grant_table->shared == NULL) {
		    printkd("%s: Grant ... sharing for domain %x not setup!\n", __func__, (*pd)->domain_id);
		    continue;
	    }
	    for ( i = 0; i < NR_GRANT_ENTRIES; i++ ) {
		    sha_copy =  (*pd)->grant_table->shared[i];
		    if ( sha_copy.flags ) {
			    printkd("%s: grant dom (%hu) SHARED (%d) flags:(%hx) dom:(%hu) frame:(%lx)\n",
				    __func__, (*pd)->domain_id, i, sha_copy.flags, sha_copy.domid, 
				    (unsigned long)sha_copy.frame);
			    rdomid = sha_copy.domid;
			    if ((rdom = find_domain_by_id(rdomid)) == NULL) {
			    	    printkd("%s: domain not found ERROR!\n", __func__);
			    	    goto out;
			    };
			    /* rdom now has remote domain */
			    ste_rssid = GET_SSIDP(ACM_SIMPLE_TYPE_ENFORCEMENT_POLICY, 
			    			  (struct acm_ssid_domain *)(rdom->ssid));
			    ste_rssidref = ste_rssid->ste_ssidref;
			    put_domain(rdom);
			    if (!have_common_type(ste_ssidref, ste_rssidref)) {
			    	    printkd("%s: Policy violation in grant table sharing domain %x -> domain %x.\n",
			    		    __func__, (*pd)->domain_id, rdomid);
			    	    goto out;
			    }
		    }
	    }
    }
    violation = 0;
 out:
    read_unlock(&domlist_lock);
    return violation;
    /* returning "violation != 0" means that existing sharing between domains would not 
     * have been allowed if the new policy had been enforced before the sharing; for ste, 
     * this means that there are at least 2 domains that have established sharing through 
     * event-channels or grant-tables but these two domains don't have no longer a common 
     * type in their typesets referenced by their ssidrefs */
}

/* set new policy; policy write-locked already */
static int
ste_set_policy(u8 *buf, u16 buf_size) 
{
     struct acm_ste_policy_buffer *ste_buf = (struct acm_ste_policy_buffer *)buf;
     void *ssidrefsbuf;
     struct ste_ssid *ste_ssid;
     struct domain **pd;
     int i;

     /* Convert endianess of policy */
     ste_buf->policy_code = ntohs(ste_buf->policy_code);
     ste_buf->ste_max_types = ntohs(ste_buf->ste_max_types);
     ste_buf->ste_max_ssidrefs = ntohs(ste_buf->ste_max_ssidrefs);
     ste_buf->ste_ssid_offset = ntohs(ste_buf->ste_ssid_offset);

     /* 1. create and copy-in new ssidrefs buffer */
     ssidrefsbuf = xmalloc_array(u8, sizeof(domaintype_t)*ste_buf->ste_max_types*ste_buf->ste_max_ssidrefs);
     if (ssidrefsbuf == NULL) {
	     return -ENOMEM;
     }
     if (ste_buf->ste_ssid_offset + sizeof(domaintype_t) * ste_buf->ste_max_ssidrefs*ste_buf->ste_max_types > buf_size)
         goto error_free;

     arrcpy(ssidrefsbuf, 
            buf + ste_buf->ste_ssid_offset,
            sizeof(domaintype_t),
	    ste_buf->ste_max_ssidrefs*ste_buf->ste_max_types);

     /* 2. now re-calculate sharing decisions based on running domains; 
      *    this can fail if new policy is conflicting with sharing of running domains 
      *    now: reject violating new policy; future: adjust sharing through revoking sharing */
     if (ste_init_state(ste_buf, (domaintype_t *)ssidrefsbuf)) {
	     printk("%s: New policy conflicts with running domains. Policy load aborted.\n", __func__);
	     goto error_free; /* new policy conflicts with sharing of running domains */
     }
     /* 3. replace old policy (activate new policy) */
     ste_bin_pol.max_types = ste_buf->ste_max_types;
     ste_bin_pol.max_ssidrefs = ste_buf->ste_max_ssidrefs;
     if (ste_bin_pol.ssidrefs) 
	     xfree(ste_bin_pol.ssidrefs);
     ste_bin_pol.ssidrefs = (domaintype_t *)ssidrefsbuf;

     /* clear all ste caches */
     read_lock(&domlist_lock);
     pd = &domain_list;
     for ( pd = &domain_list; *pd != NULL; pd = &(*pd)->next_in_list ) {
	 ste_ssid = GET_SSIDP(ACM_SIMPLE_TYPE_ENFORCEMENT_POLICY, 
			 (struct acm_ssid_domain *)(*pd)->ssid);
 	 for (i=0; i<ACM_TE_CACHE_SIZE; i++)
		ste_ssid->ste_cache[i].valid = FREE;
     }
     read_unlock(&domlist_lock);
     return ACM_OK;

error_free:
	printk("%s: ERROR setting policy.\n", __func__);
	if (ssidrefsbuf != NULL) xfree(ssidrefsbuf);
	return -EFAULT;
}

static int 
ste_dump_stats(u8 *buf, u16 buf_len)
{
    struct acm_ste_stats_buffer stats;

#ifdef ACM_DEBUG
    int i;
    struct ste_ssid *ste_ssid;
    struct domain **pd;

    printk("ste: Decision caches:\n");
    /* go through all domains and adjust policy as if this domain was started now */
    read_lock(&domlist_lock); /* go by domain? or directly by global? event/grant list */
    pd = &domain_list;
    for ( pd = &domain_list; *pd != NULL; pd = &(*pd)->next_in_list ) {
        printk("ste: Cache Domain %02x.\n", (*pd)->domain_id);
	ste_ssid = GET_SSIDP(ACM_SIMPLE_TYPE_ENFORCEMENT_POLICY, 
			 (struct acm_ssid_domain *)(*pd)->ssid);
	for (i=0; i<ACM_TE_CACHE_SIZE; i++)
		printk("\t\tcache[%02x] = %s, domid=%x.\n", i,
		       (ste_ssid->ste_cache[i].valid == VALID) ? 
		       "VALID" : "FREE",
		       (ste_ssid->ste_cache[i].valid == VALID) ? 
		       ste_ssid->ste_cache[i].id : 0xffffffff);
    }
    read_unlock(&domlist_lock);
    /* init stats */
    printk("STE-Policy Security Hook Statistics:\n");
    printk("ste: event_channel eval_count      = %x\n", atomic_read(&(ste_bin_pol.ec_eval_count)));
    printk("ste: event_channel denied_count    = %x\n", atomic_read(&(ste_bin_pol.ec_denied_count))); 
    printk("ste: event_channel cache_hit_count = %x\n", atomic_read(&(ste_bin_pol.ec_cachehit_count)));
    printk("ste:\n");
    printk("ste: grant_table   eval_count      = %x\n", atomic_read(&(ste_bin_pol.gt_eval_count)));
    printk("ste: grant_table   denied_count    = %x\n", atomic_read(&(ste_bin_pol.gt_denied_count))); 
    printk("ste: grant_table   cache_hit_count = %x\n", atomic_read(&(ste_bin_pol.gt_cachehit_count)));
#endif

    if (buf_len < sizeof(struct acm_ste_stats_buffer))
	    return -ENOMEM;

    /* now send the hook counts to user space */
    stats.ec_eval_count = htonl(atomic_read(&ste_bin_pol.ec_eval_count));
    stats.gt_eval_count = htonl(atomic_read(&ste_bin_pol.gt_eval_count));
    stats.ec_denied_count = htonl(atomic_read(&ste_bin_pol.ec_denied_count));
    stats.gt_denied_count = htonl(atomic_read(&ste_bin_pol.gt_denied_count)); 
    stats.ec_cachehit_count = htonl(atomic_read(&ste_bin_pol.ec_cachehit_count));
    stats.gt_cachehit_count = htonl(atomic_read(&ste_bin_pol.gt_cachehit_count));
    memcpy(buf, &stats, sizeof(struct acm_ste_stats_buffer));
    return sizeof(struct acm_ste_stats_buffer);
}


/* we need to go through this before calling the hooks,
 * returns 1 == cache hit */
static int inline
check_cache(struct domain *dom, domid_t rdom) {
	struct ste_ssid *ste_ssid;
	int i;

	printkd("checking cache: %x --> %x.\n", dom->domain_id, rdom);
	ste_ssid = GET_SSIDP(ACM_SIMPLE_TYPE_ENFORCEMENT_POLICY, 
			 (struct acm_ssid_domain *)(dom)->ssid);

	for(i=0; i< ACM_TE_CACHE_SIZE; i++) {
		if ((ste_ssid->ste_cache[i].valid == VALID) &&
		    (ste_ssid->ste_cache[i].id == rdom)) {
			printkd("cache hit (entry %x, id= %x!\n", i, ste_ssid->ste_cache[i].id);
			return 1;
		}
	}
	return 0;
}


/* we only get here if there is NO entry yet; no duplication check! */
static void inline
cache_result(struct domain *subj, struct domain *obj) {
	struct ste_ssid *ste_ssid;
	int i;
	printkd("caching from doms: %x --> %x.\n", subj->domain_id, obj->domain_id);
	ste_ssid = GET_SSIDP(ACM_SIMPLE_TYPE_ENFORCEMENT_POLICY, 
			 (struct acm_ssid_domain *)(subj)->ssid);
	for(i=0; i< ACM_TE_CACHE_SIZE; i++)
		if (ste_ssid->ste_cache[i].valid == FREE)
			break;
	if (i< ACM_TE_CACHE_SIZE) {
		ste_ssid->ste_cache[i].valid = VALID;
		ste_ssid->ste_cache[i].id = obj->domain_id;
	} else
		printk ("Cache of dom %x is full!\n", subj->domain_id);
}

/* deletes entries for domain 'id' from all caches (re-use) */
static void inline
clean_id_from_cache(domid_t id) 
{
    struct ste_ssid *ste_ssid;
    int i;
    struct domain **pd;

    printkd("deleting cache for dom %x.\n", id);

    read_lock(&domlist_lock); /* look through caches of all domains */
    pd = &domain_list;
    for ( pd = &domain_list; *pd != NULL; pd = &(*pd)->next_in_list ) {
	ste_ssid = GET_SSIDP(ACM_SIMPLE_TYPE_ENFORCEMENT_POLICY, 
			 (struct acm_ssid_domain *)(*pd)->ssid);
	for (i=0; i<ACM_TE_CACHE_SIZE; i++)
	    if ((ste_ssid->ste_cache[i].valid == VALID) &&
		(ste_ssid->ste_cache[i].id = id))
		    ste_ssid->ste_cache[i].valid = FREE;
    }
    read_unlock(&domlist_lock);
}

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

static int 
ste_pre_domain_create(void *subject_ssid, ssidref_t ssidref)
{      
    /* check for ssidref in range for policy */
    ssidref_t ste_ssidref;
    traceprintk("%s.\n", __func__);

    read_lock(&acm_bin_pol_rwlock);
    ste_ssidref = GET_SSIDREF(ACM_SIMPLE_TYPE_ENFORCEMENT_POLICY, ssidref);
    if (ste_ssidref == ACM_DEFAULT_LOCAL_SSID) {
	printk("%s: ERROR STE 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 (ste_ssidref >= ste_bin_pol.max_ssidrefs) {
	printk("%s: ERROR ste_ssidref > max(%x).\n", 
	       __func__, ste_bin_pol.max_ssidrefs-1);
	read_unlock(&acm_bin_pol_rwlock);
	return ACM_ACCESS_DENIED;
    }
    read_unlock(&acm_bin_pol_rwlock);
    return ACM_ACCESS_PERMITTED;
}

static void 
ste_post_domain_destroy(void *subject_ssid, domid_t id)
{
    /* clean all cache entries for destroyed domain (might be re-used) */
    clean_id_from_cache(id);
}

/* -------- EVENTCHANNEL OPERATIONS -----------*/
static int
ste_pre_eventchannel_unbound(domid_t id) {
	struct domain *subj, *obj;
	int ret;
	traceprintk("%s: dom%x-->dom%x.\n", 
		    __func__, current->domain->domain_id, id);

	if (check_cache(current->domain, id)) {
		atomic_inc(&ste_bin_pol.ec_cachehit_count);
		return ACM_ACCESS_PERMITTED;
	}
	atomic_inc(&ste_bin_pol.ec_eval_count);
	subj = current->domain;
	obj = find_domain_by_id(id);

	if (share_common_type(subj, obj)) {
		cache_result(subj, obj);
		ret = ACM_ACCESS_PERMITTED;
	} else {
		atomic_inc(&ste_bin_pol.ec_denied_count); 
		ret = ACM_ACCESS_DENIED;	
	}
	if (obj != NULL)
		put_domain(obj);
	return ret;
}

static int
ste_pre_eventchannel_interdomain(domid_t id1, domid_t id2)
{
	struct domain *subj, *obj;
	int ret;
	traceprintk("%s: dom%x-->dom%x.\n", __func__,
		    (id1 == DOMID_SELF) ? current->domain->domain_id : id1,
		    (id2 == DOMID_SELF) ? current->domain->domain_id : id2);

	/* following is a bit longer but ensures that we
         * "put" only domains that we where "find"-ing 
	 */
	if (id1 == DOMID_SELF) id1 = current->domain->domain_id;
	if (id2 == DOMID_SELF) id2 = current->domain->domain_id;

	subj = find_domain_by_id(id1);
	obj  = find_domain_by_id(id2);
	if ((subj == NULL) || (obj == NULL)) {
		ret = ACM_ACCESS_DENIED;
		goto out;
	}
	/* cache check late, but evtchn is not on performance critical path */
	if (check_cache(subj, obj->domain_id)) {
		atomic_inc(&ste_bin_pol.ec_cachehit_count);
		ret = ACM_ACCESS_PERMITTED;
		goto out;
	}
	atomic_inc(&ste_bin_pol.ec_eval_count);

	if (share_common_type(subj, obj)) {
		cache_result(subj, obj);
		ret = ACM_ACCESS_PERMITTED;
	} else {
		atomic_inc(&ste_bin_pol.ec_denied_count); 
		ret = ACM_ACCESS_DENIED;	
	}
 out:
	if (obj != NULL)
		put_domain(obj);
	if (subj != NULL)
		put_domain(subj);
	return ret;
}

/* -------- SHARED MEMORY OPERATIONS -----------*/

static int
ste_pre_grant_map_ref (domid_t id) {
	struct domain *obj, *subj;
	int ret;
	traceprintk("%s: dom%x-->dom%x.\n", __func__,
		    current->domain->domain_id, id);

	if (check_cache(current->domain, id)) {
		atomic_inc(&ste_bin_pol.gt_cachehit_count);
		return ACM_ACCESS_PERMITTED;
	}
	atomic_inc(&ste_bin_pol.gt_eval_count);
	subj = current->domain;
	obj = find_domain_by_id(id);

	if (share_common_type(subj, obj)) {
		cache_result(subj, obj);
		ret = ACM_ACCESS_PERMITTED;
	} else {
		atomic_inc(&ste_bin_pol.gt_denied_count); 
		printkd("%s: ACCESS DENIED!\n", __func__);
		ret = ACM_ACCESS_DENIED;	
	}
	if (obj != NULL)
		put_domain(obj);
	return ret;
}

/* since setting up grant tables involves some implicit information
   flow from the creating domain to the domain that is setup, we 
   check types in addition to the general authorization */
static int
ste_pre_grant_setup (domid_t id) {
	struct domain *obj, *subj;
	int ret;
	traceprintk("%s: dom%x-->dom%x.\n", __func__,
		    current->domain->domain_id, id);

	if (check_cache(current->domain, id)) {
		atomic_inc(&ste_bin_pol.gt_cachehit_count);
		return ACM_ACCESS_PERMITTED;
	}
	atomic_inc(&ste_bin_pol.gt_eval_count);
	/* a) check authorization (eventually use specific capabilities) */
	if (!IS_PRIV(current->domain)) {
		printk("%s: Grant table management authorization denied ERROR!\n", __func__);
		return ACM_ACCESS_DENIED;
	}
	/* b) check types */
	subj = current->domain;
	obj = find_domain_by_id(id);

	if (share_common_type(subj, obj)) {
		cache_result(subj, obj);
		ret = ACM_ACCESS_PERMITTED;
	} else {
		atomic_inc(&ste_bin_pol.gt_denied_count); 
		ret = ACM_ACCESS_DENIED;	
	}
	if (obj != NULL)
		put_domain(obj);
	return ret;
}

/* now define the hook structure similarly to LSM */
struct acm_operations acm_simple_type_enforcement_ops = {
	/* policy management services */
	.init_domain_ssid		= ste_init_domain_ssid,
	.free_domain_ssid		= ste_free_domain_ssid,
	.dump_binary_policy    	       	= ste_dump_policy,
	.set_binary_policy     		= ste_set_policy,
	.dump_statistics		= ste_dump_stats,
	/* domain management control hooks */
	.pre_domain_create     		= ste_pre_domain_create,
	.post_domain_create		= NULL,
	.fail_domain_create		= NULL,
	.post_domain_destroy		= ste_post_domain_destroy,
	/* event channel control hooks */
	.pre_eventchannel_unbound      	= ste_pre_eventchannel_unbound,
	.fail_eventchannel_unbound	= NULL,
	.pre_eventchannel_interdomain	= ste_pre_eventchannel_interdomain,
	.fail_eventchannel_interdomain  = NULL,
	/* grant table control hooks */
	.pre_grant_map_ref       	= ste_pre_grant_map_ref,
	.fail_grant_map_ref		= NULL,
	.pre_grant_setup	       	= ste_pre_grant_setup,
	.fail_grant_setup		= NULL,
};