We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d9b694 commit c7c0adfCopy full SHA for c7c0adf
config.proto
@@ -267,6 +267,9 @@ message NsJailConfig {
267
can be specified with cmd-line as "-- /path/to/command arg1 arg2" */
268
optional Exe exec_bin = 90;
269
270
+ /* Disable rdtsc and rdtscp instructions. WARNING: To make it effective, you also need to
271
+ * forbid `prctl(PR_SET_TSC, PR_TSC_ENABLE, ...)` in seccomp rules! (x86 and x86_64 only).
272
+ * Dynamic binaries produced by GCC seem to rely on RDTSC, but static ones should work. */
273
optional bool disable_tsc = 93 [default = false];
274
275
/* Set this to true to forward fatal signals to the child process instead
0 commit comments