#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/spinlock.h>
#include <linux/errno.h>
#include "flask.h"
#include "security.h"
#include "sidtab.h"
Go to the source code of this file.
|
| int | sidtab_init (struct sidtab *s) |
| |
| int | sidtab_insert (struct sidtab *s, u32 sid, struct context *context) |
| |
| struct context * | sidtab_search (struct sidtab *s, u32 sid) |
| |
| struct context * | sidtab_search_force (struct sidtab *s, u32 sid) |
| |
| int | sidtab_map (struct sidtab *s, int(*apply)(u32 sid, struct context *context, void *args), void *args) |
| |
| int | sidtab_context_to_sid (struct sidtab *s, struct context *context, u32 *out_sid) |
| |
| void | sidtab_hash_eval (struct sidtab *h, char *tag) |
| |
| void | sidtab_destroy (struct sidtab *s) |
| |
| void | sidtab_set (struct sidtab *dst, struct sidtab *src) |
| |
| void | sidtab_shutdown (struct sidtab *s) |
| |