Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(404)

Side by Side Diff: content/common/sandbox_linux/bpf_gpu_policy_linux.cc

Issue 1125263005: MJPEG acceleration for V4L2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address kcwu's comments Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/common/sandbox_linux/bpf_gpu_policy_linux.h" 5 #include "content/common/sandbox_linux/bpf_gpu_policy_linux.h"
6 6
7 #include <dlfcn.h> 7 #include <dlfcn.h>
8 #include <errno.h> 8 #include <errno.h>
9 #include <fcntl.h> 9 #include <fcntl.h>
10 #include <sys/socket.h> 10 #include <sys/socket.h>
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 void AddV4L2GpuWhitelist(std::vector<BrokerFilePermission>* permissions) { 153 void AddV4L2GpuWhitelist(std::vector<BrokerFilePermission>* permissions) {
154 if (IsAcceleratedVideoDecodeEnabled()) { 154 if (IsAcceleratedVideoDecodeEnabled()) {
155 // Device node for V4L2 video decode accelerator drivers. 155 // Device node for V4L2 video decode accelerator drivers.
156 static const char kDevVideoDecPath[] = "/dev/video-dec"; 156 static const char kDevVideoDecPath[] = "/dev/video-dec";
157 permissions->push_back(BrokerFilePermission::ReadWrite(kDevVideoDecPath)); 157 permissions->push_back(BrokerFilePermission::ReadWrite(kDevVideoDecPath));
158 } 158 }
159 159
160 // Device node for V4L2 video encode accelerator drivers. 160 // Device node for V4L2 video encode accelerator drivers.
161 static const char kDevVideoEncPath[] = "/dev/video-enc"; 161 static const char kDevVideoEncPath[] = "/dev/video-enc";
162 permissions->push_back(BrokerFilePermission::ReadWrite(kDevVideoEncPath)); 162 permissions->push_back(BrokerFilePermission::ReadWrite(kDevVideoEncPath));
163
164 // Device node for V4L2 JPEG decode accelerator drivers.
165 static const char kDevJpegDecPath[] = "/dev/jpeg-dec";
166 permissions->push_back(BrokerFilePermission::ReadWrite(kDevJpegDecPath));
163 } 167 }
164 168
165 class GpuBrokerProcessPolicy : public GpuProcessPolicy { 169 class GpuBrokerProcessPolicy : public GpuProcessPolicy {
166 public: 170 public:
167 static sandbox::bpf_dsl::Policy* Create() { 171 static sandbox::bpf_dsl::Policy* Create() {
168 return new GpuBrokerProcessPolicy(); 172 return new GpuBrokerProcessPolicy();
169 } 173 }
170 ~GpuBrokerProcessPolicy() override {} 174 ~GpuBrokerProcessPolicy() override {}
171 175
172 ResultExpr EvaluateSyscall(int system_call_number) const override; 176 ResultExpr EvaluateSyscall(int system_call_number) const override;
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 } 352 }
349 353
350 broker_process_ = new BrokerProcess(GetFSDeniedErrno(), permissions); 354 broker_process_ = new BrokerProcess(GetFSDeniedErrno(), permissions);
351 // The initialization callback will perform generic initialization and then 355 // The initialization callback will perform generic initialization and then
352 // call broker_sandboxer_callback. 356 // call broker_sandboxer_callback.
353 CHECK(broker_process_->Init(base::Bind(&UpdateProcessTypeAndEnableSandbox, 357 CHECK(broker_process_->Init(base::Bind(&UpdateProcessTypeAndEnableSandbox,
354 broker_sandboxer_allocator))); 358 broker_sandboxer_allocator)));
355 } 359 }
356 360
357 } // namespace content 361 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698