blob: de02e1e4841299ff0d5eb94e42e3f003f36ebb7f [file] [log] [blame]
Hongyi Zhanga6f98922018-10-25 20:09:55 -07001typeattribute flags_health_check coredomain;
2
3init_daemon_domain(flags_health_check)
Inseob Kim55e5c9b2020-03-04 17:20:35 +09004
5set_prop(flags_health_check, device_config_boot_count_prop)
6set_prop(flags_health_check, device_config_reset_performed_prop)
7set_prop(flags_health_check, device_config_runtime_native_boot_prop)
8set_prop(flags_health_check, device_config_runtime_native_prop)
9set_prop(flags_health_check, device_config_input_native_boot_prop)
Suren Baghdasaryan592e06c2021-08-04 12:31:43 -070010set_prop(flags_health_check, device_config_lmkd_native_prop)
Inseob Kim55e5c9b2020-03-04 17:20:35 +090011set_prop(flags_health_check, device_config_netd_native_prop)
Ian Hua91d153e2021-10-05 15:23:18 +010012set_prop(flags_health_check, device_config_nnapi_native_prop)
Inseob Kim55e5c9b2020-03-04 17:20:35 +090013set_prop(flags_health_check, device_config_activity_manager_native_boot_prop)
14set_prop(flags_health_check, device_config_media_native_prop)
Kalesh Singh9e257142022-04-06 14:31:26 -070015set_prop(flags_health_check, device_config_mglru_native_prop)
Yi Kong0ac00722020-10-27 02:29:52 +080016set_prop(flags_health_check, device_config_profcollect_native_boot_prop)
Tej Singhdd0988f2020-11-17 19:26:23 -080017set_prop(flags_health_check, device_config_statsd_native_prop)
18set_prop(flags_health_check, device_config_statsd_native_boot_prop)
Inseob Kim55e5c9b2020-03-04 17:20:35 +090019set_prop(flags_health_check, device_config_storage_native_boot_prop)
Nick Chalko81a4dd42021-02-11 09:12:51 -080020set_prop(flags_health_check, device_config_swcodec_native_prop)
Inseob Kim55e5c9b2020-03-04 17:20:35 +090021set_prop(flags_health_check, device_config_sys_traced_prop)
22set_prop(flags_health_check, device_config_window_manager_native_boot_prop)
23set_prop(flags_health_check, device_config_configuration_prop)
Xiao Ma2d6c9f02021-02-02 10:27:38 +000024set_prop(flags_health_check, device_config_connectivity_prop)
rnleeb6142ec2021-06-29 13:48:27 -070025set_prop(flags_health_check, device_config_surface_flinger_native_boot_prop)
Andrew Sculld7bed772021-10-29 15:20:02 +010026set_prop(flags_health_check, device_config_virtualization_framework_native_prop)
Inseob Kim55e5c9b2020-03-04 17:20:35 +090027
28# system property device_config_boot_count_prop is used for deciding when to perform server
29# configurable flags related disaster recovery. Mistakenly set up by unrelated components can, at a
30# wrong timing, trigger server configurable flag related disaster recovery, which will override
31# server configured values of all flags with default values.
32neverallow { domain -init -flags_health_check } device_config_boot_count_prop:property_service set;
33
34# system property device_config_reset_performed_prop is used for indicating whether server
35# configurable flags have been reset during booting. Mistakenly modified by unrelated components can
36# cause bad server configurable flags synced back to device.
37neverallow { domain -init -flags_health_check } device_config_reset_performed_prop:property_service set;