blob: 6abcd8729ec3a6c7605ab394a7d108fe0192020a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Implementation of the security services.
3 *
4 * Author : Stephen Smalley, <sds@epoch.ncsc.mil>
5 */
6#ifndef _SS_SERVICES_H_
7#define _SS_SERVICES_H_
8
9#include "policydb.h"
10#include "sidtab.h"
11
12extern struct policydb policydb;
13
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -040014void services_compute_xperms_drivers(struct extended_perms *xperms,
15 struct avtab_node *node);
16
17void services_compute_xperms_decision(struct extended_perms_decision *xpermd,
18 struct avtab_node *node);
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#endif /* _SS_SERVICES_H_ */
21