aboutgitcodelistschat:MatrixIRC
path: root/operations.h
blob: ecb6414012a7d5048ad5aa6df0a2dd2a5d5dc1d4 (plain) (blame)
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
/* SPDX-License-Identifier: GPL-3.0-or-later
 * Copyright 2023 Red Hat GmbH
 * Author: Alice Frosi <afrosi@redhat.com>
 */

#ifndef ACIONS_H
#define ACTIONS_H

#include <errno.h>
#include <linux/seccomp.h>

#define STACK_SIZE (1024 * 1024 / 8)
#define NS_NUM (sizeof(enum ns_type))

struct arg_clone {
	const struct op_call *args;
	pid_t pid;
	long ret;
	int err;
};

int do_call(struct arg_clone *c);
int do_operations(struct gluten *g, struct op operations[],
		  struct seccomp_notif *req,
		  unsigned int n_operations, int notifyfd);
#endif /* ACTIONS_H */