Title: [173005] branches/safari-600.1.4.11-branch/Source/WebKit2
Revision
173005
Author
[email protected]
Date
2014-08-27 08:49:05 -0700 (Wed, 27 Aug 2014)

Log Message

Merged r172989. <rdar://problem/18016794>

Modified Paths

Diff

Modified: branches/safari-600.1.4.11-branch/Source/WebKit2/ChangeLog (173004 => 173005)


--- branches/safari-600.1.4.11-branch/Source/WebKit2/ChangeLog	2014-08-27 13:20:32 UTC (rev 173004)
+++ branches/safari-600.1.4.11-branch/Source/WebKit2/ChangeLog	2014-08-27 15:49:05 UTC (rev 173005)
@@ -1,3 +1,19 @@
+2014-08-27  Babak Shafiei  <[email protected]>
+
+        Merge r172989.
+
+    2014-08-26  Joseph Pecoraro  <[email protected]>
+
+            FileReader cannot read files selected with <input type="file"> in iOS 8
+            https://bugs.webkit.org/show_bug.cgi?id=136117
+
+            Reviewed by Alexey Proskuryakov.
+
+            * Resources/SandboxProfiles/ios/com.apple.WebKit.Networking.sb:
+            Correct an overzealous deny that was accidentally denying all
+            com.apple.app-sandbox.read extensions instead of just the ones
+            in Application bundles it was trying to deny.
+
 2014-08-15  Lucas Forschler  <[email protected]>
 
         Merge r172502

Modified: branches/safari-600.1.4.11-branch/Source/WebKit2/Resources/SandboxProfiles/ios/com.apple.WebKit.Networking.sb (173004 => 173005)


--- branches/safari-600.1.4.11-branch/Source/WebKit2/Resources/SandboxProfiles/ios/com.apple.WebKit.Networking.sb	2014-08-27 13:20:32 UTC (rev 173004)
+++ branches/safari-600.1.4.11-branch/Source/WebKit2/Resources/SandboxProfiles/ios/com.apple.WebKit.Networking.sb	2014-08-27 15:49:05 UTC (rev 173005)
@@ -43,8 +43,14 @@
 ;; enough access to make it possible.
 
 ;; Disallow networking process from reading any bundles, even with the read extension
-(deny file-read* (subpath "/Applications") (extension "com.apple.app-sandbox.read"))
-(deny file-read* (subpath "/private/var/mobile/Containers/Bundle/Application") (extension "com.apple.app-sandbox.read"))
+(deny file-read*
+    (require-all
+        (subpath "/Applications")
+        (extension "com.apple.app-sandbox.read")))
+(deny file-read*
+    (require-all
+        (subpath "/private/var/mobile/Containers/Bundle/Application")
+        (extension "com.apple.app-sandbox.read")))
 
 ;; Allow the networking process to read directories inside the bundle directories
 ;; that we may have killed off above
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to