Changeset 254989 in webkit


Ignore:
Timestamp:
Jan 23, 2020 11:05:24 AM (4 years ago)
Author:
Brent Fulgham
Message:

[iOS] Camera is lost during WebRTC demo
https://bugs.webkit.org/show_bug.cgi?id=206613
<rdar://problem/58764572>

Patch by Per Arne Vollan <pvollan@apple.com> on 2020-01-23
Reviewed by Brent Fulgham.

Fix observed sandbox violations in the Networking process.

  • Resources/SandboxProfiles/ios/com.apple.WebKit.Networking.sb:
Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r254982 r254989  
     12020-01-23  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [iOS] Camera is lost during WebRTC demo
     4        https://bugs.webkit.org/show_bug.cgi?id=206613
     5        <rdar://problem/58764572>
     6
     7        Reviewed by Brent Fulgham.
     8
     9        Fix observed sandbox violations in the Networking process.
     10
     11        * Resources/SandboxProfiles/ios/com.apple.WebKit.Networking.sb:
     12
    1132020-01-23  Brent Fulgham  <bfulgham@apple.com>
    214
  • trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.Networking.sb

    r254982 r254989  
    642642(allow ipc-posix-shm-read-data
    643643    (ipc-posix-name "/com.apple.AppSSO.version"))
     644
     645;; Access to ContainerManager
     646(allow mach-lookup
     647    (global-name "com.apple.containermanagerd"))
     648(allow ipc-posix-sem-open
     649    (ipc-posix-name "containermanagerd.fb_check"))
     650
     651(allow file-read*
     652    (literal "/dev/random")
     653    (literal "/dev/urandom"))
     654
     655;; Access to MobileGestalt
     656(allow mach-lookup
     657    (global-name "com.apple.mobilegestalt.xpc"))
     658(allow file-read*
     659    (well-known-system-group-container-literal "/systemgroup.com.apple.mobilegestaltcache/Library/Caches/com.apple.MobileGestalt.plist"))
     660(allow iokit-get-properties
     661    (iokit-property "IORegistryEntryPropertyKeys"))
Note: See TracChangeset for help on using the changeset viewer.