aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing/selftests/net/so_netns_cookie.c
blob: b39e87e967cdae1f33a510ecd8bb10f929f59df7 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// SPDX-License-Identifier: GPL-2.0
#define _GNU_SOURCE
#include <sched.h>
#include <unistd.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include <stdint.h>
#include <sys/types.h>
#include <sys/socket.h>

#ifndef SO_NETNS_COOKIE
#define SO_NETNS_COOKIE 71
#endif

#define pr_err(fmt, ...) \
	({ \
		fprintf(stderr, "%s:%d:" fmt ": %m\n", \
			__func__, __LINE__, ##__VA_ARGS__); \
		1; \
	})

int main(int argc, char *argvp[])
{
	uint64_t cookie1, cookie2;
	socklen_t vallen;
	int sock1, sock2;

	sock1 = socket(AF_INET, SOCK_STREAM, 0);
	if (sock1 < 0)
		return pr_err("Unable to create TCP socket");

	vallen = sizeof(cookie1);
	if (getsockopt(sock1, SOL_SOCKET, SO_NETNS_COOKIE, &cookie1, &vallen) != 0)
		return pr_err("getsockopt(SOL_SOCKET, SO_NETNS_COOKIE)");

	if (!cookie1)
		return pr_err("SO_NETNS_COOKIE returned zero cookie");

	if (unshare(CLONE_NEWNET))
		return pr_err("unshare");

	sock2 = socket(AF_INET, SOCK_STREAM, 0);
	if (sock2 < 0)
		return pr_err("Unable to create TCP socket");

	vallen = sizeof(cookie2);
	if (getsockopt(sock2, SOL_SOCKET, SO_NETNS_COOKIE, &cookie2, &vallen) != 0)
		return pr_err("getsockopt(SOL_SOCKET, SO_NETNS_COOKIE)");

	if (!cookie2)
		return pr_err("SO_NETNS_COOKIE returned zero cookie");

	if (cookie1 == cookie2)
		return pr_err("SO_NETNS_COOKIE returned identical cookies for distinct ns");

	close(sock1);
	close(sock2);
	return 0;
}