2 * An access vector table (avtab) is a hash table
3 * of access vectors and transition types indexed
4 * by a type pair and a class. An access vector
5 * table is used to represent the type enforcement
8 * Author : Stephen Smalley, <sds@epoch.ncsc.mil>
11 /* Updated: Frank Mayer <mayerf@tresys.com> and Karl MacMillan <kmacmillan@tresys.com>
13 * Added conditional policy language extensions
15 * Copyright (C) 2003 Tresys Technology, LLC
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation, version 2.
20 * Updated: Yuichi Nakamura <ynakam@hitachisoft.jp>
21 * Tuned number of hash slots for avtab to reduce memory usage
26 #include <linux/flex_array.h>
29 u16 source_type
; /* source type */
30 u16 target_type
; /* target type */
31 u16 target_class
; /* target object class */
32 #define AVTAB_ALLOWED 0x0001
33 #define AVTAB_AUDITALLOW 0x0002
34 #define AVTAB_AUDITDENY 0x0004
35 #define AVTAB_AV (AVTAB_ALLOWED | AVTAB_AUDITALLOW | AVTAB_AUDITDENY)
36 #define AVTAB_TRANSITION 0x0010
37 #define AVTAB_MEMBER 0x0020
38 #define AVTAB_CHANGE 0x0040
39 #define AVTAB_TYPE (AVTAB_TRANSITION | AVTAB_MEMBER | AVTAB_CHANGE)
40 #define AVTAB_ENABLED_OLD 0x80000000 /* reserved for used in cond_avtab */
41 #define AVTAB_ENABLED 0x8000 /* reserved for used in cond_avtab */
42 u16 specified
; /* what field is specified */
46 u32 data
; /* access vector or type value */
51 struct avtab_datum datum
;
52 struct avtab_node
*next
;
56 struct flex_array
*htable
;
57 u32 nel
; /* number of elements */
58 u32 nslot
; /* number of hash slots */
59 u32 mask
; /* mask to compute hash func */
63 int avtab_init(struct avtab
*);
64 int avtab_alloc(struct avtab
*, u32
);
65 struct avtab_datum
*avtab_search(struct avtab
*h
, struct avtab_key
*k
);
66 void avtab_destroy(struct avtab
*h
);
67 void avtab_hash_eval(struct avtab
*h
, char *tag
);
70 int avtab_read_item(struct avtab
*a
, void *fp
, struct policydb
*pol
,
71 int (*insert
)(struct avtab
*a
, struct avtab_key
*k
,
72 struct avtab_datum
*d
, void *p
),
75 int avtab_read(struct avtab
*a
, void *fp
, struct policydb
*pol
);
76 int avtab_write_item(struct policydb
*p
, struct avtab_node
*cur
, void *fp
);
77 int avtab_write(struct policydb
*p
, struct avtab
*a
, void *fp
);
79 struct avtab_node
*avtab_insert_nonunique(struct avtab
*h
, struct avtab_key
*key
,
80 struct avtab_datum
*datum
);
82 struct avtab_node
*avtab_search_node(struct avtab
*h
, struct avtab_key
*key
);
84 struct avtab_node
*avtab_search_node_next(struct avtab_node
*node
, int specified
);
86 void avtab_cache_init(void);
87 void avtab_cache_destroy(void);
89 #define MAX_AVTAB_HASH_BITS 16
90 #define MAX_AVTAB_HASH_BUCKETS (1 << MAX_AVTAB_HASH_BITS)
92 #endif /* _SS_AVTAB_H_ */