Title: [252508] trunk/Source/WebKit
Revision
252508
Author
pvol...@apple.com
Date
2019-11-15 15:38:32 -0800 (Fri, 15 Nov 2019)

Log Message

[iOS] Fix sysctl-read sandbox violation
https://bugs.webkit.org/show_bug.cgi?id=204238
<rdar://problem/57198954>

Reviewed by Brent Fulgham.

There is missing a rule for reading a specific sysctl property in the WebContent process on iOS.

* Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (252507 => 252508)


--- trunk/Source/WebKit/ChangeLog	2019-11-15 23:22:20 UTC (rev 252507)
+++ trunk/Source/WebKit/ChangeLog	2019-11-15 23:38:32 UTC (rev 252508)
@@ -1,3 +1,15 @@
+2019-11-15  Per Arne Vollan  <pvol...@apple.com>
+
+        [iOS] Fix sysctl-read sandbox violation
+        https://bugs.webkit.org/show_bug.cgi?id=204238
+        <rdar://problem/57198954>
+
+        Reviewed by Brent Fulgham.
+
+        There is missing a rule for reading a specific sysctl property in the WebContent process on iOS.
+
+        * Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
+
 2019-11-15  Benjamin Nham  <n...@apple.com>
 
         Add SPI to clear web process cache

Modified: trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb (252507 => 252508)


--- trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb	2019-11-15 23:22:20 UTC (rev 252507)
+++ trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb	2019-11-15 23:38:32 UTC (rev 252508)
@@ -846,6 +846,7 @@
         "hw.memsize"
         "hw.model"
         "hw.pagesize_compat"
+        "hw.physicalcpu"
         "hw.physicalcpu_max"
         "kern.bootargs"
         "kern.memorystatus_level"
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to