1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// -*- coding: utf-8 -*-
//
// Copyright (C) 2024 Michael Büsch <m@bues.ch>
//
// Licensed under the Apache License version 2.0
// or the MIT license, at your option.
// SPDX-License-Identifier: Apache-2.0 OR MIT
#![forbid(unsafe_code)]
use build_target::target_arch;
use letmein_seccomp::{Allow, Filter};
use std::path::Path;
const SECCOMP_ALLOW_LIST: [Allow; 11] = [
Allow::Mmap,
Allow::Mprotect,
Allow::Read,
Allow::Write,
Allow::Recv,
Allow::Send,
Allow::Listen,
Allow::TcpAccept,
Allow::UnixConnect,
Allow::Signal,
Allow::Futex,
];
fn main() {
let arch = target_arch().expect("Failed to get build target architecture");
let out_dir = std::env::var("OUT_DIR").expect("OUT_DIR is not set");
// Precompile the seccomp filters.
Filter::precompile(&SECCOMP_ALLOW_LIST, arch.as_str(), Path::new(&out_dir))
.expect("Failed to precompile seccomp BPF");
}
// vim: ts=4 sw=4 expandtab
|