/* SPDX-License-Identifier: AGPL-3.0-or-later * Copyright Red Hat * Author: Stefano Brivio * Author: David Gibson */ #ifndef ISOLATION_H #define ISOLATION_H void drop_caps(void); void isolate_user(uid_t uid, gid_t gid, bool use_userns, const char *userns); int sandbox(struct ctx *c); void seccomp(const struct ctx *c); #endif /* ISOLATION_H */