mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-18 21:27:56 +00:00
24 lines
528 B
C++
24 lines
528 B
C++
|
/*
|
||
|
* \brief Generate seccomp filter policy for base-linux on x86_64
|
||
|
* \author Stefan Thoeni
|
||
|
* \date 2019-12-13
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* Copyright (C) 2019 Genode Labs GmbH
|
||
|
* Copyright (C) 2019 gapfruit AG
|
||
|
*
|
||
|
* This file is part of the Genode OS framework, which is distributed
|
||
|
* under the terms of the GNU Affero General Public License version 3.
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h> /* printf */
|
||
|
#include <seccomp.h> /* libseccomp */
|
||
|
#include "seccomp_bpf_compiler.h"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
Filter filter(SCMP_ARCH_X86_64);
|
||
|
return filter.create();
|
||
|
}
|