summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/bpf/prog_tests/test_local_storage.c
blob: 91cd6f357246a5f085e6b6c4d7bdcaeff54c486e (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// SPDX-License-Identifier: GPL-2.0

/*
 * Copyright (C) 2020 Google LLC.
 */

#include <test_progs.h>
#include <linux/limits.h>

#include "local_storage.skel.h"
#include "network_helpers.h"

int create_and_unlink_file(void)
{
	char fname[PATH_MAX] = "/tmp/fileXXXXXX";
	int fd;

	fd = mkstemp(fname);
	if (fd < 0)
		return fd;

	close(fd);
	unlink(fname);
	return 0;
}

void test_test_local_storage(void)
{
	struct local_storage *skel = NULL;
	int err, duration = 0, serv_sk = -1;

	skel = local_storage__open_and_load();
	if (CHECK(!skel, "skel_load", "lsm skeleton failed\n"))
		goto close_prog;

	err = local_storage__attach(skel);
	if (CHECK(err, "attach", "lsm attach failed: %d\n", err))
		goto close_prog;

	skel->bss->monitored_pid = getpid();

	err = create_and_unlink_file();
	if (CHECK(err < 0, "exec_cmd", "err %d errno %d\n", err, errno))
		goto close_prog;

	CHECK(skel->data->inode_storage_result != 0, "inode_storage_result",
	      "inode_local_storage not set\n");

	serv_sk = start_server(AF_INET6, SOCK_STREAM, NULL, 0, 0);
	if (CHECK(serv_sk < 0, "start_server", "failed to start server\n"))
		goto close_prog;

	CHECK(skel->data->sk_storage_result != 0, "sk_storage_result",
	      "sk_local_storage not set\n");

	close(serv_sk);

close_prog:
	local_storage__destroy(skel);
}