/* * Copyright (c) 2017 JingPiao Chen * Copyright (c) 2017-2021 The strace developers. * All rights reserved. * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "tests.h" #include #include #include #include #include #include #include "test_nlattr.h" #include #include #include static const char address[] = "10.11.12.13"; static void init_inet_diag_req(struct nlmsghdr *const nlh, const unsigned int msg_len) { SET_STRUCT(struct nlmsghdr, nlh, .nlmsg_len = msg_len, .nlmsg_type = TCPDIAG_GETSOCK, .nlmsg_flags = NLM_F_REQUEST ); struct inet_diag_req *const req = NLMSG_DATA(nlh); SET_STRUCT(struct inet_diag_req, req, .idiag_family = AF_INET, .idiag_ext = 1 << (INET_DIAG_TOS - 1), .idiag_states = 1 << TCP_LAST_ACK, .id.idiag_if = ifindex_lo() ); if (!inet_pton(AF_INET, address, req->id.idiag_src) || !inet_pton(AF_INET, address, req->id.idiag_dst)) perror_msg_and_skip("inet_pton"); } static void print_inet_diag_req(const unsigned int msg_len) { printf("{nlmsg_len=%u, nlmsg_type=TCPDIAG_GETSOCK" ", nlmsg_flags=NLM_F_REQUEST, nlmsg_seq=0, nlmsg_pid=0}" ", {idiag_family=AF_INET, idiag_src_len=0, idiag_dst_len=0" ", idiag_ext=1<<(INET_DIAG_TOS-1)" ", id={idiag_sport=htons(0), idiag_dport=htons(0)" ", idiag_src=inet_addr(\"%s\")" ", idiag_dst=inet_addr(\"%s\")" ", idiag_if=" IFINDEX_LO_STR ", idiag_cookie=[0, 0]}" ", idiag_states=1<