blob: 614a8f15a5b9a45bbf7c107482091f7a2edaa50d [file] [log] [blame]
Dmitry V. Levin38a34c92015-12-17 17:56:48 +00001/*
Dmitry V. Levin3c86e0e2016-01-30 23:50:54 +00002 * This file is part of inet-yy strace test.
3 *
Dmitry V. Levin285c3f42016-01-06 15:53:45 +00004 * Copyright (c) 2014-2016 Dmitry V. Levin <ldv@altlinux.org>
Dmitry V. Levin38a34c92015-12-17 17:56:48 +00005 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
Dmitry V. Levin285c3f42016-01-06 15:53:45 +000030#include "tests.h"
Dmitry V. Levinfdfa7222014-09-23 00:14:04 +000031#include <assert.h>
Dmitry V. Levin3c86e0e2016-01-30 23:50:54 +000032#include <errno.h>
Dmitry V. Levinfdfa7222014-09-23 00:14:04 +000033#include <string.h>
34#include <unistd.h>
35#include <netinet/in.h>
36#include <linux/netlink.h>
37#include <linux/sock_diag.h>
38#include <linux/inet_diag.h>
39
Dmitry V. Levin285c3f42016-01-06 15:53:45 +000040static void
Dmitry V. Levinfdfa7222014-09-23 00:14:04 +000041send_query(const int fd, const int family, const int proto)
42{
Dmitry V. Levinaf534b82014-11-21 19:59:16 +000043 struct sockaddr_nl nladdr = {
44 .nl_family = AF_NETLINK
45 };
Dmitry V. Levinfdfa7222014-09-23 00:14:04 +000046 struct {
47 struct nlmsghdr nlh;
48 struct inet_diag_req_v2 idr;
Dmitry V. Levinaf534b82014-11-21 19:59:16 +000049 } req = {
50 .nlh = {
51 .nlmsg_len = sizeof(req),
52 .nlmsg_type = SOCK_DIAG_BY_FAMILY,
53 .nlmsg_flags = NLM_F_DUMP | NLM_F_REQUEST
54 },
55 .idr = {
56 .sdiag_family = family,
57 .sdiag_protocol = proto,
58 .idiag_states = -1
59 }
60 };
Dmitry V. Levinfdfa7222014-09-23 00:14:04 +000061 struct iovec iov = {
62 .iov_base = &req,
63 .iov_len = sizeof(req)
64 };
65 struct msghdr msg = {
Dmitry V. Levin3c86e0e2016-01-30 23:50:54 +000066 .msg_name = (void *) &nladdr,
Dmitry V. Levinfdfa7222014-09-23 00:14:04 +000067 .msg_namelen = sizeof(nladdr),
68 .msg_iov = &iov,
69 .msg_iovlen = 1
70 };
71
Dmitry V. Levin285c3f42016-01-06 15:53:45 +000072 if (sendmsg(fd, &msg, 0) <= 0)
73 perror_msg_and_skip("sendmsg");
Dmitry V. Levinfdfa7222014-09-23 00:14:04 +000074}
75
Dmitry V. Levin285c3f42016-01-06 15:53:45 +000076static void
Dmitry V. Levinfdfa7222014-09-23 00:14:04 +000077check_responses(const int fd)
78{
Dmitry V. Levinab263902016-02-24 02:51:09 +000079 static long buf[8192 / sizeof(long)];
Dmitry V. Levinaf534b82014-11-21 19:59:16 +000080 struct sockaddr_nl nladdr = {
81 .nl_family = AF_NETLINK
82 };
Dmitry V. Levinfdfa7222014-09-23 00:14:04 +000083 struct iovec iov = {
84 .iov_base = buf,
85 .iov_len = sizeof(buf)
86 };
Dmitry V. Levinfdfa7222014-09-23 00:14:04 +000087 struct msghdr msg = {
Dmitry V. Levin3c86e0e2016-01-30 23:50:54 +000088 .msg_name = (void *) &nladdr,
Dmitry V. Levinfdfa7222014-09-23 00:14:04 +000089 .msg_namelen = sizeof(nladdr),
90 .msg_iov = &iov,
Dmitry V. Levinaf534b82014-11-21 19:59:16 +000091 .msg_iovlen = 1
Dmitry V. Levinfdfa7222014-09-23 00:14:04 +000092 };
93
94 ssize_t ret = recvmsg(fd, &msg, 0);
95 if (ret <= 0)
Dmitry V. Levin285c3f42016-01-06 15:53:45 +000096 perror_msg_and_skip("recvmsg");
Dmitry V. Levinfdfa7222014-09-23 00:14:04 +000097
Dmitry V. Levin3c86e0e2016-01-30 23:50:54 +000098 struct nlmsghdr *h = (struct nlmsghdr *) buf;
Dmitry V. Levin285c3f42016-01-06 15:53:45 +000099 if (!NLMSG_OK(h, ret))
100 error_msg_and_skip("!NLMSG_OK");
Dmitry V. Levin3c86e0e2016-01-30 23:50:54 +0000101 if (h->nlmsg_type == NLMSG_ERROR) {
102 const struct nlmsgerr *err = NLMSG_DATA(h);
103 if (h->nlmsg_len < NLMSG_LENGTH(sizeof(*err)))
104 error_msg_and_skip("NLMSG_ERROR");
105 errno = -err->error;
106 perror_msg_and_skip("NLMSG_ERROR");
107 }
108 if (h->nlmsg_type != SOCK_DIAG_BY_FAMILY)
109 error_msg_and_skip("unexpected nlmsg_type %u",
110 (unsigned) h->nlmsg_type);
111
112 const struct inet_diag_msg *diag = NLMSG_DATA(h);
113 if (h->nlmsg_len < NLMSG_LENGTH(sizeof(*diag)))
114 error_msg_and_skip("short response");
Dmitry V. Levinfdfa7222014-09-23 00:14:04 +0000115}
116
117int main(void)
118{
119 struct sockaddr_in addr;
120 socklen_t len = sizeof(addr);
121
122 memset(&addr, 0, sizeof(addr));
123 addr.sin_family = AF_INET;
124 addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
125
126 close(0);
127 close(1);
128
Dmitry V. Levin71fe62e2016-04-04 01:35:28 +0000129 if (socket(AF_INET, SOCK_STREAM, 0))
130 perror_msg_and_skip("socket AF_INET");
Dmitry V. Levin285c3f42016-01-06 15:53:45 +0000131 if (bind(0, (struct sockaddr *) &addr, len))
132 perror_msg_and_skip("bind");
133 if (listen(0, 5))
134 perror_msg_and_skip("listen");
135 if (socket(AF_NETLINK, SOCK_RAW, NETLINK_INET_DIAG) != 1)
136 perror_msg_and_skip("socket AF_NETLINK");
Dmitry V. Levinfdfa7222014-09-23 00:14:04 +0000137
Dmitry V. Levin285c3f42016-01-06 15:53:45 +0000138 send_query(1, AF_INET, IPPROTO_TCP);
139 check_responses(1);
140 return 0;
Dmitry V. Levinfdfa7222014-09-23 00:14:04 +0000141}