diff options
Diffstat (limited to 'tools/flask/libflask/include')
-rw-r--r-- | tools/flask/libflask/include/flask.h | 22 | ||||
-rw-r--r-- | tools/flask/libflask/include/flask_op.h | 46 |
2 files changed, 22 insertions, 46 deletions
diff --git a/tools/flask/libflask/include/flask.h b/tools/flask/libflask/include/flask.h new file mode 100644 index 0000000000..5973933ac8 --- /dev/null +++ b/tools/flask/libflask/include/flask.h @@ -0,0 +1,22 @@ +/* + * + * Authors: Michael LeMay, <mdlemay@epoch.ncsc.mil> + * George Coker, <gscoker@alpha.ncsc.mil> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2, + * as published by the Free Software Foundation. + */ + +#ifndef __FLASK_H__ +#define __FLASK_H__ + +#include <stdint.h> +#include <xen/xen.h> +#include <xen/xsm/flask_op.h> + +int flask_load(int xc_handle, char *buf, int size); +int flask_context_to_sid(int xc_handle, char *buf, int size, uint32_t *sid); +int flask_sid_to_context(int xc_handle, int sid, char *buf, int size); + +#endif /* __FLASK_H__ */ diff --git a/tools/flask/libflask/include/flask_op.h b/tools/flask/libflask/include/flask_op.h deleted file mode 100644 index 4058ea85dc..0000000000 --- a/tools/flask/libflask/include/flask_op.h +++ /dev/null @@ -1,46 +0,0 @@ -/* - * - * Authors: Michael LeMay, <mdlemay@epoch.ncsc.mil> - * George Coker, <gscoker@alpha.ncsc.mil> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2, - * as published by the Free Software Foundation. - */ - -#ifndef __FLASK_OP_H -#define __FLASK_OP_H - -#define FLASK_LOAD 1 -#define FLASK_GETENFORCE 2 -#define FLASK_SETENFORCE 3 -#define FLASK_CONTEXT_TO_SID 4 -#define FLASK_SID_TO_CONTEXT 5 -#define FLASK_ACCESS 6 -#define FLASK_CREATE 7 -#define FLASK_RELABEL 8 -#define FLASK_USER 9 -#define FLASK_POLICYVERS 10 -#define FLASK_GETBOOL 11 -#define FLASK_SETBOOL 12 -#define FLASK_COMMITBOOLS 13 -#define FLASK_MLS 14 -#define FLASK_DISABLE 15 -#define FLASK_GETAVC_THRESHOLD 16 -#define FLASK_SETAVC_THRESHOLD 17 -#define FLASK_AVC_HASHSTATS 18 -#define FLASK_AVC_CACHESTATS 19 -#define FLASK_MEMBER 20 - -typedef struct flask_op { - int cmd; - int size; - char *buf; -} flask_op_t; - -int flask_load(int xc_handle, char *buf, int size); -int flask_context_to_sid(int xc_handle, char *buf, int size, uint32_t *sid); -int flask_sid_to_context(int xc_handle, int sid, char *buf, int size); -int do_flask_op(int xc_handle, flask_op_t *op); - -#endif |