2015-04-07 14:35:21 +02:00
|
|
|
# The tzdatacheck command run by init.
|
2016-12-10 04:30:39 +01:00
|
|
|
type tzdatacheck, domain;
|
2018-09-27 19:21:37 +02:00
|
|
|
type tzdatacheck_exec, system_file_type, exec_type, file_type;
|
2015-04-07 14:35:21 +02:00
|
|
|
|
|
|
|
allow tzdatacheck zoneinfo_data_file:dir create_dir_perms;
|
|
|
|
allow tzdatacheck zoneinfo_data_file:file unlink;
|
2017-02-24 20:03:58 +01:00
|
|
|
|
|
|
|
# Below are strong assertion that only init, system_server and tzdatacheck
|
|
|
|
# can modify the /data time zone rules directories. This is to make it very
|
|
|
|
# clear that only these domains should modify the actual time zone rules data.
|
|
|
|
# The tzdatacheck binary itself may be executed by shell for tests but it must
|
|
|
|
# not be able to modify the real rules.
|
|
|
|
# If other users / binaries could modify time zone rules on device this might
|
|
|
|
# have negative implications for users (who may get incorrect local times)
|
|
|
|
# or break assumptions made / invalidate data held by the components actually
|
|
|
|
# responsible for updating time zone rules.
|
|
|
|
neverallow { domain -system_server -init -tzdatacheck } zoneinfo_data_file:file no_w_file_perms;
|
|
|
|
neverallow { domain -system_server -init -tzdatacheck } zoneinfo_data_file:dir no_w_dir_perms;
|