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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
/*
* This file is part of net-yy-netlink strace test.
*
* Copyright (c) 2013-2017 Dmitry V. Levin <ldv@strace.io>
* Copyright (c) 2016 Fabien Siron <fabien.siron@epita.fr>
* Copyright (c) 2016-2020 The strace developers.
* All rights reserved.
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "tests.h"
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <unistd.h>
#include <sys/socket.h>
#include "netlink.h"
#include <linux/sock_diag.h>
#include <linux/netlink_diag.h>
#ifndef PRINT_SOCK
# define PRINT_SOCK 2
#endif
#if PRINT_SOCK == 2
# define FMT_UNBOUND "<NETLINK:[%lu]>"
# define FMT_BOUND "<NETLINK:[SOCK_DIAG:%u]>"
# define ARG_UNBOUND inode
# define ARG_BOUND addr.nl_pid
#elif PRINT_SOCK == 1
# define FMT_UNBOUND "<socket:[%lu]>"
# define FMT_BOUND "<socket:[%lu]>"
# define ARG_UNBOUND inode
# define ARG_BOUND inode
#else
# define FMT_UNBOUND "%s"
# define FMT_BOUND "%s"
# define ARG_UNBOUND ""
# define ARG_BOUND ""
#endif
int
main(void)
{
skip_if_unavailable("/proc/self/fd/");
struct sockaddr_nl addr = {
.nl_family = AF_NETLINK,
.nl_pid = getpid()
};
struct sockaddr *const sa = tail_memdup(&addr, sizeof(addr));
TAIL_ALLOC_OBJECT_CONST_PTR(socklen_t, len);
*len = sizeof(addr);
const int fd = socket(AF_NETLINK, SOCK_RAW, NETLINK_SOCK_DIAG);
if (fd < 0)
perror_msg_and_skip("socket");
#if PRINT_SOCK
const unsigned long inode = inode_of_sockfd(fd);
#endif
printf("socket(AF_NETLINK, SOCK_RAW, NETLINK_SOCK_DIAG) = "
"%d" FMT_UNBOUND "\n", fd, ARG_UNBOUND);
if (bind(fd, sa, *len))
perror_msg_and_skip("bind");
printf("bind(%d" FMT_UNBOUND ", {sa_family=AF_NETLINK"
", nl_pid=%d, nl_groups=00000000}, %u) = 0\n",
fd, ARG_UNBOUND, addr.nl_pid, (unsigned) *len);
if (getsockname(fd, sa, len))
perror_msg_and_fail("getsockname");
printf("getsockname(%d" FMT_BOUND ", {sa_family=AF_NETLINK"
", nl_pid=%d, nl_groups=00000000}, [%u]) = 0\n",
fd, ARG_BOUND, addr.nl_pid, (unsigned) *len);
if (close(fd))
perror_msg_and_fail("close");
printf("close(%d" FMT_BOUND ") = 0\n", fd, ARG_BOUND);
puts("+++ exited with 0 +++");
return 0;
}
|