aboutsummaryrefslogtreecommitdiff
path: root/testcases/lib/tst_ns_common.h
blob: 358db5141c148619cb22e236723da4a858abba72 (plain)
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
39
40
41
42
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright (c) 2015 Red Hat, Inc.
 * Copyright (c) Linux Test Project, 2015-2023
 */

#ifndef TST_NS_COMMON_H__
#define TST_NS_COMMON_H__
#include <sched.h>
#include "lapi/sched.h"

#define PROC_PATH "/proc"

struct param {
	const char *name;
	int flag;
};

static struct param params[] = {
	{"ipc",  CLONE_NEWIPC},
	{"mnt",  CLONE_NEWNS},
	{"net",  CLONE_NEWNET},
	{"pid",  CLONE_NEWPID},
	{"user", CLONE_NEWUSER},
	{"uts",  CLONE_NEWUTS},
	{NULL,   0}
};

#define NS_TOTAL (ARRAY_SIZE(params) - 1)

static struct param *get_param(const char *name)
{
	int i;

	for (i = 0; params[i].name; i++) {
		if (!strcasecmp(params[i].name, name))
			return params + i;
	}

	return NULL;
}

#endif /* TST_NS_COMMON_H__ */