OSDN Git Service

Zygote: Add CAP_WAKE_ALARM to system_server to properly support timerfd alarms
authorJohn Stultz <john.stultz@linaro.org>
Thu, 28 Jul 2016 19:35:31 +0000 (12:35 -0700)
committerChih-Wei Huang <cwhuang@linux.org.tw>
Tue, 22 Nov 2016 03:24:35 +0000 (11:24 +0800)
The when the timerfd alarm logic was added to the kernel, an oversight was made
and the interface does not check for the CAP_WAKE_ALARM permissions as required
via other kernel methods to trigger an alarm timer.

In v4.8-rc kernels, the change 2895a5e5b3a ("timerfd: Reject ALARM timerfds
without CAP_WAKE_ALARM") was added by Eric Caruso <ejcaruso@google.com>.

After this change (which may be backported to -stable), the AlarmManager will
fail on the first timerfd_create call, and will not be able to set the time
or handle other necessary functions.

The solution here is to add CAP_WAKE_ALARM to the system_server process.

Change-Id: Ifdb16f3ef42711e553f727165de3922d484b5be4
Signed-off-by: John Stultz <john.stultz@linaro.org>
core/java/com/android/internal/os/ZygoteInit.java

index 706e89f..eee8fcd 100644 (file)
@@ -518,7 +518,8 @@ public class ZygoteInit {
             OsConstants.CAP_SYS_NICE,
             OsConstants.CAP_SYS_RESOURCE,
             OsConstants.CAP_SYS_TIME,
-            OsConstants.CAP_SYS_TTY_CONFIG
+            OsConstants.CAP_SYS_TTY_CONFIG,
+            OsConstants.CAP_WAKE_ALARM
         );
         /* Hardcoded command line to start the system server */
         String args[] = {