ebitmap.h (8a84fc15ae5cafcc366dd85cf8e1ab2040679abc) | ebitmap.h (02752760359db6b00a3ffb1acfc13ef8d9eb1e3f) |
---|---|
1/* 2 * An extensible bitmap is a bitmap that supports an 3 * arbitrary number of bits. Extensible bitmaps are 4 * used to represent sets of values, such as types, 5 * roles, categories, and classes. 6 * 7 * Each extensible bitmap is implemented as a linked 8 * list of bitmap nodes, where each bitmap node has 9 * an explicitly specified starting bit position within 10 * the total bitmap. 11 * 12 * Author : Stephen Smalley, <sds@epoch.ncsc.mil> 13 */ 14#ifndef _SS_EBITMAP_H_ 15#define _SS_EBITMAP_H_ 16 | 1/* 2 * An extensible bitmap is a bitmap that supports an 3 * arbitrary number of bits. Extensible bitmaps are 4 * used to represent sets of values, such as types, 5 * roles, categories, and classes. 6 * 7 * Each extensible bitmap is implemented as a linked 8 * list of bitmap nodes, where each bitmap node has 9 * an explicitly specified starting bit position within 10 * the total bitmap. 11 * 12 * Author : Stephen Smalley, <sds@epoch.ncsc.mil> 13 */ 14#ifndef _SS_EBITMAP_H_ 15#define _SS_EBITMAP_H_ 16 |
17#include <net/netlabel.h> 18 |
|
17#define MAPTYPE u64 /* portion of bitmap in each node */ 18#define MAPSIZE (sizeof(MAPTYPE) * 8) /* number of bits in node bitmap */ 19#define MAPBIT 1ULL /* a bit in the node bitmap */ 20 21struct ebitmap_node { 22 u32 startbit; /* starting position in the total bitmap */ 23 MAPTYPE map; /* this node's portion of the bitmap */ 24 struct ebitmap_node *next; --- 39 unchanged lines hidden (view full) --- 64 return 0; 65} 66 67#define ebitmap_for_each_bit(e, n, bit) \ 68 for (bit = ebitmap_start(e, &n); bit < ebitmap_length(e); bit = ebitmap_next(&n, bit)) \ 69 70int ebitmap_cmp(struct ebitmap *e1, struct ebitmap *e2); 71int ebitmap_cpy(struct ebitmap *dst, struct ebitmap *src); | 19#define MAPTYPE u64 /* portion of bitmap in each node */ 20#define MAPSIZE (sizeof(MAPTYPE) * 8) /* number of bits in node bitmap */ 21#define MAPBIT 1ULL /* a bit in the node bitmap */ 22 23struct ebitmap_node { 24 u32 startbit; /* starting position in the total bitmap */ 25 MAPTYPE map; /* this node's portion of the bitmap */ 26 struct ebitmap_node *next; --- 39 unchanged lines hidden (view full) --- 66 return 0; 67} 68 69#define ebitmap_for_each_bit(e, n, bit) \ 70 for (bit = ebitmap_start(e, &n); bit < ebitmap_length(e); bit = ebitmap_next(&n, bit)) \ 71 72int ebitmap_cmp(struct ebitmap *e1, struct ebitmap *e2); 73int ebitmap_cpy(struct ebitmap *dst, struct ebitmap *src); |
72int ebitmap_export(const struct ebitmap *src, 73 unsigned char **dst, 74 size_t *dst_len); 75int ebitmap_import(const unsigned char *src, 76 size_t src_len, 77 struct ebitmap *dst); | |
78int ebitmap_contains(struct ebitmap *e1, struct ebitmap *e2); 79int ebitmap_get_bit(struct ebitmap *e, unsigned long bit); 80int ebitmap_set_bit(struct ebitmap *e, unsigned long bit, int value); 81void ebitmap_destroy(struct ebitmap *e); 82int ebitmap_read(struct ebitmap *e, void *fp); 83 | 74int ebitmap_contains(struct ebitmap *e1, struct ebitmap *e2); 75int ebitmap_get_bit(struct ebitmap *e, unsigned long bit); 76int ebitmap_set_bit(struct ebitmap *e, unsigned long bit, int value); 77void ebitmap_destroy(struct ebitmap *e); 78int ebitmap_read(struct ebitmap *e, void *fp); 79 |
80#ifdef CONFIG_NETLABEL 81int ebitmap_netlbl_export(struct ebitmap *ebmap, 82 struct netlbl_lsm_secattr_catmap **catmap); 83int ebitmap_netlbl_import(struct ebitmap *ebmap, 84 struct netlbl_lsm_secattr_catmap *catmap); 85#else 86static inline int ebitmap_netlbl_export(struct ebitmap *ebmap, 87 struct netlbl_lsm_secattr_catmap **catmap) 88{ 89 return -ENOMEM; 90} 91static inline int ebitmap_netlbl_import(struct ebitmap *ebmap, 92 struct netlbl_lsm_secattr_catmap *catmap) 93{ 94 return -ENOMEM; 95} 96#endif 97 |
|
84#endif /* _SS_EBITMAP_H_ */ | 98#endif /* _SS_EBITMAP_H_ */ |