commit | 9c4879b35d0776d2616d73c8dad8c739eb0768fc | [log] [tgz] |
---|---|---|
author | Claudio DeSouza <cdesouza@igalia.com> | Sat Jun 25 12:00:48 2022 |
committer | Copybara-Service <copybara-worker@google.com> | Sat Jun 25 12:09:57 2022 |
tree | 44ddeb5eb4c2a0d392e0fd30d16ae624ba82556a | |
parent | 05b38e04fc0db59c7768f8b8ef9abbb45864cf22 [diff] |
Modernising base::JsonReader to return base::expected This CL adjusts JsonReader::ReadAndReturnValueWithError to use base::expected, as it provides a more intuitive way to communicate success/failure. Bug: 1338575 Change-Id: I3dfa8248aad7c099133db6ee9e67b8063e7b78c1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3696611 Reviewed-by: Yann Dago <ydago@chromium.org> Reviewed-by: Eric Orth <ericorth@chromium.org> Reviewed-by: Erik Chen <erikchen@chromium.org> Reviewed-by: Ken Buchanan <kenrb@chromium.org> Reviewed-by: Gabriel Charette <gab@chromium.org> Reviewed-by: Maxim Kolosovskiy <kolos@chromium.org> Reviewed-by: Claudio M <claudiomagni@chromium.org> Reviewed-by: Siddhartha S <ssid@chromium.org> Reviewed-by: Vasiliy Telezhnikov <vasilyt@chromium.org> Reviewed-by: Mark Cogan <marq@chromium.org> Reviewed-by: Will Harris <wfh@chromium.org> Reviewed-by: Anqing Zhao <anqing@chromium.org> Reviewed-by: Alex Moshchuk <alexmos@chromium.org> Reviewed-by: Robert Sesek <rsesek@chromium.org> Commit-Queue: Claudio DeSouza <cdesouza@igalia.com> Reviewed-by: David Pennington <dpenning@chromium.org> Reviewed-by: Justin Cohen <justincohen@chromium.org> Reviewed-by: Mark Seaborn <mseaborn@chromium.org> Reviewed-by: Cici Ruan <cuicuiruan@google.com> Reviewed-by: Austin Sullivan <asully@chromium.org> Reviewed-by: Luciano Pacheco <lucmult@chromium.org> Reviewed-by: Luca Hunkeler <hluca@google.com> Reviewed-by: Dan H <harringtond@chromium.org> Reviewed-by: Jimmy Gong <jimmyxgong@chromium.org> Reviewed-by: Devlin Cronin <rdevlin.cronin@chromium.org> Reviewed-by: Wez <wez@chromium.org> Reviewed-by: Matt Reynolds <mattreynolds@chromium.org> Reviewed-by: Ahmed Fakhry <afakhry@chromium.org> Reviewed-by: Charlie Harrison <csharrison@chromium.org> Reviewed-by: Dominick Ng <dominickn@chromium.org> Reviewed-by: Daniel Rubery <drubery@chromium.org> Reviewed-by: John Chen <johnchen@chromium.org> Reviewed-by: Toni Barzic <tbarzic@chromium.org> Reviewed-by: Daniel Cheng <dcheng@chromium.org> Reviewed-by: Hirokazu Honda <hiroh@chromium.org> Reviewed-by: Guido Urdaneta <guidou@chromium.org> Cr-Commit-Position: refs/heads/main@{#1017954} NOKEYCHECK=True GitOrigin-RevId: 8e71b8677f674bab739791d555b1bc32df30c392
This directory contains platform-specific sandboxing libraries. Sandboxing is a technique that can improve the security of an application by separating untrustworthy code (or code that handles untrustworthy data) and restricting its privileges and capabilities.
Each platform relies on the operating system's process primitive to isolate code into distinct security principals, and platform-specific technologies are used to implement the privilege reduction. At a high-level:
mac/
uses the Seatbelt sandbox. See the detailed design for more.linux/
uses namespaces and Seccomp-BPF. See the detailed design for more.win/
uses a combination of restricted tokens, distinct job objects, alternate desktops, and integrity levels. See the detailed design for more.Built on top of the low-level sandboxing library is the //sandbox/policy
component, which provides concrete policies and helper utilities for sandboxing specific Chromium processes and services. The core sandbox library cannot depend on the policy component.