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

Side by Side Diff: sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.h

Issue 590213003: Linux sandbox: Allow restricting sched_* on other processes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: List the supported syscalls. 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 unified diff | Download patch
« no previous file with comments | « no previous file | sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef SANDBOX_LINUX_SECCOMP_BPF_HELPERS_SIGSYS_HANDLERS_H_ 5 #ifndef SANDBOX_LINUX_SECCOMP_BPF_HELPERS_SIGSYS_HANDLERS_H_
6 #define SANDBOX_LINUX_SECCOMP_BPF_HELPERS_SIGSYS_HANDLERS_H_ 6 #define SANDBOX_LINUX_SECCOMP_BPF_HELPERS_SIGSYS_HANDLERS_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "sandbox/linux/bpf_dsl/bpf_dsl.h" 10 #include "sandbox/linux/bpf_dsl/bpf_dsl.h"
(...skipping 29 matching lines...) Expand all
40 SANDBOX_EXPORT intptr_t 40 SANDBOX_EXPORT intptr_t
41 SIGSYSIoctlFailure(const struct arch_seccomp_data& args, void* aux); 41 SIGSYSIoctlFailure(const struct arch_seccomp_data& args, void* aux);
42 // The crashing address will be (pid & 0xFFF), where pid is the first 42 // The crashing address will be (pid & 0xFFF), where pid is the first
43 // argument (and can be a tid). 43 // argument (and can be a tid).
44 SANDBOX_EXPORT intptr_t 44 SANDBOX_EXPORT intptr_t
45 SIGSYSKillFailure(const struct arch_seccomp_data& args, void* aux); 45 SIGSYSKillFailure(const struct arch_seccomp_data& args, void* aux);
46 // The crashing address will be (op & 0xFFF), where op is the second 46 // The crashing address will be (op & 0xFFF), where op is the second
47 // argument. 47 // argument.
48 SANDBOX_EXPORT intptr_t 48 SANDBOX_EXPORT intptr_t
49 SIGSYSFutexFailure(const struct arch_seccomp_data& args, void* aux); 49 SIGSYSFutexFailure(const struct arch_seccomp_data& args, void* aux);
50 // If the syscall is not being called on the current tid, crashes in the same
51 // way as CrashSIGSYS_Handler. Otherwise, returns the result of calling the
52 // syscall with the pid argument set to 0 (which for these calls means the
53 // current thread). The following syscalls are supported:
54 //
55 // sched_getaffinity(), sched_getattr(), sched_getparam(), sched_getscheduler(),
56 // sched_rr_get_interval(), sched_setaffinity(), sched_setattr(),
57 // sched_setparam(), sched_setscheduler()
58 SANDBOX_EXPORT intptr_t
59 SIGSYSSchedHandler(const struct arch_seccomp_data& args, void* aux);
50 60
51 // Variants of the above functions for use with bpf_dsl. 61 // Variants of the above functions for use with bpf_dsl.
52 SANDBOX_EXPORT bpf_dsl::ResultExpr CrashSIGSYS(); 62 SANDBOX_EXPORT bpf_dsl::ResultExpr CrashSIGSYS();
53 SANDBOX_EXPORT bpf_dsl::ResultExpr CrashSIGSYSClone(); 63 SANDBOX_EXPORT bpf_dsl::ResultExpr CrashSIGSYSClone();
54 SANDBOX_EXPORT bpf_dsl::ResultExpr CrashSIGSYSPrctl(); 64 SANDBOX_EXPORT bpf_dsl::ResultExpr CrashSIGSYSPrctl();
55 SANDBOX_EXPORT bpf_dsl::ResultExpr CrashSIGSYSIoctl(); 65 SANDBOX_EXPORT bpf_dsl::ResultExpr CrashSIGSYSIoctl();
56 SANDBOX_EXPORT bpf_dsl::ResultExpr CrashSIGSYSKill(); 66 SANDBOX_EXPORT bpf_dsl::ResultExpr CrashSIGSYSKill();
57 SANDBOX_EXPORT bpf_dsl::ResultExpr CrashSIGSYSFutex(); 67 SANDBOX_EXPORT bpf_dsl::ResultExpr CrashSIGSYSFutex();
68 SANDBOX_EXPORT bpf_dsl::ResultExpr RewriteSchedSIGSYS();
58 69
59 // Following four functions return substrings of error messages used 70 // Following four functions return substrings of error messages used
60 // in the above four functions. They are useful in death tests. 71 // in the above four functions. They are useful in death tests.
61 SANDBOX_EXPORT const char* GetErrorMessageContentForTests(); 72 SANDBOX_EXPORT const char* GetErrorMessageContentForTests();
62 SANDBOX_EXPORT const char* GetCloneErrorMessageContentForTests(); 73 SANDBOX_EXPORT const char* GetCloneErrorMessageContentForTests();
63 SANDBOX_EXPORT const char* GetPrctlErrorMessageContentForTests(); 74 SANDBOX_EXPORT const char* GetPrctlErrorMessageContentForTests();
64 SANDBOX_EXPORT const char* GetIoctlErrorMessageContentForTests(); 75 SANDBOX_EXPORT const char* GetIoctlErrorMessageContentForTests();
65 SANDBOX_EXPORT const char* GetKillErrorMessageContentForTests(); 76 SANDBOX_EXPORT const char* GetKillErrorMessageContentForTests();
66 SANDBOX_EXPORT const char* GetFutexErrorMessageContentForTests(); 77 SANDBOX_EXPORT const char* GetFutexErrorMessageContentForTests();
67 78
68 } // namespace sandbox. 79 } // namespace sandbox.
69 80
70 #endif // SANDBOX_LINUX_SECCOMP_BPF_HELPERS_SIGSYS_HANDLERS_H_ 81 #endif // SANDBOX_LINUX_SECCOMP_BPF_HELPERS_SIGSYS_HANDLERS_H_
OLDNEW
« no previous file with comments | « no previous file | sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698