mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 02:25:23 +00:00
8ef81401dd
The arm version of libc uses the fcntl64 syscall (0xdd); update the seccomp policy to match the other arm policies. BUG=chromium:901139 TEST=Boot Crostini on kevin (arm) Change-Id: I82eee1ec4918a56495d6c330913c34d4a4a20e4b Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2705290 Reviewed-by: Zach Reizner <zachr@chromium.org> Reviewed-by: Dylan Reid <dgreid@chromium.org> Reviewed-by: kokoro <noreply+kokoro@google.com> Tested-by: Dylan Reid <dgreid@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
23 lines
456 B
Text
23 lines
456 B
Text
# Copyright 2018 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
@include /usr/share/policy/crosvm/common_device.policy
|
|
|
|
fallocate: 1
|
|
fcntl64: 1
|
|
fdatasync: 1
|
|
fstat64: 1
|
|
fsync: 1
|
|
ftruncate64: 1
|
|
_llseek: 1
|
|
open: return ENOENT
|
|
openat: return ENOENT
|
|
pread64: 1
|
|
preadv: 1
|
|
pwrite64: 1
|
|
pwritev: 1
|
|
statx: 1
|
|
timerfd_create: 1
|
|
timerfd_gettime: 1
|
|
timerfd_settime: 1
|