2022-09-12 14:24:03 +02:00
|
|
|
/* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
* Copyright Red Hat
|
|
|
|
* Author: Stefano Brivio <sbrivio@redhat.com>
|
|
|
|
* Author: David Gibson <david@gibson.dropbear.id.au>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ISOLATION_H
|
|
|
|
#define ISOLATION_H
|
|
|
|
|
2022-10-14 06:25:31 +02:00
|
|
|
void isolate_initial(void);
|
2022-09-12 14:24:07 +02:00
|
|
|
void isolate_user(uid_t uid, gid_t gid, bool use_userns, const char *userns);
|
2022-10-14 06:25:31 +02:00
|
|
|
int isolate_prefork(struct ctx *c);
|
|
|
|
void isolate_postfork(const struct ctx *c);
|
2022-09-12 14:24:03 +02:00
|
|
|
|
|
|
|
#endif /* ISOLATION_H */
|