/* * Copyright (c) 2017 JingPiao Chen * Copyright (c) 2017 The strace developers. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "tests.h" #include #include #include #include #include #include "test_nlattr.h" #include #include static const char address[] = "10.11.12.13"; #ifdef HAVE_IF_INDEXTONAME # define IFINDEX_LO (if_nametoindex("lo")) #else # define IFINDEX_LO 1 #endif static void init_inet_diag_msg(struct nlmsghdr *const nlh, const unsigned int msg_len) { SET_STRUCT(struct nlmsghdr, nlh, .nlmsg_len = msg_len, .nlmsg_type = SOCK_DIAG_BY_FAMILY, .nlmsg_flags = NLM_F_DUMP ); struct inet_diag_msg *const msg = NLMSG_DATA(nlh); SET_STRUCT(struct inet_diag_msg, msg, .idiag_family = AF_INET, .idiag_state = TCP_LISTEN, .id.idiag_if = IFINDEX_LO ); if (!inet_pton(AF_INET, address, msg->id.idiag_src) || !inet_pton(AF_INET, address, msg->id.idiag_dst)) perror_msg_and_skip("inet_pton"); } static void print_inet_diag_msg(const unsigned int msg_len) { printf("{len=%u, type=SOCK_DIAG_BY_FAMILY" ", flags=NLM_F_DUMP, seq=0, pid=0}, {idiag_family=AF_INET" ", idiag_state=TCP_LISTEN, idiag_timer=0, idiag_retrans=0" ", id={idiag_sport=htons(0), idiag_dport=htons(0)" ", idiag_src=inet_addr(\"%s\")" ", idiag_dst=inet_addr(\"%s\")" ", idiag_if=if_nametoindex(\"lo\"), idiag_cookie=[0, 0]}" ", idiag_expires=0, idiag_rqueue=0, idiag_wqueue=0" ", idiag_uid=0, idiag_inode=0}", msg_len, address, address); } static void print_uint(const unsigned int *p) { printf("%u", *p); } int main(void) { skip_if_unavailable("/proc/self/fd/"); const int fd = create_nl_socket(NETLINK_SOCK_DIAG); const unsigned int hdrlen = sizeof(struct inet_diag_msg); void *const nlh0 = tail_alloc(NLMSG_SPACE(hdrlen)); static char pattern[4096]; fill_memory_ex(pattern, sizeof(pattern), 'a', 'z' - 'a' + 1); static const struct inet_diag_meminfo minfo = { .idiag_rmem = 0xfadcacdb, .idiag_wmem = 0xbdabcada, .idiag_fmem = 0xbadbfafb, .idiag_tmem = 0xfdacdadf }; TEST_NLATTR_OBJECT(fd, nlh0, hdrlen, init_inet_diag_msg, print_inet_diag_msg, INET_DIAG_MEMINFO, pattern, minfo, PRINT_FIELD_U("{", minfo, idiag_rmem); PRINT_FIELD_U(", ", minfo, idiag_wmem); PRINT_FIELD_U(", ", minfo, idiag_fmem); PRINT_FIELD_U(", ", minfo, idiag_tmem); printf("}")); static const struct tcpvegas_info vegas = { .tcpv_enabled = 0xfadcacdb, .tcpv_rttcnt = 0xbdabcada, .tcpv_rtt = 0xbadbfafb, .tcpv_minrtt = 0xfdacdadf }; TEST_NLATTR_OBJECT(fd, nlh0, hdrlen, init_inet_diag_msg, print_inet_diag_msg, INET_DIAG_VEGASINFO, pattern, vegas, PRINT_FIELD_U("{", vegas, tcpv_enabled); PRINT_FIELD_U(", ", vegas, tcpv_rttcnt); PRINT_FIELD_U(", ", vegas, tcpv_rtt); PRINT_FIELD_U(", ", vegas, tcpv_minrtt); printf("}")); static const struct tcp_dctcp_info dctcp = { .dctcp_enabled = 0xfdac, .dctcp_ce_state = 0xfadc, .dctcp_alpha = 0xbdabcada, .dctcp_ab_ecn = 0xbadbfafb, .dctcp_ab_tot = 0xfdacdadf }; TEST_NLATTR_OBJECT(fd, nlh0, hdrlen, init_inet_diag_msg, print_inet_diag_msg, INET_DIAG_DCTCPINFO, pattern, dctcp, PRINT_FIELD_U("{", dctcp, dctcp_enabled); PRINT_FIELD_U(", ", dctcp, dctcp_ce_state); PRINT_FIELD_U(", ", dctcp, dctcp_alpha); PRINT_FIELD_U(", ", dctcp, dctcp_ab_ecn); PRINT_FIELD_U(", ", dctcp, dctcp_ab_tot); printf("}")); static const struct tcp_bbr_info bbr = { .bbr_bw_lo = 0xfdacdadf, .bbr_bw_hi = 0xfadcacdb, .bbr_min_rtt = 0xbdabcada, .bbr_pacing_gain = 0xbadbfafb, .bbr_cwnd_gain = 0xfdacdadf }; TEST_NLATTR_OBJECT(fd, nlh0, hdrlen, init_inet_diag_msg, print_inet_diag_msg, INET_DIAG_BBRINFO, pattern, bbr, PRINT_FIELD_X("{", bbr, bbr_bw_lo); PRINT_FIELD_X(", ", bbr, bbr_bw_hi); PRINT_FIELD_U(", ", bbr, bbr_min_rtt); PRINT_FIELD_U(", ", bbr, bbr_pacing_gain); PRINT_FIELD_U(", ", bbr, bbr_cwnd_gain); printf("}")); static const uint32_t mem[] = { 0xaffacbad, 0xffadbcab }; TEST_NLATTR_ARRAY(fd, nlh0, hdrlen, init_inet_diag_msg, print_inet_diag_msg, INET_DIAG_SKMEMINFO, pattern, mem, print_uint); static uint32_t bigmem[SK_MEMINFO_VARS + 1]; memcpy(bigmem, pattern, sizeof(bigmem)); TEST_NLATTR(fd, nlh0, hdrlen, init_inet_diag_msg, print_inet_diag_msg, INET_DIAG_SKMEMINFO, sizeof(bigmem), bigmem, sizeof(bigmem), size_t i; for (i = 0; i < SK_MEMINFO_VARS; ++i) { printf(i ? ", " : "["); print_uint(&bigmem[i]); } printf(", ...]")); static const uint32_t mark = 0xabdfadca; TEST_NLATTR_OBJECT(fd, nlh0, hdrlen, init_inet_diag_msg, print_inet_diag_msg, INET_DIAG_MARK, pattern, mark, printf("%u", mark)); static const uint8_t shutdown = 0xcd; TEST_NLATTR(fd, nlh0, hdrlen, init_inet_diag_msg, print_inet_diag_msg, INET_DIAG_SHUTDOWN, sizeof(shutdown), &shutdown, sizeof(shutdown), printf("%u", shutdown)); char *const str = tail_alloc(DEFAULT_STRLEN); fill_memory_ex(str, DEFAULT_STRLEN, '0', 10); TEST_NLATTR(fd, nlh0, hdrlen, init_inet_diag_msg, print_inet_diag_msg, INET_DIAG_CONG, DEFAULT_STRLEN, str, DEFAULT_STRLEN, printf("\"%.*s\"...", DEFAULT_STRLEN, str)); str[DEFAULT_STRLEN - 1] = '\0'; TEST_NLATTR(fd, nlh0, hdrlen, init_inet_diag_msg, print_inet_diag_msg, INET_DIAG_CONG, DEFAULT_STRLEN, str, DEFAULT_STRLEN, printf("\"%s\"", str)); puts("+++ exited with 0 +++"); return 0; }