Hello, everyone! I've been trying to switch my Kube CNIs to use nftables directly. However, I get coredumps everywhere in my system. I successfully extracted the commands sent to the tool from the CNI: ``` add table inet cni_plugins_masquerade add chain inet cni_plugins_masquerade masq_checks add chain inet cni_plugins_masquerade postrouting { type nat hook postrouting priority 100 ; } flush chain inet cni_plugins_masquerade postrouting add rule inet cni_plugins_masquerade postrouting ip daddr == 224.0.0.0/24 return add rule inet cni_plugins_masquerade postrouting ip6 daddr == ff00::/8 return add rule inet cni_plugins_masquerade postrouting goto masq_checks add rule inet cni_plugins_masquerade masq_checks ip saddr == 10.244.0.198 ip daddr != 10.244.0.0/24 masquerade ``` I definitely am not an nftables professional, but they seem correct to me. When running that, at the minute I try to add the rules (if I run the commands one by one) I receive a SEGFAULT (after some processing time). I did do a quick run with GDB if that can help: ``` arno@serveur ~/cni> sudo gdb nft GNU gdb (Fedora Linux) 16.3-1.fc42 Copyright (C) 2024 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-redhat-linux-gnu". Type "show configuration" for configuration details. For bug reporting instructions, please see: <https://www.gnu.org/software/gdb/bugs/>. Find the GDB manual and other documentation resources online at: <http://www.gnu.org/software/gdb/documentation/>. For help, type "help". Type "apropos word" to search for commands related to "word"... Reading symbols from nft... Reading symbols from /usr/lib/debug/usr/bin/nft-1.1.1-3.fc42.x86_64.debug... (gdb) run add rule inet cni_plugins_masquerade postrouting ip daddr 192.168.1.1 return Starting program: /usr/bin/nft add rule inet cni_plugins_masquerade postrouting ip daddr 192.168.1.1 return [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib64/libthread_db.so.1". Program received signal SIGSEGV, Segmentation fault. 0x0000000000000000 in ?? () (gdb) bt #0 0x0000000000000000 in ?? () #1 0x00007ffff7ef3740 in set_make_key (attr=0x5555556017e6) at src/netlink.c:919 #2 0x00007ffff7ef7517 in netlink_delinearize_set (ctx=0x7fffffffc350, nls=0x5555556016e0) at src/netlink.c:991 #3 0x00007ffff7ecb53c in set_cache_cb (nls=0x5555556016e0, arg=0x7fffffffc340) at src/cache.c:769 #4 0x00007ffff7c655dc in nftnl_set_list_foreach (set_list=set_list@entry=0x5555555ffe90, cb=cb@entry=0x7ffff7ecb4d0 <set_cache_cb>, data=data@entry=0x7fffffffc340) at /usr/src/debug/libnftnl-1.2.8-4.fc42.x86_64/src/set.c:962 #5 0x00007ffff7ed0ba3 in set_cache_init (ctx=0x7fffffffc350, table=0x5555555ff190, set_list=0x5555555ffe90) at src/cache.c:790 #6 cache_init_objects (ctx=0x7fffffffc350, flags=<optimized out>, filter=<optimized out>) at src/cache.c:1175 #7 nft_cache_init (ctx=0x7fffffffc350, flags=<optimized out>, filter=<optimized out>) at src/cache.c:1264 #8 nft_cache_update (nft=<optimized out>, flags=<optimized out>, msgs=<optimized out>, filter=<optimized out>) at src/cache.c:1323 #9 0x00007ffff7ee9bfa in nft_evaluate (nft=nft@entry=0x55555555b2a0, msgs=msgs@entry=0x7fffffffe9b0, cmds=cmds@entry=0x7fffffffe9a0) at src/libnftables.c:525 #10 0x00007ffff7ef0db7 in nft_run_cmd_from_buffer (nft=0x55555555b2a0, buf=buf@entry=0x55555557bb20 "add rule inet cni_plugins_masquerade postrouting ip daddr 192.168.1.1 return") at src/libnftables.c:585 #11 0x0000555555554fba in main (argc=10, argv=<optimized out>) at src/main.c:533 (gdb) list src/netlink.c:991 986 GET_U32_UDATA(databyteorder, NFTNL_UDATA_SET_DATABYTEORDER); 987 GET_U32_UDATA(automerge, NFTNL_UDATA_SET_MERGE_ELEMENTS); 988 GET_U32_UDATA(data_interval, NFTNL_UDATA_SET_DATA_INTERVAL); 989 990 #undef GET_U32_UDATA 991 typeof_expr_key = set_make_key(ud[NFTNL_UDATA_SET_KEY_TYPEOF]); 992 if (ud[NFTNL_UDATA_SET_DATA_TYPEOF]) 993 typeof_expr_data = set_make_key(ud[NFTNL_UDATA_SET_DATA_TYPEOF]); 994 if (ud[NFTNL_UDATA_SET_COMMENT]) 995 comment = nftnl_udata_get(ud[NFTNL_UDATA_SET_COMMENT]); (gdb) list src/netlink.c:919 914 etype = nftnl_udata_get_u32(ud[NFTNL_UDATA_SET_TYPEOF_EXPR]); 915 ops = expr_ops_by_type_u32(etype); 916 if (!ops) 917 return NULL; 918 919 expr = ops->parse_udata(ud[NFTNL_UDATA_SET_TYPEOF_DATA]); 920 if (!expr) 921 return NULL; 922 923 return expr; ``` (the specified IP is different than the one in the file, it was because I was trying to find what was crashing everything but they both segfaults anyway; the correct one is the one in the commands above) I am using "nftables-1.1.1-3.fc42.x86_64" on Fedora 42 (with "Linux 6.16.3-200.fc42.x86_64" but it seems this issue has been there for quite a long time). If needed I also have an strace dump, attached to not make this email any longer :). Did anyone encounter this kind of issue? Thank you very much! Best regards, Arno
arno@serveur ~/cni> sudo strace nft add rule inet cni_plugins_masquerade postrouting ip daddr 192.168.1.1 return [sudo] Mot de passe de arno : execve("/usr/sbin/nft", ["nft", "add", "rule", "inet", "cni_plugins_masquerade", "postrouting", "ip", "daddr", "192.168.1.1", "return"], 0x7ffe97975fc8 /* 14 vars */) = 0 brk(NULL) = 0x55a6b9115000 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876bfc000 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (Aucun fichier ou dossier de ce nom) openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=53451, ...}) = 0 mmap(NULL, 53451, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f3876bee000 close(3) = 0 openat(AT_FDCWD, "/lib64/libnftables.so.1", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=959568, ...}) = 0 mmap(NULL, 954728, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3876b04000 mmap(0x7f3876b8b000, 307200, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x87000) = 0x7f3876b8b000 mmap(0x7f3876bd6000, 90112, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd1000) = 0x7f3876bd6000 mmap(0x7f3876bec000, 4456, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f3876bec000 close(3) = 0 openat(AT_FDCWD, "/lib64/libedit.so.0", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=232720, ...}) = 0 mmap(NULL, 240768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3876ac9000 mmap(0x7f3876aec000, 73728, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x23000) = 0x7f3876aec000 mmap(0x7f3876afe000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x35000) = 0x7f3876afe000 mmap(0x7f3876b01000, 11392, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f3876b01000 close(3) = 0 openat(AT_FDCWD, "/lib64/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\00007\0\0\0\0\0\0"..., 832) = 832 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 fstat(3, {st_mode=S_IFREG|0755, st_size=2447520, ...}) = 0 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 mmap(NULL, 2038832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f38768d7000 mmap(0x7f3876a46000, 479232, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16f000) = 0x7f3876a46000 mmap(0x7f3876abb000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1e3000) = 0x7f3876abb000 mmap(0x7f3876ac1000, 31792, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f3876ac1000 close(3) = 0 openat(AT_FDCWD, "/lib64/libmnl.so.0", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=28584, ...}) = 0 mmap(NULL, 28680, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f38768cf000 mmap(0x7f38768d2000, 12288, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f38768d2000 mmap(0x7f38768d5000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7f38768d5000 mmap(0x7f38768d6000, 8, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f38768d6000 close(3) = 0 openat(AT_FDCWD, "/lib64/libnftnl.so.11", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=212416, ...}) = 0 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38768cd000 mmap(NULL, 207376, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f387689a000 mmap(0x7f38768b8000, 65536, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1e000) = 0x7f38768b8000 mmap(0x7f38768c8000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2d000) = 0x7f38768c8000 close(3) = 0 openat(AT_FDCWD, "/lib64/libxtables.so.12", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=65568, ...}) = 0 mmap(NULL, 81088, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3876886000 mmap(0x7f387688f000, 24576, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9000) = 0x7f387688f000 mmap(0x7f3876895000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe000) = 0x7f3876895000 mmap(0x7f3876897000, 11456, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f3876897000 close(3) = 0 openat(AT_FDCWD, "/lib64/libjansson.so.4", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=70312, ...}) = 0 mmap(NULL, 65616, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3876875000 mmap(0x7f3876880000, 16384, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xb000) = 0x7f3876880000 mmap(0x7f3876884000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xf000) = 0x7f3876884000 close(3) = 0 openat(AT_FDCWD, "/lib64/libgmp.so.10", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=690576, ...}) = 0 mmap(NULL, 680528, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f38767ce000 mmap(0x7f387684e000, 147456, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x80000) = 0x7f387684e000 mmap(0x7f3876872000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa4000) = 0x7f3876872000 close(3) = 0 openat(AT_FDCWD, "/lib64/libtinfo.so.6", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=187336, ...}) = 0 mmap(NULL, 182560, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f38767a1000 mmap(0x7f38767b6000, 77824, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7f38767b6000 mmap(0x7f38767c9000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x28000) = 0x7f38767c9000 close(3) = 0 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f387679f000 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f387679c000 arch_prctl(ARCH_SET_FS, 0x7f387679c740) = 0 set_tid_address(0x7f387679ca10) = 2163592 set_robust_list(0x7f387679ca20, 24) = 0 rseq(0x7f387679c680, 0x20, 0, 0x53053053) = 0 mprotect(0x7f3876abb000, 16384, PROT_READ) = 0 mprotect(0x7f38767c9000, 16384, PROT_READ) = 0 mprotect(0x7f3876872000, 8192, PROT_READ) = 0 mprotect(0x7f3876884000, 4096, PROT_READ) = 0 mprotect(0x7f3876895000, 4096, PROT_READ) = 0 mprotect(0x7f38768d5000, 4096, PROT_READ) = 0 mprotect(0x7f38768c8000, 12288, PROT_READ) = 0 mprotect(0x7f3876afe000, 8192, PROT_READ) = 0 mprotect(0x7f3876bd6000, 86016, PROT_READ) = 0 mprotect(0x55a6b04b0000, 4096, PROT_READ) = 0 mprotect(0x7f3876c3a000, 8192, PROT_READ) = 0 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 munmap(0x7f3876bee000, 53451) = 0 getuid() = 0 geteuid() = 0 getuid() = 0 geteuid() = 0 getrandom("\x0c\x30\x79\x17\xa1\xdc\x74\xfb", 8, GRND_NONBLOCK) = 8 brk(NULL) = 0x55a6b9115000 brk(0x55a6b9136000) = 0x55a6b9136000 openat(AT_FDCWD, "/etc/iproute2/rt_marks", O_RDONLY) = -1 ENOENT (Aucun fichier ou dossier de ce nom) openat(AT_FDCWD, "/usr/share/iproute2/rt_marks", O_RDONLY) = -1 ENOENT (Aucun fichier ou dossier de ce nom) openat(AT_FDCWD, "/etc/iproute2/rt_realms", O_RDONLY) = -1 ENOENT (Aucun fichier ou dossier de ce nom) openat(AT_FDCWD, "/usr/share/iproute2/rt_realms", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=112, ...}) = 0 read(3, "#\n# reserved values\n#\n0\tcosmos\n#"..., 4096) = 112 read(3, "", 4096) = 0 close(3) = 0 openat(AT_FDCWD, "/etc/iproute2/group", O_RDONLY) = -1 ENOENT (Aucun fichier ou dossier de ce nom) openat(AT_FDCWD, "/usr/share/iproute2/group", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=31, ...}) = 0 read(3, "# device group names\n0\tdefault\n", 4096) = 31 read(3, "", 4096) = 0 close(3) = 0 openat(AT_FDCWD, "/etc/connlabel.conf", O_RDONLY) = -1 ENOENT (Aucun fichier ou dossier de ce nom) socket(AF_NETLINK, SOCK_RAW, NETLINK_NETFILTER) = 3 fcntl(3, F_SETFL, O_RDONLY|O_NONBLOCK) = 0 setsockopt(3, SOL_NETLINK, NETLINK_EXT_ACK, [1], 4) = 0 brk(0x55a6b9157000) = 0x55a6b9157000 sendto(3, [{nlmsg_len=20, nlmsg_type=0xa10 /* NLMSG_??? */, nlmsg_flags=NLM_F_REQUEST, nlmsg_seq=0, nlmsg_pid=0}, "\x00\x00\x00\x00"], 20, 0, {sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, 12) = 20 recvmsg(3, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=12, msg_iov=[{iov_base=[{nlmsg_len=44, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWGEN, nlmsg_flags=0, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_UNSPEC, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=8, nla_type=0x1}, "\x00\x00\x19\x07"], [{nla_len=8, nla_type=0x2}, "\x00\x21\x03\x88"], [{nla_len=8, nla_type=0x3}, "\x6e\x66\x74\x00"]]], iov_len=69631}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 44 recvmsg(3, {msg_namelen=12}, 0) = -1 EAGAIN (Ressource temporairement non disponible) sendto(3, [{nlmsg_len=20, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_GETTABLE, nlmsg_flags=NLM_F_REQUEST|NLM_F_DUMP, nlmsg_seq=0, nlmsg_pid=0}, {nfgen_family=AF_UNSPEC, version=NFNETLINK_V0, res_id=htons(0)}], 20, 0, {sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, 12) = 20 recvmsg(3, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=12, msg_iov=[{iov_base=[[{nlmsg_len=68, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWTABLE, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_UNIX, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=17, nla_type=0x1}, "\x6e\x66\x74\x61\x62\x6c\x65\x73\x5f\x73\x76\x63\x00"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x09"], [{nla_len=12, nla_type=0x4}, "\x00\x00\x00\x00\x00\x00\x00\x0e"], [{nla_len=8, nla_type=0x2}, "\x00\x00\x00\x00"]]], [{nlmsg_len=68, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWTABLE, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=17, nla_type=0x1}, "\x6e\x66\x74\x61\x62\x6c\x65\x73\x5f\x73\x76\x63\x00"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x04"], [{nla_len=12, nla_type=0x4}, "\x00\x00\x00\x00\x00\x00\x00\x0f"], [{nla_len=8, nla_type=0x2}, "\x00\x00\x00\x00"]]], [{nlmsg_len=68, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWTABLE, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=20, nla_type=0x1}, "\x6c\x69\x62\x76\x69\x72\x74\x5f\x6e\x65\x74\x77\x6f\x72\x6b\x00"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x05"], [{nla_len=12, nla_type=0x4}, "\x00\x00\x00\x00\x00\x00\x00\x10"], [{nla_len=8, nla_type=0x2}, "\x00\x00\x00\x00"]]], [{nlmsg_len=68, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWTABLE, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET6, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=20, nla_type=0x1}, "\x6c\x69\x62\x76\x69\x72\x74\x5f\x6e\x65\x74\x77\x6f\x72\x6b\x00"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x05"], [{nla_len=12, nla_type=0x4}, "\x00\x00\x00\x00\x00\x00\x00\x11"], [{nla_len=8, nla_type=0x2}, "\x00\x00\x00\x00"]]], [{nlmsg_len=64, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWTABLE, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=13, nla_type=0x1}, "\x63\x72\x6f\x77\x64\x73\x65\x63\x00"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x09"], [{nla_len=12, nla_type=0x4}, "\x00\x00\x00\x00\x00\x00\x00\x14"], [{nla_len=8, nla_type=0x2}, "\x00\x00\x00\x00"]]], [{nlmsg_len=64, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWTABLE, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET6, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=14, nla_type=0x1}, "\x63\x72\x6f\x77\x64\x73\x65\x63\x36\x00"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x05"], [{nla_len=12, nla_type=0x4}, "\x00\x00\x00\x00\x00\x00\x00\x15"], [{nla_len=8, nla_type=0x2}, "\x00\x00\x00\x00"]]], [{nlmsg_len=60, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWTABLE, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=11, nla_type=0x1}, "\x6d\x61\x6e\x67\x6c\x65\x00"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x02"], [{nla_len=12, nla_type=0x4}, "\x00\x00\x00\x00\x00\x00\x00\x16"], [{nla_len=8, nla_type=0x2}, "\x00\x00\x00\x00"]]], [{nlmsg_len=60, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWTABLE, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET6, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=11, nla_type=0x1}, "\x6d\x61\x6e\x67\x6c\x65\x00"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x02"], [{nla_len=12, nla_type=0x4}, "\x00\x00\x00\x00\x00\x00\x00\x18"], [{nla_len=8, nla_type=0x2}, "\x00\x00\x00\x00"]]], [{nlmsg_len=56, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWTABLE, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=8, nla_type=0x1}, "\x6e\x61\x74\x00"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x5a"], [{nla_len=12, nla_type=0x4}, "\x00\x00\x00\x00\x00\x00\x00\x19"], [{nla_len=8, nla_type=0x2}, "\x00\x00\x00\x00"]]], [{nlmsg_len=56, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWTABLE, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET6, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=8, nla_type=0x1}, "\x6e\x61\x74\x00"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x01"], [{nla_len=12, nla_type=0x4}, "\x00\x00\x00\x00\x00\x00\x00\x1a"], [{nla_len=8, nla_type=0x2}, "\x00\x00\x00\x00"]]], [{nlmsg_len=60, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWTABLE, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET6, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=11, nla_type=0x1}, "\x66\x69\x6c\x74\x65\x72\x00"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x01"], [{nla_len=12, nla_type=0x4}, "\x00\x00\x00\x00\x00\x00\x00\x1b"], [{nla_len=8, nla_type=0x2}, "\x00\x00\x00\x00"]]], [{nlmsg_len=92, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWTABLE, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\xe2"], [{nla_len=12, nla_type=0x4}, "\x00\x00\x00\x00\x00\x00\x00\x20"], [{nla_len=8, nla_type=0x2}, "\x00\x00\x00\x00"], [{nla_len=27, nla_type=0x6}, "\x00\x15\x72\x75\x6c\x65\x73\x20\x66\x6f\x72\x20\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"]]], [{nlmsg_len=92, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWTABLE, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET6, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x16"], [{nla_len=12, nla_type=0x4}, "\x00\x00\x00\x00\x00\x00\x00\x23"], [{nla_len=8, nla_type=0x2}, "\x00\x00\x00\x00"], [{nla_len=27, nla_type=0x6}, "\x00\x15\x72\x75\x6c\x65\x73\x20\x66\x6f\x72\x20\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"]]], [{nlmsg_len=60, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWTABLE, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=11, nla_type=0x1}, "\x66\x69\x6c\x74\x65\x72\x00"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x64"], [{nla_len=12, nla_type=0x4}, "\x00\x00\x00\x00\x00\x00\x08\xac"], [{nla_len=8, nla_type=0x2}, "\x00\x00\x00\x00"]]], [{nlmsg_len=76, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWTABLE, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_UNIX, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=27, nla_type=0x1}, "\x63\x6e\x69\x5f\x70\x6c\x75\x67\x69\x6e\x73\x5f\x6d\x61\x73\x71\x75\x65\x72\x61\x64\x65\x00"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x02"], [{nla_len=12, nla_type=0x4}, "\x00\x00\x00\x00\x00\x00\x0f\xa0"], [{nla_len=8, nla_type=0x2}, "\x00\x00\x00\x00"]]]], iov_len=69631}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 1012 brk(0x55a6b9178000) = 0x55a6b9178000 recvmsg(3, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=12, msg_iov=[{iov_base=[{nlmsg_len=20, nlmsg_type=NLMSG_DONE, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, 0], iov_len=69631}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 20 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f387677b000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f387675a000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876739000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876718000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38766f7000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38766d6000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38766b5000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876694000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876673000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876652000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876631000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876610000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38765ef000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38765ce000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38765ad000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f387658c000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f387656b000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f387654a000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876529000 brk(0x55a6b9199000) = 0x55a6b9199000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876508000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38764e7000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38764c6000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38764a5000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876484000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876463000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876442000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876421000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876400000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38763df000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38763be000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f387639d000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f387637c000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f387635b000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f387633a000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876319000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38762f8000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38762d7000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38762b6000 brk(0x55a6b91ba000) = 0x55a6b91ba000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876295000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876274000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876253000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876232000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876211000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38761f0000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38761cf000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38761ae000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f387618d000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f387616c000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f387614b000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f387612a000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876109000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38760e8000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38760c7000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38760a6000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876085000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876064000 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3876043000 brk(0x55a6b91db000) = 0x55a6b91db000 sendto(3, [{nlmsg_len=20, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_GETSET, nlmsg_flags=NLM_F_REQUEST|NLM_F_DUMP, nlmsg_seq=0, nlmsg_pid=0}, {nfgen_family=AF_UNSPEC, version=NFNETLINK_V0, res_id=htons(0)}], 20, 0, {sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, 12) = 20 recvmsg(3, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=12, msg_iov=[{iov_base=[[{nlmsg_len=152, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_UNIX, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=17, nla_type=0x1}, "\x6e\x66\x74\x61\x62\x6c\x65\x73\x5f\x73\x76\x63\x00"], [{nla_len=22, nla_type=0x2}, "\x61\x6c\x6c\x6f\x77\x65\x64\x5f\x70\x72\x6f\x74\x6f\x63\x6f\x6c\x73\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x00\x03"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x0c"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x01"], [{nla_len=10, nla_type=0xd}, "\x00\x04\x00\x00\x00\x00"], {nla_len=4, nla_type=0x9}, [{nla_len=36, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x62\x69\x74\x6d\x61\x70\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x02"]]], [{nlmsg_len=152, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_UNIX, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=17, nla_type=0x1}, "\x6e\x66\x74\x61\x62\x6c\x65\x73\x5f\x73\x76\x63\x00"], [{nla_len=23, nla_type=0x2}, "\x61\x6c\x6c\x6f\x77\x65\x64\x5f\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x73\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x29"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x10"], [{nla_len=10, nla_type=0xd}, "\x00\x04\x01\x00\x00\x00"], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x03"]]], [{nlmsg_len=160, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_UNIX, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=17, nla_type=0x1}, "\x6e\x66\x74\x61\x62\x6c\x65\x73\x5f\x73\x76\x63\x00"], [{nla_len=23, nla_type=0x2}, "\x61\x6c\x6c\x6f\x77\x65\x64\x5f\x74\x63\x70\x5f\x64\x70\x6f\x72\x74\x73\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x00\x05"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x0d"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x02"], [{nla_len=10, nla_type=0xd}, "\x00\x04\x02\x00\x00\x00"], {nla_len=4, nla_type=0x9}, [{nla_len=36, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x62\x74\x72\x65\x65\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x11"]]], [{nlmsg_len=160, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_UNIX, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=17, nla_type=0x1}, "\x6e\x66\x74\x61\x62\x6c\x65\x73\x5f\x73\x76\x63\x00"], [{nla_len=23, nla_type=0x2}, "\x61\x6c\x6c\x6f\x77\x65\x64\x5f\x75\x64\x70\x5f\x64\x70\x6f\x72\x74\x73\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x00\x06"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x0d"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x02"], [{nla_len=10, nla_type=0xd}, "\x00\x04\x02\x00\x00\x00"], {nla_len=4, nla_type=0x9}, [{nla_len=36, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x62\x74\x72\x65\x65\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x10"]]], [{nlmsg_len=152, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_UNIX, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=17, nla_type=0x1}, "\x6e\x66\x74\x61\x62\x6c\x65\x73\x5f\x73\x76\x63\x00"], [{nla_len=14, nla_type=0x2}, "\x74\x63\x70\x5f\x74\x6f\x41\x4d\x50\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x00\x0f"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x0d"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x02"], [{nla_len=10, nla_type=0xd}, "\x00\x04\x02\x00\x00\x00"], {nla_len=4, nla_type=0x9}, [{nla_len=36, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x62\x74\x72\x65\x65\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x01"]]], [{nlmsg_len=152, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_UNIX, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=17, nla_type=0x1}, "\x6e\x66\x74\x61\x62\x6c\x65\x73\x5f\x73\x76\x63\x00"], [{nla_len=14, nla_type=0x2}, "\x75\x64\x70\x5f\x74\x6f\x41\x4d\x50\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x00\x10"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x0d"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x02"], [{nla_len=10, nla_type=0xd}, "\x00\x04\x02\x00\x00\x00"], {nla_len=4, nla_type=0x9}, [{nla_len=36, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x62\x74\x72\x65\x65\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x02"]]], [{nlmsg_len=148, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=17, nla_type=0x1}, "\x6e\x66\x74\x61\x62\x6c\x65\x73\x5f\x73\x76\x63\x00"], [{nla_len=20, nla_type=0x2}, "\x6d\x61\x73\x71\x5f\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x73\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x00\x03"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x29"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x10"], [{nla_len=10, nla_type=0xd}, "\x00\x04\x01\x00\x00\x00"], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x02"]]], [{nlmsg_len=152, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=17, nla_type=0x1}, "\x6e\x66\x74\x61\x62\x6c\x65\x73\x5f\x73\x76\x63\x00"], [{nla_len=13, nla_type=0x2}, "\x6d\x61\x73\x71\x5f\x69\x70\x73\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x07"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x04"], [{nla_len=10, nla_type=0xd}, "\x00\x04\x02\x00\x00\x00"], {nla_len=4, nla_type=0x9}, [{nla_len=36, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x62\x74\x72\x65\x65\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x01"]]], [{nlmsg_len=184, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=13, nla_type=0x1}, "\x63\x72\x6f\x77\x64\x73\x65\x63\x00"], [{nla_len=49, nla_type=0x2}, "\x63\x72\x6f\x77\x64\x73\x65\x63\x2d\x62\x6c\x61\x63\x6b\x6c\x69\x73\x74\x73\x2d\x6c\x69\x73\x74\x73\x2d\x66\x69\x72\x65\x68\x6f"...], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x00\x06"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x10"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x07"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x04"], [{nla_len=10, nla_type=0xd}, "\x00\x04\x02\x00\x00\x00"], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x8e"]]], [{nlmsg_len=164, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=13, nla_type=0x1}, "\x63\x72\x6f\x77\x64\x73\x65\x63\x00"], [{nla_len=29, nla_type=0x2}, "\x63\x72\x6f\x77\x64\x73\x65\x63\x2d\x62\x6c\x61\x63\x6b\x6c\x69\x73\x74\x73\x2d\x43\x41\x50\x49\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x00\x0a"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x10"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x07"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x04"], [{nla_len=10, nla_type=0xd}, "\x00\x04\x02\x00\x00\x00"], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x13\x2f"]]], [{nlmsg_len=192, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=13, nla_type=0x1}, "\x63\x72\x6f\x77\x64\x73\x65\x63\x00"], [{nla_len=57, nla_type=0x2}, "\x63\x72\x6f\x77\x64\x73\x65\x63\x2d\x62\x6c\x61\x63\x6b\x6c\x69\x73\x74\x73\x2d\x6c\x69\x73\x74\x73\x2d\x66\x69\x72\x65\x68\x6f"...], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x00\x0e"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x10"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x07"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x04"], [{nla_len=10, nla_type=0xd}, "\x00\x04\x02\x00\x00\x00"], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x33\x78"]]], [{nlmsg_len=164, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET6, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=14, nla_type=0x1}, "\x63\x72\x6f\x77\x64\x73\x65\x63\x36\x00"], [{nla_len=30, nla_type=0x2}, "\x63\x72\x6f\x77\x64\x73\x65\x63\x36\x2d\x62\x6c\x61\x63\x6b\x6c\x69\x73\x74\x73\x2d\x43\x41\x50\x49\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x00\x06"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x10"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x08"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x10"], [{nla_len=10, nla_type=0xd}, "\x00\x04\x02\x00\x00\x00"], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\xaa"]]], [{nlmsg_len=168, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=16, nla_type=0x2}, "\x63\x6c\x75\x73\x74\x65\x72\x2d\x69\x70\x73\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x00\x27"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x07"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x04"], [{nla_len=40, nla_type=0xd}, "\x00\x04\x02\x00\x00\x00\x03\x08\x00\x04\x04\x00\x00\x00\x01\x00\x07\x12\x41\x63\x74\x69\x76\x65\x20\x43\x6c\x75\x73\x74\x65\x72"...], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x50"]]], [{nlmsg_len=188, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=17, nla_type=0x2}, "\x6e\x6f\x64\x65\x70\x6f\x72\x74\x2d\x69\x70\x73\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x00\x2a"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x07"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x04"], [{nla_len=55, nla_type=0xd}, "\x00\x04\x02\x00\x00\x00\x03\x08\x00\x04\x04\x00\x00\x00\x01\x00\x07\x21\x49\x50\x73\x20\x74\x68\x61\x74\x20\x61\x63\x63\x65\x70"...], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x01"]]], [{nlmsg_len=280, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=25, nla_type=0x2}, "\x6e\x6f\x2d\x65\x6e\x64\x70\x6f\x69\x6e\x74\x2d\x73\x65\x72\x76\x69\x63\x65\x73\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x00\x2b"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x08"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x73\x0d"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x0c"], [{nla_len=8, nla_type=0x6}, "\xff\xff\xff\x00"], [{nla_len=8, nla_type=0x7}, "\x00\x00\x00\x10"], [{nla_len=115, nla_type=0xd}, "\x00\x04\x00\x00\x00\x00\x01\x04\x00\x00\x00\x00\x03\x12\x00\x04\x0d\x00\x00\x00\x01\x0a\x00\x00\x00\x04\x04\x00\x00\x00\x01\x00"...], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x01"]]], [{nlmsg_len=288, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=26, nla_type=0x2}, "\x6e\x6f\x2d\x65\x6e\x64\x70\x6f\x69\x6e\x74\x2d\x6e\x6f\x64\x65\x70\x6f\x72\x74\x73\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x00\x2c"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x08"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x03\x0d"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x08"], [{nla_len=8, nla_type=0x6}, "\xff\xff\xff\x00"], [{nla_len=8, nla_type=0x7}, "\x00\x00\x00\x10"], [{nla_len=124, nla_type=0xd}, "\x00\x04\x00\x00\x00\x00\x01\x04\x00\x00\x00\x00\x03\x12\x00\x04\x0d\x00\x00\x00\x01\x0a\x00\x00\x00\x04\x04\x00\x00\x00\x01\x00"...], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x00"]]], [{nlmsg_len=268, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=17, nla_type=0x2}, "\x66\x69\x72\x65\x77\x61\x6c\x6c\x2d\x69\x70\x73\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x00\x31"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x08"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x73\x0d"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x0c"], [{nla_len=8, nla_type=0x6}, "\xff\xff\xff\x00"], [{nla_len=8, nla_type=0x7}, "\x00\x00\x00\x10"], [{nla_len=112, nla_type=0xd}, "\x00\x04\x00\x00\x00\x00\x01\x04\x00\x00\x00\x00\x03\x12\x00\x04\x0d\x00\x00\x00\x01\x0a\x00\x00\x00\x04\x04\x00\x00\x00\x01\x00"...], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x00"]]], [{nlmsg_len=256, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=16, nla_type=0x2}, "\x73\x65\x72\x76\x69\x63\x65\x2d\x69\x70\x73\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x00\x33"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x08"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x73\x0d"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x0c"], [{nla_len=8, nla_type=0x6}, "\xff\xff\xff\x00"], [{nla_len=8, nla_type=0x7}, "\x00\x00\x00\x10"], [{nla_len=104, nla_type=0xd}, "\x00\x04\x00\x00\x00\x00\x01\x04\x00\x00\x00\x00\x03\x12\x00\x04\x0d\x00\x00\x00\x01\x0a\x00\x00\x00\x04\x04\x00\x00\x00\x01\x00"...], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x65"]]], [{nlmsg_len=232, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=22, nla_type=0x2}, "\x73\x65\x72\x76\x69\x63\x65\x2d\x6e\x6f\x64\x65\x70\x6f\x72\x74\x73\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x00\x34"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x08"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x03\x0d"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x08"], [{nla_len=8, nla_type=0x6}, "\xff\xff\xff\x00"], [{nla_len=8, nla_type=0x7}, "\x00\x00\x00\x10"], [{nla_len=71, nla_type=0xd}, "\x00\x04\x00\x00\x00\x00\x01\x04\x00\x00\x00\x00\x03\x12\x00\x04\x0d\x00\x00\x00\x01\x0a\x00\x00\x00\x04\x04\x00\x00\x00\x01\x00"...], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x00"]]], [{nlmsg_len=192, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=11, nla_type=0x2}, "\x5f\x5f\x6d\x61\x70\x34\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x14\x06"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x0b"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x6}, "\xff\xff\xff\x00"], [{nla_len=8, nla_type=0x7}, "\x00\x00\x00\x10"], [{nla_len=42, nla_type=0xd}, "\x00\x04\x01\x00\x00\x00\x01\x04\x00\x00\x00\x00\x03\x08\x00\x04\x04\x00\x00\x00\x01\x00\x04\x08\x00\x04\x01\x00\x00\x00\x01\x00"...], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x01"]]], [{nlmsg_len=192, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=12, nla_type=0x2}, "\x5f\x5f\x6d\x61\x70\x39\x35\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x14\x0b"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x0b"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x6}, "\xff\xff\xff\x00"], [{nla_len=8, nla_type=0x7}, "\x00\x00\x00\x10"], [{nla_len=42, nla_type=0xd}, "\x00\x04\x01\x00\x00\x00\x01\x04\x00\x00\x00\x00\x03\x08\x00\x04\x04\x00\x00\x00\x01\x00\x04\x08\x00\x04\x01\x00\x00\x00\x01\x00"...], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x01"]]], [{nlmsg_len=192, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=12, nla_type=0x2}, "\x5f\x5f\x6d\x61\x70\x32\x32\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x14\x10"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x0b"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x6}, "\xff\xff\xff\x00"], [{nla_len=8, nla_type=0x7}, "\x00\x00\x00\x10"], [{nla_len=42, nla_type=0xd}, "\x00\x04\x01\x00\x00\x00\x01\x04\x00\x00\x00\x00\x03\x08\x00\x04\x04\x00\x00\x00\x01\x00\x04\x08\x00\x04\x01\x00\x00\x00\x01\x00"...], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x01"]]], [{nlmsg_len=192, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=12, nla_type=0x2}, "\x5f\x5f\x6d\x61\x70\x36\x33\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x14\x15"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x0b"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x6}, "\xff\xff\xff\x00"], [{nla_len=8, nla_type=0x7}, "\x00\x00\x00\x10"], [{nla_len=42, nla_type=0xd}, "\x00\x04\x01\x00\x00\x00\x01\x04\x00\x00\x00\x00\x03\x08\x00\x04\x04\x00\x00\x00\x01\x00\x04\x08\x00\x04\x01\x00\x00\x00\x01\x00"...], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x01"]]], [{nlmsg_len=192, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=11, nla_type=0x2}, "\x5f\x5f\x6d\x61\x70\x30\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x14\x1a"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x0b"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x6}, "\xff\xff\xff\x00"], [{nla_len=8, nla_type=0x7}, "\x00\x00\x00\x10"], [{nla_len=42, nla_type=0xd}, "\x00\x04\x01\x00\x00\x00\x01\x04\x00\x00\x00\x00\x03\x08\x00\x04\x04\x00\x00\x00\x01\x00\x04\x08\x00\x04\x01\x00\x00\x00\x01\x00"...], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x01"]]], [{nlmsg_len=192, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=11, nla_type=0x2}, "\x5f\x5f\x6d\x61\x70\x37\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x14\x1f"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x0b"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x6}, "\xff\xff\xff\x00"], [{nla_len=8, nla_type=0x7}, "\x00\x00\x00\x10"], [{nla_len=42, nla_type=0xd}, "\x00\x04\x01\x00\x00\x00\x01\x04\x00\x00\x00\x00\x03\x08\x00\x04\x04\x00\x00\x00\x01\x00\x04\x08\x00\x04\x01\x00\x00\x00\x01\x00"...], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x01"]]], [{nlmsg_len=192, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=12, nla_type=0x2}, "\x5f\x5f\x6d\x61\x70\x36\x34\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x14\x24"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x0b"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x6}, "\xff\xff\xff\x00"], [{nla_len=8, nla_type=0x7}, "\x00\x00\x00\x10"], [{nla_len=42, nla_type=0xd}, "\x00\x04\x01\x00\x00\x00\x01\x04\x00\x00\x00\x00\x03\x08\x00\x04\x04\x00\x00\x00\x01\x00\x04\x08\x00\x04\x01\x00\x00\x00\x01\x00"...], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x01"]]], [{nlmsg_len=192, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=12, nla_type=0x2}, "\x5f\x5f\x6d\x61\x70\x32\x30\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x14\x29"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x0b"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x6}, "\xff\xff\xff\x00"], [{nla_len=8, nla_type=0x7}, "\x00\x00\x00\x10"], [{nla_len=42, nla_type=0xd}, "\x00\x04\x01\x00\x00\x00\x01\x04\x00\x00\x00\x00\x03\x08\x00\x04\x04\x00\x00\x00\x01\x00\x04\x08\x00\x04\x01\x00\x00\x00\x01\x00"...], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x01"]]], [{nlmsg_len=192, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=12, nla_type=0x2}, "\x5f\x5f\x6d\x61\x70\x35\x39\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x14\x2e"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x0b"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x6}, "\xff\xff\xff\x00"], [{nla_len=8, nla_type=0x7}, "\x00\x00\x00\x10"], [{nla_len=42, nla_type=0xd}, "\x00\x04\x01\x00\x00\x00\x01\x04\x00\x00\x00\x00\x03\x08\x00\x04\x04\x00\x00\x00\x01\x00\x04\x08\x00\x04\x01\x00\x00\x00\x01\x00"...], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x01"]]], [{nlmsg_len=192, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=12, nla_type=0x2}, "\x5f\x5f\x6d\x61\x70\x36\x30\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x14\x33"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x0b"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x6}, "\xff\xff\xff\x00"], [{nla_len=8, nla_type=0x7}, "\x00\x00\x00\x10"], [{nla_len=42, nla_type=0xd}, "\x00\x04\x01\x00\x00\x00\x01\x04\x00\x00\x00\x00\x03\x08\x00\x04\x04\x00\x00\x00\x01\x00\x04\x08\x00\x04\x01\x00\x00\x00\x01\x00"...], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x01"]]], [{nlmsg_len=192, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=12, nla_type=0x2}, "\x5f\x5f\x6d\x61\x70\x36\x35\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x14\x38"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x0b"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x6}, "\xff\xff\xff\x00"], [{nla_len=8, nla_type=0x7}, "\x00\x00\x00\x10"], [{nla_len=42, nla_type=0xd}, "\x00\x04\x01\x00\x00\x00\x01\x04\x00\x00\x00\x00\x03\x08\x00\x04\x04\x00\x00\x00\x01\x00\x04\x08\x00\x04\x01\x00\x00\x00\x01\x00"...], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x01"]]], [{nlmsg_len=192, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=12, nla_type=0x2}, "\x5f\x5f\x6d\x61\x70\x31\x35\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x14\x42"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x0b"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x6}, "\xff\xff\xff\x00"], [{nla_len=8, nla_type=0x7}, "\x00\x00\x00\x10"], [{nla_len=42, nla_type=0xd}, "\x00\x04\x01\x00\x00\x00\x01\x04\x00\x00\x00\x00\x03\x08\x00\x04\x04\x00\x00\x00\x01\x00\x04\x08\x00\x04\x01\x00\x00\x00\x01\x00"...], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x01"]]], [{nlmsg_len=192, nlmsg_type=NFNL_SUBSYS_NFTABLES<<8|NFT_MSG_NEWSET, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, {nfgen_family=AF_INET, version=NFNETLINK_V0, res_id=htons(6407)}, [[{nla_len=15, nla_type=0x1}, "\x6b\x75\x62\x65\x2d\x70\x72\x6f\x78\x79\x00"], [{nla_len=12, nla_type=0x2}, "\x5f\x5f\x6d\x61\x70\x31\x34\x00"], [{nla_len=12, nla_type=0x10}, "\x00\x00\x00\x00\x00\x00\x14\x4c"], [{nla_len=8, nla_type=0x3}, "\x00\x00\x00\x0b"], [{nla_len=8, nla_type=0x4}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x5}, "\x00\x00\x00\x04"], [{nla_len=8, nla_type=0x6}, "\xff\xff\xff\x00"], [{nla_len=8, nla_type=0x7}, "\x00\x00\x00\x10"], [{nla_len=42, nla_type=0xd}, "\x00\x04\x01\x00\x00\x00\x01\x04\x00\x00\x00\x00\x03\x08\x00\x04\x04\x00\x00\x00\x01\x00\x04\x08\x00\x04\x01\x00\x00\x00\x01\x00"...], {nla_len=4, nla_type=0x9}, [{nla_len=35, nla_type=0x13}, "\x6e\x66\x74\x5f\x73\x65\x74\x5f\x72\x68\x61\x73\x68\x5f\x74\x79\x70\x65\x20\x5b\x6e\x66\x5f\x74\x61\x62\x6c\x65\x73\x5d\x00"], [{nla_len=8, nla_type=0x14}, "\x00\x00\x00\x01"]]], ...], iov_len=69631}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 24500 recvmsg(3, {msg_name={sa_family=AF_NETLINK, nl_pid=0, nl_groups=00000000}, msg_namelen=12, msg_iov=[{iov_base=[{nlmsg_len=20, nlmsg_type=NLMSG_DONE, nlmsg_flags=NLM_F_MULTI, nlmsg_seq=0, nlmsg_pid=2163592}, 0], iov_len=69631}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 20 --- SIGSEGV {si_signo=SIGSEGV, si_code=SEGV_MAPERR, si_addr=NULL} --- +++ killed by SIGSEGV (core dumped) +++ fish: Job 1, 'sudo strace nft add rule inet c…' terminated by signal SIGSEGV (Address boundary error)