• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# healthd - battery/charger monitoring service daemon
2type healthd, domain;
3type healthd_exec, exec_type, file_type;
4
5# Write to /dev/kmsg
6allow healthd kmsg_device:chr_file rw_file_perms;
7
8# Read access to pseudo filesystems.
9r_dir_file(healthd, sysfs_type)
10r_dir_file(healthd, rootfs)
11r_dir_file(healthd, cgroup)
12
13# Read access to system files for passthrough HALs in
14# /{system,vendor,odm}/lib[64]/hw/
15r_dir_file(healthd, system_file)
16
17allow healthd self:capability { sys_tty_config };
18allow healthd self:capability sys_boot;
19
20allow healthd self:netlink_kobject_uevent_socket create_socket_perms_no_ioctl;
21
22wakelock_use(healthd)
23
24binder_use(healthd)
25binder_service(healthd)
26binder_call(healthd, system_server)
27hal_client_domain(healthd, hal_health)
28
29# Write to state file.
30# TODO:  Split into a separate type?
31allow healthd sysfs:file write;
32
33# TODO: added to match above sysfs rule. Remove me?
34allow healthd sysfs_usb:file write;
35
36allow healthd sysfs_batteryinfo:file r_file_perms;
37
38r_dir_file(healthd, sysfs_type)
39
40###
41### healthd: charger mode
42###
43
44# Read /sys/fs/pstore/console-ramoops
45# Don't worry about overly broad permissions for now, as there's
46# only one file in /sys/fs/pstore
47allow healthd pstorefs:dir r_dir_perms;
48allow healthd pstorefs:file r_file_perms;
49
50allow healthd graphics_device:dir r_dir_perms;
51allow healthd graphics_device:chr_file rw_file_perms;
52allow healthd input_device:dir r_dir_perms;
53allow healthd input_device:chr_file r_file_perms;
54allow healthd tty_device:chr_file rw_file_perms;
55allow healthd ashmem_device:chr_file execute;
56allow healthd self:process execmem;
57allow healthd proc_sysrq:file rw_file_perms;
58
59add_service(healthd, batteryproperties_service)
60
61# Healthd needs to tell init to continue the boot
62# process when running in charger mode.
63set_prop(healthd, system_prop)
64