00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
#ifndef __RSBAC_MAC_H
00012
#define __RSBAC_MAC_H
00013
00014
#include <linux/init.h>
00015
#include <rsbac/types.h>
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
#ifdef CONFIG_RSBAC_INIT_DELAY
00030
extern int rsbac_init_mac(
void);
00031
#else
00032
extern int rsbac_init_mac(
void) __init;
00033 #endif
00034
00035
00036
int rsbac_mount_mac(kdev_t kdev);
00037
int rsbac_umount_mac(kdev_t kdev);
00038
00039
00040 extern
int rsbac_stats_mac(
void);
00041
00042
00043 extern
int rsbac_check_mac(
int correct,
int check_inode);
00044
00045
00046
00047
00048 #if defined(CONFIG_RSBAC_MAINT) || defined(CONFIG_RSBAC_AUTO_WRITE)
00049 extern
int rsbac_write_mac(
boolean);
00050 #endif
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
int rsbac_mac_add_to_p_truset(
rsbac_pid_t pid,
00065
rsbac_uid_t member,
00066
rsbac_time_t ttl);
00067
00068
int rsbac_mac_add_to_f_truset(
rsbac_mac_file_t file,
00069
rsbac_uid_t member,
00070
rsbac_time_t ttl);
00071
00072
00073
00074
00075
00076
int rsbac_mac_remove_from_p_truset(
rsbac_pid_t pid,
00077
rsbac_uid_t member);
00078
00079
int rsbac_mac_remove_from_f_truset(
rsbac_mac_file_t file,
00080
rsbac_uid_t member);
00081
00082
00083
00084
00085
00086
int rsbac_mac_clear_p_truset(
rsbac_pid_t pid);
00087
00088
int rsbac_mac_clear_f_truset(
rsbac_mac_file_t file);
00089
00090
00091
00092
00093
boolean rsbac_mac_p_truset_member(
rsbac_pid_t pid,
00094
rsbac_uid_t member);
00095
00096
00097
00098
00099
00100
int rsbac_mac_remove_p_trusets(
rsbac_pid_t pid);
00101
00102
int rsbac_mac_remove_f_trusets(
rsbac_mac_file_t file);
00103
00104
int rsbac_mac_copy_fp_truset(
rsbac_mac_file_t file,
00105
rsbac_pid_t p_tru_set_id);
00106
00107
int rsbac_mac_copy_pp_truset(
rsbac_pid_t old_p_set_id,
00108
rsbac_pid_t new_p_set_id);
00109
00110
int rsbac_mac_get_f_trulist(
rsbac_mac_file_t file,
00111
rsbac_uid_t **trulist_p,
00112
rsbac_time_t **ttllist_p);
00113
00114
int rsbac_mac_get_p_trulist(
rsbac_pid_t pid,
00115
rsbac_uid_t **trulist_p,
00116
rsbac_time_t **ttllist_p);
00117
00118 #endif