selinux-policy/refpolicy/policy/modules/system/miscfiles.if
Chris PeBenito 98a8ead4c5 more updates
2005-09-15 21:03:29 +00:00

139 lines
3.0 KiB
Plaintext

## <summary>Miscelaneous files.</summary>
########################################
## <summary>
## Read fonts
## </summary>
## <param name="domain">
## Type type of the process performing this action.
## </param>
#
interface(`miscfiles_read_fonts',`
gen_require(`
type fonts_t;
class dir r_dir_perms;
class file r_file_perms;
')
files_search_usr($1)
libs_search_lib($1)
# cjp: fonts can be in either of the above dirs
allow $1 fonts_t:dir r_dir_perms;
allow $1 fonts_t:file r_file_perms;
')
########################################
## <summary>
## Allow process to read localization info
## </summary>
## <param name="domain">
## Type type of the process performing this action.
## </param>
#
interface(`miscfiles_read_localization',`
gen_require(`
type locale_t;
class dir r_dir_perms;
class lnk_file r_file_perms;
class file r_file_perms;
')
files_search_etc($1)
# FIXME: $1 read etc_t:lnk_file here
files_search_usr($1)
allow $1 locale_t:dir r_dir_perms;
allow $1 locale_t:lnk_file r_file_perms;
allow $1 locale_t:file r_file_perms;
# why?
libs_read_lib($1)
')
########################################
## <summary>
## Allow process to read legacy time localization info
## </summary>
## <param name="domain">
## Type type of the process performing this action.
## </param>
#
interface(`miscfiles_legacy_read_localization',`
gen_require(`
type locale_t;
class file execute;
')
miscfiles_read_localization($1)
allow $1 locale_t:file execute;
')
########################################
## <summary>
## Allow process to read man pages
## </summary>
## <param name="domain">
## Type type of the process performing this action.
## </param>
#
interface(`miscfiles_read_man_pages',`
gen_require(`
type man_t;
class dir r_dir_perms;
class file r_file_perms;
class lnk_file r_file_perms;
')
files_search_usr($1)
allow $1 man_t:dir r_dir_perms;
allow $1 man_t:file r_file_perms;
allow $1 man_t:lnk_file r_file_perms;
')
########################################
## <summary>
## Read TeX data
## </summary>
## <param name="domain">
## Type type of the process performing this action.
## </param>
#
interface(`miscfiles_read_tetex_data',`
gen_require(`
type tetex_data_t;
class dir r_dir_perms;
class file r_file_perms;
class lnk_file r_file_perms;
')
files_search_var($1)
files_search_var_lib($1)
# cjp: TeX data can be in either of the above dirs
allow $1 tetex_data_t:dir r_dir_perms;
allow $1 tetex_data_t:file r_file_perms;
allow $1 tetex_data_t:lnk_file r_file_perms;
')
########################################
## <summary>
## Execute TeX data programs in the caller domain.
## </summary>
## <param name="domain">
## Type type of the process performing this action.
## </param>
#
interface(`miscfiles_exec_tetex_data',`
gen_require(`
type fonts_t;
class dir r_dir_perms;
')
files_search_var($1)
files_search_var_lib($1)
# cjp: TeX data can be in either of the above dirs
allow $1 tetex_data_t:dir r_dir_perms;
can_exec($1,tetex_data_t)
')