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

Unified Diff: content/common/sandbox_linux/bpf_renderer_policy_linux.cc

Issue 639183003: Linux sandbox: Restrict sched_* calls in the renderer policy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Split out cros arm gpu part into a separate CL. Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/sandbox_linux/bpf_renderer_policy_linux.cc
diff --git a/content/common/sandbox_linux/bpf_renderer_policy_linux.cc b/content/common/sandbox_linux/bpf_renderer_policy_linux.cc
index 86cef92cbe324bd18000b1301552ce292157e81e..20301938d6285b21a94caa3048a3a94600a4dc63 100644
--- a/content/common/sandbox_linux/bpf_renderer_policy_linux.cc
+++ b/content/common/sandbox_linux/bpf_renderer_policy_linux.cc
@@ -43,16 +43,17 @@ ResultExpr RendererProcessPolicy::EvaluateSyscall(int sysno) const {
case __NR_mremap: // See crbug.com/149834.
case __NR_pread64:
case __NR_pwrite64:
- case __NR_sched_getaffinity:
case __NR_sched_get_priority_max:
case __NR_sched_get_priority_min:
- case __NR_sched_getparam:
- case __NR_sched_getscheduler:
- case __NR_sched_setscheduler:
case __NR_sysinfo:
case __NR_times:
case __NR_uname:
return Allow();
+ case __NR_sched_getaffinity:
+ case __NR_sched_getparam:
+ case __NR_sched_getscheduler:
+ case __NR_sched_setscheduler:
+ return sandbox::RestrictSchedTarget(GetPolicyPid(), sysno);
case __NR_prlimit64:
return Error(EPERM); // See crbug.com/160157.
default:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698